mirror of https://gitee.com/openkylin/vte2.91.git
Import Upstream version 0.76.0
This commit is contained in:
parent
59cfd976af
commit
66bf379ce9
|
@ -0,0 +1,55 @@
|
||||||
|
# Copyright 2023 Zander Brown
|
||||||
|
#
|
||||||
|
# This library is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library 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 Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
image: fedora:latest
|
||||||
|
|
||||||
|
doc:
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- tags
|
||||||
|
variables:
|
||||||
|
MESON_ARGS: >-
|
||||||
|
-Ddocs=true
|
||||||
|
-Dgtk4=true
|
||||||
|
-Dvapi=false
|
||||||
|
before_script:
|
||||||
|
- dnf -y install fribidi-devel g++ git glib2-devel gnutls-devel
|
||||||
|
gobject-introspection-devel gperf gtk3-devel gtk4-devel
|
||||||
|
libicu-devel meson pango-devel pcre2-devel python3-jinja2
|
||||||
|
python3-packaging python3-pygments python3-toml python3-typogrify
|
||||||
|
systemd-devel lz4-devel gi-docgen
|
||||||
|
script:
|
||||||
|
- meson --prefix=/app ${MESON_ARGS} _build
|
||||||
|
- ninja -C _build
|
||||||
|
- mkdir _doc
|
||||||
|
- cp .gitlab-ci/docs.html _doc/index.html
|
||||||
|
- mv _build/doc/reference/vte-2.91/ _doc/gtk3
|
||||||
|
- mv _build/doc/reference/vte-2.91-gtk4/ _doc/gtk4
|
||||||
|
artifacts:
|
||||||
|
expose_as: 'Browse documentation'
|
||||||
|
paths:
|
||||||
|
- _doc/index.html
|
||||||
|
- _doc
|
||||||
|
|
||||||
|
pages:
|
||||||
|
needs: ['doc']
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- tags
|
||||||
|
script:
|
||||||
|
- cp -r _doc public
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
|
@ -0,0 +1,79 @@
|
||||||
|
<!--
|
||||||
|
Copyright 2023 Zander Brown
|
||||||
|
|
||||||
|
This library is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Lesser General Public License as published
|
||||||
|
by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This library 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 Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
-->
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Vte Docs</title>
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
color-scheme: dark;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: #241f31;
|
||||||
|
display: grid;
|
||||||
|
grid-template: "title title" 1fr "gtk3 gtk4" 1fr / 1fr 1fr;
|
||||||
|
gap: 2em 2em;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
min-height: 100vh;
|
||||||
|
font-family: "Cantarell", -apple-system, BlinkMacSystemFont, "Helvetica", sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
grid-area: title;
|
||||||
|
align-self: end;
|
||||||
|
justify-self: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.doc-card {
|
||||||
|
align-self: start;
|
||||||
|
padding: 5rem;
|
||||||
|
background: #5e5c64;
|
||||||
|
padding: 2em 3em;
|
||||||
|
border-radius: 0.5em;
|
||||||
|
color: #ffffff;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: background 0.4s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.doc-card:hover {
|
||||||
|
background: #77767b;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gtk3 {
|
||||||
|
justify-self: end;
|
||||||
|
grid-area: gtk3;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gtk4 {
|
||||||
|
justify-self: start;
|
||||||
|
grid-area: gtk4;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1>Vte Documentation</h1>
|
||||||
|
<a href="gtk3/index.html" class="doc-card gtk3">Gtk 3</a>
|
||||||
|
<a href="gtk4/index.html" class="doc-card gtk4">Gtk 4</a>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -646,7 +646,7 @@ the "copyright" line and a pointer to where the full notice is found.
|
||||||
GNU General Public License for more details.
|
GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
@ -665,7 +665,7 @@ 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,
|
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.
|
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
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
<http://www.gnu.org/licenses/>.
|
<https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
The GNU General Public License does not permit incorporating your program
|
The GNU General Public License does not permit incorporating your program
|
||||||
into proprietary programs. If your program is a subroutine library, you
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
|
502
COPYING.LGPL2
502
COPYING.LGPL2
|
@ -1,502 +0,0 @@
|
||||||
GNU LESSER GENERAL PUBLIC LICENSE
|
|
||||||
Version 2.1, February 1999
|
|
||||||
|
|
||||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
|
||||||
of this license document, but changing it is not allowed.
|
|
||||||
|
|
||||||
[This is the first released version of the Lesser GPL. It also counts
|
|
||||||
as the successor of the GNU Library Public License, version 2, hence
|
|
||||||
the version number 2.1.]
|
|
||||||
|
|
||||||
Preamble
|
|
||||||
|
|
||||||
The licenses for most software are designed to take away your
|
|
||||||
freedom to share and change it. By contrast, the GNU General Public
|
|
||||||
Licenses are intended to guarantee your freedom to share and change
|
|
||||||
free software--to make sure the software is free for all its users.
|
|
||||||
|
|
||||||
This license, the Lesser General Public License, applies to some
|
|
||||||
specially designated software packages--typically libraries--of the
|
|
||||||
Free Software Foundation and other authors who decide to use it. You
|
|
||||||
can use it too, but we suggest you first think carefully about whether
|
|
||||||
this license or the ordinary General Public License is the better
|
|
||||||
strategy to use in any particular case, based on the explanations below.
|
|
||||||
|
|
||||||
When we speak of free software, we are referring to freedom of use,
|
|
||||||
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 this service if you wish); that you receive source code or can get
|
|
||||||
it if you want it; that you can change the software and use pieces of
|
|
||||||
it in new free programs; and that you are informed that you can do
|
|
||||||
these things.
|
|
||||||
|
|
||||||
To protect your rights, we need to make restrictions that forbid
|
|
||||||
distributors to deny you these rights or to ask you to surrender these
|
|
||||||
rights. These restrictions translate to certain responsibilities for
|
|
||||||
you if you distribute copies of the library or if you modify it.
|
|
||||||
|
|
||||||
For example, if you distribute copies of the library, whether gratis
|
|
||||||
or for a fee, you must give the recipients all the rights that we gave
|
|
||||||
you. You must make sure that they, too, receive or can get the source
|
|
||||||
code. If you link other code with the library, you must provide
|
|
||||||
complete object files to the recipients, so that they can relink them
|
|
||||||
with the library after making changes to the library and recompiling
|
|
||||||
it. And you must show them these terms so they know their rights.
|
|
||||||
|
|
||||||
We protect your rights with a two-step method: (1) we copyright the
|
|
||||||
library, and (2) we offer you this license, which gives you legal
|
|
||||||
permission to copy, distribute and/or modify the library.
|
|
||||||
|
|
||||||
To protect each distributor, we want to make it very clear that
|
|
||||||
there is no warranty for the free library. Also, if the library is
|
|
||||||
modified by someone else and passed on, the recipients should know
|
|
||||||
that what they have is not the original version, so that the original
|
|
||||||
author's reputation will not be affected by problems that might be
|
|
||||||
introduced by others.
|
|
||||||
|
|
||||||
Finally, software patents pose a constant threat to the existence of
|
|
||||||
any free program. We wish to make sure that a company cannot
|
|
||||||
effectively restrict the users of a free program by obtaining a
|
|
||||||
restrictive license from a patent holder. Therefore, we insist that
|
|
||||||
any patent license obtained for a version of the library must be
|
|
||||||
consistent with the full freedom of use specified in this license.
|
|
||||||
|
|
||||||
Most GNU software, including some libraries, is covered by the
|
|
||||||
ordinary GNU General Public License. This license, the GNU Lesser
|
|
||||||
General Public License, applies to certain designated libraries, and
|
|
||||||
is quite different from the ordinary General Public License. We use
|
|
||||||
this license for certain libraries in order to permit linking those
|
|
||||||
libraries into non-free programs.
|
|
||||||
|
|
||||||
When a program is linked with a library, whether statically or using
|
|
||||||
a shared library, the combination of the two is legally speaking a
|
|
||||||
combined work, a derivative of the original library. The ordinary
|
|
||||||
General Public License therefore permits such linking only if the
|
|
||||||
entire combination fits its criteria of freedom. The Lesser General
|
|
||||||
Public License permits more lax criteria for linking other code with
|
|
||||||
the library.
|
|
||||||
|
|
||||||
We call this license the "Lesser" General Public License because it
|
|
||||||
does Less to protect the user's freedom than the ordinary General
|
|
||||||
Public License. It also provides other free software developers Less
|
|
||||||
of an advantage over competing non-free programs. These disadvantages
|
|
||||||
are the reason we use the ordinary General Public License for many
|
|
||||||
libraries. However, the Lesser license provides advantages in certain
|
|
||||||
special circumstances.
|
|
||||||
|
|
||||||
For example, on rare occasions, there may be a special need to
|
|
||||||
encourage the widest possible use of a certain library, so that it becomes
|
|
||||||
a de-facto standard. To achieve this, non-free programs must be
|
|
||||||
allowed to use the library. A more frequent case is that a free
|
|
||||||
library does the same job as widely used non-free libraries. In this
|
|
||||||
case, there is little to gain by limiting the free library to free
|
|
||||||
software only, so we use the Lesser General Public License.
|
|
||||||
|
|
||||||
In other cases, permission to use a particular library in non-free
|
|
||||||
programs enables a greater number of people to use a large body of
|
|
||||||
free software. For example, permission to use the GNU C Library in
|
|
||||||
non-free programs enables many more people to use the whole GNU
|
|
||||||
operating system, as well as its variant, the GNU/Linux operating
|
|
||||||
system.
|
|
||||||
|
|
||||||
Although the Lesser General Public License is Less protective of the
|
|
||||||
users' freedom, it does ensure that the user of a program that is
|
|
||||||
linked with the Library has the freedom and the wherewithal to run
|
|
||||||
that program using a modified version of the Library.
|
|
||||||
|
|
||||||
The precise terms and conditions for copying, distribution and
|
|
||||||
modification follow. Pay close attention to the difference between a
|
|
||||||
"work based on the library" and a "work that uses the library". The
|
|
||||||
former contains code derived from the library, whereas the latter must
|
|
||||||
be combined with the library in order to run.
|
|
||||||
|
|
||||||
GNU LESSER GENERAL PUBLIC LICENSE
|
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
|
||||||
|
|
||||||
0. This License Agreement applies to any software library or other
|
|
||||||
program which contains a notice placed by the copyright holder or
|
|
||||||
other authorized party saying it may be distributed under the terms of
|
|
||||||
this Lesser General Public License (also called "this License").
|
|
||||||
Each licensee is addressed as "you".
|
|
||||||
|
|
||||||
A "library" means a collection of software functions and/or data
|
|
||||||
prepared so as to be conveniently linked with application programs
|
|
||||||
(which use some of those functions and data) to form executables.
|
|
||||||
|
|
||||||
The "Library", below, refers to any such software library or work
|
|
||||||
which has been distributed under these terms. A "work based on the
|
|
||||||
Library" means either the Library or any derivative work under
|
|
||||||
copyright law: that is to say, a work containing the Library or a
|
|
||||||
portion of it, either verbatim or with modifications and/or translated
|
|
||||||
straightforwardly into another language. (Hereinafter, translation is
|
|
||||||
included without limitation in the term "modification".)
|
|
||||||
|
|
||||||
"Source code" for a work means the preferred form of the work for
|
|
||||||
making modifications to it. For a library, complete source code means
|
|
||||||
all the source code for all modules it contains, plus any associated
|
|
||||||
interface definition files, plus the scripts used to control compilation
|
|
||||||
and installation of the library.
|
|
||||||
|
|
||||||
Activities other than copying, distribution and modification are not
|
|
||||||
covered by this License; they are outside its scope. The act of
|
|
||||||
running a program using the Library is not restricted, and output from
|
|
||||||
such a program is covered only if its contents constitute a work based
|
|
||||||
on the Library (independent of the use of the Library in a tool for
|
|
||||||
writing it). Whether that is true depends on what the Library does
|
|
||||||
and what the program that uses the Library does.
|
|
||||||
|
|
||||||
1. You may copy and distribute verbatim copies of the Library's
|
|
||||||
complete source code as you receive it, in any medium, provided that
|
|
||||||
you conspicuously and appropriately publish on each copy an
|
|
||||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
|
||||||
all the notices that refer to this License and to the absence of any
|
|
||||||
warranty; and distribute a copy of this License along with the
|
|
||||||
Library.
|
|
||||||
|
|
||||||
You may charge a fee for the physical act of transferring a copy,
|
|
||||||
and you may at your option offer warranty protection in exchange for a
|
|
||||||
fee.
|
|
||||||
|
|
||||||
2. You may modify your copy or copies of the Library or any portion
|
|
||||||
of it, thus forming a work based on the Library, and copy and
|
|
||||||
distribute such modifications or work under the terms of Section 1
|
|
||||||
above, provided that you also meet all of these conditions:
|
|
||||||
|
|
||||||
a) The modified work must itself be a software library.
|
|
||||||
|
|
||||||
b) You must cause the files modified to carry prominent notices
|
|
||||||
stating that you changed the files and the date of any change.
|
|
||||||
|
|
||||||
c) You must cause the whole of the work to be licensed at no
|
|
||||||
charge to all third parties under the terms of this License.
|
|
||||||
|
|
||||||
d) If a facility in the modified Library refers to a function or a
|
|
||||||
table of data to be supplied by an application program that uses
|
|
||||||
the facility, other than as an argument passed when the facility
|
|
||||||
is invoked, then you must make a good faith effort to ensure that,
|
|
||||||
in the event an application does not supply such function or
|
|
||||||
table, the facility still operates, and performs whatever part of
|
|
||||||
its purpose remains meaningful.
|
|
||||||
|
|
||||||
(For example, a function in a library to compute square roots has
|
|
||||||
a purpose that is entirely well-defined independent of the
|
|
||||||
application. Therefore, Subsection 2d requires that any
|
|
||||||
application-supplied function or table used by this function must
|
|
||||||
be optional: if the application does not supply it, the square
|
|
||||||
root function must still compute square roots.)
|
|
||||||
|
|
||||||
These requirements apply to the modified work as a whole. If
|
|
||||||
identifiable sections of that work are not derived from the Library,
|
|
||||||
and can be reasonably considered independent and separate works in
|
|
||||||
themselves, then this License, and its terms, do not apply to those
|
|
||||||
sections when you distribute them as separate works. But when you
|
|
||||||
distribute the same sections as part of a whole which is a work based
|
|
||||||
on the Library, the distribution of the whole must be on the terms of
|
|
||||||
this License, whose permissions for other licensees extend to the
|
|
||||||
entire whole, and thus to each and every part regardless of who wrote
|
|
||||||
it.
|
|
||||||
|
|
||||||
Thus, it is not the intent of this section to claim rights or contest
|
|
||||||
your rights to work written entirely by you; rather, the intent is to
|
|
||||||
exercise the right to control the distribution of derivative or
|
|
||||||
collective works based on the Library.
|
|
||||||
|
|
||||||
In addition, mere aggregation of another work not based on the Library
|
|
||||||
with the Library (or with a work based on the Library) on a volume of
|
|
||||||
a storage or distribution medium does not bring the other work under
|
|
||||||
the scope of this License.
|
|
||||||
|
|
||||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
|
||||||
License instead of this License to a given copy of the Library. To do
|
|
||||||
this, you must alter all the notices that refer to this License, so
|
|
||||||
that they refer to the ordinary GNU General Public License, version 2,
|
|
||||||
instead of to this License. (If a newer version than version 2 of the
|
|
||||||
ordinary GNU General Public License has appeared, then you can specify
|
|
||||||
that version instead if you wish.) Do not make any other change in
|
|
||||||
these notices.
|
|
||||||
|
|
||||||
Once this change is made in a given copy, it is irreversible for
|
|
||||||
that copy, so the ordinary GNU General Public License applies to all
|
|
||||||
subsequent copies and derivative works made from that copy.
|
|
||||||
|
|
||||||
This option is useful when you wish to copy part of the code of
|
|
||||||
the Library into a program that is not a library.
|
|
||||||
|
|
||||||
4. You may copy and distribute the Library (or a portion or
|
|
||||||
derivative of it, under Section 2) in object code or executable form
|
|
||||||
under the terms of Sections 1 and 2 above provided that you accompany
|
|
||||||
it with the complete corresponding machine-readable source code, which
|
|
||||||
must be distributed under the terms of Sections 1 and 2 above on a
|
|
||||||
medium customarily used for software interchange.
|
|
||||||
|
|
||||||
If distribution of object code is made by offering access to copy
|
|
||||||
from a designated place, then offering equivalent access to copy the
|
|
||||||
source code from the same place satisfies the requirement to
|
|
||||||
distribute the source code, even though third parties are not
|
|
||||||
compelled to copy the source along with the object code.
|
|
||||||
|
|
||||||
5. A program that contains no derivative of any portion of the
|
|
||||||
Library, but is designed to work with the Library by being compiled or
|
|
||||||
linked with it, is called a "work that uses the Library". Such a
|
|
||||||
work, in isolation, is not a derivative work of the Library, and
|
|
||||||
therefore falls outside the scope of this License.
|
|
||||||
|
|
||||||
However, linking a "work that uses the Library" with the Library
|
|
||||||
creates an executable that is a derivative of the Library (because it
|
|
||||||
contains portions of the Library), rather than a "work that uses the
|
|
||||||
library". The executable is therefore covered by this License.
|
|
||||||
Section 6 states terms for distribution of such executables.
|
|
||||||
|
|
||||||
When a "work that uses the Library" uses material from a header file
|
|
||||||
that is part of the Library, the object code for the work may be a
|
|
||||||
derivative work of the Library even though the source code is not.
|
|
||||||
Whether this is true is especially significant if the work can be
|
|
||||||
linked without the Library, or if the work is itself a library. The
|
|
||||||
threshold for this to be true is not precisely defined by law.
|
|
||||||
|
|
||||||
If such an object file uses only numerical parameters, data
|
|
||||||
structure layouts and accessors, and small macros and small inline
|
|
||||||
functions (ten lines or less in length), then the use of the object
|
|
||||||
file is unrestricted, regardless of whether it is legally a derivative
|
|
||||||
work. (Executables containing this object code plus portions of the
|
|
||||||
Library will still fall under Section 6.)
|
|
||||||
|
|
||||||
Otherwise, if the work is a derivative of the Library, you may
|
|
||||||
distribute the object code for the work under the terms of Section 6.
|
|
||||||
Any executables containing that work also fall under Section 6,
|
|
||||||
whether or not they are linked directly with the Library itself.
|
|
||||||
|
|
||||||
6. As an exception to the Sections above, you may also combine or
|
|
||||||
link a "work that uses the Library" with the Library to produce a
|
|
||||||
work containing portions of the Library, and distribute that work
|
|
||||||
under terms of your choice, provided that the terms permit
|
|
||||||
modification of the work for the customer's own use and reverse
|
|
||||||
engineering for debugging such modifications.
|
|
||||||
|
|
||||||
You must give prominent notice with each copy of the work that the
|
|
||||||
Library is used in it and that the Library and its use are covered by
|
|
||||||
this License. You must supply a copy of this License. If the work
|
|
||||||
during execution displays copyright notices, you must include the
|
|
||||||
copyright notice for the Library among them, as well as a reference
|
|
||||||
directing the user to the copy of this License. Also, you must do one
|
|
||||||
of these things:
|
|
||||||
|
|
||||||
a) Accompany the work with the complete corresponding
|
|
||||||
machine-readable source code for the Library including whatever
|
|
||||||
changes were used in the work (which must be distributed under
|
|
||||||
Sections 1 and 2 above); and, if the work is an executable linked
|
|
||||||
with the Library, with the complete machine-readable "work that
|
|
||||||
uses the Library", as object code and/or source code, so that the
|
|
||||||
user can modify the Library and then relink to produce a modified
|
|
||||||
executable containing the modified Library. (It is understood
|
|
||||||
that the user who changes the contents of definitions files in the
|
|
||||||
Library will not necessarily be able to recompile the application
|
|
||||||
to use the modified definitions.)
|
|
||||||
|
|
||||||
b) Use a suitable shared library mechanism for linking with the
|
|
||||||
Library. A suitable mechanism is one that (1) uses at run time a
|
|
||||||
copy of the library already present on the user's computer system,
|
|
||||||
rather than copying library functions into the executable, and (2)
|
|
||||||
will operate properly with a modified version of the library, if
|
|
||||||
the user installs one, as long as the modified version is
|
|
||||||
interface-compatible with the version that the work was made with.
|
|
||||||
|
|
||||||
c) Accompany the work with a written offer, valid for at
|
|
||||||
least three years, to give the same user the materials
|
|
||||||
specified in Subsection 6a, above, for a charge no more
|
|
||||||
than the cost of performing this distribution.
|
|
||||||
|
|
||||||
d) If distribution of the work is made by offering access to copy
|
|
||||||
from a designated place, offer equivalent access to copy the above
|
|
||||||
specified materials from the same place.
|
|
||||||
|
|
||||||
e) Verify that the user has already received a copy of these
|
|
||||||
materials or that you have already sent this user a copy.
|
|
||||||
|
|
||||||
For an executable, the required form of the "work that uses the
|
|
||||||
Library" must include any data and utility programs needed for
|
|
||||||
reproducing the executable from it. However, as a special exception,
|
|
||||||
the materials to be distributed need not include anything that is
|
|
||||||
normally distributed (in either source or binary form) with the major
|
|
||||||
components (compiler, kernel, and so on) of the operating system on
|
|
||||||
which the executable runs, unless that component itself accompanies
|
|
||||||
the executable.
|
|
||||||
|
|
||||||
It may happen that this requirement contradicts the license
|
|
||||||
restrictions of other proprietary libraries that do not normally
|
|
||||||
accompany the operating system. Such a contradiction means you cannot
|
|
||||||
use both them and the Library together in an executable that you
|
|
||||||
distribute.
|
|
||||||
|
|
||||||
7. You may place library facilities that are a work based on the
|
|
||||||
Library side-by-side in a single library together with other library
|
|
||||||
facilities not covered by this License, and distribute such a combined
|
|
||||||
library, provided that the separate distribution of the work based on
|
|
||||||
the Library and of the other library facilities is otherwise
|
|
||||||
permitted, and provided that you do these two things:
|
|
||||||
|
|
||||||
a) Accompany the combined library with a copy of the same work
|
|
||||||
based on the Library, uncombined with any other library
|
|
||||||
facilities. This must be distributed under the terms of the
|
|
||||||
Sections above.
|
|
||||||
|
|
||||||
b) Give prominent notice with the combined library of the fact
|
|
||||||
that part of it is a work based on the Library, and explaining
|
|
||||||
where to find the accompanying uncombined form of the same work.
|
|
||||||
|
|
||||||
8. You may not copy, modify, sublicense, link with, or distribute
|
|
||||||
the Library except as expressly provided under this License. Any
|
|
||||||
attempt otherwise to copy, modify, sublicense, link with, or
|
|
||||||
distribute the Library is void, and will automatically terminate your
|
|
||||||
rights under this License. However, parties who have received copies,
|
|
||||||
or rights, from you under this License will not have their licenses
|
|
||||||
terminated so long as such parties remain in full compliance.
|
|
||||||
|
|
||||||
9. You are not required to accept this License, since you have not
|
|
||||||
signed it. However, nothing else grants you permission to modify or
|
|
||||||
distribute the Library or its derivative works. These actions are
|
|
||||||
prohibited by law if you do not accept this License. Therefore, by
|
|
||||||
modifying or distributing the Library (or any work based on the
|
|
||||||
Library), you indicate your acceptance of this License to do so, and
|
|
||||||
all its terms and conditions for copying, distributing or modifying
|
|
||||||
the Library or works based on it.
|
|
||||||
|
|
||||||
10. Each time you redistribute the Library (or any work based on the
|
|
||||||
Library), the recipient automatically receives a license from the
|
|
||||||
original licensor to copy, distribute, link with or modify the Library
|
|
||||||
subject to these terms and conditions. You may not impose any further
|
|
||||||
restrictions on the recipients' exercise of the rights granted herein.
|
|
||||||
You are not responsible for enforcing compliance by third parties with
|
|
||||||
this License.
|
|
||||||
|
|
||||||
11. If, as a consequence of a court judgment or allegation of patent
|
|
||||||
infringement or for any other reason (not limited to patent issues),
|
|
||||||
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
|
|
||||||
distribute so as to satisfy simultaneously your obligations under this
|
|
||||||
License and any other pertinent obligations, then as a consequence you
|
|
||||||
may not distribute the Library at all. For example, if a patent
|
|
||||||
license would not permit royalty-free redistribution of the Library by
|
|
||||||
all those who receive copies directly or indirectly through you, then
|
|
||||||
the only way you could satisfy both it and this License would be to
|
|
||||||
refrain entirely from distribution of the Library.
|
|
||||||
|
|
||||||
If any portion of this section is held invalid or unenforceable under any
|
|
||||||
particular circumstance, the balance of the section is intended to apply,
|
|
||||||
and the section as a whole is intended to apply in other circumstances.
|
|
||||||
|
|
||||||
It is not the purpose of this section to induce you to infringe any
|
|
||||||
patents or other property right claims or to contest validity of any
|
|
||||||
such claims; this section has the sole purpose of protecting the
|
|
||||||
integrity of the free software distribution system which is
|
|
||||||
implemented by public license practices. Many people have made
|
|
||||||
generous contributions to the wide range of software distributed
|
|
||||||
through that system in reliance on consistent application of that
|
|
||||||
system; it is up to the author/donor to decide if he or she is willing
|
|
||||||
to distribute software through any other system and a licensee cannot
|
|
||||||
impose that choice.
|
|
||||||
|
|
||||||
This section is intended to make thoroughly clear what is believed to
|
|
||||||
be a consequence of the rest of this License.
|
|
||||||
|
|
||||||
12. If the distribution and/or use of the Library is restricted in
|
|
||||||
certain countries either by patents or by copyrighted interfaces, the
|
|
||||||
original copyright holder who places the Library under this License may add
|
|
||||||
an explicit geographical distribution limitation excluding those countries,
|
|
||||||
so that distribution is permitted only in or among countries not thus
|
|
||||||
excluded. In such case, this License incorporates the limitation as if
|
|
||||||
written in the body of this License.
|
|
||||||
|
|
||||||
13. The Free Software Foundation may publish revised and/or new
|
|
||||||
versions of the Lesser 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 Library
|
|
||||||
specifies a version number of this License which applies to it and
|
|
||||||
"any later version", you have the option of following the terms and
|
|
||||||
conditions either of that version or of any later version published by
|
|
||||||
the Free Software Foundation. If the Library does not specify a
|
|
||||||
license version number, you may choose any version ever published by
|
|
||||||
the Free Software Foundation.
|
|
||||||
|
|
||||||
14. If you wish to incorporate parts of the Library into other free
|
|
||||||
programs whose distribution conditions are incompatible with these,
|
|
||||||
write to the author to ask for permission. For software which is
|
|
||||||
copyrighted by the Free Software Foundation, write to the Free
|
|
||||||
Software Foundation; we sometimes make exceptions for this. Our
|
|
||||||
decision will be guided by the two goals of preserving the free status
|
|
||||||
of all derivatives of our free software and of promoting the sharing
|
|
||||||
and reuse of software generally.
|
|
||||||
|
|
||||||
NO WARRANTY
|
|
||||||
|
|
||||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
|
||||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
|
||||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
|
||||||
OTHER PARTIES PROVIDE THE LIBRARY "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
|
|
||||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
|
||||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
|
||||||
|
|
||||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
|
||||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
|
||||||
AND/OR REDISTRIBUTE THE LIBRARY 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
|
|
||||||
LIBRARY (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 LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
|
||||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
||||||
DAMAGES.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
How to Apply These Terms to Your New Libraries
|
|
||||||
|
|
||||||
If you develop a new library, and you want it to be of the greatest
|
|
||||||
possible use to the public, we recommend making it free software that
|
|
||||||
everyone can redistribute and change. You can do so by permitting
|
|
||||||
redistribution under these terms (or, alternatively, under the terms of the
|
|
||||||
ordinary General Public License).
|
|
||||||
|
|
||||||
To apply these terms, attach the following notices to the library. It is
|
|
||||||
safest to attach them to the start of each source file to most effectively
|
|
||||||
convey the exclusion of warranty; and each file should have at least the
|
|
||||||
"copyright" line and a pointer to where the full notice is found.
|
|
||||||
|
|
||||||
<one line to give the library's name and a brief idea of what it does.>
|
|
||||||
Copyright (C) <year> <name of author>
|
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU Lesser General Public
|
|
||||||
License as published by the Free Software Foundation; either
|
|
||||||
version 2.1 of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
This library 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
|
|
||||||
Lesser General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public
|
|
||||||
License along with this library; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
|
|
||||||
Also add information on how to contact you by electronic and paper mail.
|
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or your
|
|
||||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
|
||||||
necessary. Here is a sample; alter the names:
|
|
||||||
|
|
||||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
|
||||||
library `Frob' (a library for tweaking knobs) written by James Random Hacker.
|
|
||||||
|
|
||||||
<signature of Ty Coon>, 1 April 1990
|
|
||||||
Ty Coon, President of Vice
|
|
||||||
|
|
||||||
That's all there is to it!
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
Parts of code copied from xterm, under this licence:
|
||||||
|
|
||||||
|
Copyright 2013-2019,2020 by Ross Combs
|
||||||
|
Copyright 2013-2019,2020 by Thomas E. Dickey
|
||||||
|
|
||||||
|
All Rights Reserved
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included
|
||||||
|
in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||||
|
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||||
|
IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY
|
||||||
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
Except as contained in this notice, the name(s) of the above copyright
|
||||||
|
holders shall not be used in advertising or otherwise to promote the
|
||||||
|
sale, use or other dealings in this Software without prior written
|
||||||
|
authorization.
|
12065
ChangeLog.pre-git
12065
ChangeLog.pre-git
File diff suppressed because it is too large
Load Diff
|
@ -1,22 +1,21 @@
|
||||||
# Copyright © 2019 Christian Persch
|
# Copyright © 2019 Christian Persch
|
||||||
#
|
#
|
||||||
# This library is free software; you can redistribute it and/or modify it
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# the Free Software Foundation; either version 3 of the License, or (at your
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This library is distributed in the hope that it will be useful, but
|
# This library is distributed in the hope that it will be useful,
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
srcdir=@srcdir@
|
srcdir=@srcdir@
|
||||||
builddir=@builddir@
|
builddir=@builddir@
|
||||||
vte_gtk3_api_version = @vte_gtk3_api_version@
|
vte_api_version = @vte_api_version@
|
||||||
vte_gtk4_api_version = @vte_gtk4_api_version@
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
||||||
|
@ -24,11 +23,25 @@ NTHREADS = 1
|
||||||
NJOBS = -j$(NTHREADS)
|
NJOBS = -j$(NTHREADS)
|
||||||
NINJA = ninja $(NJOBS)
|
NINJA = ninja $(NJOBS)
|
||||||
|
|
||||||
|
MESON = meson
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
||||||
all:
|
all:
|
||||||
$(NINJA)
|
$(NINJA)
|
||||||
|
|
||||||
|
gtk3:
|
||||||
|
$(NINJA) src/app/vte-$(vte_api_version)
|
||||||
|
|
||||||
|
gtk4:
|
||||||
|
$(NINJA) src/app/vte-$(vte_api_version)-gtk4
|
||||||
|
|
||||||
|
doc-gtk3:
|
||||||
|
$(NINJA) doc/reference/vte-$(vte_api_version)
|
||||||
|
|
||||||
|
doc-gtk4:
|
||||||
|
$(NINJA) doc/reference/vte-$(vte_api_version)-gtk4
|
||||||
|
|
||||||
check:
|
check:
|
||||||
MESON_TESTTHREADS=$(NTHREADS) $(NINJA) test
|
MESON_TESTTHREADS=$(NTHREADS) $(NINJA) test
|
||||||
|
|
||||||
|
@ -38,11 +51,16 @@ clean:
|
||||||
coverage:
|
coverage:
|
||||||
$(NINJA) coverage
|
$(NINJA) coverage
|
||||||
|
|
||||||
doc:
|
doc: doc-gtk3 doc-gtk4
|
||||||
$(NINJA) vte-$(vte_gtk3_api_version)-doc
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
$(NINJA) install
|
$(NINJA) install
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
$(NINJA) uninstall
|
$(NINJA) uninstall
|
||||||
|
|
||||||
|
dist:
|
||||||
|
$(MESON) dist --no-tests
|
||||||
|
|
||||||
|
distcheck:
|
||||||
|
$(MESON) dist
|
||||||
|
|
13
README.md
13
README.md
|
@ -3,6 +3,19 @@ Virtual TErminal
|
||||||
|
|
||||||
VTE provides a virtual terminal widget for GTK applications.
|
VTE provides a virtual terminal widget for GTK applications.
|
||||||
|
|
||||||
|
Source & Releases
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
To get the source code, use
|
||||||
|
```
|
||||||
|
$ git clone https://gitlab.gnome.org/GNOME/vte
|
||||||
|
```
|
||||||
|
|
||||||
|
To get the source for a release version, use the corresponding git tag, or
|
||||||
|
download a tarball at
|
||||||
|
https://gitlab.gnome.org/GNOME/vte/-/archive/TAG/vte-TAG.tar.bz2
|
||||||
|
replacing `TAG` with the desired tag's name (e.g. `0.64.0`).
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
# Copyright © 2018, 2019 Iñigo Martínez
|
# Copyright © 2018, 2019 Iñigo Martínez
|
||||||
# Copyright © 2019 Christian Persch
|
# Copyright © 2019, 2020, 2021 Christian Persch
|
||||||
#
|
#
|
||||||
# This library is free software; you can redistribute it and/or modify it
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# the Free Software Foundation; either version 3 of the License, or (at your
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This library is distributed in the hope that it will be useful, but
|
# This library is distributed in the hope that it will be useful,
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
@ -18,6 +18,7 @@ gir_dep = dependency('gobject-introspection-1.0', version: '>= 0.9.0')
|
||||||
|
|
||||||
if get_option('gtk3')
|
if get_option('gtk3')
|
||||||
libvte_gtk3_gir_includes = [
|
libvte_gtk3_gir_includes = [
|
||||||
|
'cairo-1.0',
|
||||||
'Gdk-3.0',
|
'Gdk-3.0',
|
||||||
'Gtk-3.0',
|
'Gtk-3.0',
|
||||||
'Pango-1.0',
|
'Pango-1.0',
|
||||||
|
@ -29,10 +30,40 @@ if get_option('gtk3')
|
||||||
includes: libvte_gtk3_gir_includes,
|
includes: libvte_gtk3_gir_includes,
|
||||||
dependencies: libvte_gtk3_dep,
|
dependencies: libvte_gtk3_dep,
|
||||||
extra_args: '-DVTE_COMPILATION',
|
extra_args: '-DVTE_COMPILATION',
|
||||||
nsversion: vte_gtk3_api_version,
|
nsversion: vte_api_version,
|
||||||
namespace: 'Vte',
|
namespace: 'Vte',
|
||||||
export_packages: vte_gtk3_api_name,
|
export_packages: vte_gtk3_api_name,
|
||||||
header: 'vte' / 'vte.h',
|
header: 'vte' / 'vte.h',
|
||||||
install: true,
|
install: true,
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
if get_option('gtk4')
|
||||||
|
libvte_gtk4_gir_includes = [
|
||||||
|
'cairo-1.0',
|
||||||
|
'Graphene-1.0',
|
||||||
|
'Gsk-4.0',
|
||||||
|
'Gdk-4.0',
|
||||||
|
'Gtk-4.0',
|
||||||
|
'Pango-1.0',
|
||||||
|
]
|
||||||
|
|
||||||
|
# Ideally, the gir would be named something like "VteGtk4" instead,
|
||||||
|
# but it seems that's not possible. So work around it using "Vte"
|
||||||
|
# as namespace with this nsversion hack:
|
||||||
|
vte_gtk4_gir_nsversion = '@0@.@1@'.format(vte_api_major_version + 1, vte_api_minor_version)
|
||||||
|
|
||||||
|
libvte_gtk4_gir = gnome.generate_gir(
|
||||||
|
libvte_gtk4,
|
||||||
|
dependencies: libvte_gtk4_dep,
|
||||||
|
export_packages: vte_gtk4_api_name,
|
||||||
|
extra_args: '-DVTE_COMPILATION',
|
||||||
|
header: 'vte' / 'vte.h',
|
||||||
|
includes: libvte_gtk4_gir_includes,
|
||||||
|
install: true,
|
||||||
|
namespace: 'Vte',
|
||||||
|
nsversion: vte_gtk4_gir_nsversion,
|
||||||
|
sources: libvte_gtk4_public_headers + libvte_common_doc_sources,
|
||||||
|
symbol_prefix: 'vte',
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 644 B |
Binary file not shown.
After Width: | Height: | Size: 901 B |
|
@ -0,0 +1,42 @@
|
||||||
|
# Copyright © 2020 Aleksandr Mezin
|
||||||
|
# Copyright © 2020 Christian Persch
|
||||||
|
#
|
||||||
|
# This library is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library 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 Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
gladedir = vte_datadir / 'glade'
|
||||||
|
cataloguedir = gladedir / 'catalogs'
|
||||||
|
pixmapdir = gladedir / 'pixmaps'
|
||||||
|
|
||||||
|
catalog_conf = configuration_data()
|
||||||
|
catalog_conf.set('VTE_API_VERSION', vte_api_version)
|
||||||
|
catalog_conf.set('VERSION', vte_version)
|
||||||
|
|
||||||
|
configure_file(
|
||||||
|
input: 'vte.xml.in',
|
||||||
|
configuration: catalog_conf,
|
||||||
|
install_dir: cataloguedir,
|
||||||
|
output: vte_gtk3_api_name + '.xml',
|
||||||
|
)
|
||||||
|
|
||||||
|
install_data(
|
||||||
|
'hicolor_actions_16x16_widget-vte-terminal.png',
|
||||||
|
install_dir: pixmapdir / 'hicolor' / '16x16' / 'actions',
|
||||||
|
rename: 'widget-vte-terminal.png',
|
||||||
|
)
|
||||||
|
|
||||||
|
install_data(
|
||||||
|
'hicolor_actions_22x22_widget-vte-terminal.png',
|
||||||
|
install_dir: pixmapdir / 'hicolor' / '22x22' / 'actions',
|
||||||
|
rename: 'widget-vte-terminal.png',
|
||||||
|
)
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<glade-catalog name="vte-@VTE_API_VERSION@"
|
||||||
|
version="@VERSION@"
|
||||||
|
library="vte-@VTE_API_VERSION@"
|
||||||
|
domain="vte-@VTE_API_VERSION@"
|
||||||
|
depends="gtk+"
|
||||||
|
book="vte"
|
||||||
|
icon-prefix="vte"
|
||||||
|
supports="gtkbuilder">
|
||||||
|
<glade-widget-classes>
|
||||||
|
<glade-widget-class title="VTE Terminal" name="VteTerminal" generic-name="terminal" />
|
||||||
|
</glade-widget-classes>
|
||||||
|
|
||||||
|
<glade-widget-group name="vte-terminal" title="VTE Terminal">
|
||||||
|
<glade-widget-class-ref name="VteTerminal"/>
|
||||||
|
</glade-widget-group>
|
||||||
|
|
||||||
|
</glade-catalog>
|
|
@ -1,23 +1,27 @@
|
||||||
# Copyright © 2018, 2019 Iñigo Martínez
|
# Copyright © 2018, 2019 Iñigo Martínez
|
||||||
# Copyright © 2019 Christian Persch
|
# Copyright © 2019 Christian Persch
|
||||||
#
|
#
|
||||||
# This library is free software; you can redistribute it and/or modify it
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# the Free Software Foundation; either version 3 of the License, or (at your
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This library is distributed in the hope that it will be useful, but
|
# This library is distributed in the hope that it will be useful,
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
if get_option('glade') and get_option('gtk3')
|
||||||
|
subdir('glade')
|
||||||
|
endif
|
||||||
|
|
||||||
if get_option('gir') and (get_option('gtk3') or get_option('gtk4'))
|
if get_option('gir') and (get_option('gtk3') or get_option('gtk4'))
|
||||||
subdir('gir')
|
subdir('gir')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('vapi') and get_option('gtk3')
|
if get_option('vapi') and (get_option('gtk3') or get_option('gtk4'))
|
||||||
subdir('vala')
|
subdir('vala')
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!--
|
|
||||||
Copyright © 2014 Christian Persch
|
|
||||||
|
|
||||||
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 2, or (at your option)
|
|
||||||
any later version.
|
|
||||||
|
|
||||||
This program is distributed in the hope conf 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 <http://www.gnu.org/licenses/>.
|
|
||||||
-->
|
|
||||||
<gresources>
|
|
||||||
<gresource prefix="/org/gnome/vte/test/app">
|
|
||||||
<file alias="ui/window.ui" compressed="true" preprocess="xml-stripblanks">app.ui</file>
|
|
||||||
<file alias="ui/search-popover.ui" compressed="true" preprocess="xml-stripblanks">search-popover.ui</file>
|
|
||||||
</gresource>
|
|
||||||
</gresources>
|
|
|
@ -1,152 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Generated with glade 3.19.0 -->
|
|
||||||
<interface>
|
|
||||||
<requires lib="gtk+" version="3.10"/>
|
|
||||||
<template class="TestWindow" parent="GtkApplicationWindow">
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="role">vte-terminal</property>
|
|
||||||
<property name="icon_name">utilities-terminal</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="terminal_box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<child>
|
|
||||||
<placeholder/>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkScrollbar" id="scrollbar">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<property name="restrict_to_fill_level">False</property>
|
|
||||||
<property name="fill_level">0</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="pack_type">end</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<child type="titlebar">
|
|
||||||
<object class="GtkHeaderBar" id="headerbar1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="show_close_button">True</property>
|
|
||||||
<property name="decoration_layout">:close</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="copy_button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="tooltip_text" translatable="yes">Copy</property>
|
|
||||||
<property name="action_name">win.copy</property>
|
|
||||||
<property name="action_target">"text"</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="image2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="icon_name">edit-copy-symbolic</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="paste_button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="tooltip_text" translatable="yes">Paste</property>
|
|
||||||
<property name="action_name">win.paste</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="image3">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="icon_name">edit-paste-symbolic</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkToggleButton" id="find_button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="image5">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="icon_name">edit-find-symbolic</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="position">4</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child type="title">
|
|
||||||
<placeholder/>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkMenuButton" id="gear_button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="image1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="icon_name">open-menu-symbolic</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="pack_type">end</property>
|
|
||||||
<property name="position">3</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="notifications_box">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<property name="spacing">6</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="readonly_emblem">
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="tooltip_text" translatable="yes">Read-only</property>
|
|
||||||
<property name="icon_name">emblem-readonly</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="pack_type">end</property>
|
|
||||||
<property name="position">4</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</template>
|
|
||||||
</interface>
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +0,0 @@
|
||||||
[CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")]
|
|
||||||
namespace Config
|
|
||||||
{
|
|
||||||
public const string VERSION;
|
|
||||||
}
|
|
|
@ -1,21 +1,20 @@
|
||||||
# Copyright © 2018, 2019 Iñigo Martínez
|
# Copyright © 2018, 2019 Iñigo Martínez
|
||||||
# Copyright © 2019 Christian Persch
|
# Copyright © 2019 Christian Persch
|
||||||
#
|
#
|
||||||
# This library is free software; you can redistribute it and/or modify it
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# the Free Software Foundation; either version 3 of the License, or (at your
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This library is distributed in the hope that it will be useful, but
|
# This library is distributed in the hope that it will be useful,
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
assert(get_option('gir'), 'gir is required for vala support')
|
assert(get_option('gir'), 'gir is required for vala support')
|
||||||
assert(get_option('gtk3'), 'vala support only available for gtk3')
|
|
||||||
|
|
||||||
add_languages('vala', required: true)
|
add_languages('vala', required: true)
|
||||||
|
|
||||||
|
@ -24,77 +23,39 @@ assert(valac.version().version_compare('>= 0.24.0'), 'vala >= 0.24 required')
|
||||||
|
|
||||||
posix_dep = valac.find_library('posix')
|
posix_dep = valac.find_library('posix')
|
||||||
|
|
||||||
libvte_gtk3_vapi_deps = [
|
libvte_common_vapi_deps = [
|
||||||
'gio-2.0',
|
'gio-2.0',
|
||||||
'glib-2.0',
|
'glib-2.0',
|
||||||
'pango',
|
'pango',
|
||||||
'gtk+-3.0',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
libvte_gtk3_vapi_dep = gnome.generate_vapi(
|
if get_option('gtk3')
|
||||||
vte_gtk3_api_name,
|
|
||||||
sources: libvte_gtk3_gir[0],
|
|
||||||
packages: libvte_gtk3_vapi_deps,
|
|
||||||
install: true,
|
|
||||||
)
|
|
||||||
|
|
||||||
# Vala test application
|
libvte_gtk3_vapi_deps = libvte_common_vapi_deps + [
|
||||||
|
'gtk+-3.0',
|
||||||
|
]
|
||||||
|
|
||||||
vapp_resource_data = files(
|
libvte_gtk3_vapi_dep = gnome.generate_vapi(
|
||||||
'app.ui',
|
vte_gtk3_api_name,
|
||||||
'search-popover.ui',
|
sources: libvte_gtk3_gir[0],
|
||||||
)
|
packages: libvte_gtk3_vapi_deps,
|
||||||
|
install: true,
|
||||||
|
)
|
||||||
|
|
||||||
vapp_resource_sources = gnome.compile_resources(
|
|
||||||
'appresources',
|
|
||||||
'app.gresource.xml',
|
|
||||||
c_name: 'app',
|
|
||||||
dependencies: vapp_resource_data,
|
|
||||||
export: true,
|
|
||||||
)
|
|
||||||
|
|
||||||
vapp_sources = vapp_resource_sources + files(
|
|
||||||
'config.vapi',
|
|
||||||
'app.vala'
|
|
||||||
)
|
|
||||||
|
|
||||||
vapp_cflags = [
|
|
||||||
'-Wno-unused-but-set-variable',
|
|
||||||
'-Wno-unused-variable',
|
|
||||||
]
|
|
||||||
|
|
||||||
vapp_valaflags = [
|
|
||||||
'--enable-deprecated'
|
|
||||||
]
|
|
||||||
|
|
||||||
if valac.version().version_compare('>= 0.31.1')
|
|
||||||
vapp_valaflags += '--disable-since-check'
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if gtk3_dep.version().version_compare('>= 3.16')
|
if get_option('gtk4')
|
||||||
vapp_valaflags += '--define=GTK_3_16'
|
|
||||||
|
libvte_gtk4_vapi_deps = libvte_common_vapi_deps + [
|
||||||
|
'graphene-gobject-1.0',
|
||||||
|
'gtk4',
|
||||||
|
]
|
||||||
|
|
||||||
|
libvte_gtk4_vapi_dep = gnome.generate_vapi(
|
||||||
|
vte_gtk4_api_name,
|
||||||
|
sources: libvte_gtk4_gir[0],
|
||||||
|
packages: libvte_gtk4_vapi_deps,
|
||||||
|
install: true,
|
||||||
|
)
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
vapp_incs = [
|
|
||||||
top_inc,
|
|
||||||
src_inc,
|
|
||||||
vte_inc,
|
|
||||||
]
|
|
||||||
|
|
||||||
vapp_deps = [
|
|
||||||
gio_dep,
|
|
||||||
glib_dep,
|
|
||||||
gtk3_dep,
|
|
||||||
libvte_gtk3_vapi_dep,
|
|
||||||
posix_dep,
|
|
||||||
]
|
|
||||||
|
|
||||||
vapp = executable(
|
|
||||||
'vala-test',
|
|
||||||
sources: vapp_sources,
|
|
||||||
include_directories: vapp_incs,
|
|
||||||
dependencies: vapp_deps,
|
|
||||||
c_args: vapp_cflags,
|
|
||||||
vala_args: vapp_valaflags,
|
|
||||||
install: false,
|
|
||||||
)
|
|
||||||
|
|
|
@ -1,249 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Generated with glade 3.19.0 -->
|
|
||||||
<interface>
|
|
||||||
<requires lib="gtk+" version="3.16"/>
|
|
||||||
<template class="TestSearchPopover" parent="GtkPopover">
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="transitions_enabled">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="box1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="margin_left">12</property>
|
|
||||||
<property name="margin_right">12</property>
|
|
||||||
<property name="margin_top">12</property>
|
|
||||||
<property name="margin_bottom">12</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="box2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="spacing">18</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="box4">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkSearchEntry" id="search_entry">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="activates_default">True</property>
|
|
||||||
<property name="width_chars">30</property>
|
|
||||||
<property name="primary_icon_name">edit-find-symbolic</property>
|
|
||||||
<property name="primary_icon_activatable">False</property>
|
|
||||||
<property name="primary_icon_sensitive">False</property>
|
|
||||||
<property name="placeholder_text" translatable="yes">Search</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="search_prev_button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="tooltip_text" translatable="yes">Search for previous occurrence</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="image2">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="icon_name">go-up-symbolic</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="search_next_button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="can_default">True</property>
|
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="tooltip_text" translatable="yes">Search for next occurrence</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="image3">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="icon_name">go-down-symbolic</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<style>
|
|
||||||
<class name="linked"/>
|
|
||||||
</style>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">True</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkToggleButton" id="reveal_button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="tooltip_text" translatable="yes">Toggle search options</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="image1">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="icon_name">open-menu-symbolic</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
<accessibility>
|
|
||||||
<relation type="controller-for" target="revealer"/>
|
|
||||||
</accessibility>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkButton" id="close_button">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">True</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkImage" id="image4">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="icon_name">window-close-symbolic</property>
|
|
||||||
<property name="use_fallback">True</property>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkRevealer" id="revealer">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="transition_type">none</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkBox" id="box3">
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">False</property>
|
|
||||||
<property name="margin_top">18</property>
|
|
||||||
<property name="orientation">vertical</property>
|
|
||||||
<property name="spacing">6</property>
|
|
||||||
<child>
|
|
||||||
<object class="GtkCheckButton" id="match_case_checkbutton">
|
|
||||||
<property name="label" translatable="yes">_Match case</property>
|
|
||||||
<property name="use_action_appearance">False</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">False</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="yalign">0.49000000953674316</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">0</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkCheckButton" id="entire_word_checkbutton">
|
|
||||||
<property name="label" translatable="yes">Match _entire word only</property>
|
|
||||||
<property name="use_action_appearance">False</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">False</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkCheckButton" id="regex_checkbutton">
|
|
||||||
<property name="label" translatable="yes">Match as _regular expression</property>
|
|
||||||
<property name="use_action_appearance">False</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">False</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">2</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
<child>
|
|
||||||
<object class="GtkCheckButton" id="wrap_around_checkbutton">
|
|
||||||
<property name="label" translatable="yes">_Wrap around</property>
|
|
||||||
<property name="use_action_appearance">False</property>
|
|
||||||
<property name="visible">True</property>
|
|
||||||
<property name="can_focus">True</property>
|
|
||||||
<property name="receives_default">False</property>
|
|
||||||
<property name="use_underline">True</property>
|
|
||||||
<property name="focus_on_click">False</property>
|
|
||||||
<property name="xalign">0</property>
|
|
||||||
<property name="active">True</property>
|
|
||||||
<property name="draw_indicator">True</property>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">False</property>
|
|
||||||
<property name="position">3</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
<packing>
|
|
||||||
<property name="expand">False</property>
|
|
||||||
<property name="fill">True</property>
|
|
||||||
<property name="position">1</property>
|
|
||||||
</packing>
|
|
||||||
</child>
|
|
||||||
</object>
|
|
||||||
</child>
|
|
||||||
</template>
|
|
||||||
</interface>
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"app-id" : "org.gnome.vte.gtk4",
|
||||||
|
"runtime" : "org.gnome.Platform",
|
||||||
|
"runtime-version" : "master",
|
||||||
|
"sdk" : "org.gnome.Sdk",
|
||||||
|
"command" : "vte-2.91",
|
||||||
|
"finish-args" : [
|
||||||
|
"--device=dri",
|
||||||
|
"--socket=fallback-x11",
|
||||||
|
"--socket=wayland",
|
||||||
|
"--socket=ssh-auth"
|
||||||
|
],
|
||||||
|
"modules" : [
|
||||||
|
{
|
||||||
|
"name" : "vte",
|
||||||
|
"buildsystem" : "meson",
|
||||||
|
"config-opts" : [
|
||||||
|
"-Dglade=false",
|
||||||
|
"-Dgtk3=true",
|
||||||
|
"-Dgtk4=false",
|
||||||
|
"-Dvapi=false"
|
||||||
|
],
|
||||||
|
"sources" : [
|
||||||
|
{
|
||||||
|
"type" : "file",
|
||||||
|
"path" : ".."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"app-id" : "org.gnome.vte.gtk4",
|
||||||
|
"runtime" : "org.gnome.Platform",
|
||||||
|
"runtime-version" : "master",
|
||||||
|
"sdk" : "org.gnome.Sdk",
|
||||||
|
"command" : "vte-2.91-gtk4",
|
||||||
|
"finish-args" : [
|
||||||
|
"--device=dri",
|
||||||
|
"--socket=fallback-x11",
|
||||||
|
"--socket=wayland",
|
||||||
|
"--socket=ssh-auth"
|
||||||
|
],
|
||||||
|
"modules" : [
|
||||||
|
{
|
||||||
|
"name" : "vte",
|
||||||
|
"buildsystem" : "meson",
|
||||||
|
"config-opts" : [
|
||||||
|
"-Dglade=false",
|
||||||
|
"-Dgtk3=false",
|
||||||
|
"-Dgtk4=true",
|
||||||
|
"-Dvapi=false"
|
||||||
|
],
|
||||||
|
"sources" : [
|
||||||
|
{
|
||||||
|
"type" : "file",
|
||||||
|
"path" : ".."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,11 +0,0 @@
|
||||||
vte3 (1:0.34.6-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* To make new tabs opened within Gnome Terminal have the same
|
|
||||||
working directory as the current tab, it is necessary for the shell
|
|
||||||
running in the terminal to cooperate. For this, vte installs a bash
|
|
||||||
shell script that you must source in your ~/.bashrc.
|
|
||||||
|
|
||||||
For example, you can put this at the end of your ~/.bashrc:
|
|
||||||
[[ -s "/etc/profile.d/vte.sh" ]] && . "/etc/profile.d/vte.sh"
|
|
||||||
|
|
||||||
-- Fabian Greffrath <fabian+debian@greffrath.com> Wed, 12 Jun 2013 21:31:51 +0200
|
|
|
@ -1,23 +0,0 @@
|
||||||
vte2.91 (0.60.1-ok4) yangtze; urgency=medium
|
|
||||||
|
|
||||||
* update debian/libvte-2.91-0.symbols
|
|
||||||
|
|
||||||
-- root <fanxiaoqi@smart-core.cn> Wed, 13 Mar 2024 02:39:10 +0000
|
|
||||||
|
|
||||||
vte2.91 (0.60.1-ok3) yangtze; urgency=medium
|
|
||||||
|
|
||||||
* Add rv64g nocheck and vala.app error repair
|
|
||||||
|
|
||||||
-- root <fanxiaoqi@smart-core.cn> Thu, 29 Feb 2024 11:34:13 +0000
|
|
||||||
|
|
||||||
vte2.91 (0.60.1-ok2) yangtze; urgency=medium
|
|
||||||
|
|
||||||
* update version info
|
|
||||||
|
|
||||||
-- luzhiping <luzhiping@kylinos.cn> Mon, 22 Aug 2022 14:27:18 +0800
|
|
||||||
|
|
||||||
vte2.91 (0.60.1-ok1) yangtze; urgency=medium
|
|
||||||
|
|
||||||
* Build for openKylin.
|
|
||||||
|
|
||||||
-- openKylinBot <openKylinBot@openkylin.com> Mon, 25 Apr 2022 22:03:04 +0800
|
|
|
@ -1,132 +0,0 @@
|
||||||
Source: vte2.91
|
|
||||||
Section: libs
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Openkylin Developers <packaging@lists.openkylin.top>
|
|
||||||
XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
|
|
||||||
Uploaders: Iain Lane <laney@debian.org>, Jeremy Bicha <jbicha@debian.org>, Laurent Bigonville <bigon@debian.org>
|
|
||||||
Build-Depends: debhelper-compat (= 12),
|
|
||||||
dh-sequence-gnome,
|
|
||||||
dh-sequence-gir,
|
|
||||||
gettext,
|
|
||||||
gtk-doc-tools,
|
|
||||||
libgirepository1.0-dev (>= 0.9.12),
|
|
||||||
libglib2.0-dev (>= 2.52.0),
|
|
||||||
libgnutls28-dev (>= 3.2.7),
|
|
||||||
libgtk-3-dev (>= 3.20),
|
|
||||||
libicu-dev,
|
|
||||||
libpango1.0-dev (>= 1.22.0),
|
|
||||||
libpcre2-dev (>= 10.21),
|
|
||||||
libsystemd-dev (>= 220) [linux-any],
|
|
||||||
libxml2-utils,
|
|
||||||
meson (>= 0.50.0),
|
|
||||||
valac (>= 0.31.1)
|
|
||||||
Rules-Requires-Root: no
|
|
||||||
Build-Depends-Indep: libatk1.0-doc <!nodoc>,
|
|
||||||
libglib2.0-doc <!nodoc>,
|
|
||||||
libgtk-3-doc <!nodoc>
|
|
||||||
Standards-Version: 4.5.0
|
|
||||||
XS-Debian-Vcs-Git: https://salsa.debian.org/gnome-team/vte2.91.git
|
|
||||||
XS-Debian-Vcs-Browser: https://salsa.debian.org/gnome-team/vte2.91
|
|
||||||
Vcs-Browser: https://salsa.debian.org/gnome-team/vte2.91
|
|
||||||
Vcs-Git: https://salsa.debian.org/gnome-team/vte2.91.git
|
|
||||||
Homepage: https://wiki.gnome.org/Apps/Terminal/VTE
|
|
||||||
|
|
||||||
Package: libvte-2.91-0
|
|
||||||
Architecture: any
|
|
||||||
Depends: libvte-2.91-common (= ${binary:Version}),
|
|
||||||
${misc:Depends},
|
|
||||||
${shlibs:Depends}
|
|
||||||
Multi-Arch: same
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - runtime files
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains the runtime library, needed by programs using the
|
|
||||||
VTE widget with GTK+ 3.0.
|
|
||||||
|
|
||||||
Package: libvte-2.91-0-udeb
|
|
||||||
Package-Type: udeb
|
|
||||||
Build-Profiles: <!noudeb>
|
|
||||||
Section: debian-installer
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${misc:Depends},
|
|
||||||
${shlibs:Depends}
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - minimal runtime
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains the minimal runtime library for GTK+ 3.0 needed
|
|
||||||
by the Debian installer.
|
|
||||||
|
|
||||||
Package: gir1.2-vte-2.91
|
|
||||||
Architecture: any
|
|
||||||
Section: introspection
|
|
||||||
Depends: ${gir:Depends},
|
|
||||||
${misc:Depends}
|
|
||||||
Multi-Arch: same
|
|
||||||
Description: GObject introspection data for the VTE library
|
|
||||||
This package contains introspection data for VTE, a terminal emulator
|
|
||||||
widget for GTK+.
|
|
||||||
.
|
|
||||||
It can be used by interpreters understanding the GIRepository format to
|
|
||||||
write programs using the VTE widget for GTK+ 3.0.
|
|
||||||
|
|
||||||
Package: libvte-2.91-dev
|
|
||||||
Architecture: any
|
|
||||||
Section: libdevel
|
|
||||||
Depends: gir1.2-vte-2.91 (= ${binary:Version}),
|
|
||||||
libglib2.0-dev (>= 2.40.0),
|
|
||||||
libgnutls28-dev (>= 3.2.7),
|
|
||||||
libgtk-3-dev (>= 3.12.0),
|
|
||||||
libpango1.0-dev (>= 1.22.0),
|
|
||||||
libpcre2-dev (>= 10.21),
|
|
||||||
libvte-2.91-0 (= ${binary:Version}),
|
|
||||||
libvte-2.91-common,
|
|
||||||
zlib1g-dev,
|
|
||||||
${misc:Depends}
|
|
||||||
Recommends: libvte-2.91-doc
|
|
||||||
Conflicts: libvte-2.90-dev
|
|
||||||
Multi-Arch: same
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - development files
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains development files for the VTE library and its
|
|
||||||
Python bindings. It is needed to develop and build programs using the
|
|
||||||
VTE widget with GTK+ 3.0.
|
|
||||||
|
|
||||||
Package: libvte-2.91-common
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
|
||||||
Replaces: libvte-2.91-0 (<= 0.60.0-0)
|
|
||||||
Breaks: libvte-2.91-0 (<= 0.60.0-0)
|
|
||||||
Multi-Arch: foreign
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - common files
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains internationalization files for the VTE library
|
|
||||||
and common files for the GTK+ 3.x version.
|
|
||||||
|
|
||||||
Package: libvte-2.91-doc
|
|
||||||
Architecture: all
|
|
||||||
Multi-Arch: foreign
|
|
||||||
Section: doc
|
|
||||||
Depends: ${misc:Depends}
|
|
||||||
Build-Profiles: <!nodoc>
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - documentation
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains documentation files for the VTE library for GTK+
|
|
||||||
3.x.
|
|
|
@ -1,132 +0,0 @@
|
||||||
Source: vte2.91
|
|
||||||
Section: libs
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
|
|
||||||
XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
|
|
||||||
Uploaders: @GNOME_TEAM@
|
|
||||||
Build-Depends: debhelper-compat (= 12),
|
|
||||||
dh-sequence-gnome,
|
|
||||||
dh-sequence-gir,
|
|
||||||
gettext,
|
|
||||||
gtk-doc-tools,
|
|
||||||
libgirepository1.0-dev (>= 0.9.12),
|
|
||||||
libglib2.0-dev (>= 2.52.0),
|
|
||||||
libgnutls28-dev (>= 3.2.7),
|
|
||||||
libgtk-3-dev (>= 3.20),
|
|
||||||
libicu-dev,
|
|
||||||
libpango1.0-dev (>= 1.22.0),
|
|
||||||
libpcre2-dev (>= 10.21),
|
|
||||||
libsystemd-dev (>= 220) [linux-any],
|
|
||||||
libxml2-utils,
|
|
||||||
meson (>= 0.50.0),
|
|
||||||
valac (>= 0.31.1)
|
|
||||||
Rules-Requires-Root: no
|
|
||||||
Build-Depends-Indep: libatk1.0-doc <!nodoc>,
|
|
||||||
libglib2.0-doc <!nodoc>,
|
|
||||||
libgtk-3-doc <!nodoc>
|
|
||||||
Standards-Version: 4.5.0
|
|
||||||
XS-Debian-Vcs-Git: https://salsa.debian.org/gnome-team/vte2.91.git
|
|
||||||
XS-Debian-Vcs-Browser: https://salsa.debian.org/gnome-team/vte2.91
|
|
||||||
Vcs-Browser: https://salsa.debian.org/gnome-team/vte2.91
|
|
||||||
Vcs-Git: https://salsa.debian.org/gnome-team/vte2.91.git
|
|
||||||
Homepage: https://wiki.gnome.org/Apps/Terminal/VTE
|
|
||||||
|
|
||||||
Package: libvte-2.91-0
|
|
||||||
Architecture: any
|
|
||||||
Depends: libvte-2.91-common (= ${binary:Version}),
|
|
||||||
${misc:Depends},
|
|
||||||
${shlibs:Depends}
|
|
||||||
Multi-Arch: same
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - runtime files
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains the runtime library, needed by programs using the
|
|
||||||
VTE widget with GTK+ 3.0.
|
|
||||||
|
|
||||||
Package: libvte-2.91-0-udeb
|
|
||||||
Package-Type: udeb
|
|
||||||
Build-Profiles: <!noudeb>
|
|
||||||
Section: debian-installer
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${misc:Depends},
|
|
||||||
${shlibs:Depends}
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - minimal runtime
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains the minimal runtime library for GTK+ 3.0 needed
|
|
||||||
by the Debian installer.
|
|
||||||
|
|
||||||
Package: gir1.2-vte-2.91
|
|
||||||
Architecture: any
|
|
||||||
Section: introspection
|
|
||||||
Depends: ${gir:Depends},
|
|
||||||
${misc:Depends}
|
|
||||||
Multi-Arch: same
|
|
||||||
Description: GObject introspection data for the VTE library
|
|
||||||
This package contains introspection data for VTE, a terminal emulator
|
|
||||||
widget for GTK+.
|
|
||||||
.
|
|
||||||
It can be used by interpreters understanding the GIRepository format to
|
|
||||||
write programs using the VTE widget for GTK+ 3.0.
|
|
||||||
|
|
||||||
Package: libvte-2.91-dev
|
|
||||||
Architecture: any
|
|
||||||
Section: libdevel
|
|
||||||
Depends: gir1.2-vte-2.91 (= ${binary:Version}),
|
|
||||||
libglib2.0-dev (>= 2.40.0),
|
|
||||||
libgnutls28-dev (>= 3.2.7),
|
|
||||||
libgtk-3-dev (>= 3.12.0),
|
|
||||||
libpango1.0-dev (>= 1.22.0),
|
|
||||||
libpcre2-dev (>= 10.21),
|
|
||||||
libvte-2.91-0 (= ${binary:Version}),
|
|
||||||
libvte-2.91-common,
|
|
||||||
zlib1g-dev,
|
|
||||||
${misc:Depends}
|
|
||||||
Recommends: libvte-2.91-doc
|
|
||||||
Conflicts: libvte-2.90-dev
|
|
||||||
Multi-Arch: same
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - development files
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains development files for the VTE library and its
|
|
||||||
Python bindings. It is needed to develop and build programs using the
|
|
||||||
VTE widget with GTK+ 3.0.
|
|
||||||
|
|
||||||
Package: libvte-2.91-common
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
|
||||||
Replaces: libvte-2.91-0 (<= 0.60.0-2ubuntu1)
|
|
||||||
Breaks: libvte-2.91-0 (<= 0.60.0-2ubuntu1)
|
|
||||||
Multi-Arch: foreign
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - common files
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains internationalization files for the VTE library
|
|
||||||
and common files for the GTK+ 3.x version.
|
|
||||||
|
|
||||||
Package: libvte-2.91-doc
|
|
||||||
Architecture: all
|
|
||||||
Multi-Arch: foreign
|
|
||||||
Section: doc
|
|
||||||
Depends: ${misc:Depends}
|
|
||||||
Build-Profiles: <!nodoc>
|
|
||||||
Description: Terminal emulator widget for GTK+ 3.0 - documentation
|
|
||||||
The VTE library provides a terminal emulator widget VteTerminal for
|
|
||||||
applications using the GTK+ toolkit. It also provides the VtePTY object
|
|
||||||
containing functions for starting a new process on a new
|
|
||||||
pseudo-terminal and for manipulating pseudo-terminals.
|
|
||||||
.
|
|
||||||
This package contains documentation files for the VTE library for GTK+
|
|
||||||
3.x.
|
|
|
@ -1,199 +0,0 @@
|
||||||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
|
||||||
Upstream-Name: vte
|
|
||||||
Source: https://download.gnome.org/sources/vte/
|
|
||||||
|
|
||||||
Files: *
|
|
||||||
Copyright: 2001-2010 Red Hat, Inc.
|
|
||||||
2008-2018 Christian Persch
|
|
||||||
License: LGPL-2.1+
|
|
||||||
|
|
||||||
Files: po/*.po
|
|
||||||
Copyright: 2002-2017 Free Software Foundation, Inc.
|
|
||||||
2003-2017 the vte authors
|
|
||||||
2002-2014 Kjartan Maraas
|
|
||||||
2003 Mətin Əmirov
|
|
||||||
2003 The FarsiWeb Project Group
|
|
||||||
2003-2008 GNOME Foundation
|
|
||||||
2004 Tamil Translation Team
|
|
||||||
2004 Aiet Kolkhi
|
|
||||||
2005 Canonical Ltd.
|
|
||||||
2006 Gnome i18n Project for Latvian
|
|
||||||
2007 Swecha Telugu Localisation Team
|
|
||||||
2007-2010 The GNOME Project
|
|
||||||
2010 The IFSUG Translation Group
|
|
||||||
2010 Fran Diéguez
|
|
||||||
Adam Weinberger
|
|
||||||
Croatiann team
|
|
||||||
License: LGPL-2.1+
|
|
||||||
|
|
||||||
Files:
|
|
||||||
src/attr.hh
|
|
||||||
src/color-triple.hh
|
|
||||||
src/modes-ecma.hh
|
|
||||||
src/modes-private.hh
|
|
||||||
src/modes-test.cc
|
|
||||||
src/modes.hh
|
|
||||||
src/parser-arg.hh
|
|
||||||
src/parser-c01.hh
|
|
||||||
src/parser-charset-tables.hh
|
|
||||||
src/parser-charset.hh
|
|
||||||
src/parser-cmd.hh
|
|
||||||
src/parser-csi.hh
|
|
||||||
src/parser-dcs.hh
|
|
||||||
src/parser-esc.hh
|
|
||||||
src/parser-glue.hh
|
|
||||||
src/parser-osc.hh
|
|
||||||
src/parser-reply.hh
|
|
||||||
src/parser-string.hh
|
|
||||||
src/parser-test.cc
|
|
||||||
src/parser.cc
|
|
||||||
src/parser.hh
|
|
||||||
src/refptr-test.cc
|
|
||||||
src/refptr.hh
|
|
||||||
src/tabstops-test.cc
|
|
||||||
src/tabstops.hh
|
|
||||||
src/vteseq.cc
|
|
||||||
src/widget.cc
|
|
||||||
src/widget.hh
|
|
||||||
Copyright: 2001-2010 Red Hat, Inc.
|
|
||||||
2015 David Herrmann
|
|
||||||
2008-2018 Christian Persch
|
|
||||||
License: LGPL-3+
|
|
||||||
|
|
||||||
Files:
|
|
||||||
src/utf8-test.cc
|
|
||||||
Copyright: 2015-2016 Mozilla Foundation
|
|
||||||
2018 Christian Persch
|
|
||||||
License: LGPL-3+ and Expat
|
|
||||||
|
|
||||||
Files:
|
|
||||||
src/utf8.cc
|
|
||||||
src/utf8.hh
|
|
||||||
Copyright: 2008-2009 Bjoern Hoerhmann
|
|
||||||
License: Expat
|
|
||||||
|
|
||||||
Files: src/vtestream-file.h
|
|
||||||
Copyright: 2009,2010 Red Hat, Inc.
|
|
||||||
2013 Google, Inc.
|
|
||||||
License: LGPL-2.1+
|
|
||||||
|
|
||||||
Files:
|
|
||||||
src/app/*
|
|
||||||
src/parser-cat.cc
|
|
||||||
src/vte.sh
|
|
||||||
Copyright: 2001-2003 Red Hat, Inc.
|
|
||||||
2006 Shaun McCance <shaunm@gnome.org>
|
|
||||||
2013 Peter De Wachter <pdewacht@gmail.com>
|
|
||||||
2017-2018 Christian Persch
|
|
||||||
License: GPL-3+
|
|
||||||
|
|
||||||
Files: src/box_drawing_generate.sh
|
|
||||||
perf/img.sh
|
|
||||||
perf/256test.sh
|
|
||||||
perf/sgr-test.sh
|
|
||||||
Copyright: 2014-2017 Egmont Koblinger
|
|
||||||
License: GPL-2+
|
|
||||||
|
|
||||||
Files: src/test-vte-sh.sh
|
|
||||||
Copyright: 2013 Christian Persch
|
|
||||||
License: GPL-2+
|
|
||||||
|
|
||||||
Files: src/app/app.gresource.xml
|
|
||||||
bindings/vala/app.vala
|
|
||||||
bindings/vala/app.gresource.xml
|
|
||||||
Copyright: 2001,2002 Red Hat, Inc.
|
|
||||||
2014 Christian Persch
|
|
||||||
License: GPL-2+
|
|
||||||
|
|
||||||
License: LGPL-2.1+
|
|
||||||
This package is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU Lesser General Public
|
|
||||||
License as published by the Free Software Foundation; either
|
|
||||||
version 2.1 of the License, or (at your option) any later version.
|
|
||||||
.
|
|
||||||
This package 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
|
|
||||||
Lesser General Public License for more details.
|
|
||||||
.
|
|
||||||
You should have received a copy of the GNU Lesser General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
.
|
|
||||||
On Debian systems, the complete text of the GNU Lesser General
|
|
||||||
Public License can be found in "/usr/share/common-licenses/LGPL-2".
|
|
||||||
|
|
||||||
License: LGPL-3+
|
|
||||||
This library is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU Lesser General Public
|
|
||||||
License as published by the Free Software Foundation; either
|
|
||||||
version 3 of the License, or (at your option) any later version.
|
|
||||||
.
|
|
||||||
This library 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
|
|
||||||
Lesser General Public License for more details.
|
|
||||||
.
|
|
||||||
You should have received a copy of the GNU Lesser General Public License
|
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
.
|
|
||||||
On Debian systems, the complete text of the GNU Lesser General
|
|
||||||
Public License can be found in "/usr/share/common-licenses/LGPL-3".
|
|
||||||
|
|
||||||
License: GPL-2+
|
|
||||||
This package 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 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
.
|
|
||||||
This package 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 <https://www.gnu.org/licenses/>
|
|
||||||
.
|
|
||||||
On Debian systems, the complete text of the GNU General Public
|
|
||||||
License version 2 can be found in "/usr/share/common-licenses/GPL-2".
|
|
||||||
|
|
||||||
License: GPL-3+
|
|
||||||
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 package 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 <https://www.gnu.org/licenses/>.
|
|
||||||
.
|
|
||||||
On Debian systems, the complete text of the GNU General Public
|
|
||||||
License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
|
||||||
|
|
||||||
License: Expat
|
|
||||||
Permission is hereby granted, free of charge, to any
|
|
||||||
person obtaining a copy of this software and associated
|
|
||||||
documentation files (the "Software"), to deal in the
|
|
||||||
Software without restriction, including without
|
|
||||||
limitation the rights to use, copy, modify, merge,
|
|
||||||
publish, distribute, sublicense, and/or sell copies of
|
|
||||||
the Software, and to permit persons to whom the Software
|
|
||||||
is furnished to do so, subject to the following
|
|
||||||
conditions:
|
|
||||||
.
|
|
||||||
The above copyright notice and this permission notice
|
|
||||||
shall be included in all copies or substantial portions
|
|
||||||
of the Software.
|
|
||||||
.
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
||||||
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
||||||
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
||||||
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
||||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
||||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
||||||
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
||||||
DEALINGS IN THE SOFTWARE.
|
|
|
@ -1 +0,0 @@
|
||||||
usr/lib/*/girepository-1.0/Vte-2.91.typelib
|
|
|
@ -1 +0,0 @@
|
||||||
usr/lib/*/libvte*.so.*
|
|
|
@ -1 +0,0 @@
|
||||||
NEWS
|
|
|
@ -1 +0,0 @@
|
||||||
usr/lib/*/libvte-2.91.so.*
|
|
|
@ -1,155 +0,0 @@
|
||||||
libvte-2.91.so.0 libvte-2.91-0 #MINVER#
|
|
||||||
* Build-Depends-Package: libvte-2.91-dev
|
|
||||||
vte_cursor_blink_mode_get_type@Base 0
|
|
||||||
vte_cursor_shape_get_type@Base 0
|
|
||||||
vte_erase_binding_get_type@Base 0
|
|
||||||
vte_format_get_type@Base 0.49.92
|
|
||||||
vte_get_encoding_supported@Base 0.60.0
|
|
||||||
vte_get_encodings@Base 0.60.0
|
|
||||||
vte_get_features@Base 0.40.2
|
|
||||||
vte_get_major_version@Base 0.40.2
|
|
||||||
vte_get_micro_version@Base 0.40.2
|
|
||||||
vte_get_minor_version@Base 0.40.2
|
|
||||||
#MISSING: 0.42.0-1# vte_get_resource@Base 0
|
|
||||||
vte_get_user_shell@Base 0
|
|
||||||
vte_pty_child_setup@Base 0
|
|
||||||
vte_pty_close@Base 0
|
|
||||||
vte_pty_error_get_type@Base 0
|
|
||||||
vte_pty_error_quark@Base 0
|
|
||||||
vte_pty_flags_get_type@Base 0
|
|
||||||
vte_pty_get_fd@Base 0
|
|
||||||
vte_pty_get_size@Base 0
|
|
||||||
vte_pty_get_type@Base 0
|
|
||||||
vte_pty_new_foreign_sync@Base 0
|
|
||||||
vte_pty_new_sync@Base 0
|
|
||||||
vte_pty_set_size@Base 0
|
|
||||||
vte_pty_set_utf8@Base 0
|
|
||||||
vte_pty_spawn_async@Base 0.47.90
|
|
||||||
vte_pty_spawn_finish@Base 0.47.90
|
|
||||||
vte_regex_error_get_type@Base 0.45.90
|
|
||||||
vte_regex_error_quark@Base 0.45.90
|
|
||||||
vte_regex_get_type@Base 0.45.90
|
|
||||||
vte_regex_jit@Base 0.45.90
|
|
||||||
vte_regex_new_for_match@Base 0.45.90
|
|
||||||
vte_regex_new_for_search@Base 0.45.90
|
|
||||||
vte_regex_ref@Base 0.45.90
|
|
||||||
vte_regex_substitute@Base 0.55.90
|
|
||||||
vte_regex_unref@Base 0.45.90
|
|
||||||
(optional=useful only for debugging, skipped by introspection too)vte_set_test_flags@Base 0.54.0
|
|
||||||
vte_terminal_copy_clipboard@Base 0
|
|
||||||
vte_terminal_copy_clipboard_format@Base 0.49.92
|
|
||||||
vte_terminal_copy_primary@Base 0
|
|
||||||
vte_terminal_event_check_gregex_simple@Base 0.44.0
|
|
||||||
vte_terminal_event_check_regex_simple@Base 0.45.90
|
|
||||||
vte_terminal_feed@Base 0
|
|
||||||
vte_terminal_feed_child@Base 0
|
|
||||||
vte_terminal_feed_child_binary@Base 0
|
|
||||||
vte_terminal_get_allow_bold@Base 0
|
|
||||||
vte_terminal_get_allow_hyperlink@Base 0.49.92
|
|
||||||
vte_terminal_get_audible_bell@Base 0
|
|
||||||
vte_terminal_get_bold_is_bright@Base 0.51.90
|
|
||||||
vte_terminal_get_cell_height_scale@Base 0.51.90
|
|
||||||
vte_terminal_get_cell_width_scale@Base 0.51.90
|
|
||||||
vte_terminal_get_char_height@Base 0
|
|
||||||
vte_terminal_get_char_width@Base 0
|
|
||||||
vte_terminal_get_cjk_ambiguous_width@Base 0
|
|
||||||
vte_terminal_get_color_background_for_draw@Base 0.54.0
|
|
||||||
vte_terminal_get_column_count@Base 0
|
|
||||||
vte_terminal_get_current_directory_uri@Base 0
|
|
||||||
vte_terminal_get_current_file_uri@Base 0
|
|
||||||
vte_terminal_get_cursor_blink_mode@Base 0
|
|
||||||
vte_terminal_get_cursor_position@Base 0
|
|
||||||
vte_terminal_get_cursor_shape@Base 0
|
|
||||||
vte_terminal_get_enable_bidi@Base 0.57.90
|
|
||||||
vte_terminal_get_enable_shaping@Base 0.57.90
|
|
||||||
vte_terminal_get_encoding@Base 0
|
|
||||||
vte_terminal_get_font@Base 0
|
|
||||||
vte_terminal_get_font_scale@Base 0
|
|
||||||
vte_terminal_get_geometry_hints@Base 0
|
|
||||||
vte_terminal_get_has_selection@Base 0
|
|
||||||
vte_terminal_get_icon_title@Base 0
|
|
||||||
vte_terminal_get_input_enabled@Base 0
|
|
||||||
vte_terminal_get_mouse_autohide@Base 0
|
|
||||||
vte_terminal_get_pty@Base 0
|
|
||||||
vte_terminal_get_rewrap_on_resize@Base 0
|
|
||||||
vte_terminal_get_row_count@Base 0
|
|
||||||
vte_terminal_get_scroll_on_keystroke@Base 0.51.90
|
|
||||||
vte_terminal_get_scroll_on_output@Base 0.51.90
|
|
||||||
vte_terminal_get_scrollback_lines@Base 0.51.90
|
|
||||||
vte_terminal_get_text@Base 0
|
|
||||||
vte_terminal_get_text_blink_mode@Base 0.51.90
|
|
||||||
vte_terminal_get_text_include_trailing_spaces@Base 0
|
|
||||||
vte_terminal_get_text_range@Base 0
|
|
||||||
vte_terminal_get_type@Base 0
|
|
||||||
vte_terminal_get_window_title@Base 0
|
|
||||||
vte_terminal_get_word_char_exceptions@Base 0.40.2
|
|
||||||
vte_terminal_hyperlink_check_event@Base 0.49.92
|
|
||||||
vte_terminal_match_add_gregex@Base 0
|
|
||||||
vte_terminal_match_add_regex@Base 0.45.90
|
|
||||||
vte_terminal_match_check@Base 0
|
|
||||||
vte_terminal_match_check_event@Base 0
|
|
||||||
vte_terminal_match_remove@Base 0
|
|
||||||
vte_terminal_match_remove_all@Base 0
|
|
||||||
vte_terminal_match_set_cursor@Base 0
|
|
||||||
vte_terminal_match_set_cursor_name@Base 0
|
|
||||||
vte_terminal_match_set_cursor_type@Base 0
|
|
||||||
vte_terminal_new@Base 0
|
|
||||||
vte_terminal_paste_clipboard@Base 0
|
|
||||||
vte_terminal_paste_primary@Base 0
|
|
||||||
vte_terminal_pty_new_sync@Base 0
|
|
||||||
vte_terminal_reset@Base 0
|
|
||||||
vte_terminal_search_find_next@Base 0
|
|
||||||
vte_terminal_search_find_previous@Base 0
|
|
||||||
vte_terminal_search_get_gregex@Base 0
|
|
||||||
vte_terminal_search_get_regex@Base 0.45.90
|
|
||||||
vte_terminal_search_get_wrap_around@Base 0
|
|
||||||
vte_terminal_search_set_gregex@Base 0
|
|
||||||
vte_terminal_search_set_regex@Base 0.45.90
|
|
||||||
vte_terminal_search_set_wrap_around@Base 0
|
|
||||||
vte_terminal_select_all@Base 0
|
|
||||||
vte_terminal_set_allow_bold@Base 0
|
|
||||||
vte_terminal_set_allow_hyperlink@Base 0.49.92
|
|
||||||
vte_terminal_set_audible_bell@Base 0
|
|
||||||
vte_terminal_set_backspace_binding@Base 0
|
|
||||||
vte_terminal_set_bold_is_bright@Base 0.51.90
|
|
||||||
vte_terminal_set_cell_height_scale@Base 0.51.90
|
|
||||||
vte_terminal_set_cell_width_scale@Base 0.51.90
|
|
||||||
vte_terminal_set_cjk_ambiguous_width@Base 0
|
|
||||||
vte_terminal_set_clear_background@Base 0.51.90
|
|
||||||
vte_terminal_set_color_background@Base 0
|
|
||||||
vte_terminal_set_color_bold@Base 0
|
|
||||||
vte_terminal_set_color_cursor@Base 0
|
|
||||||
vte_terminal_set_color_cursor_foreground@Base 0.44.0
|
|
||||||
vte_terminal_set_color_foreground@Base 0
|
|
||||||
vte_terminal_set_color_highlight@Base 0
|
|
||||||
vte_terminal_set_color_highlight_foreground@Base 0
|
|
||||||
vte_terminal_set_colors@Base 0
|
|
||||||
vte_terminal_set_cursor_blink_mode@Base 0
|
|
||||||
vte_terminal_set_cursor_shape@Base 0
|
|
||||||
vte_terminal_set_default_colors@Base 0
|
|
||||||
vte_terminal_set_delete_binding@Base 0
|
|
||||||
vte_terminal_set_enable_bidi@Base 0.57.90
|
|
||||||
vte_terminal_set_enable_shaping@Base 0.57.90
|
|
||||||
vte_terminal_set_encoding@Base 0
|
|
||||||
vte_terminal_set_font@Base 0
|
|
||||||
vte_terminal_set_font_scale@Base 0
|
|
||||||
vte_terminal_set_geometry_hints_for_window@Base 0
|
|
||||||
vte_terminal_set_input_enabled@Base 0
|
|
||||||
vte_terminal_set_mouse_autohide@Base 0
|
|
||||||
vte_terminal_set_pty@Base 0
|
|
||||||
vte_terminal_set_rewrap_on_resize@Base 0
|
|
||||||
vte_terminal_set_scroll_on_keystroke@Base 0
|
|
||||||
vte_terminal_set_scroll_on_output@Base 0
|
|
||||||
vte_terminal_set_scrollback_lines@Base 0
|
|
||||||
vte_terminal_set_size@Base 0
|
|
||||||
vte_terminal_set_text_blink_mode@Base 0.51.90
|
|
||||||
vte_terminal_set_word_char_exceptions@Base 0.40.2
|
|
||||||
vte_terminal_spawn_async@Base 0.47.90
|
|
||||||
vte_terminal_spawn_sync@Base 0
|
|
||||||
vte_terminal_unselect_all@Base 0
|
|
||||||
vte_terminal_watch_child@Base 0
|
|
||||||
vte_terminal_write_contents_sync@Base 0
|
|
||||||
vte_text_blink_mode_get_type@Base 0.51.90
|
|
||||||
vte_write_flags_get_type@Base 0
|
|
||||||
(optional=template|regex|arch=rv64g riscv64)"_ZN.*@Base" 0
|
|
||||||
(optional=template|regex|arch=rv64g riscv64)"_ZS.*@Base" 0
|
|
|
@ -1,4 +0,0 @@
|
||||||
etc/profile.d/
|
|
||||||
usr/lib/systemd/
|
|
||||||
usr/libexec/
|
|
||||||
usr/share/locale
|
|
|
@ -1,5 +0,0 @@
|
||||||
usr/include/vte-2.91
|
|
||||||
usr/lib/*/libvte-2.91.so
|
|
||||||
usr/lib/*/pkgconfig/vte-2.91.pc
|
|
||||||
usr/share/gir-1.0
|
|
||||||
usr/share/vala/vapi
|
|
|
@ -1 +0,0 @@
|
||||||
usr/share/gtk-doc
|
|
|
@ -1,82 +0,0 @@
|
||||||
#!/usr/bin/make -f
|
|
||||||
|
|
||||||
binaries := $(shell dh_listpackages)
|
|
||||||
LIB_PKG := $(shell sed -rn 's/^Package:[[:space:]]*(libvte-[0-9\.-]+)[[:space:]]*$$/\1/p' debian/control)
|
|
||||||
UDEB_PKG := $(LIB_PKG)-udeb
|
|
||||||
|
|
||||||
ifeq ($(DEB_HOST_ARCH), rv64g)
|
|
||||||
export DEB_BUILD_OPTIONS=nocheck
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
|
||||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed
|
|
||||||
|
|
||||||
%:
|
|
||||||
dh $@
|
|
||||||
|
|
||||||
CONFFLAGS_deb = \
|
|
||||||
-Ddocs=true \
|
|
||||||
-Dgir=true \
|
|
||||||
-Dgnutls=true
|
|
||||||
|
|
||||||
CONFFLAGS_udeb = \
|
|
||||||
-Ddocs=false \
|
|
||||||
-Dgir=false \
|
|
||||||
-Dgnutls=false \
|
|
||||||
-Dvapi=false \
|
|
||||||
-D_systemd=false
|
|
||||||
|
|
||||||
override_dh_auto_configure:
|
|
||||||
dh_auto_configure --builddirectory=build-deb -- $(CONFFLAGS_deb)
|
|
||||||
ifneq ($(filter %-udeb,$(binaries)),)
|
|
||||||
dh_auto_configure --builddirectory=build-udeb -- $(CONFFLAGS_udeb)
|
|
||||||
endif
|
|
||||||
|
|
||||||
override_dh_auto_build:
|
|
||||||
dh_auto_build --builddirectory=build-deb
|
|
||||||
ifneq ($(filter %-udeb,$(binaries)),)
|
|
||||||
dh_auto_build --builddirectory=build-udeb
|
|
||||||
endif
|
|
||||||
|
|
||||||
override_dh_auto_install:
|
|
||||||
dh_auto_install --builddirectory=build-deb \
|
|
||||||
--destdir=debian/tmp/deb
|
|
||||||
rm debian/tmp/deb/usr/bin/vte-2.91
|
|
||||||
ifneq ($(filter %-udeb,$(binaries)),)
|
|
||||||
dh_auto_install --builddirectory=build-udeb \
|
|
||||||
--destdir=debian/tmp/udeb
|
|
||||||
rm debian/tmp/udeb/usr/bin/vte-2.91
|
|
||||||
rm debian/tmp/udeb/usr/libexec/vte-urlencode-cwd
|
|
||||||
endif
|
|
||||||
mv debian/tmp/deb/etc/profile.d/vte.sh \
|
|
||||||
debian/tmp/deb/etc/profile.d/vte-2.91.sh
|
|
||||||
|
|
||||||
override_dh_auto_clean:
|
|
||||||
dh_auto_clean --builddirectory=build-deb
|
|
||||||
ifneq ($(filter %-udeb,$(binaries)),)
|
|
||||||
dh_auto_clean --builddirectory=build-udeb
|
|
||||||
endif
|
|
||||||
|
|
||||||
override_dh_clean:
|
|
||||||
rm -f debian/libvte-2.91-common.install.kfreebsd
|
|
||||||
rm -f debian/libvte-2.91-common.install.hurd
|
|
||||||
dh_clean
|
|
||||||
|
|
||||||
override_dh_auto_test:
|
|
||||||
dh_auto_test --builddirectory=build-deb
|
|
||||||
|
|
||||||
override_dh_makeshlibs:
|
|
||||||
dh_makeshlibs -p$(LIB_PKG) --add-udeb=$(UDEB_PKG) -V -- -c4
|
|
||||||
dh_makeshlibs --remaining-packages
|
|
||||||
|
|
||||||
override_dh_install:
|
|
||||||
grep -E -v 'lib/systemd' debian/libvte-2.91-common.install > debian/libvte-2.91-common.install.kfreebsd
|
|
||||||
grep -E -v 'lib/systemd' debian/libvte-2.91-common.install > debian/libvte-2.91-common.install.hurd
|
|
||||||
ifneq ($(filter %-udeb,$(binaries)),)
|
|
||||||
dh_install -p$(UDEB_PKG) --sourcedir=debian/tmp/udeb
|
|
||||||
endif
|
|
||||||
dh_install --remaining-packages --sourcedir=debian/tmp/deb
|
|
||||||
|
|
||||||
override_dh_missing:
|
|
||||||
dh_missing --fail-missing
|
|
|
@ -1 +0,0 @@
|
||||||
3.0 (native)
|
|
|
@ -1,70 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# autopkgtest check: Build and run a program against VTE, to verify that the
|
|
||||||
# headers and pkg-config file are installed correctly
|
|
||||||
# Based on d/tests/build from glib2.0
|
|
||||||
# (C) 2012 Canonical Ltd.
|
|
||||||
# (C) 2018 Simon McVittie
|
|
||||||
# Authors: Martin Pitt, Simon McVittie
|
|
||||||
|
|
||||||
set -eux
|
|
||||||
|
|
||||||
mode=dynamic
|
|
||||||
|
|
||||||
getopt_temp="$(getopt -o '' --long 'static' -n debian/tests/build -- "$@")"
|
|
||||||
eval set -- "$getopt_temp"
|
|
||||||
|
|
||||||
while true; do
|
|
||||||
case "$1" in
|
|
||||||
(--static)
|
|
||||||
mode=static
|
|
||||||
shift
|
|
||||||
continue
|
|
||||||
;;
|
|
||||||
|
|
||||||
(--)
|
|
||||||
shift
|
|
||||||
break
|
|
||||||
;;
|
|
||||||
|
|
||||||
(*)
|
|
||||||
echo "getopt: Internal error" >&2
|
|
||||||
exit 2
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
WORKDIR=$(mktemp -d)
|
|
||||||
trap 'rm -rf "$WORKDIR"' 0 INT QUIT ABRT PIPE TERM
|
|
||||||
cd "$WORKDIR"
|
|
||||||
|
|
||||||
if [ -n "${DEB_HOST_GNU_TYPE:-}" ]; then
|
|
||||||
CROSS_COMPILE="${DEB_HOST_GNU_TYPE}-"
|
|
||||||
else
|
|
||||||
CROSS_COMPILE=
|
|
||||||
fi
|
|
||||||
|
|
||||||
cat <<EOF > example.c
|
|
||||||
#include <vte/vte.h>
|
|
||||||
|
|
||||||
int main(void)
|
|
||||||
{
|
|
||||||
g_assert_cmpuint (VTE_TYPE_REGEX, !=, G_TYPE_INVALID);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
cflags=
|
|
||||||
pcflags=
|
|
||||||
|
|
||||||
case "$mode" in
|
|
||||||
(static)
|
|
||||||
cflags=-static
|
|
||||||
pcflags=--static
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# shellcheck disable=SC2046
|
|
||||||
"${CROSS_COMPILE}gcc" $cflags -o "$mode" example.c $("${CROSS_COMPILE}pkg-config" $pcflags --cflags --libs vte-2.91)
|
|
||||||
echo "build ($mode): OK"
|
|
||||||
[ -x "$mode" ]
|
|
||||||
"./$mode"
|
|
||||||
echo "run ($mode): OK"
|
|
|
@ -1,3 +0,0 @@
|
||||||
Tests: build
|
|
||||||
Depends: build-essential, libvte-2.91-dev
|
|
||||||
Restrictions: allow-stderr superficial
|
|
|
@ -1,3 +0,0 @@
|
||||||
version=4
|
|
||||||
https://download.gnome.org/sources/vte/([\d\.]+[02468])/ \
|
|
||||||
vte@ANY_VERSION@@ARCHIVE_EXT@
|
|
|
@ -15,7 +15,7 @@ the context in which they appear.
|
||||||
|
|
||||||
Width information is crucial for terminal-based applications which need
|
Width information is crucial for terminal-based applications which need
|
||||||
to address the screen: if the application draws five characters and
|
to address the screen: if the application draws five characters and
|
||||||
expects the cursor to be in moved six columns to the right, and the
|
expects the cursor to be moved six columns to the right, and the
|
||||||
terminal moves the cursor seven (or five, or any number other than six),
|
terminal moves the cursor seven (or five, or any number other than six),
|
||||||
display bugs manifest.
|
display bugs manifest.
|
||||||
|
|
||||||
|
@ -28,9 +28,9 @@ locale information.
|
||||||
There are basically four approaches to solving this problem:
|
There are basically four approaches to solving this problem:
|
||||||
A) Force characters with ambiguous width to be single-width.
|
A) Force characters with ambiguous width to be single-width.
|
||||||
B) Force characters with ambiguous width to be double-width.
|
B) Force characters with ambiguous width to be double-width.
|
||||||
C) Force characters with ambiguous width to be have a width value based
|
C) Force characters with ambiguous width to have a width value based
|
||||||
on the locale's region.
|
on the locale's region.
|
||||||
D) Force characters with ambiguous width to be have a width value based
|
D) Force characters with ambiguous width to have a width value based
|
||||||
on the locale's encoding.
|
on the locale's encoding.
|
||||||
|
|
||||||
Methods A and B will produce display bugs, because they don't take into
|
Methods A and B will produce display bugs, because they don't take into
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
# Copyright © 2022 Christian Persch
|
||||||
|
#
|
||||||
|
# This library is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library 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 Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
This documentation is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Lesser General Public License as published
|
||||||
|
by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This documentation 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 Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with this documentation. If not, see <https://www.gnu.org/licenses/>.
|
|
@ -1,108 +1,97 @@
|
||||||
# Copyright © 2018, 2019 Iñigo Martínez
|
# Copyright © 2021, 2022 Christian Persch
|
||||||
#
|
#
|
||||||
# This library is free software; you can redistribute it and/or modify it
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# the Free Software Foundation; either version 3 of the License, or (at your
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This library is distributed in the hope that it will be useful, but
|
# This library is distributed in the hope that it will be useful,
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
# Meson insufficiency! Would be so much easier to just make this
|
assert(get_option('gir'), 'Introspection must be enabled to build docs')
|
||||||
# (vte_gtk3_sources - vte_gtk3_public_headers).filter('.h'), but
|
|
||||||
# but there is no array subtraction or filtering. Or just allow listing the
|
|
||||||
# headers that we DO want to get scanned.
|
|
||||||
# So instead just list all the headers here again... :-(
|
|
||||||
|
|
||||||
private_headers = [
|
gidocgen = find_program('gi-docgen', required: true)
|
||||||
'buffer.h',
|
|
||||||
'caps.hh',
|
doc_conf = configuration_data()
|
||||||
'cell.hh',
|
doc_conf.set('version', meson.project_version())
|
||||||
'config.h',
|
|
||||||
'debug.h',
|
doc_sources = [
|
||||||
'keymap.h',
|
'licence.md',
|
||||||
'marshal.h',
|
|
||||||
'modes.hh',
|
|
||||||
'modes-ecma.hh',
|
|
||||||
'modes-private.hh',
|
|
||||||
'parser.hh',
|
|
||||||
'parser-arg.hh',
|
|
||||||
'parser-c01.hh',
|
|
||||||
'parser-charset.hh',
|
|
||||||
'parser-charset-tables.hh',
|
|
||||||
'parser-cmd.hh',
|
|
||||||
'parser-csi.hh',
|
|
||||||
'parser-dcs.hh',
|
|
||||||
'parser-esc.hh',
|
|
||||||
'parser-glue.hh',
|
|
||||||
'parser-osc.hh',
|
|
||||||
'parser-reply.hh',
|
|
||||||
'parser-string.hh',
|
|
||||||
'ring.hh',
|
|
||||||
'tabstops.hh',
|
|
||||||
'vteconv.h',
|
|
||||||
'vtedraw.h',
|
|
||||||
'vteinternal.hh',
|
|
||||||
'vterowdata.hh',
|
|
||||||
'vtestream-base.h',
|
|
||||||
'vtestream-file.h',
|
|
||||||
'vtestream.h',
|
|
||||||
'vtetypebuiltins.h',
|
|
||||||
'vteunistr.h',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
scan_args = [
|
docdir = vte_datadir / 'doc'
|
||||||
'--deprecated-guards="VTE_DISABLE_DEPRECATED"',
|
|
||||||
'--ignore-decorators=_VTE_GNUC_NONNULL\s*\([^)]*\)',
|
|
||||||
]
|
|
||||||
|
|
||||||
glib_prefix = glib_dep.get_pkgconfig_variable('prefix')
|
|
||||||
|
|
||||||
version_conf = configuration_data()
|
|
||||||
version_conf.set('VERSION', vte_version)
|
|
||||||
|
|
||||||
content_files = configure_file(
|
|
||||||
input: 'version.xml.in',
|
|
||||||
output: '@BASENAME@',
|
|
||||||
configuration: version_conf
|
|
||||||
)
|
|
||||||
|
|
||||||
if get_option('gtk3')
|
if get_option('gtk3')
|
||||||
gtk3_prefix = gtk3_dep.get_pkgconfig_variable('prefix')
|
|
||||||
|
|
||||||
fixxref_args = [
|
libvte_gtk3_docs_toml = configure_file(
|
||||||
'--html-dir=' + (vte_prefix / gnome.gtkdoc_html_dir(vte_gtk3_api_name)),
|
configuration: doc_conf,
|
||||||
'--extra-dir=' + (glib_prefix / gnome.gtkdoc_html_dir('glib')),
|
input: 'vte-gtk3.toml.in',
|
||||||
'--extra-dir=' + (glib_prefix / gnome.gtkdoc_html_dir('gio')),
|
|
||||||
'--extra-dir=' + (gtk3_prefix / gnome.gtkdoc_html_dir('gdk')),
|
|
||||||
'--extra-dir=' + (gtk3_prefix / gnome.gtkdoc_html_dir('gdk-pixbuf')),
|
|
||||||
'--extra-dir=' + (gtk3_prefix / gnome.gtkdoc_html_dir('gtk')),
|
|
||||||
]
|
|
||||||
|
|
||||||
gnome.gtkdoc(
|
|
||||||
'vte',
|
|
||||||
main_xml: 'vte-docs.xml',
|
|
||||||
module_version: vte_api_version,
|
|
||||||
src_dir: [src_inc, vte_inc],
|
|
||||||
ignore_headers: private_headers,
|
|
||||||
include_directories: top_inc,
|
|
||||||
dependencies: libvte_gtk3_dep,
|
|
||||||
c_args: '-DVTE_COMPILATION',
|
|
||||||
namespace: 'vte',
|
|
||||||
scan_args: scan_args,
|
|
||||||
mkdb_args: '--source-suffixes=h,hh,c,cc',
|
|
||||||
fixxref_args: fixxref_args,
|
|
||||||
gobject_typesfile: 'vte.types',
|
|
||||||
content_files: content_files,
|
|
||||||
install: true,
|
install: true,
|
||||||
|
install_dir: docdir / vte_gtk3_api_name,
|
||||||
|
output: vte_gtk3_api_name + '.toml',
|
||||||
)
|
)
|
||||||
endif
|
|
||||||
|
libvte_gtk3_docs = custom_target(
|
||||||
|
vte_gtk3_api_name,
|
||||||
|
command: [
|
||||||
|
gidocgen,
|
||||||
|
'generate',
|
||||||
|
'--config', '@INPUT0@',
|
||||||
|
'--content-dir', meson.current_source_dir(),
|
||||||
|
'--fatal-warnings',
|
||||||
|
'--no-namespace-dir',
|
||||||
|
'--output-dir', '@OUTPUT@',
|
||||||
|
'--quiet',
|
||||||
|
'@INPUT1@',
|
||||||
|
],
|
||||||
|
depend_files: [doc_sources,],
|
||||||
|
input: [
|
||||||
|
libvte_gtk3_docs_toml,
|
||||||
|
libvte_gtk3_gir[0],
|
||||||
|
],
|
||||||
|
install: true,
|
||||||
|
install_dir: docdir,
|
||||||
|
output: vte_gtk3_api_name,
|
||||||
|
)
|
||||||
|
|
||||||
|
endif # gtk3
|
||||||
|
|
||||||
if get_option('gtk4')
|
if get_option('gtk4')
|
||||||
assert(false, 'not yet supported')
|
|
||||||
endif
|
libvte_gtk4_docs_toml = configure_file(
|
||||||
|
configuration: doc_conf,
|
||||||
|
input: 'vte-gtk4.toml.in',
|
||||||
|
install: true,
|
||||||
|
install_dir: docdir / vte_gtk4_api_name,
|
||||||
|
output: vte_gtk4_api_name + '.toml',
|
||||||
|
)
|
||||||
|
|
||||||
|
libvte_gtk4_docs = custom_target(
|
||||||
|
vte_gtk4_api_name,
|
||||||
|
command: [
|
||||||
|
gidocgen,
|
||||||
|
'generate',
|
||||||
|
'--config', '@INPUT0@',
|
||||||
|
'--content-dir', meson.current_source_dir(),
|
||||||
|
'--fatal-warnings',
|
||||||
|
'--no-namespace-dir',
|
||||||
|
'--output-dir', '@OUTPUT@',
|
||||||
|
'--quiet',
|
||||||
|
'@INPUT1@',
|
||||||
|
],
|
||||||
|
depend_files: [doc_sources,],
|
||||||
|
input: [
|
||||||
|
libvte_gtk4_docs_toml,
|
||||||
|
libvte_gtk4_gir[0],
|
||||||
|
],
|
||||||
|
install: true,
|
||||||
|
install_dir: docdir,
|
||||||
|
output: vte_gtk4_api_name,
|
||||||
|
)
|
||||||
|
|
||||||
|
endif # gtk4
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
@VERSION@
|
|
|
@ -1,161 +0,0 @@
|
||||||
<?xml version="1.0"?>
|
|
||||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
|
||||||
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
|
|
||||||
<!ENTITY version SYSTEM "version.xml">
|
|
||||||
]>
|
|
||||||
<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
|
|
||||||
<!--
|
|
||||||
Copyright © 2009, 2010 Christian Persch
|
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the GNU Lesser General Public
|
|
||||||
License as published by the Free Software Foundation; either
|
|
||||||
version 2.1 of the License, or (at your option) any later version.
|
|
||||||
|
|
||||||
This library 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
|
|
||||||
Lesser General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public
|
|
||||||
License along with this library; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
-->
|
|
||||||
|
|
||||||
<bookinfo>
|
|
||||||
<title>VTE Reference Manual</title>
|
|
||||||
<releaseinfo>
|
|
||||||
Documentation for VTE version &version;.
|
|
||||||
The latest version of this documentation can be found on-line at the
|
|
||||||
<ulink role="online-location" url="http://library.gnome.org/devel/vte/">GNOME Library</ulink>.
|
|
||||||
</releaseinfo>
|
|
||||||
|
|
||||||
<copyright>
|
|
||||||
<year>2009</year>
|
|
||||||
<year>2010</year>
|
|
||||||
<holder>Christian Persch</holder>
|
|
||||||
</copyright>
|
|
||||||
|
|
||||||
<legalnotice>
|
|
||||||
<para>
|
|
||||||
Permission is granted to copy, distribute and/or modify this document
|
|
||||||
under the terms of the <citetitle>GNU Lesser General Public Licence</citetitle>, Version 2.1
|
|
||||||
or (at your option) any later version published by the Free Software Foundation.
|
|
||||||
|
|
||||||
You may obtain a copy of the <citetitle>GNU Lesser General Public Licence</citetitle>
|
|
||||||
from the Free Software Foundation at
|
|
||||||
<ulink type="http" url="http://www.gnu.org/licences/">GNU Licences web site</ulink>
|
|
||||||
or by writing to:
|
|
||||||
|
|
||||||
<address>
|
|
||||||
The Free Software Foundation, Inc.,
|
|
||||||
<street>51 Franklin St</street> – Fifth Floor,
|
|
||||||
<city>Boston</city>, <state>MA</state> <postcode>02110-1301</postcode>,
|
|
||||||
<country>USA</country>
|
|
||||||
</address>
|
|
||||||
</para>
|
|
||||||
</legalnotice>
|
|
||||||
</bookinfo>
|
|
||||||
|
|
||||||
<part>
|
|
||||||
<title>API Reference</title>
|
|
||||||
<chapter>
|
|
||||||
<xi:include href="xml/vte-terminal.xml"/>
|
|
||||||
</chapter>
|
|
||||||
<chapter>
|
|
||||||
<xi:include href="xml/vte-regex.xml"/>
|
|
||||||
</chapter>
|
|
||||||
<chapter>
|
|
||||||
<xi:include href="xml/vte-pty.xml"/>
|
|
||||||
</chapter>
|
|
||||||
<chapter>
|
|
||||||
<xi:include href="xml/vte-version.xml"/>
|
|
||||||
</chapter>
|
|
||||||
</part>
|
|
||||||
|
|
||||||
<chapter id="object-hierarchy">
|
|
||||||
<title>Object Hierarchy</title>
|
|
||||||
<xi:include href="xml/tree_index.sgml"/>
|
|
||||||
</chapter>
|
|
||||||
|
|
||||||
<index id="api-index-full">
|
|
||||||
<title id="index-all">Index</title>
|
|
||||||
<xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-deprecated" role="deprecated">
|
|
||||||
<title>Index of deprecated symbols</title>
|
|
||||||
<xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-40" role="0.40">
|
|
||||||
<title>Index of new symbols in 0.40</title>
|
|
||||||
<xi:include href="xml/api-index-0.40.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-44" role="0.44">
|
|
||||||
<title>Index of new symbols in 0.44</title>
|
|
||||||
<xi:include href="xml/api-index-0.44.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-46" role="0.46">
|
|
||||||
<title>Index of new symbols in 0.46</title>
|
|
||||||
<xi:include href="xml/api-index-0.46.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-48" role="0.48">
|
|
||||||
<title>Index of new symbols in 0.48</title>
|
|
||||||
<xi:include href="xml/api-index-0.48.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-50" role="0.50">
|
|
||||||
<title>Index of new symbols in 0.50</title>
|
|
||||||
<xi:include href="xml/api-index-0.50.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-52" role="0.52">
|
|
||||||
<title>Index of new symbols in 0.52</title>
|
|
||||||
<xi:include href="xml/api-index-0.52.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-54" role="0.54">
|
|
||||||
<title>Index of new symbols in 0.54</title>
|
|
||||||
<xi:include href="xml/api-index-0.54.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-56" role="0.56">
|
|
||||||
<title>Index of new symbols in 0.56</title>
|
|
||||||
<xi:include href="xml/api-index-0.56.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
<index id="api-index-0-58" role="0.58">
|
|
||||||
<title>Index of new symbols in 0.58</title>
|
|
||||||
<xi:include href="xml/api-index-0.58.xml"><xi:fallback /></xi:include>
|
|
||||||
</index>
|
|
||||||
|
|
||||||
<xi:include href="xml/annotation-glossary.xml"><xi:fallback /></xi:include>
|
|
||||||
|
|
||||||
<appendix id="licence">
|
|
||||||
<title>Licence</title>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
This library is free software; you can redistribute it and/or
|
|
||||||
modify it under the terms of the <citetitle>GNU Lesser General Public
|
|
||||||
Licence</citetitle> as published by the Free Software Foundation; either
|
|
||||||
version 2.1 of the Licence, or (at your option) any later version.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
This library 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
|
|
||||||
<citetitle>GNU Lesser General Public Licence</citetitle> for
|
|
||||||
more details.
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
You may obtain a copy of the <citetitle>GNU Lesser General Public Licence</citetitle>
|
|
||||||
from the Free Software Foundation at
|
|
||||||
<ulink type="http" url="http://www.gnu.org/licences/">GNU Licences web site</ulink>
|
|
||||||
or by writing to:
|
|
||||||
|
|
||||||
<address>
|
|
||||||
The Free Software Foundation, Inc.,
|
|
||||||
<street>51 Franklin St</street> – Fifth Floor,
|
|
||||||
<city>Boston</city>, <state>MA</state> <postcode>02110-1301</postcode>,
|
|
||||||
<country>USA</country>
|
|
||||||
</address>
|
|
||||||
</para>
|
|
||||||
</appendix>
|
|
||||||
|
|
||||||
</book>
|
|
|
@ -0,0 +1,54 @@
|
||||||
|
# Copyright © 2022 Christian Persch
|
||||||
|
#
|
||||||
|
# This library is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library 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 Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
[library]
|
||||||
|
authors = "VTE developers"
|
||||||
|
browse_url = "https://gitlab.gnome.org/GNOME/vte/"
|
||||||
|
dependencies = ["Gdk-3.0", "Gtk-3.0", "GObject-2.0", "Pango-1.0"]
|
||||||
|
description = "Virtual TErminal widget"
|
||||||
|
devhelp = true
|
||||||
|
license = "LGPL-3.0-or-later"
|
||||||
|
repository_url = "https://gitlab.gnome.org/GNOME/vte.git"
|
||||||
|
search_index = true
|
||||||
|
version = "@version@"
|
||||||
|
website_url = "https://wiki.gnome.org/Apps/Terminal"
|
||||||
|
|
||||||
|
[dependencies."Gdk-3.0"]
|
||||||
|
description = "The GDK 3.0 toolkit"
|
||||||
|
docs_url = "https://docs.gtk.org/gdk3/"
|
||||||
|
name = "GDK"
|
||||||
|
|
||||||
|
[dependencies."Gtk-3.0"]
|
||||||
|
description = "The GTK+ 3.0 toolkit"
|
||||||
|
docs_url = "https://docs.gtk.org/gtk3/"
|
||||||
|
name = "GTK"
|
||||||
|
|
||||||
|
[dependencies."GObject-2.0"]
|
||||||
|
description = "The GObject 2.0 toolkit"
|
||||||
|
docs_url = "https://docs.gtk.org/gobject/"
|
||||||
|
name = "GObject"
|
||||||
|
|
||||||
|
[dependencies."Pango-1.0"]
|
||||||
|
description = "The Pango 1.0 toolkit"
|
||||||
|
docs_url = "https://docs.gtk.org/Pango/"
|
||||||
|
name = "Pango"
|
||||||
|
|
||||||
|
[theme]
|
||||||
|
name = "basic"
|
||||||
|
show_class_hierarchy = true
|
||||||
|
show_index_summary = true
|
||||||
|
|
||||||
|
[source-location]
|
||||||
|
base_url = "https://gitlab.gnome.org/GNOME/vte/-/blob/master/"
|
|
@ -0,0 +1,59 @@
|
||||||
|
# Copyright © 2022 Christian Persch
|
||||||
|
#
|
||||||
|
# This library is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# This library 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 Lesser General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
[library]
|
||||||
|
authors = "VTE developers"
|
||||||
|
browse_url = "https://gitlab.gnome.org/GNOME/vte/"
|
||||||
|
dependencies = ["Gdk-4.0", "Graphene-1.0", "Gtk-4.0", "GObject-2.0", "Pango-1.0"]
|
||||||
|
description = "Virtual TErminal widget"
|
||||||
|
devhelp = true
|
||||||
|
license = "LGPL-3.0-or-later"
|
||||||
|
repository_url = "https://gitlab.gnome.org/GNOME/vte.git"
|
||||||
|
search_index = true
|
||||||
|
version = "@version@"
|
||||||
|
website_url = "https://wiki.gnome.org/Apps/Terminal"
|
||||||
|
|
||||||
|
[dependencies."Gdk-4.0"]
|
||||||
|
description = "The GDK 4.0 toolkit"
|
||||||
|
docs_url = "https://docs.gtk.org/gdk4/"
|
||||||
|
name = "GDK"
|
||||||
|
|
||||||
|
[dependencies."Graphene-1.0"]
|
||||||
|
description = "The GSK 1.0 toolkit"
|
||||||
|
docs_url = "https://ebassi.github.io/graphene/docs/"
|
||||||
|
name = "Graphene"
|
||||||
|
|
||||||
|
[dependencies."Gtk-4.0"]
|
||||||
|
description = "The GTK+ 4.0 toolkit"
|
||||||
|
docs_url = "https://docs.gtk.org/gtk4/"
|
||||||
|
name = "GTK"
|
||||||
|
|
||||||
|
[dependencies."GObject-2.0"]
|
||||||
|
description = "The GObject 2.0 toolkit"
|
||||||
|
docs_url = "https://docs.gtk.org/gobject/"
|
||||||
|
name = "GObject"
|
||||||
|
|
||||||
|
[dependencies."Pango-1.0"]
|
||||||
|
description = "The Pango 1.0 toolkit"
|
||||||
|
docs_url = "https://docs.gtk.org/Pango/"
|
||||||
|
name = "Pango"
|
||||||
|
|
||||||
|
[theme]
|
||||||
|
name = "basic"
|
||||||
|
show_class_hierarchy = true
|
||||||
|
show_index_summary = true
|
||||||
|
|
||||||
|
[source-location]
|
||||||
|
base_url = "https://gitlab.gnome.org/GNOME/vte/-/blob/master/"
|
|
@ -1,240 +0,0 @@
|
||||||
<SECTION>
|
|
||||||
<FILE>vte-terminal</FILE>
|
|
||||||
<TITLE>VteTerminal</TITLE>
|
|
||||||
VteTerminal
|
|
||||||
VteCursorBlinkMode
|
|
||||||
VteCursorShape
|
|
||||||
VteEraseBinding
|
|
||||||
VteTextBlinkMode
|
|
||||||
VteFormat
|
|
||||||
VteWriteFlags
|
|
||||||
VteSelectionFunc
|
|
||||||
vte_terminal_new
|
|
||||||
vte_terminal_feed
|
|
||||||
vte_terminal_feed_child
|
|
||||||
vte_terminal_select_all
|
|
||||||
vte_terminal_unselect_all
|
|
||||||
vte_terminal_copy_clipboard_format
|
|
||||||
vte_terminal_paste_clipboard
|
|
||||||
vte_terminal_copy_primary
|
|
||||||
vte_terminal_paste_primary
|
|
||||||
vte_terminal_set_size
|
|
||||||
vte_terminal_set_font_scale
|
|
||||||
vte_terminal_get_font_scale
|
|
||||||
vte_terminal_set_audible_bell
|
|
||||||
vte_terminal_get_audible_bell
|
|
||||||
vte_terminal_set_allow_bold
|
|
||||||
vte_terminal_get_allow_bold
|
|
||||||
vte_terminal_set_bold_is_bright
|
|
||||||
vte_terminal_get_bold_is_bright
|
|
||||||
vte_terminal_set_allow_hyperlink
|
|
||||||
vte_terminal_get_allow_hyperlink
|
|
||||||
vte_terminal_set_scroll_on_output
|
|
||||||
vte_terminal_get_scroll_on_output
|
|
||||||
vte_terminal_set_scroll_on_keystroke
|
|
||||||
vte_terminal_get_scroll_on_keystroke
|
|
||||||
vte_terminal_set_cell_height_scale
|
|
||||||
vte_terminal_get_cell_height_scale
|
|
||||||
vte_terminal_set_cell_width_scale
|
|
||||||
vte_terminal_get_cell_width_scale
|
|
||||||
vte_terminal_set_color_bold
|
|
||||||
vte_terminal_set_color_foreground
|
|
||||||
vte_terminal_set_color_background
|
|
||||||
vte_terminal_set_color_cursor
|
|
||||||
vte_terminal_set_color_cursor_foreground
|
|
||||||
vte_terminal_set_color_highlight
|
|
||||||
vte_terminal_set_color_highlight_foreground
|
|
||||||
vte_terminal_set_colors
|
|
||||||
vte_terminal_set_default_colors
|
|
||||||
vte_terminal_set_cursor_shape
|
|
||||||
vte_terminal_get_cursor_shape
|
|
||||||
vte_terminal_get_cursor_blink_mode
|
|
||||||
vte_terminal_set_cursor_blink_mode
|
|
||||||
vte_terminal_get_text_blink_mode
|
|
||||||
vte_terminal_set_text_blink_mode
|
|
||||||
vte_terminal_set_scrollback_lines
|
|
||||||
vte_terminal_get_scrollback_lines
|
|
||||||
vte_terminal_set_font
|
|
||||||
vte_terminal_get_font
|
|
||||||
vte_terminal_get_has_selection
|
|
||||||
vte_terminal_set_backspace_binding
|
|
||||||
vte_terminal_set_delete_binding
|
|
||||||
vte_terminal_set_mouse_autohide
|
|
||||||
vte_terminal_get_mouse_autohide
|
|
||||||
vte_terminal_set_enable_bidi
|
|
||||||
vte_terminal_get_enable_bidi
|
|
||||||
vte_terminal_set_enable_shaping
|
|
||||||
vte_terminal_get_enable_shaping
|
|
||||||
vte_terminal_reset
|
|
||||||
vte_terminal_get_text
|
|
||||||
vte_terminal_get_text_range
|
|
||||||
vte_terminal_get_cursor_position
|
|
||||||
vte_terminal_hyperlink_check_event
|
|
||||||
vte_terminal_match_add_regex
|
|
||||||
vte_terminal_match_remove
|
|
||||||
vte_terminal_match_remove_all
|
|
||||||
vte_terminal_match_check
|
|
||||||
vte_terminal_match_check_event
|
|
||||||
vte_terminal_match_set_cursor_name
|
|
||||||
vte_terminal_set_cjk_ambiguous_width
|
|
||||||
vte_terminal_get_cjk_ambiguous_width
|
|
||||||
vte_terminal_set_word_char_exceptions
|
|
||||||
vte_terminal_get_word_char_exceptions
|
|
||||||
vte_terminal_set_input_enabled
|
|
||||||
vte_terminal_get_input_enabled
|
|
||||||
vte_terminal_write_contents_sync
|
|
||||||
vte_terminal_search_find_next
|
|
||||||
vte_terminal_search_find_previous
|
|
||||||
vte_terminal_search_get_regex
|
|
||||||
vte_terminal_search_get_wrap_around
|
|
||||||
vte_terminal_search_set_regex
|
|
||||||
vte_terminal_search_set_wrap_around
|
|
||||||
vte_terminal_event_check_regex_simple
|
|
||||||
|
|
||||||
<SUBSECTION>
|
|
||||||
vte_get_user_shell
|
|
||||||
vte_get_features
|
|
||||||
vte_get_encodings
|
|
||||||
vte_get_encoding_supported
|
|
||||||
|
|
||||||
<SUBSECTION>
|
|
||||||
VteTerminalSpawnAsyncCallback
|
|
||||||
vte_terminal_spawn_async
|
|
||||||
vte_terminal_get_pty
|
|
||||||
vte_terminal_set_pty
|
|
||||||
vte_terminal_pty_new_sync
|
|
||||||
vte_terminal_watch_child
|
|
||||||
|
|
||||||
<SUBSECTION>
|
|
||||||
vte_terminal_set_clear_background
|
|
||||||
vte_terminal_get_color_background_for_draw
|
|
||||||
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
VTE_TYPE_CURSOR_BLINK_MODE
|
|
||||||
vte_cursor_blink_mode_get_type
|
|
||||||
VTE_TYPE_CURSOR_SHAPE
|
|
||||||
vte_cursor_shape_get_type
|
|
||||||
VTE_TYPE_ERASE_BINDING
|
|
||||||
vte_erase_binding_get_type
|
|
||||||
VTE_TYPE_TEXT_BLINK_MODE
|
|
||||||
vte_text_blink_mode_get_type
|
|
||||||
VTE_TYPE_FORMAT
|
|
||||||
vte_format_get_type
|
|
||||||
VTE_TYPE_WRITE_FLAGS
|
|
||||||
vte_write_flags_get_type
|
|
||||||
VTE_TYPE_TERMINAL
|
|
||||||
vte_terminal_get_type
|
|
||||||
VTE_IS_TERMINAL
|
|
||||||
VTE_TERMINAL
|
|
||||||
VTE_TERMINAL_GET_CLASS
|
|
||||||
VTE_IS_TERMINAL_CLASS
|
|
||||||
VTE_TERMINAL_CLASS
|
|
||||||
|
|
||||||
<SUBSECTION Binding Accessors>
|
|
||||||
vte_terminal_get_char_height
|
|
||||||
vte_terminal_get_char_width
|
|
||||||
vte_terminal_get_column_count
|
|
||||||
vte_terminal_get_row_count
|
|
||||||
vte_terminal_get_window_title
|
|
||||||
vte_terminal_get_current_directory_uri
|
|
||||||
vte_terminal_get_current_file_uri
|
|
||||||
|
|
||||||
<SUBSECTION Deprecated>
|
|
||||||
vte_terminal_copy_clipboard
|
|
||||||
vte_terminal_match_set_cursor
|
|
||||||
vte_terminal_match_set_cursor_type
|
|
||||||
vte_terminal_match_add_gregex
|
|
||||||
vte_terminal_search_get_gregex
|
|
||||||
vte_terminal_search_set_gregex
|
|
||||||
vte_terminal_event_check_gregex_simple
|
|
||||||
vte_terminal_spawn_sync
|
|
||||||
vte_terminal_get_geometry_hints
|
|
||||||
vte_terminal_set_geometry_hints_for_window
|
|
||||||
vte_terminal_get_icon_title
|
|
||||||
vte_terminal_set_encoding
|
|
||||||
vte_terminal_get_encoding
|
|
||||||
vte_terminal_get_text_include_trailing_spaces
|
|
||||||
vte_terminal_set_rewrap_on_resize
|
|
||||||
vte_terminal_get_rewrap_on_resize
|
|
||||||
vte_terminal_feed_child_binary
|
|
||||||
|
|
||||||
<SUBSECTION Private>
|
|
||||||
VteCharAttributes
|
|
||||||
VteTerminalClassPrivate
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>vte-regex</FILE>
|
|
||||||
<TITLE>VteRegex</TITLE>
|
|
||||||
VteRegex
|
|
||||||
vte_regex_ref
|
|
||||||
vte_regex_unref
|
|
||||||
vte_regex_new_for_match
|
|
||||||
vte_regex_new_for_search
|
|
||||||
vte_regex_jit
|
|
||||||
vte_regex_substitute
|
|
||||||
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
VTE_TYPE_REGEX
|
|
||||||
vte_regex_get_type
|
|
||||||
VTE_REGEX_ERROR
|
|
||||||
vte_regex_error_quark
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>vte-pty</FILE>
|
|
||||||
<TITLE>Vte PTY</TITLE>
|
|
||||||
VtePtyFlags
|
|
||||||
VtePtyError
|
|
||||||
VtePty
|
|
||||||
vte_pty_new_sync
|
|
||||||
vte_pty_new_foreign_sync
|
|
||||||
vte_pty_child_setup
|
|
||||||
vte_pty_get_fd
|
|
||||||
vte_pty_set_size
|
|
||||||
vte_pty_get_size
|
|
||||||
vte_pty_set_term
|
|
||||||
vte_pty_set_utf8
|
|
||||||
|
|
||||||
<SUBSECTION>
|
|
||||||
VTE_SPAWN_NO_PARENT_ENVV
|
|
||||||
VTE_SPAWN_NO_SYSTEMD_SCOPE
|
|
||||||
VTE_SPAWN_REQUIRE_SYSTEMD_SCOPE
|
|
||||||
vte_pty_spawn_async
|
|
||||||
vte_pty_spawn_finish
|
|
||||||
|
|
||||||
<SUBSECTION Standard>
|
|
||||||
vte_pty_flags_get_type
|
|
||||||
VTE_TYPE_PTY_FLAGS
|
|
||||||
vte_pty_error_get_type
|
|
||||||
VTE_TYPE_PTY_ERROR
|
|
||||||
vte_pty_error_quark
|
|
||||||
VTE_PTY_ERROR
|
|
||||||
vte_pty_get_type
|
|
||||||
VTE_TYPE_PTY
|
|
||||||
VTE_PTY
|
|
||||||
VTE_PTY_CLASS
|
|
||||||
VTE_IS_PTY
|
|
||||||
VTE_IS_PTY_CLASS
|
|
||||||
VTE_PTY_GET_CLASS
|
|
||||||
VtePtyClass
|
|
||||||
|
|
||||||
<SUBSECTION Deprecated>
|
|
||||||
vte_pty_close
|
|
||||||
</SECTION>
|
|
||||||
|
|
||||||
<SECTION>
|
|
||||||
<FILE>vte-version</FILE>
|
|
||||||
<TITLE>Version Information</TITLE>
|
|
||||||
|
|
||||||
VTE_MAJOR_VERSION
|
|
||||||
vte_get_major_version
|
|
||||||
VTE_MINOR_VERSION
|
|
||||||
vte_get_minor_version
|
|
||||||
VTE_MICRO_VERSION
|
|
||||||
vte_get_micro_version
|
|
||||||
|
|
||||||
<SUBSECTION>
|
|
||||||
VTE_CHECK_VERSION
|
|
||||||
|
|
||||||
</SECTION>
|
|
|
@ -1,17 +0,0 @@
|
||||||
#include <glib.h>
|
|
||||||
#include <glib-object.h>
|
|
||||||
#include <gio/gio.h>
|
|
||||||
#include <gtk/gtk.h>
|
|
||||||
#include "vte.h"
|
|
||||||
|
|
||||||
vte_pty_get_type
|
|
||||||
vte_terminal_get_type
|
|
||||||
vte_regex_get_type
|
|
||||||
|
|
||||||
vte_pty_error_get_type
|
|
||||||
vte_pty_flags_get_type
|
|
||||||
vte_cursor_blink_mode_get_type
|
|
||||||
vte_cursor_shape_get_type
|
|
||||||
vte_erase_binding_get_type
|
|
||||||
vte_write_flags_get_type
|
|
||||||
vte_regex_error_get_type
|
|
|
@ -0,0 +1,183 @@
|
||||||
|
Here is what Xterm 388 and VTE 0.76 do for some of the escape sequences.
|
||||||
|
DEC STD 070 might say otherwise, and reportedly the actual behavior of DEC hardware is yet again different.
|
||||||
|
See https://gitlab.gnome.org/GNOME/vte/-/issues/2526 for details.
|
||||||
|
|
||||||
|
The black area inside (excluding) the stripes is the terminal area.
|
||||||
|
The blue rectangle is the scrolling region.
|
||||||
|
The words written on the canvas show what happens if the cursor is at that location when the said escape sequence arrives.
|
||||||
|
Some escape sequences are 90° or 180° rotations of each other, they share a common picture, it should be obvious to rotate.
|
||||||
|
|
||||||
|
|
||||||
|
[30;106m CUU (similarly: CUD, CUB ~ BS ~ CR, CUF ~ printing a letter) [m
|
||||||
|
|
||||||
|
CUU, CUD, CUB, CUF: The picture shows the behavior written in DEC STD 070 (pp. 5-41..5-48) and implemented in Xterm and VTE.
|
||||||
|
Reportedly DEC terminals behave differently: If the cursor is outside the scroll area then it doesn't stop at the margin.
|
||||||
|
|
||||||
|
CR, BS: The picture shows the behavior implemented in Xterm and VTE.
|
||||||
|
DEC STD 070 (pp. 5-58, 5-63) says that if the cursor is outside the scroll area then it doesn't stop at the margin.
|
||||||
|
Reportedly DEC's actual behavior matches this.
|
||||||
|
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
[97;40m🮙🮙[53m▏ s t o p s h e r e , n o s c r o l l i n g ▕[55m🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ↑ moves up 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙[53m▏ s t [44m o p s h e r e , n o s c r o l l i [40m n g ▕[55m🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m ↑ moves up 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ↑ moves up [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m ↑ moves up [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ↑ moves up 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
|
||||||
|
|
||||||
|
[30;106m RI (similarly: IND ~ LF, DECFI, DECBI) [m
|
||||||
|
|
||||||
|
The picture shows the behavior implemented in Xterm and VTE.
|
||||||
|
DEC STD 070 (pp. 5-34..5-40) says that even if the cursor hits the margin outside the scroll area then the scroll area is
|
||||||
|
scrolled. Reportedly DEC terminals move the cursor in this case.
|
||||||
|
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
[97;40m🮙🮙[53m▏ s t o p s h e r e , n o s c r o l l i n g ▕[55m🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ↑ moves up 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙[53m▏ stops here, no scrolling ▕[44m▏ stops here and scrolls the blue region ▕[40m▏ stops here, no scrolling ▕[55m🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m ↑ moves up 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ↑ moves up [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m ↑ moves up [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ↑ moves up 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
|
||||||
|
|
||||||
|
[30;106m SU, SD [m
|
||||||
|
|
||||||
|
The picture shows the behavior implemented in Xterm and VTE.
|
||||||
|
According to DEC STD 070 (pp. 5-91..5-92) they move the page relative to the window, an entirely different concept unrelated
|
||||||
|
to margins. See also https://gitlab.gnome.org/GNOME/vte/-/issues/2663#note_1860599.
|
||||||
|
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 scrolls 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 the 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m blue [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m region, [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m no [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m matter [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m where [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m [40m 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 [44m th[40me 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 cursor 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 is 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
|
||||||
|
|
||||||
|
[30;106m IL, DL, DECIC, DECDC, SL, SR [m
|
||||||
|
|
||||||
|
IL, DL, DECIC, DECDC: The picture shows what's written in DEC STD 070 (pp. 5-146..5-151) and implemented in Xterm and VTE.
|
||||||
|
Reportedly the behavior of DEC terminals also matches.
|
||||||
|
|
||||||
|
SL, SR aren't available in DEC, they could be an Xterm extension.
|
||||||
|
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 does nothing 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m scrolls the blue region, further restricted to: [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m - IL, DL: cursor's row and below [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m - DECIC, DECDC: cursor's column and its right [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m - SL, SR: no further restriction [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m [40m▏ does nothing 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m ·<-------------------------------------------------->[40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 does nothing ▕[44m ^ DECIC, DECDC [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m | [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m | IL, DL [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m | [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m v [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 does nothing 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 🮙🮙[m
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
|
||||||
|
|
||||||
|
[30;106m ICH, DCH [m
|
||||||
|
|
||||||
|
The picture shows the behavior written in DEC STD 070 (pp. 5-142..5-145) and implemented in Xterm and VTE.
|
||||||
|
Reportedly DEC hardware behave differently if the cursor is outside the top/bottom margins, they shift to/from the right
|
||||||
|
edge of the screen rather than the right margin.
|
||||||
|
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ ▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ ▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ scrolls ·<--->▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ the ▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ cursor's ▏ d 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ row ▏ o 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m between [40m▏ e 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m the [40m▏ s 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 d ▕[44m cursor [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 o ▕[44m and [40m▏ n 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 e ▕[44m the ·<------------------>[40m▏ o 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 s ▕[44m right [40m▏ t 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕[44m margin [40m▏ h 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 n ▕[44m (the [40m▏ i 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 o ▕[44m top [40m▏ n 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 t ▕[44m and [40m▏ g 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 h ▕[44m bottom [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 i ▕[44m margins [40m▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 n ▕ don't ▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 g ▕ matter) ▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ ▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ ·<-------------------------------------------------->▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ ▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙 ▕ ▏ 🮙🮙[m
|
||||||
|
[97;40m🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙🮙[m
|
||||||
|
|
470
meson.build
470
meson.build
|
@ -1,15 +1,15 @@
|
||||||
# Copyright © 2018, 2019 Iñigo Martínez
|
# Copyright © 2018, 2019 Iñigo Martínez
|
||||||
# Copyright © 2019 Christian Persch
|
# Copyright © 2019 Christian Persch
|
||||||
#
|
#
|
||||||
# This library is free software; you can redistribute it and/or modify it
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# the Free Software Foundation; either version 3 of the License, or (at your
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This library is distributed in the hope that it will be useful, but
|
# This library is distributed in the hope that it will be useful,
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
@ -17,36 +17,49 @@
|
||||||
project(
|
project(
|
||||||
'vte',
|
'vte',
|
||||||
['c', 'cpp'],
|
['c', 'cpp'],
|
||||||
version: '0.60.1',
|
version: '0.76.0',
|
||||||
license: ['LGPL-3.0-or-later', 'GPL-3.0-or-later'],
|
license: ['LGPL-3.0-or-later', 'GPL-3.0-or-later'],
|
||||||
default_options: [
|
default_options: [
|
||||||
'buildtype=release',
|
'buildtype=release',
|
||||||
'c_std=gnu11',
|
|
||||||
'cpp_std=gnu++17',
|
|
||||||
'warning_level=0',
|
'warning_level=0',
|
||||||
'b_ndebug=false',
|
'b_ndebug=false',
|
||||||
],
|
],
|
||||||
meson_version: '>= 0.50.0',
|
meson_version: '>= 0.60.0',
|
||||||
)
|
)
|
||||||
|
|
||||||
# Requirements
|
# Compiler requirements
|
||||||
|
|
||||||
gtk3_req_version = '3.20.0'
|
c_req_std = 'gnu11'
|
||||||
gtk3_min_req_version = '3.18'
|
cxx_req_std = 'gnu++20'
|
||||||
gtk3_max_allowed_version = '3.20'
|
gxx_req_version = '10.0'
|
||||||
gtk4_req_version = '4.0.0'
|
clangxx_req_version = '11.0'
|
||||||
|
py_req_version = '3.7'
|
||||||
|
|
||||||
|
# Version requirements
|
||||||
|
|
||||||
|
gtk3_req_version = '3.24.0'
|
||||||
|
gtk3_min_req_version = '3.24'
|
||||||
|
gtk3_max_allowed_version = '3.24'
|
||||||
|
|
||||||
|
gtk4_req_version = '4.14.0'
|
||||||
|
gtk4_min_req_version = '4.14'
|
||||||
|
gtk4_max_allowed_version = '4.14'
|
||||||
|
|
||||||
|
cairo_req_version = '1.0'
|
||||||
|
cairo_gobject_req_version = '1.0'
|
||||||
fribidi_req_version = '1.0.0'
|
fribidi_req_version = '1.0.0'
|
||||||
gio_req_version = '2.52.0'
|
gio_req_version = '2.72.0'
|
||||||
glib_req_version = '2.52.0'
|
glib_req_version = '2.72.0'
|
||||||
glib_min_req_version = '2.52'
|
glib_min_req_version = '2.72'
|
||||||
glib_max_allowed_version = '2.52'
|
glib_max_allowed_version = '2.72'
|
||||||
gnutls_req_version = '3.2.7'
|
gnutls_req_version = '3.2.7'
|
||||||
icu_uc_req_version = '4.8'
|
icu_uc_req_version = '4.8'
|
||||||
pango_req_version = '1.22.0'
|
pango_req_version = '1.22.0'
|
||||||
pcre2_req_version = '10.21'
|
pcre2_req_version = '10.21'
|
||||||
systemd_req_version = '220'
|
systemd_req_version = '220'
|
||||||
|
|
||||||
|
liblz4_req_version = '1.9'
|
||||||
|
|
||||||
# API
|
# API
|
||||||
|
|
||||||
vte_api_major_version = 2
|
vte_api_major_version = 2
|
||||||
|
@ -54,11 +67,8 @@ vte_api_minor_version = 91
|
||||||
vte_api_version = '@0@.@1@'.format(vte_api_major_version, vte_api_minor_version)
|
vte_api_version = '@0@.@1@'.format(vte_api_major_version, vte_api_minor_version)
|
||||||
vte_api_name = 'vte-@0@.@1@'.format(vte_api_major_version, vte_api_minor_version)
|
vte_api_name = 'vte-@0@.@1@'.format(vte_api_major_version, vte_api_minor_version)
|
||||||
|
|
||||||
vte_gtk3_api_version = '@0@.@1@'.format(vte_api_major_version, vte_api_minor_version)
|
vte_gtk3_api_name = 'vte-' + vte_api_version
|
||||||
vte_gtk4_api_version = '@0@.@1@'.format(vte_api_major_version + 1, vte_api_minor_version)
|
vte_gtk4_api_name = 'vte-' + vte_api_version + '-gtk4'
|
||||||
|
|
||||||
vte_gtk3_api_name = 'vte-' + vte_gtk3_api_version
|
|
||||||
vte_gtk4_api_name = 'vte-' + vte_gtk4_api_version
|
|
||||||
|
|
||||||
vte_gtk3_api_path = vte_gtk3_api_name / 'vte'
|
vte_gtk3_api_path = vte_gtk3_api_name / 'vte'
|
||||||
vte_gtk4_api_path = vte_gtk4_api_name / 'vte'
|
vte_gtk4_api_path = vte_gtk4_api_name / 'vte'
|
||||||
|
@ -99,18 +109,73 @@ vte_systemduserunitdir = vte_prefix / 'lib' / 'systemd' / 'user'
|
||||||
|
|
||||||
# Debug
|
# Debug
|
||||||
|
|
||||||
enable_debug = get_option('debugg') or get_option('debug') or get_option('buildtype').contains('debug')
|
enable_debug = get_option('dbg') or get_option('debug') or get_option('buildtype').contains('debug')
|
||||||
|
|
||||||
# Meson modules
|
# Meson modules
|
||||||
|
|
||||||
gnome = import('gnome')
|
gnome = import('gnome')
|
||||||
pkg = import('pkgconfig')
|
pkg = import('pkgconfig')
|
||||||
|
py = import('python')
|
||||||
|
|
||||||
# Compilers
|
# Compilers
|
||||||
|
|
||||||
|
# When using 'c_std' / 'cpp_std' in the default_options of project(),
|
||||||
|
# then later changing that requirement there, meson will *not* update
|
||||||
|
# the actual std used. E.g.
|
||||||
|
# '''
|
||||||
|
# project(..., default_options: ['cpp_std=gnu++17'])
|
||||||
|
# assert(get_option('cpp_std') == 'gnu++17')
|
||||||
|
# '''
|
||||||
|
# Now change both of the '17' to '20' and build; meson will update the
|
||||||
|
# build files and trip on the assert since it still uses cpp_std=gnu++17.
|
||||||
|
# And it allows the user to override the c/cpp_std option from the command
|
||||||
|
# line.
|
||||||
|
#
|
||||||
|
# Therefore, instead of using default_options, add the required -std=...
|
||||||
|
# options to the compiler options directly.
|
||||||
|
|
||||||
|
# C compiler
|
||||||
|
|
||||||
cc = meson.get_compiler('c')
|
cc = meson.get_compiler('c')
|
||||||
|
|
||||||
|
c_std_opt = '-std=' + c_req_std
|
||||||
|
assert(cc.has_argument(c_std_opt), 'option ' + c_std_opt + ' not supported by ' + cc.get_id())
|
||||||
|
add_project_arguments(c_std_opt, language: 'c')
|
||||||
|
|
||||||
|
# C++ compiler
|
||||||
|
|
||||||
cxx = meson.get_compiler('cpp')
|
cxx = meson.get_compiler('cpp')
|
||||||
|
|
||||||
|
cxx_std_opt = '-std=' + cxx_req_std
|
||||||
|
assert(cxx.has_argument(cxx_std_opt), 'option ' + cxx_std_opt + ' not supported by ' + cxx.get_id())
|
||||||
|
add_project_arguments(cxx_std_opt, language: 'cpp')
|
||||||
|
|
||||||
|
# The above only checks that the compiler supports the given -std option,
|
||||||
|
# but not that the compiler really supports that C++ standard version.
|
||||||
|
# Do a simple version check based on
|
||||||
|
# https://gcc.gnu.org/projects/cxx-status.html and
|
||||||
|
# https://clang.llvm.org/cxx_status.html
|
||||||
|
# for the C++ features that vte actually uses.
|
||||||
|
|
||||||
|
if cxx.get_id() == 'gcc'
|
||||||
|
assert(cxx.version().version_compare('>=' + gxx_req_version), 'needs g++ >= ' + gxx_req_version + ' for ' + cxx_req_std + ' support')
|
||||||
|
endif
|
||||||
|
|
||||||
|
if cxx.get_id() == 'clang'
|
||||||
|
assert(cxx.version().version_compare('>=' + clangxx_req_version), 'needs clang++ >= ' + clangxx_req_version + ' for ' + cxx_req_std + ' support')
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Python interpreter
|
||||||
|
|
||||||
|
py_req_modules = [
|
||||||
|
'dataclasses',
|
||||||
|
]
|
||||||
|
|
||||||
|
python = py.find_installation(modules: py_req_modules)
|
||||||
|
assert(python.language_version().version_compare('>=' + py_req_version), 'needs python3 >= ' + py_req_version)
|
||||||
|
|
||||||
|
# Include directories
|
||||||
|
|
||||||
top_inc = include_directories('.')
|
top_inc = include_directories('.')
|
||||||
|
|
||||||
# Start config.h
|
# Start config.h
|
||||||
|
@ -119,11 +184,11 @@ config_h = configuration_data()
|
||||||
|
|
||||||
config_h.set_quoted('GETTEXT_PACKAGE', vte_gettext_domain)
|
config_h.set_quoted('GETTEXT_PACKAGE', vte_gettext_domain)
|
||||||
config_h.set_quoted('VERSION', vte_version)
|
config_h.set_quoted('VERSION', vte_version)
|
||||||
config_h.set('VTE_DEBUG', enable_debug)
|
config_h.set10('VTE_DEBUG', enable_debug)
|
||||||
config_h.set('WITH_A11Y', get_option('a11y'))
|
config_h.set10('WITH_A11Y', get_option('a11y'))
|
||||||
config_h.set('WITH_FRIBIDI', get_option('fribidi'))
|
config_h.set10('WITH_FRIBIDI', get_option('fribidi'))
|
||||||
config_h.set('WITH_GNUTLS', get_option('gnutls'))
|
config_h.set10('WITH_GNUTLS', get_option('gnutls'))
|
||||||
config_h.set('WITH_ICU', get_option('icu'))
|
config_h.set10('WITH_ICU', get_option('icu'))
|
||||||
|
|
||||||
ver = glib_min_req_version.split('.')
|
ver = glib_min_req_version.split('.')
|
||||||
config_h.set('GLIB_VERSION_MIN_REQUIRED', '(G_ENCODE_VERSION(' + ver[0] + ',' + ver[1] + '))')
|
config_h.set('GLIB_VERSION_MIN_REQUIRED', '(G_ENCODE_VERSION(' + ver[0] + ',' + ver[1] + '))')
|
||||||
|
@ -140,28 +205,53 @@ if get_option('gtk3')
|
||||||
gtk3_version_cppflags += '-DGDK_VERSION_MAX_ALLOWED=(G_ENCODE_VERSION(' + ver[0] + ',' + ver[1] + '))'
|
gtk3_version_cppflags += '-DGDK_VERSION_MAX_ALLOWED=(G_ENCODE_VERSION(' + ver[0] + ',' + ver[1] + '))'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# FIXME AC_USE_SYSTEM_EXTENSIONS also supported non-gnu systems
|
if get_option('gtk4')
|
||||||
config_h.set10('_GNU_SOURCE', true)
|
gtk4_version_cppflags = []
|
||||||
|
|
||||||
# Check headers
|
ver = gtk4_min_req_version.split('.')
|
||||||
|
gtk4_version_cppflags += '-DGDK_VERSION_MIN_REQUIRED=(G_ENCODE_VERSION(' + ver[0] + ',' + ver[1] + '))'
|
||||||
|
|
||||||
check_headers = [
|
ver = gtk4_max_allowed_version.split('.')
|
||||||
'locale.h',
|
gtk4_version_cppflags += '-DGDK_VERSION_MAX_ALLOWED=(G_ENCODE_VERSION(' + ver[0] + ',' + ver[1] + '))'
|
||||||
'pty.h',
|
endif
|
||||||
'stropts.h',
|
|
||||||
'sys/resource.h',
|
# Enable libc features
|
||||||
'sys/select.h',
|
|
||||||
'sys/syslimits.h',
|
libc_feature_defines = [
|
||||||
'sys/termios.h',
|
['_GNU_SOURCE', '1'],
|
||||||
'sys/types.h',
|
['_POSIX_C_SOURCE', '200809L'],
|
||||||
'sys/wait.h',
|
['_XOPEN_SOURCE', '700'],
|
||||||
'termios.h',
|
['_XOPEN_SOURCE_EXTENDED', '1'],
|
||||||
'util.h',
|
|
||||||
'wchar.h',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
foreach header: check_headers
|
system = host_machine.system()
|
||||||
config_h.set('HAVE_' + header.underscorify().to_upper(), cxx.has_header(header))
|
|
||||||
|
if system == 'freebsd'
|
||||||
|
# Defining _POSIX_C_SOURCE above makes freebsd not expose some functionality
|
||||||
|
# that's hidden behind __BSD_VISIBLE. Not defininy any of the above however
|
||||||
|
# makes it expose verything.
|
||||||
|
|
||||||
|
libc_feature_defines = []
|
||||||
|
|
||||||
|
elif system == 'darwin'
|
||||||
|
# See issue #2592
|
||||||
|
libc_feature_defines += [
|
||||||
|
['_DARWIN_C_SOURCE', '1'],
|
||||||
|
]
|
||||||
|
|
||||||
|
elif system == 'netbsd'
|
||||||
|
libc_feature_defines += [
|
||||||
|
['_NETBSD_SOURCE', '1'],
|
||||||
|
]
|
||||||
|
|
||||||
|
elif system == 'openbsd'
|
||||||
|
libc_feature_defines += [
|
||||||
|
['_BSD_SOURCE', '1'],
|
||||||
|
]
|
||||||
|
endif
|
||||||
|
|
||||||
|
foreach f: libc_feature_defines
|
||||||
|
config_h.set(f[0], f[1])
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
# Check for symbols
|
# Check for symbols
|
||||||
|
@ -176,71 +266,170 @@ endforeach
|
||||||
|
|
||||||
# Check for functions
|
# Check for functions
|
||||||
|
|
||||||
check_functions_required = [
|
libm_dep = cxx.find_library('m')
|
||||||
'fork',
|
|
||||||
'grantpt',
|
|
||||||
'posix_openpt',
|
|
||||||
'ptsname',
|
|
||||||
'tcgetattr',
|
|
||||||
'unlockpt',
|
|
||||||
]
|
|
||||||
|
|
||||||
foreach func: check_functions_required
|
# Note that we cannot use compiler.has_function() due to
|
||||||
assert(cxx.has_function(func), func + ' not found')
|
# https://github.com/mesonbuild/meson/issues/8075 . So
|
||||||
endforeach
|
# Hand-roll our own check functions, also checking for
|
||||||
|
# the correct function prototype.
|
||||||
|
|
||||||
|
# [func name, func type, includes, deps, required]
|
||||||
check_functions = [
|
check_functions = [
|
||||||
# Misc I/O routines.
|
[
|
||||||
'explicit_bzero',
|
'fork',
|
||||||
'pread',
|
'pid_t (*func)(void)',
|
||||||
'pwrite',
|
['sys/types.h', 'unistd.h'],
|
||||||
# Misc string routines.
|
[],
|
||||||
'strchrnul',
|
true,
|
||||||
# for vtespawn
|
],
|
||||||
'fdwalk',
|
[
|
||||||
|
'grantpt',
|
||||||
|
'int (*func)(int)',
|
||||||
|
['stdlib.h'],
|
||||||
|
[],
|
||||||
|
true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'posix_openpt',
|
||||||
|
'int (*func)(int)',
|
||||||
|
['stdlib.h', 'fcntl.h'],
|
||||||
|
[],
|
||||||
|
true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'ptsname',
|
||||||
|
'char* (*func)(int)',
|
||||||
|
['stdlib.h'],
|
||||||
|
[],
|
||||||
|
true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'tcgetattr',
|
||||||
|
'int (*func)(int, struct termios*)',
|
||||||
|
['termios.h', 'unistd.h'],
|
||||||
|
[],
|
||||||
|
true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'unlockpt',
|
||||||
|
'int (*func)(int)',
|
||||||
|
['stdlib.h'],
|
||||||
|
[],
|
||||||
|
true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'explicit_bzero',
|
||||||
|
'void (*func)(void*, size_t)',
|
||||||
|
['string.h'],
|
||||||
|
[],
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'fdwalk',
|
||||||
|
'int (*func)(int (*)(void*, int), void*)',
|
||||||
|
['stdlib.h'],
|
||||||
|
[],
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'pread',
|
||||||
|
'ssize_t (*func)(int, void*, size_t off_t)',
|
||||||
|
['unistd.h'],
|
||||||
|
[],
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'pwrite',
|
||||||
|
'ssize_t (*func)(int, const void*, size_t, off_t)',
|
||||||
|
['unistd.h'],
|
||||||
|
[],
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'strchrnul',
|
||||||
|
'const char* (*func)(const char*, int)',
|
||||||
|
['string.h'],
|
||||||
|
[],
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'close_range',
|
||||||
|
'int (*func)(unsigned int, unsigned int, int)',
|
||||||
|
['unistd.h'],
|
||||||
|
[],
|
||||||
|
false,
|
||||||
|
],
|
||||||
|
|
||||||
|
# Math functions
|
||||||
|
|
||||||
|
[
|
||||||
|
'ceil',
|
||||||
|
'double (*func)(double)',
|
||||||
|
['math.h'],
|
||||||
|
[libm_dep],
|
||||||
|
true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'floor',
|
||||||
|
'double (*func)(double)',
|
||||||
|
['math.h'],
|
||||||
|
[libm_dep],
|
||||||
|
true,
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'round',
|
||||||
|
'double (*func)(double)',
|
||||||
|
['math.h'],
|
||||||
|
[libm_dep],
|
||||||
|
false,
|
||||||
|
],
|
||||||
]
|
]
|
||||||
|
|
||||||
foreach func: check_functions
|
foreach func: check_functions
|
||||||
config_h.set('HAVE_' + func.underscorify().to_upper(), cxx.has_function(func))
|
__name=func[0]
|
||||||
endforeach
|
__prot=func[1]
|
||||||
|
__incs=func[2]
|
||||||
|
__deps=func[3]
|
||||||
|
__reqd=func[4]
|
||||||
|
|
||||||
# Math functions
|
__code = ''
|
||||||
|
foreach __inc: __incs
|
||||||
|
__code += '''
|
||||||
|
#if __has_include(<@0@>)
|
||||||
|
#include <@0@>
|
||||||
|
#endif
|
||||||
|
'''.format(__inc)
|
||||||
|
endforeach
|
||||||
|
|
||||||
libm_dep = cxx.find_library('m')
|
__code += '''
|
||||||
|
int main(void) {
|
||||||
|
@0@ = &@1@;
|
||||||
|
long long b = (long long)func;
|
||||||
|
return (int)b;
|
||||||
|
}
|
||||||
|
'''.format(__prot, __name)
|
||||||
|
|
||||||
check_math_functions_required = [
|
__args = []
|
||||||
'ceil',
|
foreach f: libc_feature_defines
|
||||||
'floor',
|
__args += '-D@0@=@1@'.format(f[0], f[1])
|
||||||
]
|
endforeach
|
||||||
|
|
||||||
foreach func: check_math_functions_required
|
__have = cxx.compiles(
|
||||||
assert(cxx.has_function(func, dependencies: libm_dep), func + ' not found')
|
__code,
|
||||||
endforeach
|
args: __args,
|
||||||
|
dependencies: __deps,
|
||||||
|
name: __name,
|
||||||
|
)
|
||||||
|
|
||||||
check_math_functions = [
|
if __reqd
|
||||||
'round',
|
assert(__have, __name + ' not found')
|
||||||
]
|
else
|
||||||
|
config_h.set10('HAVE_' + __name.underscorify().to_upper(), __have)
|
||||||
foreach func: check_math_functions
|
endif
|
||||||
config_h.set('HAVE_' + func.underscorify().to_upper(), cxx.has_function(func, dependencies: libm_dep))
|
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
# Compiler
|
# Compiler
|
||||||
|
|
||||||
# Meson has a misfeature where it allows the user to override the -std option
|
|
||||||
# for the C/C++ compiler. Disallow that.
|
|
||||||
|
|
||||||
assert(get_option('c_std') == 'gnu11', 'cannot override C std version')
|
|
||||||
assert(get_option('cpp_std') == 'gnu++17', 'cannot override C++ std version')
|
|
||||||
|
|
||||||
# Meson only checks that -std supports the given string, but *not* that
|
|
||||||
# the compiler really supports that C++ standard version. Do a simple version
|
|
||||||
# check based on https://gcc.gnu.org/projects/cxx-status.html#cxx17
|
|
||||||
|
|
||||||
if cxx.get_id() == 'gcc'
|
|
||||||
assert(cxx.version().version_compare('>= 7.0'), 'needs G++ >= 7 for C++17 support')
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Asserts must not be disabled
|
# Asserts must not be disabled
|
||||||
|
|
||||||
assert(get_option('b_ndebug') == 'false', 'assertions may not be disabled')
|
assert(get_option('b_ndebug') == 'false', 'assertions may not be disabled')
|
||||||
|
@ -272,11 +461,14 @@ compiler_flags_common = [
|
||||||
'-Wmissing-format-attribute',
|
'-Wmissing-format-attribute',
|
||||||
'-Wmissing-include-dirs',
|
'-Wmissing-include-dirs',
|
||||||
'-Wmissing-noreturn',
|
'-Wmissing-noreturn',
|
||||||
|
'-Wno-deprecated-declarations',
|
||||||
'-Wno-address-of-packed-member',
|
'-Wno-address-of-packed-member',
|
||||||
|
'-Wno-c99-designator',
|
||||||
'-Wno-missing-field-initializers',
|
'-Wno-missing-field-initializers',
|
||||||
'-Wno-packed',
|
'-Wno-packed',
|
||||||
'-Wno-switch-enum',
|
'-Wno-switch-enum',
|
||||||
'-Wno-unused-parameter',
|
'-Wno-unused-parameter',
|
||||||
|
'-Wno-volatile',
|
||||||
'-Wshadow',
|
'-Wshadow',
|
||||||
'-Wshift-negative-value',
|
'-Wshift-negative-value',
|
||||||
'-Wsign-compare',
|
'-Wsign-compare',
|
||||||
|
@ -299,8 +491,6 @@ compiler_flags_common = [
|
||||||
'-fdiagnostics-show-option',
|
'-fdiagnostics-show-option',
|
||||||
'-fno-common',
|
'-fno-common',
|
||||||
'-fno-semantic-interposition',
|
'-fno-semantic-interposition',
|
||||||
'-fstack-protector',
|
|
||||||
'-fstack-protector-strong',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
if enable_debug
|
if enable_debug
|
||||||
|
@ -336,12 +526,16 @@ compiler_flags_cxx_only = [
|
||||||
]
|
]
|
||||||
|
|
||||||
compiler_flags_cxx_required = [
|
compiler_flags_cxx_required = [
|
||||||
'-fno-exceptions',
|
|
||||||
'-fno-rtti',
|
|
||||||
'-fvisibility-inlines-hidden',
|
'-fvisibility-inlines-hidden',
|
||||||
'-fvisibility=hidden',
|
'-fvisibility=hidden',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
if cxx.get_id() == 'clang'
|
||||||
|
compiler_flags_cxx_only += [
|
||||||
|
'-Wno-unknown-attributes', # get rid of warnings about unimplemented [[(un)likely]]
|
||||||
|
]
|
||||||
|
endif
|
||||||
|
|
||||||
global_cflags = cc.get_supported_arguments(compiler_flags_common +
|
global_cflags = cc.get_supported_arguments(compiler_flags_common +
|
||||||
compiler_flags_common_undesirable +
|
compiler_flags_common_undesirable +
|
||||||
compiler_flags_c_only)
|
compiler_flags_c_only)
|
||||||
|
@ -354,7 +548,6 @@ foreach flag: compiler_flags_cxx_required
|
||||||
assert(cxx.has_argument(flag), flag + ' is required but not supported')
|
assert(cxx.has_argument(flag), flag + ' is required but not supported')
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
|
|
||||||
# These flags have to be tested together
|
# These flags have to be tested together
|
||||||
|
|
||||||
compiler_flags_common_multi = [
|
compiler_flags_common_multi = [
|
||||||
|
@ -375,15 +568,24 @@ foreach flags : compiler_flags_common_multi
|
||||||
endif
|
endif
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
# ... and now make these flags the default
|
release_args = []
|
||||||
|
if not enable_debug
|
||||||
|
release_args += ['-DG_DISABLE_ASSERT', '-DG_DISABLE_CAST_CHECKS']
|
||||||
|
endif
|
||||||
|
|
||||||
|
# ... and now make these flags the default
|
||||||
add_project_arguments(global_cflags, language: 'c')
|
add_project_arguments(global_cflags, language: 'c')
|
||||||
add_project_arguments(global_cxxflags, language: 'cpp')
|
add_project_arguments(global_cxxflags, language: 'cpp')
|
||||||
|
|
||||||
# Linker flags
|
# Linker flags
|
||||||
|
|
||||||
linker_flags = [
|
linker_flags = [
|
||||||
[ '-Wl,-Bsymbolic-functions', get_option('_b_symbolic_functions'),],
|
['-Wl,-Bsymbolic', false,],
|
||||||
|
['-Wl,-Bsymbolic-functions', get_option('_b_symbolic_functions'),],
|
||||||
|
|
||||||
|
# See issue vte#2535.
|
||||||
|
['-fstack-protector', false],
|
||||||
|
['-fstack-protector-strong', false],
|
||||||
]
|
]
|
||||||
|
|
||||||
foreach flag: linker_flags
|
foreach flag: linker_flags
|
||||||
|
@ -402,13 +604,15 @@ endforeach
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|
||||||
gio_dep = dependency('gio-2.0', version: '>=' + gio_req_version)
|
cairo_dep = dependency('cairo', version: '>=' + cairo_req_version)
|
||||||
glib_dep = dependency('glib-2.0', version: '>=' + glib_req_version)
|
cairo_gobject_dep = dependency('cairo-gobject', version: '>=' + cairo_gobject_req_version)
|
||||||
gobject_dep = dependency('gobject-2.0')
|
gio_dep = dependency('gio-2.0', version: '>=' + gio_req_version)
|
||||||
pango_dep = dependency('pango', version: '>=' + pango_req_version)
|
glib_dep = dependency('glib-2.0', version: '>=' + glib_req_version)
|
||||||
pcre2_dep = dependency('libpcre2-8', version: '>=' + pcre2_req_version)
|
gobject_dep = dependency('gobject-2.0')
|
||||||
pthreads_dep = dependency('threads')
|
pango_dep = dependency('pango', version: '>=' + pango_req_version)
|
||||||
zlib_dep = dependency('zlib')
|
pcre2_dep = dependency('libpcre2-8', version: '>=' + pcre2_req_version)
|
||||||
|
pthreads_dep = dependency('threads')
|
||||||
|
liblz4_dep = dependency('liblz4', version: '>=' + liblz4_req_version)
|
||||||
|
|
||||||
if get_option('fribidi')
|
if get_option('fribidi')
|
||||||
fribidi_dep = dependency('fribidi', version: '>=' + fribidi_req_version)
|
fribidi_dep = dependency('fribidi', version: '>=' + fribidi_req_version)
|
||||||
|
@ -429,7 +633,7 @@ else
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('gtk4')
|
if get_option('gtk4')
|
||||||
gtk4_dep = dependency('gtk+-4.0', version: '>=' + gtk4_req_version)
|
gtk4_dep = dependency('gtk4', version: '>=' + gtk4_req_version)
|
||||||
else
|
else
|
||||||
gtk4_dep = dependency('', required: false)
|
gtk4_dep = dependency('', required: false)
|
||||||
endif
|
endif
|
||||||
|
@ -446,14 +650,16 @@ else
|
||||||
systemd_dep = dependency('', required: false)
|
systemd_dep = dependency('', required: false)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config_h.set('WITH_SYSTEMD', systemd_dep.found())
|
config_h.set10('WITH_SYSTEMD', systemd_dep.found())
|
||||||
|
|
||||||
# Write config.h
|
# Write config.h
|
||||||
|
|
||||||
configure_file(
|
config_sources = [
|
||||||
output: 'config.h',
|
configure_file(
|
||||||
configuration: config_h,
|
output: 'config.h',
|
||||||
)
|
configuration: config_h,
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
||||||
# Subdirs
|
# Subdirs
|
||||||
|
|
||||||
|
@ -465,13 +671,18 @@ if get_option('docs')
|
||||||
subdir('doc/reference')
|
subdir('doc/reference')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Dist
|
||||||
|
|
||||||
|
meson.add_dist_script(
|
||||||
|
find_program('meson_changelog.sh'),
|
||||||
|
)
|
||||||
|
|
||||||
# Simple compat Makefile
|
# Simple compat Makefile
|
||||||
|
|
||||||
makefile_conf = configuration_data()
|
makefile_conf = configuration_data()
|
||||||
makefile_conf.set('srcdir', meson.current_source_dir())
|
makefile_conf.set('srcdir', meson.current_source_dir())
|
||||||
makefile_conf.set('builddir', meson.current_build_dir())
|
makefile_conf.set('builddir', meson.current_build_dir())
|
||||||
makefile_conf.set('vte_gtk3_api_version', vte_gtk3_api_version)
|
makefile_conf.set('vte_api_version', vte_api_version)
|
||||||
makefile_conf.set('vte_gtk4_api_version', vte_gtk4_api_version)
|
|
||||||
|
|
||||||
configure_file(
|
configure_file(
|
||||||
input: 'Makefile.meson',
|
input: 'Makefile.meson',
|
||||||
|
@ -509,9 +720,24 @@ output += ' GTK+ 4.0: ' + get_option('gtk4').to_string() + '\n'
|
||||||
output += ' ICU: ' + get_option('icu').to_string() + '\n'
|
output += ' ICU: ' + get_option('icu').to_string() + '\n'
|
||||||
output += ' GIR: ' + get_option('gir').to_string() + '\n'
|
output += ' GIR: ' + get_option('gir').to_string() + '\n'
|
||||||
output += ' systemd: ' + systemd_dep.found().to_string() + '\n'
|
output += ' systemd: ' + systemd_dep.found().to_string() + '\n'
|
||||||
|
output += ' Glade: ' + get_option('glade').to_string() + '\n'
|
||||||
output += ' Vala: ' + get_option('vapi').to_string() + '\n'
|
output += ' Vala: ' + get_option('vapi').to_string() + '\n'
|
||||||
output += '\n'
|
output += '\n'
|
||||||
output += ' Prefix: ' + get_option('prefix') + '\n'
|
output += ' Prefix: ' + get_option('prefix') + '\n'
|
||||||
message(output)
|
message(output)
|
||||||
|
|
||||||
|
# Check stable/unstable status
|
||||||
|
|
||||||
|
if (vte_minor_version % 2) != 0
|
||||||
|
if (vte_micro_version >= 99)
|
||||||
|
warning('This is a release candidate release!\n')
|
||||||
|
elif (vte_micro_version > 90)
|
||||||
|
warning('This is a beta release!\n')
|
||||||
|
else
|
||||||
|
warning('This is an unstable development release!\n')
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
message('This is a stable release.')
|
||||||
|
endif
|
||||||
|
|
||||||
# Done
|
# Done
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# Copyright © 2021 Christian Persch
|
||||||
|
#
|
||||||
|
# This programme 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 programme 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 programme. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
top_srcdir="$MESON_SOURCE_ROOT"
|
||||||
|
top_builddir="MESON_BUILD_ROOT"
|
||||||
|
top_distdir="$MESON_DIST_ROOT"
|
||||||
|
|
||||||
|
if ! test -e "${top_srcdir}"/.git; then
|
||||||
|
echo "Must be run from gnome-terminal git checkout"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! test -e "${top_distdir}"; then
|
||||||
|
echo "Must be run from 'meson dist'"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
GIT_DIR="${top_srcdir}"/.git git log --stat > "${top_distdir}"/ChangeLog
|
|
@ -1,14 +1,14 @@
|
||||||
# Copyright © 2018, 2019 Iñigo Martínez
|
# Copyright © 2018, 2019 Iñigo Martínez
|
||||||
#
|
#
|
||||||
# This library is free software; you can redistribute it and/or modify it
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# the Free Software Foundation; either version 3 of the License, or (at your
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This library is distributed in the hope that it will be useful, but
|
# This library is distributed in the hope that it will be useful,
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
@ -30,7 +30,7 @@ option(
|
||||||
)
|
)
|
||||||
|
|
||||||
option(
|
option(
|
||||||
'debugg', # for some reason, 'debug' is "reserved"
|
'dbg', # for some reason, 'debug' is "reserved"
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
value: false,
|
value: false,
|
||||||
description: 'Enable extra debugging functionality',
|
description: 'Enable extra debugging functionality',
|
||||||
|
@ -57,6 +57,13 @@ option(
|
||||||
description: 'Enable FriBidi support',
|
description: 'Enable FriBidi support',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
option(
|
||||||
|
'glade',
|
||||||
|
type: 'boolean',
|
||||||
|
value : true,
|
||||||
|
description: 'Install a glade catalogue file'
|
||||||
|
)
|
||||||
|
|
||||||
option(
|
option(
|
||||||
'gnutls',
|
'gnutls',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
|
@ -74,7 +81,7 @@ option(
|
||||||
option(
|
option(
|
||||||
'gtk4',
|
'gtk4',
|
||||||
type: 'boolean',
|
type: 'boolean',
|
||||||
value: false,
|
value: true,
|
||||||
description: 'Enable GTK+ 4.0 widget',
|
description: 'Enable GTK+ 4.0 widget',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
# Test 256 color support along with bold and dim attributes.
|
# Test 256 color support along with bold and dim attributes.
|
||||||
# Copyright (C) 2014 Egmont Koblinger
|
# Copyright (C) 2014 Egmont Koblinger
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
@ -13,9 +13,8 @@
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
sep=':'
|
sep=':'
|
||||||
if [ "$1" = "-colon" -o "$1" = "-official" -o "$1" = "-dejure" ]; then
|
if [ "$1" = "-colon" -o "$1" = "-official" -o "$1" = "-dejure" ]; then
|
||||||
|
|
|
@ -4,9 +4,9 @@
|
||||||
# Copyright © 2014 Egmont Koblinger
|
# Copyright © 2014 Egmont Koblinger
|
||||||
# Copyright © 2018 Christian Persch
|
# Copyright © 2018 Christian Persch
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
@ -14,9 +14,8 @@
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
sep=":"
|
sep=":"
|
||||||
sepsep="::"
|
sepsep="::"
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
# Image viewer for terminals that support true colors.
|
# Image viewer for terminals that support true colors.
|
||||||
# Copyright (C) 2014 Egmont Koblinger
|
# Copyright (C) 2014 Egmont Koblinger
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
@ -13,9 +13,8 @@
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
sep1=':'
|
sep1=':'
|
||||||
sep2='::'
|
sep2='::'
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
# Copyright © 2020 Christian Persch
|
||||||
|
#
|
||||||
|
# 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 <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
import array, fcntl, sys, termios
|
||||||
|
|
||||||
|
buffer = array.array('H', [0, 0, 0, 0])
|
||||||
|
ret = fcntl.ioctl(sys.stdin.fileno(), termios.TIOCGWINSZ, buffer)
|
||||||
|
if ret != 0:
|
||||||
|
print(f'ioctl(TIOCGWINSZ) failed: {ret}')
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
print(f'{buffer[0]} rows ({buffer[3]} px), {buffer[1]} columns ({buffer[2]} px)')
|
||||||
|
sys.exit(0)
|
|
@ -3,9 +3,9 @@
|
||||||
# Tester for various SGR attributes.
|
# Tester for various SGR attributes.
|
||||||
# Copyright (C) 2017 Egmont Koblinger
|
# Copyright (C) 2017 Egmont Koblinger
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
# the Free Software Foundation; either version 2 of the License, or
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This program is distributed in the hope that it will be useful,
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
@ -13,18 +13,17 @@
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# GNU General Public License for more details.
|
# GNU General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU General Public License along
|
# You should have received a copy of the GNU General Public License
|
||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
|
|
||||||
words=( Efg Ijk Pqr Xyz)
|
words=( Efg Ijk Pqr Xyz)
|
||||||
words_comment=(normal "green text" "magenta background" "bright red underline")
|
words_comment=(normal "green text" "magenta background" "bright red underline")
|
||||||
words_start=( "" 32 45 58:5:9)
|
words_start=( "" 32 45 58:5:9)
|
||||||
words_end=( "" 39 49 59)
|
words_end=( "" 39 49 59)
|
||||||
|
|
||||||
attr_name=(bold dim italic underline underline "double underline" "double underline" "curly underline" blink reverse hidden strikethrough overline)
|
attr_name=(bold dim italic underline underline "double underline" "double underline" "curly underline" "dotted underline" "dashed underline" blink reverse hidden strikethrough overline)
|
||||||
attr_start=( 1 2 3 4 4:1 21 4:2 4:3 5 7 8 9 53)
|
attr_start=( 1 2 3 4 4:1 21 4:2 4:3 4:4 4:5 5 7 8 9 53)
|
||||||
attr_end=( 22 22 23 24 4:0 24 4:0 4:0 25 27 28 29 55)
|
attr_end=( 22 22 23 24 4:0 24 4:0 4:0 4:0 4:0 25 27 28 29 55)
|
||||||
|
|
||||||
col_name=("normal")
|
col_name=("normal")
|
||||||
col_start=("")
|
col_start=("")
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# please keep this list sorted alphabetically
|
# please keep this list sorted alphabetically
|
||||||
#
|
#
|
||||||
|
ab
|
||||||
am
|
am
|
||||||
an
|
an
|
||||||
ang
|
ang
|
||||||
|
@ -15,6 +16,7 @@ bn_IN
|
||||||
bs
|
bs
|
||||||
ca
|
ca
|
||||||
ca@valencia
|
ca@valencia
|
||||||
|
ckb
|
||||||
cs
|
cs
|
||||||
cy
|
cy
|
||||||
da
|
da
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
src/pty.cc
|
src/pty.cc
|
||||||
src/vte.cc
|
src/vte.cc
|
||||||
src/vtegtk.cc
|
src/vtegtk.cc
|
||||||
|
src/spawn.cc
|
||||||
|
|
|
@ -2,6 +2,9 @@ bindings/vala/app.ui
|
||||||
bindings/vala/search-popover.ui
|
bindings/vala/search-popover.ui
|
||||||
src/vtespawn.cc
|
src/vtespawn.cc
|
||||||
src/app/app.cc
|
src/app/app.cc
|
||||||
src/app/appmenu.ui
|
src/app/appmenu-gtk3.ui
|
||||||
src/app/search-popover.ui
|
src/app/appmenu-gtk4.ui
|
||||||
src/app/window.ui
|
src/app/search-popover-gtk3.ui
|
||||||
|
src/app/search-popover-gtk4.ui
|
||||||
|
src/app/window-gtk3.ui
|
||||||
|
src/app/window-gtk4.ui
|
||||||
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
# Abkhazian translation for vte.
|
||||||
|
# Copyright (C) 2022 vte's COPYRIGHT HOLDER
|
||||||
|
# This file is distributed under the same license as the vte package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: vte master\n"
|
||||||
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
|
"POT-Creation-Date: 2022-01-29 11:51+0000\n"
|
||||||
|
"PO-Revision-Date: 2022-01-29 11:51+0000\n"
|
||||||
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"Language-Team: Abkhazian <ab@li.org>\n"
|
||||||
|
"Language: ab\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
|
#: src/vte.cc:7693
|
||||||
|
msgid "WARNING"
|
||||||
|
msgstr "АГӘҼАНҴАРА"
|
||||||
|
|
||||||
|
#: src/vte.cc:7695
|
||||||
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
|
msgstr "GnuTLS аҿакӡам; Адыррақәа шифрркрада ианызаауоит адиск аҟны!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:122
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Аанкылара зымуо аканал %s ашьақәыргылара залымшеит: "
|
||||||
|
|
||||||
|
#: src/spawn.cc:167
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "Азҵаараҭараан иҟалеит агха: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:174
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Азыԥшразы ишәзаԥҵәаз аамҭа нцәеит"
|
||||||
|
|
||||||
|
#: src/spawn.cc:184
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Аоперациа аҟәыхуп"
|
||||||
|
|
||||||
|
#: src/spawn.cc:202
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Иаҿыгоу аканал (%s) аҟынтә аиагара залымшахеит"
|
||||||
|
|
||||||
|
#: src/spawn.cc:637
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Аизакхьӡынҵа “%s” ахь аиасра залымшахеит: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:706
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Иаҿыгоу апроцесс “%s” аҟаҵара залымшахеит:"
|
77
po/be.po
77
po/be.po
|
@ -6,66 +6,53 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte.master\n"
|
"Project-Id-Version: vte.master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-09-02 17:55+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-09-07 14:20+0300\n"
|
"PO-Revision-Date: 2021-08-19 14:57+0300\n"
|
||||||
"Last-Translator: Yuras Shumovich <shumovichy@gmail.com>\n"
|
"Last-Translator: Launchpad translators\n"
|
||||||
"Language-Team: Belarusian <i18n-bel-googlegroups.com>\n"
|
"Language-Team: Belarusian <i18n-bel-googlegroups.com>\n"
|
||||||
"Language: be\n"
|
"Language: be\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.1.1\n"
|
"X-Generator: Poedit 3.0\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3989
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Памылка чытання даных ад нашчадка: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4139
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Памылка (%s) пераўтварэння даных ад нашчадка: ігнаруецца."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8131
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "АСЦЯРОЖНА"
|
msgstr "ПАПЯРЭДЖАННЕ"
|
||||||
|
|
||||||
#: ../src/vte.cc:8132
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS не ўключаны; даныя будуць запісаны на дыск незашыфраванымі!"
|
msgstr "GnuTLS не ўключаны; даныя будуць запісаны на дыск незашыфраванымі!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3664
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Не ўдалося пераўтварыць знакі з %s у %s."
|
msgstr "Не ўдалося наладзіць канал без блакіравання: %s"
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid NRC map '%c'."
|
#: src/spawn.cc:155
|
||||||
#~ msgstr "Спроба ўжыць хібную NRC-карту \"%c\"."
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "памылка апытання: %s"
|
||||||
|
|
||||||
#~ msgid "Unrecognized identified coding system."
|
#: src/spawn.cc:161
|
||||||
#~ msgstr "Неапазнаная ідэнтыфікаваная сістэма кадавання."
|
msgid "Operation timed out"
|
||||||
|
msgstr "Скончыўся тэрмін чакання аперацыі"
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid wide NRC map '%c'."
|
#: src/spawn.cc:171
|
||||||
#~ msgstr "Спроба ўжыць хібную шырокафарматную NRC-карту \"%c\"."
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Аперацыя скасавана"
|
||||||
|
|
||||||
#~ msgid "Duplicate (%s/%s)!"
|
#: src/spawn.cc:189
|
||||||
#~ msgstr "Дублікат (%s/%s)."
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Не ўдалося прачытаць даныя з канала нашчадка (%s)"
|
||||||
|
|
||||||
#~ msgid "Could not open console.\n"
|
#: src/spawn.cc:576
|
||||||
#~ msgstr "Не ўдалося адкрыць кансоль.\n"
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Не ўдалося змяніць на каталог «%s»: %s"
|
||||||
|
|
||||||
#~ msgid "Could not parse the geometry spec passed to --geometry"
|
#: src/spawn.cc:645
|
||||||
#~ msgstr "Не ўдалося разабраць спецыфікацыю памераў акна, пададзеных для опцыі --geometry"
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
#~ msgid "Error compiling regular expression \"%s\"."
|
msgstr "Не ўдалося выканаць працэс-нашчадак «%s»: "
|
||||||
#~ msgstr "Памылка кампіляцыі рэгулярнага выразу \"%s\"."
|
|
||||||
|
|
||||||
#~ msgid "Unable to send data to child, invalid charset convertor"
|
|
||||||
#~ msgstr "Не ўдалося паслаць даныя нашчадку: хібны модуль пераўтварэння знаказбору"
|
|
||||||
|
|
||||||
#~ msgid "Error reading PTY size, using defaults: %s\n"
|
|
||||||
#~ msgstr "Памылка чытання памеру PTY: выкарыстоўваецца прадвызначаны: %s\n"
|
|
||||||
|
|
||||||
#~ msgid "_vte_conv_open() failed setting word characters"
|
|
||||||
#~ msgstr "_vte_conv_open() не здолеў настроіць знакі, якія ўжываюцца ў словах"
|
|
||||||
|
|
67
po/bg.po
67
po/bg.po
|
@ -1,16 +1,18 @@
|
||||||
# Bulgarian translation of vte po-file.
|
# Bulgarian translation of vte po-file.
|
||||||
# Copyright (C) 2002, 2007, 2007, 2010, 2014, 2017 Free Software Foundation, Inc.
|
# Copyright (C) 2002, 2007, 2007, 2010, 2014, 2017 Free Software Foundation, Inc.
|
||||||
|
# Copyright (C) 2021, 2023 Alexander Shopov.
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the vte package.
|
||||||
# Alexander Shopov <ash@kambanaria.org>, 2002, 2007, 2010, 2014, 2017.
|
# Alexander Shopov <ash@kambanaria.org>, 2002, 2007, 2010, 2014, 2017.
|
||||||
|
# Alexander Shopov <ash@kambanaria.org>, 2021, 2023.
|
||||||
# Vladimir "Kaladan" Petkov <vpetkov@i-space.org>, 2005.
|
# Vladimir "Kaladan" Petkov <vpetkov@i-space.org>, 2005.
|
||||||
# Yavor Doganov <yavor@doganov.org>, 2005.
|
# Yavor Doganov <yavor@doganov.org>, 2005.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte master\n"
|
"Project-Id-Version: vte master\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2017-09-02 09:32+0300\n"
|
"POT-Creation-Date: 2021-06-28 13:45+0000\n"
|
||||||
"PO-Revision-Date: 2017-08-25 10:55+0200\n"
|
"PO-Revision-Date: 2021-07-04 14:21+0200\n"
|
||||||
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
|
"Last-Translator: Alexander Shopov <ash@kambanaria.org>\n"
|
||||||
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
"Language-Team: Bulgarian <dict@fsa-bg.org>\n"
|
||||||
"Language: bg\n"
|
"Language: bg\n"
|
||||||
|
@ -19,28 +21,43 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:73 ../src/iso2022.cc:81 ../src/iso2022.cc:111
|
#: src/vte.cc:7751
|
||||||
#: ../src/vtegtk.cc:3423
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "Неуспешно преобразуването на знаците от %s към %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:4067
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Грешка при четене от дъщерния процес: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4206
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr ""
|
|
||||||
"Грешка (%s) при преобразуването на данните за дъщерния процес, пропускане."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8148
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "ПРЕДУПРЕЖДЕНИЕ"
|
msgstr "ПРЕДУПРЕЖДЕНИЕ"
|
||||||
|
|
||||||
#: ../src/vte.cc:8149
|
#: src/vte.cc:7753
|
||||||
msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS не е включена. Данните ще бъдат записани в нешифриран вид."
|
msgstr "GnuTLS не е включена. Данните ще бъдат записани нешифрирани!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:110
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Неуспешно задаване на канала да е без блокиране: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "грешка при заявка „poll“: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:162
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Времето за действието изтече"
|
||||||
|
|
||||||
|
#: src/spawn.cc:172
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Действието е отменено"
|
||||||
|
|
||||||
|
#: src/spawn.cc:190
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Грешка при четене от дъщерния процес (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:620
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Директорията не може да се смени на „%s“: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:689
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Дъщерният процес не може да се изпълни „%s“: "
|
||||||
|
|
105
po/ca.po
105
po/ca.po
|
@ -2,91 +2,64 @@
|
||||||
# Copyright © 2002, 2003, 2007 Free Software Foundation, Inc.
|
# Copyright © 2002, 2003, 2007 Free Software Foundation, Inc.
|
||||||
# Enric Balletbó Serra <enric.balletbo@campus.uab.es>, 2002.
|
# Enric Balletbó Serra <enric.balletbo@campus.uab.es>, 2002.
|
||||||
# Jordi Mallach <jordi@sindominio.net>, 2003, 2007.
|
# Jordi Mallach <jordi@sindominio.net>, 2003, 2007.
|
||||||
# Gil Forcada <gilforcada@guifi.net>, 2014.
|
# Gil Forcada <gilforcada@guifi.net>, 2014-2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte 0.11.6\n"
|
"Project-Id-Version: vte 0.11.6\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"product=vte&keywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"POT-Creation-Date: 2017-08-20 20:38+0000\n"
|
"PO-Revision-Date: 2020-07-03 02:37+0200\n"
|
||||||
"PO-Revision-Date: 2017-08-21 23:29+0200\n"
|
|
||||||
"Last-Translator: Gil Forcada <gilforcada@guifi.net>\n"
|
"Last-Translator: Gil Forcada <gilforcada@guifi.net>\n"
|
||||||
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
|
||||||
"Language: ca\n"
|
"Language: ca\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
"X-Generator: Poedit 1.8.11\n"
|
"X-Generator: Gtranslator 3.36.0\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:73 ../src/iso2022.cc:81 ../src/iso2022.cc:111
|
#: src/vte.cc:7763
|
||||||
#: ../src/vtegtk.cc:3423
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "No es pot convertir el caràcter %s a %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:4067
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "S'ha produït un error en llegir del fill: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4206
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr ""
|
|
||||||
"S'ha produït un error (%s) en convertir dades per al fill; s'ometrà la "
|
|
||||||
"conversió."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8148
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "AVÍS"
|
msgstr "AVÍS"
|
||||||
|
|
||||||
#: ../src/vte.cc:8149
|
#: src/vte.cc:7765
|
||||||
msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS no està habilitat; les dades s'escriuran al disc sense xifrar!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
|
msgstr ""
|
||||||
|
"El GNUTLS no està habilitat; s'escriuran les dades al disc sense xifrar!"
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#: src/spawn.cc:111
|
||||||
#~ msgstr "Copia"
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "S'ha produït un error en establir el conducte com a no bloquejable: %s"
|
||||||
|
|
||||||
#~ msgid "Paste"
|
#: src/spawn.cc:155
|
||||||
#~ msgstr "Enganxa"
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "s'ha produït un error en l'enquesta: %s"
|
||||||
|
|
||||||
#~ msgid "Reset (use Ctrl to reset and clear)"
|
#: src/spawn.cc:161
|
||||||
#~ msgstr "Reinicia (utilitzeu Ctrl per reiniciar i netejar)"
|
msgid "Operation timed out"
|
||||||
|
msgstr "L'operació ha excedit el temps"
|
||||||
|
|
||||||
#~ msgid "Reset"
|
#: src/spawn.cc:171
|
||||||
#~ msgstr "Reinicia"
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "S'ha cancel·lat l'operació"
|
||||||
|
|
||||||
#~ msgid "Toggle input enabled setting"
|
#: src/spawn.cc:189
|
||||||
#~ msgstr "Commuta el paràmetre del mètode d'entrada actiu"
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "S'ha produït un error en llegir del conducte fill (%s)"
|
||||||
|
|
||||||
#~ msgid "Input"
|
#: src/spawn.cc:576
|
||||||
#~ msgstr "Entrada"
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "No s'ha pogut canviar al directori «%s»:%s"
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid NRC map '%c'."
|
#: src/spawn.cc:645
|
||||||
#~ msgstr "S'ha intentat fixar el mapa NRC invàlid «%c»."
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "No s'ha pogut executar el procés fill «%s»: "
|
||||||
|
|
||||||
#~ msgid "Unrecognized identified coding system."
|
|
||||||
#~ msgstr "No s'ha reconegut el sistema de codificació identificat."
|
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid wide NRC map '%c'."
|
|
||||||
#~ msgstr "S'ha intentat fixar el mapa global NRC «%c»."
|
|
||||||
|
|
||||||
#~ msgid "Could not open console.\n"
|
|
||||||
#~ msgstr "No s'ha pogut obrir la consola.\n"
|
|
||||||
|
|
||||||
#~ msgid "Could not parse the geometry spec passed to --geometry"
|
|
||||||
#~ msgstr ""
|
|
||||||
#~ "No s'ha pogut analitzar l'especificació geomètrica indicada a --geometry"
|
|
||||||
|
|
||||||
#~ msgid "Unable to send data to child, invalid charset convertor"
|
|
||||||
#~ msgstr ""
|
|
||||||
#~ "No s'ha pogut enviar les dades al fill, el convertidor de codificació no "
|
|
||||||
#~ "és vàlid"
|
|
||||||
|
|
||||||
#~ msgid "Error reading PTY size, using defaults: %s\n"
|
|
||||||
#~ msgstr ""
|
|
||||||
#~ "S'ha produït un error en llegir la mida de PTY; s'utilitzarà el valor per "
|
|
||||||
#~ "defecte: %s\n"
|
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
# Kurdish (Sorani) translation for vte2.91
|
||||||
|
# Copyright (c) 2020 Rosetta Contributors and Canonical Ltd 2020
|
||||||
|
# This file is distributed under the same license as the vte2.91 package.
|
||||||
|
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
|
||||||
|
#
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: vte2.91\n"
|
||||||
|
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
|
"POT-Creation-Date: 2019-05-13 09:31+0000\n"
|
||||||
|
"PO-Revision-Date: 2020-05-05 01:16+0300\n"
|
||||||
|
"Last-Translator: Jwtiyar Nariman <jwtiyar@gmail.com>\n"
|
||||||
|
"Language-Team: Kurdish (Sorani) <ckb@li.org>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Launchpad-Export-Date: 2020-05-04 22:12+0000\n"
|
||||||
|
"X-Generator: Poedit 2.3\n"
|
||||||
|
"Language: ckb\n"
|
||||||
|
|
||||||
|
#. Translators: %s is replaced with error message returned by strerror().
|
||||||
|
#: ../src/vte.cc:3928
|
||||||
|
#, c-format
|
||||||
|
msgid "Error reading from child: %s."
|
||||||
|
msgstr "هەڵەی خوێندنەوە لە مناڵەوە: %s."
|
||||||
|
|
||||||
|
#: ../src/vte.cc:4078
|
||||||
|
#, c-format
|
||||||
|
msgid "Error (%s) converting data for child, dropping."
|
||||||
|
msgstr "هەڵە(%s) لە گۆڕینی زانیاری فۆر منداڵ، فڕێدان."
|
||||||
|
|
||||||
|
#: ../src/vte.cc:7889
|
||||||
|
msgid "WARNING"
|
||||||
|
msgstr "ئاگاداربە"
|
||||||
|
|
||||||
|
#: ../src/vte.cc:7890
|
||||||
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
|
msgstr "GnuTLS چالاک نیە؛ زانیارییەکان دەکرێنە سەر پەپکە بێ ئەوەی پارێزراوبکرێن!"
|
||||||
|
|
||||||
|
#: ../src/vtegtk.cc:3666
|
||||||
|
#, c-format
|
||||||
|
msgid "Unable to convert characters from %s to %s."
|
||||||
|
msgstr "نەتوانرا نووسەکان بگۆڕدرێت لە %s بۆ %s."
|
63
po/cs.po
63
po/cs.po
|
@ -4,15 +4,14 @@
|
||||||
#
|
#
|
||||||
# Miloslav Trmac <mitr@volny.cz>, 2002, 2003, 2004.
|
# Miloslav Trmac <mitr@volny.cz>, 2002, 2003, 2004.
|
||||||
# Pavel Šefránek <ps@pjoul.cz>, 2008.
|
# Pavel Šefránek <ps@pjoul.cz>, 2008.
|
||||||
# Marek Černocký <marek@manet.cz>, 2010, 2014, 2016, 2018.
|
# Marek Černocký <marek@manet.cz>, 2010, 2014, 2016, 2018, 2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"product=vte&keywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"POT-Creation-Date: 2018-05-21 18:38+0000\n"
|
"PO-Revision-Date: 2020-08-25 11:22+0200\n"
|
||||||
"PO-Revision-Date: 2018-05-22 13:53+0200\n"
|
|
||||||
"Last-Translator: Marek Černocký <marek@manet.cz>\n"
|
"Last-Translator: Marek Černocký <marek@manet.cz>\n"
|
||||||
"Language-Team: čeština <gnome-cs-list@gnome.org>\n"
|
"Language-Team: čeština <gnome-cs-list@gnome.org>\n"
|
||||||
"Language: cs\n"
|
"Language: cs\n"
|
||||||
|
@ -22,27 +21,43 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Generator: Gtranslator 2.91.7\n"
|
"X-Generator: Gtranslator 2.91.7\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:71 ../src/iso2022.cc:79 ../src/iso2022.cc:109
|
#: src/vte.cc:7763
|
||||||
#: ../src/vtegtk.cc:3605
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "Nelze převést znaky z %s do %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:3958
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Chyba při čtení od potomka: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4098
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Chyba (%s) při převodu dat pro potomka, zahazuje se."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8150
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "VAROVÁNÍ"
|
msgstr "VAROVÁNÍ"
|
||||||
|
|
||||||
#: ../src/vte.cc:8151
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "Není povoleno GnuTLS – data budou na disku uložena nezašifrovaná!"
|
msgstr "Není povoleno GnuTLS – data budou na disku uložena nezašifrovaná!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:111
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Selhalo nastavení roury jako neblokující: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "Chyba dotazování (poll): %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Vypršel časový limit operace"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Operace byla zrušena"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Selhalo čtení z roury potomka (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Selhala změna složky na „%s“: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Selhalo spuštění procesu potomka „%s“: "
|
||||||
|
|
135
po/da.po
135
po/da.po
|
@ -1,129 +1,64 @@
|
||||||
# Danish translation of vte.
|
# Danish translation for vte.
|
||||||
# Copyright (C) 2002-07, 2016, 2018 Free Software Foundation, Inc.
|
# Copyright (C) 2002-07, 2016, 2018 Free Software Foundation, Inc.
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the vte package.
|
||||||
# Ole Laursen <olau@hardworking.dk>, 2002, 03.
|
# Ole Laursen <olau@hardworking.dk>, 2002, 03.
|
||||||
# Peter Bach <bach.peter@gmail.com>, 2007.
|
# Peter Bach <bach.peter@gmail.com>, 2007.
|
||||||
# Kenneth Nielsen <k.nielsen81@gmail.com>. 2010
|
# Kenneth Nielsen <k.nielsen81@gmail.com>, 2010.
|
||||||
# Ask Hjorth Larsen <asklarsen@gmail.com>, 2016, 2018.
|
# Ask Hjorth Larsen <asklarsen@gmail.com>, 2016, 2018.
|
||||||
|
# scootergrisen, 2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-04-27 18:50+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-30 21:05+0200\n"
|
"PO-Revision-Date: 2020-04-28 23:34+0200\n"
|
||||||
"Last-Translator: Ask Hjorth Larsen <asklarsen@gmail.com>\n"
|
"Last-Translator: scootergrisen\n"
|
||||||
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
|
||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7843
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Fejl ved læsning fra underproces: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Fejl (%s) ved konvertering af data for underproces, dropper."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "ADVARSEL"
|
msgstr "ADVARSEL"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7845
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS er ikke slået til; data vil blive skrevet ukrypteret til disken!"
|
msgstr "GnuTLS er ikke slået til; data vil blive skrevet ukrypteret til disken!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:104
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Kunne ikke konvertere tegn fra %s til %s."
|
msgstr "Kunne ikke indstille pipe som ikke-blokerende: %s"
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#: src/spawn.cc:148
|
||||||
#~ msgstr "Kopiér"
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "fejl ved poll: %s"
|
||||||
|
|
||||||
#~ msgid "Paste"
|
#: src/spawn.cc:154
|
||||||
#~ msgstr "Indsæt"
|
msgid "Operation timed out"
|
||||||
|
msgstr "Handlingen fik timeout"
|
||||||
|
|
||||||
#~ msgid "Reset (use Ctrl to reset and clear)"
|
#: src/spawn.cc:164
|
||||||
#~ msgstr "Nulstil (brug Ctrl til at nulstille og rydde)"
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Handlingen blev annulleret"
|
||||||
|
|
||||||
#~ msgid "Reset"
|
#: src/spawn.cc:182
|
||||||
#~ msgstr "Nulstil"
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Kunne ikke læse fra underpipe (%s)"
|
||||||
|
|
||||||
#~ msgid "Toggle input enabled setting"
|
#: src/spawn.cc:576
|
||||||
#~ msgstr "Slå input-indstillingen til eller fra"
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Kunne ikke skifte til mappen “%s”: %s"
|
||||||
|
|
||||||
#~ msgid "Input"
|
#: src/spawn.cc:645
|
||||||
#~ msgstr "Input"
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
#~ msgid "Attempt to set invalid NRC map '%c'."
|
msgstr "Kunne ikke køre underprocessen “%s”: "
|
||||||
#~ msgstr "Forsøg på at sætte ugyldig NRC-afbildning '%c'."
|
|
||||||
|
|
||||||
#~ msgid "Unrecognized identified coding system."
|
|
||||||
#~ msgstr "Ukendt identificeret kodningssystem."
|
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid wide NRC map '%c'."
|
|
||||||
#~ msgstr "Forsøg på at sætte ugyldig bred NRC-afbildning '%c'."
|
|
||||||
|
|
||||||
#~ msgid "Could not open console.\n"
|
|
||||||
#~ msgstr "Kunne ikke åbne konsol.\n"
|
|
||||||
|
|
||||||
#~ msgid "Could not parse the geometry spec passed to --geometry"
|
|
||||||
#~ msgstr "Kunne ikke fortolke geometrispecifikationen sendt med --geometry"
|
|
||||||
|
|
||||||
#~ msgid "Unable to send data to child, invalid charset convertor"
|
|
||||||
#~ msgstr ""
|
|
||||||
#~ "Kunne ikke sende data til underproces, ugyldig konvertering af tegnsæt"
|
|
||||||
|
|
||||||
#~ msgid "Error reading PTY size, using defaults: %s\n"
|
|
||||||
#~ msgstr "Fejl ved indlæsning af PTY-størrelse, bruger standardværdier: %s.\n"
|
|
||||||
|
|
||||||
#~ msgid "Duplicate (%s/%s)!"
|
|
||||||
#~ msgstr "Optræder mere end én gang (%s/%s)!"
|
|
||||||
|
|
||||||
#~ msgid "Error compiling regular expression \"%s\"."
|
|
||||||
#~ msgstr "Fejl ved oversættelse af regulært udtryk “%s”."
|
|
||||||
|
|
||||||
#~ msgid "_vte_conv_open() failed setting word characters"
|
|
||||||
#~ msgstr "_vte_iconv_open() kunne ikke sætte ordtegn"
|
|
||||||
|
|
||||||
#~ msgid "can not run %s"
|
|
||||||
#~ msgstr "kan ikke køre %s"
|
|
||||||
|
|
||||||
#~ msgid "Error creating signal pipe."
|
|
||||||
#~ msgstr "Fejl ved oprettelse af signaldatakanal."
|
|
||||||
|
|
||||||
#~ msgid "No handler for control sequence `%s' defined."
|
|
||||||
#~ msgstr "Ingen håndtering for kontrolsekvensen '%s' er defineret."
|
|
||||||
|
|
||||||
#~ msgid "Error setting PTY size: %s."
|
|
||||||
#~ msgstr "Fejl ved angivelse af PTY-størrelse: %s."
|
|
||||||
|
|
||||||
#~ msgid "Got unexpected (key?) sequence `%s'."
|
|
||||||
#~ msgstr "Modtog uventet (taste-?) sekvens '%s'."
|
|
||||||
|
|
||||||
#~ msgid "Unknown pixel mode %d.\n"
|
|
||||||
#~ msgstr "Ukendt pixeltilstand %d.\n"
|
|
||||||
|
|
||||||
#~ msgid "Can not find appropiate font for character U+%04x.\n"
|
|
||||||
#~ msgstr "Kan ikke finde passende skrifttype for tegn U+%04x.\n"
|
|
||||||
|
|
||||||
#~ msgid "Error adding `%s' to environment, continuing."
|
|
||||||
#~ msgstr "Fejl ved tilføjelse af '%s' til miljøet, fortsætter."
|
|
||||||
|
|
||||||
#~ msgid "Error allocating draw, disabling Xft."
|
|
||||||
#~ msgstr "Fejl ved allokering af tegning, deaktiverer Xft."
|
|
||||||
|
|
||||||
#~ msgid "Error allocating context, disabling Pango."
|
|
||||||
#~ msgstr "Fejl ved allokering af kontekst, deaktiverer Pango."
|
|
||||||
|
|
||||||
#~ msgid "Error allocating layout, disabling Pango."
|
|
||||||
#~ msgstr "Fejl ved allokering af layout, deaktiverer Pango."
|
|
||||||
|
|
||||||
#~ msgid "Character 0x%x is undefined, allocating one column."
|
|
||||||
#~ msgstr "Tegn 0x%x er ikke defineret, allokerer en kolonne."
|
|
||||||
|
|
67
po/de.po
67
po/de.po
|
@ -5,47 +5,74 @@
|
||||||
# Hendrik Richter <hendrikr@gnome.org>, 2007.
|
# Hendrik Richter <hendrikr@gnome.org>, 2007.
|
||||||
# Andre Klapper <a9016009@gmx.de>, 2007.
|
# Andre Klapper <a9016009@gmx.de>, 2007.
|
||||||
# Mario Blättermann <mariobl@gnome.org>, 2010, 2014, 2016.
|
# Mario Blättermann <mariobl@gnome.org>, 2010, 2014, 2016.
|
||||||
# Tim Sabsch <tim@sabsch.com>, 2018.
|
# Tim Sabsch <tim@sabsch.com>, 2018, 2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte master\n"
|
"Project-Id-Version: vte master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-09-04 08:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-07-27 14:47+0200\n"
|
"PO-Revision-Date: 2020-09-07 20:27+0200\n"
|
||||||
"Last-Translator: Tim Sabsch <tim@sabsch.com>\n"
|
"Last-Translator: Tim Sabsch <tim@sabsch.com>\n"
|
||||||
"Language-Team: German <gnome-de@gnome.org>\n"
|
"Language-Team: German <gnome-de@gnome.org>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.0.9\n"
|
"X-Generator: Poedit 2.4.1\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7770
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Fehler beim Lesen von Kind: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Fehler (%s) beim Konvertieren der Daten für Kind, abgebrochen."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "WARNUNG"
|
msgstr "WARNUNG"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7772
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"GnuTLS ist nicht aktiviert, die Daten werden unverschlüsselt auf die "
|
"GnuTLS ist nicht aktiviert, die Daten werden unverschlüsselt auf die "
|
||||||
"Festplatte geschrieben!"
|
"Festplatte geschrieben!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
# So ähnlich habe ich es im Internet gelesen.
|
||||||
|
# Es handelt sich hierbei um eine Pipeline,
|
||||||
|
# Es gibt eine Einstellung "nicht blockierend"
|
||||||
|
# und eine die den Lese- oder Schreibzugriff auf die Pipe verweigert soweit ich mich erinnere.
|
||||||
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Zeichen konnten nicht von %s nach %s konvertiert werden."
|
msgstr "Fehler beim Setzen der nicht-blockierenden Pipe: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:156
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "Poll-Fehler: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:163
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Zeitüberschreitung bei Vorgang"
|
||||||
|
|
||||||
|
#: src/spawn.cc:173
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Vorgang wurde abgebrochen"
|
||||||
|
|
||||||
|
#: src/spawn.cc:191
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Fehler beim Lesen von der Kind-Pipe (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:621
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Wechsel zu Verzeichnis »%s« fehlgeschlagen: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:690
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Ausführung des Kind-Prozesses »%s« fehlgeschlagen: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Fehler (%s) beim Konvertieren der Daten für Kind, abgebrochen."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Zeichen konnten nicht von %s nach %s konvertiert werden."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Kopieren"
|
#~ msgstr "Kopieren"
|
||||||
|
|
65
po/el.po
65
po/el.po
|
@ -11,7 +11,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: el\n"
|
"Project-Id-Version: el\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2023-08-06 13:23+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-15 14:13+0300\n"
|
"PO-Revision-Date: 2018-08-15 14:13+0300\n"
|
||||||
"Last-Translator: Efstathios Iosifidis <iosifidis@opensuse.org>\n"
|
"Last-Translator: Efstathios Iosifidis <iosifidis@opensuse.org>\n"
|
||||||
"Language-Team: team@gnome.gr\n"
|
"Language-Team: team@gnome.gr\n"
|
||||||
|
@ -23,32 +23,57 @@ msgstr ""
|
||||||
"X-Generator: Poedit 2.0.9\n"
|
"X-Generator: Poedit 2.0.9\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7699
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Σφάλμα ανάγνωσης από θυγατρική διεργασία: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr ""
|
|
||||||
"Σφάλμα (%s) μετατροπής δεδομένων από θυγατρική διεργασία, απορρίπτεται."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ"
|
msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7701
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Δεν είναι ενεργοποιημένο το GNUTLS, τα δεδομένα που θα εγγραφούν στο "
|
"Δεν είναι ενεργοποιημένο το GNUTLS, τα δεδομένα που θα εγγραφούν στο δίσκο "
|
||||||
"δίσκο δεν θα είναι κρυπτογραφημένα!"
|
"δεν θα είναι κρυπτογραφημένα!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:124
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Αδύνατη η μετατροπή χαρακτήρων από %s σε %s."
|
msgstr "Αποτυχία ορισμού μη αποκλειστικού αγωγού: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:169
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "Σφάλμα poll: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:176
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Η λειτουργία έληξε λόγω χρονικού ορίου"
|
||||||
|
|
||||||
|
#: src/spawn.cc:186
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Η λειτουργία ακυρώθηκε"
|
||||||
|
|
||||||
|
#: src/spawn.cc:204
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Αποτυχία ανάγνωσης από από θυγατρική διεργασία (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:639
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Αποτυχία αλλαγής καταλόγου σε “%s”: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:708
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Αποτυχία εκτέλεσης θυγατρικής διεργασίας «%s»: "
|
||||||
|
|
||||||
|
#, c-format
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Σφάλμα (%s) μετατροπής δεδομένων από θυγατρική διεργασία, απορρίπτεται."
|
||||||
|
|
||||||
|
#, c-format
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Αδύνατη η μετατροπή χαρακτήρων από %s σε %s."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Αντιγραφή"
|
#~ msgstr "Αντιγραφή"
|
||||||
|
|
65
po/en_GB.po
65
po/en_GB.po
|
@ -3,14 +3,14 @@
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the vte package.
|
||||||
# Gareth Owen <gowen72@yahoo.com>, 2004.
|
# Gareth Owen <gowen72@yahoo.com>, 2004.
|
||||||
# Philip Withnall <philip@tecnocode.co.uk>, 2010.
|
# Philip Withnall <philip@tecnocode.co.uk>, 2010.
|
||||||
# Zander Brown <zbrown@gnome.org>, 2019.
|
# Zander Brown <zbrown@gnome.org>, 2019-2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2019-04-14 20:50+0000\n"
|
"POT-Creation-Date: 2020-04-27 18:50+0000\n"
|
||||||
"PO-Revision-Date: 2019-08-25 01:15+0100\n"
|
"PO-Revision-Date: 2020-05-18 13:01+0100\n"
|
||||||
"Last-Translator: Zander Brown <zbrown@gnome.org>\n"
|
"Last-Translator: Zander Brown <zbrown@gnome.org>\n"
|
||||||
"Language-Team: English - United Kingdom <en_GB@li.org>\n"
|
"Language-Team: English - United Kingdom <en_GB@li.org>\n"
|
||||||
"Language: en_GB\n"
|
"Language: en_GB\n"
|
||||||
|
@ -18,32 +18,55 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Gtranslator 3.32.1\n"
|
"X-Generator: Gtranslator 3.36.0\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7843
|
||||||
#: src/vte.cc:3928
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Error reading from child: %s."
|
|
||||||
|
|
||||||
#: src/vte.cc:4078
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Error (%s) converting data for child, dropping."
|
|
||||||
|
|
||||||
#: src/vte.cc:7889
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "WARNING"
|
msgstr "WARNING"
|
||||||
|
|
||||||
#: src/vte.cc:7890
|
#: src/vte.cc:7845
|
||||||
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgstr "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
|
|
||||||
#: src/vtegtk.cc:3653
|
#: src/spawn.cc:104
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Unable to convert characters from %s to %s."
|
msgstr "Failed to set pipe non-blocking: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:148
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "poll error: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:154
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Operation timed out"
|
||||||
|
|
||||||
|
#: src/spawn.cc:164
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Operation was cancelled"
|
||||||
|
|
||||||
|
#: src/spawn.cc:182
|
||||||
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Failed to read from child pipe (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Failed to change to directory “%s”: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Failed to execute child process “%s”: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Error (%s) converting data for child, dropping."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Unable to convert characters from %s to %s."
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid NRC map '%c'."
|
#~ msgid "Attempt to set invalid NRC map '%c'."
|
||||||
#~ msgstr "Attempt to set invalid NRC map '%c'."
|
#~ msgstr "Attempt to set invalid NRC map '%c'."
|
||||||
|
|
80
po/eo.po
80
po/eo.po
|
@ -2,49 +2,73 @@
|
||||||
# Copyright (C) 2008 Free Software Foundation, Inc.
|
# Copyright (C) 2008 Free Software Foundation, Inc.
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the vte package.
|
||||||
# Brian CROOM <>, 2008
|
# Brian CROOM <>, 2008
|
||||||
# Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>, 2010, 2017.
|
# Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>, 2010-2020.
|
||||||
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?product=vte&ke"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"ywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"POT-Creation-Date: 2017-02-28 06:44+0000\n"
|
"PO-Revision-Date: 2020-11-28 17:31+0100\n"
|
||||||
"PO-Revision-Date: 2017-06-10 17:44+0200\n"
|
|
||||||
"Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n"
|
"Last-Translator: Kristjan SCHMIDT <kristjan.schmidt@googlemail.com>\n"
|
||||||
"Language-Team: Esperanto <gnome-eo-list@gnome.org>\n"
|
"Language-Team: Esperanto <gnome-eo-list@gnome.org>\n"
|
||||||
"Language: eo\n"
|
"Language: eo\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
"X-Generator: Virtaal 0.7.1\n"
|
"X-Generator: Gtranslator 3.38.0\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:73 ../src/iso2022.cc:81 ../src/iso2022.cc:111
|
#: src/vte.cc:7763
|
||||||
#: ../src/vtegtk.cc:3262
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "Ne eblas konverti signojn de %s al %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:4014
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Eraro dum legado de ido: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4153
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Eraro (%s) dum konverti datumojn por ido, ignorante."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:7922
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "AVERTO"
|
msgstr "AVERTO"
|
||||||
|
|
||||||
#: ../src/vte.cc:7923
|
#: src/vte.cc:7765
|
||||||
msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
||||||
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"GNUTLS ne estas enŝaltita; datumoj estos skribitaj sen ĉifrado al la disko!"
|
"GnuTLS ne estas ŝaltita; datumoj estos skribitaj sen ĉifrado al la disko!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:111
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Malsukcesis agordi dukton al neblokada: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "enketa eraro: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "La operacio eltempiĝis"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "La operacio estas nuligita"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Malsukcesis legi de duktido (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Malsukcesis ŝanĝi dosierujon “%s”: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Malsukcesis plenumi procezidon “%s”: "
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Ne eblas konverti signojn de %s al %s."
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Eraro (%s) dum konverti datumojn por ido, ignorante."
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid NRC map '%c'."
|
#~ msgid "Attempt to set invalid NRC map '%c'."
|
||||||
#~ msgstr "Provi agordi nevalidan NRC-mapon '%c'."
|
#~ msgstr "Provi agordi nevalidan NRC-mapon '%c'."
|
||||||
|
|
73
po/es.po
73
po/es.po
|
@ -10,51 +10,72 @@
|
||||||
# Francisco Javier F. Serrador <serrador@cvs.gnome.org>, 2004.
|
# Francisco Javier F. Serrador <serrador@cvs.gnome.org>, 2004.
|
||||||
# Rodrigo Marcos Fombellida <rodrifom@gmail.com>, 2007.
|
# Rodrigo Marcos Fombellida <rodrifom@gmail.com>, 2007.
|
||||||
# Jorge González <jorgegonz@svn.gnome.org>, 2010.
|
# Jorge González <jorgegonz@svn.gnome.org>, 2010.
|
||||||
# Daniel Mustieles <daniel.mustieles@gmail.com>, 2014, 2016, 2018.
|
# Daniel Mustieles <daniel.mustieles@gmail.com>, 2014-2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte.HEAD\n"
|
"Project-Id-Version: vte.HEAD\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"product=vte&keywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2020-04-27 18:50+0000\n"
|
||||||
"POT-Creation-Date: 2018-05-21 18:38+0000\n"
|
"PO-Revision-Date: 2020-04-28 17:39+0200\n"
|
||||||
"PO-Revision-Date: 2018-05-22 13:02+0200\n"
|
|
||||||
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
|
"Last-Translator: Daniel Mustieles <daniel.mustieles@gmail.com>\n"
|
||||||
"Language-Team: es <gnome-es-list@gnome.org>\n"
|
"Language-Team: es <gnome-es-list@gnome.org>\n"
|
||||||
"Language: es\n"
|
"Language: es\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Gtranslator 2.91.6\n"
|
"X-Generator: Gtranslator 3.36.0\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:71 ../src/iso2022.cc:79 ../src/iso2022.cc:109
|
#: src/vte.cc:7843
|
||||||
#: ../src/vtegtk.cc:3605
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "No se pueden convertir caracteres de %s a %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:3958
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Error al leer desde el hijo: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4098
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Error (%s) al convertir datos desde el hijo, omitiendo."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8150
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "ADVERTENCIA"
|
msgstr "ADVERTENCIA"
|
||||||
|
|
||||||
#: ../src/vte.cc:8151
|
#: src/vte.cc:7845
|
||||||
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"GNUTLS no está activado; lo datos se escribirán en el disco sin cifrar."
|
"GNUTLS no está activado; lo datos se escribirán en el disco sin cifrar."
|
||||||
|
|
||||||
|
#: src/spawn.cc:104
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Falló al establecer la tubería no bloqueante: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:148
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "error de consulta: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:154
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Ha expirado el tiempo de la operación"
|
||||||
|
|
||||||
|
#: src/spawn.cc:164
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Se canceló la operación"
|
||||||
|
|
||||||
|
#: src/spawn.cc:182
|
||||||
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Error al leer desde la tubería hija (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Falló al cambiar a la carpeta «%s»: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Falló al ejecutar el proceso hijo «%s»: "
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "No se pueden convertir caracteres de %s a %s."
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Error (%s) al convertir datos desde el hijo, omitiendo."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Copiar"
|
#~ msgstr "Copiar"
|
||||||
|
|
||||||
|
|
64
po/eu.po
64
po/eu.po
|
@ -4,45 +4,67 @@
|
||||||
#
|
#
|
||||||
# Alberto Fernández Benito <afernn@euskalnet.net>, 2003.
|
# Alberto Fernández Benito <afernn@euskalnet.net>, 2003.
|
||||||
# Iñaki Larrañaga Murgoitio <dooteo@zundan.com>, 2004, 2007, 2008, 2010, 2014, 2016.
|
# Iñaki Larrañaga Murgoitio <dooteo@zundan.com>, 2004, 2007, 2008, 2010, 2014, 2016.
|
||||||
# Asier Sarasua Garmendia <asier.sarasua@gmail.com>, 2019.
|
# Asier Sarasua Garmendia <asiersarasua@ni.eus>, 2019, 2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr "Project-Id-Version: vte master\n"
|
msgstr "Project-Id-Version: vte master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2019-04-14 20:50+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2019-07-14 10:00+0100\n"
|
"PO-Revision-Date: 2020-05-30 10:00+0100\n"
|
||||||
"Last-Translator: Asier Sarasua Garmendia <asier.sarasua@gmail.com>\n"
|
"Last-Translator: Asier Sarasua Garmendia <asiersarasua@ni.eus>\n"
|
||||||
"Language-Team: Basque <librezale@librezale.eus>\n"
|
"Language-Team: Basque <librezale@librezale.eus>\n"
|
||||||
"Language: eu\n"
|
"Language: eu\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Lokalize 2.0\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: src/vte.cc:3928
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Errorea umetik irakurtzean: %s."
|
|
||||||
|
|
||||||
#: src/vte.cc:4078
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Errorea datuak bihurtzean (%s) haurrarentzako, jaregiten."
|
|
||||||
|
|
||||||
#: src/vte.cc:7889
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "ABISUA"
|
msgstr "ABISUA"
|
||||||
|
|
||||||
#: src/vte.cc:7890
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS ez dago gaituta, datuak zifratu gabe idatziko dira diskoan!"
|
msgstr "GNUTLS ez dago gaituta, datuak zifratu gabe idatziko dira diskoan!"
|
||||||
|
|
||||||
#: src/vtegtk.cc:3653
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Karaktereak ezin dira %s-(e)tik %s-(e)ra bihurtu."
|
msgstr "Huts egin du kanalizazioa ez-blokeatzaile gisa ezartzeak: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "kontsultaren errorea: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Eragiketak denbora agortu du"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Eragiketa bertan behera utzi da"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Ezin izan da kanalizazio umetik irakurri (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Ezin izan da “%s” direktoriora aldatu: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Ezin izan da “%s” prozesu haurra exekutatu: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Errorea datuak bihurtzean (%s) haurrarentzako, jaregiten."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Karaktereak ezin dira %s-(e)tik %s-(e)ra bihurtu."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Kopiatu"
|
#~ msgstr "Kopiatu"
|
||||||
|
|
62
po/fa.po
62
po/fa.po
|
@ -3,44 +3,68 @@
|
||||||
# Copyright (C) 2010 The IFSUG Translation Group
|
# Copyright (C) 2010 The IFSUG Translation Group
|
||||||
# Roozbeh Pournader <roozbeh@sharif.edu>, 2003.
|
# Roozbeh Pournader <roozbeh@sharif.edu>, 2003.
|
||||||
# Arash Mousavi <mousavi.arash@gmail.com>, 2010, 2015, 2016.
|
# Arash Mousavi <mousavi.arash@gmail.com>, 2010, 2015, 2016.
|
||||||
|
# Danial Behzadi <dani.behzi@ubuntu.com>, 2017-2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2019-09-07 11:33+0000\n"
|
"POT-Creation-Date: 2020-04-27 18:50+0000\n"
|
||||||
"PO-Revision-Date: 2019-09-14 20:54+0000\n"
|
"PO-Revision-Date: 2020-05-13 17:32+0000\n"
|
||||||
"Last-Translator: Arash Mousavi <mousavi.arash@gmail.com>\n"
|
"Last-Translator: Arash Mousavi <mousavi.arash@gmail.com>\n"
|
||||||
"Language-Team: Persian\n"
|
"Language-Team: Persian\n"
|
||||||
"Language: fa\n"
|
"Language: fa\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.2.3\n"
|
"X-Generator: Poedit 2.3\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7843
|
||||||
#: src/vte.cc:4184
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "خطا در خواندن از فرزند: %s."
|
|
||||||
|
|
||||||
#: src/vte.cc:4334
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "خطا (%s) در تبدیل داده برای فرزند. درحال رها کردن."
|
|
||||||
|
|
||||||
#: src/vte.cc:8258
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "هشدار"
|
msgstr "هشدار"
|
||||||
|
|
||||||
#: src/vte.cc:8259
|
#: src/vte.cc:7845
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS به کارنیفتاده؛ دادهها بدون رمزنگاری روی دیسک نوشته خواهند شد!"
|
msgstr "GnuTLS به کارنیفتاده؛ دادهها بدون رمزنگاری روی دیسک نوشته خواهند شد!"
|
||||||
|
|
||||||
#: src/vtegtk.cc:3873
|
#: src/spawn.cc:104
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "نمیتوان نویسهها را از %s به %s تبدیل کرد."
|
msgstr "شکست در تنظیم نامسدودی لوله: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:148
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "خطای رأی: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:154
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "زمان عملیات به سر رسید"
|
||||||
|
|
||||||
|
#: src/spawn.cc:164
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "عملیات لغو شده بود"
|
||||||
|
|
||||||
|
#: src/spawn.cc:182
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "خطا در خواندن از لولهٔ فرزند(%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "شکست در تعویض به شاخهٔ %s: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "شکست در اجرای فرایند فرزند %s: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "خطا (%s) در تبدیل داده برای فرزند. درحال رها کردن."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "نمیتوان نویسهها را از %s به %s تبدیل کرد."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "رونوشت"
|
#~ msgstr "رونوشت"
|
||||||
|
|
62
po/fi.po
62
po/fi.po
|
@ -10,8 +10,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2021-02-22 17:16+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-17 21:03+0300\n"
|
"PO-Revision-Date: 2021-02-27 11:57+0200\n"
|
||||||
"Last-Translator: Jiri Grönroos <jiri.gronroos+l10n@iki.fi>\n"
|
"Last-Translator: Jiri Grönroos <jiri.gronroos+l10n@iki.fi>\n"
|
||||||
"Language-Team: suomi <gnome-fi-laatu@lists.sourceforge.net>\n"
|
"Language-Team: suomi <gnome-fi-laatu@lists.sourceforge.net>\n"
|
||||||
"Language: fi\n"
|
"Language: fi\n"
|
||||||
|
@ -19,31 +19,55 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: Poedit 2.0.6\n"
|
"X-Generator: Poedit 2.4.2\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7710
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Virhe lapselta lukemisessa: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Virhe (%s) datan muuntamisessa lapselle, putoaa pois."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "VAROITUS"
|
msgstr "VAROITUS"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7712
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS ei ole käytössä; tiedot kirjoitetaan levylle ilman salausta!"
|
msgstr "GnuTLS ei ole käytössä; tiedot kirjoitetaan levylle ilman salausta!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:110
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Merkkien muuntaminen merkistöstä %s merkistöön %s ei onnistu."
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/spawn.cc:162
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Toiminto aikakatkaistiin"
|
||||||
|
|
||||||
|
#: src/spawn.cc:172
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Toiminto peruttiin"
|
||||||
|
|
||||||
|
#: src/spawn.cc:190
|
||||||
|
#, fuzzy, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Virhe lapselta lukemisessa: %s."
|
||||||
|
|
||||||
|
#: src/spawn.cc:620
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/spawn.cc:689
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Lapsiprosessin “%s” suorittaminen epäonnistui: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Virhe (%s) datan muuntamisessa lapselle, putoaa pois."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Merkkien muuntaminen merkistöstä %s merkistöön %s ei onnistu."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Kopioi"
|
#~ msgstr "Kopioi"
|
||||||
|
|
71
po/fr.po
71
po/fr.po
|
@ -1,5 +1,5 @@
|
||||||
# French translation of vte.
|
# French translation of vte.
|
||||||
# Copyright (C) 2002-2016 Free Software Foundation, Inc.
|
# Copyright (C) 2002-2020 Free Software Foundation, Inc.
|
||||||
# This file is under the same license as the vte package.
|
# This file is under the same license as the vte package.
|
||||||
#
|
#
|
||||||
# Laurent Richard <kouran@iespana.es>, 2002.
|
# Laurent Richard <kouran@iespana.es>, 2002.
|
||||||
|
@ -7,47 +7,62 @@
|
||||||
# Jonathan Ernst <jonathan@ernstfamily.ch>, 2007.
|
# Jonathan Ernst <jonathan@ernstfamily.ch>, 2007.
|
||||||
# Stéphane Raimbault <stephane.raimbault@gmail.com>, 2007.
|
# Stéphane Raimbault <stephane.raimbault@gmail.com>, 2007.
|
||||||
# Charles Monzat <superboa@hotmail.fr>, 2018.
|
# Charles Monzat <superboa@hotmail.fr>, 2018.
|
||||||
|
# Thibault Martin <mail@thibaultmart.in>, 2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte 0.14.1\n"
|
"Project-Id-Version: vte 0.14.1\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"product=vte&keywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2020-08-10 11:59+0000\n"
|
||||||
"POT-Creation-Date: 2018-05-21 18:38+0000\n"
|
"PO-Revision-Date: 2020-09-05 20:35+0200\n"
|
||||||
"PO-Revision-Date: 2018-05-21 21:39+0200\n"
|
"Last-Translator: Thibault Martin <mail@thibaultmart.in>\n"
|
||||||
"Last-Translator: Charles Monzat <superboa@hotmail.fr>\n"
|
"Language-Team: GNOME French Team <gnomefr@traduc.org>\n"
|
||||||
"Language-Team: français <gnomefr@traduc.org>\n"
|
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
"X-Generator: Gtranslator 2.91.7\n"
|
"X-Generator: Gtranslator 3.36.0\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:71 ../src/iso2022.cc:79 ../src/iso2022.cc:109
|
#: src/vte.cc:7770
|
||||||
#: ../src/vtegtk.cc:3605
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "Impossible de convertir les caractères %s en %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:3958
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Erreur lors de la lecture du fils : « %s »."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4098
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Erreur (%s) lors de la conversion de données pour le fils, abandon."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8150
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "AVERTISSEMENT"
|
msgstr "AVERTISSEMENT"
|
||||||
|
|
||||||
#: ../src/vte.cc:8151
|
#: src/vte.cc:7772
|
||||||
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"GnuTLS n’est pas activé ; les données seront écrites sur le disque sans être "
|
"GnuTLS n’est pas activé ; les données seront écrites sur le disque sans être "
|
||||||
"chiffrées !"
|
"chiffrées !"
|
||||||
|
|
||||||
|
#: src/spawn.cc:111
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Impossible d’établir le tube non-bloquant : %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:156
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "erreur d’inspection : %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:163
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Expiration du délai de l’opération"
|
||||||
|
|
||||||
|
#: src/spawn.cc:173
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "L’opération a été annulée"
|
||||||
|
|
||||||
|
#: src/spawn.cc:191
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Erreur lors de la lecture du tube fils (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:621
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Impossible de passer dans le répertoire « %s » : %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:690
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Impossible d’exécuter le processus fils « %s » : "
|
||||||
|
|
75
po/fur.po
75
po/fur.po
|
@ -6,43 +6,63 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte vte-0-34\n"
|
"Project-Id-Version: vte vte-0-34\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"product=vte&keywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"POT-Creation-Date: 2018-05-21 18:38+0000\n"
|
"PO-Revision-Date: 2020-07-11 21:33+0200\n"
|
||||||
"PO-Revision-Date: 2018-05-26 11:00+0200\n"
|
|
||||||
"Last-Translator: Fabio Tomat <f.t.public@gmail.com>\n"
|
"Last-Translator: Fabio Tomat <f.t.public@gmail.com>\n"
|
||||||
"Language-Team: Friulian <fur@li.org>\n"
|
"Language-Team: Friulian <fur@li.org>\n"
|
||||||
"Language: fur\n"
|
"Language: fur\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.0.7\n"
|
"X-Generator: Poedit 2.3.1\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:71 ../src/iso2022.cc:79 ../src/iso2022.cc:109
|
#: src/vte.cc:7763
|
||||||
#: ../src/vtegtk.cc:3605
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "Impussibil convertî i caratars di %s a %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:3958
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Erôr leint dal procès fî: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4098
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Erôr (%s) convertint i dâts par il proces fî, a restaran come prime."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8150
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "AVERTIMENT"
|
msgstr "AVERTIMENT"
|
||||||
|
|
||||||
#: ../src/vte.cc:8151
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr "GnuTLS no abilitât; i dâts a vignaran scrits tal disc cence jessi cifrâts!"
|
||||||
"GnuTLS no abilitât; i dâts a vignaran scrits tal disc cence jessi cifrâts!"
|
|
||||||
|
#: src/spawn.cc:111
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "No si è rivâts a stabilî il condot no-blocant: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "erôr di interogazion: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Operazion scjadude"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "La operazion e je stade anulade"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "No si è rivâts a lei dal condot dal fi (%s)."
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "No si è rivâts a lâ te cartele “%s”: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "No si è rivâts a eseguî il procès fi “%s”: "
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Impussibil convertî i caratars di %s a %s."
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Erôr (%s) convertint i dâts par il proces fî, a restaran come prime."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Copie"
|
#~ msgstr "Copie"
|
||||||
|
@ -57,8 +77,7 @@ msgstr ""
|
||||||
#~ msgstr "No puès analizâ le specifiche di geometrie pasade a --geometry"
|
#~ msgstr "No puès analizâ le specifiche di geometrie pasade a --geometry"
|
||||||
|
|
||||||
#~ msgid "Unable to send data to child, invalid charset convertor"
|
#~ msgid "Unable to send data to child, invalid charset convertor"
|
||||||
#~ msgstr ""
|
#~ msgstr "Impussibil inviâ dâts al procès fî, convertidôr di caratars no valit"
|
||||||
#~ "Impussibil inviâ dâts al procès fî, convertidôr di caratars no valit"
|
|
||||||
|
|
||||||
#~ msgid "Error reading PTY size, using defaults: %s\n"
|
#~ msgid "Error reading PTY size, using defaults: %s\n"
|
||||||
#~ msgstr "Erôr leint la dimension PTY, doprarai i valôrs di default: %s\n"
|
#~ msgstr "Erôr leint la dimension PTY, doprarai i valôrs di default: %s\n"
|
||||||
|
|
67
po/gl.po
67
po/gl.po
|
@ -5,46 +5,69 @@
|
||||||
# Ignacio Casal Quinteiro <icq@cvs.gnome.org>, 2007, 2008.
|
# Ignacio Casal Quinteiro <icq@cvs.gnome.org>, 2007, 2008.
|
||||||
# Mancomún - Centro de Referencia e Servizos de Software Libre <g11n@mancomun.org>, 2009.
|
# Mancomún - Centro de Referencia e Servizos de Software Libre <g11n@mancomun.org>, 2009.
|
||||||
# Fran Diéguez <frandieguez@ubuntu.com>, 2010, 2011.
|
# Fran Diéguez <frandieguez@ubuntu.com>, 2010, 2011.
|
||||||
# Fran Dieguez <frandieguez@gnome.org>, 2014, 2016, 2018.
|
# Fran Dieguez <frandieguez@gnome.org>, 2014-2020.
|
||||||
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: gl\n"
|
"Project-Id-Version: gl\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2021-02-22 17:16+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-30 00:33+0200\n"
|
"PO-Revision-Date: 2020-08-04 09:31+0200\n"
|
||||||
"Last-Translator: Fran Dieguez <frandieguez@gnome.org>\n"
|
"Last-Translator: Fran Dieguez <frandieguez@gnome.org>\n"
|
||||||
"Language-Team: Proxecto Trasno <proxecto@trasno.gal>\n"
|
"Language-Team: Proxecto Trasno <proxecto@trasno.gal>\n"
|
||||||
"Language: gl\n"
|
"Language: gl\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
|
||||||
"X-Generator: Virtaal 0.7.1\n"
|
"X-Generator: Gtranslator 3.36.0\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7710
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Produciuse un erro ao ler desde o fillo: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Produciuse un erro (%s) ao converter os datos do fillo; eliminando."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "AVISO"
|
msgstr "AVISO"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7712
|
||||||
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS non está activado; os datos escribiranse no disco sen cifrar!"
|
msgstr "GnuTLS non está activado; os datos escribiranse no disco sen cifrar!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:110
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Non foi posíbel converter os caracteres desde %s a %s."
|
msgstr "Produciuse un fallo ao estabelecer a tubería non bloqueante: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "erro de consulta: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:162
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Expirou o tempo da operación"
|
||||||
|
|
||||||
|
#: src/spawn.cc:172
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Cancelouse a operación"
|
||||||
|
|
||||||
|
#: src/spawn.cc:190
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Produciuse un erro ao ler desde a tubería filla (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:620
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Produciuse un fallo ao cambiar ao directorio «%s»: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:689
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Produciuse un fallo ao executar o proceso fillo «%s»: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Produciuse un erro (%s) ao converter os datos do fillo; eliminando."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Non foi posíbel converter os caracteres desde %s a %s."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Copiar"
|
#~ msgstr "Copiar"
|
||||||
|
|
81
po/he.po
81
po/he.po
|
@ -8,42 +8,64 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte.HEAD.he\n"
|
"Project-Id-Version: vte.HEAD.he\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2016-08-09 20:35+0300\n"
|
"POT-Creation-Date: 2021-08-26 18:15+0000\n"
|
||||||
"PO-Revision-Date: 2016-08-09 20:35+0300\n"
|
"PO-Revision-Date: 2021-09-27 11:49+0300\n"
|
||||||
"Last-Translator: Yosef Or Boczko <yoseforb@gmail.com>\n"
|
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
|
||||||
"Language-Team: עברית <>\n"
|
"Language-Team: עברית <>\n"
|
||||||
"Language: he\n"
|
"Language: he\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Gtranslator 2.91.6\n"
|
"X-Generator: Poedit 3.0\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? 2 : 3);\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:73 ../src/iso2022.cc:81 ../src/iso2022.cc:111
|
#: src/vte.cc:7670
|
||||||
#: ../src/vtegtk.cc:3069
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "לא ניתן להמיר תווים מ־%s ל־%s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:4003
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "שגיאה בקריאה מהילד: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4142
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "שגיאה (%s) בהמרת מידע לילד, זורק."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:7911
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "WARNING"
|
msgstr "אזהרה"
|
||||||
|
|
||||||
#: ../src/vte.cc:7912
|
#: src/vte.cc:7672
|
||||||
msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS not enabled; data will be written to disk unencrypted!"
|
msgstr "GnuTLS אינו זמין, הנתונים ייכתבו לכונן ללא הצפנה!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:110
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "הגדרת הצינורית כך שלא תחסום נכשלה: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "שגיאת תשאול: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:162
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "הזמן שהוקצב לפעולה הסתיים"
|
||||||
|
|
||||||
|
#: src/spawn.cc:172
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "הפעולה בוטלה"
|
||||||
|
|
||||||
|
#: src/spawn.cc:190
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "הקריאה מצינורית הצאצא (%s) נכשלה"
|
||||||
|
|
||||||
|
#: src/spawn.cc:620
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "מעבר לתיקייה אחרת „%s” נכשל: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:689
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "הפעלת התהליך הצאצא „%s” נכשלה: "
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "לא ניתן להמיר תווים מ־%s ל־%s."
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "שגיאה (%s) בהמרת מידע לילד, זורק."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "העתקה"
|
#~ msgstr "העתקה"
|
||||||
|
@ -120,8 +142,7 @@ msgstr "GNUTLS not enabled; data will be written to disk unencrypted!"
|
||||||
#~ msgid "Using fontset \"%s\", which is missing these character sets: %s."
|
#~ msgid "Using fontset \"%s\", which is missing these character sets: %s."
|
||||||
#~ msgstr "משתמש בערכת הגופן \"%s\", אשר חסר בה ערכות התוים: %s."
|
#~ msgstr "משתמש בערכת הגופן \"%s\", אשר חסר בה ערכות התוים: %s."
|
||||||
|
|
||||||
#~ msgid ""
|
#~ msgid "Failed to load Xft font pattern \"%s\", falling back to default font."
|
||||||
#~ "Failed to load Xft font pattern \"%s\", falling back to default font."
|
|
||||||
#~ msgstr "נכשל בטעינת דפוס הגופנים של Xft \"%s\", חוזר לגופן ברירת המחדל."
|
#~ msgstr "נכשל בטעינת דפוס הגופנים של Xft \"%s\", חוזר לגופן ברירת המחדל."
|
||||||
|
|
||||||
#~ msgid "Failed to load default Xft font."
|
#~ msgid "Failed to load default Xft font."
|
||||||
|
|
61
po/hr.po
61
po/hr.po
|
@ -5,8 +5,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte 0\n"
|
"Project-Id-Version: vte 0\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-09-02 19:00+0200\n"
|
"PO-Revision-Date: 2020-08-23 14:41+0200\n"
|
||||||
"Last-Translator: gogo <trebelnik2@gmail.com>\n"
|
"Last-Translator: gogo <trebelnik2@gmail.com>\n"
|
||||||
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
|
||||||
"Language: hr\n"
|
"Language: hr\n"
|
||||||
|
@ -14,31 +14,54 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Launchpad-Export-Date: 2016-09-15 11:47+0000\n"
|
"X-Launchpad-Export-Date: 2016-09-15 11:47+0000\n"
|
||||||
"X-Generator: Poedit 2.1.1\n"
|
"X-Generator: Poedit 2.4.1\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Greška prilikom čitanja nadređenog: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Greška (%s) pri pretvorbi podataka za nadređenog, odbacujem."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "UPOZORENJE"
|
msgstr "UPOZORENJE"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS nije omogućen; podaci će biti zapisivani nešifrirano na disk!"
|
msgstr "GNUTLS nije omogućen; podaci će biti zapisivani nešifrirano na disk!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Nemoguća pretvorba znakova iz %s u %s."
|
msgstr "Neuspjelo postavljanje pipe neblokiranja: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "poll greška: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Istek vremena radnje"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Radnja je prekinuta"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Greška prilikom čitanja nadređenog slivnika (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Neuspjela promjena u direktorij “%s”: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Neuspjelo pokretanje podređenog procesa “%s”: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Greška (%s) pri pretvorbi podataka za nadređenog, odbacujem."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Nemoguća pretvorba znakova iz %s u %s."
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid NRC map '%c'."
|
#~ msgid "Attempt to set invalid NRC map '%c'."
|
||||||
#~ msgstr "Pokušaj postavljanja neispravne NRC mape '%c'."
|
#~ msgstr "Pokušaj postavljanja neispravne NRC mape '%c'."
|
||||||
|
|
72
po/hu.po
72
po/hu.po
|
@ -1,48 +1,74 @@
|
||||||
# Hungarian translation for vte.
|
# Hungarian translation for vte.
|
||||||
# Copyright (C) 2003-2016 Free Software Foundation, Inc.
|
# Copyright (C) 2003, 2004, 2005, 2007, 2008, 2010, 2014, 2016, 2020 Free Software Foundation, Inc.
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the vte package.
|
||||||
#
|
#
|
||||||
# Andras Timar <timar at gnome dot hu>, 2003.
|
# Andras Timar <timar at gnome dot hu>, 2003.
|
||||||
# Laszlo Dvornik <dvornik at gnome dot hu>, 2004.
|
# Laszlo Dvornik <dvornik at gnome dot hu>, 2004.
|
||||||
# Gabor Kelemen <kelemeng at gnome dot hu>, 2005, 2007, 2008, 2010.
|
# Gabor Kelemen <kelemeng at gnome dot hu>, 2005, 2007, 2008, 2010.
|
||||||
# Balázs Úr <urbalazs at gmail dot com>, 2014, 2016.
|
# Balázs Úr <ur.balazs at fsf dot hu>, 2014, 2016, 2020.
|
||||||
|
# Balázs Meskó <mesko.balazs at fsf dot hu>, 2020.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte master\n"
|
"Project-Id-Version: vte master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-31 12:51+0200\n"
|
"PO-Revision-Date: 2020-09-07 01:36+0200\n"
|
||||||
"Last-Translator: Meskó Balázs <mesko.balazs@fsf.hu>\n"
|
"Last-Translator: Balázs Meskó <mesko.balazs at fsf dot hu>\n"
|
||||||
"Language-Team: Hungarian <gnome at fsf dot hu>\n"
|
"Language-Team: Hungarian <gnome-hu-list at gnome dot org>\n"
|
||||||
"Language: hu\n"
|
"Language: hu\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.0.8\n"
|
"X-Generator: Lokalize 19.12.3\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Hiba a gyermekből olvasás közben: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Hiba (%s) történt az adatkonverzió közben a gyermek számára, eldobva."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "FIGYELMEZTETÉS"
|
msgstr "FIGYELMEZTETÉS"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"A GnuTLS nincs engedélyezve. Az adatok titkosítatlanul lesznek a lemezre "
|
"A GnuTLS nincs engedélyezve. Az adatok titkosítatlanul lesznek a lemezre "
|
||||||
"írva!"
|
"írva!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Nem lehet átalakítani a karaktereket %s és %s között."
|
msgstr "Nem sikerült nem blokkolóra állítani a csővezetéket: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "lekérdezési hiba: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "A művelet túllépte az időkorlátot"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "A művelet megszakítva"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Nem sikerült olvasni a gyermek csővezetékből (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Nem sikerült átváltani a(z) „%s” könyvtárra: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Nem sikerült végrehajtani a(z) „%s” gyermekfolyamatot: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Hiba (%s) történt az adatkonverzió közben a gyermek számára, eldobva."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Nem lehet átalakítani a karaktereket %s és %s között."
|
||||||
|
|
70
po/id.po
70
po/id.po
|
@ -4,13 +4,13 @@
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# Mohammad DAMT <mdamt@bisnisweb.com>, 2005.
|
# Mohammad DAMT <mdamt@bisnisweb.com>, 2005.
|
||||||
|
# Kukuh Syafaat <kukuhsyafaat@gnome.org>, 2018, 2020.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte.master.id\n"
|
"Project-Id-Version: vte.master.id\n"
|
||||||
"Report-Msgid-Bugs-To: https://bugzilla.gnome.org/enter_bug.cgi?"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"product=vte&keywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"POT-Creation-Date: 2018-05-21 18:38+0000\n"
|
"PO-Revision-Date: 2020-05-31 14:10+0700\n"
|
||||||
"PO-Revision-Date: 2018-05-26 12:56+0700\n"
|
|
||||||
"Last-Translator: Kukuh Syafaat <kukuhsyafaat@gnome.org>\n"
|
"Last-Translator: Kukuh Syafaat <kukuhsyafaat@gnome.org>\n"
|
||||||
"Language-Team: GNOME Indonesian Translation Team <gnome-l10n-id@googlegroups."
|
"Language-Team: GNOME Indonesian Translation Team <gnome-l10n-id@googlegroups."
|
||||||
"com>\n"
|
"com>\n"
|
||||||
|
@ -18,34 +18,56 @@ msgstr ""
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.0.6\n"
|
"X-Generator: Poedit 2.3.1\n"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:71 ../src/iso2022.cc:79 ../src/iso2022.cc:109
|
#: src/vte.cc:7763
|
||||||
#: ../src/vtegtk.cc:3605
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "Tidak dapat mengkonversi karakter dari %s ke %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:3958
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Galat sewaktu membaca dari anak: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4098
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Galat (%s) sewaktu mengkonversi data untuk anak, dibuang."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8150
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "PERINGATAN"
|
msgstr "PERINGATAN"
|
||||||
|
|
||||||
#: ../src/vte.cc:8151
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS tidak difungsikan; data akan ditulis ke disk tanpa enkripsi!"
|
msgstr "GNUTLS tidak difungsikan; data akan ditulis ke disk tanpa enkripsi!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:111
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Gagal mengatur nonblocking pipa: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "galat poll: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Waktu operasi habis"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Operasi dibatalkan"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Gagal membaca dari pipa anak (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Gagal mengubah ke direktori “%s”: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Gagal menjalankan proses anak “%s”: "
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Tidak dapat mengkonversi karakter dari %s ke %s."
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Galat (%s) sewaktu mengkonversi data untuk anak, dibuang."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Salin"
|
#~ msgstr "Salin"
|
||||||
|
|
||||||
|
|
79
po/is.po
79
po/is.po
|
@ -1,47 +1,70 @@
|
||||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
# Samúel Jón Gunnarsson <sammi@techattack.nu>, 2003.
|
# Samúel Jón Gunnarsson <sammi@techattack.nu>, 2003.
|
||||||
# Sveinn í Felli <sv1@fellsnet.is>, 2015, 2017.
|
# Sveinn í Felli <sv1@fellsnet.is>, 2015, 2017, 2022.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"product=vte&keywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2021-08-26 18:15+0000\n"
|
||||||
"POT-Creation-Date: 2016-09-17 18:49+0000\n"
|
"PO-Revision-Date: 2022-01-29 11:42+0000\n"
|
||||||
"PO-Revision-Date: 2017-03-01 11:45+0000\n"
|
|
||||||
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
|
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
|
||||||
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.net>\n"
|
"Language-Team: Icelandic <translation-team-is@lists.sourceforge.org>\n"
|
||||||
"Language: is\n"
|
"Language: is\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Lokalize 1.5\n"
|
"X-Generator: Lokalize 19.12.3\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:73 ../src/iso2022.cc:81 ../src/iso2022.cc:111
|
#: src/vte.cc:7670
|
||||||
#: ../src/vtegtk.cc:3072
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "Ekki tókst að umbreyta stöfum frá %s yfir í %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:4002
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Villa. Ekki tókst að lesa frá afleiðu: %s"
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4141
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Villa (%s) við umbreytingu á gögnum frá afleiðu, hætti við."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:7910
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "AÐVÖRUN"
|
msgstr "AÐVÖRUN"
|
||||||
|
|
||||||
#: ../src/vte.cc:7911
|
#: src/vte.cc:7672
|
||||||
msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS er ekki virkt; gögn verða skrifuð ódulrituð á disk!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
|
msgstr "GnuTLS er ekki virkt; gögn verða skrifuð ódulrituð á disk!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:110
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Gat ekki sett pípu sem ólokandi: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "villa í athugun: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:162
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Aðgerð rann út á tíma"
|
||||||
|
|
||||||
|
#: src/spawn.cc:172
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Hætt var við aðgerð"
|
||||||
|
|
||||||
|
#: src/spawn.cc:190
|
||||||
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Gat ekki lesið úr undirferlispípu (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:620
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Gat ekki farið í möppuna '%s': %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:689
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Gat ekki keyrt undirferlið “%s”: "
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Ekki tókst að umbreyta stöfum frá %s yfir í %s."
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Villa (%s) við umbreytingu á gögnum frá afleiðu, hætti við."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Afrita"
|
#~ msgstr "Afrita"
|
||||||
|
|
63
po/it.po
63
po/it.po
|
@ -1,47 +1,62 @@
|
||||||
# Italian translation of vte.
|
# Italian translation of vte.
|
||||||
# Copyright (C) 2003-2010, 2015, 2016, 2018 THE vte'S COPYRIGHT HOLDER
|
# Copyright (C) 2003-2010, 2015, 2016, 2018, 2020 THE vte'S COPYRIGHT HOLDER
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the vte package.
|
||||||
# Francesco Marletta <francesco.marletta@tiscali.it>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010.
|
# Francesco Marletta <francesco.marletta@tiscali.it>, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010.
|
||||||
# Milo Casagrande <milo@milo.name>, 2015, 2018.
|
# Milo Casagrande <milo@milo.name>, 2015, 2018, 2020.
|
||||||
# Gianvito Cavasoli <gianvito@gmx.it>, 2016.
|
# Gianvito Cavasoli <gianvito@gmx.it>, 2016.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-27 10:02+0200\n"
|
"PO-Revision-Date: 2020-09-03 09:14+0200\n"
|
||||||
"Last-Translator: Milo Casagrande <milo@milo.name>\n"
|
"Last-Translator: Milo Casagrande <milo@milo.name>\n"
|
||||||
"Language-Team: Italiano <gnome-it-list@gnome.org>\n"
|
"Language-Team: Italiano <gnome-it-list@gnome.org>\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.0.6\n"
|
"X-Generator: Poedit 2.4.1\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Errore nella lettura dal processo figlio: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr ""
|
|
||||||
"Errore (%s) nel convertire i dati per il processo figlio, rimarranno "
|
|
||||||
"invariati."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "Attenzione"
|
msgstr "Attenzione"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS non abilitato; i dati saranno scritti sul disco non cifrati."
|
msgstr "GnuTLS non abilitato; i dati saranno scritti sul disco non cifrati."
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Impossibile convertire i caratteri da %s a %s."
|
msgstr "Impostazione del non-blocco per la pipe non riuscita: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "Errore di polling: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Tempo esaurito per l'operazione"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "L'operazione è stata annullata"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Lettura dalla pipe figlia non riuscita (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Cambio della directory in «%s» non riuscito: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Esecuzione del processo figlio «%s» non riuscita: "
|
||||||
|
|
67
po/ja.po
67
po/ja.po
|
@ -1,17 +1,17 @@
|
||||||
# vte ja.po.
|
# vte ja.po.
|
||||||
# Copyright (C) 2003-2019 Free Software Foundation, Inc.
|
# Copyright (C) 2003, 2007, 2010, 2019-2020 Free Software Foundation, Inc.
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the vte package.
|
||||||
# Takeshi AIHANA <takeshi.aihana@gmail.com>, 2003, 2007.
|
# Takeshi AIHANA <takeshi.aihana@gmail.com>, 2003, 2007.
|
||||||
# KAMAGASAKO Masatoshi <emerald@gnome.gr.jp>, 2003.
|
# KAMAGASAKO Masatoshi <emerald@gnome.gr.jp>, 2003.
|
||||||
# Takayuki KUSANO <AE5T-KNS@asahi-net.or.jp>< 2010.
|
# Takayuki KUSANO <AE5T-KNS@asahi-net.or.jp>< 2010.
|
||||||
# sicklylife <translation@sicklylife.jp>, 2019.
|
# sicklylife <translation@sicklylife.jp>, 2019-2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte master\n"
|
"Project-Id-Version: vte master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2019-09-24 11:11+0000\n"
|
"POT-Creation-Date: 2020-06-08 23:16+0000\n"
|
||||||
"PO-Revision-Date: 2019-10-08 21:15+0900\n"
|
"PO-Revision-Date: 2020-06-10 18:45+0900\n"
|
||||||
"Last-Translator: sicklylife <translation@sicklylife.jp>\n"
|
"Last-Translator: sicklylife <translation@sicklylife.jp>\n"
|
||||||
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
|
"Language-Team: Japanese <gnome-translation@gnome.gr.jp>\n"
|
||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
|
@ -19,29 +19,54 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7761
|
||||||
#: src/vte.cc:4185
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "子プロセスの読み込み中にエラー: %s。"
|
|
||||||
|
|
||||||
#: src/vte.cc:4335
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "子プロセスのデータ変換中にエラー (%s) が発生しました。取り消します。"
|
|
||||||
|
|
||||||
#: src/vte.cc:8259
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "警告"
|
msgstr "警告"
|
||||||
|
|
||||||
#: src/vte.cc:8260
|
#: src/vte.cc:7763
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS が有効になっていないため、データを暗号化せずにディスクへ書き込みます!"
|
msgstr ""
|
||||||
|
"GnuTLS が有効になっていないため、データを暗号化せずにディスクへ書き込みます!"
|
||||||
|
|
||||||
#: src/vtegtk.cc:3873
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "%s から %s への文字変換に失敗しました。"
|
msgstr "パイプをノンブロッキングに設定できませんでした: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "poll エラー: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "操作がタイムアウトしました"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "操作がキャンセルされました"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "子プロセスのパイプからの読み取りに失敗しました (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "ディレクトリ“%s”への変更に失敗しました: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "子プロセス“%s”の起動に失敗しました: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "子プロセスのデータ変換中にエラー (%s) が発生しました。取り消します。"
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "%s から %s への文字変換に失敗しました。"
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid NRC map '%c'."
|
#~ msgid "Attempt to set invalid NRC map '%c'."
|
||||||
#~ msgstr "無効な NRC マップ '%c' を設定しようとしています"
|
#~ msgstr "無効な NRC マップ '%c' を設定しようとしています"
|
||||||
|
|
147
po/ka.po
147
po/ka.po
|
@ -1,119 +1,60 @@
|
||||||
# Georgian translation of vte.
|
# SOME DESCRIPTIVE TITLE.
|
||||||
# Copyright (C) 2004 Aiet Kolkhi
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
# Aiet Kolkhi <aiet@qartuli.net>, 2004.
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 0.1\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2006-03-13 00:22-0500\n"
|
"POT-Creation-Date: 2022-06-24 20:12+0000\n"
|
||||||
"PO-Revision-Date: 2006-03-18 03:09+0100\n"
|
"PO-Revision-Date: 2022-06-25 09:21+0200\n"
|
||||||
"Last-Translator: Aiet Kolkhi <aiet@qartuli.net>\n"
|
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>\n"
|
||||||
"Language-Team: Georgian <aiet@qartuli.net>\n"
|
"Language-Team: Georgian <(nothing)>\n"
|
||||||
"Language: ka\n"
|
"Language: ka\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
|
"X-Generator: Poedit 3.1\n"
|
||||||
|
|
||||||
#: src/iso2022.c:792 src/iso2022.c:803 src/iso2022.c:852 src/vte.c:1590
|
#: src/vte.cc:7688
|
||||||
|
msgid "WARNING"
|
||||||
|
msgstr "გაფრთხილება"
|
||||||
|
|
||||||
|
#: src/vte.cc:7690
|
||||||
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
|
msgstr "GnuTLS ჩართული არაა; მონაცემები დისკზე დაშიფვრის გარეშე ჩაიწერება!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:124
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "ვერ დავაკონვერტირე სიტყვები %s-იდან %s-ზე."
|
msgstr "Pipe-ის დაუბლოკავ რეჟიმზე გადართვის პრობლემა: %s"
|
||||||
|
|
||||||
#: src/iso2022.c:1582
|
#: src/spawn.cc:169
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Attempt to set invalid NRC map '%c'."
|
msgid "poll error: %s"
|
||||||
msgstr "თქვენ ცადეთ არასწორი NRC map '%c'-ის დაყენება."
|
msgstr "პოლის შეცდომა: %s"
|
||||||
|
|
||||||
# Application signalled an "identified coding system" we haven't heard of. See ECMA-35 for gory details.
|
#: src/spawn.cc:176
|
||||||
#. Application signalled an "identified coding system" we haven't heard of. See ECMA-35 for gory details.
|
msgid "Operation timed out"
|
||||||
#: src/iso2022.c:1623
|
msgstr "ოპერაციის ვადა გავიდა"
|
||||||
msgid "Unrecognized identified coding system."
|
|
||||||
msgstr "ამოუცნობი იდენტიფიკაციის კოდირების სისტემა (ECMA-35)."
|
|
||||||
|
|
||||||
#: src/iso2022.c:1672 src/iso2022.c:1698
|
#: src/spawn.cc:186
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "ოპერაცია გაუქმდა"
|
||||||
|
|
||||||
|
#: src/spawn.cc:204
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Attempt to set invalid wide NRC map '%c'."
|
msgid "Failed to read from child pipe (%s)"
|
||||||
msgstr "თქვენ ცადეთ არაწორი ფართო wide NRC map-ის, «%c»-ის დაწეება."
|
msgstr "მონაცემთა წაკითხვა ქვეპროცესის არხიდან ვერ მოხერხდა (%s)"
|
||||||
|
|
||||||
#: src/pty.c:329
|
#: src/spawn.cc:639
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error adding `%s' to environment, continuing."
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
msgstr "შეცდომა '%s'-ის environment-ში ჩამატებისას. ვაგრძელებ."
|
msgstr "საქაღალდის ცვლილების შეცდომა \"%s\": %s"
|
||||||
|
|
||||||
# Give the user some clue as to why session logging is not
|
#: src/spawn.cc:708
|
||||||
# * going to work (assuming we can open a pty using some other
|
|
||||||
# * method).
|
|
||||||
#. Give the user some clue as to why session logging is not
|
|
||||||
#. * going to work (assuming we can open a pty using some other
|
|
||||||
#. * method).
|
|
||||||
#: src/pty.c:914
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "can not run %s"
|
msgid "Failed to execute child process “%s”: "
|
||||||
msgstr "ვერ ვიძახებ %s-ს"
|
msgstr "შვილობილი პროცესის გაშვების შეცდომა %s: "
|
||||||
|
|
||||||
#: src/reaper.c:156
|
|
||||||
msgid "Error creating signal pipe."
|
|
||||||
msgstr "ვერ შევქმენი signal pipe."
|
|
||||||
|
|
||||||
#: src/trie.c:412
|
|
||||||
#, c-format
|
|
||||||
msgid "Duplicate (%s/%s)!"
|
|
||||||
msgstr "დუბლირებულია (%s/%s)!"
|
|
||||||
|
|
||||||
#: src/vte.c:1016
|
|
||||||
#, c-format
|
|
||||||
msgid "Error compiling regular expression \"%s\"."
|
|
||||||
msgstr "სამწუხაროდ ვერ დავაკომპილირე regular expression „%s“."
|
|
||||||
|
|
||||||
#: src/vte.c:2472
|
|
||||||
#, c-format
|
|
||||||
msgid "No handler for control sequence `%s' defined."
|
|
||||||
msgstr "control sequence „%s“-სათვის ჰენდლერი არ არის განსაზღვრული."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: src/vte.c:3315
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "ვერ წავიკითხე child «%s»-დან."
|
|
||||||
|
|
||||||
#: src/vte.c:3437 src/vte.c:4331
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "შეცდომა (%s) მონაცემის ქვე-სტრუქტურაში ინტეგრირებისას. გამოვტოვებ."
|
|
||||||
|
|
||||||
#: src/vte.c:6284
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading PTY size, using defaults: %s."
|
|
||||||
msgstr "ვერ ვკითხულობ PTY ზომას, ვიყენებ სტანდარტებს: %s."
|
|
||||||
|
|
||||||
#: src/vte.c:6320
|
|
||||||
#, c-format
|
|
||||||
msgid "Error setting PTY size: %s."
|
|
||||||
msgstr "PTY-ს ზომა ვერ დავაწესე: %s."
|
|
||||||
|
|
||||||
# Aaargh. We're screwed.
|
|
||||||
#. Aaargh. We're screwed.
|
|
||||||
#: src/vte.c:10629
|
|
||||||
msgid "_vte_conv_open() failed setting word characters"
|
|
||||||
msgstr "_vte_conv_open() ჩაიშალა. ვაწესებ word characters-ს"
|
|
||||||
|
|
||||||
# Bail back to normal mode.
|
|
||||||
#. Bail back to normal mode.
|
|
||||||
#: src/vteapp.c:736
|
|
||||||
msgid "Could not open console.\n"
|
|
||||||
msgstr "კონსოლი ვერ იხსნება.\n"
|
|
||||||
|
|
||||||
#: src/vteglyph.c:579
|
|
||||||
#, c-format
|
|
||||||
msgid "Unknown pixel mode %d.\n"
|
|
||||||
msgstr "უცნობი პიქსელის რეჟიმი %d.\n"
|
|
||||||
|
|
||||||
#: src/vtexft.c:714
|
|
||||||
#, c-format
|
|
||||||
msgid "Can not draw character U+%04x.\n"
|
|
||||||
msgstr "ვერ ვაჩვენე ასო U+%04x.\n"
|
|
||||||
|
|
||||||
#~ msgid "Got unexpected (key?) sequence `%s'."
|
|
||||||
#~ msgstr "მოულოდნელი (key?) sequence «%s»."
|
|
||||||
|
|
62
po/kk.po
62
po/kk.po
|
@ -7,39 +7,63 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte master\n"
|
"Project-Id-Version: vte master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-25 22:37+0500\n"
|
"PO-Revision-Date: 2020-09-12 19:05+0500\n"
|
||||||
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
|
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
|
||||||
"Language-Team: Kazakh <kk@li.org>\n"
|
"Language-Team: Kazakh <kk@li.org>\n"
|
||||||
"Language: kk\n"
|
"Language: kk\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.1.1\n"
|
"X-Generator: Poedit 2.4.1\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Ұрпақтан оқу қатесі: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Ұрпақ үшін деректерді түрлендіру қатесі (%s), тасталады."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "ЕСКЕРТУ"
|
msgstr "ЕСКЕРТУ"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS іске қосылмаған; деректер дискке шифрленбеген түрде жазылатын болады!"
|
msgstr "GnuTLS іске қосылмаған; деректер дискке шифрленбеген түрде жазылатын болады!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Таңбаларды %s жинағынан %s жинағына түрлендіру мүмкін емес."
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Әрекетті күту мерзімі аяқталды"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Әрекеттен бас тартылды"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Ұрпақ үшін деректерді түрлендіру қатесі (%s), тасталады."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Таңбаларды %s жинағынан %s жинағына түрлендіру мүмкін емес."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Көшіріп алу"
|
#~ msgstr "Көшіріп алу"
|
||||||
|
|
59
po/ko.po
59
po/ko.po
|
@ -2,14 +2,14 @@
|
||||||
# This file is distributed under the same license as the vte package.
|
# This file is distributed under the same license as the vte package.
|
||||||
#
|
#
|
||||||
# Nam SungHyun <namsh@kldp.org>, 2003
|
# Nam SungHyun <namsh@kldp.org>, 2003
|
||||||
# Changwoo Ryu <cwryu@debian.org>, 2007, 2009, 2010, 2014, 2016, 2018.
|
# Changwoo Ryu <cwryu@debian.org>, 2007, 2009, 2010, 2014, 2016, 2018, 2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-25 16:45+0900\n"
|
"PO-Revision-Date: 2020-08-29 19:54+0900\n"
|
||||||
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
|
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
|
||||||
"Language-Team: GNOME Korea <gnome-kr@googlegroups.com>\n"
|
"Language-Team: GNOME Korea <gnome-kr@googlegroups.com>\n"
|
||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
|
@ -17,27 +17,46 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "하위 프로세스에서 읽기 오류: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr ""
|
|
||||||
"하위 프로세스를 위한 데이터 변환에 오류가 발생했습니다. (%s) 그만둡니다."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "경고"
|
msgstr "경고"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS 사용하지 않음. 데이터를 암호화하지 않은 상태로 디스크에 씁니다"
|
msgstr "GnuTLS 사용하지 않음. 데이터를 암호화하지 않은 상태로 디스크에 씁니다"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "문자를 %s을(를) %s(으)로 변환할 수 없습니다."
|
msgstr "파이프를 넌블럭으로 설정하는데 실패했습니다: %s"
|
||||||
|
|
||||||
|
# system call 오류이므로 그대로
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "poll 오류: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "작업 제한 시간 초과"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "작업이 취소되었습니다"
|
||||||
|
|
||||||
|
# (%s) 오류 설명(strerror)
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "하위 파이프에서 읽기 실패 (%s)"
|
||||||
|
|
||||||
|
# chdir 실패
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "“%s” 디렉터리로 이동 실패: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "“%s” 하위 프로세스 실행 실패: "
|
||||||
|
|
71
po/lt.po
71
po/lt.po
|
@ -4,14 +4,14 @@
|
||||||
# Tomas Kuliavas <tokul@users.sourceforge.net>, 2003.
|
# Tomas Kuliavas <tokul@users.sourceforge.net>, 2003.
|
||||||
# Gintautas Miliauskas <gintas@akl.lt>, 2007.
|
# Gintautas Miliauskas <gintas@akl.lt>, 2007.
|
||||||
# Rimas Kudelis <rq@akl.lt>, 2010, 2014.
|
# Rimas Kudelis <rq@akl.lt>, 2010, 2014.
|
||||||
# Aurimas Černius <aurisc4@gmail.com>, 2016, 2018.
|
# Aurimas Černius <aurisc4@gmail.com>, 2016-2020.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: lt\n"
|
"Project-Id-Version: lt\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-11 18:19+0300\n"
|
"PO-Revision-Date: 2020-07-12 20:42+0300\n"
|
||||||
"Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n"
|
"Last-Translator: Aurimas Černius <aurisc4@gmail.com>\n"
|
||||||
"Language-Team: Lietuvių <gnome-lt@lists.akl.lt>\n"
|
"Language-Team: Lietuvių <gnome-lt@lists.akl.lt>\n"
|
||||||
"Language: lt\n"
|
"Language: lt\n"
|
||||||
|
@ -19,35 +19,58 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
"%100<10 || n%100>=20) ? 1 : 2)\n"
|
||||||
"X-Generator: Gtranslator 2.91.7\n"
|
"X-Generator: Gtranslator 3.36.0\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Įvyko klaida skaitant duomenis iš antrinio proceso: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr ""
|
|
||||||
"Įvyko klaida (%s) keičiant duomenis gautus iš antrinio proceso, nutraukiame "
|
|
||||||
"darbą."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "ĮSPĖJIMAS"
|
msgstr "ĮSPĖJIMAS"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7765
|
||||||
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GNUTLS nėra įjungta; duomenys bus rašomi į diską nešifruojant!"
|
msgstr "GNUTLS nėra įjungta; duomenys bus rašomi į diską nešifruojant!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Nepavyko perversti simbolių iš %s į %s."
|
msgstr "Nepavyko kanalo padaryti neblokuojančiu: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "poll klaida: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Baigėsi veiksmo laikas"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Veiksmas buvo nutrauktas"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Įvyko klaida skaitant iš antrinio kanalo (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Nepavyko pakeisti katalogo į „%s“: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Nepavyko vykdyti antrinio proceso „%s“: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Įvyko klaida (%s) keičiant duomenis gautus iš antrinio proceso, "
|
||||||
|
#~ "nutraukiame darbą."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Nepavyko perversti simbolių iš %s į %s."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Kopijuoti"
|
#~ msgstr "Kopijuoti"
|
||||||
|
|
65
po/lv.po
65
po/lv.po
|
@ -5,13 +5,13 @@
|
||||||
# Artis Trops <hornet@navigator.lv>, 2002.
|
# Artis Trops <hornet@navigator.lv>, 2002.
|
||||||
# Raivis Dejus <orvils@gmail.com>, 2006.
|
# Raivis Dejus <orvils@gmail.com>, 2006.
|
||||||
# Peteris Krisjanis <pecisk@gmail.com>, 2009.
|
# Peteris Krisjanis <pecisk@gmail.com>, 2009.
|
||||||
# Rudolfs <rudolfs.mazurs@gmail.com>, 2011, 2016, 2018.
|
# Rudolfs <rudolfs.mazurs@gmail.com>, 2011, 2016, 2018, 2020.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: lv\n"
|
"Project-Id-Version: lv\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2018-08-31 21:06+0200\n"
|
"PO-Revision-Date: 2020-09-12 16:08+0300\n"
|
||||||
"Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n"
|
"Last-Translator: Rūdolfs Mazurs <rudolfs.mazurs@gmail.com>\n"
|
||||||
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
|
"Language-Team: Latvian <lata-l10n@googlegroups.com>\n"
|
||||||
"Language: lv\n"
|
"Language: lv\n"
|
||||||
|
@ -20,32 +20,55 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :"
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :"
|
||||||
" 2);\n"
|
" 2);\n"
|
||||||
"X-Generator: Lokalize 2.0\n"
|
"X-Generator: Lokalize 19.12.3\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Kļūda lasot no bērna: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Kļūda (%s) konvertējot datus bērnam, pamet."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "BRĪDINĀJUMS"
|
msgstr "BRĪDINĀJUMS"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7765
|
||||||
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "GnuTLS nav ieslēgti; dati diskā tiks ierakstīti nešifrēti!"
|
msgstr "GnuTLS nav ieslēgti; dati diskā tiks ierakstīti nešifrēti!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Neiespējami pārveidot rakstzīmes no %s uz %s."
|
msgstr "Neizdevās iestatīt programmkanālu kā nebloķējošu: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "vaicāšanas kļūda: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Darbībai iestājās noildze"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Darbība tika atcelta"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
#| msgid "Error reading from child: %s."
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Nevarēja nolasīt no bērna programkanāla (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Nevarēja pāriet uz direktoriju “%s” — %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Nevarēja izpildīt bērnprocesu “%s”: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Kļūda (%s) konvertējot datus bērnam, pamet."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Neiespējami pārveidot rakstzīmes no %s uz %s."
|
||||||
|
|
||||||
#~ msgid "Attempt to set invalid NRC map '%c'."
|
#~ msgid "Attempt to set invalid NRC map '%c'."
|
||||||
#~ msgstr "Mēģinājums iestatīt nederīgu NRC karti '%c'."
|
#~ msgstr "Mēģinājums iestatīt nederīgu NRC karti '%c'."
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
# Copyright © 2018, 2019 Iñigo Martínez
|
# Copyright © 2018, 2019 Iñigo Martínez
|
||||||
#
|
#
|
||||||
# This library is free software; you can redistribute it and/or modify it
|
# This library is free software: you can redistribute it and/or modify
|
||||||
# under the terms of the GNU Lesser General Public License as published by
|
# it under the terms of the GNU Lesser General Public License as published
|
||||||
# the Free Software Foundation; either version 3 of the License, or (at your
|
# by the Free Software Foundation, either version 3 of the License, or
|
||||||
# option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
# This library is distributed in the hope that it will be useful, but
|
# This library is distributed in the hope that it will be useful,
|
||||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
# General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
#
|
#
|
||||||
# You should have received a copy of the GNU Lesser General Public License
|
# You should have received a copy of the GNU Lesser General Public License
|
||||||
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
# along with this library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
66
po/nb.po
66
po/nb.po
|
@ -1,13 +1,13 @@
|
||||||
# Norwegian (bokmål) translation of vte.
|
# Norwegian (bokmål) translation of vte.
|
||||||
# Copyright (C) Kjartan Maraas, 2002-2014.
|
# Copyright (C) Kjartan Maraas, 2002-2020.
|
||||||
# Free Software Foundation, 2002.
|
# Free Software Foundation, 2002.
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte 0.46.x\n"
|
"Project-Id-Version: vte 0.62.x\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2016-10-16 12:39+0200\n"
|
"POT-Creation-Date: 2020-09-12 19:27+0000\n"
|
||||||
"PO-Revision-Date: 2016-10-16 12:38+0200\n"
|
"PO-Revision-Date: 2021-01-25 15:05+0100\n"
|
||||||
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
|
||||||
"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
|
"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
|
||||||
"Language: nb\n"
|
"Language: nb\n"
|
||||||
|
@ -15,28 +15,44 @@ msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: ../src/iso2022.cc:73 ../src/iso2022.cc:81 ../src/iso2022.cc:111
|
#: src/vte.cc:7764
|
||||||
#: ../src/vtegtk.cc:3072
|
|
||||||
#, c-format
|
|
||||||
msgid "Unable to convert characters from %s to %s."
|
|
||||||
msgstr "Kan ikke konvertere tegn fra %s til %s."
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.cc:4002
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Feil under lesing fra underprosess: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4141
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Feil (%s) ved konvertering av data for underprosess. Hopper over."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:7910
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "ADVARSEL"
|
msgstr "ADVARSEL"
|
||||||
|
|
||||||
#: ../src/vte.cc:7911
|
#: src/vte.cc:7766
|
||||||
msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"GNUTLS er ikke aktivert; data vil bli skrevet til disk uten kryptering!"
|
"GNUTLS er ikke aktivert; data vil bli skrevet til disk uten kryptering!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:111
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
|
msgstr "Klarte ikke å sette rør til ikke-blokkerende: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:156
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "feil ved henting: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:163
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Operasjonen fikk tidsavbrudd"
|
||||||
|
|
||||||
|
#: src/spawn.cc:173
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Operasjonen ble avbrutt"
|
||||||
|
|
||||||
|
#: src/spawn.cc:191
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Feil under lesing fra underrør (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:621
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Klarte ikke å endre til katalog «%s»: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:690
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Klarte ikke å kjøre underprosess «%s»: "
|
||||||
|
|
157
po/ne.po
157
po/ne.po
|
@ -3,112 +3,109 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte.HEAD.ne\n"
|
"Project-Id-Version: vte.HEAD.ne\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2007-04-25 03:21+0100\n"
|
"POT-Creation-Date: 2021-02-22 17:16+0000\n"
|
||||||
"PO-Revision-Date: 2007-12-20 15:48+0545\n"
|
"PO-Revision-Date: 2021-04-23 22:36+0545\n"
|
||||||
"Last-Translator: Shyam Krishna Bal <balshyam24@yahoo.com>\n"
|
"Last-Translator: Pawan Chitrakar <chautari@gmail.com>\n"
|
||||||
"Language-Team: Nepali <info@mpp.org.np>\n"
|
"Language-Team: Nepali <info@mpp.org.np>\n"
|
||||||
"Language: ne\n"
|
"Language: ne\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: KBabel 1.11.4\n"
|
"X-Generator: Poedit 2.4.2\n"
|
||||||
"Plural-Forms: nplurals=2; plural=n !=1\n"
|
"Plural-Forms: nplurals=2; plural=n !=1;\n"
|
||||||
|
|
||||||
#: ../src/iso2022.c:791 ../src/iso2022.c:799 ../src/iso2022.c:830
|
#: src/vte.cc:7710
|
||||||
#: ../src/vte.c:1797
|
msgid "WARNING"
|
||||||
|
msgstr "चेतावनी"
|
||||||
|
|
||||||
|
#: src/vte.cc:7712
|
||||||
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
|
msgstr "GnuTLS सक्षम पारिएको छैन; गुप्तिकरण नगरिएको डिस्कमा डाटा लेखिनेछ!"
|
||||||
|
|
||||||
|
#: src/spawn.cc:110
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "%s बाट %s मा क्यारेक्टरहरू रूपान्तरण गर्न असक्षम ।"
|
msgstr "पाइप अवरोध बिहिन सेट गर्न असफल भयो: %s"
|
||||||
|
|
||||||
#: ../src/iso2022.c:1539
|
#: src/spawn.cc:155
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Attempt to set invalid NRC map '%c'."
|
msgid "poll error: %s"
|
||||||
msgstr "अवैध एनआरसी मानचित्र '%c' सेट गर्न प्रयास गर्नुहोस् ।"
|
msgstr "सर्वेक्षण त्रुटि: %s"
|
||||||
|
|
||||||
#. Application signalled an "identified coding system" we haven't heard of. See ECMA-35 for gory details.
|
#: src/spawn.cc:162
|
||||||
#: ../src/iso2022.c:1569
|
msgid "Operation timed out"
|
||||||
msgid "Unrecognized identified coding system."
|
msgstr "सञ्चालन समय समाप्त भयो"
|
||||||
msgstr "अपरिचित कोडिङ प्रणाली ।"
|
|
||||||
|
|
||||||
#: ../src/iso2022.c:1628 ../src/iso2022.c:1655
|
#: src/spawn.cc:172
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "सञ्चालन रद्द भएको छ"
|
||||||
|
|
||||||
|
#: src/spawn.cc:190
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Attempt to set invalid wide NRC map '%c'."
|
msgid "Failed to read from child pipe (%s)"
|
||||||
msgstr "अवैध फराकिलो एनआरसी मानचित्र '%c' सेट गर्न प्रयास गर्नुहोस् ।"
|
msgstr "शाखा प्रक्रिया (%s)बाट पढ्न असफल"
|
||||||
|
|
||||||
#. Give the user some clue as to why session logging is not
|
#: src/spawn.cc:620
|
||||||
#. * going to work (assuming we can open a pty using some other
|
|
||||||
#. * method).
|
|
||||||
#: ../src/pty.c:837
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "can not run %s"
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
msgstr "%s चलाउन सकिँदैन"
|
msgstr "निर्देशिका \"%s\" मा परिवर्तन गर्न असफल भयो: %s"
|
||||||
|
|
||||||
#: ../src/reaper.c:136
|
#: src/spawn.cc:689
|
||||||
msgid "Error creating signal pipe."
|
|
||||||
msgstr "साङ्केतिक पाइप सिर्जना गर्दा त्रुटि ।"
|
|
||||||
|
|
||||||
#: ../src/trie.c:414
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Duplicate (%s/%s)!"
|
msgid "Failed to execute child process “%s”: "
|
||||||
msgstr "नक्कली (%s/%s)!"
|
msgstr "शाखा प्रक्रिया \"%s\" कार्यान्वयन गर्न असफल भयो: "
|
||||||
|
|
||||||
#: ../src/vte.c:1187
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
#, c-format
|
#~ msgstr "%s बाट %s मा क्यारेक्टरहरू रूपान्तरण गर्न असक्षम ।"
|
||||||
msgid "Error compiling regular expression \"%s\"."
|
|
||||||
msgstr "नियमित अभिव्यक्ति कम्पाइल गर्दा त्रुटि \"%s\" ।"
|
|
||||||
|
|
||||||
#: ../src/vte.c:2657 ../src/vte.c:2662
|
#~ msgid "Attempt to set invalid NRC map '%c'."
|
||||||
#, c-format
|
#~ msgstr "अवैध एनआरसी मानचित्र '%c' सेट गर्न प्रयास गर्नुहोस् ।"
|
||||||
msgid "No handler for control sequence `%s' defined."
|
|
||||||
msgstr "नियन्त्रण अनुक्रम `%s' का लागि कुनै ह्यान्डलर परिभाषित गरिएको छैन ।"
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#~ msgid "Unrecognized identified coding system."
|
||||||
#: ../src/vte.c:3627
|
#~ msgstr "अपरिचित कोडिङ प्रणाली ।"
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "शाखाबाट पढ्दा त्रुटि: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.c:3743
|
#~ msgid "Attempt to set invalid wide NRC map '%c'."
|
||||||
msgid "Unable to send data to child, invalid charset convertor"
|
#~ msgstr "अवैध फराकिलो एनआरसी मानचित्र '%c' सेट गर्न प्रयास गर्नुहोस् ।"
|
||||||
msgstr "शाखामा डेटा पठाउन असक्षम, अवैध क्यारेक्टर सेट रूपान्तरक"
|
|
||||||
|
|
||||||
#: ../src/vte.c:3754 ../src/vte.c:4631
|
#~ msgid "can not run %s"
|
||||||
#, c-format
|
#~ msgstr "%s चलाउन सकिँदैन"
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "शाखाका लागि डेटा रूपान्तरण गर्दा, छोड्दा त्रुटि (%s) ।"
|
|
||||||
|
|
||||||
#: ../src/vte.c:6866
|
#~ msgid "Error creating signal pipe."
|
||||||
#, c-format
|
#~ msgstr "साङ्केतिक पाइप सिर्जना गर्दा त्रुटि ।"
|
||||||
msgid "Error reading PTY size, using defaults: %s."
|
|
||||||
msgstr "पूर्वनिर्धारित प्रयोग गरेर, पीटीवाई साइज पढ्दा त्रुटि: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.c:6895
|
#~ msgid "Duplicate (%s/%s)!"
|
||||||
#, c-format
|
#~ msgstr "नक्कली (%s/%s)!"
|
||||||
msgid "Error setting PTY size: %s."
|
|
||||||
msgstr "पीटीवाई साइज सेट गर्दा त्रुटि: %s."
|
|
||||||
|
|
||||||
#. Aaargh. We're screwed.
|
#~ msgid "Error compiling regular expression \"%s\"."
|
||||||
#: ../src/vte.c:11348
|
#~ msgstr "नियमित अभिव्यक्ति कम्पाइल गर्दा त्रुटि \"%s\" ।"
|
||||||
msgid "_vte_conv_open() failed setting word characters"
|
|
||||||
msgstr "शब्द क्यारेक्टर सेटिङ गर्दा _vte_conv_open() असफल भयो"
|
|
||||||
|
|
||||||
#: ../src/vteseq.c:3926
|
#~ msgid "No handler for control sequence `%s' defined."
|
||||||
#, c-format
|
#~ msgstr "नियन्त्रण अनुक्रम `%s' का लागि कुनै ह्यान्डलर परिभाषित गरिएको छैन ।"
|
||||||
msgid "Got unexpected (key?) sequence `%s'."
|
|
||||||
msgstr "अनपेक्षित (key?) अनुक्रम `%s' प्राप्त भयो ।"
|
|
||||||
|
|
||||||
#. Bail back to normal mode.
|
#~ msgid "Unable to send data to child, invalid charset convertor"
|
||||||
#: ../src/vteapp.c:774
|
#~ msgstr "शाखामा डेटा पठाउन असक्षम, अवैध क्यारेक्टर सेट रूपान्तरक"
|
||||||
msgid "Could not open console.\n"
|
|
||||||
msgstr "कन्सोल खोल्न सकिएन ।\n"
|
|
||||||
|
|
||||||
#: ../src/vteapp.c:838
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
msgid "Could not parse the geometry spec passed to --geometry"
|
#~ msgstr "शाखाका लागि डेटा रूपान्तरण गर्दा, छोड्दा त्रुटि (%s) ।"
|
||||||
msgstr "ज्यामितिमा पास गरिएको ज्यामिति स्पेक पद वर्णन गर्न सकिएन"
|
|
||||||
|
|
||||||
#: ../src/vteglyph.c:562
|
#~ msgid "Error reading PTY size, using defaults: %s."
|
||||||
#, c-format
|
#~ msgstr "पूर्वनिर्धारित प्रयोग गरेर, पीटीवाई साइज पढ्दा त्रुटि: %s."
|
||||||
msgid "Unknown pixel mode %d.\n"
|
|
||||||
msgstr "अज्ञात पिक्सेल मोड %d ।\n"
|
|
||||||
|
|
||||||
|
#~ msgid "Error setting PTY size: %s."
|
||||||
|
#~ msgstr "पीटीवाई साइज सेट गर्दा त्रुटि: %s."
|
||||||
|
|
||||||
|
#~ msgid "_vte_conv_open() failed setting word characters"
|
||||||
|
#~ msgstr "शब्द क्यारेक्टर सेटिङ गर्दा _vte_conv_open() असफल भयो"
|
||||||
|
|
||||||
|
#~ msgid "Got unexpected (key?) sequence `%s'."
|
||||||
|
#~ msgstr "अनपेक्षित (key?) अनुक्रम `%s' प्राप्त भयो ।"
|
||||||
|
|
||||||
|
#~ msgid "Could not open console.\n"
|
||||||
|
#~ msgstr "कन्सोल खोल्न सकिएन ।\n"
|
||||||
|
|
||||||
|
#~ msgid "Could not parse the geometry spec passed to --geometry"
|
||||||
|
#~ msgstr "ज्यामितिमा पास गरिएको ज्यामिति स्पेक पद वर्णन गर्न सकिएन"
|
||||||
|
|
||||||
|
#~ msgid "Unknown pixel mode %d.\n"
|
||||||
|
#~ msgstr "अज्ञात पिक्सेल मोड %d ।\n"
|
||||||
|
|
65
po/nl.po
65
po/nl.po
|
@ -4,47 +4,70 @@
|
||||||
# Reinout van Schouwen <reinout@cs.vu.nl>, 2002
|
# Reinout van Schouwen <reinout@cs.vu.nl>, 2002
|
||||||
# Tino Meinen <a.t.meinen@chello.nl> 2003
|
# Tino Meinen <a.t.meinen@chello.nl> 2003
|
||||||
# Wouter Bolsterlee <wbolster@gnome.org>, 2007, 2010
|
# Wouter Bolsterlee <wbolster@gnome.org>, 2007, 2010
|
||||||
# Nathan Follens <nthn@unseen.is>, 2015, 2017
|
# Nathan Follens <nthn@unseen.is>, 2015, 2017, 2020
|
||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte\n"
|
"Project-Id-Version: vte\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"PO-Revision-Date: 2019-02-24 11:27+0100\n"
|
"PO-Revision-Date: 2020-08-25 15:23+0200\n"
|
||||||
"Last-Translator: Nathan Follens <nthn@unseen.is>\n"
|
"Last-Translator: Nathan Follens <nthn@unseen.is>\n"
|
||||||
"Language-Team: Dutch <vertaling@nl.linux.org>\n"
|
"Language-Team: Dutch <gnome-nl-list@gnome.org>\n"
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.2.1\n"
|
"X-Generator: Poedit 2.4.1\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7763
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Er is een fout opgetreden bij lezen van kind: %s."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Fout (%s) bij converteren gegevens voor dochter, laat het vallen."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "WAARSCHUWING"
|
msgstr "WAARSCHUWING"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7765
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"GnuTLS niet ingeschakeld, gegevens zullen onversleuteld naar de schijf "
|
"GnuTLS niet ingeschakeld, gegevens zullen onversleuteld naar de schijf "
|
||||||
"worden geschreven!"
|
"worden geschreven!"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:111
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Kan tekens niet converteren van %s naar %s."
|
msgstr "Niet-blokkerend instellen van pijp is mislukt: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "pollfout: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:161
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "Time-out bij bewerking"
|
||||||
|
|
||||||
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "Bewerking geannuleerd"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Lezen van dochterpijplijn (%s) is mislukt"
|
||||||
|
|
||||||
|
#: src/spawn.cc:576
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Wijzigen naar map ‘%s’ is mislukt: %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:645
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "Uitvoeren van dochterproces ‘%s’ is mislukt: "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Fout (%s) bij converteren gegevens voor dochter, laat het vallen."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Kan tekens niet converteren van %s naar %s."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Kopiëren"
|
#~ msgstr "Kopiëren"
|
||||||
|
|
64
po/oc.po
64
po/oc.po
|
@ -8,44 +8,66 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte 0.14.1\n"
|
"Project-Id-Version: vte 0.14.1\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"POT-Creation-Date: 2018-06-20 20:20+0000\n"
|
"POT-Creation-Date: 2021-02-22 17:16+0000\n"
|
||||||
"PO-Revision-Date: 2018-06-22 08:58+0200\n"
|
"PO-Revision-Date: 2021-05-13 16:54+0200\n"
|
||||||
"Last-Translator: Cédric Valmary (totenoc.eu) <cvalmary@yahoo.fr>\n"
|
"Last-Translator: Quentin PAGÈS\n"
|
||||||
"Language-Team: Tot En Òc\n"
|
"Language-Team: Tot En Òc\n"
|
||||||
"Language: oc\n"
|
"Language: oc\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
"X-Generator: Virtaal 0.7.1\n"
|
"X-Generator: Poedit 2.4.3\n"
|
||||||
"X-Project-Style: gnome\n"
|
"X-Project-Style: gnome\n"
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
#: src/vte.cc:7710
|
||||||
#: ../src/vte.cc:3966
|
|
||||||
#, c-format
|
|
||||||
msgid "Error reading from child: %s."
|
|
||||||
msgstr "Error al moment de la lectura del filh : « %s »."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:4122
|
|
||||||
#, c-format
|
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
|
||||||
msgstr "Error (%s) al moment de la conversion de donadas pel filh, abandon."
|
|
||||||
|
|
||||||
#: ../src/vte.cc:8179
|
|
||||||
msgid "WARNING"
|
msgid "WARNING"
|
||||||
msgstr "AVERTIMENT"
|
msgstr "AVERTIMENT"
|
||||||
|
|
||||||
#: ../src/vte.cc:8180
|
#: src/vte.cc:7712
|
||||||
#| msgid "GNUTLS not enabled; data will be written to disk unencrypted!"
|
|
||||||
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"GnuTLS es pas activat ; las donadas seràn escritas sul disc sens èsser "
|
"GnuTLS es pas activat ; las donadas seràn escritas sul disc sens èsser "
|
||||||
"chifradas !"
|
"chifradas !"
|
||||||
|
|
||||||
#: ../src/vtegtk.cc:3618
|
#: src/spawn.cc:110
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "Impossible de convertir los caractèrs %s en %s."
|
msgstr "Fracàs de la mesa en plaça d'una pipa non blocanta : %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:155
|
||||||
|
#, c-format
|
||||||
|
msgid "poll error: %s"
|
||||||
|
msgstr "error de poll : %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:162
|
||||||
|
msgid "Operation timed out"
|
||||||
|
msgstr "L’operacion a expirat"
|
||||||
|
|
||||||
|
#: src/spawn.cc:172
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "L'operacion es estada anullada"
|
||||||
|
|
||||||
|
#: src/spawn.cc:190
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "Error al moment de la lectura del filh (%s)"
|
||||||
|
|
||||||
|
#: src/spawn.cc:620
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
|
msgstr "Fracàs del cambiament de repertòri « %s » : %s"
|
||||||
|
|
||||||
|
#: src/spawn.cc:689
|
||||||
|
#, c-format
|
||||||
|
msgid "Failed to execute child process “%s”: "
|
||||||
|
msgstr "L'execucion del processus filh a fracassat « %s » : "
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "Error (%s) al moment de la conversion de donadas pel filh, abandon."
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "Impossible de convertir los caractèrs %s en %s."
|
||||||
|
|
||||||
#~ msgid "Copy"
|
#~ msgid "Copy"
|
||||||
#~ msgstr "Copiar"
|
#~ msgstr "Copiar"
|
||||||
|
|
149
po/pa.po
149
po/pa.po
|
@ -2,96 +2,109 @@
|
||||||
# This file is distributed under the same license as the PACKAGE package.
|
# This file is distributed under the same license as the PACKAGE package.
|
||||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
|
||||||
#
|
#
|
||||||
# A S Alam <aalam@users.sf.net>, 2004, 2005, 2006, 2007, 2009, 2010, 2014.
|
# A S Alam <aalam@users.sf.net>, 2004, 2005, 2006, 2007, 2009, 2010, 2014, 2021.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: vte.HEAD\n"
|
"Project-Id-Version: vte.HEAD\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/vte/issues\n"
|
||||||
"product=vte&keywords=I18N+L10N&component=general\n"
|
"POT-Creation-Date: 2020-05-27 19:17+0000\n"
|
||||||
"POT-Creation-Date: 2014-09-21 11:44+0000\n"
|
"PO-Revision-Date: 2021-02-06 10:13-0800\n"
|
||||||
"PO-Revision-Date: 2014-09-21 08:40-0500\n"
|
"Last-Translator: A S Alam <aalam@satluj.org>\n"
|
||||||
"Last-Translator: A S Alam <aalam@users.sf.net>\n"
|
"Language-Team: Punjabi <punjabi-users@lists.sf.net>\n"
|
||||||
"Language-Team: Punjabi/Panjabi <punjabi-users@lists.sf.net>\n"
|
|
||||||
"Language: pa\n"
|
"Language: pa\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Lokalize 1.5\n"
|
"X-Generator: Lokalize 20.08.1\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: ../src/app.ui.h:1
|
#: src/vte.cc:7763
|
||||||
msgid "Copy"
|
msgid "WARNING"
|
||||||
msgstr "ਕਾਪੀ ਕਰੋ"
|
msgstr "ਸਾਵਾਧਾਨ"
|
||||||
|
|
||||||
#: ../src/app.ui.h:2
|
#: src/vte.cc:7765
|
||||||
msgid "Paste"
|
msgid "GnuTLS not enabled; data will be written to disk unencrypted!"
|
||||||
msgstr "ਚੇਪੋ"
|
msgstr ""
|
||||||
|
"GnuTLS ਸਮਰੱਥ ਨਹੀਂ ਹੈ; ਡਿਸਕ ਉੱਤੇ ਲਿਖਿਆ ਡਾਟਾ ਬਿਨਾਂ-ਇੰਕ੍ਰਿਪਸ਼ਨ ਦੇ ਲਿਖਿਆ ਜਾਵੇਗਾ!"
|
||||||
|
|
||||||
#: ../src/app.ui.h:3
|
#: src/spawn.cc:111
|
||||||
msgid "Reset (use Ctrl to reset and clear)"
|
|
||||||
msgstr "ਮੁੜ-ਸੈੱਟ (ਮੁੜ-ਸੈੱਟ ਤੇ ਸਾਫ਼ ਕਰਨ ਲਈ Ctrl ਵਰਤੋਂ)"
|
|
||||||
|
|
||||||
#: ../src/app.ui.h:4
|
|
||||||
msgid "Reset"
|
|
||||||
msgstr "ਮੁੜ-ਸੈੱਟ"
|
|
||||||
|
|
||||||
#: ../src/app.ui.h:5
|
|
||||||
msgid "Toggle input enabled setting"
|
|
||||||
msgstr "ਇੰਪੁੱਟ ਯੋਗ ਕੀਤੀ ਸੈਟਿੰਗ ਬਦਲੋ"
|
|
||||||
|
|
||||||
#: ../src/app.ui.h:6
|
|
||||||
msgid "Input"
|
|
||||||
msgstr "ਇੰਪੁੱਟ"
|
|
||||||
|
|
||||||
#: ../src/iso2022.c:791 ../src/iso2022.c:799 ../src/iso2022.c:830
|
|
||||||
#: ../src/vte.c:1998
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Unable to convert characters from %s to %s."
|
msgid "Failed to set pipe nonblocking: %s"
|
||||||
msgstr "ਇਸ ਸੰਕੇਤ %s ਤੋਂ %s ਤਬਦੀਲ ਕਰਨ ਤੋਂ ਅਸਮਰੱਥ ਹੈ।"
|
msgstr "ਪਾਈਪ ਬਿਨ-ਬਲਾਕਿੰਗ ਸੈੱਟ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ: %s"
|
||||||
|
|
||||||
#: ../src/iso2022.c:1496
|
#: src/spawn.cc:155
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Attempt to set invalid NRC map '%c'."
|
msgid "poll error: %s"
|
||||||
msgstr "ਗਲਤ NRC ਮੈਪ'%c' ਸੈੱਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਹੈ।"
|
msgstr "ਪੋਲ ਗਲਤੀ: %s"
|
||||||
|
|
||||||
#. Application signalled an "identified coding system" we haven't heard of. See ECMA-35 for gory details.
|
#: src/spawn.cc:161
|
||||||
#: ../src/iso2022.c:1526
|
msgid "Operation timed out"
|
||||||
msgid "Unrecognized identified coding system."
|
msgstr "ਕਾਰਵਾਈ ਲਈ ਸਮਾਂ ਸਮਾਪਤ"
|
||||||
msgstr "ਅਣਜਾਣ ਸ਼ਨਾਖਤੀ ਕੋਡਿੰਗ ਸਿਸਟਮ ਹੈ।"
|
|
||||||
|
|
||||||
#: ../src/iso2022.c:1585 ../src/iso2022.c:1612
|
#: src/spawn.cc:171
|
||||||
|
msgid "Operation was cancelled"
|
||||||
|
msgstr "ਕਾਰਵਾਈ ਰੱਦ ਕੀਤੀ ਗਈ ਸੀ"
|
||||||
|
|
||||||
|
#: src/spawn.cc:189
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Attempt to set invalid wide NRC map '%c'."
|
#| msgid "Error reading from child: %s."
|
||||||
msgstr "ਗਲਤ ਚੌਡ਼ਾ NRC ਮੈਪ'%c' ਸੈੱਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਹੈ।"
|
msgid "Failed to read from child pipe (%s)"
|
||||||
|
msgstr "ਚਲਾਈਡ ਪਾਈਪ (%s) ਤੋਂ ਪੜ੍ਹਨ ਦੌਰਾਨ ਫੇਲ੍ਹ ਹੈ"
|
||||||
|
|
||||||
#. Bail back to normal mode.
|
#: src/spawn.cc:576
|
||||||
#: ../src/vteapp.c:1027
|
|
||||||
msgid "Could not open console.\n"
|
|
||||||
msgstr "ਕੰਨਸੋਲ ਖੋਲ੍ਹਿਆ ਨਹੀ ਜਾ ਸਕਿਆ।\n"
|
|
||||||
|
|
||||||
#: ../src/vteapp.c:1137
|
|
||||||
msgid "Could not parse the geometry spec passed to --geometry"
|
|
||||||
msgstr "--geometry ਨੂੰ ਦਿੱਤੀ ਜੁਮੈਟਰੀ ਗਿਣਤੀ ਨੂੰ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ"
|
|
||||||
|
|
||||||
#. Translators: %s is replaced with error message returned by strerror().
|
|
||||||
#: ../src/vte.c:4164
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error reading from child: %s."
|
msgid "Failed to change to directory “%s”: %s"
|
||||||
msgstr "ਚਲਾਈਡ ਤੋਂ ਪੜ੍ਹਨ ਦੌਰਾਨ ਗਲਤੀ: %s।"
|
msgstr "ਡਾਇਰੈਕਟਰੀ “%s” ਬਦਲਣ ਲਈ ਅਸਫ਼ਲ ਹੈ: %s"
|
||||||
|
|
||||||
#: ../src/vte.c:4300
|
#: src/spawn.cc:645
|
||||||
msgid "Unable to send data to child, invalid charset convertor"
|
|
||||||
msgstr "ਚਾਈਲਡ ਨੂੰ ਡਾਟਾ ਭੇਜਣ ਲਈ ਅਸਮਰੱਥ, ਅਢੁੱਕਵਾਂ ਅੱਖਰ-ਸੈੱਟ ਕੰਨਵਰਟਰ"
|
|
||||||
|
|
||||||
#: ../src/vte.c:4311 ../src/vte.c:5315
|
|
||||||
#, c-format
|
#, c-format
|
||||||
msgid "Error (%s) converting data for child, dropping."
|
msgid "Failed to execute child process “%s”: "
|
||||||
msgstr "ਗਲਤੀ (%s) ਚਲਾਈਡ ਲਈ ਡਾਟਾ ਬਦਲਣ ਦੌਰਾਨ, ਛੱਡਿਆ ਗਿਆ।"
|
msgstr "“%s” ਚਲਾਈਡ ਪਰੋਸੈਸ ਚਲਾਉਣ ਲਈ ਅਸਫ਼ਲ ਹੈ: "
|
||||||
|
|
||||||
#: ../src/vte.c:7628
|
#~ msgid "Copy"
|
||||||
#, c-format
|
#~ msgstr "ਕਾਪੀ ਕਰੋ"
|
||||||
msgid "Error reading PTY size, using defaults: %s\n"
|
|
||||||
msgstr "PTY ਅਕਾਰ ਪਡ਼੍ਹਨ ਵਿੱਚ ਗਲਤੀ, ਡਿਫਾਲਟ ਦੀ ਵਰਤੋਂ: %s\n"
|
#~ msgid "Paste"
|
||||||
|
#~ msgstr "ਚੇਪੋ"
|
||||||
|
|
||||||
|
#~ msgid "Reset (use Ctrl to reset and clear)"
|
||||||
|
#~ msgstr "ਮੁੜ-ਸੈੱਟ (ਮੁੜ-ਸੈੱਟ ਤੇ ਸਾਫ਼ ਕਰਨ ਲਈ Ctrl ਵਰਤੋਂ)"
|
||||||
|
|
||||||
|
#~ msgid "Reset"
|
||||||
|
#~ msgstr "ਮੁੜ-ਸੈੱਟ"
|
||||||
|
|
||||||
|
#~ msgid "Toggle input enabled setting"
|
||||||
|
#~ msgstr "ਇੰਪੁੱਟ ਯੋਗ ਕੀਤੀ ਸੈਟਿੰਗ ਬਦਲੋ"
|
||||||
|
|
||||||
|
#~ msgid "Input"
|
||||||
|
#~ msgstr "ਇੰਪੁੱਟ"
|
||||||
|
|
||||||
|
#~ msgid "Unable to convert characters from %s to %s."
|
||||||
|
#~ msgstr "ਇਸ ਸੰਕੇਤ %s ਤੋਂ %s ਤਬਦੀਲ ਕਰਨ ਤੋਂ ਅਸਮਰੱਥ ਹੈ।"
|
||||||
|
|
||||||
|
#~ msgid "Attempt to set invalid NRC map '%c'."
|
||||||
|
#~ msgstr "ਗਲਤ NRC ਮੈਪ'%c' ਸੈੱਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਹੈ।"
|
||||||
|
|
||||||
|
#~ msgid "Unrecognized identified coding system."
|
||||||
|
#~ msgstr "ਅਣਜਾਣ ਸ਼ਨਾਖਤੀ ਕੋਡਿੰਗ ਸਿਸਟਮ ਹੈ।"
|
||||||
|
|
||||||
|
#~ msgid "Attempt to set invalid wide NRC map '%c'."
|
||||||
|
#~ msgstr "ਗਲਤ ਚੌਡ਼ਾ NRC ਮੈਪ'%c' ਸੈੱਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਹੈ।"
|
||||||
|
|
||||||
|
#~ msgid "Could not open console.\n"
|
||||||
|
#~ msgstr "ਕੰਨਸੋਲ ਖੋਲ੍ਹਿਆ ਨਹੀ ਜਾ ਸਕਿਆ।\n"
|
||||||
|
|
||||||
|
#~ msgid "Could not parse the geometry spec passed to --geometry"
|
||||||
|
#~ msgstr "--geometry ਨੂੰ ਦਿੱਤੀ ਜੁਮੈਟਰੀ ਗਿਣਤੀ ਨੂੰ ਪਾਰਸ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ"
|
||||||
|
|
||||||
|
#~ msgid "Unable to send data to child, invalid charset convertor"
|
||||||
|
#~ msgstr "ਚਾਈਲਡ ਨੂੰ ਡਾਟਾ ਭੇਜਣ ਲਈ ਅਸਮਰੱਥ, ਅਢੁੱਕਵਾਂ ਅੱਖਰ-ਸੈੱਟ ਕੰਨਵਰਟਰ"
|
||||||
|
|
||||||
|
#~ msgid "Error (%s) converting data for child, dropping."
|
||||||
|
#~ msgstr "ਗਲਤੀ (%s) ਚਲਾਈਡ ਲਈ ਡਾਟਾ ਬਦਲਣ ਦੌਰਾਨ, ਛੱਡਿਆ ਗਿਆ।"
|
||||||
|
|
||||||
|
#~ msgid "Error reading PTY size, using defaults: %s\n"
|
||||||
|
#~ msgstr "PTY ਅਕਾਰ ਪਡ਼੍ਹਨ ਵਿੱਚ ਗਲਤੀ, ਡਿਫਾਲਟ ਦੀ ਵਰਤੋਂ: %s\n"
|
||||||
|
|
||||||
#~ msgid "can not run %s"
|
#~ msgid "can not run %s"
|
||||||
#~ msgstr "%s ਚਲਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
|
#~ msgstr "%s ਚਲਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue