Showing preview only (376K chars total). Download the full file or copy to clipboard to get everything.
Repository: liferooter/textpieces
Branch: main
Commit: 6a6c41ecb566
Files: 119
Total size: 346.4 KB
Directory structure:
gitextract_lymngp0k/
├── .github/
│ └── workflows/
│ ├── ci.yml
│ └── test.yml
├── .gitignore
├── CONTRIBUTING.md
├── LICENSE
├── LICENSES/
│ ├── CC0-1.0.txt
│ └── GPL-3.0-or-later.txt
├── README.md
├── build-aux/
│ ├── flatpak/
│ │ └── com.github.liferooter.textpieces.yaml
│ └── meson/
│ └── postinstall.py
├── ci/
│ ├── generate-tools-po.sh
│ └── update-po.sh
├── data/
│ ├── com.github.liferooter.textpieces.appdata.xml.in
│ ├── com.github.liferooter.textpieces.desktop.in
│ ├── com.github.liferooter.textpieces.gschema.xml
│ ├── icons/
│ │ ├── com.github.liferooter.textpieces-symbolic.svg.license
│ │ ├── com.github.liferooter.textpieces.Source.svg.license
│ │ └── com.github.liferooter.textpieces.svg.license
│ ├── meson.build
│ ├── tools.json
│ └── tools.json.license
├── icon.png.license
├── meson.build
├── po/
│ ├── LINGUAS
│ ├── POTFILES
│ ├── es.po
│ ├── meson.build
│ ├── nl.po
│ ├── pt_BR.po
│ ├── textpieces.pot
│ ├── textpieces.pot.license
│ ├── tools.pot
│ └── tools.pot.license
├── resources/
│ ├── icons/
│ │ └── scalable/
│ │ └── status/
│ │ ├── applications-utilities-symbolic.svg.license
│ │ ├── fingerprint-symbolic.svg.license
│ │ ├── funnel-symbolic.svg.license
│ │ ├── lock-symbolic.svg.license
│ │ ├── preferences-symbolic.svg.license
│ │ ├── rss-symbolic.svg.license
│ │ └── unlock-symbolic.svg.license
│ ├── meson.build
│ ├── style-dark.css
│ ├── style.css
│ ├── textpieces.gresource.xml
│ └── ui/
│ ├── CustomToolPage.blp
│ ├── Editor.blp
│ ├── NewToolPage.blp
│ ├── Preferences.blp
│ ├── Search.blp
│ ├── SearchBar.blp
│ ├── SearchEntry.blp
│ ├── ShortcutsWindow.blp
│ ├── ToolSettings.blp
│ └── Window.blp
├── screenshots/
│ ├── screenshot.png.license
│ ├── slide1.png.license
│ ├── slide2.png.license
│ ├── slide3.png.license
│ ├── slide4.png.license
│ └── slide5.png.license
├── scripts/
│ ├── base64-decode
│ ├── base64-encode
│ ├── count-lines
│ ├── count-symbols
│ ├── count-words
│ ├── escape-html
│ ├── escape-string
│ ├── escape-url
│ ├── filter-regex
│ ├── filter-substring
│ ├── format-json
│ ├── format-xml
│ ├── json-to-yaml
│ ├── md5
│ ├── minify-json
│ ├── remove-regex
│ ├── remove-substring
│ ├── remove-trailing
│ ├── replace-regex
│ ├── replace-substring
│ ├── reverse-filter-regex
│ ├── reverse-filter-substring
│ ├── reverse-lines
│ ├── reverse-string
│ ├── rss-from-opml
│ ├── sha1
│ ├── sha256
│ ├── sha384
│ ├── sha512
│ ├── sort-lines
│ ├── sort-lines-reverse
│ ├── template
│ ├── template.license
│ ├── trim
│ ├── unescape-html
│ ├── unescape-string
│ ├── unescape-url
│ └── yaml-to-json
├── src/
│ ├── Application.vala
│ ├── meson.build
│ ├── tools/
│ │ ├── Tool.vala
│ │ └── ToolsController.vala
│ ├── utils/
│ │ ├── Recoloring.vala
│ │ └── Utils.vala
│ ├── vapi/
│ │ └── config.vapi
│ └── widgets/
│ ├── Editor.vala
│ ├── Search.vala
│ ├── SearchBar.vala
│ ├── SearchEntry.vala
│ ├── Window.vala
│ └── preferences/
│ ├── Preferences.vala
│ ├── ToolSettings.vala
│ └── pages/
│ ├── CustomToolPage.vala
│ └── NewToolPage.vala
├── subprojects/
│ ├── blueprint-compiler.wrap
│ ├── gtksourceview.wrap
│ ├── json-glib.wrap
│ └── libadwaita.wrap
└── textpieces.doap
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/workflows/ci.yml
================================================
# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
on:
push:
branches: [main]
name: CI
jobs:
update-po:
name: Update translations
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-42
options: --privileged
steps:
- name: Checkout source code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Configure Git
run: |
git --version
git config --global --add safe.directory $(pwd)
git config user.name 'github-actions'
git config user.email 'github-actions@github.com'
- name: Add Flathub repository
run: flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
- name: Install dependencies
run: >
xvfb-run -a -s "-screen 0 1024x768x24"
flatpak-builder --keep-build-dirs --user --install-deps-from=flathub --disable-rofiles-fuse flatpak_app --stop-at=textpieces build-aux/flatpak/com.github.liferooter.textpieces.yaml
- name: Update translations
run: >
xvfb-run -a -s "-screen 0 1024x768x24"
flatpak-builder --run flatpak_app build-aux/flatpak/com.github.liferooter.textpieces.yaml
ci/update-po.sh
- name: Push changes to GitHub
run: git push
================================================
FILE: .github/workflows/test.yml
================================================
# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
on:
push:
branches: [main]
pull_request:
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1.1.1
flatpak:
name: Flatpak
runs-on: ubuntu-20.04
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-nightly
options: --privileged
steps:
- uses: actions/checkout@v2
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4
with:
bundle: textpieces.flatpak
manifest-path: build-aux/flatpak/com.github.liferooter.textpieces.yaml
run-tests: true
cache-key: flatpak-builder-${{ github.sha }}
================================================
FILE: .gitignore
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: CC0-1.0
**/*~
**/#*#
.flatpak-builder
_build
.vscode
/subprojects/*/
/.flatpak
/.fenv
================================================
FILE: CONTRIBUTING.md
================================================
<!--
SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-License-Identifier: CC0-1.0
-->
# Contributing tips
This file describes some non-obvious points of this project which needs to be known by contributors.
## Technology stack
Text Pieces is written in [Vala](https://wiki.gnome.org/Projects/Vala) using [GTK 4](https://gtk.org) and [libadwaita](https://gitlab.gnome.org/GNOME/libadwaita/) as GUI libraries. Text Pieces is designed to comply [GNOME HIG](https://developer.gnome.org/hig) guidelines. It also uses [gtksourceview](https://gitlab.gnome.org/GNOME/gtksourceview) for text editor widget and [json-glib](https://gitlab.gnome.org/GNOME/json-glib/) for JSON serialization and deserialization.
Text Pieces' built-in tools uses [Python](https://www.python.org/) and [Bash](https://www.gnu.org/software/bash/) as interpreters, [pyyaml](https://pyyaml.org/) for JSON to YAML and YAML to JSON conversion and [gettext](https://www.gnu.org/software/gettext/) for translations.
It also uses [shebang](https://wikipedia.org/en/Shebang_(Unix)) for script executing, so it can work only on UNIX-like OSes.
## Build system
Text Pieces uses [Meson](https://mesonbuild.com) as build system and [Flatpak](https://flatpak.org) as packaging system. Flatpak manifest is stored at `build-aux/flatpak/com.github.liferooter.textpieces.yaml`.
## Conventions
Text Pieces uses some conventions:
- [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) for commit messages
- [Elementary Codestyle](https://docs.elementary.io/develop/writing-apps/code-style) for Vala code
- [PEP 8](https://peps.python.org/pep-0008/) for Python-based tools
- [REUSE](https://reuse.software/) licensing conventions
- [GNU GPL 3.0 or later](https://www.gnu.org/licenses/gpl-3.0.en.html) license for code, [CC0](https://creativecommons.org/share-your-work/public-domain/cc0) licencse for metadata and anything else
- [Semantic Versioning](https://semver.org/)
- [GNOME HIG](https://developer.gnome.org/hig) for user interface
## Post-commit checks
There are some things you should do after making changes in project code:
### Update translation templates
If you've changed any translatable strings in application, you should update translations:
```bash
./po/update-po.sh
```
If you've changed translatable strings in `data/tools.json`, please add your changes manually to `po/tools.pot`.
### Licensing checks
As Text Pieces is REUSE-compilant project, you have to copyright headers in any file you create or edit. The simpliest way to do it is:
```bash
pip install --user reuse
reuse addheader --copyright 'YOUR NAME <YOUR@EMAIL.ADDRESS>' --year CURRENT_YEAR LICENSE_NAME FILE_NAME
```
## Copyright policy
Text Pieces is open-source project and will stay open-source forever. To make this rule non-breakable, you should add your copyright to any file you change or create. This makes license changing impossible without permission from everyone who ever contributes to the project.
## Creating translation
Text Pieces uses `gettext` for localization. Translations can be suggested by PR. The only important point is `po/tools.pot`. It's manually-written translate template for tools metadata (`gettext` can't extract translatable strings from JSON files). Translators have to insert its translation right after `po/textpieces.pot` translation. Also translator should place their copyright note in translation file.
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Text Pieces -- Swiss knife of text transformations
Copyright (C) 2021, Gleb Smirnov
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 <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
Text Pieces, Copyright (C) 2021, Gleb Smirnov
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
================================================
FILE: LICENSES/CC0-1.0.txt
================================================
Creative Commons Legal Code
CC0 1.0 Universal
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
HEREUNDER.
Statement of Purpose
The laws of most jurisdictions throughout the world automatically confer
exclusive Copyright and Related Rights (defined below) upon the creator
and subsequent owner(s) (each and all, an "owner") of an original work of
authorship and/or a database (each, a "Work").
Certain owners wish to permanently relinquish those rights to a Work for
the purpose of contributing to a commons of creative, cultural and
scientific works ("Commons") that the public can reliably and without fear
of later claims of infringement build upon, modify, incorporate in other
works, reuse and redistribute as freely as possible in any form whatsoever
and for any purposes, including without limitation commercial purposes.
These owners may contribute to the Commons to promote the ideal of a free
culture and the further production of creative, cultural and scientific
works, or to gain reputation or greater distribution for their Work in
part through the use and efforts of others.
For these and/or other purposes and motivations, and without any
expectation of additional consideration or compensation, the person
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
is an owner of Copyright and Related Rights in the Work, voluntarily
elects to apply CC0 to the Work and publicly distribute the Work under its
terms, with knowledge of his or her Copyright and Related Rights in the
Work and the meaning and intended legal effect of CC0 on those rights.
1. Copyright and Related Rights. A Work made available under CC0 may be
protected by copyright and related or neighboring rights ("Copyright and
Related Rights"). Copyright and Related Rights include, but are not
limited to, the following:
i. the right to reproduce, adapt, distribute, perform, display,
communicate, and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or
likeness depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work,
subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data
in a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the
European Parliament and of the Council of 11 March 1996 on the legal
protection of databases, and under any national implementation
thereof, including any amended or successor version of such
directive); and
vii. other similar, equivalent or corresponding rights throughout the
world based on applicable law or treaty, and any national
implementations thereof.
2. Waiver. To the greatest extent permitted by, but not in contravention
of, applicable law, Affirmer hereby overtly, fully, permanently,
irrevocably and unconditionally waives, abandons, and surrenders all of
Affirmer's Copyright and Related Rights and associated claims and causes
of action, whether now known or unknown (including existing as well as
future claims and causes of action), in the Work (i) in all territories
worldwide, (ii) for the maximum duration provided by applicable law or
treaty (including future time extensions), (iii) in any current or future
medium and for any number of copies, and (iv) for any purpose whatsoever,
including without limitation commercial, advertising or promotional
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
member of the public at large and to the detriment of Affirmer's heirs and
successors, fully intending that such Waiver shall not be subject to
revocation, rescission, cancellation, termination, or any other legal or
equitable action to disrupt the quiet enjoyment of the Work by the public
as contemplated by Affirmer's express Statement of Purpose.
3. Public License Fallback. Should any part of the Waiver for any reason
be judged legally invalid or ineffective under applicable law, then the
Waiver shall be preserved to the maximum extent permitted taking into
account Affirmer's express Statement of Purpose. In addition, to the
extent the Waiver is so judged Affirmer hereby grants to each affected
person a royalty-free, non transferable, non sublicensable, non exclusive,
irrevocable and unconditional license to exercise Affirmer's Copyright and
Related Rights in the Work (i) in all territories worldwide, (ii) for the
maximum duration provided by applicable law or treaty (including future
time extensions), (iii) in any current or future medium and for any number
of copies, and (iv) for any purpose whatsoever, including without
limitation commercial, advertising or promotional purposes (the
"License"). The License shall be deemed effective as of the date CC0 was
applied by Affirmer to the Work. Should any part of the License for any
reason be judged legally invalid or ineffective under applicable law, such
partial invalidity or ineffectiveness shall not invalidate the remainder
of the License, and in such case Affirmer hereby affirms that he or she
will not (i) exercise any of his or her remaining Copyright and Related
Rights in the Work or (ii) assert any associated claims and causes of
action with respect to the Work, in either case contrary to Affirmer's
express Statement of Purpose.
4. Limitations and Disclaimers.
a. No trademark or patent rights held by Affirmer are waived, abandoned,
surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or
warranties of any kind concerning the Work, express, implied,
statutory or otherwise, including without limitation warranties of
title, merchantability, fitness for a particular purpose, non
infringement, or the absence of latent or other defects, accuracy, or
the present or absence of errors, whether or not discoverable, all to
the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons
that may apply to the Work or any use thereof, including without
limitation any person's Copyright and Related Rights in the Work.
Further, Affirmer disclaims responsibility for obtaining any necessary
consents, permissions or other rights required for any use of the
Work.
d. Affirmer understands and acknowledges that Creative Commons is not a
party to this document and has no duty or obligation with respect to
this CC0 or use of the Work.
================================================
FILE: LICENSES/GPL-3.0-or-later.txt
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for software and other kinds of works.
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and modification follow.
TERMS AND CONDITIONS
0. Definitions.
“This License” refers to version 3 of the GNU General Public License.
“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.
To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.
A “covered work” means either the unmodified Program or a work based on the Program.
To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
1. Source Code.
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.
A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
The Corresponding Source for a work in source code form is that same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
7. Additional Terms.
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
11. Patents.
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.
A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU 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 <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.
You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.
================================================
FILE: README.md
================================================
<!--
SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-License-Identifier: CC0-1.0
-->
<h1 align="center">
<img
src="data/icons/com.github.liferooter.textpieces.svg" alt="Text Pieces"
width="128"
height="128"/><br/>
Text Pieces
</h1>
<p align="center"><strong>
Swiss knife of text processing
</strong></p>
<br/>
<p align="center">
<a href="https://stopthemingmy.app">
<img width="200" src="https://stopthemingmy.app/badge.svg"/>
</a>
</p>
<p align="center">
<a href="https://flathub.org/apps/details/com.github.liferooter.textpieces">
<img width="200" src="https://flathub.org/assets/badges/flathub-badge-en.png" alt="Download on Flathub">
</a>
</p>
<p align="center">
<img alt="Screenshot" src="screenshots/screenshot.png"/>
</p>
# State of the project
The project was rewritten from scratch and moved to [a new repository](https://gitlab.com/liferooter/textpieces). This repository will never receive updates.
# What is it?
Text Pieces is a small tool for quick text transformations such as checksums, encoding, decoding and so on. Written in Vala for GNOME desktop in the hope to be useful.
# Features
- Base64 encoding and decoding
- SHA-1, SHA-2 and MD5 checksums
- Prettify and minify JSON
- Convert JSON to YAML and vice versa
- Count lines, symbols and words
- Escape and unescape string, URL and HTML
- Remove leading and trailing whitespaces
- Sort and reverse sort lines
- Reverse lines and whole text
- Extendable with third-party scripts and custom tools
# Installation
## From Flathub
> **Recommended**
<a href="https://flathub.org/apps/details/com.github.liferooter.textpieces">Click here</a> to install app from Flathub.
## Build from source
### Via GNOME Builder
Text Pieces can be built with GNOME Builder >= 3.38. Clone this repo and click run button.
### Via Flatpak
Text Pieces has a Flatpak manifest to enable it to be <a href="https://docs.flatpak.org/en/latest/building-introduction.html">built with Flatpak</a>.
### Via Meson
Text Pieces can be built directly via Meson:
```bash
git clone https://github.com/liferooter/textpieces
cd textpieces
meson _build
cd _build
meson compile
```
Next, it can be installed by `meson install`.
# Dependencies
If you use GNOME Builder or Flatpak, dependencies will be installed automatically. If you use pure Meson, dependencies will be:
- vala >= 0.52
- gtk >= 4.2
- gtksourceview >= 5.2
- gio >= 2.50
- gee >= 0.8
- json-glib >= 1.6
- libadwaita >= 1.0
- python >= 3.8
- pyyaml >= 5.4
================================================
FILE: build-aux/flatpak/com.github.liferooter.textpieces.yaml
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
app-id: com.github.liferooter.textpieces
command: textpieces
runtime: org.gnome.Platform
runtime-version: '43'
sdk: org.gnome.Sdk
sdk-extensions:
- org.freedesktop.Sdk.Extension.vala
finish-args:
- --share=ipc
- --socket=fallback-x11
- --socket=wayland
- --device=dri
- --filesystem=~/.local/share/textpieces:create
- --talk-name=org.freedesktop.Flatpak
cleanup:
- /include
- /lib/pkgconfig
- /man
- /share/doc
- /share/pkgconfig
- /share/vala
- '*blueprint*'
- '*.la'
- '*.a'
modules:
- name: textpieces
builddir: true
buildsystem: meson
sources:
- type: dir
path: ../..
modules:
- name: blueprint
buildsystem: meson
sources:
- type: git
url: https://gitlab.gnome.org/jwestman/blueprint-compiler
branch: main
- name: python3-pyyaml
buildsystem: simple
build-commands:
- pip3 install --verbose --exists-action=i --no-index --find-links="file://${PWD}"
--prefix=${FLATPAK_DEST} "pyyaml" --no-build-isolation
sources:
- type: file
url: https://files.pythonhosted.org/packages/36/2b/61d51a2c4f25ef062ae3f74576b01638bebad5e045f747ff12643df63844/PyYAML-6.0.tar.gz
sha256: 68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2
- name: libportal
buildsystem: meson
config-opts:
- -Dbackend-gtk3=disabled
- -Dbackend-gtk4=enabled
- -Dbackend-qt5=disabled
- -Ddocs=false
- -Dtests=false
sources:
- type: git
url: https://github.com/flatpak/libportal
tag: main
================================================
FILE: build-aux/meson/postinstall.py
================================================
#!/usr/bin/env python3
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
from os import environ, path
from subprocess import call
prefix = environ.get('MESON_INSTALL_PREFIX', '/usr/local')
datadir = path.join(prefix, 'share')
destdir = environ.get('DESTDIR', '')
# Package managers set this so we don't need to run
if not destdir:
print('Updating icon cache...')
call(['gtk-update-icon-cache', '-qtf',
path.join(datadir, 'icons', 'hicolor')])
print('Updating desktop database...')
call(['update-desktop-database', '-q',
path.join(datadir, 'applications')])
print('Compiling GSettings schemas...')
call(['glib-compile-schemas',
path.join(datadir, 'glib-2.0', 'schemas')])
================================================
FILE: ci/generate-tools-po.sh
================================================
#!/usr/bin/env bash
# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
cd "$(git rev-parse --show-toplevel)" || exit 1
jq '.tools[] | .name, .description, .args[]?' data/tools.json |
sort |
uniq |
sed 's/"\(.*\)"/\n#: data\/tools.json\nmsgctxt "tools"\nmsgid "\1"\nmsgstr ""/g' > po/tools.pot
================================================
FILE: ci/update-po.sh
================================================
#!/usr/bin/env bash
# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
cd "$(git rev-parse --show-toplevel)" || exit 1
echo "Changes in files related to translations:"
changes="$(git diff @~ @ -- ci/update-po.sh po/POTFILES $(grep '^\w' po/POTFILES) || exit 1)"
echo "$changes"
if [[ -z "$changes" ]]; then
echo "No changes"
exit
fi
ci/generate-tools-po.sh &&
meson _build &&
ninja -C _build textpieces-pot &&
cat po/tools.pot >>po/textpieces.pot &&
for file in $(ls po/*.po); do
msgmerge --backup=off -U $file po/textpieces.pot -D .
done || exit 1
git add po &&
git commit -m 'chore(po): update translations' ||
exit 1
================================================
FILE: data/com.github.liferooter.textpieces.appdata.xml.in
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-License-Identifier: CC0-1.0
-->
<component type="desktop-application">
<id>com.github.liferooter.textpieces.desktop</id>
<name>Text Pieces</name>
<summary>Transform text without using random websites</summary>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-or-later</project_license>
<description>
<p>
Powerful scratchpad with ability to perform a lot of text transformations, such as:
</p>
<ul>
<li>Calculate hashes</li>
<li>Encode text</li>
<li>Decode text</li>
<li>Remove trailing spaces and lines</li>
<li>Count lines, symbols and words</li>
<li>Format JSON and XML</li>
<li>Escape and unescape strings</li>
<li>Convert JSON to YAML and vice versa</li>
<li>Filter lines</li>
<li>Replace substrings and regular expressions</li>
<li>And so on.</li>
</ul>
<p>The application is extendable with your own script-based actions.</p>
</description>
<launchable type="desktop-id">@app-id@.desktop</launchable>
<provides>
<binary>textpieces</binary>
</provides>
<developer id="com.github.liferooter">
<name>Gleb Smirnov</name>
</developer>
<url type="homepage">https://github.com/liferooter/textpieces</url>
<url type="bugtracker">https://github.com/liferooter/textpieces/issues</url>
<supports>
<control>pointing</control>
<control>touch</control>
</supports>
<recommends>
<control>keyboard</control>
</recommends>
<requires>
<display_length compare="ge">360</display_length>
<internet>offline-only</internet>
</requires>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/liferooter/textpieces/6b766fbb9956175db454c3266ab3d8c2bfa57b07/screenshots/slide1.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/liferooter/textpieces/6b766fbb9956175db454c3266ab3d8c2bfa57b07/screenshots/slide2.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/liferooter/textpieces/6b766fbb9956175db454c3266ab3d8c2bfa57b07/screenshots/slide3.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/liferooter/textpieces/6b766fbb9956175db454c3266ab3d8c2bfa57b07/screenshots/slide4.png</image>
</screenshot>
<screenshot>
<image>https://raw.githubusercontent.com/liferooter/textpieces/6b766fbb9956175db454c3266ab3d8c2bfa57b07/screenshots/slide5.png</image>
</screenshot>
</screenshots>
<content_rating type="oars-1.1" />
<releases>
<release version="3.4.1" date="2022-12-21">
<description>
<p>Bug fixes:</p>
<ul>
<li>Script files can be correctly opened using an editor of your choice</li>
<li>Newly created script names are generated from tool name</li>
</ul>
</description>
</release>
<release version="3.4.0" date="2022-12-17">
<description>
<p>New features:</p>
<ul>
<li>Text Pieces now can open files</li>
</ul>
<p>Bug fixes:</p>
<ul>
<li>Some translation issues are fixed</li>
<li>Some tools are fixed and optimized</li>
<li>Shortcuts window is updated and fixed</li>
</ul>
</description>
</release>
<release version="3.3.1" date="2022-11-01">
<description>
<p>Bug fixes:</p>
<ul>
<li>Tool arguments now work as expected</li>
<li>Translate some untranslated strings</li>
</ul>
</description>
</release>
<release version="3.3.0" date="2022-10-24">
<description>
<p>New features and improvements:</p>
<ul>
<li>Add tool for extracting RSS URLs from OPML files</li>
<li>Use more verbose error reporting for Base64 decode tool</li>
<li>Focus editor on startup</li>
<li>Save selected tool between sessions</li>
<li>Minor UI improvements</li>
</ul>
</description>
</release>
<release version="3.2.0" date="2022-09-21">
<description>
<p>New features and improvements:</p>
<ul>
<li>Add hotkey to open search in replace mode</li>
</ul>
</description>
</release>
<release version="3.1.1" date="2022-09-21">
<description>
<p>New features and improvements:</p>
<ul>
<li>Add some keywords to the application for system search</li>
</ul>
</description>
</release>
<release version="3.1.0" date="2022-08-04">
<description>
<p>New features and improvement:</p>
<ul>
<li>Add style schemes</li>
<li>Add search and replace feature to editor</li>
<li>Fix some bugs</li>
</ul>
</description>
</release>
<release version="3.0.2" date="2021-12-16">
<description>Bug fix</description>
</release>
<release version="3.0.1" date="2021-12-16">
<description>
<p>New features and improvements:</p>
<ul>
<li>Refresh UI</li>
<li>Fix a lot of bugs</li>
<li>Add powerful settings</li>
<li>Add arguments support for custom tools</li>
<li>Add translation support</li>
<li>Improve search</li>
</ul>
</description>
</release>
<release version="2.3.2" date="2021-09-30">
Fix theme switcher
</release>
<release version="2.3.1" date="2021-09-30">
Add theme switcher for system which don't support color schemes
</release>
<release version="2.2.1" date="2021-09-29">
<description>
<p>New features and improvements:</p>
<ul>
<li>Minor UI changes</li>
<li>Add XML formatter</li>
</ul>
</description>
</release>
<release version="2.1.2" date="2021-09-23">
<description>Some bugfixes and improvements</description>
</release>
<release version="2.1.1" date="2021-09-08">
<description>Bring back tools with arguments</description>
</release>
<release version="2.0.1" date="2021-08-18">
<description>
<p>New features and improvements:</p>
<ul>
<li>Redesign the application</li>
<li>Add custom tools support</li>
<li>Improve search</li>
<li>Add ability to text load from file and save to file</li>
</ul>
</description>
</release>
<release version="1.3.0" date="2021-04-25">
<description>
<p>New features and improvements:</p>
<ul>
<li>Exit by Ctrl+Q</li>
<li>Monospace argument entry</li>
<li>Update new runtime</li>
</ul>
</description>
</release>
<release version="1.2.0" date="2021-04-03">
<description>
<p>New features and improvements:</p>
<ul>
<li>Sort tools</li>
<li>Filter tools</li>
<li>Minify C-like code</li>
</ul>
</description>
</release>
<release version="1.1.0" date="2021-04-01">
<description>
<p>New features and improvements:</p>
<ul>
<li>Add more tools</li>
<li>Make tools popover more powerful</li>
<li>Redesign icon</li>
<li>General improvements</li>
</ul>
</description>
</release>
<release version="1.0.2" date="2021-03-13">
<description>Add tools for replacement and removing</description>
</release>
<release version="1.0.0" date="2021-03-10">
<description>Application release</description>
</release>
</releases>
</component>
================================================
FILE: data/com.github.liferooter.textpieces.desktop.in
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Desktop Entry]
Name=Text Pieces
Icon=com.github.liferooter.textpieces
Exec=textpieces %U
MimeType=text/plain;
Terminal=false
Type=Application
Categories=Utility;TextTools;GTK;GNOME;
StartupNotify=true
Actions=new-window;
# Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
Keywords=GNOME;GTK;Text;Base64;JSON;YAML;Count;SHA1;SHA256;SHA384;SHA512;MD5;Checksum;Escape;Encode;HTML;URL;Prettify;Filter;Reverse;Trim;
[Desktop Action new-window]
Name=New Window
Exec=textpieces
================================================
FILE: data/com.github.liferooter.textpieces.gschema.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-License-Identifier: GPL-3.0-or-later
-->
<schemalist gettext-domain="textpieces">
<schema id="com.github.liferooter.textpieces" path="/com/github/liferooter/textpieces/">
<key name="style-scheme" type="s">
<default>'Adwaita-dark'</default>
<summary>Style scheme</summary>
<description>Which style scheme to use for application interface and editor.</description>
</key>
<key name="font-name" type="s">
<default>'Monospace'</default>
<summary>Font name</summary>
<description>Name of font used in editor</description>
</key>
<key name="wrap-lines" type="b">
<default>true</default>
<summary>Wrap lines</summary>
<description>Whether to wrap long lines</description>
</key>
<key name="tabs-to-spaces" type="b">
<default>false</default>
<summary>Tabs to spaces</summary>
<description>Whether to insert spaces instead of tab</description>
</key>
<key name="spaces-in-tab" type="i">
<default>4</default>
<summary>Spaces in tab</summary>
<description>Tab width in spaces</description>
</key>
<key name="window-width" type="i">
<default>800</default>
<summary>Window width</summary>
<description>Saved width of application window</description>
</key>
<key name="window-height" type="i">
<default>500</default>
<summary>Window height</summary>
<description>Saved height of the window</description>
</key>
<key name="is-maximized" type="b">
<default>false</default>
<summary>Is maximized</summary>
<description>Whether the application window is maximized</description>
</key>
<key name="selected-tool" type="s">
<default>''</default>
<summary>Selected tool</summary>
<description>Used to restore tool choice on restart. Its value must be a name of tool's script.</description>
</key>
</schema>
</schemalist>
================================================
FILE: data/icons/com.github.liferooter.textpieces-symbolic.svg.license
================================================
SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-License-Identifier: CC0-1.0
================================================
FILE: data/icons/com.github.liferooter.textpieces.Source.svg.license
================================================
SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-License-Identifier: CC0-1.0
================================================
FILE: data/icons/com.github.liferooter.textpieces.svg.license
================================================
SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-License-Identifier: CC0-1.0
================================================
FILE: data/meson.build
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
desktop_file = i18n.merge_file(
input: 'com.github.liferooter.textpieces.desktop.in',
output: 'com.github.liferooter.textpieces.desktop',
type: 'desktop',
po_dir: '../po',
install: true,
install_dir: join_paths(get_option('datadir'), 'applications')
)
desktop_utils = find_program('desktop-file-validate', required: false)
if desktop_utils.found()
test('Validate desktop file', desktop_utils,
args: [desktop_file]
)
endif
appstream_file = i18n.merge_file(
input: 'com.github.liferooter.textpieces.appdata.xml.in',
output: 'com.github.liferooter.textpieces.appdata.xml',
po_dir: '../po',
install: true,
install_dir: join_paths(get_option('datadir'), 'appdata')
)
appstreamcli = find_program('appstreamcli', required: false)
if appstreamcli.found()
test('Validate appstream file', appstreamcli,
args: ['validate', appstream_file]
)
endif
compile_schemas = find_program('glib-compile-schemas', required: false)
if compile_schemas.found()
test('Validate schema file', compile_schemas,
args: ['--strict', '--dry-run', meson.current_source_dir()]
)
endif
install_data('com.github.liferooter.textpieces.gschema.xml',
install_dir: join_paths(get_option('datadir'), 'glib-2.0/schemas')
)
# Icons
install_data(
join_paths('icons', 'com.github.liferooter.textpieces.svg'),
install_dir: join_paths (get_option('datadir'), 'icons', 'hicolor', 'scalable', 'apps')
)
install_data(
join_paths('icons', 'com.github.liferooter.textpieces-symbolic.svg'),
install_dir: join_paths (get_option('datadir'), 'icons', 'hicolor', 'symbolic', 'apps')
)
# Tools' JSON
install_data (
'tools.json',
install_dir: pkgdata_dir
)
================================================
FILE: data/tools.json
================================================
{
"is_system": true,
"tools": [
{
"name": "SHA1 Checksum",
"description": "Compute SHA1 hash sum",
"icon": "fingerprint-symbolic",
"script": "sha1"
},
{
"name": "SHA256 Checksum",
"description": "Compute SHA256 hash sum",
"icon": "fingerprint-symbolic",
"script": "sha256"
},
{
"name": "SHA384 Checksum",
"description": "Compute SHA384 hash sum",
"icon": "fingerprint-symbolic",
"script": "sha384"
},
{
"name": "SHA512 Checksum",
"description": "Compute SHA512 hash sum",
"icon": "fingerprint-symbolic",
"script": "sha512"
},
{
"name": "MD5 Checksum",
"description": "Compute MD5 hash sum",
"icon": "fingerprint-symbolic",
"script": "md5"
},
{
"name": "Base64 Encode",
"description": "Encode text to Base64",
"icon": "lock-symbolic",
"script": "base64-encode"
},
{
"name": "Base64 Decode",
"description": "Decode text from Base64",
"icon": "unlock-symbolic",
"script": "base64-decode"
},
{
"name": "Remove Trailing",
"description": "Remove trailing whitespaces and newlines",
"icon": "edit-cut-symbolic",
"script": "remove-trailing"
},
{
"name": "Trim Lines",
"description": "Remove leading and trailing whitespaces and newlines",
"icon": "edit-cut-symbolic",
"script": "trim"
},
{
"name": "OPML to RSS links",
"description": "Extract RSS links from OPML outline",
"icon": "rss-symbolic",
"script": "rss-from-opml"
},
{
"name": "Count Symbols",
"description": "Count how many symbols are in text",
"icon": "view-list-ordered-symbolic",
"script": "count-symbols"
},
{
"name": "Count Lines",
"description": "Count how many lines are in text",
"icon": "view-list-ordered-symbolic",
"script": "count-lines"
},
{
"name": "Count Words",
"description": "Count how many words are in text",
"icon": "view-list-ordered-symbolic",
"script": "count-words"
},
{
"name": "Prettify JSON",
"description": "Parse JSON and prettify it",
"icon": "format-justify-left-symbolic",
"script": "format-json"
},
{
"name": "Minify JSON",
"description": "Parse JSON and minify it",
"icon": "format-justify-fill-symbolic",
"script": "minify-json"
},
{
"name": "Escape String",
"description": "Replace special characters with escape sequences",
"icon": "security-high-symbolic",
"script": "escape-string"
},
{
"name": "Escape HTML",
"description": "Replace special characters with HTML-safe sequences",
"icon": "security-high-symbolic",
"script": "escape-html"
},
{
"name": "Escape URL",
"description": "Replace special characters with URL-safe sequences",
"icon": "security-high-symbolic",
"script": "escape-url"
},
{
"name": "Unescape String",
"description": "Replace escape sequences with characters",
"icon": "security-low-symbolic",
"script": "unescape-string"
},
{
"name": "Unescape HTML",
"description": "Replace HTML sequences with characters",
"icon": "security-low-symbolic",
"script": "unescape-html"
},
{
"name": "Unescape URL",
"description": "Replace URL sequences with characters",
"icon": "security-low-symbolic",
"script": "unescape-url"
},
{
"name": "Convert JSON to YAML",
"description": "Parse JSON and convert it to YAML document",
"icon": "network-transmit-symbolic",
"script": "json-to-yaml"
},
{
"name": "Convert YAML to JSON",
"description": "Parse YAML document and convert it to JSON",
"icon": "network-transmit-symbolic",
"script": "yaml-to-json"
},
{
"name": "Reverse Lines",
"description": "Reoder lines in reverse order",
"icon": "object-flip-vertical-symbolic",
"script": "reverse-lines"
},
{
"name": "Reverse Text",
"description": "Reorder characters in reverse order",
"icon": "object-flip-horizontal-symbolic",
"script": "reverse-string"
},
{
"name": "Sort Lines",
"description": "Sort lines in text in alphabetical order",
"icon": "view-sort-ascending-symbolic",
"script": "sort-lines"
},
{
"name": "Reverse Sort Lines",
"description": "Sort lines in text in reverse alphabetical order",
"icon": "view-sort-descending-symbolic",
"script": "sort-lines-reverse"
},
{
"name": "Filter Lines by Regex",
"description": "Remove all lines which don't match given regular expression",
"icon": "funnel-symbolic",
"script": "filter-regex",
"args": [
"Regex"
]
},
{
"name": "Filter Lines by Substring",
"description": "Remove all lines which don't contain given substring",
"icon": "funnel-symbolic",
"script": "filter-substring",
"args": [
"Substring"
]
},
{
"name": "Reverse Filter Lines by Regex",
"description": "Remove all lines which match given regular expression",
"icon": "funnel-symbolic",
"script": "reverse-filter-regex",
"args": [
"Regex"
]
},
{
"name": "Reverse Filter Lines by Substring",
"description": "Remove all lines which contain given substring",
"icon": "funnel-symbolic",
"script": "reverse-filter-substring",
"args": [
"Substring"
]
},
{
"name": "Remove Regex",
"description": "Remove all matches of regular expression",
"icon": "edit-cut-symbolic",
"script": "remove-regex",
"args": [
"Regex"
]
},
{
"name": "Remove Substring",
"description": "Remove all occurrences of given substring in text",
"icon": "edit-cut-symbolic",
"script": "remove-substring",
"args": [
"Substring"
]
},
{
"name": "Replace Substring",
"description": "Replace all occurrences of given substring in text with other string",
"icon": "edit-find-replace-symbolic",
"script": "replace-substring",
"args": [
"Find",
"Replace With"
]
},
{
"name": "Replace Regex",
"description": "Replace all given regex matches in text with given string",
"icon": "edit-find-replace-symbolic",
"script": "replace-regex",
"args": [
"Find (regex)",
"Replace With"
]
},
{
"name": "Prettify XML",
"description": "Parse XML and prettify it",
"icon": "format-justify-left-symbolic",
"script": "format-xml"
}
]
}
================================================
FILE: data/tools.json.license
================================================
SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-FileCopyrightText: 2022 Adrián Bíro
SPDX-License-Identifier: GPL-3.0-or-later
================================================
FILE: icon.png.license
================================================
SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
SPDX-License-Identifier: CC0-1.0
================================================
FILE: meson.build
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
project('textpieces', 'vala',
version: '3.4.1',
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2',
],
)
# Get package data directory (usually /usr/share/textpieces)
pkgdata_dir = get_option('prefix') / get_option('datadir') / meson.project_name()
textpieces_sources = []
cc = meson.get_compiler('c')
valac = meson.get_compiler('vala')
vapi_dir = join_paths (meson.project_source_root(), 'src', 'vapi')
add_project_arguments(
[
'--target-glib=2.50',
'--enable-experimental',
'--vapidir', vapi_dir,
],
language: 'vala'
)
# Dependencies {
libadwaita_dep = dependency('libadwaita-1', version: '>= 1.0.0-alpha.2', required: false)
if not libadwaita_dep.found()
libadwaita = subproject(
'libadwaita',
default_options: [
'examples=false',
'package_subdir=@0@'.format(meson.project_name()),
'tests=false'
]
)
libadwaita_dep = declare_dependency(
dependencies: [
libadwaita.get_variable('libadwaita_dep'),
libadwaita.get_variable('libadwaita_vapi')
]
)
endif
gtksourceview_dep = dependency('gtksourceview-5', version: '>= 5.3.0', required: false)
if not gtksourceview_dep.found()
gtksourceview = subproject(
'gtksourceview',
default_options: [
'package_subdir=@0@'.format(meson.project_name()),
'tests=false'
]
)
gtksourceview_dep = declare_dependency(
dependencies: [
gtksourceview.get_variable('gtksource_dep'),
gtksourceview.get_variable('gtksource_vapi')
]
)
endif
json_glib_dep = dependency('json-glib-1.0', version: '>= 1.6.0', required: false)
if not json_glib_dep.found()
json_glib = subproject(
'json-glib',
default_options: [
'package_subdir=@0@'.format(meson.project_name()),
'tests=false',
'gtk_doc=disabled',
'introspection=enabled'
]
)
json_glib_dep = declare_dependency(
dependencies: [
json_glib.get_variable('json_glib_dep'),
json_glib.get_variable('json_glib_gir')
]
)
endif
libm_dep = cc.find_library('m')
textpieces_deps = [
dependency('gio-2.0', version: '>= 2.50'),
dependency('gio-unix-2.0', version: '>= 2.50'),
dependency('gtk4', version: '>= 4.2'),
dependency('gee-0.8', version: '>= 0.8'),
dependency('libportal', version: '>= 0.6'),
dependency('libportal-gtk4', version: '>= 0.6'),
json_glib_dep,
gtksourceview_dep,
libadwaita_dep,
libm_dep,
valac.find_library('config', dirs: vapi_dir),
]
# }
i18n = import('i18n')
gnome = import('gnome')
subdir('data')
subdir('resources')
subdir('src')
subdir('po')
install_subdir('scripts', install_dir: pkgdata_dir)
gnome.post_install(
glib_compile_schemas: true,
gtk_update_icon_cache: true,
update_desktop_database: true
)
================================================
FILE: po/LINGUAS
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: CC0-1.0
es
nl
pt_BR
================================================
FILE: po/POTFILES
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: CC0-1.0
data/com.github.liferooter.textpieces.desktop.in
data/com.github.liferooter.textpieces.appdata.xml.in
data/com.github.liferooter.textpieces.gschema.xml
src/widgets/Editor.vala
src/widgets/Window.vala
src/widgets/SearchEntry.vala
src/widgets/preferences/Preferences.vala
src/widgets/preferences/ToolSettings.vala
src/widgets/preferences/pages/NewToolPage.vala
resources/ui/CustomToolPage.blp
resources/ui/Search.blp
resources/ui/Editor.blp
resources/ui/NewToolPage.blp
resources/ui/Preferences.blp
resources/ui/SearchBar.blp
resources/ui/SearchEntry.blp
resources/ui/ShortcutsWindow.blp
resources/ui/ToolSettings.blp
resources/ui/Window.blp
================================================
FILE: po/es.po
================================================
# SPDX-FileCopyrightText: 2022 Óscar Fernández Díaz <oscfdezdz@tuta.io>
#
# SPDX-License-Identifier: CC0-1.0
msgid ""
msgstr ""
"Project-Id-Version: textpieces\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-21 08:25+0000\n"
"PO-Revision-Date: 2022-01-24 14:00+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
#: data/com.github.liferooter.textpieces.desktop.in:7
#: data/com.github.liferooter.textpieces.appdata.xml.in:9
#: src/widgets/Window.vala:241 resources/ui/Window.blp:9
msgid "Text Pieces"
msgstr "Text Pieces"
#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
#: data/com.github.liferooter.textpieces.desktop.in:18
msgid ""
"GNOME;GTK;Text;Base64;JSON;YAML;Count;SHA1;SHA256;SHA384;SHA512;MD5;Checksum;"
"Escape;Encode;HTML;URL;Prettify;Filter;Reverse;Trim;"
msgstr ""
#: data/com.github.liferooter.textpieces.desktop.in:21
msgid "New Window"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:10
#: src/widgets/Window.vala:242
msgid "Transform text without using random websites"
msgstr "Transformar el texto sin usar sitios web aleatorios"
#: data/com.github.liferooter.textpieces.appdata.xml.in:14
msgid "Do a lot of text transformations, such as:"
msgstr "Hacer un montón de transformaciones de texto, tales como:"
#: data/com.github.liferooter.textpieces.appdata.xml.in:16
msgid "Calculate hashes"
msgstr "Calcular los hashes"
#: data/com.github.liferooter.textpieces.appdata.xml.in:17
msgid "Encode text"
msgstr "Codificar texto"
#: data/com.github.liferooter.textpieces.appdata.xml.in:18
msgid "Decode text"
msgstr "Decodificar texto"
#: data/com.github.liferooter.textpieces.appdata.xml.in:19
msgid "Remove trailing spaces and lines"
msgstr "Eliminar los espacios y líneas finales"
#: data/com.github.liferooter.textpieces.appdata.xml.in:20
msgid "Count lines, symbols and words"
msgstr "Contar líneas, símbolos y palabras"
#: data/com.github.liferooter.textpieces.appdata.xml.in:21
msgid "Format JSON and XML"
msgstr "Formato JSON y XML"
#: data/com.github.liferooter.textpieces.appdata.xml.in:22
msgid "Escape and unescape strings"
msgstr "Cadenas de escape y desescape"
#: data/com.github.liferooter.textpieces.appdata.xml.in:23
msgid "Convert JSON to YAML and vice versa"
msgstr "Convertir JSON a YAML y viceversa"
#: data/com.github.liferooter.textpieces.appdata.xml.in:24
msgid "Filter lines"
msgstr "Filtrar líneas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:25
msgid "Replace substrings and regular expressions"
msgstr "Reemplazar subcadenas y expresiones regulares"
#: data/com.github.liferooter.textpieces.appdata.xml.in:27
msgid "...and so on."
msgstr "...y más."
#: data/com.github.liferooter.textpieces.appdata.xml.in:32
#: src/widgets/Window.vala:252
msgid "Gleb Smirnov"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:64
#: data/com.github.liferooter.textpieces.appdata.xml.in:77
#: data/com.github.liferooter.textpieces.appdata.xml.in:87
msgid "Bug fixes:"
msgstr "Corrección de errores"
#: data/com.github.liferooter.textpieces.appdata.xml.in:66
msgid "Script files can be correctly opened using an editor of your choice"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:67
msgid "Newly created script names are generated from tool name"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:73
#, fuzzy
msgid "New features:"
msgstr "Algunas correcciones de errores y mejoras"
#: data/com.github.liferooter.textpieces.appdata.xml.in:75
msgid "Text Pieces now can open files"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:79
msgid "Some translation issues are fixed"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:80
msgid "Some tools are fixed and optimized"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:81
msgid "Shortcuts window is updated and fixed"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:89
msgid "Tool arguments now work as expected"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:90
msgid "Translate some untranslated strings"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:96
#: data/com.github.liferooter.textpieces.appdata.xml.in:108
#: data/com.github.liferooter.textpieces.appdata.xml.in:116
#: data/com.github.liferooter.textpieces.appdata.xml.in:137
#: data/com.github.liferooter.textpieces.appdata.xml.in:156
#: data/com.github.liferooter.textpieces.appdata.xml.in:171
#: data/com.github.liferooter.textpieces.appdata.xml.in:182
#: data/com.github.liferooter.textpieces.appdata.xml.in:192
#: data/com.github.liferooter.textpieces.appdata.xml.in:202
msgid "New features and improvements:"
msgstr "Algunas correcciones de errores y mejoras"
#: data/com.github.liferooter.textpieces.appdata.xml.in:98
msgid "Add tool for extracting RSS URLs from OPML files"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:99
msgid "Use more verbose error reporting for Base64 decode tool"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:100
msgid "Focus editor on startup"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:101
msgid "Save selected tool between sessions"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:102
msgid "Minor UI improvements"
msgstr "Mejoras generales"
#: data/com.github.liferooter.textpieces.appdata.xml.in:110
msgid "Add hotkey to open search in replace mode"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:118
msgid "Add some keywords to the application for system search"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:124
msgid "New features and improvement:"
msgstr "Algunas correcciones de errores y mejoras"
#: data/com.github.liferooter.textpieces.appdata.xml.in:126
msgid "Add style schemes"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:127
msgid "Add search and replace feature to editor"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:128
msgid "Fix some bugs"
msgstr "Corrección de un montón de errores"
#: data/com.github.liferooter.textpieces.appdata.xml.in:133
msgid "Bug fix"
msgstr "Corrección de errores"
#: data/com.github.liferooter.textpieces.appdata.xml.in:139
msgid "Refresh UI"
msgstr "Actualización de la interfaz de usuario"
#: data/com.github.liferooter.textpieces.appdata.xml.in:140
msgid "Fix a lot of bugs"
msgstr "Corrección de un montón de errores"
#: data/com.github.liferooter.textpieces.appdata.xml.in:141
msgid "Add powerful settings"
msgstr "Añade ajustes potentes"
#: data/com.github.liferooter.textpieces.appdata.xml.in:142
msgid "Add arguments support for custom tools"
msgstr "Añade soporte de argumentos para herramientas personalizadas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:143
msgid "Add translation support"
msgstr "Añade soporte de traducción"
#: data/com.github.liferooter.textpieces.appdata.xml.in:144
#: data/com.github.liferooter.textpieces.appdata.xml.in:175
msgid "Improve search"
msgstr "Mejora de la búsqueda"
#: data/com.github.liferooter.textpieces.appdata.xml.in:158
msgid "Minor UI changes"
msgstr "Cambios menores en la interfaz de usuario"
#: data/com.github.liferooter.textpieces.appdata.xml.in:159
msgid "Add XML formatter"
msgstr "Añade un formateador XML"
#: data/com.github.liferooter.textpieces.appdata.xml.in:164
msgid "Some bugfixes and improvements"
msgstr "Algunas correcciones de errores y mejoras"
#: data/com.github.liferooter.textpieces.appdata.xml.in:167
msgid "Bring back tools with arguments"
msgstr "Vuelven las herramientas con argumentos"
#: data/com.github.liferooter.textpieces.appdata.xml.in:173
msgid "Redesign the application"
msgstr "Rediseño de la aplicación"
#: data/com.github.liferooter.textpieces.appdata.xml.in:174
msgid "Add custom tools support"
msgstr "Añade soporte para herramientas personalizadas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:176
msgid "Add ability to text load from file and save to file"
msgstr ""
"Añade la posibilidad de cargar texto desde un archivo y guardarlo en un "
"archivo"
#: data/com.github.liferooter.textpieces.appdata.xml.in:184
msgid "Exit by Ctrl+Q"
msgstr "Salir con Ctrl+Q"
#: data/com.github.liferooter.textpieces.appdata.xml.in:185
msgid "Monospace argument entry"
msgstr "Entrada de argumentos en monoespaciado"
#: data/com.github.liferooter.textpieces.appdata.xml.in:186
msgid "Update new runtime"
msgstr "Actualizar el nuevo tiempo de ejecución"
#: data/com.github.liferooter.textpieces.appdata.xml.in:194
msgid "Sort tools"
msgstr "Herramientas de clasificación"
#: data/com.github.liferooter.textpieces.appdata.xml.in:195
msgid "Filter tools"
msgstr "Herramientas de filtrado"
#: data/com.github.liferooter.textpieces.appdata.xml.in:196
msgid "Minify C-like code"
msgstr "Reducir el código de tipo C"
#: data/com.github.liferooter.textpieces.appdata.xml.in:204
msgid "Add more tools"
msgstr "Añade más herramientas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:205
msgid "Make tools popover more powerful"
msgstr "Potencia el menú emergente de herramientas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:206
msgid "Redesign icon"
msgstr "Rediseño del icono"
#: data/com.github.liferooter.textpieces.appdata.xml.in:207
msgid "General improvements"
msgstr "Mejoras generales"
#: data/com.github.liferooter.textpieces.appdata.xml.in:212
msgid "Add tools for replacement and removing"
msgstr "Añade herramientas para la sustitución y el desmontaje"
#: data/com.github.liferooter.textpieces.appdata.xml.in:215
msgid "Application release"
msgstr "Publicación de la aplicación"
#: data/com.github.liferooter.textpieces.gschema.xml:13
msgid "Style scheme"
msgstr "Esquema de colores"
#: data/com.github.liferooter.textpieces.gschema.xml:14
msgid "Which style scheme to use for application interface and editor."
msgstr "Qué combinación de colores usar para la interfaz de la aplicación."
#: data/com.github.liferooter.textpieces.gschema.xml:18
msgid "Font name"
msgstr "Nombre de la fuente"
#: data/com.github.liferooter.textpieces.gschema.xml:19
msgid "Name of font used in editor"
msgstr "Nombre de la fuente usada en el editor"
#: data/com.github.liferooter.textpieces.gschema.xml:23
msgid "Wrap lines"
msgstr "Ajuste de líneas"
#: data/com.github.liferooter.textpieces.gschema.xml:24
msgid "Whether to wrap long lines"
msgstr "Si las líneas largas continúan en la siguiente línea"
#: data/com.github.liferooter.textpieces.gschema.xml:28
msgid "Tabs to spaces"
msgstr "Tabulaciones a espacios"
#: data/com.github.liferooter.textpieces.gschema.xml:29
msgid "Whether to insert spaces instead of tab"
msgstr "Si se insertan espacios en lugar del tabulador"
#: data/com.github.liferooter.textpieces.gschema.xml:33
msgid "Spaces in tab"
msgstr "Espacios en tabulador"
#: data/com.github.liferooter.textpieces.gschema.xml:34
msgid "Tab width in spaces"
msgstr "Ancho de tabulado en espacios"
#: data/com.github.liferooter.textpieces.gschema.xml:38
msgid "Window width"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:39
msgid "Saved width of application window"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:43
msgid "Window height"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:44
msgid "Saved height of the window"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:48
msgid "Is maximized"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:49
msgid "Whether the application window is maximized"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:53
msgid "Selected tool"
msgstr "Seleccionar herramienta"
#: data/com.github.liferooter.textpieces.gschema.xml:54
msgid ""
"Used to restore tool choice on restart. Its value must be a name of tool's "
"script."
msgstr ""
#: src/widgets/Editor.vala:145
msgid "Text is copied"
msgstr "Texto copiado al portapapeles"
#. *
#. * Text used instead of tool name
#. * when where is no tool selected
#.
#: src/widgets/Window.vala:21 resources/ui/ShortcutsWindow.blp:50
msgid "Select tool"
msgstr "Seleccionar herramienta"
#: src/widgets/Window.vala:161
#, c-format
msgid "Can't load from file: %s"
msgstr "No se puede cargar desde el archivo: %s"
#: src/widgets/Window.vala:249
msgid "Tobias Bernard https://tobiasbernard.com"
msgstr ""
#: src/widgets/Window.vala:250
msgid "Gleb Smirnov <glebsmirnov0708@gmail.com>"
msgstr ""
#: src/widgets/Window.vala:253
msgid "translator-credits"
msgstr "Óscar Fernández Díaz <oscfdezdz@tuta.io>"
#: src/widgets/Window.vala:280 resources/ui/Window.blp:78
msgid "Save to File"
msgstr "Guardar en archivo"
#: src/widgets/Window.vala:305
#, c-format
msgid "Can't save to file: %s"
msgstr "No se puede guardar en el archivo: %s"
#: src/widgets/Window.vala:321 resources/ui/Window.blp:85
msgid "Load from File"
msgstr "Cargar desde archivo"
#: src/widgets/SearchEntry.vala:93
#, c-format
msgid "%u of %d"
msgstr ""
#. Create dialog
#: src/widgets/preferences/Preferences.vala:128
msgid "Select font"
msgstr "Seleccionar tipografía"
#: src/widgets/preferences/ToolSettings.vala:187
#, c-format
msgid "Argument %d"
msgstr "Argumento %d"
#: src/widgets/preferences/pages/NewToolPage.vala:113
#, c-format
msgid "Error occured: %s"
msgstr "Se ha producido un error: %s"
#: resources/ui/CustomToolPage.blp:27
msgid "Edit Tool"
msgstr "Editor"
#: resources/ui/CustomToolPage.blp:38
msgid "D_elete"
msgstr "_Eliminar"
#: resources/ui/Search.blp:41
msgid "No Tools Found"
msgstr "No se han encontrado herramientas"
#: resources/ui/Search.blp:53
msgid "_Add Custom Tool"
msgstr "Añadir herramienta personalizada"
#: resources/ui/NewToolPage.blp:27
msgid "New Tool"
msgstr "Herramientas"
#: resources/ui/NewToolPage.blp:42
msgid "_Create"
msgstr "_Crear"
#: resources/ui/Preferences.blp:13
msgid "_General"
msgstr "_General"
#: resources/ui/Preferences.blp:19
msgid "Editor"
msgstr "Editor"
#: resources/ui/Preferences.blp:22
msgid "Editor _Font"
msgstr "_Tipografía del editor"
#: resources/ui/Preferences.blp:40
msgid "_Wrap Lines"
msgstr "Ajustar _líneas"
#: resources/ui/Preferences.blp:51
msgid "Tabs to _Spaces"
msgstr "Tabulaciones a _espacios"
#: resources/ui/Preferences.blp:62
msgid "_Tab Width in Spaces"
msgstr "Ancho del _tabulado en espacios"
#: resources/ui/Preferences.blp:82
msgid "Appearance"
msgstr ""
#: resources/ui/Preferences.blp:94
msgid "T_ools"
msgstr "_Herramientas"
#: resources/ui/Preferences.blp:100
msgid "Custom tools"
msgstr "Herramientas personalizadas"
#: resources/ui/Preferences.blp:112
msgid "_Add custom tool"
msgstr "Añadir herramienta personalizada"
#: resources/ui/Preferences.blp:128
msgid "No Custom Tools"
msgstr "Herramientas personalizadas"
#: resources/ui/Preferences.blp:129
msgid "You can create one"
msgstr ""
#: resources/ui/SearchBar.blp:40 resources/ui/ShortcutsWindow.blp:102
msgid "Move to previous match"
msgstr ""
#: resources/ui/SearchBar.blp:46 resources/ui/ShortcutsWindow.blp:107
msgid "Move to next match"
msgstr ""
#: resources/ui/SearchBar.blp:58
msgid "Find and replace"
msgstr ""
#: resources/ui/SearchBar.blp:68
msgid "Toggle search options"
msgstr ""
#: resources/ui/SearchBar.blp:84
msgid "Close search"
msgstr "Mejora de la búsqueda"
#: resources/ui/SearchBar.blp:95 resources/ui/ShortcutsWindow.blp:97
msgid "Replace"
msgstr "Reemplazar con"
#: resources/ui/SearchBar.blp:106
msgid "_Replace"
msgstr "Reemplazar con"
#: resources/ui/SearchBar.blp:119
msgid "Replace _All"
msgstr "Reemplazar con"
#: resources/ui/SearchBar.blp:138
msgid "Re_gular expressions"
msgstr "Reemplazar subcadenas y expresiones regulares"
#: resources/ui/SearchBar.blp:144
msgid "_Case sensitive"
msgstr ""
#: resources/ui/SearchBar.blp:150
msgid "Match whole _word only"
msgstr ""
#: resources/ui/SearchEntry.blp:15
msgid "Find"
msgstr "Buscar"
#: resources/ui/ShortcutsWindow.blp:13
msgid "General"
msgstr "General"
#: resources/ui/ShortcutsWindow.blp:16
msgid "New window"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:21
msgid "Keyboard shortcuts"
msgstr "Atajos del teclado"
#: resources/ui/ShortcutsWindow.blp:26
msgid "Preferences"
msgstr "Preferencias"
#: resources/ui/ShortcutsWindow.blp:31
msgid "Close window"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:36
msgid "Quit"
msgstr "Salir"
#: resources/ui/ShortcutsWindow.blp:42
msgid "Tools"
msgstr "Herramientas"
#: resources/ui/ShortcutsWindow.blp:45
msgid "Apply"
msgstr "Aplicar"
#: resources/ui/ShortcutsWindow.blp:55
msgid "Just to the tool options"
msgstr "Saltar a las opciones de la herramienta"
#: resources/ui/ShortcutsWindow.blp:61
msgid "Undo and Redo"
msgstr "Deshacer y rehacer"
#: resources/ui/ShortcutsWindow.blp:64
msgid "Undo"
msgstr "Deshacer"
#: resources/ui/ShortcutsWindow.blp:69
msgid "Redo"
msgstr "Rehacer"
#: resources/ui/ShortcutsWindow.blp:75
msgid "Files"
msgstr "Archivos"
#: resources/ui/ShortcutsWindow.blp:78
msgid "Load from file"
msgstr "Cargar desde archivo"
#: resources/ui/ShortcutsWindow.blp:83
msgid "Save to file"
msgstr "Guardar en archivo"
#: resources/ui/ShortcutsWindow.blp:89
msgid "Search and Replace"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:92
msgid "Search"
msgstr ""
#: resources/ui/ToolSettings.blp:31
msgid "_Name"
msgstr "_Nombre"
#: resources/ui/ToolSettings.blp:42
msgid "_Description"
msgstr "_Descripción"
#: resources/ui/ToolSettings.blp:52
msgid "_Arguments"
msgstr "_Argumentos"
#: resources/ui/ToolSettings.blp:80
msgid "Edit _Script"
msgstr ""
#: resources/ui/Window.blp:32
msgid "_Apply"
msgstr "_Aplicar"
#: resources/ui/Window.blp:35
msgid "Apply Selected Tool"
msgstr "Aplicar la herramienta seleccionada"
#: resources/ui/Window.blp:45
msgid "Copy"
msgstr "Copiar"
#: resources/ui/Window.blp:71
msgid "Main Menu"
msgstr "Menú principal"
#: resources/ui/Window.blp:123
msgid "_New Window"
msgstr ""
#: resources/ui/Window.blp:131
msgid "_Find/Replace…"
msgstr ""
#: resources/ui/Window.blp:139
msgid "_Preferences"
msgstr "_Preferencias"
#: resources/ui/Window.blp:145
msgid "_Keyboard Shortcuts"
msgstr "Atajos del _teclado"
#: resources/ui/Window.blp:151
msgid "_About Text Pieces"
msgstr "_Acerca de Text Pieces"
#: data/tools.json
msgctxt "tools"
msgid "Base64 Decode"
msgstr "Decodificación en Base64"
#: data/tools.json
msgctxt "tools"
msgid "Base64 Encode"
msgstr "Codificación en Base64"
#: data/tools.json
msgctxt "tools"
msgid "Compute MD5 hash sum"
msgstr "Calcular la suma del hash MD5"
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA1 hash sum"
msgstr "Calcular la suma del hash SHA1"
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA256 hash sum"
msgstr "Calcular la suma del hash SHA256"
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA384 hash sum"
msgstr "Calcular la suma del hash SHA384"
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA512 hash sum"
msgstr "Calcular la suma del hash SHA512"
#: data/tools.json
msgctxt "tools"
msgid "Convert JSON to YAML"
msgstr "Convertir JSON en YAML"
#: data/tools.json
msgctxt "tools"
msgid "Convert YAML to JSON"
msgstr "Convertir YAML en JSON"
#: data/tools.json
msgctxt "tools"
msgid "Count how many lines are in text"
msgstr "Contar cuántas líneas hay en el texto"
#: data/tools.json
msgctxt "tools"
msgid "Count how many symbols are in text"
msgstr "Contar cuántos símbolos hay en el texto"
#: data/tools.json
msgctxt "tools"
msgid "Count how many words are in text"
msgstr "Contar cuántas palabras hay en el texto"
#: data/tools.json
msgctxt "tools"
msgid "Count Lines"
msgstr "Contar líneas"
#: data/tools.json
msgctxt "tools"
msgid "Count Symbols"
msgstr "Contar símbolos"
#: data/tools.json
msgctxt "tools"
msgid "Count Words"
msgstr "Contar palabras"
#: data/tools.json
msgctxt "tools"
msgid "Decode text from Base64"
msgstr "Decodificación de texto en Base64"
#: data/tools.json
msgctxt "tools"
msgid "Encode text to Base64"
msgstr "Codificar texto en Base64"
#: data/tools.json
msgctxt "tools"
msgid "Escape HTML"
msgstr "Escape HTML"
#: data/tools.json
msgctxt "tools"
msgid "Escape String"
msgstr "Cadena de escape"
#: data/tools.json
msgctxt "tools"
msgid "Escape URL"
msgstr "Escape URL"
#: data/tools.json
msgctxt "tools"
msgid "Extract RSS links from OPML outline"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Filter Lines by Regex"
msgstr "Filtrar líneas por regex"
#: data/tools.json
msgctxt "tools"
msgid "Filter Lines by Substring"
msgstr "Filtrar líneas por subcadena"
#: data/tools.json
msgctxt "tools"
msgid "Find"
msgstr "Buscar"
#: data/tools.json
msgctxt "tools"
msgid "Find (regex)"
msgstr "Buscar (regex)"
#: data/tools.json
msgctxt "tools"
msgid "MD5 Checksum"
msgstr "Suma de verificación MD5"
#: data/tools.json
msgctxt "tools"
msgid "Minify JSON"
msgstr "Minimizar JSON"
#: data/tools.json
msgctxt "tools"
msgid "OPML to RSS links"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and convert it to YAML document"
msgstr "Analizar JSON y convertirlo en un documento YAML"
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and minify it"
msgstr "Analizar JSON y minimizarlo"
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and prettify it"
msgstr "Analizar JSON y mejorarlo"
#: data/tools.json
msgctxt "tools"
msgid "Parse XML and prettify it"
msgstr "Analizar XML y mejorarlo"
#: data/tools.json
msgctxt "tools"
msgid "Parse YAML document and convert it to JSON"
msgstr "Analizar el documento YAML y convertirlo en JSON"
#: data/tools.json
msgctxt "tools"
msgid "Prettify JSON"
msgstr "Mejorar JSON"
#: data/tools.json
msgctxt "tools"
msgid "Prettify XML"
msgstr "Mejorar XML"
#: data/tools.json
msgctxt "tools"
msgid "Regex"
msgstr "Regex"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which contain given substring"
msgstr "Quitar todas las líneas que contengan la subcadena dada"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which don't contain given substring"
msgstr "Quitar todas las líneas que no contengan la subcadena dada"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which don't match given regular expression"
msgstr "Quitar todas las líneas que no coincidan con la expresión regular dada"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which match given regular expression"
msgstr "Quitar todas las líneas que coincidan con la expresión regular dada"
#: data/tools.json
msgctxt "tools"
msgid "Remove all matches of regular expression"
msgstr "Quitar todas las coincidencias de la expresión regular"
#: data/tools.json
msgctxt "tools"
msgid "Remove all occurrences of given substring in text"
msgstr "Quitar todas las ocurrencias de la subcadena dada en el texto"
#: data/tools.json
msgctxt "tools"
msgid "Remove leading and trailing whitespaces and newlines"
msgstr "Quitar los espacios en blanco iniciales y finales y las líneas nuevas"
#: data/tools.json
msgctxt "tools"
msgid "Remove Regex"
msgstr "Quitar regex"
#: data/tools.json
msgctxt "tools"
msgid "Remove Substring"
msgstr "Quitar la subcadena"
#: data/tools.json
msgctxt "tools"
msgid "Remove Trailing"
msgstr "Quitar los restos"
#: data/tools.json
msgctxt "tools"
msgid "Remove trailing whitespaces and newlines"
msgstr "Quitar los espacios en blanco al final y los saltos de línea"
#: data/tools.json
msgctxt "tools"
msgid "Reoder lines in reverse order"
msgstr "Reordenar las líneas en orden inverso"
#: data/tools.json
msgctxt "tools"
msgid "Reorder characters in reverse order"
msgstr "Reordenar los caracteres en orden inverso"
#: data/tools.json
msgctxt "tools"
msgid "Replace all given regex matches in text with given string"
msgstr ""
"Reemplazar todas las coincidencias regex dadas en el texto con la cadena dada"
#: data/tools.json
msgctxt "tools"
msgid "Replace all occurrences of given substring in text with other string"
msgstr ""
"Reemplazar todas las ocurrencias de la subcadena dada en el texto con otra "
"cadena"
#: data/tools.json
msgctxt "tools"
msgid "Replace escape sequences with characters"
msgstr "Reemplazar las secuencias de escape por caracteres"
#: data/tools.json
msgctxt "tools"
msgid "Replace HTML sequences with characters"
msgstr "Reemplazar las secuencias HTML por caracteres"
#: data/tools.json
msgctxt "tools"
msgid "Replace Regex"
msgstr "Reemplazar regex"
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with escape sequences"
msgstr "Reemplazar los caracteres especiales por secuencias de escape"
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with HTML-safe sequences"
msgstr "Reemplazar los caracteres especiales por secuencias seguras para HTML"
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with URL-safe sequences"
msgstr ""
"Reemplazar los caracteres especiales por secuencias seguras para la URL"
#: data/tools.json
msgctxt "tools"
msgid "Replace Substring"
msgstr "Reemplazar subcadena"
#: data/tools.json
msgctxt "tools"
msgid "Replace URL sequences with characters"
msgstr "Reemplazar las secuencias de URL con caracteres"
#: data/tools.json
msgctxt "tools"
msgid "Replace With"
msgstr "Reemplazar con"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Filter Lines by Regex"
msgstr "Invertir las líneas de filtrado por regex"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Filter Lines by Substring"
msgstr "Filtrar líneas por subcadena de forma inversa"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Lines"
msgstr "Invertir líneas"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Sort Lines"
msgstr "Ordenar las líneas de forma inversa"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Text"
msgstr "Invertir texto"
#: data/tools.json
msgctxt "tools"
msgid "SHA1 Checksum"
msgstr "Suma de verificación SHA1"
#: data/tools.json
msgctxt "tools"
msgid "SHA256 Checksum"
msgstr "Suma de verificación SHA256"
#: data/tools.json
msgctxt "tools"
msgid "SHA384 Checksum"
msgstr "Suma de verificación SHA384"
#: data/tools.json
msgctxt "tools"
msgid "SHA512 Checksum"
msgstr "Suma de verificación SHA512"
#: data/tools.json
msgctxt "tools"
msgid "Sort Lines"
msgstr "Ordenar líneas"
#: data/tools.json
msgctxt "tools"
msgid "Sort lines in text in alphabetical order"
msgstr "Ordenar las líneas del texto por orden alfabético"
#: data/tools.json
msgctxt "tools"
msgid "Sort lines in text in reverse alphabetical order"
msgstr "Ordenar las líneas del texto en orden alfabético inverso"
#: data/tools.json
msgctxt "tools"
msgid "Substring"
msgstr "Subcadena"
#: data/tools.json
msgctxt "tools"
msgid "Trim Lines"
msgstr "Recortar líneas"
#: data/tools.json
msgctxt "tools"
msgid "Unescape HTML"
msgstr "Desescape HTML"
#: data/tools.json
msgctxt "tools"
msgid "Unescape String"
msgstr "Cadena de desescape"
#: data/tools.json
msgctxt "tools"
msgid "Unescape URL"
msgstr "Desescape URL"
#~ msgid "Color Scheme"
#~ msgstr "Esquema de colores"
#~ msgid "_Light"
#~ msgstr "_Claro"
#~ msgid "_Dark"
#~ msgstr "_Oscuro"
#~ msgid "S_ystem Default"
#~ msgstr "_Predeterminado del sistema"
#~ msgid "Copy and Paste"
#~ msgstr "Copiar y pegar"
#~ msgid "Paste"
#~ msgstr "Pegar"
#~ msgid "Copy all"
#~ msgstr "Pegar todo"
================================================
FILE: po/meson.build
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
i18n.gettext(meson.project_name(), preset: 'glib')
================================================
FILE: po/nl.po
================================================
# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>
#
# SPDX-License-Identifier: CC0-1.0
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-21 08:25+0000\n"
"PO-Revision-Date: 2022-03-24 14:33+0100\n"
"Last-Translator: Heimen Stoffels <vistausss@fastmail.com>\n"
"Language-Team: \n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.0.1\n"
#: data/com.github.liferooter.textpieces.desktop.in:7
#: data/com.github.liferooter.textpieces.appdata.xml.in:9
#: src/widgets/Window.vala:241 resources/ui/Window.blp:9
msgid "Text Pieces"
msgstr "Tekstdelen"
#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
#: data/com.github.liferooter.textpieces.desktop.in:18
msgid ""
"GNOME;GTK;Text;Base64;JSON;YAML;Count;SHA1;SHA256;SHA384;SHA512;MD5;Checksum;"
"Escape;Encode;HTML;URL;Prettify;Filter;Reverse;Trim;"
msgstr ""
#: data/com.github.liferooter.textpieces.desktop.in:21
msgid "New Window"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:10
#: src/widgets/Window.vala:242
msgid "Transform text without using random websites"
msgstr "Zet tekst om zonder het gebruik van willekeurige websites"
#: data/com.github.liferooter.textpieces.appdata.xml.in:14
msgid "Do a lot of text transformations, such as:"
msgstr "Voer diverse tekstbewerkingen uit, waaronder:"
#: data/com.github.liferooter.textpieces.appdata.xml.in:16
msgid "Calculate hashes"
msgstr "Sommen berekenen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:17
msgid "Encode text"
msgstr "Tekst versleutelen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:18
msgid "Decode text"
msgstr "Tekst ontsleutelen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:19
msgid "Remove trailing spaces and lines"
msgstr "Witruimtes verwijderen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:20
msgid "Count lines, symbols and words"
msgstr "Regels, symbolen en woorden tellen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:21
msgid "Format JSON and XML"
msgstr "JSON en XML opmaken"
#: data/com.github.liferooter.textpieces.appdata.xml.in:22
msgid "Escape and unescape strings"
msgstr "Tekenreeksen markeren als aanpassen/niet-aanpassen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:23
msgid "Convert JSON to YAML and vice versa"
msgstr "JSON naar YAML converteren en vice-versa"
#: data/com.github.liferooter.textpieces.appdata.xml.in:24
msgid "Filter lines"
msgstr "Regels filteren"
#: data/com.github.liferooter.textpieces.appdata.xml.in:25
msgid "Replace substrings and regular expressions"
msgstr "Bijzinnen en reguliere uitdrukkingen vervangen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:27
msgid "...and so on."
msgstr "…en nog veel meer."
#: data/com.github.liferooter.textpieces.appdata.xml.in:32
#: src/widgets/Window.vala:252
msgid "Gleb Smirnov"
msgstr "Gleb Smirnov"
#: data/com.github.liferooter.textpieces.appdata.xml.in:64
#: data/com.github.liferooter.textpieces.appdata.xml.in:77
#: data/com.github.liferooter.textpieces.appdata.xml.in:87
msgid "Bug fixes:"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:66
msgid "Script files can be correctly opened using an editor of your choice"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:67
msgid "Newly created script names are generated from tool name"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:73
#, fuzzy
msgid "New features:"
msgstr "Enkele bugs opgelost en andere kleine verbeteringen aangebracht"
#: data/com.github.liferooter.textpieces.appdata.xml.in:75
msgid "Text Pieces now can open files"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:79
msgid "Some translation issues are fixed"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:80
msgid "Some tools are fixed and optimized"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:81
msgid "Shortcuts window is updated and fixed"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:89
msgid "Tool arguments now work as expected"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:90
msgid "Translate some untranslated strings"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:96
#: data/com.github.liferooter.textpieces.appdata.xml.in:108
#: data/com.github.liferooter.textpieces.appdata.xml.in:116
#: data/com.github.liferooter.textpieces.appdata.xml.in:137
#: data/com.github.liferooter.textpieces.appdata.xml.in:156
#: data/com.github.liferooter.textpieces.appdata.xml.in:171
#: data/com.github.liferooter.textpieces.appdata.xml.in:182
#: data/com.github.liferooter.textpieces.appdata.xml.in:192
#: data/com.github.liferooter.textpieces.appdata.xml.in:202
msgid "New features and improvements:"
msgstr "Enkele bugs opgelost en andere kleine verbeteringen aangebracht"
#: data/com.github.liferooter.textpieces.appdata.xml.in:98
msgid "Add tool for extracting RSS URLs from OPML files"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:99
msgid "Use more verbose error reporting for Base64 decode tool"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:100
msgid "Focus editor on startup"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:101
msgid "Save selected tool between sessions"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:102
msgid "Minor UI improvements"
msgstr "Algemene verbeteringen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:110
msgid "Add hotkey to open search in replace mode"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:118
msgid "Add some keywords to the application for system search"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:124
msgid "New features and improvement:"
msgstr "Enkele bugs opgelost en andere kleine verbeteringen aangebracht"
#: data/com.github.liferooter.textpieces.appdata.xml.in:126
msgid "Add style schemes"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:127
msgid "Add search and replace feature to editor"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:128
msgid "Fix some bugs"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:133
msgid "Bug fix"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:139
msgid "Refresh UI"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:140
msgid "Fix a lot of bugs"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:141
msgid "Add powerful settings"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:142
msgid "Add arguments support for custom tools"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:143
msgid "Add translation support"
msgstr "Nieuw: ondersteuning voor eigen gereedschap"
#: data/com.github.liferooter.textpieces.appdata.xml.in:144
#: data/com.github.liferooter.textpieces.appdata.xml.in:175
msgid "Improve search"
msgstr "Verbeterd: zoekfunctie"
#: data/com.github.liferooter.textpieces.appdata.xml.in:158
msgid "Minor UI changes"
msgstr "Kleine aanpassingen aan de vormgeving"
#: data/com.github.liferooter.textpieces.appdata.xml.in:159
msgid "Add XML formatter"
msgstr "Nieuw: xml-opmaakgereedschap"
#: data/com.github.liferooter.textpieces.appdata.xml.in:164
msgid "Some bugfixes and improvements"
msgstr "Enkele bugs opgelost en andere kleine verbeteringen aangebracht"
#: data/com.github.liferooter.textpieces.appdata.xml.in:167
msgid "Bring back tools with arguments"
msgstr "Gereedschap kan worden voorzien van opties"
#: data/com.github.liferooter.textpieces.appdata.xml.in:173
msgid "Redesign the application"
msgstr "De toepassing is opnieuw ontworpen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:174
msgid "Add custom tools support"
msgstr "Nieuw: ondersteuning voor eigen gereedschap"
#: data/com.github.liferooter.textpieces.appdata.xml.in:176
msgid "Add ability to text load from file and save to file"
msgstr ""
"Nieuw: mogelijkheid om tekst te laden uit een bestand en te bewaren als "
"bestand"
#: data/com.github.liferooter.textpieces.appdata.xml.in:184
msgid "Exit by Ctrl+Q"
msgstr "Sluit af met Ctrl + Q"
#: data/com.github.liferooter.textpieces.appdata.xml.in:185
msgid "Monospace argument entry"
msgstr "Vastebreedtetekst kan worden voorzien van opties"
#: data/com.github.liferooter.textpieces.appdata.xml.in:186
msgid "Update new runtime"
msgstr "Aandrijving bijgewerkt"
#: data/com.github.liferooter.textpieces.appdata.xml.in:194
msgid "Sort tools"
msgstr "Sorteer gereedschap"
#: data/com.github.liferooter.textpieces.appdata.xml.in:195
msgid "Filter tools"
msgstr "Filter gereedschap"
#: data/com.github.liferooter.textpieces.appdata.xml.in:196
msgid "Minify C-like code"
msgstr "Verklein C-achtige code"
#: data/com.github.liferooter.textpieces.appdata.xml.in:204
msgid "Add more tools"
msgstr "Nieuw: meer gereedschap"
#: data/com.github.liferooter.textpieces.appdata.xml.in:205
msgid "Make tools popover more powerful"
msgstr "Gereedschapsmenu uitgebreid"
#: data/com.github.liferooter.textpieces.appdata.xml.in:206
msgid "Redesign icon"
msgstr "Het pictogram is opnieuw ontworpen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:207
msgid "General improvements"
msgstr "Algemene verbeteringen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:212
msgid "Add tools for replacement and removing"
msgstr "Nieuw: gereedschap voor vervangen en wissen"
#: data/com.github.liferooter.textpieces.appdata.xml.in:215
msgid "Application release"
msgstr "Eerste uitgave"
#: data/com.github.liferooter.textpieces.gschema.xml:13
msgid "Style scheme"
msgstr "Thema"
#: data/com.github.liferooter.textpieces.gschema.xml:14
msgid "Which style scheme to use for application interface and editor."
msgstr "Kies het thema dat de toepassing dient te gebruiken."
#: data/com.github.liferooter.textpieces.gschema.xml:18
msgid "Font name"
msgstr "Lettertype"
#: data/com.github.liferooter.textpieces.gschema.xml:19
msgid "Name of font used in editor"
msgstr "Kies het in de bewerker te gebruiken lettertype."
#: data/com.github.liferooter.textpieces.gschema.xml:23
msgid "Wrap lines"
msgstr "Regels afbreken"
#: data/com.github.liferooter.textpieces.gschema.xml:24
msgid "Whether to wrap long lines"
msgstr "Schakel in om lange regels af te breken."
#: data/com.github.liferooter.textpieces.gschema.xml:28
msgid "Tabs to spaces"
msgstr "Tabs vervangen door spaties"
#: data/com.github.liferooter.textpieces.gschema.xml:29
msgid "Whether to insert spaces instead of tab"
msgstr "Schakel in om spaties in te voegen in plaats van tabs."
#: data/com.github.liferooter.textpieces.gschema.xml:33
msgid "Spaces in tab"
msgstr "Aantal spaties"
#: data/com.github.liferooter.textpieces.gschema.xml:34
msgid "Tab width in spaces"
msgstr "De tabbreedte in spaties."
#: data/com.github.liferooter.textpieces.gschema.xml:38
msgid "Window width"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:39
msgid "Saved width of application window"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:43
msgid "Window height"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:44
msgid "Saved height of the window"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:48
msgid "Is maximized"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:49
msgid "Whether the application window is maximized"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:53
msgid "Selected tool"
msgstr "Kies een gereedschap"
#: data/com.github.liferooter.textpieces.gschema.xml:54
msgid ""
"Used to restore tool choice on restart. Its value must be a name of tool's "
"script."
msgstr ""
#: src/widgets/Editor.vala:145
msgid "Text is copied"
msgstr "De tekst is gekopieerd naar het klembord"
#. *
#. * Text used instead of tool name
#. * when where is no tool selected
#.
#: src/widgets/Window.vala:21 resources/ui/ShortcutsWindow.blp:50
msgid "Select tool"
msgstr "Kies een gereedschap"
#: src/widgets/Window.vala:161
#, c-format
msgid "Can't load from file: %s"
msgstr "Het bestand kan niet worden geladen: %s"
#: src/widgets/Window.vala:249
msgid "Tobias Bernard https://tobiasbernard.com"
msgstr "Tobias Bernard https://tobiasbernard.com"
#: src/widgets/Window.vala:250
msgid "Gleb Smirnov <glebsmirnov0708@gmail.com>"
msgstr "Gleb Smirnov <glebsmirnov0708@gmail.com>"
#: src/widgets/Window.vala:253
msgid "translator-credits"
msgstr "Heimen Stoffels <vistausss@fastmail.com>"
#: src/widgets/Window.vala:280 resources/ui/Window.blp:78
msgid "Save to File"
msgstr "Opslaan als bestand"
#: src/widgets/Window.vala:305
#, c-format
msgid "Can't save to file: %s"
msgstr "Het bestand kan niet worden opgeslagen: %s"
#: src/widgets/Window.vala:321 resources/ui/Window.blp:85
msgid "Load from File"
msgstr "Laden uit bestand"
#: src/widgets/SearchEntry.vala:93
#, c-format
msgid "%u of %d"
msgstr ""
#. Create dialog
#: src/widgets/preferences/Preferences.vala:128
msgid "Select font"
msgstr "Kies een lettertype"
#: src/widgets/preferences/ToolSettings.vala:187
#, c-format
msgid "Argument %d"
msgstr "Optie %d"
#: src/widgets/preferences/pages/NewToolPage.vala:113
#, c-format
msgid "Error occured: %s"
msgstr "Er is een fout opgetreden: %s"
#: resources/ui/CustomToolPage.blp:27
msgid "Edit Tool"
msgstr "Bewerker"
#: resources/ui/CustomToolPage.blp:38
msgid "D_elete"
msgstr "Wiss_en"
#: resources/ui/Search.blp:41
msgid "No Tools Found"
msgstr "Er is geen gereedschap aangetroffen"
#: resources/ui/Search.blp:53
msgid "_Add Custom Tool"
msgstr "Eigen gereedschap toevoegen"
#: resources/ui/NewToolPage.blp:27
msgid "New Tool"
msgstr "Gereedschap"
#: resources/ui/NewToolPage.blp:42
msgid "_Create"
msgstr "_Aanmaken"
#: resources/ui/Preferences.blp:13
msgid "_General"
msgstr "Al_gemeen"
#: resources/ui/Preferences.blp:19
msgid "Editor"
msgstr "Bewerker"
#: resources/ui/Preferences.blp:22
msgid "Editor _Font"
msgstr "Letter_type van bewerker"
#: resources/ui/Preferences.blp:40
msgid "_Wrap Lines"
msgstr "Regels af_breken"
#: resources/ui/Preferences.blp:51
msgid "Tabs to _Spaces"
msgstr "Tabs vervangen door _spaties"
#: resources/ui/Preferences.blp:62
msgid "_Tab Width in Spaces"
msgstr "_Tabbreedte in spaties"
#: resources/ui/Preferences.blp:82
msgid "Appearance"
msgstr ""
#: resources/ui/Preferences.blp:94
msgid "T_ools"
msgstr "Gereedsch_ap"
#: resources/ui/Preferences.blp:100
msgid "Custom tools"
msgstr "Eigen gereedschap"
#: resources/ui/Preferences.blp:112
msgid "_Add custom tool"
msgstr "Eigen gereedschap toevoegen"
#: resources/ui/Preferences.blp:128
msgid "No Custom Tools"
msgstr "Eigen gereedschap"
#: resources/ui/Preferences.blp:129
msgid "You can create one"
msgstr ""
#: resources/ui/SearchBar.blp:40 resources/ui/ShortcutsWindow.blp:102
msgid "Move to previous match"
msgstr ""
#: resources/ui/SearchBar.blp:46 resources/ui/ShortcutsWindow.blp:107
msgid "Move to next match"
msgstr ""
#: resources/ui/SearchBar.blp:58
msgid "Find and replace"
msgstr ""
#: resources/ui/SearchBar.blp:68
msgid "Toggle search options"
msgstr ""
#: resources/ui/SearchBar.blp:84
msgid "Close search"
msgstr "Verbeterd: zoekfunctie"
#: resources/ui/SearchBar.blp:95 resources/ui/ShortcutsWindow.blp:97
msgid "Replace"
msgstr "Vervangen door"
#: resources/ui/SearchBar.blp:106
msgid "_Replace"
msgstr "Vervangen door"
#: resources/ui/SearchBar.blp:119
msgid "Replace _All"
msgstr "Vervangen door"
#: resources/ui/SearchBar.blp:138
msgid "Re_gular expressions"
msgstr "Bijzinnen en reguliere uitdrukkingen vervangen"
#: resources/ui/SearchBar.blp:144
msgid "_Case sensitive"
msgstr ""
#: resources/ui/SearchBar.blp:150
msgid "Match whole _word only"
msgstr ""
#: resources/ui/SearchEntry.blp:15
msgid "Find"
msgstr "Zoeken"
#: resources/ui/ShortcutsWindow.blp:13
msgid "General"
msgstr "Algemeen"
#: resources/ui/ShortcutsWindow.blp:16
msgid "New window"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:21
msgid "Keyboard shortcuts"
msgstr "Sneltoetsen"
#: resources/ui/ShortcutsWindow.blp:26
msgid "Preferences"
msgstr "Voorkeuren"
#: resources/ui/ShortcutsWindow.blp:31
msgid "Close window"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:36
msgid "Quit"
msgstr "Afsluiten"
#: resources/ui/ShortcutsWindow.blp:42
msgid "Tools"
msgstr "Gereedschap"
#: resources/ui/ShortcutsWindow.blp:45
msgid "Apply"
msgstr "Toepassen"
#: resources/ui/ShortcutsWindow.blp:55
msgid "Just to the tool options"
msgstr "Open het gereedschapsoptiemenu"
#: resources/ui/ShortcutsWindow.blp:61
msgid "Undo and Redo"
msgstr "Ongedaan maken/Opnieuw"
#: resources/ui/ShortcutsWindow.blp:64
msgid "Undo"
msgstr "Ongedaan maken"
#: resources/ui/ShortcutsWindow.blp:69
msgid "Redo"
msgstr "Opnieuw"
#: resources/ui/ShortcutsWindow.blp:75
msgid "Files"
msgstr "Bestanden"
#: resources/ui/ShortcutsWindow.blp:78
msgid "Load from file"
msgstr "Laden uit bestand"
#: resources/ui/ShortcutsWindow.blp:83
msgid "Save to file"
msgstr "Opslaan als bestand"
#: resources/ui/ShortcutsWindow.blp:89
msgid "Search and Replace"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:92
msgid "Search"
msgstr ""
#: resources/ui/ToolSettings.blp:31
msgid "_Name"
msgstr "_Naam"
#: resources/ui/ToolSettings.blp:42
msgid "_Description"
msgstr "_Omschrijving"
#: resources/ui/ToolSettings.blp:52
msgid "_Arguments"
msgstr "Opdr_achtregelopties"
#: resources/ui/ToolSettings.blp:80
msgid "Edit _Script"
msgstr ""
#: resources/ui/Window.blp:32
msgid "_Apply"
msgstr "Toep_assen"
#: resources/ui/Window.blp:35
msgid "Apply Selected Tool"
msgstr "Gebruik het gekozen gereedschap"
#: resources/ui/Window.blp:45
msgid "Copy"
msgstr "Kopiëren"
#: resources/ui/Window.blp:71
msgid "Main Menu"
msgstr "Hoofdmenu"
#: resources/ui/Window.blp:123
msgid "_New Window"
msgstr ""
#: resources/ui/Window.blp:131
msgid "_Find/Replace…"
msgstr ""
#: resources/ui/Window.blp:139
msgid "_Preferences"
msgstr "_Voorkeuren"
#: resources/ui/Window.blp:145
msgid "_Keyboard Shortcuts"
msgstr "_Sneltoetsen"
#: resources/ui/Window.blp:151
msgid "_About Text Pieces"
msgstr "_Over Tekstdelen"
#: data/tools.json
msgctxt "tools"
msgid "Base64 Decode"
msgstr "Base64-ontsleuteling"
#: data/tools.json
msgctxt "tools"
msgid "Base64 Encode"
msgstr "Base64-versleuteling"
#: data/tools.json
msgctxt "tools"
msgid "Compute MD5 hash sum"
msgstr "Bereken de md5-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA1 hash sum"
msgstr "Bereken de sha1-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA256 hash sum"
msgstr "Bereken de sha256-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA384 hash sum"
msgstr "Bereken de sha384-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA512 hash sum"
msgstr "Bereken de sha512-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "Convert JSON to YAML"
msgstr "JSON naar YAML converteren"
#: data/tools.json
msgctxt "tools"
msgid "Convert YAML to JSON"
msgstr "YAML naar JSON converteren"
#: data/tools.json
msgctxt "tools"
msgid "Count how many lines are in text"
msgstr "Tel het aantal regels in de tekst"
#: data/tools.json
msgctxt "tools"
msgid "Count how many symbols are in text"
msgstr "Tel het aantal symbolen in de tekst"
#: data/tools.json
msgctxt "tools"
msgid "Count how many words are in text"
msgstr "Tel het aantal woorden in de tekst"
#: data/tools.json
msgctxt "tools"
msgid "Count Lines"
msgstr "Regels tellen"
#: data/tools.json
msgctxt "tools"
msgid "Count Symbols"
msgstr "Symbolen tellen"
#: data/tools.json
msgctxt "tools"
msgid "Count Words"
msgstr "Woorden tellen"
#: data/tools.json
msgctxt "tools"
msgid "Decode text from Base64"
msgstr "Ontsleutel met Base64 versleutelde tekst"
#: data/tools.json
msgctxt "tools"
msgid "Encode text to Base64"
msgstr "Versleutel tekst met Base64"
#: data/tools.json
msgctxt "tools"
msgid "Escape HTML"
msgstr "Html aanpassen"
#: data/tools.json
msgctxt "tools"
msgid "Escape String"
msgstr "Tekenreeks aanpassen"
#: data/tools.json
msgctxt "tools"
msgid "Escape URL"
msgstr "Url aanpassen"
#: data/tools.json
msgctxt "tools"
msgid "Extract RSS links from OPML outline"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Filter Lines by Regex"
msgstr "Regels filteren op reguliere uitdrukkingen"
#: data/tools.json
msgctxt "tools"
msgid "Filter Lines by Substring"
msgstr "Regels filteren op onderliggende tekenreeks"
#: data/tools.json
msgctxt "tools"
msgid "Find"
msgstr "Zoeken"
#: data/tools.json
msgctxt "tools"
msgid "Find (regex)"
msgstr "Zoeken op reguliere uitdrukking"
#: data/tools.json
msgctxt "tools"
msgid "MD5 Checksum"
msgstr "Md5-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "Minify JSON"
msgstr "JSON verkleinen"
#: data/tools.json
msgctxt "tools"
msgid "OPML to RSS links"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and convert it to YAML document"
msgstr "Verwerk json en converteer het naar yaml"
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and minify it"
msgstr "Verwerk json en verklein het"
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and prettify it"
msgstr "Verwerk json en voorzie het van een mooie opmaak"
#: data/tools.json
msgctxt "tools"
msgid "Parse XML and prettify it"
msgstr "Verwerk xml en voorzie het van een mooie opmaak"
#: data/tools.json
msgctxt "tools"
msgid "Parse YAML document and convert it to JSON"
msgstr "Verwerk yaml en converteer het naar json"
#: data/tools.json
msgctxt "tools"
msgid "Prettify JSON"
msgstr "JSON opmaken"
#: data/tools.json
msgctxt "tools"
msgid "Prettify XML"
msgstr "XML opmaken"
#: data/tools.json
msgctxt "tools"
msgid "Regex"
msgstr "Reguliere uitdrukking"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which contain given substring"
msgstr "Verwijder alle regels die de opgegeven tekenreeks bevatten"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which don't contain given substring"
msgstr "Verwijder alle regels die niet de opgegeven tekenreeks bevatten"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which don't match given regular expression"
msgstr ""
"Verwijder alle regels die niet overeenkomen met de opgegeven reguliere "
"uitdrukking"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which match given regular expression"
msgstr ""
"Verwijder alle regels die overeenkomen met de opgegeven reguliere uitdrukking"
#: data/tools.json
msgctxt "tools"
msgid "Remove all matches of regular expression"
msgstr "Verwijder alle overeenkomende reguliere uitdrukkingen"
#: data/tools.json
msgctxt "tools"
msgid "Remove all occurrences of given substring in text"
msgstr "Verwijder alle regels die de opgegeven tekenreeks bevatten"
#: data/tools.json
msgctxt "tools"
msgid "Remove leading and trailing whitespaces and newlines"
msgstr "Verwijder witruimtes voor- en achteraan tekst en nieuwe regels"
#: data/tools.json
msgctxt "tools"
msgid "Remove Regex"
msgstr "Reguliere uitdrukking verwijderen"
#: data/tools.json
msgctxt "tools"
msgid "Remove Substring"
msgstr "Onderliggende tekenreeks verwijderen"
#: data/tools.json
msgctxt "tools"
msgid "Remove Trailing"
msgstr "Witruimtes verwijderen"
#: data/tools.json
msgctxt "tools"
msgid "Remove trailing whitespaces and newlines"
msgstr "Verwijder witruimtes en nieuwe regels"
#: data/tools.json
msgctxt "tools"
msgid "Reoder lines in reverse order"
msgstr "Plaats alle regels in omgekeerde volgorde"
#: data/tools.json
msgctxt "tools"
msgid "Reorder characters in reverse order"
msgstr "Plaats alle tekens in omgekeerde volgorde"
#: data/tools.json
msgctxt "tools"
msgid "Replace all given regex matches in text with given string"
msgstr "Vervang alle overeenkomende reguliere uitdrukkingen door een andere"
#: data/tools.json
msgctxt "tools"
msgid "Replace all occurrences of given substring in text with other string"
msgstr "Vervang alle overeenkomende tekenreeksen door een andere"
#: data/tools.json
msgctxt "tools"
msgid "Replace escape sequences with characters"
msgstr "Vervang ‘escape’tekens door reguliere tekens"
#: data/tools.json
msgctxt "tools"
msgid "Replace HTML sequences with characters"
msgstr "Vervang html-tekens door reguliere tekens"
#: data/tools.json
msgctxt "tools"
msgid "Replace Regex"
msgstr "Reguliere uitdrukking vervangen"
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with escape sequences"
msgstr "Vervang speciale tekens door ‘escape’tekens"
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with HTML-safe sequences"
msgstr "Vervang speciale tekens door html-tekens"
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with URL-safe sequences"
msgstr "Vervang speciale tekens door url-tekens"
#: data/tools.json
msgctxt "tools"
msgid "Replace Substring"
msgstr "Onderliggende tekenreeks vervangen"
#: data/tools.json
msgctxt "tools"
msgid "Replace URL sequences with characters"
msgstr "Vervang url-tekens door reguliere tekens"
#: data/tools.json
msgctxt "tools"
msgid "Replace With"
msgstr "Vervangen door"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Filter Lines by Regex"
msgstr "Regels omgekeerd filteren op reguliere uitdrukkingen"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Filter Lines by Substring"
msgstr "Regels omgekeerd filteren op onderliggende tekenreeks"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Lines"
msgstr "Regels omkeren"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Sort Lines"
msgstr "Regels omgekeerd sorteren"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Text"
msgstr "Tekst omkeren"
#: data/tools.json
msgctxt "tools"
msgid "SHA1 Checksum"
msgstr "Sha1-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "SHA256 Checksum"
msgstr "Sha256-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "SHA384 Checksum"
msgstr "Sha384-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "SHA512 Checksum"
msgstr "Sha512-controlesom"
#: data/tools.json
msgctxt "tools"
msgid "Sort Lines"
msgstr "Regels sorteren"
#: data/tools.json
msgctxt "tools"
msgid "Sort lines in text in alphabetical order"
msgstr "Sorteer alle regels op alfabetische volgorde"
#: data/tools.json
msgctxt "tools"
msgid "Sort lines in text in reverse alphabetical order"
msgstr "Sorteer alle regels op omgekeerde alfabetische volgorde"
#: data/tools.json
msgctxt "tools"
msgid "Substring"
msgstr "Onderliggende tekenreeks"
#: data/tools.json
msgctxt "tools"
msgid "Trim Lines"
msgstr "Regels afbreken"
#: data/tools.json
msgctxt "tools"
msgid "Unescape HTML"
msgstr "Html niet aanpassen"
#: data/tools.json
msgctxt "tools"
msgid "Unescape String"
msgstr "Tekenreeksen niet aanpassen"
#: data/tools.json
msgctxt "tools"
msgid "Unescape URL"
msgstr "Url niet aanpassen"
#~ msgid "Color Scheme"
#~ msgstr "Thema"
#~ msgid "_Light"
#~ msgstr "_Licht"
#~ msgid "_Dark"
#~ msgstr "_Donker"
#~ msgid "S_ystem Default"
#~ msgstr "S_ysteemthema"
#~ msgid "Copy and Paste"
#~ msgstr "Kopiëren en plakken"
#~ msgid "Paste"
#~ msgstr "Plakken"
#~ msgid "Copy all"
#~ msgstr "Alles kopiëren"
================================================
FILE: po/pt_BR.po
================================================
# SPDX-FileCopyrightText: 2022 Éden Alencar <eden.alencar@gmail.com>
#
# SPDX-License-Identifier: CC0-1.0
msgid ""
msgstr ""
"Project-Id-Version: textpieces\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-21 08:25+0000\n"
"PO-Revision-Date: 2022-02-03 14:21-0300\n"
"Last-Translator: Éden Alencar <eden.alencar@gmail.com>\n"
"Language-Team: Brazilian Portuguese <eden.alencar@gmail.com>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1)\n"
"X-Generator: Gtranslator 41.0\n"
#: data/com.github.liferooter.textpieces.desktop.in:7
#: data/com.github.liferooter.textpieces.appdata.xml.in:9
#: src/widgets/Window.vala:241 resources/ui/Window.blp:9
msgid "Text Pieces"
msgstr "Text Pieces"
#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
#: data/com.github.liferooter.textpieces.desktop.in:18
msgid ""
"GNOME;GTK;Text;Base64;JSON;YAML;Count;SHA1;SHA256;SHA384;SHA512;MD5;Checksum;"
"Escape;Encode;HTML;URL;Prettify;Filter;Reverse;Trim;"
msgstr ""
#: data/com.github.liferooter.textpieces.desktop.in:21
msgid "New Window"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:10
#: src/widgets/Window.vala:242
msgid "Transform text without using random websites"
msgstr "Transforme texto sem usar sites aleatórios"
#: data/com.github.liferooter.textpieces.appdata.xml.in:14
msgid "Do a lot of text transformations, such as:"
msgstr "Faça muitas transformações de texto, como:"
#: data/com.github.liferooter.textpieces.appdata.xml.in:16
msgid "Calculate hashes"
msgstr "Calcular hashes"
#: data/com.github.liferooter.textpieces.appdata.xml.in:17
msgid "Encode text"
msgstr "Codificar texto"
#: data/com.github.liferooter.textpieces.appdata.xml.in:18
msgid "Decode text"
msgstr "Decodificar texto"
#: data/com.github.liferooter.textpieces.appdata.xml.in:19
msgid "Remove trailing spaces and lines"
msgstr "Remova espaços e linhas à direita"
#: data/com.github.liferooter.textpieces.appdata.xml.in:20
msgid "Count lines, symbols and words"
msgstr "Contar linhas, símbolos e palavras"
#: data/com.github.liferooter.textpieces.appdata.xml.in:21
msgid "Format JSON and XML"
msgstr "Formate JSON e XML"
#: data/com.github.liferooter.textpieces.appdata.xml.in:22
msgid "Escape and unescape strings"
msgstr "Escape e não escape de strings"
#: data/com.github.liferooter.textpieces.appdata.xml.in:23
msgid "Convert JSON to YAML and vice versa"
msgstr "Converter JSON para YAML e vice-versa"
#: data/com.github.liferooter.textpieces.appdata.xml.in:24
msgid "Filter lines"
msgstr "Filtrar linhas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:25
msgid "Replace substrings and regular expressions"
msgstr "Substituir substrings e expressões regulares"
#: data/com.github.liferooter.textpieces.appdata.xml.in:27
msgid "...and so on."
msgstr "...e assim por diante."
#: data/com.github.liferooter.textpieces.appdata.xml.in:32
#: src/widgets/Window.vala:252
msgid "Gleb Smirnov"
msgstr "Gleb Smirnov"
#: data/com.github.liferooter.textpieces.appdata.xml.in:64
#: data/com.github.liferooter.textpieces.appdata.xml.in:77
#: data/com.github.liferooter.textpieces.appdata.xml.in:87
msgid "Bug fixes:"
msgstr "Correção de bug"
#: data/com.github.liferooter.textpieces.appdata.xml.in:66
msgid "Script files can be correctly opened using an editor of your choice"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:67
msgid "Newly created script names are generated from tool name"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:73
#, fuzzy
msgid "New features:"
msgstr "Algumas correções de bugs e melhorias"
#: data/com.github.liferooter.textpieces.appdata.xml.in:75
msgid "Text Pieces now can open files"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:79
msgid "Some translation issues are fixed"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:80
msgid "Some tools are fixed and optimized"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:81
msgid "Shortcuts window is updated and fixed"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:89
msgid "Tool arguments now work as expected"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:90
msgid "Translate some untranslated strings"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:96
#: data/com.github.liferooter.textpieces.appdata.xml.in:108
#: data/com.github.liferooter.textpieces.appdata.xml.in:116
#: data/com.github.liferooter.textpieces.appdata.xml.in:137
#: data/com.github.liferooter.textpieces.appdata.xml.in:156
#: data/com.github.liferooter.textpieces.appdata.xml.in:171
#: data/com.github.liferooter.textpieces.appdata.xml.in:182
#: data/com.github.liferooter.textpieces.appdata.xml.in:192
#: data/com.github.liferooter.textpieces.appdata.xml.in:202
msgid "New features and improvements:"
msgstr "Algumas correções de bugs e melhorias"
#: data/com.github.liferooter.textpieces.appdata.xml.in:98
msgid "Add tool for extracting RSS URLs from OPML files"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:99
msgid "Use more verbose error reporting for Base64 decode tool"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:100
msgid "Focus editor on startup"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:101
msgid "Save selected tool between sessions"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:102
msgid "Minor UI improvements"
msgstr "Melhorias gerais"
#: data/com.github.liferooter.textpieces.appdata.xml.in:110
msgid "Add hotkey to open search in replace mode"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:118
msgid "Add some keywords to the application for system search"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:124
msgid "New features and improvement:"
msgstr "Algumas correções de bugs e melhorias"
#: data/com.github.liferooter.textpieces.appdata.xml.in:126
msgid "Add style schemes"
msgstr "Esquema de estilo"
#: data/com.github.liferooter.textpieces.appdata.xml.in:127
msgid "Add search and replace feature to editor"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:128
msgid "Fix some bugs"
msgstr "Corrija muitos bugs"
#: data/com.github.liferooter.textpieces.appdata.xml.in:133
msgid "Bug fix"
msgstr "Correção de bug"
#: data/com.github.liferooter.textpieces.appdata.xml.in:139
msgid "Refresh UI"
msgstr "Atualizar interface do usuário"
#: data/com.github.liferooter.textpieces.appdata.xml.in:140
msgid "Fix a lot of bugs"
msgstr "Corrija muitos bugs"
#: data/com.github.liferooter.textpieces.appdata.xml.in:141
msgid "Add powerful settings"
msgstr "Adicione configurações poderosas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:142
msgid "Add arguments support for custom tools"
msgstr "Adicionar suporte a argumentos para ferramentas personalizadas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:143
msgid "Add translation support"
msgstr "Adicionar suporte de tradução"
#: data/com.github.liferooter.textpieces.appdata.xml.in:144
#: data/com.github.liferooter.textpieces.appdata.xml.in:175
msgid "Improve search"
msgstr "Melhorar a pesquisa"
#: data/com.github.liferooter.textpieces.appdata.xml.in:158
msgid "Minor UI changes"
msgstr "Pequenas alterações na interface do usuário"
#: data/com.github.liferooter.textpieces.appdata.xml.in:159
msgid "Add XML formatter"
msgstr "Adicionar formatador XML"
#: data/com.github.liferooter.textpieces.appdata.xml.in:164
msgid "Some bugfixes and improvements"
msgstr "Algumas correções de bugs e melhorias"
#: data/com.github.liferooter.textpieces.appdata.xml.in:167
msgid "Bring back tools with arguments"
msgstr "Traga de volta ferramentas com argumentos"
#: data/com.github.liferooter.textpieces.appdata.xml.in:173
msgid "Redesign the application"
msgstr "Redesenhe o aplicativo"
#: data/com.github.liferooter.textpieces.appdata.xml.in:174
msgid "Add custom tools support"
msgstr "Adicionar suporte a ferramentas personalizadas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:176
msgid "Add ability to text load from file and save to file"
msgstr "Adicione a capacidade de carregar texto do arquivo e salvar no arquivo"
#: data/com.github.liferooter.textpieces.appdata.xml.in:184
msgid "Exit by Ctrl+Q"
msgstr "Sair com Ctrl+Q"
#: data/com.github.liferooter.textpieces.appdata.xml.in:185
msgid "Monospace argument entry"
msgstr "Entrada de argumento monoespaçado"
#: data/com.github.liferooter.textpieces.appdata.xml.in:186
msgid "Update new runtime"
msgstr "Atualizar novo tempo de execução"
#: data/com.github.liferooter.textpieces.appdata.xml.in:194
msgid "Sort tools"
msgstr "Ferramentas de classificação"
#: data/com.github.liferooter.textpieces.appdata.xml.in:195
msgid "Filter tools"
msgstr "Ferramentas de filtro"
#: data/com.github.liferooter.textpieces.appdata.xml.in:196
msgid "Minify C-like code"
msgstr "Minificar código semelhante a C"
#: data/com.github.liferooter.textpieces.appdata.xml.in:204
msgid "Add more tools"
msgstr "Adicionar mais ferramentas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:205
msgid "Make tools popover more powerful"
msgstr "Torne as ferramentas popover mais poderosas"
#: data/com.github.liferooter.textpieces.appdata.xml.in:206
msgid "Redesign icon"
msgstr "Ícone de redesenho"
#: data/com.github.liferooter.textpieces.appdata.xml.in:207
msgid "General improvements"
msgstr "Melhorias gerais"
#: data/com.github.liferooter.textpieces.appdata.xml.in:212
msgid "Add tools for replacement and removing"
msgstr "Adicione ferramentas para substituição e remoção"
#: data/com.github.liferooter.textpieces.appdata.xml.in:215
msgid "Application release"
msgstr "Versão do aplicativo"
#: data/com.github.liferooter.textpieces.gschema.xml:13
msgid "Style scheme"
msgstr "Esquema de estilo"
#: data/com.github.liferooter.textpieces.gschema.xml:14
msgid "Which style scheme to use for application interface and editor."
msgstr "Qual esquema de estilo usar para a interface e o editor do aplicativo."
#: data/com.github.liferooter.textpieces.gschema.xml:18
msgid "Font name"
msgstr "Nome da fonte"
#: data/com.github.liferooter.textpieces.gschema.xml:19
msgid "Name of font used in editor"
msgstr "Nome da fonte usada no editor"
#: data/com.github.liferooter.textpieces.gschema.xml:23
msgid "Wrap lines"
msgstr "Quebra de linhas"
#: data/com.github.liferooter.textpieces.gschema.xml:24
msgid "Whether to wrap long lines"
msgstr "Se deve envolver linhas longas"
#: data/com.github.liferooter.textpieces.gschema.xml:28
msgid "Tabs to spaces"
msgstr "Guias para _Espaços"
#: data/com.github.liferooter.textpieces.gschema.xml:29
msgid "Whether to insert spaces instead of tab"
msgstr "Se deseja inserir espaços em vez de tabulação"
#: data/com.github.liferooter.textpieces.gschema.xml:33
msgid "Spaces in tab"
msgstr "Espaços na guia"
#: data/com.github.liferooter.textpieces.gschema.xml:34
msgid "Tab width in spaces"
msgstr "Largura da guia em espaços"
#: data/com.github.liferooter.textpieces.gschema.xml:38
msgid "Window width"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:39
msgid "Saved width of application window"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:43
msgid "Window height"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:44
msgid "Saved height of the window"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:48
msgid "Is maximized"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:49
msgid "Whether the application window is maximized"
msgstr ""
#: data/com.github.liferooter.textpieces.gschema.xml:53
msgid "Selected tool"
msgstr "Selecionar ferramenta"
#: data/com.github.liferooter.textpieces.gschema.xml:54
msgid ""
"Used to restore tool choice on restart. Its value must be a name of tool's "
"script."
msgstr ""
#: src/widgets/Editor.vala:145
msgid "Text is copied"
msgstr "O texto é copiado para a área de transferência"
#. *
#. * Text used instead of tool name
#. * when where is no tool selected
#.
#: src/widgets/Window.vala:21 resources/ui/ShortcutsWindow.blp:50
msgid "Select tool"
msgstr "Selecionar ferramenta"
#: src/widgets/Window.vala:161
#, c-format
msgid "Can't load from file: %s"
msgstr "Não é possível carregar do arquivo: %s"
#: src/widgets/Window.vala:249
msgid "Tobias Bernard https://tobiasbernard.com"
msgstr ""
#: src/widgets/Window.vala:250
msgid "Gleb Smirnov <glebsmirnov0708@gmail.com>"
msgstr "Gleb Smirnov <glebsmirnov0708@gmail.com>"
#: src/widgets/Window.vala:253
msgid "translator-credits"
msgstr "créditos do tradutor"
#: src/widgets/Window.vala:280 resources/ui/Window.blp:78
msgid "Save to File"
msgstr "Salvar em arquivo"
#: src/widgets/Window.vala:305
#, c-format
msgid "Can't save to file: %s"
msgstr "Não é possível salvar no arquivo: %s"
#: src/widgets/Window.vala:321 resources/ui/Window.blp:85
msgid "Load from File"
msgstr "Carregar do arquivo"
#: src/widgets/SearchEntry.vala:93
#, c-format
msgid "%u of %d"
msgstr ""
#. Create dialog
#: src/widgets/preferences/Preferences.vala:128
msgid "Select font"
msgstr "Selecionar fonte"
#: src/widgets/preferences/ToolSettings.vala:187
#, c-format
msgid "Argument %d"
msgstr "Argumento %d"
#: src/widgets/preferences/pages/NewToolPage.vala:113
#, c-format
msgid "Error occured: %s"
msgstr "Ocorreu um erro: %s"
#: resources/ui/CustomToolPage.blp:27
msgid "Edit Tool"
msgstr "Editor"
#: resources/ui/CustomToolPage.blp:38
msgid "D_elete"
msgstr "E_xcluir"
#: resources/ui/Search.blp:41
msgid "No Tools Found"
msgstr "Nenhuma ferramenta encontrada"
#: resources/ui/Search.blp:53
msgid "_Add Custom Tool"
msgstr "Adicionar ferramenta personalizada"
#: resources/ui/NewToolPage.blp:27
msgid "New Tool"
msgstr "Ferramentas"
#: resources/ui/NewToolPage.blp:42
msgid "_Create"
msgstr "_Criar"
#: resources/ui/Preferences.blp:13
msgid "_General"
msgstr "_Geral"
#: resources/ui/Preferences.blp:19
msgid "Editor"
msgstr "Editor"
#: resources/ui/Preferences.blp:22
msgid "Editor _Font"
msgstr "Editor _Fonte"
#: resources/ui/Preferences.blp:40
msgid "_Wrap Lines"
msgstr "_Linhas de quebra"
#: resources/ui/Preferences.blp:51
msgid "Tabs to _Spaces"
msgstr "Guias para _Espaços"
#: resources/ui/Preferences.blp:62
msgid "_Tab Width in Spaces"
msgstr "_Largura da Tabulação nos Espaços"
#: resources/ui/Preferences.blp:82
msgid "Appearance"
msgstr "Aparência"
#: resources/ui/Preferences.blp:94
msgid "T_ools"
msgstr "F_erramentas"
#: resources/ui/Preferences.blp:100
msgid "Custom tools"
msgstr "Ferramentas personalizadas"
#: resources/ui/Preferences.blp:112
msgid "_Add custom tool"
msgstr "Adicionar ferramenta personalizada"
#: resources/ui/Preferences.blp:128
msgid "No Custom Tools"
msgstr "Ferramentas personalizadas"
#: resources/ui/Preferences.blp:129
msgid "You can create one"
msgstr ""
#: resources/ui/SearchBar.blp:40 resources/ui/ShortcutsWindow.blp:102
msgid "Move to previous match"
msgstr ""
#: resources/ui/SearchBar.blp:46 resources/ui/ShortcutsWindow.blp:107
msgid "Move to next match"
msgstr ""
#: resources/ui/SearchBar.blp:58
msgid "Find and replace"
msgstr ""
#: resources/ui/SearchBar.blp:68
msgid "Toggle search options"
msgstr ""
#: resources/ui/SearchBar.blp:84
msgid "Close search"
msgstr "Melhorar a pesquisa"
#: resources/ui/SearchBar.blp:95 resources/ui/ShortcutsWindow.blp:97
msgid "Replace"
msgstr ""
#: resources/ui/SearchBar.blp:106
msgid "_Replace"
msgstr ""
#: resources/ui/SearchBar.blp:119
msgid "Replace _All"
msgstr ""
#: resources/ui/SearchBar.blp:138
msgid "Re_gular expressions"
msgstr "Substituir substrings e expressões regulares"
#: resources/ui/SearchBar.blp:144
msgid "_Case sensitive"
msgstr ""
#: resources/ui/SearchBar.blp:150
msgid "Match whole _word only"
msgstr ""
#: resources/ui/SearchEntry.blp:15
msgid "Find"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:13
msgid "General"
msgstr "Geral"
#: resources/ui/ShortcutsWindow.blp:16
msgid "New window"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:21
msgid "Keyboard shortcuts"
msgstr "Atalhos do teclado"
#: resources/ui/ShortcutsWindow.blp:26
msgid "Preferences"
msgstr "Preferências"
#: resources/ui/ShortcutsWindow.blp:31
msgid "Close window"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:36
msgid "Quit"
msgstr "Sair"
#: resources/ui/ShortcutsWindow.blp:42
msgid "Tools"
msgstr "Ferramentas"
#: resources/ui/ShortcutsWindow.blp:45
msgid "Apply"
msgstr "Aplicar"
#: resources/ui/ShortcutsWindow.blp:55
msgid "Just to the tool options"
msgstr "Ir para as opções da ferramenta"
#: resources/ui/ShortcutsWindow.blp:61
msgid "Undo and Redo"
msgstr "Desfazer e refazer"
#: resources/ui/ShortcutsWindow.blp:64
msgid "Undo"
msgstr "Desfazer"
#: resources/ui/ShortcutsWindow.blp:69
msgid "Redo"
msgstr "Refazer"
#: resources/ui/ShortcutsWindow.blp:75
msgid "Files"
msgstr "Arquivos"
#: resources/ui/ShortcutsWindow.blp:78
msgid "Load from file"
msgstr "Carregar do arquivo"
#: resources/ui/ShortcutsWindow.blp:83
msgid "Save to file"
msgstr "Salvar em arquivo"
#: resources/ui/ShortcutsWindow.blp:89
msgid "Search and Replace"
msgstr ""
#: resources/ui/ShortcutsWindow.blp:92
msgid "Search"
msgstr ""
#: resources/ui/ToolSettings.blp:31
msgid "_Name"
msgstr "_Nome"
#: resources/ui/ToolSettings.blp:42
msgid "_Description"
msgstr "_Descrição"
#: resources/ui/ToolSettings.blp:52
msgid "_Arguments"
msgstr "_Argumentos"
#: resources/ui/ToolSettings.blp:80
msgid "Edit _Script"
msgstr ""
#: resources/ui/Window.blp:32
msgid "_Apply"
msgstr "_Aplicar"
#: resources/ui/Window.blp:35
msgid "Apply Selected Tool"
msgstr "Aplicar ferramenta selecionada"
#: resources/ui/Window.blp:45
msgid "Copy"
msgstr "Copiar"
#: resources/ui/Window.blp:71
msgid "Main Menu"
msgstr "Menu principal"
#: resources/ui/Window.blp:123
msgid "_New Window"
msgstr ""
#: resources/ui/Window.blp:131
msgid "_Find/Replace…"
msgstr ""
#: resources/ui/Window.blp:139
msgid "_Preferences"
msgstr "_Preferências"
#: resources/ui/Window.blp:145
msgid "_Keyboard Shortcuts"
msgstr "_Atalhos do teclado"
#: resources/ui/Window.blp:151
msgid "_About Text Pieces"
msgstr "_Sobre Text Pieces"
#: data/tools.json
msgctxt "tools"
msgid "Base64 Decode"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Base64 Encode"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Compute MD5 hash sum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA1 hash sum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA256 hash sum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA384 hash sum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Compute SHA512 hash sum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Convert JSON to YAML"
msgstr "Converter JSON para YAML e vice-versa"
#: data/tools.json
msgctxt "tools"
msgid "Convert YAML to JSON"
msgstr "Converter JSON para YAML e vice-versa"
#: data/tools.json
msgctxt "tools"
msgid "Count how many lines are in text"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Count how many symbols are in text"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Count how many words are in text"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Count Lines"
msgstr "_Linhas de quebra"
#: data/tools.json
msgctxt "tools"
msgid "Count Symbols"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Count Words"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Decode text from Base64"
msgstr "Decodificar texto"
#: data/tools.json
msgctxt "tools"
msgid "Encode text to Base64"
msgstr "Codificar texto"
#: data/tools.json
msgctxt "tools"
msgid "Escape HTML"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Escape String"
msgstr "Escape e não escape de strings"
#: data/tools.json
msgctxt "tools"
msgid "Escape URL"
msgstr "Escape e não escape de strings"
#: data/tools.json
msgctxt "tools"
msgid "Extract RSS links from OPML outline"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Filter Lines by Regex"
msgstr "Filtrar linhas"
#: data/tools.json
msgctxt "tools"
msgid "Filter Lines by Substring"
msgstr "Filtrar linhas"
#: data/tools.json
msgctxt "tools"
msgid "Find"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Find (regex)"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "MD5 Checksum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Minify JSON"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "OPML to RSS links"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and convert it to YAML document"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and minify it"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Parse JSON and prettify it"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Parse XML and prettify it"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Parse YAML document and convert it to JSON"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Prettify JSON"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Prettify XML"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Regex"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which contain given substring"
msgstr "Substituir substrings e expressões regulares"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which don't contain given substring"
msgstr "Substituir substrings e expressões regulares"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which don't match given regular expression"
msgstr "Substituir substrings e expressões regulares"
#: data/tools.json
msgctxt "tools"
msgid "Remove all lines which match given regular expression"
msgstr "Substituir substrings e expressões regulares"
#: data/tools.json
msgctxt "tools"
msgid "Remove all matches of regular expression"
msgstr "Substituir substrings e expressões regulares"
#: data/tools.json
msgctxt "tools"
msgid "Remove all occurrences of given substring in text"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Remove leading and trailing whitespaces and newlines"
msgstr "Remova espaços e linhas à direita"
#: data/tools.json
msgctxt "tools"
msgid "Remove Regex"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Remove Substring"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Remove Trailing"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Remove trailing whitespaces and newlines"
msgstr "Remova espaços e linhas à direita"
#: data/tools.json
msgctxt "tools"
msgid "Reoder lines in reverse order"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Reorder characters in reverse order"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace all given regex matches in text with given string"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace all occurrences of given substring in text with other string"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace escape sequences with characters"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace HTML sequences with characters"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace Regex"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with escape sequences"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with HTML-safe sequences"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace special characters with URL-safe sequences"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace Substring"
msgstr "Escape e não escape de strings"
#: data/tools.json
msgctxt "tools"
msgid "Replace URL sequences with characters"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Replace With"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Reverse Filter Lines by Regex"
msgstr "Filtrar linhas"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Filter Lines by Substring"
msgstr "Filtrar linhas"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Lines"
msgstr "_Linhas de quebra"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Sort Lines"
msgstr "_Linhas de quebra"
#: data/tools.json
msgctxt "tools"
msgid "Reverse Text"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "SHA1 Checksum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "SHA256 Checksum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "SHA384 Checksum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "SHA512 Checksum"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Sort Lines"
msgstr "_Linhas de quebra"
#: data/tools.json
msgctxt "tools"
msgid "Sort lines in text in alphabetical order"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Sort lines in text in reverse alphabetical order"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Substring"
msgstr ""
#: data/tools.json
msgctxt "tools"
msgid "Trim Lines"
msgstr "_Linhas de quebra"
#: data/tools.json
msgctxt "tools"
msgid "Unescape HTML"
msgstr "Escape e não escape de strings"
#: data/tools.json
msgctxt "tools"
msgid "Unescape String"
msgstr "Escape e não escape de strings"
#: data/tools.json
msgctxt "tools"
msgid "Unescape URL"
msgstr "Escape e não escape de strings"
#~ msgid "Copy and Paste"
#~ msgstr "Copiar e colar"
#~ msgid "Paste"
#~ msgstr "Colar"
#~ msgid "Copy all"
#~ msgstr "Copiar tudo"
================================================
FILE: po/textpieces.pot
================================================
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the textpieces package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: textpieces\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-21 08:25+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: data/com.github.liferooter.textpieces.desktop.in:7
#: data/com.github.liferooter.textpieces.appdata.xml.in:9
#: src/widgets/Window.vala:241 resources/ui/Window.blp:9
msgid "Text Pieces"
msgstr ""
#. Translators: Search terms to find this application. Do NOT translate or localize the semicolons! The list MUST also end with a semicolon!
#: data/com.github.liferooter.textpieces.desktop.in:18
msgid ""
"GNOME;GTK;Text;Base64;JSON;YAML;Count;SHA1;SHA256;SHA384;SHA512;MD5;Checksum;"
"Escape;Encode;HTML;URL;Prettify;Filter;Reverse;Trim;"
msgstr ""
#: data/com.github.liferooter.textpieces.desktop.in:21
msgid "New Window"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:10
#: src/widgets/Window.vala:242
msgid "Transform text without using random websites"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:14
msgid "Do a lot of text transformations, such as:"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:16
msgid "Calculate hashes"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:17
msgid "Encode text"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:18
msgid "Decode text"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:19
msgid "Remove trailing spaces and lines"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:20
msgid "Count lines, symbols and words"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:21
msgid "Format JSON and XML"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:22
msgid "Escape and unescape strings"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:23
msgid "Convert JSON to YAML and vice versa"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:24
msgid "Filter lines"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:25
msgid "Replace substrings and regular expressions"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:27
msgid "...and so on."
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:32
#: src/widgets/Window.vala:252
msgid "Gleb Smirnov"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:64
#: data/com.github.liferooter.textpieces.appdata.xml.in:77
#: data/com.github.liferooter.textpieces.appdata.xml.in:87
msgid "Bug fixes:"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:66
msgid "Script files can be correctly opened using an editor of your choice"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:67
msgid "Newly created script names are generated from tool name"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:73
msgid "New features:"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:75
msgid "Text Pieces now can open files"
msgstr ""
#: data/com.github.liferooter.textpieces.appdata.xml.in:79
msgid "Some translation issues are fixed"
msgstr ""
#: data
gitextract_lymngp0k/ ├── .github/ │ └── workflows/ │ ├── ci.yml │ └── test.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES/ │ ├── CC0-1.0.txt │ └── GPL-3.0-or-later.txt ├── README.md ├── build-aux/ │ ├── flatpak/ │ │ └── com.github.liferooter.textpieces.yaml │ └── meson/ │ └── postinstall.py ├── ci/ │ ├── generate-tools-po.sh │ └── update-po.sh ├── data/ │ ├── com.github.liferooter.textpieces.appdata.xml.in │ ├── com.github.liferooter.textpieces.desktop.in │ ├── com.github.liferooter.textpieces.gschema.xml │ ├── icons/ │ │ ├── com.github.liferooter.textpieces-symbolic.svg.license │ │ ├── com.github.liferooter.textpieces.Source.svg.license │ │ └── com.github.liferooter.textpieces.svg.license │ ├── meson.build │ ├── tools.json │ └── tools.json.license ├── icon.png.license ├── meson.build ├── po/ │ ├── LINGUAS │ ├── POTFILES │ ├── es.po │ ├── meson.build │ ├── nl.po │ ├── pt_BR.po │ ├── textpieces.pot │ ├── textpieces.pot.license │ ├── tools.pot │ └── tools.pot.license ├── resources/ │ ├── icons/ │ │ └── scalable/ │ │ └── status/ │ │ ├── applications-utilities-symbolic.svg.license │ │ ├── fingerprint-symbolic.svg.license │ │ ├── funnel-symbolic.svg.license │ │ ├── lock-symbolic.svg.license │ │ ├── preferences-symbolic.svg.license │ │ ├── rss-symbolic.svg.license │ │ └── unlock-symbolic.svg.license │ ├── meson.build │ ├── style-dark.css │ ├── style.css │ ├── textpieces.gresource.xml │ └── ui/ │ ├── CustomToolPage.blp │ ├── Editor.blp │ ├── NewToolPage.blp │ ├── Preferences.blp │ ├── Search.blp │ ├── SearchBar.blp │ ├── SearchEntry.blp │ ├── ShortcutsWindow.blp │ ├── ToolSettings.blp │ └── Window.blp ├── screenshots/ │ ├── screenshot.png.license │ ├── slide1.png.license │ ├── slide2.png.license │ ├── slide3.png.license │ ├── slide4.png.license │ └── slide5.png.license ├── scripts/ │ ├── base64-decode │ ├── base64-encode │ ├── count-lines │ ├── count-symbols │ ├── count-words │ ├── escape-html │ ├── escape-string │ ├── escape-url │ ├── filter-regex │ ├── filter-substring │ ├── format-json │ ├── format-xml │ ├── json-to-yaml │ ├── md5 │ ├── minify-json │ ├── remove-regex │ ├── remove-substring │ ├── remove-trailing │ ├── replace-regex │ ├── replace-substring │ ├── reverse-filter-regex │ ├── reverse-filter-substring │ ├── reverse-lines │ ├── reverse-string │ ├── rss-from-opml │ ├── sha1 │ ├── sha256 │ ├── sha384 │ ├── sha512 │ ├── sort-lines │ ├── sort-lines-reverse │ ├── template │ ├── template.license │ ├── trim │ ├── unescape-html │ ├── unescape-string │ ├── unescape-url │ └── yaml-to-json ├── src/ │ ├── Application.vala │ ├── meson.build │ ├── tools/ │ │ ├── Tool.vala │ │ └── ToolsController.vala │ ├── utils/ │ │ ├── Recoloring.vala │ │ └── Utils.vala │ ├── vapi/ │ │ └── config.vapi │ └── widgets/ │ ├── Editor.vala │ ├── Search.vala │ ├── SearchBar.vala │ ├── SearchEntry.vala │ ├── Window.vala │ └── preferences/ │ ├── Preferences.vala │ ├── ToolSettings.vala │ └── pages/ │ ├── CustomToolPage.vala │ └── NewToolPage.vala ├── subprojects/ │ ├── blueprint-compiler.wrap │ ├── gtksourceview.wrap │ ├── json-glib.wrap │ └── libadwaita.wrap └── textpieces.doap
Condensed preview — 119 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (380K chars).
[
{
"path": ".github/workflows/ci.yml",
"chars": 1374,
"preview": "# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\no"
},
{
"path": ".github/workflows/test.yml",
"chars": 817,
"preview": "# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\no"
},
{
"path": ".gitignore",
"chars": 188,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\n\n**/*~\n**/#"
},
{
"path": "CONTRIBUTING.md",
"chars": 3444,
"preview": "<!--\nSPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\n-->\n\n# Cont"
},
{
"path": "LICENSE",
"chars": 35119,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "LICENSES/CC0-1.0.txt",
"chars": 7048,
"preview": "Creative Commons Legal Code\n\nCC0 1.0 Universal\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n"
},
{
"path": "LICENSES/GPL-3.0-or-later.txt",
"chars": 34505,
"preview": "GNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>\n\nE"
},
{
"path": "README.md",
"chars": 2514,
"preview": "<!--\nSPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\n-->\n\n<h1 al"
},
{
"path": "build-aux/flatpak/com.github.liferooter.textpieces.yaml",
"chars": 1648,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\na"
},
{
"path": "build-aux/meson/postinstall.py",
"chars": 799,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "ci/generate-tools-po.sh",
"chars": 375,
"preview": "#!/usr/bin/env bash\n\n# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier"
},
{
"path": "ci/update-po.sh",
"chars": 715,
"preview": "#!/usr/bin/env bash\n\n# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier"
},
{
"path": "data/com.github.liferooter.textpieces.appdata.xml.in",
"chars": 7761,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!--\nSPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-"
},
{
"path": "data/com.github.liferooter.textpieces.desktop.in",
"chars": 682,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\n["
},
{
"path": "data/com.github.liferooter.textpieces.gschema.xml",
"chars": 2059,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<!--\nSPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX"
},
{
"path": "data/icons/com.github.liferooter.textpieces-symbolic.svg.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "data/icons/com.github.liferooter.textpieces.Source.svg.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "data/icons/com.github.liferooter.textpieces.svg.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "data/meson.build",
"chars": 1783,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\nd"
},
{
"path": "data/tools.json",
"chars": 6914,
"preview": "{\n \"is_system\": true,\n \"tools\": [\n {\n \"name\": \"SHA1 Checksum\",\n \"description\": \"Compute SHA1 hash sum\",\n "
},
{
"path": "data/tools.json.license",
"chars": 154,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\nSPDX-FileCopyrightText: 2022 Adrián Bíro\n\nSPDX-Lic"
},
{
"path": "icon.png.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "meson.build",
"chars": 2888,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\np"
},
{
"path": "po/LINGUAS",
"chars": 122,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\n\nes\nnl\npt_B"
},
{
"path": "po/POTFILES",
"chars": 752,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\n\ndata/com.g"
},
{
"path": "po/es.po",
"chars": 27479,
"preview": "# SPDX-FileCopyrightText: 2022 Óscar Fernández Díaz <oscfdezdz@tuta.io>\n#\n# SPDX-License-Identifier: CC0-1.0\nmsgid \"\"\nms"
},
{
"path": "po/meson.build",
"chars": 170,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\ni"
},
{
"path": "po/nl.po",
"chars": 27367,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\nmsgid \"\"\nms"
},
{
"path": "po/pt_BR.po",
"chars": 25414,
"preview": "# SPDX-FileCopyrightText: 2022 Éden Alencar <eden.alencar@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\nmsgid \"\"\nmsgst"
},
{
"path": "po/textpieces.pot",
"chars": 21908,
"preview": "# SOME DESCRIPTIVE TITLE.\n# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER\n# This file is distributed under the same "
},
{
"path": "po/textpieces.pot.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "po/tools.pot",
"chars": 6197,
"preview": "\n#: data/tools.json\nmsgctxt \"tools\"\nmsgid \"Base64 Decode\"\nmsgstr \"\"\n\n#: data/tools.json\nmsgctxt \"tools\"\nmsgid \"Base64 En"
},
{
"path": "po/tools.pot.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "resources/icons/scalable/status/applications-utilities-symbolic.svg.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "resources/icons/scalable/status/fingerprint-symbolic.svg.license",
"chars": 145,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\nSPDX-License-Ide"
},
{
"path": "resources/icons/scalable/status/funnel-symbolic.svg.license",
"chars": 145,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\nSPDX-License-Ide"
},
{
"path": "resources/icons/scalable/status/lock-symbolic.svg.license",
"chars": 145,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\nSPDX-License-Ide"
},
{
"path": "resources/icons/scalable/status/preferences-symbolic.svg.license",
"chars": 145,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\nSPDX-License-Ide"
},
{
"path": "resources/icons/scalable/status/rss-symbolic.svg.license",
"chars": 104,
"preview": "SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\n"
},
{
"path": "resources/icons/scalable/status/unlock-symbolic.svg.license",
"chars": 145,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\nSPDX-License-Ide"
},
{
"path": "resources/meson.build",
"chars": 924,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\nb"
},
{
"path": "resources/style-dark.css",
"chars": 776,
"preview": "/* style.css\n *\n * Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n *\n * This program is free software: you can "
},
{
"path": "resources/style.css",
"chars": 1043,
"preview": "/* style.css\n *\n * Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n *\n * This program is free software: you can "
},
{
"path": "resources/textpieces.gresource.xml",
"chars": 1721,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<!--\nSPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX"
},
{
"path": "resources/ui/CustomToolPage.blp",
"chars": 793,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/Editor.blp",
"chars": 1142,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/NewToolPage.blp",
"chars": 898,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/Preferences.blp",
"chars": 2831,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/Search.blp",
"chars": 1283,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/SearchBar.blp",
"chars": 3793,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/SearchEntry.blp",
"chars": 751,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/ShortcutsWindow.blp",
"chars": 2225,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/ToolSettings.blp",
"chars": 2298,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "resources/ui/Window.blp",
"chars": 3050,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "screenshots/screenshot.png.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "screenshots/slide1.png.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "screenshots/slide2.png.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "screenshots/slide3.png.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "screenshots/slide4.png.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "screenshots/slide5.png.license",
"chars": 103,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0"
},
{
"path": "scripts/base64-decode",
"chars": 150,
"preview": "#!/usr/bin/env bash\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier"
},
{
"path": "scripts/base64-encode",
"chars": 147,
"preview": "#!/usr/bin/env bash\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier"
},
{
"path": "scripts/count-lines",
"chars": 146,
"preview": "#!/usr/bin/env bash\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier"
},
{
"path": "scripts/count-symbols",
"chars": 146,
"preview": "#!/usr/bin/env bash\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier"
},
{
"path": "scripts/count-words",
"chars": 146,
"preview": "#!/usr/bin/env bash\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier"
},
{
"path": "scripts/escape-html",
"chars": 233,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/escape-string",
"chars": 233,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/escape-url",
"chars": 249,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/filter-regex",
"chars": 486,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/filter-substring",
"chars": 250,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/format-json",
"chars": 394,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/format-xml",
"chars": 452,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/json-to-yaml",
"chars": 411,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/md5",
"chars": 251,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/minify-json",
"chars": 403,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/remove-regex",
"chars": 418,
"preview": "#!/usr/bin/python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier:"
},
{
"path": "scripts/remove-substring",
"chars": 224,
"preview": "#!/usr/bin/python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier:"
},
{
"path": "scripts/remove-trailing",
"chars": 271,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/replace-regex",
"chars": 434,
"preview": "#!/usr/bin/python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier:"
},
{
"path": "scripts/replace-substring",
"chars": 233,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/reverse-filter-regex",
"chars": 510,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/reverse-filter-substring",
"chars": 254,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/reverse-lines",
"chars": 230,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/reverse-string",
"chars": 207,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/rss-from-opml",
"chars": 663,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2022 Adrián Bíro\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\nfrom s"
},
{
"path": "scripts/sha1",
"chars": 253,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/sha256",
"chars": 257,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/sha384",
"chars": 257,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/sha512",
"chars": 257,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/sort-lines",
"chars": 232,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/sort-lines-reverse",
"chars": 246,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/template",
"chars": 1042,
"preview": "#!/usr/bin/env python3\n\n# Hey, this is the script of your new tool.\n\n# It's easy to create tool.\n\n# - Get selected text "
},
{
"path": "scripts/template.license",
"chars": 112,
"preview": "SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "scripts/trim",
"chars": 269,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/unescape-html",
"chars": 237,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/unescape-string",
"chars": 543,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/unescape-url",
"chars": 253,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "scripts/yaml-to-json",
"chars": 420,
"preview": "#!/usr/bin/env python3\n\n# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identif"
},
{
"path": "src/Application.vala",
"chars": 7107,
"preview": "// Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708"
},
{
"path": "src/meson.build",
"chars": 1078,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: GPL-3.0-or-later\n\nt"
},
{
"path": "src/tools/Tool.vala",
"chars": 6251,
"preview": "// Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708"
},
{
"path": "src/tools/ToolsController.vala",
"chars": 10683,
"preview": "// Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708"
},
{
"path": "src/utils/Recoloring.vala",
"chars": 8317,
"preview": "// SPDX-FileCopyrightText: 2021 Christian Hergert <chergert@redhat.com>\n// SPDX-FileCopyrightText: 2022 Gleb Smirnov <gl"
},
{
"path": "src/utils/Utils.vala",
"chars": 786,
"preview": "// Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708"
},
{
"path": "src/vapi/config.vapi",
"chars": 361,
"preview": "// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "src/widgets/Editor.vala",
"chars": 8853,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "src/widgets/Search.vala",
"chars": 9494,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "src/widgets/SearchBar.vala",
"chars": 6488,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "src/widgets/SearchEntry.vala",
"chars": 2628,
"preview": "// SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "src/widgets/Window.vala",
"chars": 12463,
"preview": "// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n//\n// SPDX-License-Identifier: GPL-3.0-or-later"
},
{
"path": "src/widgets/preferences/Preferences.vala",
"chars": 5197,
"preview": "// Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708"
},
{
"path": "src/widgets/preferences/ToolSettings.vala",
"chars": 7602,
"preview": "// Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708"
},
{
"path": "src/widgets/preferences/pages/CustomToolPage.vala",
"chars": 2267,
"preview": "// Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708"
},
{
"path": "src/widgets/preferences/pages/NewToolPage.vala",
"chars": 3554,
"preview": "// Copyright 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n// SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708"
},
{
"path": "subprojects/blueprint-compiler.wrap",
"chars": 287,
"preview": "# SPDX-FileCopyrightText: 2022 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\n\n[wrap-git]"
},
{
"path": "subprojects/gtksourceview.wrap",
"chars": 417,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\n\n[wrap-file"
},
{
"path": "subprojects/json-glib.wrap",
"chars": 355,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\n\n[wrap-file"
},
{
"path": "subprojects/libadwaita.wrap",
"chars": 403,
"preview": "# SPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n#\n# SPDX-License-Identifier: CC0-1.0\n\n[wrap-file"
},
{
"path": "textpieces.doap",
"chars": 2311,
"preview": "<!--\nSPDX-FileCopyrightText: 2021 Gleb Smirnov <glebsmirnov0708@gmail.com>\n\nSPDX-License-Identifier: CC0-1.0\n-->\n\n<Proje"
}
]
About this extraction
This page contains the full source code of the liferooter/textpieces GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 119 files (346.4 KB), approximately 88.0k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.