Move to HTMLY and new post

This commit is contained in:
kyledot 2025-03-06 08:42:31 +09:30
parent 8fafcf3c62
commit 4204be5750
896 changed files with 128619 additions and 991 deletions

1
.gitattributes vendored Executable file
View File

@ -0,0 +1 @@
// * text=auto eol=lf

14
.github/FUNDING.yml vendored Executable file
View File

@ -0,0 +1,14 @@
# These are supported funding model platforms
github: danpros
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
polar: # Replace with a single Polar username
buy_me_a_coffee: # Replace with a single Buy Me a Coffee username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

33
.github/ISSUE_TEMPLATE/bug_report.md vendored Executable file
View File

@ -0,0 +1,33 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG REPORT]"
labels: bug
assignees: ''
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots/Errors**
If applicable, add screenshots and/or error messages to help explain your problem. You may need to check your webserver's error logs.
**HTMLy Version**
Please list the exact version you are using (can be found on /admin/update next to "Installed Version").
**Server Info (please complete the following information):**
- OS: [e.g. Ubuntu 22.04.4, Debian 12, etc...]
- Webserver [e.g. Apache 2.4, nginx 1.25, lighttpd 1.4.76, etc...]
- PHP Version [e.g. PHP 5.6, PHP 7.4, PHP 8.3, etc...]
**Link to installation (optional, but usually helpful)**
**Additional context**
Add any other context about the problem here.

20
.github/ISSUE_TEMPLATE/feature_request.md vendored Executable file
View File

@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FEATURE REQUEST]"
labels: enhancement
assignees: ''
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen and how you'd like to see this handled/implemented/fixed.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.

7
.gitignore vendored Executable file
View File

@ -0,0 +1,7 @@
/cache/*
/content/*
/config/config.ini
/config/users/*.ini
/backup
/.htaccess
.DS_Store

137
.htaccess
View File

@ -1,4 +1,133 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.html [L]
# Don't show directory listings for URLs which map to a directory.
Options -Indexes
# Make HTMLy handle any 404 errors.
ErrorDocument 404 /index.php
# Set the default handler.
DirectoryIndex index.php
# Requires mod_expires to be enabled.
<IfModule mod_expires.c>
# to activate mode_expires
# ExpiresActive on
# ExpiresDefault "access plus 1 month"
# For CSS
# ExpiresByType text/css "access plus 1 month"
# For Data interchange
# ExpiresByType application/json "access plus 0 seconds"
# ExpiresByType application/xml "access plus 0 seconds"
# ExpiresByType text/xml "access plus 0 seconds"
# For Favicon
# ExpiresByType image/x-icon "access plus 1 year"
# For HTML components (HTCs)
# ExpiresByType text/x-component "access plus 1 month"
# For HTML
# ExpiresByType text/html "access plus 1 month"
# For JavaScript
# ExpiresByType text/js "access plus 1 month"
# ExpiresByType text/javascript "access plus 1 month"
# ExpiresByType application/javascript "access plus 1 month"
# ExpiresByType application/x-javascript "access plus 1 month"
# For Manifest files
# ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
# ExpiresByType text/cache-manifest "access plus 0 seconds"
# For Media
# ExpiresByType audio/ogg "access plus 1 month"
# ExpiresByType image/gif "access plus 1 month"
# ExpiresByType image/jpeg "access plus 1 month"
# ExpiresByType image/png "access plus 1 month"
# ExpiresByType video/mp4 "access plus 1 month"
# ExpiresByType video/ogg "access plus 1 month"
# ExpiresByType video/webm "access plus 1 month"
# For Web feeds
# ExpiresByType application/atom+xml "access plus 1 day"
# ExpiresByType application/rss+xml "access plus 1 day"
# For Web fonts
# ExpiresByType application/font-woff "access plus 1 month"
# ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
# ExpiresByType application/x-font-ttf "access plus 1 month"
# ExpiresByType font/opentype "access plus 1 month"
# ExpiresByType image/svg+xml "access plus 1 month"
</IfModule>
# Various rewrite rules.
<IfModule mod_rewrite.c>
RewriteEngine on
# Uncomment the following to redirect all visitors to the https version
# RewriteCond %{HTTPS} on
# RewriteCond %{HTTP_HOST} ^kyledot\.net$ [NC]
# RewriteRUle (.*) https://kyledot.net/$1 [R=301,L]
# Uncomment the following to redirect all visitors to the www version
# RewriteCond %{HTTP_HOST} !^www\. [NC]
# RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Uncomment the following to redirect all visitors to non www version
# RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
# RewriteRule ^ http://%1%{REQUEST_URI} [L,R=301]
# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
# RewriteBase /
# Pass all requests not referring directly to files in the filesystem to index.php.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L]
</IfModule>
# Enable Gzip compression.
<IfModule mod_deflate.c>
# Force compression for mangled headers.
# http://developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping
<IfModule mod_setenvif.c>
<IfModule mod_headers.c>
SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
</IfModule>
</IfModule>
# Compress all output labeled with one of the following MIME-types
# (for Apache versions below 2.3.7, you don't need to enable `mod_filter`
# and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
# as `AddOutputFilterByType` is still in the core directives).
AddOutputFilterByType DEFLATE application/atom+xml \
text/js \
text/javascript \
application/javascript \
application/x-javascript \
application/json \
application/rss+xml \
application/vnd.ms-fontobject \
application/x-font-ttf \
application/x-web-app-manifest+json \
application/xhtml+xml \
application/xml \
font/opentype \
image/svg+xml \
image/x-icon \
text/css \
text/html \
text/plain \
text/x-component \
text/xml
</IfModule>

3
.updateignore Executable file
View File

@ -0,0 +1,3 @@
favicon.ico
favicon.png
.htaccess

57
COPYRIGHT.txt Executable file
View File

@ -0,0 +1,57 @@
Copyright (c) 2014-2024 Danang Probo Sayekti.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 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 as the file LICENSE.txt; if not, please see
http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
HTMLy includes works under other copyright notices and distributed
according to the terms of the GNU General Public License or a compatible
license, including:
Dispatch - (c) 2014 Jesus A. Domingo <jesus.domingo@gmail.com>
Composer - (c) 2011 Nils Adermann, Jordi Boggiano
PHP Markdown & Extra - (c) 2004-2009 Michel Fortin
Markdown - (c) 2003-2006 John Gruber
RSSWriter - (c) Suin <https://github.com/suin>
Showdown code - (c) 2007 John Fraser
Pagedown modifications and bugfixes - (c) 2009 Dana Robinson
Pagedown modifications and bugfixes - (c) 2009-2013 Stack Exchange Inc.
jQuery - (c) The jQuery Foundation
jQuery UI - (c) The jQuery Foundation
Hub Updater - (c) Kanti.de <https://github.com/Kanti>
Password Compat - (c) Anthony Ferrara <https://github.com/ircmaxell>
URLify for PHP by jbroadway <https://github.com/jbroadway> based on URLify.js - (c) Django Software Foundation and individual contributors
Twenty Fifteen & Twenty Sixteen theme - (c) WordPress.org & Automattic.com
Bootstrap - Copyright 2011-2019 The Bootstrap Authors <https://github.com/twbs/bootstrap/graphs/contributors>
AdminLTE - Copyright 2014-2020 Colorlib <http://colorlib.com>
Font Awesome - @davegandy <http://fontawesome.io>
Nestable jQuery Plugin - Copyright (c) 2012 David Bushell <http://dbushell.com>
Social Logos - (c) Automattic

339
LICENSE.txt Executable file
View File

@ -0,0 +1,339 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.) 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
this service 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 make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. 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.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the 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 a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE 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.
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
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the 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 2 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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author
Gnomovision 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, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
`Gnomovision' (which makes passes at compilers) written by James Hacker.
<signature of Ty Coon>, 1 April 1989
Ty Coon, President of Vice
This 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.

64
README.md Executable file
View File

@ -0,0 +1,64 @@
# [![HTMLy logo](https://raw.githubusercontent.com/danpros/htmly/master/system/resources/images/htmly-small.png)](https://www.htmly.com/)
HTMLy is an open source databaseless blogging platform prioritizes simplicity and speed written in PHP.
It uses a unique algorithm to find or list any content based on date, type, category, tag, or author, and it's performance remain fast even if we have ten thousand of posts and hundreds of tags.
## Requirements
HTMLy requires PHP 7.2 or greater, PHP-Mbstring, PHP-XML, PHP-INTL, PHP-GD, and PHP-ZIP package for backup feature.
## Installations
Install HTMLy using the source code:
1. Download the latest version from the [Github repo](https://github.com/danpros/htmly/releases/latest)
2. Upload and extract the zip file to your web server. You can upload it in the root directory, or in subdirectory such as `htmly`.
3. Visit your domain. If you extract it in root directory visit `https://www.example.com/install.php` and if in subdirectory visit `https://www.example.com/htmly/install.php`.
4. Follow the installer to install HTMLy.
5. The installer will try to delete itself. Please delete the installer manually if the `install.php` still exist.
**Note:** If you don't need to log in to the dashboard, just rename `config.ini.example` to `config.ini`, delete `install.php`, and you are set. It's always good practice to set the `site.url`
### Online install
Install HTMLy without downloading the source code and use the online installer:
1. Download `online-installer.php` from the [latest release](https://github.com/danpros/htmly/releases/latest)
2. If you upload it in root directory visit `https://www.example.com/online-installer.php` or if in subdirectory visit `https://www.example.com/subdirectory/online-installer.php`.
3. Follow the installer to install HTMLy.
4. Please delete the installer manually if the `online-installer.php` and `install.php` still exist.
## Configurations
Set written permission for the `cache` and `content` directories.
Users assigned with the admin role can edit/delete all users posts.
To access the admin panel, add `/login` to the end of your site's URL.
e.g. `www.yoursite.com/login`
## Resources
- Homepage: [HTMLy Homepage](https://www.htmly.com/)
- Documentation: [HTMLy Docs](https://docs.htmly.com/)
- Themes: [HTMLy Themes](https://www.htmly.com/theme/)
- Demo: [HTMLy Demo](http://demo.htmly.com/)
- Repository: [Github](https://github.com/danpros/htmly/)
## Contribute
1. Fork and edit
2. Submit pull request for consideration
## Contributors
Thank you to our [contributors](https://github.com/danpros/htmly/graphs/contributors)
## Sponsors
Support this project by becoming a [sponsor](https://github.com/sponsors/danpros)
## Copyright / License
For copyright notice please read [COPYRIGHT.txt](https://github.com/danpros/htmly/blob/master/COPYRIGHT.txt). HTMLy is licensed under the GNU General Public License Version 2.0 (or later).

5
SECURITY.md Executable file
View File

@ -0,0 +1,5 @@
## Security Policy
### Reporting Vulnerability
Please report any security vulnerabilities to **[dan@danpros.com](mailto:dan@danpros.com)**. If we can confirm the issue, we will release a patch as soon as possible.

27
composer.json Executable file
View File

@ -0,0 +1,27 @@
{
"config": {
"vendor-dir": "system/vendor/",
"optimize-autoloader": true,
"platform": {
"php": "7.2"
}
},
"require": {
"ircmaxell/password-compat": "1.*",
"michelf/php-markdown": "1.*",
"suin/php-rss-writer": "1.*",
"kanti/hub-updater": "0.*",
"jbroadway/urlify": "^1.0",
"pragmarx/google2fa": "^8.0",
"bacon/bacon-qr-code": "^3.0"
},
"autoload": {
"files": [
"system/includes/dispatch.php",
"system/includes/functions.php",
"system/admin/admin.php",
"system/includes/session.php",
"system/includes/opml.php"
]
}
}

718
composer.lock generated Executable file
View File

@ -0,0 +1,718 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "2628919cda4d7c16d0e4281811334ad7",
"packages": [
{
"name": "bacon/bacon-qr-code",
"version": "v3.0.0",
"source": {
"type": "git",
"url": "https://github.com/Bacon/BaconQrCode.git",
"reference": "510de6eca6248d77d31b339d62437cc995e2fb41"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/510de6eca6248d77d31b339d62437cc995e2fb41",
"reference": "510de6eca6248d77d31b339d62437cc995e2fb41",
"shasum": ""
},
"require": {
"dasprid/enum": "^1.0.3",
"ext-iconv": "*",
"php": "^8.1"
},
"require-dev": {
"phly/keep-a-changelog": "^2.12",
"phpunit/phpunit": "^10.5.11 || 11.0.4",
"spatie/phpunit-snapshot-assertions": "^5.1.5",
"squizlabs/php_codesniffer": "^3.9"
},
"suggest": {
"ext-imagick": "to generate QR code images"
},
"type": "library",
"autoload": {
"psr-4": {
"BaconQrCode\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-2-Clause"
],
"authors": [
{
"name": "Ben Scholzen 'DASPRiD'",
"email": "mail@dasprids.de",
"homepage": "https://dasprids.de/",
"role": "Developer"
}
],
"description": "BaconQrCode is a QR code generator for PHP.",
"homepage": "https://github.com/Bacon/BaconQrCode",
"support": {
"issues": "https://github.com/Bacon/BaconQrCode/issues",
"source": "https://github.com/Bacon/BaconQrCode/tree/v3.0.0"
},
"time": "2024-04-18T11:16:25+00:00"
},
{
"name": "composer/ca-bundle",
"version": "1.5.0",
"source": {
"type": "git",
"url": "https://github.com/composer/ca-bundle.git",
"reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
"reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
"shasum": ""
},
"require": {
"ext-openssl": "*",
"ext-pcre": "*",
"php": "^7.2 || ^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"psr/log": "^1.0",
"symfony/phpunit-bridge": "^4.2 || ^5",
"symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"Composer\\CaBundle\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
}
],
"description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
"keywords": [
"cabundle",
"cacert",
"certificate",
"ssl",
"tls"
],
"support": {
"irc": "irc://irc.freenode.org/composer",
"issues": "https://github.com/composer/ca-bundle/issues",
"source": "https://github.com/composer/ca-bundle/tree/1.5.0"
},
"funding": [
{
"url": "https://packagist.com",
"type": "custom"
},
{
"url": "https://github.com/composer",
"type": "github"
},
{
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
"type": "tidelift"
}
],
"time": "2024-03-15T14:00:32+00:00"
},
{
"name": "dasprid/enum",
"version": "1.0.5",
"source": {
"type": "git",
"url": "https://github.com/DASPRiD/Enum.git",
"reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
"reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
"shasum": ""
},
"require": {
"php": ">=7.1 <9.0"
},
"require-dev": {
"phpunit/phpunit": "^7 | ^8 | ^9",
"squizlabs/php_codesniffer": "*"
},
"type": "library",
"autoload": {
"psr-4": {
"DASPRiD\\Enum\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-2-Clause"
],
"authors": [
{
"name": "Ben Scholzen 'DASPRiD'",
"email": "mail@dasprids.de",
"homepage": "https://dasprids.de/",
"role": "Developer"
}
],
"description": "PHP 7.1 enum implementation",
"keywords": [
"enum",
"map"
],
"support": {
"issues": "https://github.com/DASPRiD/Enum/issues",
"source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
},
"time": "2023-08-25T16:18:39+00:00"
},
{
"name": "ircmaxell/password-compat",
"version": "v1.0.4",
"source": {
"type": "git",
"url": "https://github.com/ircmaxell/password_compat.git",
"reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ircmaxell/password_compat/zipball/5c5cde8822a69545767f7c7f3058cb15ff84614c",
"reference": "5c5cde8822a69545767f7c7f3058cb15ff84614c",
"shasum": ""
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"type": "library",
"autoload": {
"files": [
"lib/password.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Anthony Ferrara",
"email": "ircmaxell@php.net",
"homepage": "http://blog.ircmaxell.com"
}
],
"description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
"homepage": "https://github.com/ircmaxell/password_compat",
"keywords": [
"hashing",
"password"
],
"support": {
"issues": "https://github.com/ircmaxell/password_compat/issues",
"source": "https://github.com/ircmaxell/password_compat/tree/v1.0"
},
"time": "2014-11-20T16:49:30+00:00"
},
{
"name": "jbroadway/urlify",
"version": "1.2.4-stable",
"source": {
"type": "git",
"url": "https://github.com/jbroadway/urlify.git",
"reference": "d0fafbaa1dc14e8039cdf5c72a932a8d1de1750e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/jbroadway/urlify/zipball/d0fafbaa1dc14e8039cdf5c72a932a8d1de1750e",
"reference": "d0fafbaa1dc14e8039cdf5c72a932a8d1de1750e",
"shasum": ""
},
"require": {
"php": ">=7.2",
"voku/portable-ascii": "^2.0",
"voku/stop-words": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"autoload": {
"psr-0": {
"URLify": ""
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause-Clear"
],
"authors": [
{
"name": "Johnny Broadway",
"email": "johnny@johnnybroadway.com",
"homepage": "http://www.johnnybroadway.com/"
}
],
"description": "A fast PHP slug generator and transliteration library that converts non-ascii characters for use in URLs.",
"homepage": "https://github.com/jbroadway/urlify",
"keywords": [
"ascii",
"blogging",
"blogs",
"downcode",
"encode",
"iconv",
"link",
"seo",
"slug",
"slugify",
"slugs",
"translit",
"transliterate",
"transliteration",
"unicode",
"url",
"urlify"
],
"support": {
"issues": "https://github.com/jbroadway/urlify/issues",
"source": "https://github.com/jbroadway/urlify/tree/1.2.4-stable"
},
"time": "2022-06-15T16:46:46+00:00"
},
{
"name": "kanti/hub-updater",
"version": "v0.5.1",
"source": {
"type": "git",
"url": "https://github.com/Kanti/hub-updater.git",
"reference": "014b33c1e3880bd8e037a960a89e7116eb08a26e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/Kanti/hub-updater/zipball/014b33c1e3880bd8e037a960a89e7116eb08a26e",
"reference": "014b33c1e3880bd8e037a960a89e7116eb08a26e",
"shasum": ""
},
"require": {
"composer/ca-bundle": "^1.0",
"php": ">=5.3.6"
},
"require-dev": {
"codeclimate/php-test-reporter": "0.*",
"friendsofphp/php-cs-fixer": "1.*",
"phpro/grumphp": "0.*",
"phpunit/phpunit": "4.*",
"sebastian/phpcpd": "2.*",
"squizlabs/php_codesniffer": "2.*"
},
"type": "library",
"autoload": {
"psr-4": {
"Kanti\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"GPL-2.0"
],
"authors": [
{
"name": "Kanti",
"email": "git@kanti.de",
"homepage": "https://kanti.de",
"role": "Developer"
}
],
"description": "Simple Github Updater for Web Projects",
"support": {
"forum": "https://github.com/Kanti/hub-updater/issues",
"issues": "https://github.com/Kanti/hub-updater/issues",
"source": "https://github.com/Kanti/hub-updater"
},
"abandoned": true,
"time": "2016-08-02T19:12:55+00:00"
},
{
"name": "michelf/php-markdown",
"version": "1.9.1",
"source": {
"type": "git",
"url": "https://github.com/michelf/php-markdown.git",
"reference": "5024d623c1a057dcd2d076d25b7d270a1d0d55f3"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/michelf/php-markdown/zipball/5024d623c1a057dcd2d076d25b7d270a1d0d55f3",
"reference": "5024d623c1a057dcd2d076d25b7d270a1d0d55f3",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.3 <5.8"
},
"type": "library",
"autoload": {
"psr-4": {
"Michelf\\": "Michelf/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Michel Fortin",
"email": "michel.fortin@michelf.ca",
"homepage": "https://michelf.ca/",
"role": "Developer"
},
{
"name": "John Gruber",
"homepage": "https://daringfireball.net/"
}
],
"description": "PHP Markdown",
"homepage": "https://michelf.ca/projects/php-markdown/",
"keywords": [
"markdown"
],
"support": {
"issues": "https://github.com/michelf/php-markdown/issues",
"source": "https://github.com/michelf/php-markdown/tree/1.9.1"
},
"time": "2021-11-24T02:52:38+00:00"
},
{
"name": "paragonie/constant_time_encoding",
"version": "v2.7.0",
"source": {
"type": "git",
"url": "https://github.com/paragonie/constant_time_encoding.git",
"reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/52a0d99e69f56b9ec27ace92ba56897fe6993105",
"reference": "52a0d99e69f56b9ec27ace92ba56897fe6993105",
"shasum": ""
},
"require": {
"php": "^7|^8"
},
"require-dev": {
"phpunit/phpunit": "^6|^7|^8|^9",
"vimeo/psalm": "^1|^2|^3|^4"
},
"type": "library",
"autoload": {
"psr-4": {
"ParagonIE\\ConstantTime\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Paragon Initiative Enterprises",
"email": "security@paragonie.com",
"homepage": "https://paragonie.com",
"role": "Maintainer"
},
{
"name": "Steve 'Sc00bz' Thomas",
"email": "steve@tobtu.com",
"homepage": "https://www.tobtu.com",
"role": "Original Developer"
}
],
"description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
"keywords": [
"base16",
"base32",
"base32_decode",
"base32_encode",
"base64",
"base64_decode",
"base64_encode",
"bin2hex",
"encoding",
"hex",
"hex2bin",
"rfc4648"
],
"support": {
"email": "info@paragonie.com",
"issues": "https://github.com/paragonie/constant_time_encoding/issues",
"source": "https://github.com/paragonie/constant_time_encoding"
},
"time": "2024-05-08T12:18:48+00:00"
},
{
"name": "pragmarx/google2fa",
"version": "v8.0.1",
"source": {
"type": "git",
"url": "https://github.com/antonioribeiro/google2fa.git",
"reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/80c3d801b31fe165f8fe99ea085e0a37834e1be3",
"reference": "80c3d801b31fe165f8fe99ea085e0a37834e1be3",
"shasum": ""
},
"require": {
"paragonie/constant_time_encoding": "^1.0|^2.0",
"php": "^7.1|^8.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.18",
"phpunit/phpunit": "^7.5.15|^8.5|^9.0"
},
"type": "library",
"autoload": {
"psr-4": {
"PragmaRX\\Google2FA\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Antonio Carlos Ribeiro",
"email": "acr@antoniocarlosribeiro.com",
"role": "Creator & Designer"
}
],
"description": "A One Time Password Authentication package, compatible with Google Authenticator.",
"keywords": [
"2fa",
"Authentication",
"Two Factor Authentication",
"google2fa"
],
"support": {
"issues": "https://github.com/antonioribeiro/google2fa/issues",
"source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.1"
},
"time": "2022-06-13T21:57:56+00:00"
},
{
"name": "suin/php-rss-writer",
"version": "1.6.0",
"source": {
"type": "git",
"url": "https://github.com/suin/php-rss-writer.git",
"reference": "78f45e44a2a7cb0d82e4b9efb6f7b7a075b9051c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/suin/php-rss-writer/zipball/78f45e44a2a7cb0d82e4b9efb6f7b7a075b9051c",
"reference": "78f45e44a2a7cb0d82e4b9efb6f7b7a075b9051c",
"shasum": ""
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"eher/phpunit": ">=1.6",
"mockery/mockery": ">=0.7.2",
"suin/xoopsunit": ">=1.2"
},
"type": "library",
"autoload": {
"psr-0": {
"Suin\\RSSWriter": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "suin",
"email": "suinyeze@gmail.com"
}
],
"description": "Yet another simple RSS writer library for PHP 5.4 or later.",
"homepage": "https://github.com/suin/php-rss-writer",
"keywords": [
"feed",
"generator",
"php",
"rss",
"writer"
],
"support": {
"issues": "https://github.com/suin/php-rss-writer/issues",
"source": "https://github.com/suin/php-rss-writer/tree/master"
},
"time": "2017-07-13T10:47:50+00:00"
},
{
"name": "voku/portable-ascii",
"version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/voku/portable-ascii.git",
"reference": "b56450eed252f6801410d810c8e1727224ae0743"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
"reference": "b56450eed252f6801410d810c8e1727224ae0743",
"shasum": ""
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
},
"suggest": {
"ext-intl": "Use Intl for transliterator_transliterate() support"
},
"type": "library",
"autoload": {
"psr-4": {
"voku\\": "src/voku/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Lars Moelleken",
"homepage": "http://www.moelleken.org/"
}
],
"description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
"homepage": "https://github.com/voku/portable-ascii",
"keywords": [
"ascii",
"clean",
"php"
],
"support": {
"issues": "https://github.com/voku/portable-ascii/issues",
"source": "https://github.com/voku/portable-ascii/tree/2.0.1"
},
"funding": [
{
"url": "https://www.paypal.me/moelleken",
"type": "custom"
},
{
"url": "https://github.com/voku",
"type": "github"
},
{
"url": "https://opencollective.com/portable-ascii",
"type": "open_collective"
},
{
"url": "https://www.patreon.com/voku",
"type": "patreon"
},
{
"url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
"type": "tidelift"
}
],
"time": "2022-03-08T17:03:00+00:00"
},
{
"name": "voku/stop-words",
"version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/voku/stop-words.git",
"reference": "8e63c0af20f800b1600783764e0ce19e53969f71"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/voku/stop-words/zipball/8e63c0af20f800b1600783764e0ce19e53969f71",
"reference": "8e63c0af20f800b1600783764e0ce19e53969f71",
"shasum": ""
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "~6.0"
},
"type": "library",
"autoload": {
"psr-4": {
"voku\\": "src/voku/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Lars Moelleken",
"homepage": "http://www.moelleken.org/"
}
],
"description": "Stop-Words via PHP",
"keywords": [
"stop words",
"stop-words"
],
"support": {
"issues": "https://github.com/voku/stop-words/issues",
"source": "https://github.com/voku/stop-words/tree/master"
},
"time": "2018-11-23T01:37:27+00:00"
}
],
"packages-dev": [],
"aliases": [],
"minimum-stability": "stable",
"stability-flags": [],
"prefer-stable": false,
"prefer-lowest": false,
"platform": [],
"platform-dev": [],
"platform-overrides": {
"php": "7.2"
},
"plugin-api-version": "2.6.0"
}

1
config/.htaccess Executable file
View File

@ -0,0 +1 @@
deny from all

211
config/config.ini.example Executable file
View File

@ -0,0 +1,211 @@
; The URL of your blog.
site.url = ""
; Your timezone
timezone = "Asia/Jakarta"
; Date format.
date.format = "d F Y"
; Your language (example "en_US" for English or "de_DE" for German.
; See lang directory for available language)
language = "en_US"
; Blog info
blog.title = "HTMLy"
blog.tagline = "Just another HTMLy blog"
blog.description = "Proudly powered by HTMLy, a databaseless blogging platform."
blog.copyright = "(c) Your name."
; Set permalink type. "default" using /year/month/title. "post" using /post/title
permalink.type = "default"
; Make the frontpage static. Options "false" and "true"
static.frontpage = "false"
; Show the /blog url as the blog homepage. Options "false" and "true"
blog.enable = "false"
blog.path = "blog"
blog.string = "Blog"
; Social account
social.bluesky = ""
social.twitter = ""
social.facebook = ""
social.instagram = ""
social.linkedin = ""
social.github = ""
social.youtube = ""
social.mastodon = ""
social.tiktok = ""
; Breadcrumb home text. Useful when installed on subfolder.
breadcrumb.home = "Home"
; Comment system. Choose "facebook", "disqus", or "disable".
comment.system = "disable"
; Facebook comments
fb.appid = ""
fb.num = "5"
fb.color = "light"
; Disqus comments
disqus.shortname = ""
; Google Web Master Tool ID verification
google.wmt.id = ""
; Google analytics
google.analytics.id = ""
; Google gtag analytics
google.gtag.id = ""
; Login protection system Choose "google", "cloudflare", or "disable".
; https://www.google.com/recaptcha/admin
; https://developers.cloudflare.com/turnstile/
login.protect.system = "disable"
login.protect.public = ""
login.protect.private = ""
; Multi-factor authentication
mfa.state = "false"
; Pagination, RSS, and JSON
posts.perpage = "10"
category.perpage = "10"
tag.perpage = "10"
archive.perpage = "10"
search.perpage = "10"
profile.perpage = "10"
type.perpage = "10"
json.count = "10"
; Category info
category.info = "true"
; Related posts
related.count = "3"
; Recent posts
recent.count = "5"
; Popular posts
popular.count = "5"
; Tagcloud
tagcloud.count = "40"
; Read more link text for "full" teaser type
read.more = "Read more"
; Teaser type: set "trimmed" or "full".
teaser.type = "full"
; In summary mode, whether check the shortcode first or not before trim the content to x char
; Options: "default" and "check"
teaser.behave = "default"
; Teaser character count
teaser.char = "200"
; Description character count
description.char = "150"
; rss description type. body or meta
rss.description = "body"
; RSS feed count
rss.count = "10"
; RSS feed description length. If left empty we will use full page.
rss.char = "200"
; Enable views Counter, the options is "true" and "false".
; If set to "true", you can see the Counts in Admin page and popular posts.
views.counter = "false"
; Sitemap priorities between "0.0" and "1.0".
; Set "-1" (minus one) to disable a sitemap for the given type. (See /sitemap.xml)
sitemap.priority.base = "1.0"
sitemap.priority.post = "0.5"
sitemap.priority.static = "0.5"
sitemap.priority.category = "0.5"
sitemap.priority.tag = "0.5"
sitemap.priority.archiveMonth = "0.5"
sitemap.priority.archiveYear = "0.5"
sitemap.priority.author = "0.5"
sitemap.priority.type = "0.5"
; Also install pre-release
prerelease = "false"
; Cache expiration in hour. Eg. "6", "12". Default 6 hours.
cache.expiration = "6"
; Switch on and off the file cache for development purposes. Options "false" and "true"
cache.off = "false"
; Switch on and off the page generation time. Options "false" and "true"
generation.time = "false"
; Switch on and off the cache timestamp. Options "false" and "true"
cache.timestamp = "false"
; The site.url depends on where you are visiting from. Same installation
multi.site = "false"
; TOC label
toc.label = "Table of Contents"
; TOC inital state. Option "close and "open"
toc.state = "close"
; Load the default style or not. Option "default" and "theme"
toc.style = "default"
; Automatically add TOC, but first it check if the shortcode available or not
; Option "true" and "false"
toc.automatic = "false"
; Automatically insert the TOC after x paragraph
toc.position = "1"
; Title formats
home.title.format = "%blog_title% - %blog_tagline%"
post.title.format = "%post_title% - %blog_title%"
page.title.format = "%page_title% - %blog_title%"
category.title.format = "%category_title% - %blog_title%"
tag.title.format = "%tag_title% - %blog_title%"
archive.title.format = "%archive_title% - %blog_title%"
search.title.format = "%search_title% - %blog_title%"
type.title.format = "%type_title% - %blog_title%"
profile.title.format = "%author_name% - %blog_title%"
blog.title.format = "Blog - %blog_title%"
default.title.format = "%page_title% - %blog_title%"
; Default image for Open Graph
default.image = ""
; Favicon image
favicon.image = ""
; Autosave
autosave.enable = "true"
; Show HTMLy version
show.version = "true"
; Set the theme here
views.root = "themes/tailwind"
; Framework config. No need to edit.
views.layout = "layout"
; Admin theme mode: light or dark
admin.theme = "light"
; Fulltext search
fulltext.search = "false"

View File

@ -0,0 +1,11 @@
;Password
password = yourpassword
;Encryption. Set to clear, and later it will changed to password_hash automatically during login
encryption = clear
;Role
role = admin
;MFA Secret - This is generated inside of the admin area, set to "disabled" to turn off MFA for a user.
mfa_secret = disabled

BIN
favicon.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

14
humans.txt Executable file
View File

@ -0,0 +1,14 @@
/* TEAM */
Owner: danpros
Github: https://github.com/danpros
Weblog: https://www.danpros.com
Contributor: Kanti
Github: https://github.com/Kanti
Weblog: https://kanti.de
Location: Stuttgart - Germany
Full contributor: https://github.com/danpros/htmly/graphs/contributors
/* SITE */
Software: HTMLy

6
index.php Executable file
View File

@ -0,0 +1,6 @@
<?php
define('HTMLY', true);
define('HTMLY_VERSION', 'v3.0.4');
$config_file = 'config/config.ini';
require 'system/vendor/autoload.php';
require 'system/htmly.php';

332
lang/ar_AR.ini Executable file
View File

@ -0,0 +1,332 @@
about = "حول"
add_category = "إضافة فئة"
add_content = "إضافة محتوى"
add_link = "إضافة ارتباط"
add_menu = "إضافة قائمة"
add_new_page = "إضافة صفحة جديدة"
add_new_post = "إضافة منشور جديد"
add_source_link_optional = "إضافة رابط المصدر (اختياري)"
add_sub = "إضافة صفحة فرعية"
address_url = "العنوان (URL)"
admin = "المسؤول"
admin_panel_style_based_on = "نمط لوحة المشرف يعتمد على"
all_blog_posts = "كافة منشورات المدونة"
all_cache_has_been_deleted = "تم حذف كل ذاكرة التخزين المؤقت!"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "أرشيفات"
are_you_sure_you_want_to_delete_ = "هل أنت متأكد أنك تريد حذف <strong>٪ s </strong>؟"
at_the_moment_you_are_using_auto_generated_menu = "في الوقت الحالي أنت تستخدم قائمة تم إنشاؤها تلقائيًا."
audio_post = "مشاركة صوتية"
audio_post_comment = "إنشاء منشور مدونة بصوت مميز"
author = "المؤلف"
author_description = "Just another HTMLy user"
back_to = "رجوع إلى"
backup = "النسخ الاحتياطي"
blog_description = "في فقرة واحدة ، أخبرنا بالمزيد عن مدونتك."
blog_theme = "سمة المدونة"
blog_title = "عنوان المدونة"
blog_title_placeholder = "مدونة HTMLy الخاصة بي"
blog_posts_displayed_as = "تم عرض مشاركات المدونة على شكل"
breadcrumb_home_text = "نص الصفحة الرئيسية لمسار التنقل"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "باستخدام هذا المستورد ، فأنت توافق على ما إذا كانت الخلاصة ملكك أو على الأقل لديك الصلاحية لنشرها."
css_class_optional = "فئة CSS (اختياري)"
cache_expiration = "انتهاء صلاحية ذاكرة التخزين المؤقت (بالساعات)"
cache_off = "إيقاف ذاكرة التخزين المؤقت"
cache_timestamp = "الطابع الزمني لذاكرة التخزين المؤقت"
cancel = "إلغاء"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha not correct"
categories = "فئات"
category = "فئة"
check_update = "تحقق من التحديث"
clear_cache = "مسح ذاكرة التخزين المؤقت"
comma_separated_values = "قيم مفصولة بفواصل"
comment_system = "نظام التعليق"
comments = "تعليقات"
config = "التكوين"
congrats_you_have_the_latest_version_of_htmly = "تهانينا! لديك أحدث إصدار من HTMLy."
content = "المحتوى"
contents = "المحتويات"
copyright_line = "خط حقوق النشر"
copyright_line_placeholder = "(ج) اسمك."
create_backup = "إنشاء نسخة احتياطية"
created = "تم إنشاؤه"
custom = "مخصص"
custom_settings = "إعدادات مخصصة"
dashboard = "لوحة المعلومات"
date = "التاريخ"
date_format = "تنسيق التاريخ"
delete = "حذف"
description = "الوصف"
disable = "تعطيل"
disabled = "معطل"
disqus_shortname = "اسم قصير لمناقصة"
disqus_shortname_placeholder = "htmly"
draft = "مسودة"
edit = "تحرير"
edit_category = "تحرير فئة"
edit_post = "Edit"
edit_profile = "تحرير ملف التعريف"
enable = "تمكين"
enable_blog_url = "تمكين عنوان URL للمدونة"
enter_image_url = "أدخل عنوان URL للصورة"
facebook_app_id = "معرف تطبيق Facebook"
facebook_page = "صفحة Facebook"
featured_audio = "صوت مميز"
featured_image = "صورة مميزة"
featured_link = "رابط مميز"
featured_quote = "اقتباس مميز"
featured_video = "فيديو مميز"
feed_url = "موجز URL"
filename = "اسم الملف"
follow = "متابعة"
for_google_site_verification_meta = "بالنسبة إلى تعريف موقع google-site-verification"
front_page_displays = "الصفحة الأولى تعرض"
full_post = "مشاركة كاملة"
general = "عام"
general_settings = "إعدادات عامة"
get_one_here = "احصل على واحد هنا"
github_pre_release = "الإصدار التجريبي من Github"
google_analytics = "تحليلات Google"
google_analytics_legacy = "Google Analytics (قديم)"
google_search_console = "Google Search Console"
home = "الصفحة الرئيسية"
if_left_empty_we_will_excerpt_it_from_the_content_below = "إذا تركت فارغة ، فسنقتطفها من المحتوى أدناه"
if_the_url_is_left_empty_we_will_use_the_page_title = "إذا ترك عنوان url فارغًا ، فسنستخدم عنوان الصفحة"
if_the_url_is_left_empty_we_will_use_the_post_title = "إذا ترك عنوان url فارغًا ، فسنستخدم عنوان المنشور"
image_post = "مشاركة صورة"
image_post_comment = "إنشاء منشور مدونة بصورة مميزة"
import = "استيراد"
import_feed = "بدء استيراد موجز ويب"
import_rss = "استيراد RSS"
import_rss_feed_2.0 = "استيراد موجز RSS 2.0"
insert_image = "إدراج صورة"
invalid_error = "ERROR: Invalid username or password"
language = "لغة النظام"
link_name = "اسم الرابط"
link_post = "رابط المنشور"
link_post_comment = "إنشاء منشور مدونة مع ارتباط مميز"
login = "تسجيل الدخول"
login_page = "صفحة تسجيل الدخول"
logout = "تسجيل الخروج"
menu = "Menu"
menus = "محرر القائمة"
meta_description = "وصف التعريف"
meta_description_character = "حرف وصف التعريف"
metatags = "العلامات الوصفية"
metatags_settings = "إعدادات العلامات الوصفية"
mine = "ملكي"
more = "المزيد"
my_draft = "مسودتي"
my_posts = "مشاركاتي"
name = "الاسم"
newer = "أحدث"
next = "التالي"
next_post = "المنشور التالي"
no_available_backup = "لا يوجد نسخ احتياطي متوفر في الوقت الحالي."
no_draft_found = "لم يتم العثور على مسودة"
no_posts_found = "لم يتم العثور على أية مشاركات"
no_related_post_found = "لم يتم العثور على منشور ذي صلة"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "No search results"
nope = "لا"
not = "لا"
older = "أقدم"
only = "فقط"
operations = "العمليات"
page = "Page"
page_generation_time = "وقت إنشاء الصفحة"
pages = "Pages"
pass_error = "Password field is required"
password = "كلمة المرور"
performance = "أداء"
performance_settings = "إعدادات الأداء"
permalink = "الرابط الثابت"
popular = "Popular"
popular_posts = "المشاركات الشائعة"
popular_posts_widget = "أداة المشاركات الشائعة"
popular_posts_widget_at_most = "أداة المشاركات الشائعة على الأكثر"
popular_tags = "العلامات الشائعة"
post_by_author = "Posts by this author"
posted_in = "تم النشر في"
posted_on = "تم النشر في"
posts = "المشاركات"
posts_by = "Posts by"
posts_draft = "مسودة المشاركات"
posts_in_archive_page_at_most = "المشاركات في صفحة الأرشيف على الأكثر"
posts_in_category_page_at_most = "المشاركات في صفحة الفئات على الأكثر"
posts_in_front_page_show_at_most = "تظهر المشاركات في الصفحة الأولى على الأكثر"
posts_in_profile_page_at_most = "المشاركات في صفحة الملف الشخصي على الأكثر"
posts_in_search_result_at_most = "المشاركات في نتائج البحث على الأكثر"
posts_in_tag_page_at_most = "المشاركات في صفحة العلامة على الأكثر"
posts_in_type_page_at_most = "المشاركات في صفحة النوع على الأكثر"
posts_index_settings = "إعدادات فهرس المشاركات"
posts_list = "قائمة المشاركات"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "الإصدار التجريبي"
prev = "قديم"
prev_post = "المنشور السابق"
preview = "معاينة"
profile_for = "Profile for"
proudly_powered_by = "مدعوم بفخر بواسطة"
publish = "نشر"
publish_draft = "نشر المسودة"
published = "منشور"
quote_post = "مشاركة مقتبسة"
quote_post_comment = "إنشاء منشور مدونة باقتباس مميز"
rss_character = "شخصية RSS"
rss_feeds_show_the_most_recent = "تظهر موجزات RSS الأحدث"
rss_settings = "إعدادات RSS"
read_more_text = "قراءة المزيد من النص"
read_more_text_placeholder = "قراءة المزيد"
reading = "جارٍ القراءة"
reading_settings = "إعدادات القراءة"
recaptcha = "reCAPTCHA"
recent_posts = "المشاركات الأخيرة"
recent_posts_widget_at_most = "أداة المشاركات الأخيرة على الأكثر"
regular_post = "مشاركة عادية"
regular_post_comment = "إنشاء منشور مدونة عادي"
related_posts = "منشورات ذات صلة"
related_widget_posts_at_most = "منشورات الأدوات ذات الصلة على الأكثر"
revert_to_draft = "عودة إلى المسودة"
save = "حفظ"
save_config = "حفظ التكوين"
save_edit = "حفظ التحرير"
save_menu = "حفظ القائمة"
save_as_draft = "حفظ كمسودة"
save_category = "حفظ فئة"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "بحث"
search_for = "بحث عن"
search_results_for = "Search results for"
search_results_not_found = "Search results not found!"
secret_key = "المفتاح السري"
settings = "الإعدادات"
sign_in_to_start_your_session = "قم بتسجيل الدخول لبدء جلستك"
site_key = "مفتاح الموقع"
sitemap = "خريطة الموقع"
slug = "سبيكة"
social_media = "وسائل التواصل الاجتماعي"
static_page = "صفحة ثابتة"
static_page_comment = "إنشاء صفحة ثابتة"
static_pages = "صفحات ثابتة"
summary = "ملخص"
summary_character = "شخصية الملخص"
tag = "علامة"
tagcloud_widget_at_most = "TagCloud at most"
tagline = "سطر الوصف"
tagline_placeholder = "منصة تدوين PHP بدون قاعدة بيانات"
tagline_description = "في بضع كلمات ، اشرح موضوع هذه المدونة."
tags = "علامات"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "هذا رمز قديم. عادةً ما يتم إنشاء تحليلات جديدة باستخدام gtag.js"
this_page_doesnt_exist = "هذه الصفحة غير موجودة!"
time = "الوقت"
timezone = "المنطقة الزمنية"
title = "العنوان"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "لاستخدام Disqus أو Facebook ، تحتاج إلى تقديم اسم قصير لـ Disqus أو معرّف تطبيق Facebook."
token_error = "CSRF Token not correct"
tools = "أدوات"
twitter_account = "حساب Twitter"
type_to_search = "اكتب للبحث"
uncategorized = "غير مصنف"
uncategorized_comment = "الموضوعات التي لا تحتاج إلى فئة أو لا تتناسب مع أي فئة أخرى موجودة"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "تحديث"
update_available = "التحديث متاح"
update_draft = "تحديث المسودة"
update_post = "تحديث المنشور"
update_to = "تحديث إلى"
upload = "تحميل"
user = "مستخدم"
user_error = "User field is required"
valid_values_range_from_0_to_1.0._see = "تتراوح القيم الصالحة من 0.0 إلى 1.0. راجع"
video_post = "مشاركة فيديو"
video_post_comment = "إنشاء منشور مدونة بفيديو مميز"
view = "عرض"
view_post = "View"
views = "المشاهدات"
widget = "أداة"
widget_settings = "إعدادات الأداة"
would_you_like_to_try_our = "هل ترغب في تجربة"
yes_im_in = "نعم أنا موجود"
yes_not_recommended = "نعم (غير مستحسن)"
you_dont_have_permission_to_access_this_page = "ليس لديك إذن للوصول إلى هذه الصفحة"
your_new_config_key = "مفتاح التكوين الجديد الخاص بك"
your_new_value = "قيمتك الجديدة"
your_backups = "نُسخك الاحتياطية"
your_latest_blog_posts = "أحدث مشاركات المدونة الخاصة بك"
your_recent_posts = "مشاركاتك الأخيرة"
by = "بقلم"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u> تلميح: </ u> استخدم <code> Ctrl </code> / <code> CMD </code> + <code> F </code> للبحث عن مفتاح التهيئة أو القيمة."
homepage = "الصفحة الرئيسية"
instead = "بدلاً من ذلك"
item_class = "إدراج فئة CSS"
item_slug = "إدراج عنوان URL للرابط"
now = "الآن"
of = "of"
optional = "اختياري"
post_your_post_slug = "/ نشر / your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u> نصائح احترافية: </ u> يمكنك إنشاء مفتاح تهيئة مخصص وطباعة قيمة مفتاح التهيئة في أي مكان في القالب."
read_more = "اقرأ المزيد"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/ سنة / شهر / your-post-slug"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

343
lang/da_DK.ini Executable file
View File

@ -0,0 +1,343 @@
about = "Om"
add_category = "Tilføj kategori"
add_content = "Tilføj"
add_link = "Tilføj link"
add_menu = "Tilføj menu"
add_new_page = "Tilføj ny side"
add_new_post = "Tilføj nyt indlæg"
add_source_link_optional = "Tilføj link til kilde (valgfrit)"
add_sub = "Ny underside"
address_url = "Adresse (URL)"
admin = "Admin"
admin_panel_style_based_on = "Admin-panelets design er baseret på"
all_blog_posts = "Alle blogindlæg"
all_cache_has_been_deleted = "Hele cachen er blevet ryddet!"
all_posts_tagged = "Alle indlæg tagget"
archive = "Arkiv"
archive_for = "Arkiv for"
archive_page_for = "Arkivside for"
archives = "Arkiver"
are_you_sure_you_want_to_delete_ = "Er du sikker på, at du ønsker at slette <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Lige nu bruger du den autogenererede menu."
audio_post = "Lydindlæg"
audio_post_comment = "Opret indlæg med lydklip"
author = "Forfatter"
author_description = "Bare endnu en HTMLy-bruger"
back_to = "Tilbage til"
backup = "Backup"
blog_description = "Skriv et par linier om din blog."
blog_theme = "Blog-tema"
blog_title = "Blogtitel"
blog_title_placeholder = "Min HTMLy-blog"
blog_posts_displayed_as = "Blogindlæg vist som"
breadcrumb_home_text = "Breadcrumb-tekst for Hjem"
by = "af"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Ved at bruge importværktøjet angiver du, at dette feed er dit, eller du har ret til at videreudgive det."
css_class_optional = "CSS-klasse (valgfrit)"
cache_expiration = "Cache-udløb (i timer)"
cache_off = "Cache deaktiveret"
cache_timestamp = "Cache-tidsstempel"
cancel = "Afbryd"
cannot_read_feed_content = "Kan ikke indlæse feed-indhold"
captcha_error = "reCaptcha ikke korrekt"
categories = "Kategorier"
category = "Kategori"
check_update = "Check opdateringer"
clear_cache = "Ryd cache"
comma_separated_values = "Kommaseparerede værdier (CSV)"
comment_system = "Kommentarsystem"
comments = "kommentarer"
config = "Konfiguration"
congrats_you_have_the_latest_version_of_htmly = "Tillykke! Du har den seneste version af HTMLy."
content = "Indhold"
contents = "Indhold"
continue_reading = "Læs videre"
copyright_line = "Copyright-linje"
copyright_line_placeholder = "(c) Dit navn."
create_backup = "Opret backup"
created = "Oprettet"
custom = "Særligt defineret"
custom_settings = "Særligt definerede indstillinger"
dashboard = "Dashboard"
date = "Dato"
date_format = "Datoformat"
delete = "Slet"
description = "Beskrivelse"
design_by = "Designet af"
disable = "Deaktiver"
disabled = "Deaktiveret"
disqus_shortname = "Disqus-navn (shortname)"
disqus_shortname_placeholder = "htmly"
draft = "Udkast"
edit = "Rediger"
edit_category = "Rediger kategori"
edit_post = "Rediger indlæg"
edit_profile = "Rediger profil"
enable = "Aktiver"
enable_blog_url = "Aktiver blog-URL"
enter_image_url = "Indtast billede-URL"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook-side"
featured_audio = "Fremhævet lydklip"
featured_image = "Fremhævet billede"
featured_link = "Fremhævet link"
featured_quote = "Fremhævet citat"
featured_video = "Fremhævet videoklip"
feed_url = "Feed-URL"
filename = "Filnavn"
follow = "Følg"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "Visning på forside"
full_post = "Fuldt indlæg"
general = "Generelt"
general_settings = "Generelle indstillinger"
get_one_here = "Get one here"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "Hjem"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Hvis denne ikke udfyldes, vil der blive indsat et uddrag fra indlægget nedenfor"
if_the_url_is_left_empty_we_will_use_the_page_title = "Hvis URL ikke udfyldes, vil sidens navn blive anvendt"
if_the_url_is_left_empty_we_will_use_the_post_title = "Hvis URL ikke udfyldes, vil indlæggets titel blive anvendt"
image_post = "Billedindlæg"
image_post_comment = "Opret indlæg med billede"
import = "Importer"
import_feed = "Start import af feed"
import_rss = "Importer RSS"
import_rss_feed_2.0 = "Importer RSS Feed 2.0"
insert_image = "Indsæt billede"
invalid_error = "FEJL: Ugyldigt navn og adgangskode"
language = "Systemsprog"
link_name = "Navn på link"
link_post = "Linkindlæg"
link_post_comment = "Opret indlæg med link"
login = "Login"
login_page = "Login-side"
logout = "Log ud"
menu = "Menu"
menus = "Menu-editor"
meta_description = "Metabeskrivelse"
meta_description_character = "Metabeskrivelse - antal tegn"
metatags = "Metatags"
metatags_settings = "Metatag-indstillinger"
mine = "Mine"
more = "Mere"
my_draft = "Mine udkast"
my_posts = "Mine indlæg"
name = "Navn"
newer = "Nyere"
newer_posts = "Nyere indlæg"
next = "Næste"
next_post = "Næste indlæg"
no_available_backup = "Der er ingen backups til rådighed."
no_draft_found = "Der er ikke fundet nogen udkast"
no_newer_posts = "Ingen nyere indlæg"
no_older_posts = "Ingen ældre indlæg"
no_posts_found = "Der er ikke fundet nogen indlæg"
no_related_post_found = "Der er ikke fundet nogen relaterede indlæg"
no_scheduled_posts_found = "Der er ikke fundet nogen planlagte indlæg"
no_search_results = "Ingen søgeresultater"
nope = "Nej"
not = "Ikke deaktiveret"
older = "Ældre"
older_posts = "Ældre indlæg"
only = "Kun"
operations = "Operationer"
page = "Side"
page_generation_time = "Tid til at generere side"
pages = "Sider"
pass_error = "Adgangskode påkrævet"
password = "Adgangskode"
performance = "Ydelse"
performance_settings = "Indstillinger for ydelse"
permalink = "Permalink"
popular = "Populært"
popular_posts = "Populære indlæg"
popular_posts_widget = "Widget med populære indlæg"
popular_posts_widget_at_most = "Widget med populære indlæg maksimalt"
popular_tags = "Populære tags"
post_by_author = "Indlæg af denne forfatter"
posted_in = "Indlæg i"
posted_on = "Indlæg den"
posts = "Indlæg"
posts_by = "Indlæg af"
posts_draft = "Udkast til indlæg"
posts_in_archive_page_at_most = "Indlæg på Arkivsiden maksimalt"
posts_in_category_page_at_most = "Indlæg på Kategorisiden maksimalt"
posts_in_front_page_show_at_most = "Indlæg på forsiden maksimalt"
posts_in_profile_page_at_most = "Indlæg på profilsiden maksimalt"
posts_in_search_result_at_most = "Indlæg på listen over søgeresultater maksimalt"
posts_in_tag_page_at_most = "Indlæg på tag-side maksimalt"
posts_in_type_page_at_most = "Indlæg på type-side maksimalt"
posts_index_settings = "Indstillinger for indlægsoversigt"
posts_list = "Liste over indlæg"
posts_tagged = "Indlæg tagget"
posts_with_type = "Indlæg med type"
pre_release = "Pre-release"
prev = "Foregående"
prev_post = "Foregående indlæg"
preview = "Forhåndsvisning"
previous = "Foregående"
profile_for = "Profil for"
proudly_powered_by = "Drives med stolthed på"
publish = "Udgiv"
publish_draft = "Udgiv udkast"
published = "Udgivet"
published_by = "Udgivet af"
quote_post = "Citatindlæg"
quote_post_comment = "Opret indlæg med citat"
rss_character = "RSS - antal tegn"
rss_feeds_show_the_most_recent = "RSS-feeds viser seneste"
rss_settings = "RSS-Indstillinger"
read_more = "Læs mere"
read_more_text = "Læs mere tekst"
read_more_text_placeholder = "Læs mere"
reading = "Læsning"
reading_settings = "Indstillinger for læsning"
recaptcha = "reCAPTCHA"
recent_comments = "Seneste kommentarer"
recent_posts = "Seneste indlæg"
recent_posts_widget_at_most = "Widget med seneste indlæg maksimalt"
regular_post = "Standardindlæg"
regular_post_comment = "Opret standardindlæg"
related_posts = "Relaterade indlæg"
related_widget_posts_at_most = "Widget med relaterede indlæg maksimalt"
return_to_home = "Tibage til forsiden"
revert_to_draft = "Tilbage til udkast"
save = "Gem"
save_config = "Gem konfiguration"
save_menu = "Save menu"
save_as_draft = "Gem som udkast"
save_category = "Gem kategori"
scheduled = "Planlagte indlæg"
scheduled_posts = "Planlagte indlæg"
scheduled_tips = "Hvis man udgiver et indlæg med fremtidig dato eller tidspunkt, vil det komme in under planlage indlæg"
search = "Søg"
search_for = "Søg efter"
search_results_for = "søgeresultater for"
search_results_not_found = "Ingen søgeresultater fundet!"
secret_key = "Hemmelig nøgle"
settings = "Indstillinger"
share_this_post = "Del indlæg"
sign_in_to_start_your_session = "Log ind for at starte din session"
site_key = "Site Key"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Sociale medier"
static_page = "Statisk side"
static_page_comment = "Opret statisk side"
static_pages = "Statiske sider"
summary = "Resummé"
summary_character = "Resummé - antal tegn"
tag = "Tag"
tagcloud_widget_at_most = "TagCloud maksimalt"
tagline = "Tagline"
tagline_placeholder = "Database-løs PHP-Blogging-Platform"
tagline_description = "Forklar med få ord, hvad denne blog handler om."
tags = "Tags"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "This is legacy code. Usually new created analytics using gtag.js"
this_page_doesnt_exist = "Denne side findes ikke!"
time = "Tid"
timezone = "Tidszone"
title = "Titel"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "For at bruge Disqus eller Facebook til at kommentere, skal de bruge dit Disqus-kortnavn eller Facebook App ID."
token_error = "CSRF Token ikke korrekt"
tools = "Værktøjer"
twitter_account = "Twitter-konto"
type_to_search = "Type at søge efter"
uncategorized = "Ingen kategori"
uncategorized_comment = "Indlæg, som ikke behøver en kategori eller ikke passer i de øvrige kategorier."
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Ukendt feed-format"
update = "Opdater"
update_available = "Opdatering tilgængelig"
update_draft = "Opdater udkast"
update_post = "Opdater indlæg"
update_to = "Opdater til"
upload = "Upload"
user = "Bruger"
user_error = "Bruger-felt påkrævet"
valid_values_range_from_0_to_1.0._see = "Gyldige værdier er fra 0.0 til 1.0. Se"
video_post = "Videindlæg"
video_post_comment = "Opret indlæg med video"
view = "Vis"
view_post = "Vis indlæg"
views = "Visninger"
widget = "Widget"
widget_settings = "Widget-indstillinger"
would_you_like_to_try_our = "Vil du gerne prøve vores "
yes_im_in = "Yes, jeg er med"
yes_not_recommended = "Ja (Anbefales ikke)"
you_dont_have_permission_to_access_this_page = "Du har ikke rettigheder til at tilgå denne side"
your_new_config_key = "Din nye konfigurationsnøgle"
your_new_value = "Din nye værdi"
your_backups = "Dine backups"
your_latest_blog_posts = "Dine seneste blogindlæg"
your_recent_posts = "Dine seneste indlæg"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>Hint:</u> Brug <code>Ctrl</code>/<code>CMD</code> + <code>F</code> for at søge efter din konfigurationsnøgle eller -værdi."
homepage = "Hjemmeside"
instead = "i stedet"
item_class = "Indsæt CSS-klasse"
item_slug = "Indsæt Link-URL"
now = "nu"
of = "af"
optional = "valgfri"
post_your_post_slug = "/indlæg/din-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>Pro-tips:</u> Du kan oprette egen konfigurationsnøgle og få vist værdien, hvor du vil i din skabelon."
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/år/måned/din-slug"
your_key = "din.nøgle"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/de_DE.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Über"
add_category = "Kategorie hinzufügen"
add_content = "Inhalt hinzufügen"
add_link = "Link hinzufügen"
add_menu = "Menü hinzufügen"
add_new_page = "Neue Seite hinzufügen"
add_new_post = "Neuen Beitrag hinzufügen"
add_source_link_optional = "Quell-Link hinzufügen (optional)"
add_sub = "Unterseite hinzufügen"
address_url = "Adresse (URL)"
admin = "Administrator"
admin_panel_style_based_on = "Admin-Panel-Stil basierend auf"
all_blog_posts = "Alle Beiträge"
all_cache_has_been_deleted = "Der gesamte Cache wurde gelöscht!"
all_posts_tagged = "Alle Beiträge getaggten"
archive_for = "Archiv für"
archive_page_for = "Archivseite für"
archives = "Archiv"
are_you_sure_you_want_to_delete_ = "Sind Sie sicher, dass Sie <strong>%s</strong> löschen wollen?"
at_the_moment_you_are_using_auto_generated_menu = "Im Moment verwenden Sie ein automatisch generiertes Menü."
audio_post = "Audio-Beitrag"
audio_post_comment = "Einen Beitrag zur Präsentation eines Audios erstellen"
author = "Autor"
author_description = "Nur ein weiterer HTMLy-Benutzer"
back_to = "Zurück zu"
backup = "Backup"
blog_description = "Beschreiben Sie in einem Absatz die Ausrichtung Ihres Blogs."
blog_posts_displayed_as = "Blog-Beiträge anzeigen als"
blog_theme = "Blog-Theme (Design)"
blog_title = "Blog-Titel"
blog_title_placeholder = "Ein HTMLy-Blog"
breadcrumb_home_text = "Bezeichnung für die Startseite im Breadcrumb-Menü"
by = "von"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Durch die Verwendung dieses Importeurs bestätigen Sie, dass der importierte Feed Ihnen gehört oder Sie berechtigt sind, seine Inhalte zu veröffentlichen."
cache_expiration = "Cache-Gültigkeitsdauer (in Stunden)"
cache_off = "Caching ausschalten"
cache_timestamp = "Cache-Zeitstempel"
cancel = "Abbrechen"
cannot_read_feed_content = "Feedinhalt kann nicht gelesen werden"
captcha_error = "reCAPTCHA nicht korrekt"
categories = "Kategorien"
category = "Kategorie"
check_shortcode = "Berücksichtige shortcode"
check_update = "Aktualisierung suchen"
clear_cache = "Cache löschen"
comma_separated_values = "Komma-getrennte Werte"
comment_system = "Kommentarsystem"
comments = "Kommentare"
config = "Konfiguration"
congrats_you_have_the_latest_version_of_htmly = "Herzlichen Glückwunsch! Sie haben die neueste Version von HTMLy."
content = "Inhalt"
contents = "Inhalt"
copyright_line = "Copyright-Zeile"
copyright_line_placeholder = "(c) Ihr Name."
create_backup = "Ein Backup erstellen"
created = "Erstellungsdatum"
css_class_optional = "CSS-Klasse (optional) "
custom = "Benutzerdefiniert"
custom_settings = "Benutzerdefinierte Einstellungen"
dashboard = "Übersicht"
date = "Datum"
date_format = "Datumsformat"
default = "Standard"
delete = "Löschen"
description = "Beschreibung"
disable = "Deaktivieren"
disabled = "Ausgeschaltet"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "Entwurf"
edit = "Bearbeiten"
edit_category = "Kategorie bearbeiten"
edit_post = "Bearbeiten"
edit_profile = "Profil bearbeiten"
enable = "Aktivieren"
enable_blog_url = "URL blog aktivieren"
enter_image_url = "Bild-URL eingeben"
facebook_app_id = "Facebook App-ID"
facebook_page = "Facebook-Seite"
featured_audio = "Ausgewähltes Audio"
featured_image = "Ausgewähltes Bild"
featured_link = "Ausgewählter Link"
featured_quote = "Ausgewähltes Zitat"
featured_video = "Ausgewähltes Video"
feed_url = "Feed-URL"
filename = "Dateiname"
follow = "Folgen"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "Startseite zeigt"
full_post = "Vollständiger Beitrag"
general = "Allgemeines"
general_settings = "Allgemeine Einstellungen"
get_one_here = "Get one here"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>Hinweis:</u> Nutzen Sie <code>STRG</code>/<code>CMD</code> + <code>F</code>, um nach einem Konfigurationsschlüssel oder Wert zu suchen."
home = "Startseite"
homepage = "Startseite"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Wenn das Feld leer bleibt, wird es aus dem folgenden Inhalt extrahiert"
if_the_url_is_left_empty_we_will_use_the_page_title = "Wenn die URL leer bleibt, wird der Seitentitel verwendet"
if_the_url_is_left_empty_we_will_use_the_post_title = "Wenn die URL leer bleibt, wird der Beitragstitel verwendet"
image_post = "Bild-Beitrag"
image_post_comment = "Einen Beitrag zur Präsentation eines Bildes erstellen"
import = "Importieren"
import_feed = "Feed importieren"
import_rss = "RSS importieren"
import_rss_feed_2.0 = "RSS-Feed 2.0 importieren"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = 'Bei Anzeige als Zusammenfassung wird entweder ein vorhandener shortcode ignoriert und die Zusammenfassung auf die angegebene Anzahl von Zeichen gekürzt (Standard) oder bis zum shortcode angezeigt (Berücksichtige shortcode).'
insert_image = "Bild einfügen"
instead = "stattdessen"
invalid_error = "FEHLER: Ungültiger Benutzername oder Passwort"
item_class = "CSS-Klasse"
item_slug = "Link-URL"
language = "Systemsprache"
link_name = "Name des Links"
link_post = "Link-Beitrag"
link_post_comment = "Einen Beitrag zur Präsentation eines Links erstellen"
login = "Anmeldung"
login_page = "Anmeldeseite"
logout = "Abmelden"
menu = "Menüs"
menus = "Menü-Editor"
meta_description = "Meta-Beschreibung"
meta_description_character = "Anzahl von Zeichen, die vom Inhalt übernommen werden, wenn das Feld Meta-Beschreibung leer gelassen wird"
metatags = "Metatags"
metatags_settings = "Metatags-Einstellungen"
mine = "Eigene Beiträge"
more = "Mehr"
my_draft = "Eigene Entwürfe"
my_posts = "Eigene Beiträge"
name = "Name"
newer = "Neuere"
next = "Nächster"
next_post = "Nächster Beitrag"
no_available_backup = "Derzeit ist kein Backup verfügbar."
no_draft_found = "Keine Entwürfe gefunden!"
no_posts_found = "Keine Beiträge gefunden!"
no_related_post_found = "Kein ähnlicher Beitrag gefunden!"
no_scheduled_posts_found = "Keine geplanten Beiträge gefunden!"
no_search_results = "Keine Suchergebnisse!"
nope = "Nein, danke."
not = "Nein"
now = "jetzt"
of = "von"
older = "Ältere"
only = "Nur"
operations = "Operationen"
optional = "optional"
page = "Seite"
page_generation_time = "Dauer der Seitenerzeugung"
pages = "Seiten"
pass_error = "Passwortfeld ist erforderlich!"
password = "Passwort"
performance = "Leistung"
performance_settings = "Leistungseinstellungen"
permalink = "Permalink"
popular = "Zugriffe"
popular_posts = "Beliebte Beiträge"
popular_posts_widget = "Zugriffszähler aktivieren und Widget Beliebte Beiträge einblenden"
popular_posts_widget_at_most = "Maximale Anzahl von Beiträgen im Widget Beliebte Beiträge"
popular_tags = "Beliebte Tags"
post_by_author = "Beiträge dieses Autors"
post_your_post_slug = "/post/your-post-slug"
posted_in = "Veröffentlicht unter"
posted_on = "Veröffentlicht am"
posts = "Inhalte"
posts_by = "Beiträge von"
posts_draft = "Entwürfe"
posts_in_archive_page_at_most = "Maximale Anzahl von Beiträgen auf Archiv-Seiten"
posts_in_category_page_at_most = "Maximale Anzahl von Beiträgen auf Kategorien-Seiten"
posts_in_front_page_show_at_most = "Maximale Anzahl von Beiträgen auf der Startseite"
posts_in_profile_page_at_most = "Maximale Anzahl von Beiträgen auf Profil-Seiten"
posts_in_search_result_at_most = "Maximale Anzahl von Beiträgen in Suchergebnissen"
posts_in_tag_page_at_most = "Maximale Anzahl von Beiträgen auf tag-Seiten"
posts_in_type_page_at_most = "Posts in type page at most"
posts_index_settings = "Einstellungen zur Anzahl von Beiträgen"
posts_list = "Beiträge"
posts_tagged = "Beiträge mit Stichwort"
posts_with_type = "Beiträge mit Typ"
pre_release = "Pre-release"
prev = "Voriger"
prev_post = "Vorheriger Beitrag"
preview = "Vorschau"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>Profi-Tipp:</u> Sie können einen eigenen Konfigurationsschlüssel erzeugen und dessen Wert überall im Template anzeigen lassen."
profile_for = "Profil von"
proudly_powered_by = "Powered by"
publish = "Veröffentlichen"
publish_draft = "Veröffentlichen"
published = "Veröffentlicht"
quote_post = "Zitat-Beitrag"
quote_post_comment = "Einen Beitrag zur Präsentation eines Zitats erstellen"
read_more = "weiterlesen"
read_more_text = "Weiterlesen-Text"
read_more_text_placeholder = "Mehr ..."
reading = "Lesen"
reading_settings = "Leseeinstellungen"
recaptcha = "reCAPTCHA"
recent_posts = "Letzte Beiträge"
recent_posts_widget_at_most = "Maximale Anzahl von Beiträgen im Widget Letzte Beiträge"
regular_post = "Normaler Beitrag"
regular_post_comment = "Einen normalen Beitrag erstellen"
related_posts = "Ähnliche Beiträge"
related_widget_posts_at_most = "Maximale Anzahl von Beiträgen im Widget Ähnliche Beiträge"
revert_to_draft = "Als Entwurf speichern"
rss_character = "Länge eines RSS-Beitrags (in Zeichen)"
rss_feeds_show_the_most_recent = "RSS-Feeds zeigen die folgende Anzahl der aktuellsten Beiträge"
rss_settings = "RSS-Einstellungen"
save = "Speichern"
save_as_draft = "Speichern als Entwurf"
save_category = "Kategorie speichern"
save_config = "Konfiguration speichern"
save_edit = "Änderungen speichern"
save_menu = "Menü speichern"
scheduled = "Geplant"
scheduled_posts = "Geplante Beiträge"
scheduled_tips = "Veröffentlichen eines Beitrags mit Zeitpunkt in der Zukunft, fügt ihn bei Geplante Beiträge hinzu"
search = "Suche"
search_for = "Suche nach"
search_results_for = "Suchergebnisse für"
search_results_not_found = "Suchergebnisse nicht gefunden!"
secret_key = "Secret Key"
settings = "Einstellungen"
sign_in_to_start_your_session = "Melden Sie sich an, um Ihre Sitzung zu starten"
site_key = "Site Key"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Social Media"
static_page = "Statische Seite"
static_page_comment = "Eine statische Seite erstellen"
static_pages = "Statische Seiten"
summary = "Zusammenfassung"
summary_behavior = 'Generieren der Zusammenfassung'
summary_character = "Länge der Zusammenfassung (in Zeichen)"
tag = "Schlagwort"
tagcloud_widget_at_most = "Höchstzahl Schlagwörter in Tag-Cloud"
tagline = "Slogan"
tagline_description = "Erklären Sie in wenigen Worten, worum es in diesem Blog geht."
tagline_placeholder = "Datenbanklose PHP-Blogging-Plattform"
tags = "Schlagworte"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Dies ist veralteter Code. Normalerweise wird gtag.js verwendet."
this_page_doesnt_exist = "Diese Seite existiert nicht!"
time = "Zeit"
timezone = "Zeitzone"
title = "Titel"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Um Disqus- oder Facebook-Kommentare einzubinden, geben Sie den Disqus-Kurznamen oder die Facebook App-ID an."
token_error = "CSRF-Token nicht korrekt"
tools = "Werkzeuge"
twitter_account = "Twitter-Konto"
type_to_search = "Tippen Sie, um zu suchen"
uncategorized = "Unkategorisiert"
uncategorized_comment = "Beiträge, die in keine Kategorie passen (sollen)."
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unbekanntes Feedformat"
update = "Aktualisieren"
update_available = "Update verfügbar"
update_draft = "Entwurf aktualisieren"
update_post = "Beitrag aktualisieren"
update_to = "Aktualisieren auf"
upload = "Upload"
user = "Benutzer"
user_error = "Benutzerfeld ist erforderlich"
valid_values_range_from_0_to_1.0._see = "Gültige Werte nur zwischen 0.0 und 1.0. Siehe"
video_post = "Video-Beitrag"
video_post_comment = "Einen Beitrag zur Präsentation eines Videos erstellen"
view = "Ansicht"
view_post = "Ansicht"
views = "Ansichten"
widget = "Widget"
widget_key_placeholder = "12345abcde"
widget_settings = "Widget-Einstellungen"
would_you_like_to_try_our = "Besuchen Sie doch unsere "
year_month_your_post_slug = "/year/month/your-post-slug"
yes_im_in = "Ja, ich bin dabei!"
yes_not_recommended = "Ja (nicht empfohlen)"
you_dont_have_permission_to_access_this_page = "Sie haben keine Berechtigung, auf diese Seite zuzugreifen."
your_backups = "Ihre Backups"
your_key = "your.key"
your_latest_blog_posts = "Neueste Blog-Beiträge"
your_new_config_key = "Neuer Konfigurations-Schlüssel"
your_new_value = "Neuer Wert"
your_recent_posts = "Ihre letzten Beiträge"
manage_users = "Benutzerverwaltung"
add_user = "Benutzer hinzufügen"
username = "Benutzername"
role = "Rolle"
change_password = "Passwort ändern"
config_mfa = "MFA konfigurieren"
mfacode = "MFA Code"
verify_code = "MFA code verifizieren"
verify_password = "Aktuelles Passwort verifizieren"
manualsetupkey = "Der setup key kann auch manuell hinzugefügt werden"
mfa_error = "MFA code ist nicht korrekt"
disablemfa = "MFA deaktivieren"
enable_auto_save = "Automatisches Speichern aktivieren"
explain_autosave = "Neue Inhalte oder Entwürfe werden automatisch alle 60 Sekunden gespeichert, wenn aktiviert."
login_protect_system = "Login-Schutz"
cloudflare_info = "Sehen Sie sich die Turnstile-Dokumentation von Cloudflare an: "
mfa_config = "Multi-Faktor-Authentifizierung (MFA)"
set_mfa_globally = "MFA ermöglichen"
explain_mfa = "Wenn aktiviert, ist MFA für alle Benutzer optional. Wenn deaktiviert, kann MFA nicht verwendet werden und das Feld wird auf der Anmeldeseite ausgeblendet."
set_version_publicly = "Version öffentlich sichtbar"
explain_version = "Standardmäßig ist die Version von HTMLy öffentlich im Quellcode sichtbar. Einige Administratoren ziehen es möglicherweise vor, dies auszublenden."
focus_mode = "Fokus-Modus umschalten"
writing = "Schreiben"
writing_settings = "Schreibeinstellungen"
security = "Sicherheit"
security_settings = "Sicherheitseinstellungen"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/de_DE_gender_doppelpunkt.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Über"
add_category = "Kategorie hinzufügen"
add_content = "Inhalt hinzufügen"
add_link = "Link hinzufügen"
add_menu = "Menü hinzufügen"
add_new_page = "Neue Seite hinzufügen"
add_new_post = "Neuen Beitrag hinzufügen"
add_source_link_optional = "Quell-Link hinzufügen (optional)"
add_sub = "Unterseite hinzufügen"
address_url = "Adresse (URL)"
admin = "Administrator:in"
admin_panel_style_based_on = "Admin-Panel-Stil basierend auf"
all_blog_posts = "Alle Beiträge"
all_cache_has_been_deleted = "Der gesamte Cache wurde gelöscht!"
all_posts_tagged = "Alle Beiträge getaggten"
archive_for = "Archiv für"
archive_page_for = "Archivseite für"
archives = "Archiv"
are_you_sure_you_want_to_delete_ = "Sind Sie sicher, dass Sie <strong>%s</strong> löschen wollen?"
at_the_moment_you_are_using_auto_generated_menu = "Im Moment verwenden Sie ein automatisch generiertes Menü."
audio_post = "Audio-Beitrag"
audio_post_comment = "Einen Beitrag zur Präsentation eines Audios erstellen"
author = "Autor:in"
author_description = "Nur ein:e weitere:r HTMLy-Benutzer:in"
back_to = "Zurück zu"
backup = "Backup"
blog_description = "Beschreiben Sie in einem Absatz die Ausrichtung Ihres Blogs."
blog_posts_displayed_as = "Blog-Beiträge anzeigen als"
blog_theme = "Blog-Theme (Design)"
blog_title = "Blog-Titel"
blog_title_placeholder = "Ein HTMLy-Blog"
breadcrumb_home_text = "Bezeichnung für die Startseite im Breadcrumb-Menü"
by = "von"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Durch die Verwendung dieses Importeurs bestätigen Sie, dass der importierte Feed Ihnen gehört oder Sie berechtigt sind, seine Inhalte zu veröffentlichen."
cache_expiration = "Cache-Gültigkeitsdauer (in Stunden)"
cache_off = "Caching ausschalten"
cache_timestamp = "Cache-Zeitstempel"
cancel = "Abbrechen"
cannot_read_feed_content = "Feedinhalt kann nicht gelesen werden"
captcha_error = "reCAPTCHA nicht korrekt"
categories = "Kategorien"
category = "Kategorie"
check_shortcode = "Berücksichtige shortcode"
check_update = "Aktualisierung suchen"
clear_cache = "Cache löschen"
comma_separated_values = "Komma-getrennte Werte"
comment_system = "Kommentarsystem"
comments = "Kommentare"
config = "Konfiguration"
congrats_you_have_the_latest_version_of_htmly = "Herzlichen Glückwunsch! Sie haben die neueste Version von HTMLy."
content = "Inhalt"
contents = "Inhalt"
copyright_line = "Copyright-Zeile"
copyright_line_placeholder = "(c) Ihr Name."
create_backup = "Ein Backup erstellen"
created = "Erstellungsdatum"
css_class_optional = "CSS-Klasse (optional) "
custom = "Benutzerdefiniert"
custom_settings = "Benutzerdefinierte Einstellungen"
dashboard = "Übersicht"
date = "Datum"
date_format = "Datumsformat"
default = "Standard"
delete = "Löschen"
description = "Beschreibung"
disable = "Deaktivieren"
disabled = "Ausgeschaltet"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "Entwurf"
edit = "Bearbeiten"
edit_category = "Kategorie bearbeiten"
edit_post = "Bearbeiten"
edit_profile = "Profil bearbeiten"
enable = "Aktivieren"
enable_blog_url = "URL blog aktivieren"
enter_image_url = "Bild-URL eingeben"
facebook_app_id = "Facebook App-ID"
facebook_page = "Facebook-Seite"
featured_audio = "Ausgewähltes Audio"
featured_image = "Ausgewähltes Bild"
featured_link = "Ausgewählter Link"
featured_quote = "Ausgewähltes Zitat"
featured_video = "Ausgewähltes Video"
feed_url = "Feed-URL"
filename = "Dateiname"
follow = "Folgen"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "Startseite zeigt"
full_post = "Vollständiger Beitrag"
general = "Allgemeines"
general_settings = "Allgemeine Einstellungen"
get_one_here = "Get one here"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>Hinweis:</u> Nutzen Sie <code>STRG</code>/<code>CMD</code> + <code>F</code>, um nach einem Konfigurationsschlüssel oder Wert zu suchen."
home = "Startseite"
homepage = "Startseite"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Wenn das Feld leer bleibt, wird es aus dem folgenden Inhalt extrahiert"
if_the_url_is_left_empty_we_will_use_the_page_title = "Wenn die URL leer bleibt, wird der Seitentitel verwendet"
if_the_url_is_left_empty_we_will_use_the_post_title = "Wenn die URL leer bleibt, wird der Beitragstitel verwendet"
image_post = "Bild-Beitrag"
image_post_comment = "Einen Beitrag zur Präsentation eines Bildes erstellen"
import = "Importieren"
import_feed = "Feed importieren"
import_rss = "RSS importieren"
import_rss_feed_2.0 = "RSS-Feed 2.0 importieren"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "Bei Anzeige als Zusammenfassung wird entweder ein vorhandener shortcode ignoriert und die Zusammenfassung auf die angegebene Anzahl von Zeichen gekürzt (Standard) oder bis zum shortcode angezeigt (Berücksichtige shortcode)."
insert_image = "Bild einfügen"
instead = "stattdessen"
invalid_error = "FEHLER: Ungültiger Benutzer:innen-Name oder Passwort"
item_class = "CSS-Klasse"
item_slug = "Link-URL"
language = "Systemsprache"
link_name = "Name des Links"
link_post = "Link-Beitrag"
link_post_comment = "Einen Beitrag zur Präsentation eines Links erstellen"
login = "Anmeldung"
login_page = "Anmeldeseite"
logout = "Abmelden"
menu = "Menüs"
menus = "Menü-Editor"
meta_description = "Meta-Beschreibung"
meta_description_character = "Anzahl von Zeichen, die vom Inhalt übernommen werden, wenn das Feld Meta-Beschreibung leer gelassen wird"
metatags = "Metatags"
metatags_settings = "Metatags-Einstellungen"
mine = "Eigene Beiträge"
more = "Mehr"
my_draft = "Eigene Entwürfe"
my_posts = "Eigene Beiträge"
name = "Name"
newer = "Neuere"
next = "Nächster"
next_post = "Nächster Beitrag"
no_available_backup = "Derzeit ist kein Backup verfügbar."
no_draft_found = "Keine Entwürfe gefunden!"
no_posts_found = "Keine Beiträge gefunden!"
no_related_post_found = "Kein ähnlicher Beitrag gefunden!"
no_scheduled_posts_found = "Keine geplanten Beiträge gefunden!"
no_search_results = "Keine Suchergebnisse!"
nope = "Nein, danke."
not = "Nein"
now = "jetzt"
of = "von"
older = "Ältere"
only = "Nur"
operations = "Operationen"
optional = "optional"
page = "Seite"
page_generation_time = "Dauer der Seitenerzeugung"
pages = "Seiten"
pass_error = "Passwortfeld ist erforderlich!"
password = "Passwort"
performance = "Leistung"
performance_settings = "Leistungseinstellungen"
permalink = "Permalink"
popular = "Zugriffe"
popular_posts = "Beliebte Beiträge"
popular_posts_widget = "Zugriffszähler aktivieren und Widget Beliebte Beiträge einblenden"
popular_posts_widget_at_most = "Maximale Anzahl von Beiträgen im Widget Beliebte Beiträge"
popular_tags = "Beliebte Tags"
post_by_author = "Beiträge dieser Autorin oder dieses Autors"
post_your_post_slug = "/post/your-post-slug"
posted_in = "Veröffentlicht unter"
posted_on = "Veröffentlicht am"
posts = "Inhalte"
posts_by = "Beiträge von"
posts_draft = "Entwürfe"
posts_in_archive_page_at_most = "Maximale Anzahl von Beiträgen auf Archiv-Seiten"
posts_in_category_page_at_most = "Maximale Anzahl von Beiträgen auf Kategorien-Seiten"
posts_in_front_page_show_at_most = "Maximale Anzahl von Beiträgen auf der Startseite"
posts_in_profile_page_at_most = "Maximale Anzahl von Beiträgen auf Profil-Seiten"
posts_in_search_result_at_most = "Maximale Anzahl von Beiträgen in Suchergebnissen"
posts_in_tag_page_at_most = "Maximale Anzahl von Beiträgen auf tag-Seiten"
posts_in_type_page_at_most = "Posts in type page at most"
posts_index_settings = "Einstellungen zur Anzahl von Beiträgen"
posts_list = "Beiträge"
posts_tagged = "Beiträge mit Stichwort"
posts_with_type = "Beiträge mit Typ"
pre_release = "Pre-release"
prev = "Voriger"
prev_post = "Vorheriger Beitrag"
preview = "Vorschau"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>Profi-Tipp:</u> Sie können einen eigenen Konfigurationsschlüssel erzeugen und dessen Wert überall im Template anzeigen lassen."
profile_for = "Profil von"
proudly_powered_by = "Powered by"
publish = "Veröffentlichen"
publish_draft = "Veröffentlichen"
published = "Veröffentlicht"
quote_post = "Zitat-Beitrag"
quote_post_comment = "Einen Beitrag zur Präsentation eines Zitats erstellen"
read_more = "weiterlesen"
read_more_text = "Weiterlesen-Text"
read_more_text_placeholder = "Mehr ..."
reading = "Lesen"
reading_settings = "Leseeinstellungen"
recaptcha = "reCAPTCHA"
recent_posts = "Letzte Beiträge"
recent_posts_widget_at_most = "Maximale Anzahl von Beiträgen im Widget Letzte Beiträge"
regular_post = "Normaler Beitrag"
regular_post_comment = "Einen normalen Beitrag erstellen"
related_posts = "Ähnliche Beiträge"
related_widget_posts_at_most = "Maximale Anzahl von Beiträgen im Widget Ähnliche Beiträge"
revert_to_draft = "Als Entwurf speichern"
rss_character = "Länge eines RSS-Beitrags (in Zeichen)"
rss_feeds_show_the_most_recent = "RSS-Feeds zeigen die folgende Anzahl der aktuellsten Beiträge"
rss_settings = "RSS-Einstellungen"
save = "Speichern"
save_as_draft = "Speichern als Entwurf"
save_category = "Kategorie speichern"
save_config = "Konfiguration speichern"
save_edit = "Änderungen speichern"
save_menu = "Menü speichern"
scheduled = "Geplant"
scheduled_posts = "Geplante Beiträge"
scheduled_tips = "Veröffentlichen eines Beitrags mit Zeitpunkt in der Zukunft, fügt ihn bei Geplante Beiträge hinzu"
search = "Suche"
search_for = "Suche nach"
search_results_for = "Suchergebnisse für"
search_results_not_found = "Suchergebnisse nicht gefunden!"
secret_key = "Secret Key"
settings = "Einstellungen"
sign_in_to_start_your_session = "Melden Sie sich an, um Ihre Sitzung zu starten"
site_key = "Site Key"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Social Media"
static_page = "Statische Seite"
static_page_comment = "Eine statische Seite erstellen"
static_pages = "Statische Seiten"
summary = "Zusammenfassung"
summary_behavior = "Generieren der Zusammenfassung"
summary_character = "Länge der Zusammenfassung (in Zeichen)"
tag = "Schlagwort"
tagcloud_widget_at_most = "Höchstzahl Schlagwörter in Tag-Cloud"
tagline = "Slogan"
tagline_description = "Erklären Sie in wenigen Worten, worum es in diesem Blog geht."
tagline_placeholder = "Datenbanklose PHP-Blogging-Plattform"
tags = "Schlagworte"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Dies ist veralteter Code. Normalerweise wird gtag.js verwendet."
this_page_doesnt_exist = "Diese Seite existiert nicht!"
time = "Zeit"
timezone = "Zeitzone"
title = "Titel"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Um Disqus- oder Facebook-Kommentare einzubinden, geben Sie den Disqus-Kurznamen oder die Facebook App-ID an."
token_error = "CSRF-Token nicht korrekt"
tools = "Werkzeuge"
twitter_account = "Twitter-Konto"
type_to_search = "Tippen Sie, um zu suchen"
uncategorized = "Unkategorisiert"
uncategorized_comment = "Beiträge, die in keine Kategorie passen (sollen)."
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unbekanntes Feedformat"
update = "Aktualisieren"
update_available = "Update verfügbar"
update_draft = "Entwurf aktualisieren"
update_post = "Beitrag aktualisieren"
update_to = "Aktualisieren auf"
upload = "Upload"
user = "Benutzer:in"
user_error = "Benutzer:innen-Feld ist erforderlich"
valid_values_range_from_0_to_1.0._see = "Gültige Werte nur zwischen 0.0 und 1.0. Siehe"
video_post = "Video-Beitrag"
video_post_comment = "Einen Beitrag zur Präsentation eines Videos erstellen"
view = "Ansicht"
view_post = "Ansicht"
views = "Ansichten"
widget = "Widget"
widget_key_placeholder = "12345abcde"
widget_settings = "Widget-Einstellungen"
would_you_like_to_try_our = "Besuchen Sie doch unsere "
year_month_your_post_slug = "/year/month/your-post-slug"
yes_im_in = "Ja, ich bin dabei!"
yes_not_recommended = "Ja (nicht empfohlen)"
you_dont_have_permission_to_access_this_page = "Sie haben keine Berechtigung, auf diese Seite zuzugreifen."
your_backups = "Ihre Backups"
your_key = "your.key"
your_latest_blog_posts = "Neueste Blog-Beiträge"
your_new_config_key = "Neuer Konfigurations-Schlüssel"
your_new_value = "Neuer Wert"
your_recent_posts = "Ihre letzten Beiträge"
manage_users = "Benutzer:innen-Verwaltung"
add_user = "Benutzer:in hinzufügen"
username = "Benutzer:innen-Name"
role = "Rolle"
change_password = "Passwort ändern"
config_mfa = "MFA konfigurieren"
mfacode = "MFA Code"
verify_code = "MFA code verifizieren"
verify_password = "Aktuelles Passwort verifizieren"
manualsetupkey = "Der setup key kann auch manuell hinzugefügt werden"
mfa_error = "MFA code ist nicht korrekt"
disablemfa = "MFA deaktivieren"
enable_auto_save = "Automatisches Speichern aktivieren"
explain_autosave = "Neue Inhalte oder Entwürfe werden automatisch alle 60 Sekunden gespeichert, wenn aktiviert."
login_protect_system = "Login-Schutz"
cloudflare_info = "Sehen Sie sich die Turnstile-Dokumentation von Cloudflare an: "
mfa_config = "Multi-Faktor-Authentifizierung (MFA)"
set_mfa_globally = "MFA ermöglichen"
explain_mfa = "Wenn aktiviert, ist MFA für alle Benutzer:innen optional. Wenn deaktiviert, kann MFA nicht verwendet werden und das Feld wird auf der Anmeldeseite ausgeblendet."
set_version_publicly = "Version öffentlich sichtbar"
explain_version = "Standardmäßig ist die Version von HTMLy öffentlich im Quellcode sichtbar. Einige Administrator:innen ziehen es möglicherweise vor, dies auszublenden."
focus_mode = "Fokus-Modus umschalten"
writing = "Schreiben"
writing_settings = "Schreibeinstellungen"
security = "Sicherheit"
security_settings = "Sicherheitseinstellungen"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

View File

@ -0,0 +1,332 @@
about = "Über"
add_category = "Kategorie hinzufügen"
add_content = "Inhalt hinzufügen"
add_link = "Link hinzufügen"
add_menu = "Menü hinzufügen"
add_new_page = "Neue Seite hinzufügen"
add_new_post = "Neuen Beitrag hinzufügen"
add_source_link_optional = "Quell-Link hinzufügen (optional)"
add_sub = "Unterseite hinzufügen"
address_url = "Adresse (URL)"
admin = "Administrator/-in"
admin_panel_style_based_on = "Admin-Panel-Stil basierend auf"
all_blog_posts = "Alle Beiträge"
all_cache_has_been_deleted = "Der gesamte Cache wurde gelöscht!"
all_posts_tagged = "Alle Beiträge getaggten"
archive_for = "Archiv für"
archive_page_for = "Archivseite für"
archives = "Archiv"
are_you_sure_you_want_to_delete_ = "Sind Sie sicher, dass Sie <strong>%s</strong> löschen wollen?"
at_the_moment_you_are_using_auto_generated_menu = "Im Moment verwenden Sie ein automatisch generiertes Menü."
audio_post = "Audio-Beitrag"
audio_post_comment = "Einen Beitrag zur Präsentation eines Audios erstellen"
author = "Autor/-in"
author_description = "Nur ein/-e weitere/-r HTMLy-Benutzer/-in"
back_to = "Zurück zu"
backup = "Backup"
blog_description = "Beschreiben Sie in einem Absatz die Ausrichtung Ihres Blogs."
blog_posts_displayed_as = "Blog-Beiträge anzeigen als"
blog_theme = "Blog-Theme (Design)"
blog_title = "Blog-Titel"
blog_title_placeholder = "Ein HTMLy-Blog"
breadcrumb_home_text = "Bezeichnung für die Startseite im Breadcrumb-Menü"
by = "von"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Durch die Verwendung dieses Importeurs bestätigen Sie, dass der importierte Feed Ihnen gehört oder Sie berechtigt sind, seine Inhalte zu veröffentlichen."
cache_expiration = "Cache-Gültigkeitsdauer (in Stunden)"
cache_off = "Caching ausschalten"
cache_timestamp = "Cache-Zeitstempel"
cancel = "Abbrechen"
cannot_read_feed_content = "Feedinhalt kann nicht gelesen werden"
captcha_error = "reCAPTCHA nicht korrekt"
categories = "Kategorien"
category = "Kategorie"
check_shortcode = "Berücksichtige shortcode"
check_update = "Aktualisierung suchen"
clear_cache = "Cache löschen"
comma_separated_values = "Komma-getrennte Werte"
comment_system = "Kommentarsystem"
comments = "Kommentare"
config = "Konfiguration"
congrats_you_have_the_latest_version_of_htmly = "Herzlichen Glückwunsch! Sie haben die neueste Version von HTMLy."
content = "Inhalt"
contents = "Inhalt"
copyright_line = "Copyright-Zeile"
copyright_line_placeholder = "(c) Ihr Name."
create_backup = "Ein Backup erstellen"
created = "Erstellungsdatum"
css_class_optional = "CSS-Klasse (optional) "
custom = "Benutzerdefiniert"
custom_settings = "Benutzerdefinierte Einstellungen"
dashboard = "Übersicht"
date = "Datum"
date_format = "Datumsformat"
default = "Standard"
delete = "Löschen"
description = "Beschreibung"
disable = "Deaktivieren"
disabled = "Ausgeschaltet"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "Entwurf"
edit = "Bearbeiten"
edit_category = "Kategorie bearbeiten"
edit_post = "Bearbeiten"
edit_profile = "Profil bearbeiten"
enable = "Aktivieren"
enable_blog_url = "URL blog aktivieren"
enter_image_url = "Bild-URL eingeben"
facebook_app_id = "Facebook App-ID"
facebook_page = "Facebook-Seite"
featured_audio = "Ausgewähltes Audio"
featured_image = "Ausgewähltes Bild"
featured_link = "Ausgewählter Link"
featured_quote = "Ausgewähltes Zitat"
featured_video = "Ausgewähltes Video"
feed_url = "Feed-URL"
filename = "Dateiname"
follow = "Folgen"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "Startseite zeigt"
full_post = "Vollständiger Beitrag"
general = "Allgemeines"
general_settings = "Allgemeine Einstellungen"
get_one_here = "Get one here"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>Hinweis:</u> Nutzen Sie <code>STRG</code>/<code>CMD</code> + <code>F</code>, um nach einem Konfigurationsschlüssel oder Wert zu suchen."
home = "Startseite"
homepage = "Startseite"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Wenn das Feld leer bleibt, wird es aus dem folgenden Inhalt extrahiert"
if_the_url_is_left_empty_we_will_use_the_page_title = "Wenn die URL leer bleibt, wird der Seitentitel verwendet"
if_the_url_is_left_empty_we_will_use_the_post_title = "Wenn die URL leer bleibt, wird der Beitragstitel verwendet"
image_post = "Bild-Beitrag"
image_post_comment = "Einen Beitrag zur Präsentation eines Bildes erstellen"
import = "Importieren"
import_feed = "Feed importieren"
import_rss = "RSS importieren"
import_rss_feed_2.0 = "RSS-Feed 2.0 importieren"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "Bei Anzeige als Zusammenfassung wird entweder ein vorhandener shortcode ignoriert und die Zusammenfassung auf die angegebene Anzahl von Zeichen gekürzt (Standard) oder bis zum shortcode angezeigt (Berücksichtige shortcode)."
insert_image = "Bild einfügen"
instead = "stattdessen"
invalid_error = "FEHLER: Ungültiger Benutzer/-innen-Name oder Passwort"
item_class = "CSS-Klasse"
item_slug = "Link-URL"
language = "Systemsprache"
link_name = "Name des Links"
link_post = "Link-Beitrag"
link_post_comment = "Einen Beitrag zur Präsentation eines Links erstellen"
login = "Anmeldung"
login_page = "Anmeldeseite"
logout = "Abmelden"
menu = "Menüs"
menus = "Menü-Editor"
meta_description = "Meta-Beschreibung"
meta_description_character = "Anzahl von Zeichen, die vom Inhalt übernommen werden, wenn das Feld Meta-Beschreibung leer gelassen wird"
metatags = "Metatags"
metatags_settings = "Metatags-Einstellungen"
mine = "Eigene Beiträge"
more = "Mehr"
my_draft = "Eigene Entwürfe"
my_posts = "Eigene Beiträge"
name = "Name"
newer = "Neuere"
next = "Nächster"
next_post = "Nächster Beitrag"
no_available_backup = "Derzeit ist kein Backup verfügbar."
no_draft_found = "Keine Entwürfe gefunden!"
no_posts_found = "Keine Beiträge gefunden!"
no_related_post_found = "Kein ähnlicher Beitrag gefunden!"
no_scheduled_posts_found = "Keine geplanten Beiträge gefunden!"
no_search_results = "Keine Suchergebnisse!"
nope = "Nein, danke."
not = "Nein"
now = "jetzt"
of = "von"
older = "Ältere"
only = "Nur"
operations = "Operationen"
optional = "optional"
page = "Seite"
page_generation_time = "Dauer der Seitenerzeugung"
pages = "Seiten"
pass_error = "Passwortfeld ist erforderlich!"
password = "Passwort"
performance = "Leistung"
performance_settings = "Leistungseinstellungen"
permalink = "Permalink"
popular = "Zugriffe"
popular_posts = "Beliebte Beiträge"
popular_posts_widget = "Zugriffszähler aktivieren und Widget Beliebte Beiträge einblenden"
popular_posts_widget_at_most = "Maximale Anzahl von Beiträgen im Widget Beliebte Beiträge"
popular_tags = "Beliebte Tags"
post_by_author = "Beiträge dieser Autorin oder dieses Autors"
post_your_post_slug = "/post/your-post-slug"
posted_in = "Veröffentlicht unter"
posted_on = "Veröffentlicht am"
posts = "Inhalte"
posts_by = "Beiträge von"
posts_draft = "Entwürfe"
posts_in_archive_page_at_most = "Maximale Anzahl von Beiträgen auf Archiv-Seiten"
posts_in_category_page_at_most = "Maximale Anzahl von Beiträgen auf Kategorien-Seiten"
posts_in_front_page_show_at_most = "Maximale Anzahl von Beiträgen auf der Startseite"
posts_in_profile_page_at_most = "Maximale Anzahl von Beiträgen auf Profil-Seiten"
posts_in_search_result_at_most = "Maximale Anzahl von Beiträgen in Suchergebnissen"
posts_in_tag_page_at_most = "Maximale Anzahl von Beiträgen auf tag-Seiten"
posts_in_type_page_at_most = "Posts in type page at most"
posts_index_settings = "Einstellungen zur Anzahl von Beiträgen"
posts_list = "Beiträge"
posts_tagged = "Beiträge mit Stichwort"
posts_with_type = "Beiträge mit Typ"
pre_release = "Pre-release"
prev = "Voriger"
prev_post = "Vorheriger Beitrag"
preview = "Vorschau"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>Profi-Tipp:</u> Sie können einen eigenen Konfigurationsschlüssel erzeugen und dessen Wert überall im Template anzeigen lassen."
profile_for = "Profil von"
proudly_powered_by = "Powered by"
publish = "Veröffentlichen"
publish_draft = "Veröffentlichen"
published = "Veröffentlicht"
quote_post = "Zitat-Beitrag"
quote_post_comment = "Einen Beitrag zur Präsentation eines Zitats erstellen"
read_more = "weiterlesen"
read_more_text = "Weiterlesen-Text"
read_more_text_placeholder = "Mehr ..."
reading = "Lesen"
reading_settings = "Leseeinstellungen"
recaptcha = "reCAPTCHA"
recent_posts = "Letzte Beiträge"
recent_posts_widget_at_most = "Maximale Anzahl von Beiträgen im Widget Letzte Beiträge"
regular_post = "Normaler Beitrag"
regular_post_comment = "Einen normalen Beitrag erstellen"
related_posts = "Ähnliche Beiträge"
related_widget_posts_at_most = "Maximale Anzahl von Beiträgen im Widget Ähnliche Beiträge"
revert_to_draft = "Als Entwurf speichern"
rss_character = "Länge eines RSS-Beitrags (in Zeichen)"
rss_feeds_show_the_most_recent = "RSS-Feeds zeigen die folgende Anzahl der aktuellsten Beiträge"
rss_settings = "RSS-Einstellungen"
save = "Speichern"
save_as_draft = "Speichern als Entwurf"
save_category = "Kategorie speichern"
save_config = "Konfiguration speichern"
save_edit = "Änderungen speichern"
save_menu = "Menü speichern"
scheduled = "Geplant"
scheduled_posts = "Geplante Beiträge"
scheduled_tips = "Veröffentlichen eines Beitrags mit Zeitpunkt in der Zukunft, fügt ihn bei Geplante Beiträge hinzu"
search = "Suche"
search_for = "Suche nach"
search_results_for = "Suchergebnisse für"
search_results_not_found = "Suchergebnisse nicht gefunden!"
secret_key = "Secret Key"
settings = "Einstellungen"
sign_in_to_start_your_session = "Melden Sie sich an, um Ihre Sitzung zu starten"
site_key = "Site Key"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Social Media"
static_page = "Statische Seite"
static_page_comment = "Eine statische Seite erstellen"
static_pages = "Statische Seiten"
summary = "Zusammenfassung"
summary_behavior = "Generieren der Zusammenfassung"
summary_character = "Länge der Zusammenfassung (in Zeichen)"
tag = "Schlagwort"
tagcloud_widget_at_most = "Höchstzahl Schlagwörter in Tag-Cloud"
tagline = "Slogan"
tagline_description = "Erklären Sie in wenigen Worten, worum es in diesem Blog geht."
tagline_placeholder = "Datenbanklose PHP-Blogging-Plattform"
tags = "Schlagworte"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Dies ist veralteter Code. Normalerweise wird gtag.js verwendet."
this_page_doesnt_exist = "Diese Seite existiert nicht!"
time = "Zeit"
timezone = "Zeitzone"
title = "Titel"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Um Disqus- oder Facebook-Kommentare einzubinden, geben Sie den Disqus-Kurznamen oder die Facebook App-ID an."
token_error = "CSRF-Token nicht korrekt"
tools = "Werkzeuge"
twitter_account = "Twitter-Konto"
type_to_search = "Tippen Sie, um zu suchen"
uncategorized = "Unkategorisiert"
uncategorized_comment = "Beiträge, die in keine Kategorie passen (sollen)."
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unbekanntes Feedformat"
update = "Aktualisieren"
update_available = "Update verfügbar"
update_draft = "Entwurf aktualisieren"
update_post = "Beitrag aktualisieren"
update_to = "Aktualisieren auf"
upload = "Upload"
user = "Benutzer/-in"
user_error = "Benutzer/-innen-Feld ist erforderlich"
valid_values_range_from_0_to_1.0._see = "Gültige Werte nur zwischen 0.0 und 1.0. Siehe"
video_post = "Video-Beitrag"
video_post_comment = "Einen Beitrag zur Präsentation eines Videos erstellen"
view = "Ansicht"
view_post = "Ansicht"
views = "Ansichten"
widget = "Widget"
widget_key_placeholder = "12345abcde"
widget_settings = "Widget-Einstellungen"
would_you_like_to_try_our = "Besuchen Sie doch unsere "
year_month_your_post_slug = "/year/month/your-post-slug"
yes_im_in = "Ja, ich bin dabei!"
yes_not_recommended = "Ja (nicht empfohlen)"
you_dont_have_permission_to_access_this_page = "Sie haben keine Berechtigung, auf diese Seite zuzugreifen."
your_backups = "Ihre Backups"
your_key = "your.key"
your_latest_blog_posts = "Neueste Blog-Beiträge"
your_new_config_key = "Neuer Konfigurations-Schlüssel"
your_new_value = "Neuer Wert"
your_recent_posts = "Ihre letzten Beiträge"
manage_users = "Benutzer/-innen-Verwaltung"
add_user = "Benutzer/-in hinzufügen"
username = "Benutzer/-innen-Name"
role = "Rolle"
change_password = "Passwort ändern"
config_mfa = "MFA konfigurieren"
mfacode = "MFA Code"
verify_code = "MFA code verifizieren"
verify_password = "Aktuelles Passwort verifizieren"
manualsetupkey = "Der setup key kann auch manuell hinzugefügt werden"
mfa_error = "MFA code ist nicht korrekt"
disablemfa = "MFA deaktivieren"
enable_auto_save = "Automatisches Speichern aktivieren"
explain_autosave = "Neue Inhalte oder Entwürfe werden automatisch alle 60 Sekunden gespeichert, wenn aktiviert."
login_protect_system = "Login-Schutz"
cloudflare_info = "Sehen Sie sich die Turnstile-Dokumentation von Cloudflare an: "
mfa_config = "Multi-Faktor-Authentifizierung (MFA)"
set_mfa_globally = "MFA ermöglichen"
explain_mfa = "Wenn aktiviert, ist MFA für alle Benutzer/-innen optional. Wenn deaktiviert, kann MFA nicht verwendet werden und das Feld wird auf der Anmeldeseite ausgeblendet."
set_version_publicly = "Version öffentlich sichtbar"
explain_version = "Standardmäßig ist die Version von HTMLy öffentlich im Quellcode sichtbar. Einige Administrator/-innen ziehen es möglicherweise vor, dies auszublenden."
focus_mode = "Fokus-Modus umschalten"
writing = "Schreiben"
writing_settings = "Schreibeinstellungen"
security = "Sicherheit"
security_settings = "Sicherheitseinstellungen"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

334
lang/el_GR.ini Executable file
View File

@ -0,0 +1,334 @@
about = "Σχετικά"
add_category = "Προσθήκη Κατηγορίας"
add_content = "Προσθήκη Περιεχομένου"
add_link = "Προσθήκη συνδέσμου"
add_menu = "Προσθήκη μενού"
add_new_page = "Προσθήκη νέας σελίδας"
add_new_post = "Προσθήκη νέας ανάρτησης"
add_source_link_optional = "Προσθήκη συνδέσμου πηγής (προαιρετικό)"
add_sub = "Προσθήκη Υποσελίδας"
address_url = "Διεύθυνση (URL)"
admin = "Διαχειριστής"
admin_panel_style_based_on = "Στιλ πίνακα διαχειριστή με βάση"
all_blog_posts = "Όλες οι αναρτήσεις ιστολογίου"
all_cache_has_been_deleted = "Όλη η προσωρινή μνήμη έχει διαγραφεί !"
all_posts_tagged = "Όλες οι αναρτήσεις με ετικέτα"
archive_for = "Αρχείο για"
archive_page_for = "Αρχειοθέτηση σελίδας για"
archives = "Αρχειοθέτηση"
are_you_sure_you_want_to_delete_ = "Είστε βέβαιοι ότι θέλετε να διαγράψετε <strong>%s</strong>;"
at_the_moment_you_are_using_auto_generated_menu = "Αυτή τη στιγμή χρησιμοποιείτε το μενού που δημιουργείται αυτόματα."
audio_post = "Ηχητική ανάρτηση"
audio_post_comment = "Δημιουργία ανάρτησης ιστολογίου με επιλεγμένο ήχο"
author = "Συγγραφέας"
author_description = " "
back_to = "Επιστροφή στο"
backup = "Αντίγραφα ασφαλείας"
blog_description = "Σε μία παράγραφο, πείτε μας περισσότερα για το ιστολόγιό σας."
blog_theme = "Θέμα ιστολογίου"
blog_title = "Τίτλος ιστολογίου"
blog_title_placeholder = "Το ιστολόγιό μου HTMLy"
blog_posts_displayed_as = "Οι αναρτήσεις ιστολογίου εμφανίζονται ως"
breadcrumb_home_text = "Αρχικό κείμενο ψωμιού"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Χρησιμοποιώντας αυτόν τον εισαγωγέα συμφωνείτε εάν η ροή είναι δική σας ή τουλάχιστον έχετε την εξουσία να τη δημοσιεύσετε."
css_class_optional = "Κλάση CSS (προαιρετικό)"
cache_expiration = "Λήξη προσωρινής μνήμης (σε ώρες)"
cache_off = "Απενεργοποίηση προσωρινής μνήμης"
cache_timestamp = "Cache timestamp"
cancel = "Άκυρο"
cannot_read_feed_content = "Δεν είναι δυνατή η ανάγνωση της ροής"
captcha_error = "το reCaptcha δεν είναι σωστό"
categories = "Κατηγορίες"
category = "Κατηγορία"
check_update = "Έλεγχος έκδοσης"
clear_cache = "Εκκαθάριση προσωρινής μνήμης"
comma_separated_values = "Τιμές διαχωρισμένες με κόμμα"
comment_system = "Σύστημα σχολίων"
comments = "Σχόλια"
config = "Διαμόρφωση"
congrats_you_have_the_latest_version_of_htmly = "Συγχαρητήρια! Έχετε την πιο πρόσφατη έκδοση του HTMLy."
content = "Περιεχόμενο"
contents = "Περιεχόμενα"
copyright_line = "Γραμμή πνευματικών δικαιωμάτων"
copyright_line_placeholder = "(γ) Το όνομά σας."
create_backup = "Δημιουργία αντιγράφου ασφαλείας"
created = "Δημιουργήθηκε"
custom = "Προσαρμοσμένο"
custom_settings = "Προσαρμοσμένες ρυθμίσεις"
dashboard = "Πίνακας ελέγχου"
date = "Ημερομηνία"
date_format = "Μορφή ημερομηνίας"
delete = "Διαγραφή"
description = "Περιγραφή"
disable = "Απενεργοποίηση"
disabled = "Απενεργοποιημένο"
disqus_shortname = "Σύντομο όνομα Disqus"
disqus_shortname_placeholder = "htmly"
draft = "Προσχέδιο"
edit = "Επεξεργασία"
edit_category = "Επεξεργασία κατηγορίας"
edit_post = "Επεξεργασία"
edit_profile = "Επεξεργασία προφίλ"
enable = "Ενεργοποίηση"
enable_blog_url = "Ενεργοποίηση διεύθυνσης URL blog"
enter_image_url = "Εισαγωγή διεύθυνσης URL εικόνας"
facebook_app_id = "Αναγνωριστικό εφαρμογής Facebook"
facebook_page = "Σελίδα Facebook"
featured_audio = "Επιλεγμένος ήχος"
featured_image = "Επιλεγμένη εικόνα"
featured_link = "Επιλεγμένος σύνδεσμος"
featured_quote = "Επιλεγμένη προσφορά"
featured_video = "Επιλεγμένο βίντεο"
feed_url = "Διεύθυνση URL ροής"
filename = "Όνομα αρχείου"
follow = "Ακολούθησε"
for_google_site_verification_meta = "Για meta google-site-verification"
front_page_displays = "Εμφάνιση πρώτης σελίδας"
full_post = "Πλήρης ανάρτηση"
general = "Γενικά"
general_settings = "Γενικές ρυθμίσεις"
get_one_here = "Αποκτήστε ένα εδώ"
github_pre_release = "Github προέκδοση"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (κληρονομιά)"
google_search_console = "Google Search Console"
home = "Αρχική"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Αν αφήσουμε κενό, θα το αποσπάσουμε από το παρακάτω περιεχόμενο"
if_the_url_is_left_empty_we_will_use_the_page_title = "Εάν το url μείνει κενό, θα χρησιμοποιήσουμε τον τίτλο της σελίδας"
if_the_url_is_left_empty_we_will_use_the_post_title = "Εάν το url μείνει κενό, θα χρησιμοποιήσουμε τον τίτλο της ανάρτησης"
image_post = "Ανάρτηση εικόνας"
image_post_comment = "Δημιουργία ανάρτησης ιστολογίου με επιλεγμένη εικόνα"
import = "Εισαγωγή"
import_feed = "Έναρξη εισαγωγής ροής"
import_rss = "Εισαγωγή RSS"
import_rss_feed_2.0 = "Εισαγωγή RSS Feed 2.0"
insert_image = "Εισαγωγή εικόνας"
invalid_error = "ΣΦΑΛΜΑ: Μη έγκυρο όνομα χρήστη ή κωδικός πρόσβασης"
language = "Γλώσσα συστήματος"
link_name = "Όνομα συνδέσμου"
link_post = "Ανάρτηση συνδέσμου"
link_post_comment = "Δημιουργία ανάρτησης ιστολογίου με επιλεγμένο σύνδεσμο"
login = "Είσοδος"
login_page = "Σελίδα σύνδεσης"
logout = "Αποσύνδεση"
menu = "Μενού"
menus = "Επεξεργαστής μενού"
meta_description = "Meta περιγραφή"
meta_description_character = "Χαρακτήρας μετα περιγραφής"
metatags = "Metatags"
metatags_settings = "Ρυθμίσεις Metatags"
mine = "Δικά μου"
more = "Περισσότερα"
my_draft = "Τα προσχέδιά μου"
my_posts = "Οι αναρτήσεις μου"
name = "Όνομα"
newer = "Νεότερα"
next = "Επόμενο"
next_post = "Επόμενο post"
no_available_backup = "Δεν υπάρχει διαθέσιμο αντίγραφο ασφαλείας αυτή τη στιγμή."
no_draft_found = "Δεν βρέθηκε προσχέδιο"
no_posts_found = "Δεν βρέθηκαν δημοσιεύσεις"
no_related_post_found = "Δεν βρέθηκε σχετική ανάρτηση"
no_scheduled_posts_found = "Δεν υπάρχουν προγραμματισμένες αναρτήσεις!"
no_search_results = "Δεν υπάρχουν αποτελέσματα αναζήτησης"
nope = "Όχι"
not = "Όχι"
older = "Παλαιότερα"
only = "Μόνο"
operations = "Λειτουργίες"
page = "Σελίδα"
page_generation_time = "Χρόνος δημιουργίας σελίδας"
pages = "Σελίδες"
pass_error = "Απαιτείται το πεδίο κωδικού πρόσβασης"
password = "Κωδικός πρόσβασης"
performance = "Απόδοση"
performance_settings = "Ρυθμίσεις απόδοσης"
permalink = "Permalink"
popular = "Δημοφιλές"
popular_posts = "Δημοφιλείς αναρτήσεις"
popular_posts_widget = "Γραφικό στοιχείο δημοφιλών αναρτήσεων"
popular_posts_widget_at_most = "Γραφικό στοιχείο δημοφιλών αναρτήσεων το πολύ"
popular_tags = "Δημοφιλείς ετικέτες"
post_by_author = "Αναρτήσεις από αυτόν τον συγγραφέα"
posted_in = "Δημοσιεύτηκε στο"
posted_on = "Δημοσιεύτηκε στις"
posts = "Αναρτήσεις"
posts_by = "Αναρτήσεις από"
posts_draft = "Προσχέδιο αναρτήσεων"
posts_in_archive_page_at_most = "Το πολύ δημοσιεύσεις στη σελίδα αρχείου"
posts_in_category_page_at_most = "Το πολύ δημοσιεύσεις στη σελίδα κατηγορίας"
posts_in_front_page_show_at_most = "Οι αναρτήσεις στην πρώτη σελίδα εμφανίζονται το πολύ"
posts_in_profile_page_at_most = "Το πολύ δημοσιεύσεις στη σελίδα προφίλ"
posts_in_search_result_at_most = "Το πολύ δημοσιεύσεις στο αποτέλεσμα αναζήτησης"
posts_in_tag_page_at_most = "Το πολύ δημοσιεύσεις στη σελίδα ετικέτας"
posts_in_type_page_at_most = "Το πολύ δημοσιεύσεις στη σελίδα τύπου"
posts_index_settings = "Ρυθμίσεις ευρετηρίου αναρτήσεων"
posts_list = "Λίστα αναρτήσεων"
posts_tagged = "Δημοσιεύσεις με ετικέτα"
posts_with_type = "Δημοσιεύσεις με τύπο"
pre_release = "Προκυκλοφορία"
prev = "Προηγούμενο"
prev_post = "Προηγούμενη ανάρτηση"
preview = "Προεπισκόπηση"
profile_for = "Προφίλ για"
proudly_powered_by = "Περήφανα τροφοδοτείται από"
publish = "Δημοσίευση"
publish_draft = "Δημοσίευση προχείρου"
published = "Δημοσιεύτηκε"
quote_post = "Παράθεση ανάρτησης"
quote_post_comment = "Δημιουργία ανάρτησης ιστολογίου με επιλεγμένο απόσπασμα"
rss_character = "χαρακτήρας RSS"
rss_feeds_show_the_most_recent = "Οι ροές RSS εμφανίζουν τις πιο πρόσφατες"
rss_settings = "Ρυθμίσεις RSS"
read_more_text = "Διαβάστε περισσότερα κείμενο"
read_more_text_placeholder = "Διαβάστε περισσότερα"
reading = "Διαβάζοντας"
reading_settings = "Ρυθμίσεις ανάγνωσης"
recaptcha = "reCAPTCHA"
recent_posts = "Πρόσφατες δημοσιεύσεις"
recent_posts_widget_at_most = "Γραφικό στοιχείο πρόσφατων αναρτήσεων το πολύ"
regular_post = "Κανονική ανάρτηση"
regular_post_comment = "Δημιουργία κανονικής ανάρτησης ιστολογίου"
related_posts = "Σχετικές αναρτήσεις"
related_widget_posts_at_most = "Σχετικές αναρτήσεις widget το πολύ"
revert_to_draft = "Επαναφορά στο πρόχειρο"
save = "Αποθήκευση"
save_config = "Αποθήκευση διαμόρφωσης"
save_edit = "Αποθήκευση επεξεργασίας"
save_menu = "Αποθήκευση μενού"
save_as_draft = "Αποθήκευση ως πρόχειρο"
save_category = "Αποθήκευση κατηγορίας"
scheduled = "Προγραμματισμένες"
scheduled_posts = "Προγραμματισμένες αναρτήσεις"
scheduled_tips = "Δημοσιεύοντας μια ανάρτηση με μελλοντική ημερομηνία ή ώρα, θα μεταφερθεί στις προγραμματισμένες αναρτήσεις"
search = "Αναζήτηση"
search_for = "Αναζήτηση"
search_results_for = "Αποτελέσματα αναζήτησης για"
search_results_not_found = "Δεν βρέθηκαν αποτελέσματα αναζήτησης!"
secret_key = "Μυστικό κλειδί"
settings = "Ρυθμίσεις"
sign_in_to_start_your_session = "Συνδεθείτε για επεξεργασία περιεχομένου"
site_key = "Κλειδί τοποθεσίας"
sitemap = "Χάρτης ιστότοπου"
slug = "Slug"
social_media = "Μέσα κοινωνικής δικτύωσης"
static_page = "Στατική σελίδα"
static_page_comment = "Δημιουργία στατικής σελίδας"
static_pages = "Στατικές σελίδες"
summary = "Σύνοψη"
summary_character = "Σύνοψη χαρακτήρα"
tag = "Ετικέτα"
tagcloud_widget_at_most = "TagCloud το πολύ"
tagline = "Tagline"
tagline_placeholder = "Πλατφόρμα ιστολογίων PHP χωρίς βάση δεδομένων"
tagline_description = "Με λίγα λόγια, εξηγήστε τι είναι αυτό το ιστολόγιο."
tags = "Ετικέτες"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Αυτός είναι κώδικας παλαιού τύπου. Συνήθως νέα αναλυτικά στοιχεία που δημιουργούνται χρησιμοποιώντας gtag.js"
this_page_doesnt_exist = "Αυτή η σελίδα δεν υπάρχει!"
time = "Ώρα"
timezone = "Ζώνη ώρας"
title = "Τίτλος"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Για να χρησιμοποιήσετε τα σχόλια του Disqus ή του Facebook, πρέπει να δώσετε το σύντομο όνομα του Disqus ή το αναγνωριστικό εφαρμογής του Facebook."
token_error = "Το CSRF Token δεν είναι σωστό"
tools = "Εργαλεία"
twitter_account = "Λογαριασμός Twitter"
type_to_search = "Aναζήτηση"
uncategorized = "Χωρίς κατηγορία"
uncategorized_comment = "Θέματα που δεν χρειάζονται κατηγορία ή δεν ταιριάζουν σε καμία άλλη υπάρχουσα κατηγορία"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Άγνωστη μορφή ροής"
update = "Ενημέρωση"
update_available = "Ενημέρωση διαθεσιμότητας"
update_draft = "Ενημέρωση σχεδίου"
update_post = "Ενημέρωση ανάρτησης"
update_to = "Ενημέρωση σε"
upload = "Μεταφόρτωση"
user = "Χρήστης"
user_error = "Απαιτείται πεδίο χρήστη"
valid_values_range_from_0_to_1.0._see = "Οι έγκυρες τιμές κυμαίνονται από 0,0 έως 1,0. Δείτε"
video_post = "Βίντεο ανάρτηση"
video_post_comment = "Δημιουργία ανάρτησης ιστολογίου με επιλεγμένο βίντεο"
view = "Προβολή"
view_post = "Προβολή"
views = "Προβολές"
widget = "Widget"
widget_settings = "Ρυθμίσεις widget"
would_you_like_to_try_our = "Θα θέλατε να δοκιμάσετε το "
yes_im_in = "Ναι, είμαι μέσα"
yes_not_recommended = "Ναι (δεν συνιστάται)"
you_dont_have_permission_to_access_this_page = "Δεν έχετε άδεια πρόσβασης σε αυτήν τη σελίδα"
your_new_config_key = "Το νέο κλειδί διαμόρφωσης"
your_new_value = "Η νέα σας αξία"
your_backups = "Τα αντίγραφα ασφαλείας σας (Backup)"
your_latest_blog_posts = "Οι πιο πρόσφατες αναρτήσεις ιστολογίου σας"
your_recent_posts = "Οι πρόσφατες αναρτήσεις σας"
by = "από"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>hint:</u> Χρησιμοποιήστε <code>Ctrl</code>/<code>CMD</code> + <code>F</code> για να αναζητήσετε το κλειδί ή την τιμή διαμόρφωσης."
homepage = "αρχική σελίδα"
instead = "αντί"
item_class = "Εισαγωγή κλάσης CSS"
item_slug = "Εισαγωγή URL συνδέσμου"
now = "τώρα"
of = "από"
optional = "προαιρετικό"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>επαγγελματικές συμβουλές:</u> Μπορείτε να δημιουργήσετε προσαρμοσμένα κλειδιά διαμόρφωσης και να εκτυπώσετε την τιμή του κλειδιού διαμόρφωσης οπουδήποτε στο πρότυπό σας."
read_more = "διαβάστε περισσότερα"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
security = "Security"
security_settings = "Security Settings"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/en_US.ini Executable file
View File

@ -0,0 +1,332 @@
about = "About"
add_category = "Add category"
add_content = "Add content"
add_link = "Add link"
add_menu = "Add menu"
add_new_page = "Add new page"
add_new_post = "Add new post"
add_source_link_optional = "Add source link (optional)"
add_sub = "Add sub page"
address_url = "Address (URL)"
admin = "Admin"
admin_panel_style_based_on = "Admin panel style based on"
all_blog_posts = "All blog posts"
all_cache_has_been_deleted = "All cache has been deleted !"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "Archives"
are_you_sure_you_want_to_delete_ = "Are you sure you want to delete <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "At the moment you are using auto generated menu."
audio_post = "Audio post"
audio_post_comment = "Creating blog post with featured audio"
author = "Author"
author_description = "Just another HTMLy user"
back_to = "Back to"
backup = "Backup"
blog_description = "In one paragraph, tell us more about your blog."
blog_theme = "Blog theme"
blog_title = "Blog title"
blog_title_placeholder = "My HTMLy Blog"
blog_posts_displayed_as = "Blog posts displayed as"
breadcrumb_home_text = "Breadcrumb home text"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "By using this importer you are agree if the feed is yours or at least you have the authority to publish it."
css_class_optional = "CSS Class (optional)"
cache_expiration = "Cache expiration (in hours)"
cache_off = "Cache off"
cache_timestamp = "Cache timestamp"
cancel = "Cancel"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "Captcha failed"
categories = "Categories"
category = "Category"
check_update = "Check for update"
clear_cache = "Clear cache"
comma_separated_values = "Comma separated values"
comment_system = "Comment system"
comments = "Comments"
config = "Config"
congrats_you_have_the_latest_version_of_htmly = "Congrats! You have the latest version of HTMLy."
content = "Content"
contents = "Contents"
copyright_line = "Copyright line"
copyright_line_placeholder = "(c) Your name."
create_backup = "Create backup"
created = "Created"
custom = "Custom"
custom_settings = "Custom Settings"
dashboard = "Dashboard"
date = "Date"
date_format = "Date Format"
delete = "Delete"
description = "Description"
disable = "Disable"
disabled = "Disabled"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "Draft"
edit = "Edit"
edit_category = "Edit category"
edit_post = "Edit"
edit_profile = "Edit profile"
enable = "Enable"
enable_blog_url = "Enable blog URL"
enter_image_url = "Enter image URL"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook page"
featured_audio = "Featured Audio"
featured_image = "Featured Image"
featured_link = "Featured Link"
featured_quote = "Featured Quote"
featured_video = "Featured Video"
feed_url = "Feed URL"
filename = "Filename"
follow = "Follow"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "Front page displays"
full_post = "Full post"
general = "General"
general_settings = "General Settings"
get_one_here = "Obtain your reCaptcha keys here: "
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "Home"
if_left_empty_we_will_excerpt_it_from_the_content_below = "If leave empty we will excerpt it from the content below"
if_the_url_is_left_empty_we_will_use_the_page_title = "If the url leave empty we will use the page title"
if_the_url_is_left_empty_we_will_use_the_post_title = "If the url leave empty we will use the post title"
image_post = "Image post"
image_post_comment = "Creating blog post with featured image"
import = "Import"
import_feed = "Start Import Feed"
import_rss = "Import RSS"
import_rss_feed_2.0 = "Import RSS Feed 2.0"
insert_image = "Insert Image"
invalid_error = "ERROR: Invalid username or password"
language = "System Language"
link_name = "Link name"
link_post = "Link post"
link_post_comment = "Creating blog post with featured link"
login = "Login"
login_page = "Login page"
logout = "Logout"
menu = "Menu"
menus = "Menu Editor"
meta_description = "Meta description"
meta_description_character = "Meta description character"
metatags = "Metatags"
metatags_settings = "Metatags Settings"
mine = "Mine"
more = "More"
my_draft = "My draft"
my_posts = "My posts"
name = "Name"
newer = "Newer"
next = "Next"
next_post = "Next post"
no_available_backup = "No available backup at this time."
no_draft_found = "No draft found"
no_posts_found = "No posts found"
no_related_post_found = "No related post found"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "No search results"
nope = "Nope"
not = "No"
older = "Older"
only = "Only"
operations = "Operations"
page = "Page"
page_generation_time = "Page generation time"
pages = "Pages"
pass_error = "Password field is required"
password = "Password"
performance = "Performance"
performance_settings = "Performance Settings"
permalink = "Permalink"
popular = "Popular"
popular_posts = "Popular posts"
popular_posts_widget = "Popular posts widget"
popular_posts_widget_at_most = "Popular posts widget at most"
popular_tags = "Popular tags"
post_by_author = "Posts by this author"
posted_in = "Posted in"
posted_on = "Posted on"
posts = "Posts"
posts_by = "Post by"
posts_draft = "Posts draft"
posts_in_archive_page_at_most = "Posts in archive page at most"
posts_in_category_page_at_most = "Posts in category page at most"
posts_in_front_page_show_at_most = "Posts in front page show at most"
posts_in_profile_page_at_most = "Posts in profile page at most"
posts_in_search_result_at_most = "Posts in search result at most"
posts_in_tag_page_at_most = "Posts in tag page at most"
posts_in_type_page_at_most = "Posts in type page at most"
posts_index_settings = "Posts index settings"
posts_list = "Posts list"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "Pre-release"
prev = "Previous"
prev_post = "Previous Post"
preview = "Preview"
profile_for = "Profile for"
proudly_powered_by = "Proudly powered by"
publish = "Publish"
publish_draft = "Publish draft"
published = "Published"
quote_post = "Quote post"
quote_post_comment = "Creating blog post with featured quote"
rss_character = "RSS character"
rss_feeds_show_the_most_recent = "RSS feeds show the most recent"
rss_settings = "RSS settings"
read_more_text = "Read more text"
read_more_text_placeholder = "Read more"
reading = "Reading"
reading_settings = "Reading Settings"
recaptcha = "Login Protection"
recent_posts = "Recent posts"
recent_posts_widget_at_most = "Recent posts widget at most"
regular_post = "Regular post"
regular_post_comment = "Creating regular blog post"
related_posts = "Related posts"
related_widget_posts_at_most = "Related widget posts at most"
revert_to_draft = "Revert to draft"
save = "Save"
save_config = "Save config"
save_edit = "Save Edit"
save_menu = "Save menu"
save_as_draft = "Save as draft"
save_category = "Save category"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "Search"
search_for = "Search for"
search_results_for = "Search results for"
search_results_not_found = "Search results not found!"
secret_key = "Secret Key"
settings = "Settings"
sign_in_to_start_your_session = "Sign in to start your session"
site_key = "Site Key"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Social Media"
static_page = "Static page"
static_page_comment = "Creating static page"
static_pages = "Static pages"
summary = "Summary"
summary_character = "Summary character"
tag = "Tag"
tagcloud_widget_at_most = "TagCloud at most"
tagline = "Tagline"
tagline_placeholder = "Databaseless PHP Blogging Platform"
tagline_description = "In a few words, explain what this blog is about."
tags = "Tags"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "This is legacy code. Usually new created analytics using gtag.js"
this_page_doesnt_exist = "This page doesn't exist !"
time = "Time"
timezone = "Timezone"
title = "Title"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "To use Disqus or Facebook comments you need to provide your Disqus shortname or your Facebook App ID."
token_error = "CSRF Token not correct"
tools = "Tools"
twitter_account = "Twitter account"
type_to_search = "Type to search"
uncategorized = "Uncategorized"
uncategorized_comment = "Topics that don't need a category, or don't fit into any other existing category"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "Update"
update_available = "Update Available"
update_draft = "Update draft"
update_post = "Update post"
update_to = "Update to"
upload = "Upload"
user = "User"
user_error = "User field is required"
valid_values_range_from_0_to_1.0._see = "Valid values range from 0.0 to 1.0. See"
video_post = "Video post"
video_post_comment = "Creating blog post with featured video"
view = "View"
view_post = "View"
views = "Views"
widget = "Widget"
widget_settings = "Widget Settings"
would_you_like_to_try_our = "Would you like to try our "
yes_im_in = "Yes I'm in"
yes_not_recommended = "Yes (not recommended)"
you_dont_have_permission_to_access_this_page = "You don't have permission to access this page"
your_new_config_key = "Your New Config Key"
your_new_value = "Your New Value"
your_backups = "Your backups"
your_latest_blog_posts = "Your latest blog posts"
your_recent_posts = "Your recent posts"
by = "by"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>hint:</u> Use <code>Ctrl</code>/<code>CMD</code> + <code>F</code> to search for your config key or value."
homepage = "homepage"
instead = "instead"
item_class = "Insert CSS class"
item_slug = "Insert Link URL"
now = "now"
of = "of"
optional = "optional"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>pro tips:</u> You can create custom config keys and print out your config key value anywhere in your template."
read_more = "read more"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/eo_EO.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Pri"
add_category = "Aldoni kategorion"
add_content = "Aldoni enhavon"
add_link = "Aldoni ligilon"
add_menu = "Aldoni menuon"
add_new_page = "Aldoni novan paĝon"
add_new_post = "Aldoni novan afiŝon"
add_source_link_optional = "Aldoni fontligilon (nedeviga)"
add_sub = "Aldoni subpaĝon"
address_url = "Adreso (URL)"
admin = "Administranto"
admin_panel_style_based_on = "Aspekto de la administrpanelo bazita sur"
all_blog_posts = "Ĉiuj blogafiŝoj"
all_cache_has_been_deleted = "Ĉiuj kaŝmemoraĵoj forigitaj!"
all_posts_tagged = "Ĉiuj afiŝoj etikeditaj"
archive_for = "Arkivo por"
archive_page_for = "Arkiva paĝo por"
archives = "Arkivoj"
are_you_sure_you_want_to_delete_ = "Ĉu vi certas, ke vi volas forigi <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Nuntempe vi uzas aŭtomate generitan menuon."
audio_post = "Sonafiŝo"
audio_post_comment = "Krei blogafiŝon kun elstarigita sono"
author = "Aŭtoro"
author_description = "Nur alia HTMLy-uzanto"
back_to = "Reen al"
backup = "Sekurkopio"
blog_description = "En unu paragrafo, rakontu pli pri via blogo."
blog_theme = "Bloga etoso"
blog_title = "Bloga titolo"
blog_title_placeholder = "Mia HTMLy Blogo"
blog_posts_displayed_as = "Blogafiŝoj montritaj kiel"
breadcrumb_home_text = "Hejma teksto por navigilo"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Per uzo de ĉi tiu enportilo vi konfirmas, ke la fluo apartenas al vi aŭ ke vi almenaŭ havas la rajton publikigi ĝin."
css_class_optional = "CSS-klaso (nedeviga)"
cache_expiration = "Kaŝmemora eksvalidiĝo (en horoj)"
cache_off = "Kaŝmemoro malŝaltita"
cache_timestamp = "Kaŝmemora tempindiko"
cancel = "Nuligi"
cannot_read_feed_content = "Ne eblas legi la enhavon de la fluo"
captcha_error = "Captcha malsukcesis"
categories = "Kategorioj"
category = "Kategorio"
check_update = "Kontroli ĝisdatigon"
clear_cache = "Forigi kaŝmemoron"
comma_separated_values = "Valoroj disigitaj per komo"
comment_system = "Komenta sistemo"
comments = "Komentoj"
config = "Agordoj"
congrats_you_have_the_latest_version_of_htmly = "Gratulon! Vi havas la plej novan version de HTMLy."
content = "Enhavo"
contents = "Enhavoj"
copyright_line = "Kopirajta linio"
copyright_line_placeholder = "(c) Via nomo."
create_backup = "Krei sekurkopion"
created = "Kreita"
custom = "Propraj"
custom_settings = "Propraj agordoj"
dashboard = "Stirpanelo"
date = "Dato"
date_format = "Data formato"
delete = "Forigi"
description = "Priskribo"
disable = "Malebligi"
disabled = "Malebligita"
disqus_shortname = "Disqus mallongnomo"
disqus_shortname_placeholder = "htmly"
draft = "Malneto"
edit = "Redakti"
edit_category = "Redakti kategorion"
edit_post = "Redakti"
edit_profile = "Redakti profilon"
enable = "Ebligi"
enable_blog_url = "Ebligi blogan URL"
enter_image_url = "Enigi bildan URL"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook paĝo"
featured_audio = "Elstarigita sono"
featured_image = "Elstarigita bildo"
featured_link = "Elstarigita ligilo"
featured_quote = "Elstarigita citaĵo"
featured_video = "Elstarigita filmeto"
feed_url = "Flua URL"
filename = "Dosiernomo"
follow = "Sekvi"
for_google_site_verification_meta = "Por google-site-verification meta"
front_page_displays = "Ĉefpaĝo montras"
full_post = "Plena afiŝo"
general = "Ĝenerala"
general_settings = "Ĝeneralaj agordoj"
get_one_here = "Akiru viajn reCaptcha-ŝlosilojn ĉi tie: "
github_pre_release = "GitHub antaŭeldono"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (malnova)"
google_search_console = "Google Search Console"
home = "Hejmo"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Se lasite malplena, ni eltiros ĝin el la malsupra enhavo"
if_the_url_is_left_empty_we_will_use_the_page_title = "Se la URL restas malplena, ni uzos la paĝan titolon"
if_the_url_is_left_empty_we_will_use_the_post_title = "Se la URL restas malplena, ni uzos la afiŝan titolon"
image_post = "Bilda afiŝo"
image_post_comment = "Krei blogafiŝon kun elstarigita bildo"
import = "Importi"
import_feed = "Komenci importi fluon"
import_rss = "Importi RSS"
import_rss_feed_2.0 = "Importi RSS-fluon 2.0"
insert_image = "Enmeti bildon"
invalid_error = "ERARO: Malĝusta uzantnomo aŭ pasvorto"
language = "Sistema lingvo"
link_name = "Ligila nomo"
link_post = "Ligila afiŝo"
link_post_comment = "Krei blogafiŝon kun elstarigita ligilo"
login = "Ensaluti"
login_page = "Ensaluta paĝo"
logout = "Elsaluti"
menu = "Menuo"
menus = "Menua redaktilo"
meta_description = "Metapriskribo"
meta_description_character = "Signoj por metapriskribo"
metatags = "Meta-etikedoj"
metatags_settings = "Meta-etikedaj agordoj"
mine = "Mia"
more = "Pli"
my_draft = "Mia malneto"
my_posts = "Miaj afiŝoj"
name = "Nomo"
newer = "Pli novaj"
next = "Sekva"
next_post = "Sekva afiŝo"
no_available_backup = "Neniu disponebla sekurkopio nuntempe."
no_draft_found = "Neniu malneto trovita"
no_posts_found = "Neniu afiŝo trovita"
no_related_post_found = "Neniu rilata afiŝo trovita"
no_scheduled_posts_found = "Neniu planita afiŝo trovita!"
no_search_results = "Neniuj serĉrezultoj"
nope = "Ne"
not = "Ne"
older = "Pli malnova"
only = "Nur"
operations = "Operacioj"
page = "Paĝo"
page_generation_time = "Generotempo de la paĝo"
pages = "Paĝoj"
pass_error = "La pasvorta kampo estas deviga"
password = "Pasvorto"
performance = "Rendimento"
performance_settings = "Rendimentaj agordoj"
permalink = "Fiksligilo"
popular = "Populara"
popular_posts = "Popularaj afiŝoj"
popular_posts_widget = "Fenestreto pri popularaj afiŝoj"
popular_posts_widget_at_most = "Popularaj afiŝoj fenestreto maksimume"
popular_tags = "Popularaj etikedoj"
post_by_author = "Afiŝoj de tiu aŭtoro"
posted_in = "Afiŝita en"
posted_on = "Afiŝita je"
posts = "Afiŝoj"
posts_by = "Afiŝoj de"
posts_draft = "Malnetaj afiŝoj"
posts_in_archive_page_at_most = "Afiŝoj en arkiva paĝo maksimume"
posts_in_category_page_at_most = "Afiŝoj en kategoria paĝo maksimume"
posts_in_front_page_show_at_most = "Afiŝoj en ĉefpaĝo maksimume"
posts_in_profile_page_at_most = "Afiŝoj en profilpaĝo maksimume"
posts_in_search_result_at_most = "Afiŝoj en serĉrezultoj maksimume"
posts_in_tag_page_at_most = "Afiŝoj en etikedpaĝo maksimume"
posts_in_type_page_at_most = "Afiŝoj en tipa paĝo maksimume"
posts_index_settings = "Agordoj de afiŝindekso"
posts_list = "Listo de afiŝoj"
posts_tagged = "Afiŝoj etikeditaj"
posts_with_type = "Afiŝoj kun tipo"
pre_release = "Antaŭeldono"
prev = "Antaŭa"
prev_post = "Antaŭa afiŝo"
preview = "Antaŭrigardo"
profile_for = "Profilo por"
proudly_powered_by = "Fiere funkciigita de"
publish = "Publikigi"
publish_draft = "Publikigi malneton"
published = "Publikigita"
quote_post = "Citaĵa afiŝo"
quote_post_comment = "Krei blogafiŝon kun elstarigita citaĵo"
rss_character = "RSS-signo"
rss_feeds_show_the_most_recent = "RSS-fluoj montras la plej freŝajn"
rss_settings = "RSS-agordoj"
read_more_text = "Legu pli teksto"
read_more_text_placeholder = "Legu pli"
reading = "Legado"
reading_settings = "Legadaj agordoj"
recaptcha = "Protekto de ensaluto"
recent_posts = "Lastatempaj afiŝoj"
recent_posts_widget_at_most = "Lastatempaj afiŝoj fenestreto maksimume"
regular_post = "Ordinara afiŝo"
regular_post_comment = "Krei ordinaran blogafiŝon"
related_posts = "Rilataj afiŝoj"
related_widget_posts_at_most = "Rilataj afiŝoj fenestreto maksimume"
revert_to_draft = "Reveni al malneto"
save = "Konservi"
save_config = "Konservi agordojn"
save_edit = "Konservi redakton"
save_menu = "Konservi menuon"
save_as_draft = "Konservi kiel malneto"
save_category = "Konservi kategorion"
scheduled = "Planita"
scheduled_posts = "Planitaj afiŝoj"
scheduled_tips = "Se afiŝo havas estontan daton/horon, ĝi aperos en planitaj afiŝoj"
search = "Serĉi"
search_for = "Serĉi por"
search_results_for = "Serĉrezultoj por"
search_results_not_found = "Neniuj serĉrezultoj trovita!"
secret_key = "Sekreta ŝlosilo"
settings = "Agordoj"
sign_in_to_start_your_session = "Ensalutu por komenci vian sesion"
site_key = "Retej-ŝlosilo"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Sociaj retoj"
static_page = "Statika paĝo"
static_page_comment = "Krei statikan paĝon"
static_pages = "Statikaj paĝoj"
summary = "Resumo"
summary_character = "Resumo signo"
tag = "Etikedo"
tagcloud_widget_at_most = "Etikednubo maksimume"
tagline = "Subtitolo"
tagline_placeholder = "Sendatumbaza PHP Bloga Platformo"
tagline_description = "En kelkaj vortoj, klarigu pri kio temas via blogo."
tags = "Etikedoj"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Tio estas malnova kodo; kutime novkreita Analytics uzas gtag.js"
this_page_doesnt_exist = "Ĉi tiu paĝo ne ekzistas!"
time = "Tempo"
timezone = "Horzono"
title = "Titolo"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Por uzi Disqus aŭ Facebook-komentojn, vi devas provizi vian Disqus-mallongnomon aŭ Facebook App ID."
token_error = "CSRF-ĵetono ne ĝustas"
tools = "Iloj"
twitter_account = "Twitter-konto"
type_to_search = "Tajpu por serĉi"
uncategorized = "Senkategoriaj"
uncategorized_comment = "Temoj, kiuj ne bezonas kategorion aŭ ne konvenas al ajna alia ekzistanta kategorio"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Nekonata flua formato"
update = "Ĝisdatigi"
update_available = "Disponeblas ĝisdatigo"
update_draft = "Ĝisdatigi malneton"
update_post = "Ĝisdatigi afiŝon"
update_to = "Ĝisdatigi al"
upload = "Alŝuti"
user = "Uzanto"
user_error = "La uzanta kampo estas deviga"
valid_values_range_from_0_to_1.0._see = "Validaj valoroj intervalas de 0.0 ĝis 1.0. Vidu"
video_post = "Filmeta afiŝo"
video_post_comment = "Krei blogafiŝon kun elstarigita filmeto"
view = "Vidi"
view_post = "Vidi"
views = "Vidoj"
widget = "Fenestreto"
widget_settings = "Fenestreta agordo"
would_you_like_to_try_our = "Ĉu vi ŝatus provi nian "
yes_im_in = "Jes, mi ŝatus"
yes_not_recommended = "Jes (ne rekomendita)"
you_dont_have_permission_to_access_this_page = "Vi ne rajtas aliri ĉi tiun paĝon"
your_new_config_key = "Via nova agordo-ŝlosilo"
your_new_value = "Via nova valoro"
your_backups = "Viaj sekurkopioj"
your_latest_blog_posts = "Viaj plej novaj blogafiŝoj"
your_recent_posts = "Viaj lastatempaj afiŝoj"
by = "de"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>rimarko:</u> Uzu <code>Ctrl</code>/<code>CMD</code>+<code>F</code> por serĉi vian agordo-ŝlosilon aŭ valoron."
homepage = "Hejmpaĝo"
instead = "anstataŭ"
item_class = "Enmetu CSS-klason"
item_slug = "Enmetu URL-on por la ligilo"
now = "nun"
of = "de"
optional = "nedeviga"
post_your_post_slug = "/post/via-afiŝ-limako"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>profesiaj konsiloj:</u> Vi povas krei proprajn agordo-ŝlosilojn kaj printi ilian valoron ie ajn en via ŝablono."
read_more = "Legu pli"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/jaro/monato/via-afiŝ-limako"
your_key = "via.ŝlosilo"
summary_behavior = "Konduto de resumo"
default = "Defaŭlta"
check_shortcode = "Kontroli la mallongigon"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "En resumreĝimo, ĉu unue kontroli la mallongigon antaŭ ol mallongigi la enhavon ĝis x signoj"
manage_users = "Administri uzantojn"
add_user = "Aldoni uzanton"
username = "Uzantnomo"
role = "Rolo"
change_password = "Ŝanĝi pasvorton"
config_mfa = "Agordi MFA"
mfacode = "MFA-kodo"
verify_code = "Kontroli la MFA-kodon"
verify_password = "Kontroli la nunan pasvorton"
manualsetupkey = "Vi ankaŭ povas mane enmeti la agordan ŝlosilon"
mfa_error = "MFA-kodo estas malĝusta"
disablemfa = "Malebligi MFA"
enable_auto_save = "Ebligi aŭtomatan konservadon"
explain_autosave = "Kiam ebligita, nova enhavo aŭ malneto estos aŭtomate konservita ĉiun 60 sekundojn."
login_protect_system = "Ensaluta protekta sistemo"
cloudflare_info = "Rigardu la dokumentaron de Cloudflare pri Turnstile: "
mfa_config = "Plurpaŝa Aŭtentikigo (MFA)"
set_mfa_globally = "Agordi la staton de MFA"
explain_mfa = "Kiam ebligita, MFA estas nedeviga por ĉiuj uzantoj. Kiam malebligita, neniu povas uzi ĝin kaj la kampo en la ensaluta paĝo kaŝiĝas."
set_version_publicly = "Versio videbleco"
explain_version = "Defaŭlte la versio de HTMLy videblas en la fontkodo, sed iuj administrantoj eble preferas kaŝi ĝin."
focus_mode = "Ŝalti fokuson"
writing = "Verkado"
writing_settings = "Verkadaj agordoj"
security = "Sekureco"
security_settings = "Sekurecaj agordoj"
msg_error_field_req_username = "La kampo Uzantnomo estas deviga."
msg_error_field_req_password = "La kampo Pasvorto estas deviga."
msg_error_field_req_title = "La kampo Titolo estas deviga."
msg_error_field_req_content = "La kampo Enhavo estas deviga."
msg_error_field_req_tag = "La kampo Etikedo estas deviga."
msg_error_field_req_image = "La kampo Bildo estas deviga."
msg_error_field_req_video = "La kampo Filmeto estas deviga."
msg_error_field_req_link = "La kampo Ligilo estas deviga."
msg_error_field_req_quote = "La kampo Citaĵo estas deviga."
msg_error_field_req_audio = "La kampo Sono estas deviga."
msg_error_field_req_feedurl = "Vi devas precizigi la fluan URL-on."
rss_feeds_description_select = "RSS-priskribo"
rss_description_body = "Korpo de afiŝo"
rss_description_meta = "Metapriskribo de afiŝo"
admin_theme = "Admin-etoso"
admin_theme_light = "Hela"
admin_theme_dark = "Malhela"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/es_ES.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Acerca de"
add_category = "Añadir categoría"
add_content = "Agregar contenido"
add_link = "Agregar enlace"
add_menu = "Agregar menú"
add_new_page = "Agregar nueva página"
add_new_post = "Agregar nueva publicación"
add_source_link_optional = "Agregar enlace de origen (opcional)"
add_sub = "Agregar sub categoría"
address_url = "Address (URL)"
admin = "Administración"
admin_panel_style_based_on = "Estilo del panel de administración basado en"
all_blog_posts = "Todas las publicaciones del blog"
all_cache_has_been_deleted = "¡Se ha eliminado todo el caché!"
all_posts_tagged = "Todas las publicaciones etiquetadas"
archive_for = "Archivar para"
archive_page_for = "Página de archivo para"
archives = "Archivo"
are_you_sure_you_want_to_delete_ = "Está seguro de que desea eliminar <strong>% s </strong>?"
at_the_moment_you_are_using_auto_generated_menu = "En este momento estás utilizando el menú generado automáticamente."
audio_post = "Publicación de audio"
audio_post_comment = "Creación de una publicación de blog con audio destacado"
author = "Autor"
author_description = "Sólo otro usuario HTMLy"
back_to = "Volver a"
backup = "Respaldo"
blog_description = "En un párrafo, cuéntanos más sobre tu blog."
blog_theme = "Tema del blog"
blog_title = "Título del blog"
blog_title_placeholder = "Mi HTMLy Blog"
blog_posts_displayed_as = "Las publicaciones del blog se muestran como"
breadcrumb_home_text = "Texto de inicio de ruta de navegación"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Al utilizar este importador, aceptas si el feed es tuyo o al menos tienes la autoridad para publicarlo."
css_class_optional = "Clase CSS (opcional)"
cache_expiration = "Caducidad de la caché (en horas)"
cache_off = "Caché desactivado"
cache_timestamp = "Marca de tiempo de caché"
cancel = "Cancelar"
cannot_read_feed_content = "No se puede leer el contenido del feed"
captcha_error = "reCaptcha no es correcto"
categories = "Categorías"
category = "Categoría"
check_update = "Buscar actualizaciones"
clear_cache = "Limpiar cache"
comma_separated_values = "Valores separados por comas"
comment_system = "Sistema de comentarios"
comments = "Comentarios"
config = "Configuración"
congrats_you_have_the_latest_version_of_htmly = "¡Felicidades! Tienes la última versión de HTMLy."
content = "Contenido"
contents = "Contenido"
copyright_line = "Línea de derechos de autor"
copyright_line_placeholder = "(c) Su nombre."
create_backup = "Crear copia de seguridad"
created = "Creado"
custom = "Personalizado"
custom_settings = "Configuración personalizada"
dashboard = "Panel de control"
date = "Fecha"
date_format = "Formato de fecha"
delete = "Eliminar"
description = "Descripción"
disable = "Desactivar"
disabled = "Desactivado"
disqus_shortname = "Nombre corto de Disqus"
disqus_shortname_placeholder = "htmly"
draft = "Borrador"
edit = "Editar"
edit_category = "Editar categoría"
edit_post = "Editar"
edit_profile = "Editar perfil"
enable = "Habilitar"
enable_blog_url = "Habilitar URL del blog"
enter_image_url = "Ingrese la URL de la imagen"
facebook_app_id = "ID de aplicación de Facebook"
facebook_page = "página de Facebook"
featured_audio = "Audio destacado"
featured_image = "Imagen destacada"
featured_link = "Enlace destacado"
featured_quote = "Cita destacada"
featured_video = "Vídeo destacado"
feed_url = "URL de la fuente"
filename = "Nombre del archivo"
follow = "Seguir"
for_google_site_verification_meta = "Para meta de verificación del sitio de Google"
front_page_displays = "Visualizaciones de la página principal"
full_post = "Publicación completa"
general = "Generales"
general_settings = "Configuración general"
get_one_here = "Consigue uno aquí"
github_pre_release = "Prelanzamiento de Github"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (heredado)"
google_search_console = "Consola de búsqueda de Google"
home = "Inicio"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Si lo dejamos vacío, lo extraeremos del contenido siguiente"
if_the_url_is_left_empty_we_will_use_the_page_title = "Si la URL se deja vacía usaremos el título de la página"
if_the_url_is_left_empty_we_will_use_the_post_title = "Si la URL se deja vacía usaremos el título de la publicación"
image_post = "Publicación de imagen"
image_post_comment = "Crear publicación de blog con imagen destacada"
import = "Importar"
import_feed = "Iniciar importación de feed"
import_rss = "Importar RSS"
import_rss_feed_2.0 = "Importar fuente RSS 2.0"
insert_image = "Insertar imagen"
invalid_error = "ERROR: nombre de usuario o contraseña no válidos"
language = "Idioma del sistema"
link_name = "Nombre del enlace"
link_post = "Enlace de la Publicación"
link_post_comment = "Creación de una publicación de blog con un enlace destacado"
login = "acceso"
login_page = "Página de inicio de sesión"
logout = "Cerrar sesión"
menu = "menú"
menus = "Editora de menús"
meta_description = "Meta descripción"
meta_description_character = "Carácter de meta descripción"
metatags = "Metaetiquetas"
metatags_settings = "Configuración de metaetiquetas"
mine = "Mía"
more = "Más"
my_draft = "Mi borrador"
my_posts = "Mis publicaciones"
name = "Nombre"
newer = "Más nuevo"
next = "Próximo"
next_post = "Publicación siguiente"
no_available_backup = "No hay copia de seguridad disponible en este momento."
no_draft_found = "No se encontró ningún borrador"
no_posts_found = "No se han encontrado publicaciones"
no_related_post_found = "No se encontró ninguna publicación relacionada"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "Sin resultados de búsqueda"
nope = "Nope"
not = "No"
older = "Mayor"
only = "Only"
operations = "Operaciones"
page = "Página"
page_generation_time = "Tiempo de generación de página"
pages = "Paginas"
pass_error = "El campo de contraseña es obligatorio"
password = "Contraseña"
performance = "Rendimiento"
performance_settings = "Configuración de rendimiento"
permalink = "enlace permanente"
popular = "populares"
popular_posts = "Entradas populares"
popular_posts_widget = "Widget de publicaciones populares"
popular_posts_widget_at_most = "Widget de publicaciones populares como máximo"
popular_tags = "Etiquetas Populares"
post_by_author = "Publicaciones de este autor"
posted_in = "Publicado en"
posted_on = "Publicado en"
posts = "Publicaciones"
posts_by = "Publicaciones por"
posts_draft = "Borrador de publicaciones"
posts_in_archive_page_at_most = "Publicaciones en la página de archivo como máximo"
posts_in_category_page_at_most = "Publicaciones en la página de categoría como máximo"
posts_in_front_page_show_at_most = "Las publicaciones en la página principal se muestran como máximo"
posts_in_profile_page_at_most = "Publicaciones en la página de perfil como máximo"
posts_in_search_result_at_most = "Publicaciones en el resultado de búsqueda como máximo"
posts_in_tag_page_at_most = "Publicaciones en la página de etiquetas como máximo"
posts_in_type_page_at_most = "Publicaciones en la página tipo como máximo"
posts_index_settings = "Configuración del índice de publicaciones"
posts_list = "Lista de publicaciones"
posts_tagged = "Publicaciones etiquetadas"
posts_with_type = "Publicaciones con tipo"
pre_release = "Prelanzamiento"
prev = "Antiguo"
prev_post = "Publicación anterior"
preview = "Vista anticipada"
profile_for = "Perfil para"
proudly_powered_by = "Orgullosamente impulsado por"
publish = "Publicar"
publish_draft = "Publicar borrador"
published = "Publicado"
quote_post = "Publicación de cotización"
quote_post_comment = "Crear publicación de blog con cita destacada"
rss_character = "carácter RSS"
rss_feeds_show_the_most_recent = "Los canales RSS muestran los más recientes"
rss_settings = "Configuración RSS"
read_more_text = "Leer más texto"
read_more_text_placeholder = "Leer más"
reading = "Leyendo"
Reading_settings = "Configuración de lectura"
recaptcha = "reCAPTCHA"
recent_posts = "Mensajes recientes"
recientes_posts_widget_at_most = "Widget de publicaciones recientes como máximo"
regular_post = "Correo ordinario"
regular_post_comment = "Crear una publicación de blog regular"
related_posts = "Artículos Relacionados"
related_widget_posts_at_most = "Publicaciones de widgets relacionados como máximo"
revert_to_draft = "Volver a borrador"
save = "Salvar"
save_config = "Guardar configuración"
save_edit = "Guardar edición"
save_menu = "Guardar menú"
save_as_draft = "Guardar como borrador"
save_category = "Guardar categoría"
scheduled = "Programado"
scheduled_posts = "Publicaciones programadas"
scheduled_tips = "Al publicar una publicación con fecha u hora futura, irá a las publicaciones programadas"
search = "Buscar"
search_for = "Buscar"
search_results_for = "Resultados de búsqueda para"
search_results_not_found = "¡No se encontraron resultados de búsqueda!"
secret_key = "Clave secreta"
settings = "Configuración"
sign_in_to_start_your_session = "Inicia sesión para iniciar tu sesión"
site_key = "Clave del sitio"
sitestamp = "Mapa del sitio"
slug = "Babosa"
social_media = "Medios sociales"
static_page = "Página estática"
static_page_comment = "Creando página estática"
static_pages = "Páginas estáticas"
summary = "Sumario"
summary_character = "Carácter sumario"
tag = "Etiqueta"
tagcloud_widget_at_most = "TagCloud como máximo"
tagline = "Tagline"
tagline_placeholder = "Plataforma de blogs PHP sin base de datos"
tagline_description = "En pocas palabras, explica de qué trata este blog."
tags = "Etiquetas"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Este es el código heredado. Generalmente se crean nuevos análisis usando gtag.js."
this_page_doesnt_exist = "¡Esta página no existe!"
time = "Tiempo"
timezone = "Zona horaria"
title = "Título"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Para utilizar Disqus o comentarios de Facebook, debe proporcionar el nombre corto de Disqus o el ID de la aplicación de Facebook."
token_error = "El token CSRF no es correcto"
tools = "Útiles"
twitter_account = "cuenta de Twitter"
type_to_search = "Escriba para buscar"
uncategorized = "Sin categorizar"
uncategorized_comment = "Temas que no necesitan una categoría o que no encajan en ninguna otra categoría existente"
universal_analytics = "Análisis universal (gtag.js)"
unknown_feed_format = "Formato de alimentación desconocido"
update = "Actualizar"
update_available = "Actualización disponible"
update_draft = "Actualizar borrador"
update_post = "Actualizar publicación"
update_to = "Update to"
upload = "subir"
user = "Usuario"
user_error = "El campo de usuario es obligatorio"
valid_values_range_from_0_to_1.0._see = "Los valores válidos varían de 0,0 a 1,0. Ver"
video_post = "Publicación de video"
video_post_comment = "Creación de una publicación de blog con video destacado"
view = "Ver"
view_post = "Ver"
views = "Puntos de vista"
widget = "Widget"
widget_settings = "Configuración de widgets"
would_you_like_to_try_our = "¿Te gustaría probar nuestra "
yes_im_in = "Sí, estoy en"
yes_not_recommended = "Sí (no recomendado)"
you_dont_have_permission_to_access_this_page = "No tienes permiso para acceder a esta pagina"
your_new_config_key = "Su nueva clave de configuración"
your_new_value = "Tu nuevo valor"
your_backups = "Tus copias de seguridad"
your_latest_blog_posts = "Tus últimas publicaciones de blog"
your_recent_posts = "Tus publicaciones recientes"
by = "por"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>sugerencia:</u> Utilice <code>Ctrl</code>/<code>CMD</code> + <code>F</code> para buscar su clave o valor de configuración."
homepage = "página de inicio"
instead = "en lugar"
item_class = "Insertar clase CSS"
item_slug = "Insertar URL del enlace"
now = "ahora"
of = "de"
optional = "opcional"
post_your_post_slug = "/post/tu-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>consejos profesionales:</u> Puede crear una clave de configuración personalizada e imprimir el valor de su clave de configuración en cualquier lugar de su plantilla."
read_more = "Lee mas"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "Comportamiento resumido"
default = "Predeterminado"
check_shortcode = "comprobar el código corto"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "En el modo resumen, verifique el código abreviado primero o no antes de recortar el contenido a x char"
manage_users = "Administrar usuarios"
add_user = "Agregar usuario"
username = "nombre de usuario"
role = "rol"
change_password = "Cambiar contraseña"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/fa_IR.ini Executable file
View File

@ -0,0 +1,332 @@
about = "درباره ما"
add_category = "افزودن دسته بندی"
add_content = "افزودن محتوا"
add_link = "افزودن لینک"
add_menu = "افزودن منو"
add_new_page = "افزودن صفحه جدید"
add_new_post = "افزودن پست جدید"
add_source_link_optional = "Add source link (optional)"
add_sub = "افزودن صفحه فرعی"
address_url = "Address (URL)"
admin = "ادمین"
admin_panel_style_based_on = "Admin panel style based on"
all_blog_posts = "تمام ارسالی ها"
all_cache_has_been_deleted = "حافظه کش پاک شد!"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "آرشیو"
are_you_sure_you_want_to_delete_ = "Are you sure you want to delete <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "At the moment you are using auto generated menu."
audio_post = "پست های صوتی"
audio_post_comment = "Creating blog post with featured audio"
author = "نویسنده"
author_description = "Just another HTMLy user"
back_to = "برگشت به"
backup = "پشتیبان"
blog_description = "In one paragraph, tell us more about your blog."
blog_theme = "تم وبلاگ"
blog_title = "عنوان وبلاگ"
blog_title_placeholder = "My HTMLy Blog"
blog_posts_displayed_as = "Blog posts displayed as"
breadcrumb_home_text = "Breadcrumb home text"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "By using this importer you are agree if the feed is yours or at least you have the authority to publish it."
css_class_optional = "CSS Class (optional)"
cache_expiration = "Cache expiration (in hours)"
cache_off = "Cache off"
cache_timestamp = "Cache timestamp"
cancel = "انصراف"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha not correct"
categories = "دسته بندی ها"
category = "دسته بندی"
check_update = "بررسی به روزرسانی"
clear_cache = "پاک کردن حافظه کش"
comma_separated_values = "Comma separated values"
comment_system = "Comment system"
comments = "نظرات"
config = "تنظیمات"
congrats_you_have_the_latest_version_of_htmly = "Congrats! You have the latest version of HTMLy."
content = "محتوا"
contents = "فهرست"
copyright_line = "خط کپی رایت"
copyright_line_placeholder = "(c) Your name."
create_backup = "ساجاد نسخه پشتیبان"
created = "ایجاد شد"
custom = "سفارشی"
custom_settings = "تنظیمات سفارشی"
dashboard = "داشبورد"
date = "تاریخ"
date_format = "فرمت تاریخ"
delete = "حذف"
description = "توضیحات"
disable = "غیر فعال"
disabled = "غیرفعال شد"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "پیش نویس"
edit = "ویرایش"
edit_category = "ویرایش دسته بندی"
edit_post = "ویرایش"
edit_profile = "ویرایش پروفایل"
enable = "فعال"
enable_blog_url = "Enable blog URL"
enter_image_url = "ورود آدرس تصویر"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook page"
featured_audio = "Featured Audio"
featured_image = "Featured Image"
featured_link = "Featured Link"
featured_quote = "Featured Quote"
featured_video = "Featured Video"
feed_url = "Feed URL"
filename = "نام فایل"
follow = "دنبال کردن"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "نمایش صفحه اول"
full_post = "پست کامل"
general = "عمومی"
general_settings = "تنظیمات عمومی"
get_one_here = "Get one here"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "صفحه اصلی"
if_left_empty_we_will_excerpt_it_from_the_content_below = "If leave empty we will excerpt it from the content below"
if_the_url_is_left_empty_we_will_use_the_page_title = "If the url leave empty we will use the page title"
if_the_url_is_left_empty_we_will_use_the_post_title = "If the url leave empty we will use the post title"
image_post = "ارسال تصویر"
image_post_comment = "ایجاد پست وبلاگ به همراه تصویر"
import = "وارد كردن"
import_feed = "Start Import Feed"
import_rss = "Import RSS"
import_rss_feed_2.0 = "Import RSS Feed 2.0"
insert_image = "درج تصویر"
invalid_error = "ERROR: Invalid username or password"
language = "زیان سیستم"
link_name = "نام لینک"
link_post = "لینک پست"
link_post_comment = "ایجاد پست وبلگ به همراه لینک"
login = "ورود"
login_page = "صفحه ورود"
logout = "خروج"
menu = "منو"
menus = "Menu Editor"
meta_description = "توضیحات متا"
meta_description_character = "Meta description character"
metatags = "متاتگ"
metatags_settings = "Metatags Settings"
mine = "Mine"
more = "بیشتر"
my_draft = "پیش نویس های من"
my_posts = "پست های من"
name = "نام"
newer = "جدیدتر"
next = "بعد"
next_post = "پست بعدی"
no_available_backup = "هیچ نسخه پشتیبانی وجود ندارد"
no_draft_found = "پیش نویس یافت نشد"
no_posts_found = "هیچ پستی ارسال نشده است"
no_related_post_found = "پست مرتبطی یافت نشد"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "No search results"
nope = "Nope"
not = "No"
older = "قدیمی ترها"
only = "فقط"
operations = "عملیات"
page = "صفحه"
page_generation_time = "Page generation time"
pages = "صفحه ها"
pass_error = "Password field is required"
password = "کلمه عبور"
performance = "پرفورمنس"
performance_settings = "Performance Settings"
permalink = "پیوند ثابت"
popular = "محبوب"
popular_posts = "پست های محبوب"
popular_posts_widget = "Popular posts widget"
popular_posts_widget_at_most = "Popular posts widget at most"
popular_tags = "تگ های محبوب"
post_by_author = "Posts by this author"
posted_in = "ارسال شده"
posted_on = "Posted on"
posts = "پست ها"
posts_by = "ارسال توسط"
posts_draft = "Posts draft"
posts_in_archive_page_at_most = "Posts in archive page at most"
posts_in_category_page_at_most = "Posts in category page at most"
posts_in_front_page_show_at_most = "Posts in front page show at most"
posts_in_profile_page_at_most = "Posts in profile page at most"
posts_in_search_result_at_most = "Posts in search result at most"
posts_in_tag_page_at_most = "Posts in tag page at most"
posts_in_type_page_at_most = "Posts in type page at most"
posts_index_settings = "Posts index settings"
posts_list = "لیست پست ها"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "Pre-release"
prev = "قدیمی"
prev_post = "پست قبلی"
preview = "مشاهده"
profile_for = "Profile for"
proudly_powered_by = "Proudly powered by"
publish = "انتشار"
publish_draft = "انتشار پیش نویس"
published = "منتشر شد"
quote_post = "Quote post"
quote_post_comment = "Creating blog post with featured quote"
rss_character = "RSS character"
rss_feeds_show_the_most_recent = "RSS feeds show the most recent"
rss_settings = "RSS settings"
read_more_text = "Read more text"
read_more_text_placeholder = "ادامه مطلب"
reading = "خواندن"
reading_settings = "Reading Settings"
recaptcha = "reCAPTCHA"
recent_posts = "پست های اخیر"
recent_posts_widget_at_most = "Recent posts widget at most"
regular_post = "پست عادی"
regular_post_comment = "ایجاد پست عادی وبلاگ"
related_posts = "پست های مرتبط"
related_widget_posts_at_most = "Related widget posts at most"
revert_to_draft = "Revert to draft"
save = "ذخیره"
save_config = "ذخیره تنظیمات"
save_edit = "Save Edit"
save_menu = "Save menu"
save_as_draft = "Save as draft"
save_category = "دخیره دسته بندی"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "جستجو"
search_for = "جستجو برای"
search_results_for = "Search results for"
search_results_not_found = "Search results not found!"
secret_key = "Secret Key"
settings = "تنظیمات"
sign_in_to_start_your_session = "Sign in to start your session"
site_key = "Site Key"
sitemap = "نقشه سایت"
slug = "Slug"
social_media = "رسانه های اجتماعی"
static_page = "صفحه ایستا"
static_page_comment = "ایجاد صفحه ایستا"
static_pages = "صفحه های ایستا"
summary = "خلاصه"
summary_character = "Summary character"
tag = "تگ"
tagcloud_widget_at_most = "TagCloud at most"
tagline = "Tagline"
tagline_placeholder = "Databaseless PHP Blogging Platform"
tagline_description = "In a few words, explain what this blog is about."
tags = "تگ ها"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "This is legacy code. Usually new created analytics using gtag.js"
this_page_doesnt_exist = "این صفحه وجود ندارد"
time = "ساعت"
timezone = "Timezone"
title = "عنوان"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "To use Disqus or Facebook comments you need to provide your Disqus shortname or your Facebook App ID."
token_error = "CSRF Token not correct"
tools = "ابزار"
twitter_account = "Twitter account"
type_to_search = "برای جستجو تایپ کنید"
uncategorized = "دسته بندی نشده"
uncategorized_comment = "Topics that don't need a category, or don't fit into any other existing category"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "به روز رسانی"
update_available = "Update Available"
update_draft = "به روز رسانی پیش نویس"
update_post = "به روز رسانی پست"
update_to = "به روزرسانی به"
upload = "ارسال"
user = "نام کاربری"
user_error = "User field is required"
valid_values_range_from_0_to_1.0._see = "Valid values range from 0.0 to 1.0. See"
video_post = "پست ویدیویی"
video_post_comment = "Creating blog post with featured video"
view = "View"
view_post = "View"
views = "Views"
widget = "ویجت"
widget_settings = "Widget Settings"
would_you_like_to_try_our = "Would you like to try our "
yes_im_in = "Yes I'm in"
yes_not_recommended = "Yes (not recommended)"
you_dont_have_permission_to_access_this_page = "You don't have permission to access this page"
your_new_config_key = "Your New Config Key"
your_new_value = "Your New Value"
your_backups = "Your backups"
your_latest_blog_posts = "آخرین پست های وبلاگ"
your_recent_posts = "آخرین پست ها"
by = "توسط"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>hint:</u> Use <code>Ctrl</code>/<code>CMD</code> + <code>F</code> to search for your config key or value."
homepage = "صفحه اصلی"
instead = "به جای"
item_class = "Insert CSS class"
item_slug = "افزودن لینک"
now = "now"
of = "of"
optional = "اختیاری"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>pro tips:</u> You can create custom config keys and print out your config key value anywhere in your template."
read_more = "read more"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/fr_FR.ini Executable file
View File

@ -0,0 +1,332 @@
about = "À propos"
add_category = "Ajouter une catégorie"
add_content = "Ajouter du contenu"
add_link = "Ajouter le lien"
add_menu = "Ajouter un menu"
add_new_page = "Ajouter une page"
add_new_post = "Ajouter un billet"
add_source_link_optional = "Ajouter le lien source (optionnel)"
add_sub = "Ajouter une sous-page"
address_url = "Adresse (URL)"
admin = "Administrateur"
admin_panel_style_based_on = "Style du panneau d'administration basé sur"
all_blog_posts = "Tous les billets de blog"
all_cache_has_been_deleted = "Le cache a été vidé !"
all_posts_tagged = "Tous les billets taggués"
archive_for = "Archive pour"
archive_page_for = "Page d'archive pour"
archives = "Archives"
are_you_sure_you_want_to_delete_ = "Êtes-vous sûr de vouloir supprimer <strong>%s</strong> ?"
at_the_moment_you_are_using_auto_generated_menu = "Pour le moment, vous utilisez le menu généré automatiquement."
audio_post = "Billet audio"
audio_post_comment = "Créer un billet de blog avec un fichier audio"
author = "Auteur"
author_description = "Un autre utilisateur de HTMLy"
back_to = "Retourner vers"
backup = "Sauvegarde"
blog_description = "En un paragraphe, dites-nous en plus sur votre blog."
blog_theme = "Thème graphique du blog"
blog_title = "Titre du blog"
blog_title_placeholder = "Mon blog HTMLy"
blog_posts_displayed_as = "Billets affichés comme"
breadcrumb_home_text = "Texte d'accueil du fil d'Ariane"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "En utilisant cet importateur, vous devez vous assurer qu'il s'agit de votre flux RSS ou que vous ayez l'autorisation de publier son contenu."
css_class_optional = "Classe CSS (optionnel)"
cache_expiration = "Durée avant l'expiration du cache (en heures)"
cache_off = "Désactiver le cache"
cache_timestamp = "Horodatage du cache"
cancel = "Annuler"
cannot_read_feed_content = "Impossible de lire le contenu du flux"
captcha_error = "reCaptcha incorrect"
categories = "Catégories"
category = "Catégorie"
check_update = "Rechercher des mises à jour"
clear_cache = "Nettoyer le cache"
comma_separated_values = "Valeurs séparées par des virgules"
comment_system = "Système de commentaires"
comments = "Commentaires"
config = "Configuration"
congrats_you_have_the_latest_version_of_htmly = "Félicitations ! Vous disposez de la dernière version de HTMLy."
content = "Contenu"
contents = "Contenus"
copyright_line = "Ligne de copyright"
copyright_line_placeholder = "(c) Votre nom."
create_backup = "Créer une sauvegarde"
created = "Créé"
custom = "Personnalisé"
custom_settings = "Paramètres personnalisés"
dashboard = "Tableau de bord"
date = "Date"
date_format = "Format des dates"
delete = "Supprimer"
description = "Description"
disable = "Désactiver"
disabled = "Désactivé"
disqus_shortname = "Nom abrégé (shortname) Disqus"
disqus_shortname_placeholder = "htmly"
draft = "Brouillon"
edit = "Éditer"
edit_category = "Éditer la catégorie"
edit_post = "Éditer"
edit_profile = "Éditer le profil"
enable = "Activer"
enable_blog_url = "Activer l'URL blog"
enter_image_url = "Entrer l'URL de l'image"
facebook_app_id = "ID d'application Facebook"
facebook_page = "Page Facebook"
featured_audio = "Audio en vedette"
featured_image = "Image en vedette"
featured_link = "Lien en vedette"
featured_quote = "Citation en vedette"
featured_video = "Vidéo en vedette"
feed_url = "Adresse du flux"
filename = "Nom du fichier"
follow = "Suivre"
for_google_site_verification_meta = "Pour le méta-tag google-site-verification"
front_page_displays = "Affichage en première page"
full_post = "Billet entier"
general = "Général"
general_settings = "Paramètres généraux"
get_one_here = "Obtenez vos clés reCaptcha ici :"
github_pre_release = "Pré-release Github"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "Accueil"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Si vous laissez vide, nous l'extrairons du contenu ci-dessous"
if_the_url_is_left_empty_we_will_use_the_page_title = "Si l'URL est laissée vide, nous utiliserons le titre de la page"
if_the_url_is_left_empty_we_will_use_the_post_title = "Si l'URL est laissée vide, nous utiliserons le titre du billet"
image_post = "Billet avec une image"
image_post_comment = "Créer un billet de blog avec une image"
import = "Importer"
import_feed = "Démarrer l'importation du flux"
import_rss = "Importer un flux RSS"
import_rss_feed_2.0 = "Importer le flux RSS 2.0"
insert_image = "Insérer l'image"
invalid_error = "Erreur : nom d'utilisateur ou mot de passe incorrect"
language = "Langue du système"
link_name = "Nom du lien"
link_post = "Billet avec un lien"
link_post_comment = "Créer un billet de blog avec un lien"
login = "Connexion"
login_page = "Page de connexion"
logout = "Déconnexion"
menu = "Menu"
menus = "Éditeur de menu"
meta_description = "Meta-description"
meta_description_character = "Nombre de caractères des méta-description"
metatags = "Méta-tags"
metatags_settings = "Paramètres des méta-tags"
mine = "Mes billets"
more = "Plus"
my_draft = "Mes brouillons"
my_posts = "Mes billets"
name = "Nom"
newer = "Plus récent"
next = "Suivant"
next_post = "Billet suivant"
no_available_backup = "Aucune sauvegarde disponible."
no_draft_found = "Aucun brouillon trouvé"
no_posts_found = "Aucun billet trouvé"
no_related_post_found = "Aucun billet en rapport trouvé"
no_scheduled_posts_found = "Aucun billet programmé trouvé !"
no_search_results = "Aucun résultat de recherche"
nope = "Non !"
not = "Non"
older = "Plus ancien"
only = "Seulement"
operations = "Opérations"
page = "Page"
page_generation_time = "Temps de génération de la page"
pages = "Pages"
pass_error = "Le champ Mot de passe est requis"
password = "Mot de passe"
performance = "Performance"
performance_settings = "Paramètres des performances"
permalink = "Lien permanent"
popular = "Populaire"
popular_posts = "Billets populaires"
popular_posts_widget = "Widget des billets populaires"
popular_posts_widget_at_most = "Nombre de billets maximum affichés dans le widget des billets populaires"
popular_tags = "Tags populaires"
post_by_author = "Billets de cet auteur"
posted_in = "Posté en"
posted_on = "Posté le"
posts = "Billets"
posts_by = "Billets par"
posts_draft = "Billets à l'état brouillon"
posts_in_archive_page_at_most = "Nombre de billets maximum dans la page des archives"
posts_in_category_page_at_most = "Nombre de billets maximum dans la page des catégories"
posts_in_front_page_show_at_most = "Nombre de billets maximum en première page"
posts_in_profile_page_at_most = "Nombre de billets maximum dans la page des profils"
posts_in_search_result_at_most = "Nombre de billets maximum dans les résultats de recherche"
posts_in_tag_page_at_most = "Nombre de billets maximum dans la page des tags"
posts_in_type_page_at_most = "Nombre de billets maximum dans la page des types"
posts_index_settings = "Paramètres d'indexation des articles"
posts_list = "Liste des billets"
posts_tagged = "Billets taggués"
posts_with_type = "Billets avec type"
pre_release = "Pré-release"
prev = "Ancien"
prev_post = "Billet précédent"
preview = "Pré-visualisation"
profile_for = "Profil de"
proudly_powered_by = "Fièrement propulsé par"
publish = "Publier"
publish_draft = "Publier le brouillon"
published = "Publié"
quote_post = "Billet avec une citation"
quote_post_comment = "Créer un billet avec un citation"
rss_character = "Caractères maximum des contenus du flux RSS"
rss_feeds_show_the_most_recent = "Nombre de billets maximum les plus récents du flux RSS"
rss_settings = "Paramètres du flux RSS"
read_more_text = "Texte Continuer à lire"
read_more_text_placeholder = "Continuer à lire"
reading = "Lecture"
reading_settings = "Paramètres de lecture"
recaptcha = "reCAPTCHA"
recent_posts = "Billets récents"
recent_posts_widget_at_most = "Nombre de billets maximum affichés dans le widget des billets récents"
regular_post = "Billet simple"
regular_post_comment = "Créer un billet de blog simple"
related_posts = "Billets en rapport"
related_widget_posts_at_most = "Nombre de billets maximum affichés dans le widget des billets similaires"
revert_to_draft = "Retourner en brouillon"
save = "Enregistrer"
save_config = "Sauvegarder la configuration"
save_edit = "Sauvegarder la modification"
save_menu = "Sauvegarder le menu"
save_as_draft = "Enregistrer en brouillon"
save_category = "Catégorie de la sauvegarde"
scheduled = "Programmés"
scheduled_posts = "Billets programmés"
scheduled_tips = "La publication d'un billet avec une date ou une heure future sera intégrée dans les billets programmés."
search = "Recherche"
search_for = "Rechercher pour"
search_results_for = "Résultats de recherche pour"
search_results_not_found = "Résultats de recherche non trouvés !"
secret_key = "Clé secrète"
settings = "Paramètres"
sign_in_to_start_your_session = "Connectez-vous pour démarrer votre session"
site_key = "Clé de site"
sitemap = "Plan du site"
slug = "Jeton"
social_media = "Réseaux sociaux"
static_page = "Page statique"
static_page_comment = "Créer une page statique"
static_pages = "Pages statiques"
summary = "Résumé"
summary_character = "Nombre de caractères du résumé"
tag = "Tag"
tagcloud_widget_at_most = "TagCloud au maximum"
tagline = "Slogan"
tagline_placeholder = "Plateforme de blog PHP sans base de données"
tagline_description = "En quelques mots, expliquez de quoi parle ce blog."
tags = "Tags"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Il s'agit d'un code hérité (legacy). Généralement, gtag.js est utilisé"
this_page_doesnt_exist = "Cette page n'existe pas !"
time = "Temps"
timezone = "Fuseau horaire"
title = "Titre"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Pour utiliser Disqus ou les commentaires Facebook, vous devez fournir le nom abrégé (shortname) Disqus ou l'ID d'application Facebook."
token_error = "Jeton CSRF incorrect"
tools = "Outils"
twitter_account = "Compte Twitter"
type_to_search = "Tapez pour rechercher"
uncategorized = "Sans catégorie"
uncategorized_comment = "Sujets qui n'ont pas besoin de catégorie, ou qui ne conviennent à aucune catégorie existante"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Format de flux inconnu"
update = "Mise à jour"
update_available = "Mise à jour disponible"
update_draft = "Mettre à jour le brouillon"
update_post = "Mettre à jour le billet"
update_to = "Mettre à jour vers"
upload = "Envoyer"
user = "Utilisateur"
user_error = "Le champ Utilisateur est requis"
valid_values_range_from_0_to_1.0._see = "Les valeurs valides vont de 0,0 à 1,0. Voir"
video_post = "Billet vidéo"
video_post_comment = "Créer un billet de blog avec une vidéo"
view = "Voir"
view_post = "Consulter"
views = "Vues"
widget = "Widget"
widget_settings = "Paramètres des widgets"
would_you_like_to_try_our = "Souhaitez-vous essayer notre "
yes_im_in = "Oui, je suis prêt"
yes_not_recommended = "Oui (déconseillé)"
you_dont_have_permission_to_access_this_page = "Vous n'êtes pas autorisé à accéder à cette page"
your_new_config_key = "Votre nouvelle clé de configuration"
your_new_value = "Votre nouvelle valeur"
your_backups = "Vos sauvegardes"
your_latest_blog_posts = "Vos derniers billets"
your_recent_posts = "Vos billets récents"
by = "par"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>astuce :</u> Utilisez <code>Ctrl</code>/<code>CMD</code> + <code>F</code> pour rechercher votre clé ou valeur de configuration."
homepage = "page d'accueil"
instead = "à la place"
item_class = "Insérer la classe CSS"
item_slug = "Insérer le jeton"
now = "maintenant"
of = "de"
optional = "optionnel"
post_your_post_slug = "/billet/jeton-du-billet"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>astuce de pro :</u> Vous pouvez créer une clé de configuration personnalisée et afficher la valeur de votre clé de configuration n'importe où dans votre modèle."
read_more = "lire plus"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/annee/mois/jeton-du-billet"
your_key = "votre.cle"
summary_behavior = "Comportement du résumé"
default = "Défaut"
check_shortcode = "Vérifier le shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "En mode résumé, il est possible de vérifier le shortcode avant de réduire le contenu à x caractères."
manage_users = "Gérer les utilisateurs"
add_user = "Ajouter un utilisateur"
username = "Nom d'utilisateur"
role = "Rôle"
change_password = "Changer le mot de passe"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/gu_GU.ini Executable file
View File

@ -0,0 +1,332 @@
about = "વિશે"
add_category = "વર્ગ ઉમેરો"
add_content = "સામગ્રી ઉમેરો"
add_link = "એડ_લિંક"
add_menu = "મેનુ ઉમેરો"
add_new_page = "નવું પૃષ્ઠ ઉમેરો"
add_new_post = "નવી પોસ્ટ ઉમેરો"
add_source_link_optional = "સ્રોત લિંક ઉમેરો (વૈકલ્પિક)"
add_sub = "પેટા પૃષ્ઠ ઉમેરો"
address_url = "સરનામું (URL)"
admin ="એડમિન"
admin_panel_style_based_on = "એડમિન પેનલ શૈલી પર આધારિત"
all_blog_posts = "બધી બ્લોગ પોસ્ટ્સ"
all_cache_has_been_deleted = "બધી કેશ કાઢી નાખવામાં આવી છે."
all_posts_tagged = "બધી પોસ્ટ ટૅગ કરેલી"
archive_for = "આર્કાઇવ માટે"
archive_page_for = "માટે પૃષ્ઠ આર્કાઇવ"
archives = "આર્કાઇવ્સ"
are_you_sure_you_want_to_delete_ = "શું તમે ખરેખર <strong>%s</strong> ને કાઢી નાખવા માંગો છો?"
at_the_moment_you_are_using_auto_generated_menu = "આ ક્ષણે તમે સ્વતઃ જનરેટેડ મેનૂનો ઉપયોગ કરી રહ્યાં છો."
audio_post = "ઓડિયો પોસ્ટ"
audio_post_comment = "વિશિષ્ટ ઓડિયો સાથે બ્લોગ પોસ્ટ બનાવવી"
author = "લેખક"
author_description = "માત્ર અન્ય HTMLy વપરાશકર્તા"
back_to = "પાછળ"
backup = "બેકઅપ"
blog_description = "એક ફકરામાં, અમને તમારા બ્લોગ વિશે વધુ માહિતી આપો."
blog_theme = "બ્લોગ થીમ (શૈલી)"
blog_title = "બ્લોગ શીર્ષક"
blog_title_placeholder = "મારો HTMLy બ્લોગ"
blog_posts_displayed_as = "બ્લોગ પોસ્ટ કેવી રીતે પ્રદર્શિત થાય છે"
breadcrumb_home_text = "બ્રેડક્રમ્બ હોમ ટેક્સ્ટ"
by_using_this_importer_you_are_agree_if_the_feed_is_yours_or_at_least_you_have_the_authority_to_publish_it = "આ આયાતકારનો ઉપયોગ કરીને તમે સંમત થાઓ છો કે ફીડ તમારું છે અથવા ઓછામાં ઓછું તમારી પાસે તેને પ્રકાશિત કરવાની સત્તા છે."
css_class_optional = "CSS વર્ગ (વૈકલ્પિક)"
cache_expiration = "કેશ સમાપ્તિ (કલાકોમાં)"
cache_off = "કેશ બંધ"
cache_timestamp = "કેશ ટાઇમસ્ટેમ્પ"
cancel = "રદ કરો"
can_read_feed_content = "ફીડ સામગ્રી વાંચી શકાતી નથી"
captcha_error = "ReCAPTCHA ખોટું છે"
categories = "શ્રેણીઓ"
category = "શ્રેણી"
check_update = "અપડેટ તપાસો"
clear_cache = "કેશ સાફ કરો (દ્રુતિકા)"
comma_separated_values = "અલ્પવિરામથી અલગ કરેલ મૂલ્યો"
comment_system = "ટિપ્પણી સિસ્ટમ"
comments = "ટિપ્પણીઓ"
config= "config"
congrats_you_have_the_latest_version_of_htmly = "અભિનંદન! તમારી પાસે HTMLy નું નવીનતમ સંસ્કરણ છે."
content = "સામગ્રી"
contents = "સામગ્રીનું કોષ્ટક"
copyright_line = "કૉપિરાઇટ લાઇન"
copyright_line_placeholder = "(C) તમારું નામ."
create_backup = "બેકઅપ બનાવો"
created = "બનાવ્યું હતું"
custom = "કસ્ટમ"
custom_settings = "કસ્ટમ સેટિંગ્સ"
dashboard = "ડેશબોર્ડ"
date = "તારીખ"
date_format = "તારીખ ફોર્મેટ"
delete = "કાઢી નાખો"
description = "વર્ણન"
disable = "અક્ષમ કરો"
disabled = "અક્ષમ"
disqus_shortname = "ડિસ્કસ નામ"
disqus_shortname_placeholder = "htmly"
draft = "ડ્રાફ્ટ"
edit = "સંપાદિત કરો"
edit_category = "શ્રેણી સંપાદિત કરો"
edit_post = "સંપાદિત કરો"
edit_profile = "પ્રોફાઇલ સંપાદિત કરો"
enable = "સક્ષમ કરો"
enable_blog_url = "/બ્લોગ URL સક્ષમ કરો"
enter_image_url = "છબી URL દાખલ કરો"
facebook_app_id = "ફેસબુક એપ ID"
facebook_page = "ફેસબુક પેજ"
featured_audio = "ફીચર્ડ ઓડિયો"
featured_image = "વિશિષ્ટ છબી"
featured_link = "વિશિષ્ટ લિંક"
featured_quote = "ફીચર્ડ ક્વોટ"
featured_video = "વિશિષ્ટ વિડિઓ"
feed_url = "ફીડ URL"
filename = "ફાઈલનામ"
follow = "અનુસરી રહ્યા છીએ"
for_google_site_verification_meta = "Google સાઇટ ચકાસણી મેટા માટે"
front_page_displays = "ફ્રન્ટ પેજ ડિસ્પ્લે"
full_post = "સંપૂર્ણ પોસ્ટ"
general = "સામાન્ય"
general_settings = "સામાન્ય સેટિંગ્સ"
get_one_here = "એક અહીં મેળવો"
github_pre_release = "ગીથબ પ્રી-રીલીઝ"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (લેગસી)"
google_search_console = "Google શોધ કન્સોલ"
home = "ઘર"
if_leave_empty_we_will_excerpt_it_from_the_content_below = "જો ખાલી છોડીએ તો અમે નીચેની સામગ્રીમાંથી તેનો અંશો લઈશું"
if_the_url_leave_empty_we_will_use_the_page_title = "જો URL ખાલી રહેશે તો અમે પૃષ્ઠ શીર્ષકનો ઉપયોગ કરીશું"
if_the_url_leave_empty_we_will_use_the_post_title = "જો URL ખાલી રહેશે તો અમે પોસ્ટ શીર્ષકનો ઉપયોગ કરીશું"
image_post = "છબી પોસ્ટ"
image_post_comment = "વિશિષ્ટ છબી સાથે બ્લોગ પોસ્ટ બનાવવી"
import = "આયાત કરો"
import_feed = "ફીડ આયાત શરૂ કરો"
import_rss = "આરએસએસ આયાત કરો"
import_rss_feed_2.0 = "RSS ફીડ 2.0 આયાત કરો"
insert_image = "છબી દાખલ કરો"
invalid_error = "ભૂલ! અમાન્ય વપરાશકર્તાનામ અથવા પાસવર્ડ"
language = "સિસ્ટમ ભાષા"
link_name = "લિંક નામ"
link_post = "લિંક પોસ્ટ"
link_post_comment = "વિશિષ્ટ લિંક સાથે બ્લોગ પોસ્ટ બનાવવી"
login = "લોગ ઇન"
login_page = "લોગિન પૃષ્ઠ"
logout = "લોગ આઉટ"
menu = "મેનુ"
menus = "મેનુ એડિટર"
meta_description = "મેટા વર્ણન"
meta_description_character = "મેટા વર્ણન અક્ષર"
metatags = "મેટા ટૅગ્સ"
metatags_settings = "મેટાટેગ સેટિંગ્સ"
mine = "મારું"
more = "વધુ"
my_draft = "મારો ડ્રાફ્ટ"
my_posts = "મારી પોસ્ટ્સ"
name = "નામ"
newer = "નવું"
next = "આગલું"
next_post = "આગલી પોસ્ટ"
no_available_backup = "આ સમયે કોઈ બેકઅપ ઉપલબ્ધ નથી."
no_draft_found = "કોઈ ડ્રાફ્ટ નથી મળ્યું"
no_posts_found = "કોઈ પોસ્ટ મળી નથી"
no_related_post_found = "કોઈ સંબંધિત પોસ્ટ મળી નથી"
no_scheduled_posts_found = "કોઈ સુનિશ્ચિત પોસ્ટ્સ મળી નથી!"
no_search_results = "કોઈ શોધ પરિણામો મળ્યા નથી"
nope =" ના"
not = "ના"
older = "જૂની"
only = "માત્ર"
operations = "ઓપરેશન્સ"
page = "પાનું"
page_generation_time = "પેજ જનરેશન સમય"
pages = "પૃષ્ઠો"
pass_error = "પાસવર્ડ ફીલ્ડ જરૂરી છે"
password= "પાસવર્ડ"
performance = "પ્રદર્શન"
performance_settings = "પ્રદર્શન સેટિંગ્સ"
permalink = "પરમાલિંક"
popular = "લોકપ્રિય"
popular_posts = "લોકપ્રિય પોસ્ટ્સ"
popular_posts_widget = "લોકપ્રિય પોસ્ટ્સ વિજેટ"
popular_posts_widget_at_most = "સૌથી વધુ લોકપ્રિય પોસ્ટ્સ વિજેટ"
popular_tags = "પ્રખ્યાત ટૅગ્સ"
post_by_author = "આ લેખક દ્વારા પોસ્ટ"
posted_in = "માં પ્રકાશિત થયું હતું"
posted_on = "પ્રકાશિત"
posts = "પોસ્ટ્સ"
posts_by = "પોસ્ટ્સ દ્વારા"
posts_draft = "પોસ્ટ ડ્રાફ્ટ"
posts_in_archive_page_at_most = "વધુમાં વધુ આર્કાઇવ પૃષ્ઠમાં પોસ્ટ્સ"
posts_in_category_page_at_most = "વધુમાં વધુ કેટેગરી પૃષ્ઠમાં પોસ્ટ્સ"
posts_in_front_page_show_at_most = "ફ્રન્ટ પેજ પરની પોસ્ટ્સ વધુમાં વધુ બતાવવામાં આવે છે"
posts_in_profile_page_at_most = "પ્રોફાઇલ પૃષ્ઠ પર વધુમાં વધુ પોસ્ટ કરો"
posts_in_search_result_at_most = "શોધ પરિણામમાં વધુમાં વધુ પોસ્ટ્સ"
posts_in_tag_page_at_most = "મોટા ભાગના ટેગ પેજમાં પોસ્ટ્સ"
posts_in_type_page_at_most = "વધુમાં વધુ પૃષ્ઠ પ્રકારમાં પોસ્ટ્સ"
posts_index_settings = "પોસ્ટ અનુક્રમણિકા સેટિંગ્સ"
posts_list = "પોસ્ટની યાદી"
posts_tagged = "ટૅગ કરેલી પોસ્ટ્સ"
posts_with_type = "પ્રકાર સાથેની પોસ્ટ"
pre_release = "પ્રી-રીલીઝ"
prev = "અગાઉ"
prev_post = "પહેલાની પોસ્ટ"
preview = "ઝલકી"
profile_for = "માટે પ્રોફાઇલ"
proudly_powered_by = "ગર્વથી સંચાલિત"
publish = "પ્રકાશિત કરો"
publish_draft = "ડ્રાફ્ટ પ્રકાશિત કરો"
published = "પ્રકાશિત"
quote_post = "અવતરણ પોસ્ટ"
quote_post_comment = "ખાસ અવતરણ સાથે બ્લોગ પોસ્ટ બનાવવી"
rss_character = "RSS અક્ષર"
rss_feeds_show_the_most_recent = "RSS ફીડ્સ સૌથી તાજેતરનું દર્શાવે છે"
rss_settings = "RSS સેટિંગ્સ"
read_more_text = "વધુ ટેક્સ્ટ વાંચો"
read_more_text_placeholder = "વધુ વાંચો"
reading = "વાંચન"
read_settings = "વાંચન સેટિંગ્સ"
recaptcha = "રીકેપ્ચા"
fresh_posts = "તાજેતરની પોસ્ટ્સ"
fresh_posts_widget_at_most = "મોટાભાગે તાજેતરની પોસ્ટ્સ વિજેટ"
regular_post = "નિયમિત પોસ્ટ"
regular_post_comment = "નિયમિત બ્લોગ પોસ્ટ બનાવવી"
related_posts = "સંબંધિત પોસ્ટ્સ"
related_widget_posts_at_most = "વધુમાં વધુ સંબંધિત વિજેટ પોસ્ટ્સ"
revert_to_draft = "ડ્રાફ્ટ પર પાછા ફરો"
save = "સાચવો"
save_config = "રૂપરેખાંકન સાચવો"
save_edit = "સંપાદન સાચવો"
save_menu = "સેવ મેનુ"
save_as_draft = "ડ્રાફ્ટ તરીકે સાચવો"
save_category = "વર્ગ સાચવો"
scheduled = "સુનિશ્ચિત"
scheduled_posts = "અનુસૂચિત પોસ્ટ્સ"
scheduled_tips = "ભવિષ્યની તારીખ અથવા સમય સાથે પોસ્ટ પ્રકાશિત કરવાથી તે શેડ્યૂલ કરેલી પોસ્ટમાં ખસેડવામાં આવશે"
search = "શોધ"
search_for = "માટે શોધો"
search_results_for = "શોધ પરિણામો"
search_results_not_found = "શોધ પરિણામો મળ્યા નથી!"
secret_key = "ગુપ્ત ચાવી"
settings="સેટિંગ્સ"
sign_in_to_start_your_session = "તમારું સત્ર શરૂ કરવા માટે સાઇન ઇન કરો"
site_key = "સાઇટ_કી"
sitemap = "સાઇટ મેપ"
slug = "કાઉન્ટર"
social_media = "સોશિયલ મીડિયા"
static_page = "સ્થિર પૃષ્ઠ"
static_page_comment = "સ્થિર પૃષ્ઠ બનાવવું"
static_pages = "સ્થિર પૃષ્ઠો"
summary = "સારાંશ"
summary_character = "સારાંશ અક્ષર"
tag = "ટેગ"
tagcloud_widget_at_most = "વધુમાં વધુ ટેગક્લાઉડ"
tagline = "ટેગ લાઇન"
tagline_placeholder = "ડેટાબેઝલેસ PHP બ્લોગિંગ પ્લેટફોર્મ"
tagline_description = "થોડા શબ્દોમાં વર્ણન કરો કે આ બ્લોગ શેના વિશે છે."
tags = "ટૅગ્સ"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "આ લેગસી કોડ છે. નવા એનાલિટિક્સ સામાન્ય રીતે gtag.js નો ઉપયોગ કરીને બનાવવામાં આવે છે"
this_page_doesnt_exist = "આ પૃષ્ઠ અસ્તિત્વમાં નથી!"
time = "સમય"
timezone = "સમય ઝોન"
title = "શીર્ષક"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Disqus અથવા Facebook ટિપ્પણીઓનો ઉપયોગ કરવા માટે તમારે તમારું Disqus ટૂંકું નામ અથવા તમારી Facebook એપ્લિકેશન ID પ્રદાન કરવાની જરૂર છે."
token_error = "CSRF ટોકન અમાન્ય છે"
tools = "ટૂલ્સ"
twitter_account = "Twitter એકાઉન્ટ"
type_to_search = "શોધવા માટે લખો"
uncategorized = "અવર્ગીકૃત"
uncategorized_comment = "વિષયો કે જેને શ્રેણીની જરૂર નથી, અથવા અન્ય અસ્તિત્વમાંની શ્રેણીમાં બંધબેસતી નથી"
universal_analytics = "યુનિવર્સલ એનાલિટિક્સ (gtag.js)"
unknown_feed_format = "અજ્ઞાત ફીડ ફોર્મેટ"
update = "અપડેટ"
update_available = "અપડેટ્સ ઉપલબ્ધ"
update_draft = "ડ્રાફ્ટ અપડેટ કરો"
update_post = "અપડેટ પોસ્ટ"
update_to = "આને અપડેટ કરો"
upload = "અપલોડ કરો"
user = "વપરાશકર્તા"
user_error = "વપરાશકર્તા ફીલ્ડ જરૂરી છે"
valid_values_range_from_0_to_1.0._see = "માન્ય મૂલ્યો 0 થી 1.0 સુધીની છે. જુઓ ..."
video_post = "વિડિયો પોસ્ટ"
video_post_comment = "વિશિષ્ટ વિડિઓ સાથે બ્લોગ પોસ્ટ બનાવવી"
view = "જુઓ"
view_post = "જુઓ"
views = "જોયું"
widget = "વિજેટ"
widget_settings = "વિજેટ સેટિંગ્સ"
will_you_like_to_try_our = "શું તમે અમારું પ્રયાસ કરવા માંગો છો"
yes_im_in = "હા, હું સંમત છું"
yes_not_recommended = "હા (ભલામણ કરેલ નથી)"
you_dont_have_permission_to_access_this_page = "તમને આ પૃષ્ઠને ઍક્સેસ કરવાની પરવાનગી નથી"
your_new_config_key = "તમારી નવી રૂપરેખાંકન કી"
your_new_value = "તમારું નવું મૂલ્ય"
your_backups = "તમારા બેકઅપ્સ"
your_latest_blog_posts = "તમારી નવીનતમ બ્લોગ પોસ્ટ્સ"
your_recent_posts = "તમારી તાજેતરની પોસ્ટ્સ"
દby = "દ્વારા"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>સંકેત:</u> તમારી રૂપરેખાંકન કી અથવા મૂલ્ય શોધવા માટે <code>Ctrl</code>/<code>CMD</code> + <code>F</code> નો ઉપયોગ કરો."
homepage = "હોમપેજ"
instead = "ને બદલે"
item_class = "CSS વર્ગ દાખલ કરો"
item_slug = "લિંક URL દાખલ કરો"
now = "હવે"
of = "માંથી"
optional = "વૈકલ્પિક"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>પ્રો ટીપ્સ:</u>તમે કસ્ટમ રૂપરેખા કી બનાવી શકો છો અને તમારા નમૂનામાં ગમે ત્યાં તમારી રૂપરેખા કી મૂલ્ય છાપી શકો છો."
read_more = "વધુ વાંચો"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "સારાંશ વર્તન"
default = "મૂળભૂત"
check_shortcode = "શોર્ટકોડ તપાસો"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "સારાંશ મોડમાં, સામગ્રીને x char પર ટ્રિમ કરતા પહેલા શોર્ટકોડ તપાસવો કે કેમ"
manage_users = "વપરાશકર્તાઓને મેનેજ કરો"
add_user = "વપરાશકર્તા ઉમેરો"
username = "વપરાશકર્તા નામ"
role = "ભૂમિકા"
change_password = "પાસવર્ડ બદલો"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/hi_HI.ini Executable file
View File

@ -0,0 +1,332 @@
about = "के बारे में"
add_category = "श्रेणी जोड़ना"
add_content = "सामग्री जोड़ें"
add_link = "लिंक_जोड़ें"
add_menu = "मेनू जोड़ें"
add_new_page = "नया पेज जोड़ें"
add_new_post = "नई पोस्ट जोड़ें"
add_source_link_optional = "स्रोत लिंक जोड़ें (वैकल्पिक)"
add_sub = "उप पृष्ठ जोड़ें"
address_url = "पता (URL)"
admin = "व्यवस्थापक"
admin_panel_style_based_on = "व्यवस्थापक पैनल शैली पर आधारित"
all_blog_posts = "सभी ब्लॉग पोस्ट"
all_cache_has_been_deleted = "सारा कैश (द्रुतिका) हटा दिया गया है|"
all_posts_tagged = "सभी पोस्ट टैग किए गए"
archive_for = "पुरालेख के लिए"
archive_page_for = "पृष्ठ पुरालेख के लिए"
archives = "अभिलेखागार"
are_you_sure_you_want_to_delete_ = "क्या आप आश्वस्त है कि आपको डिलीट करना है <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "फिलहाल आप ऑटो जेनरेटेड मेनू का उपयोग कर रहे हैं।"
audio_post = "ऑडियो पोस्ट"
audio_post_comment = "फ़ीचर्ड ऑडियो के साथ ब्लॉग पोस्ट बनाया जा रहा है"
author = "लेखक"
author_description = "केवल एक और HTMLy उपयोगकर्ता"
back_to = "वापस"
backup = "बैकअप"
blog_description = "एक पैराग्राफ में, हमें अपने ब्लॉग के बारे में और जानकारी दे।"
blog_theme = "ब्लॉग थीम (शैली)"
blog_title = "ब्लॉग का शीर्षक"
blog_title_placeholder = "मेरा HTMLy ब्लॉग"
blog_posts_displayed_as = "ब्लॉग पोस्ट के प्रदर्शन का तरीका"
breadcrumb_home_text = "ब्रेडक्रंब होम टेक्स्ट"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_itv = "इस आयातक का उपयोग करके आप पुष्टि करते हैं कि फ़ीड आपकी है या कम से कम आपके पास इसे प्रकाशित करने का अधिकार है।"
css_class_optional = "सीएसएस क्लास (वैकल्पिक)"
cache_expiration = "कैश (द्रुतिका) समाप्ति (घंटे में)"
cache_off = "कैश द(्रुतिका) बंद"
cache_timestamp = "कैश (द्रुतिका) समयमोहर"
cancel = "रद्द करना"
cannot_read_feed_content = "फ़ीड सामग्री नहीं पढ़ सकता"
captcha_error = "रीकैप्चा सही नहीं है"
categories = "श्रेणियाँ"
category = "वर्ग"
check_update = "अपडेट जांचें"
clear_cache = "कैश (द्रुतिका) को साफ़ करें"
comma_separated_values = "अल्पविराम से अलग किये गए मान"
comment_system = "टिप्पणी प्रणाली"
comments = "टिप्पणियाँ"
config = "कॉन्फ़िग"
congrats_you_have_the_latest_version_of_htmly = "बधाई! आपके पास HTMLy का नवीनतम संस्करण है|"
content = "विषय"
contents = "विषय-सूची"
copyright_line = "कॉपीराइट लाइन"
copyright_line_placeholder = "(C) आपका नाम|"
create_backup = "बैकअप बनाना"
created = "बनाया था"
custom = "स्वनिर्धारित"
custom_settings = "कस्टम सेटिंग्स"
dashboard = "डैशबोर्ड"
date = "तारीख"
date_format = "तारिख का प्रारूप"
delete = "मिटाना"
description = "विवरण"
disable = "अक्षम करना"
disabled = "अक्षम"
disqus_shortname = "डिस्कस का नाम"
disqus_shortname_placeholder = "htmly"
draft = "ड्राफ्ट"
edit = "संपादन करें"
edit_category = "श्रेणी संपादित करें"
edit_post = "संपादन करें"
edit_profile = "प्रोफ़ाइल संपादित करें"
enable = "सक्षम करें"
enable_blog_url = "सक्षम करे ब्लॉग URL"
enter_image_url = "छवि URL दर्ज करें"
facebook_app_id = "फेसबुक ऐप आईडी"
facebook_page = "फेसबुक पेज"
featured_audio = "विशेष रुप से प्रदर्शित ऑडियो"
featured_image = "फीचर्ड चित्र"
featured_link = "विशेष रुप से प्रदर्शित लिंक"
featured_quote = "विशेष उद्धरण"
featured_video = "विशेष रुप से प्रदर्शित वीडियो"
feed_url = "फीड URL"
filename = "फ़ाइल का नाम"
follow = "अनुसरण करना"
for_google_site_verification_meta = "Google साइट सत्यापन मेटा के लिए"
front_page_displays = "फ्रंट पेज प्रदर्शित करता है"
full_post = "पूरी पोस्ट"
general = "सामान्य"
general_settings = "सामान्य सेटिंग्स"
get_one_here = "यहां एक प्राप्त करें"
github_pre_release = "Github प्री-रिलीज़"
google_analytics = "Google एनालिटिक्स"
google_analytics_legacy = "Google एनालिटिक्स (प्राचीन)"
google_search_console = "Google खोज कंसोल"
home = "घर"
if_left_empty_we_will_excerpt_it_from_the_content_below = "यदि खाली छोड़ दिया जाए तो हम इसे नीचे दी गई सामग्री से उद्धृत करेंगे"
if_the_url_is_left_empty_we_will_use_the_page_title = "यदि URL खाली छोड़ दिया जाए तो हम पृष्ठ शीर्षक का उपयोग करेंगे"
if_the_url_is_left_empty_we_will_use_the_post_title = "यदि URL खाली छोड़ दिया जाए तो हम पोस्ट शीर्षक का उपयोग करेंगे"
image_post = "छवि पोस्ट"
image_post_comment = "विशेष रुप से प्रदर्शित छवि के साथ ब्लॉग पोस्ट बनाया जा रहा है"
import = "आयात"
import_feed = "फ़ीड आयात प्रारंभ करें"
import_rss = "RSS आयात करें"
import_rss_feed_2.0 = "RSS फ़ीड 2.0 आयात करें"
insert_image = "चित्र डालें"
invalid_error = "त्रुटि! अमान्य उपयोगकर्ता नाम या पासवर्ड"
language = "सिस्टम भाषा"
link_name = "लिंक नाम"
link_post = "लिंक पोस्ट"
link_post_comment = "विशेष रुप से प्रदर्शित लिंक के साथ ब्लॉग पोस्ट बनाया जा रहा है"
login = "लॉग इन करें"
login_page = "लोग इन वाला पन्ना"
logout = "लॉग आउट"
menu = "मेन्यू"
menus = "मेनू संपादक"
meta_description = "मेटा विवरण"
meta_description_character = "मेटा विवरण अक्षर"
metatags = "मेटा टैग"
metatags_settings = "मेटाटैग सेटिंग्स"
mine = "मेरा"
more = "अधिक"
my_draft = "मेरा ड्राफ्ट"
my_posts = "मेरी पोस्ट"
name = "नाम"
newer = "नया"
next = "अगला"
next_post = "अगली पोस्ट"
no_available_backup = "इस समय कोई बैकअप उपलब्ध नहीं है|"
no_draft_found = "कोई ड्राफ्ट नहीं मिला"
no_posts_found = "कोई प्रकाशन नहीं मिला"
no_related_post_found = "कोई संबंधित पोस्ट नहीं मिली"
no_scheduled_posts_found = "कोई निर्धारित पोस्ट नहीं मिली!"
no_search_results = "खोजने पर कोई परिणाम नहीं मिला"
nope = "नहीं"
not = "नहीं"
older = "पुराने"
only = "केवल"
operations = "संचालन"
page = "पृष्ठ"
page_generation_time = "पेज निर्माण का समय"
pages = "पृष्ठों"
pass_error = "पासवर्ड फ़ील्ड आवश्यक है"
password = "पासवर्ड"
performance = "प्रदर्शन"
performance_settings = "प्रदर्शन समायोजन"
permalink = "स्थायी लिंक"
popular = "लोकप्रिय"
popular_posts = "लोकप्रिय लेख"
popular_posts_widget = "लोकप्रिय पोस्ट विजेट"
popular_posts_widget_at_most = "अधिक से अधिक लोकप्रिय पोस्ट विजेट"
popular_tags = "प्रसिद्ध टग्स"
post_by_author = "इस लेखक द्वारा पोस्ट"
posted_in = "में प्रकाशित किया गया था"
posted_on = "प्रकाशित किया गया"
posts = "पोस्ट"
posts_by = "द्वारा पोस्ट"
posts_draft = "पोस्ट ड्राफ्ट"
posts_in_archive_page_at_most = "अधिकतम संग्रह पृष्ठ में पोस्ट"
posts_in_category_page_at_most = "अधिकतम श्रेणी पृष्ठ में पोस्ट"
posts_in_front_page_show_at_most = "पहले पन्ने पर पोस्ट अधिकतम दिखाई देती हैं"
posts_in_profile_page_at_most = "अधिकतम प्रोफ़ाइल पृष्ठ पर पोस्ट करें"
posts_in_search_result_at_most = "अधिकतम खोज परिणाम में पोस्ट"
posts_in_tag_page_at_most = "अधिकतम टैग पेज में पोस्ट"
posts_in_type_page_at_most = "अधिक से अधिक टाइप पेज में पोस्ट करें"
posts_index_settings = "इंडेक्स सेटिंग्स पोस्ट करें"
posts_list = "पोस्ट सूची"
posts_tagged = "टैग किए गए पोस्ट"
posts_with_type = "प्रकार सहित पोस्ट"
pre_release = "पूर्व-रिलीज़"
prev = "पिछला"
prev_post = "पिछला पोस्ट"
preview = "झलकी"
profile_for = "के लिए प्रोफाइल"
proudly_powered_by = "गर्व से संचालित"
publish = "प्रकाशित करना"
publish_draft = "ड्राफ्ट प्रकाशित करें"
published = "प्रकाशित"
quote_post = "उद्धरण पोस्ट"
quote_post_comment = "विशेष उद्धरण के साथ ब्लॉग पोस्ट बनाया जा रहा है"
rss_character = "RSS अक्षर"
rss_feeds_show_the_most_recent = "RSS फ़ीड नवीनतम दिखाते हैं "
rss_settings = "RSS समायोजन"
read_more_text = "और अधिक पाठ पढ़ें"
read_more_text_placeholder = "अधिक पढ़े"
reading = "पढ़ना"
reading_settings = "सेटिंग पढ़ना"
recaptcha = "रीकैप्चा"
recent_posts = "हाल के पोस्ट"
recent_posts_widget_at_most = "अधिक से अधिक हालिया पोस्ट विजेट"
regular_post = "नियमित पोस्ट"
regular_post_comment = "नियमित ब्लॉग पोस्ट बनाया जा रहा है"
related_posts = "संबंधित पोस्ट"
related_widget_posts_at_most = "अधिक से अधिक संबंधित विजेट पोस्ट"
revert_to_draft = "ड्राफ्ट पर वापस लौटें"
save = "सहेजें"
save_config = "कॉन्फ़िगरेशन सहेजें"
save_edit = "संपादित सहेजें"
save_menu = "मेनू सहेजें"
save_as_draft = "ड्राफ्ट के रूप में सेव करें"
save_category = "श्रेणी सहेजें"
scheduled = "अनुसूचित"
scheduled_posts = "अनुसूचित पोस्ट"
scheduled_tips = "किसी पोस्ट को भविष्य की तारीख या समय के साथ प्रकाशित करने पर वह निर्धारित पोस्ट में चला जाएगा"
search = "खोज"
search_for = "निम्न को खोजें"
search_results_for = "खोजे गए परिणाम"
search_results_not_found = "खोज परिणाम नहीं मिले!"
secret_key = "गुप्त कुंजी"
settings = "समायोजन"
sign_in_to_start_your_session = "अपना सत्र शुरू करने के लिए साइन इन करें"
site_key = "कार्यस्थल की कुंजी"
sitemap = "साइट मैप"
slug = "काउंटर"
social_media = "सामाजिक मीडिया"
static_page = "स्टेटिक पृष्ठ"
static_page_comment = "स्टेटिक पेज बनाया जा रहा है"
static_pages = "स्टेटिक पेज"
summary = "सारांश"
summary_character = "सारांश अक्षर"
tag = "टैग"
tagcloud_widget_at_most = "अधिक से अधिक टैगक्लाउड"
tagline = "टैग लाइन"
tagline_placeholder = "डेटाबेस रहित PHP ब्लॉगिंग प्लेटफ़ॉर्म"
tagline_description = "कुछ शब्दों में बताएं कि यह ब्लॉग किस बारे में है।"
tags = "टैग"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "यह लीगेसी कोड है. आमतौर पर gtag.js का उपयोग करके नए विश्लेषण तैयार किए जाते हैं"
this_page_doesnt_exist = "यह पेज मौजूद नहीं है!"
time = "समय"
timezone = "समय क्षेत्र"
title = "शीर्षक"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "डिस्कस या फेसबुक टिप्पणियों का उपयोग करने के लिए आपको अपना डिस्कस संक्षिप्त नाम या अपनी फेसबुक ऐप आईडी प्रदान करनी होगी।"
token_error = "CSRF टोकन सही नहीं है"
tools = "औजार"
twitter_account = "ट्विटर खाता"
type_to_search = "खोजने के लिए लिखें"
uncategorized = "अवर्गीकृत"
uncategorized_comment = "ऐसे विषय जिन्हें किसी श्रेणी की आवश्यकता नहीं है, या किसी अन्य मौजूदा श्रेणी में फिट नहीं बैठते हैं"
universal_analytics = "यूनिवर्सल एनालिटिक्स (gtag.js)"
unknown_feed_format = "अज्ञात फ़ीड प्रारूप"
update = "अद्यतन"
update_available = "उपलब्ध अद्यतन"
update_draft = "ड्राफ्ट अद्यतन करें"
update_post = "पोस्ट अपडेट करें"
update_to = "इसे अपडेट करें"
upload = "अपलोड"
user = "उपयोगकर्ता"
user_error = "उपयोगकर्ता फ़ील्ड आवश्यक है"
valid_values_range_from_0_to_1.0._see = "वैध मूल्यों 0 से 1.0 की रेंज में है| आगे देखिये ..."
video_post = "वीडियो पोस्ट"
video_post_comment = "विशेष रुप से प्रदर्शित वीडियो के साथ ब्लॉग पोस्ट बनाया जा रहा है"
view = "देखिए"
view_post = "देखिए"
views = "देखा गया"
widget = "विजेट"
widget_settings = "विजेट सेटिंग्स"
would_you_like_to_try_our = "क्या आप आज़माना चाहेंगे हमारा "
yes_im_in = "हा मुझे मंजूर है"
yes_not_recommended = "हाँ (अनुशंसित नहीं)"
you_dont_have_permission_to_access_this_page = "आपको इस पृष्ठ तक पहुंचने की अनुमति नहीं है"
your_new_config_key = "आपकी नई कॉन्फ़िगरेशन कुंजी"
your_new_value = "आपका नया मूल्य"
your_backups = "आपके बैकअप"
your_latest_blog_posts = "आपके नवीनतम ब्लॉग पोस्ट"
your_recent_posts = "आपकी हाल की पोस्ट"
by = "द्वारा"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>संकेत:</u> अपनी कॉन्फ़िगरेशन कुंजी या मान खोजने के लिए <code>Ctrl</code>/<code>CMD</code> + <code>F</code> का उपयोग करें।"
homepage = "मुखपृष्ठ"
instead = "के बजाय"
item_class = "CSS क्लास डालें"
item_slug = "लिंक URL डालें"
now = "अब"
of = "का"
optional = "वैकल्पिक"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>प्रो युक्तियाँ:</u>आप कस्टम कॉन्फिग कुंजी बना सकते हैं और अपने टेम्पलेट में कहीं भी अपनी कॉन्फिग कुंजी मान प्रिंट कर सकते हैं|"
read_more = "और पढ़ें"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "सारांश व्यवहार"
default = "Default"
check_shortcode = "शॉर्टकोड जांचें"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "सारांश मोड में, सामग्री को x वर्ण में ट्रिम करने से पहले शॉर्टकोड की जांच करें या नहीं"
manage_users = "उपयोगकर्ताओं को प्रबंधित करें"
add_user = "उपयोगकर्ता जोड़ें"
username = "उपयोगकर्ता नाम"
role = "भूमिका"
change_password = "पासवर्ड बदलें"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/hr_HR.ini Executable file
View File

@ -0,0 +1,332 @@
about = "O nama"
add_category = "Dodaj kategoriju"
add_content = "Dodaj sadržaj"
add_link = "Dodaj link"
add_menu = "Dodaj izbornik"
add_new_page = "Dodaj novu stranicu"
add_new_post = "Dodaj novi post"
add_source_link_optional = "Dodaj izvorni link (opcionalno)"
add_sub = "Dodaj podstranicu"
address_url = "Adresa (URL)"
admin = "Admin"
admin_panel_style_based_on = "Stil admin panela temeljen na"
all_blog_posts = "Svi blog zapisi"
all_cache_has_been_deleted = "Sva memorija predmemorije je izbrisana!"
all_posts_tagged = "Svi označeni zapisi"
archive_for = "Arhiva za"
archive_page_for = "Stranica arhive za"
archives = "Arhive"
are_you_sure_you_want_to_delete_ = "Jeste li sigurni da želite izbrisati %s?"
at_the_moment_you_are_using_auto_generated_menu = "Trenutno koristite automatski generirani izbornik."
audio_post = "Audio post"
audio_post_comment = "Stvaranje blog zapisa s istaknutim audio zapisom"
author = "Autor"
author_description = "Samo još jedan korisnik HTMLy-ja"
back_to = "Povratak na"
backup = "Backup"
blog_description = "U jednom odlomku, recite nam više o svom blogu."
blog_theme = "Tema bloga"
blog_title = "Naslov bloga"
blog_title_placeholder = "Moj HTMLy Blog"
blog_posts_displayed_as = "Blog zapisi prikazani kao"
breadcrumb_home_text = "Tekst početne stranice"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Korištenjem ovog uvoznika pristajete ako je feed vaš ili barem imate ovlasti za objavljivanje."
css_class_optional = "CSS razred (opcionalno)"
cache_expiration = "Istjecanje predmemorije (u satima)"
cache_off = "Isključi predmemoriju"
cache_timestamp = "Oznaka vremena predmemorije"
cancel = "Otkaži"
cannot_read_feed_content = "Ne mogu pročitati sadržaj feeda"
captcha_error = "reCaptcha nije ispravna"
categories = "Kategorije"
category = "Kategorija"
check_update = "Provjeri ažuriranje"
clear_cache = "Očisti predmemoriju"
comma_separated_values = "Vrijednosti odvojene zarezom"
comment_system = "Sustav komentara"
comments = "Komentari"
config = "Konfiguracija"
congrats_you_have_the_latest_version_of_htmly = "Čestitamo! Imate najnoviju verziju HTMLy-ja."
content = "Sadržaj"
contents = "Sadržaji"
copyright_line = "Linija autorskog prava"
copyright_line_placeholder = "(c) Vaše ime."
create_backup = "Kreiraj backup"
created = "Stvoreno"
custom = "Prilagođeno"
custom_settings = "Prilagođene postavke"
dashboard = "Kontrolna ploča"
date = "Datum"
date_format = "Format datuma"
delete = "Izbriši"
description = "Opis"
disable = "Onemogući"
disabled = "Onemogućeno"
disqus_shortname = "Disqus kratko ime"
disqus_shortname_placeholder = "htmly"
draft = "Skica"
edit = "Uredi"
edit_category = "Uredi kategoriju"
edit_post = "Uredi"
edit_profile = "Uredi profil"
enable = "Omogući"
enable_blog_url = "Omogući blog URL"
enter_image_url = "Unesite URL slike"
facebook_app_id = "Facebook ID aplikacije"
facebook_page = "Facebook stranica"
featured_audio = "Istaknuti audio"
featured_image = "Istaknuta slika"
featured_link = "Istaknuti link"
featured_quote = "Istaknuta citat"
featured_video = "Istaknuti video"
feed_url = "URL feeda"
filename = "Naziv datoteke"
follow = "Prati"
for_google_site_verification_meta = "Za meta provjeru Google stranice"
front_page_displays = "Početna stranica prikazuje"
full_post = "Cijeli post"
general = "Općenito"
general_settings = "Opće postavke"
get_one_here = "Dobiti jedan ovdje"
github_pre_release = "Github pretpregled"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (stari)"
google_search_console = "Google konzola za pretraživanje"
home = "Početna"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Ako ostavite prazno, izvat ćemo ga iz sadržaja ispod"
if_the_url_is_left_empty_we_will_use_the_page_title = "Ako URL ostavite prazno, koristit ćemo naslov stranice"
if_the_url_is_left_empty_we_will_use_the_post_title = "Ako URL ostavite prazno, koristit ćemo naslov posta"
image_post = "Slični post"
image_post_comment = "Stvaranje blog posta s istaknutom slikom"
import = "Uvoz"
import_feed = "Započni uvoz feeda"
import_rss = "Uvezi RSS"
import_rss_feed_2.0 = "Uvoz RSS feeda 2.0"
insert_image = "Umetni sliku"
invalid_error = "GREŠKA: Neispravno korisničko ime ili lozinka"
language = "Jezik sustava"
link_name = "Naziv linka"
link_post = "Link post"
link_post_comment = "Stvaranje blog posta s istaknutim linkom"
login = "Prijava"
login_page = "Stranica prijave"
logout = "Odjava"
menu = "Izbornik"
menus = "Uređivač izbornika"
meta_description = "Meta opis"
meta_description_character = "Meta opis znakova"
metatags = "Metatagi"
metatags_settings = "Postavke metataga"
mine = "Moje"
more = "Više"
my_draft = "Moja skica"
my_posts = "Moji postovi"
name = "Ime"
newer = "Novije"
next = "Sljedeće"
next_post = "Sljedeći post"
no_available_backup = "Nema dostupnih sigurnosnih kopija trenutno."
no_draft_found = "Nema pronađenih skica"
no_posts_found = "Nema pronađenih postova"
no_related_post_found = "Nema pronađenih srodnih postova"
no_scheduled_posts_found = "Nema zakazanih postova!"
no_search_results = "Nema rezultata pretraživanja"
nope = "Ne"
not = "Ne"
older = "Starije"
only = "Samo"
operations = "Operacije"
page = "Stranica"
page_generation_time = "Vrijeme generiranja stranice"
pages = "Stranice"
pass_error = "Polje lozinke je obavezno"
password = "Lozinka"
performance = "Performanse"
performance_settings = "Postavke performansi"
permalink = "Trajna poveznica"
popular = "Popularno"
popular_posts = "Popularni postovi"
popular_posts_widget = "Widget popularnih postova"
popular_posts_widget_at_most = "Widget popularnih postova najviše"
popular_tags = "Popularne oznake"
post_by_author = "Postovi ovog autora"
posted_in = "Objavljeno u"
posted_on = "Objavljeno"
posts = "Postovi"
posts_by = "Postovi od"
posts_draft = "Skice postova"
posts_in_archive_page_at_most = "Postovi na stranici arhive najviše"
posts_in_category_page_at_most = "Postovi na stranici kategorije najviše"
posts_in_front_page_show_at_most = "Postovi na početnoj stranici prikazuju najviše"
posts_in_profile_page_at_most = "Postovi na stranici profila najviše"
posts_in_search_result_at_most = "Postovi u rezultatima pretraživanja najviše"
posts_in_tag_page_at_most = "Postovi na stranici oznake najviše"
posts_in_type_page_at_most = "Postovi na stranici tipa najviše"
posts_index_settings = "Postavke indeksa postova"
posts_list = "Popis postova"
posts_tagged = "Postovi označeni"
posts_with_type = "Postovi s tipom"
pre_release = "Predačka verzija"
prev = "Prethodno"
prev_post = "Prethodni post"
preview = "Pregled"
profile_for = "Profil za"
proudly_powered_by = "Ponosno pokreće"
publish = "Objavi"
publish_draft = "Objavi skicu"
published = "Objavljeno"
quote_post = "Citirani post"
quote_post_comment = "Stvaranje blog posta s istaknutim citatom"
rss_character = "RSS znakova"
rss_feeds_show_the_most_recent = "RSS feedovi prikazuju najnovije"
rss_settings = "Postavke RSS-a"
read_more_text = "Tekst za pročitaj više"
read_more_text_placeholder = "Pročitaj više"
reading = "Čitanje"
reading_settings = "Postavke čitanja"
recaptcha = "reCAPTCHA"
recent_posts = "Nedavni postovi"
recent_posts_widget_at_most = "Widget nedavnih postova najviše"
regular_post = "Redoviti post"
regular_post_comment = "Stvaranje redovitog blog posta"
related_posts = "Srodni postovi"
related_widget_posts_at_most = "Widget srodnih postova najviše"
revert_to_draft = "Vrati u skicu"
save = "Spremi"
save_config = "Spremi konfiguraciju"
save_edit = "Spremi uređivanje"
save_menu = "Spremi izbornik"
save_as_draft = "Spremi kao skicu"
save_category = "Spremi kategoriju"
scheduled = "Zakazano"
scheduled_posts = "Zakazani postovi"
scheduled_tips = "Objavljivanje posta s budućim datumom ili vremenom, bit će dodano u zakazane postove"
search = "Pretraži"
search_for = "Pretraži"
search_results_for = "Rezultati pretrage za"
search_results_not_found = "Nisu pronađeni rezultati pretrage!"
secret_key = "Tajni ključ"
settings = "Postavke"
sign_in_to_start_your_session = "Prijavite se kako biste započeli svoju sesiju"
site_key = "Ključ web stranice"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Društveni mediji"
static_page = "Statička stranica"
static_page_comment = "Stvaranje statičke stranice"
static_pages = "Statičke stranice"
summary = "Sažetak"
summary_character = "Sažetak znakova"
tag = "Oznaka"
tagcloud_widget_at_most = "Tag oblak najviše"
tagline = "Slogan"
tagline_placeholder = "Platforma za blogovanje bez baze podataka u PHP-u"
tagline_description = "U nekoliko riječi, objasnite o čemu se radi u ovom blogu."
tags = "Oznake"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Ovo je stari kod. Obično se novi stvoreni analitički podaci koriste pomoću gtag.js"
this_page_doesnt_exist = "Ova stranica ne postoji!"
time = "Vrijeme"
timezone = "Vremenska zona"
title = "Naslov"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Za korištenje Disqus ili Facebook komentara morate pružiti svoje Disqus kratko ime ili vaš Facebook App ID."
token_error = "CSRF token nije ispravan"
tools = "Alati"
twitter_account = "Twitter račun"
type_to_search = "Upišite za pretraživanje"
uncategorized = "Nekategorizirano"
uncategorized_comment = "Teme koje ne trebaju kategoriju ili ne odgovaraju bilo kojoj drugoj postojećoj kategoriji"
universal_analytics = "Univerzalna analitika (gtag.js)"
unknown_feed_format = "Nepoznat format feeda"
update = "Ažuriraj"
update_available = "Dostupno ažuriranje"
update_draft = "Ažuriraj skicu"
update_post = "Ažuriraj post"
update_to = "Ažuriraj na"
upload = "Učitaj"
user = "Korisnik"
user_error = "Polje korisnika je obavezno"
valid_values_range_from_0_to_1.0._see = "Valjane vrijednosti su u rasponu od 0,0 do 1,0. Pogledajte"
video_post = "Video post"
video_post_comment = "Stvaranje blog posta s istaknutim videom"
view = "Pogled"
view_post = "Pogledaj"
views = "Pregledi"
widget = "Widget"
widget_settings = "Postavke widgeta"
would_you_like_to_try_our = "Biste li željeli isprobati naš"
yes_im_in = "Da, uključen sam"
yes_not_recommended = "Da (nije preporučeno)"
you_dont_have_permission_to_access_this_page = "Nemate dopuštenje pristupiti ovoj stranici"
your_new_config_key = "Vaš novi konfiguracijski ključ"
your_new_value = "Vaša nova vrijednost"
your_backups = "Vaše sigurnosne kopije"
your_latest_blog_posts = "Vaši najnoviji blog postovi"
your_recent_posts = "Vaši nedavni postovi"
by = "od"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "savjet: Koristite Ctrl/CMD + F za pretraživanje vašeg konfiguracijskog ključa ili vrijednosti."
homepage = "početna stranica"
instead = "umjesto"
item_class = "Unesite CSS razred"
item_slug = "Unesite URL linka"
now = "sada"
of = "od"
optional = "opcionalno"
post_your_post_slug = "/post/naslov-posta"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "pro savjeti: Možete stvoriti prilagođene konfiguracijske ključeve i ispisati vrijednost vašeg konfiguracijskog ključa bilo gdje u vašem predlošku."
read_more = "pročitaj više"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/godina/mjesec/naslov-posta"
your_key = "vaš.ključ"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/hu_HU.ini Executable file
View File

@ -0,0 +1,332 @@
about = "About"
add_category = "Kategória hozzáadása"
add_content = "Tartalom hozzáadása"
add_link = "Link hozzáadása"
add_menu = "Menü hozzáadása"
add_new_page = "Új oldal hozzáadása"
add_new_post = "Új bejegyzés hozzáadása"
add_source_link_optional = "Forrás link hozzáadása (nem kötelező)"
add_sub = "Aloldal hozzáadása"
address_url = "Address (URL)"
admin = "Rendszergazda"
admin_panel_style_based_on = "Az adminisztrációs panel stílusa"
all_blog_posts = "Minden blogbejegyzés"
all_cache_has_been_deleted = "Az összes gyorsítótár törölve lett!"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "Archívum"
are_you_sure_you_want_to_delete_ = "Biztosan törli a következőt: <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Jelenleg ön automatikusan generált menüt használ."
audio_post = "Hangbejegyzés"
audio_post_comment = "Blogbejegyzés létrehozása kiemelt hanganyaggal"
author = "Szerző"
author_description = "Just another HTMLy user"
back_to = "Vissza ide"
backup = "Biztonsági másolat"
blog_description = "In one paragraph, tell us more about your blog."
blog_theme = "Blog Theme"
blog_title = "Blog title"
blog_title_placeholder = "My HTMLy Blog"
blog_posts_displayed_as = "Blog posts displayed as"
breadcrumb_home_text = "Breadcrumb home text"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Ennek az importnak a használatával elfogadja, ha a hírcsatorna a tiéd, vagy legalábbis jogosult vagy közzétenni."
css_class_optional = "CSS osztály (nem kötelező)"
cache_expiration = "Cache expiration (in hours)"
cache_off = "Cache off"
cache_timestamp = "Cache timestamp"
cancel = "Mégse"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha not correct"
categories = "Kategóriák"
category = "Kategória"
check_update = "Frissítés ellenőrzése"
clear_cache = "Gyorsítótár törlése"
comma_separated_values = "Vesszővel elválasztott értékek"
comment_system = "Comment system"
comments = "Comments"
config = "Beállítás"
congrats_you_have_the_latest_version_of_htmly = "Gratulálunk! Ön a HTMLy legújabb verzióját használja."
content = "Tartalom"
contents = "Tartalom"
copyright_line = "Copyright line"
copyright_line_placeholder = "(c) Your name."
create_backup = "Biztonsági másolat létrehozása"
created = "Létrehozva"
custom = "Egyedi"
custom_settings = "Egyéni beállítások"
dashboard = "Irányítópult"
date = "Dátum"
date_format = "Date Format"
delete = "Törlés"
description = "Leírás"
disable = "Disable"
disabled = "Disabled"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "Piszkozat"
edit = "Szerkesztés"
edit_category = "Kategória szerkesztése"
edit_post = "Edit"
edit_profile = "Profil szerkesztése"
enable = "Enable"
enable_blog_url = "Enable blog URL"
enter_image_url = "Írja be a kép URL-jét"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook page"
featured_audio = "Kiemelt hang"
featured_image = "Kiemelt kép"
featured_link = "Kiemelt hivatkozás"
featured_quote = "Kiemelt idézet"
featured_video = "Kiemelt videó"
feed_url = "Hírcsatorna URL"
filename = "Fájlnév"
follow = "Követés"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "Front page displays"
full_post = "Full post"
general = "Általános"
general_settings = "Általános beállítások"
get_one_here = "Get one here"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "Főoldal"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Ha üresen hagyja, akkor kivonjuk az alábbi tartalomból"
if_the_url_is_left_empty_we_will_use_the_page_title = "Ha az URL üres marad, akkor az oldal címét fogjuk használni"
if_the_url_is_left_empty_we_will_use_the_post_title = "Ha az URL üres marad, akkor a bejegyzés címét fogjuk használni"
image_post = "Képes bejegyzés"
image_post_comment = "Blogbejegyzés létrehozása kiemelt képpel"
import = "Import"
import_feed = "Hírcsatorna iport elindítása"
import_rss = "RSS importálása"
import_rss_feed_2.0 = "RSS-hírcsatorna 2.0 importálása"
insert_image = "Kép beszúrása"
invalid_error = "ERROR: Invalid username or password"
language = "System Language"
link_name = "Link neve"
link_post = "Link bejegyzés"
link_post_comment = "Blogbejegyzés létrehozása kiemelt linkkel"
login = "Bejelentkezés"
login_page = "Bejelentkezés oldal"
logout = "Kijelentkezés"
menu = "Menu"
menus = "Menüszerkesztő"
meta_description = "Meta leírás"
meta_description_character = "Meta description character"
metatags = "Metacímkék"
metatags_settings = "Metacímkék beállításai"
mine = "Az enyém"
more = "Több"
my_draft = "Saját piszkozat"
my_posts = "Saját bejegyzések"
name = "Név"
newer = "Újabb"
next = "Következő"
next_post = "Következő bejegyzés"
no_available_backup = "Jelenleg nincs elérhető biztonsági másolat."
no_draft_found = "Nincs vázlat"
no_posts_found = "Nincs bejegyzés"
no_related_post_found = "Nem található kapcsolódó bejegyzés"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "No search results"
nope = "Nope"
not = "No"
older = "Régebbi"
only = "Csak"
operations = "Műveletek"
page = "Page"
page_generation_time = "Page generation time"
pages = "Pages"
pass_error = "Password field is required"
password = "Jelszó"
performance = "Teljesítmény"
performance_settings = "Teljesítménybeállítás"
permalink = "Permalink"
popular = "Popular"
popular_posts = "Népszerű bejegyzések"
popular_posts_widget = "Popular posts widget"
popular_posts_widget_at_most = "Popular posts widget at most"
popular_tags = "Népszerű címkék"
post_by_author = "Posts by this author"
posted_in = "Bejegyzés helye"
posted_on = "Bejegyzés ideje"
posts = "Bejegyzések"
posts_by = "Posts by"
posts_draft = "Bejegyzések vázlata"
posts_in_archive_page_at_most = "Posts in archive page at most"
posts_in_category_page_at_most = "Posts in category page at most"
posts_in_front_page_show_at_most = "Posts in front page show at most"
posts_in_profile_page_at_most = "Posts in profile page at most"
posts_in_search_result_at_most = "Posts in search result at most"
posts_in_tag_page_at_most = "Posts in tag page at most"
posts_in_type_page_at_most = "Posts in type page at most"
posts_index_settings = "Posts index settings"
posts_list = "Bejegyzések listája"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "Pre-release"
prev = "Elöző"
prev_post = "Elöző bejegyzés"
preview = "Előnézet"
profile_for = "Profile for"
proudly_powered_by = "Büszkén működteti"
publish = "Közzététel"
publish_draft = "Piszkozat közzététele"
published = "Közzétett"
quote_post = "Bejegyzés idézettel"
quote_post_comment = "Blogbejegyzés létrehozása kiemelt idézettel"
rss_character = "RSS character"
rss_feeds_show_the_most_recent = "RSS feeds show the most recent"
rss_settings = "RSS settings"
read_more_text = "Read more text"
read_more_text_placeholder = "Read more"
reading = "Olvasás"
reading_settings = "Olvasási beállítások"
recaptcha = "reCAPTCHA"
recent_posts = "Legutóbbi bejegyzések"
recent_posts_widget_at_most = "Recent posts widget at most"
regular_post = "Rendszeres bejegyzés"
regular_post_comment = "Rendszeres bejegyzés létrehozása"
related_posts = "Kapcsolódó bejegyzések"
related_widget_posts_at_most = "Related widget posts at most"
revert_to_draft = "Vissza a piszkozathoz"
save = "Mentés"
save_config = "Save config"
save_edit = "Szerkesztés mentése"
save_menu = "Mentés menü"
save_as_draft = "Mentés piszkozatként"
save_category = "Kategória mentése"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "Keresés"
search_for = "Keresés"
search_results_for = "Search results for"
search_results_not_found = "Search results not found!"
secret_key = "Secret Key"
settings = "Beállítások"
sign_in_to_start_your_session = "Jelentkezzen be a munkamenet megkezdéséhez"
site_key = "Site Key"
sitemap = "Sitemap"
slug = "TLD utáni elérési útvonal"
social_media = "Social Media"
static_page = "Statikus oldal"
static_page_comment = "Statikus oldal létrehozása"
static_pages = "Statikus oldalak"
summary = "Summary"
summary_character = "Summary character"
tag = "Címke"
tagcloud_widget_at_most = "TagCloud at most"
tagline = "Tagline"
tagline_placeholder = "Databaseless PHP Blogging Platform"
tagline_description = "In a few words, explain what this blog is about."
tags = "Címkék"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "This is legacy code. Usually new created analytics using gtag.js"
this_page_doesnt_exist = "Ez az oldal nem létezik!"
time = "Idő"
timezone = "Timezone"
title = "Cím"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "To using Disqus or Facebook comment you need to provide Disqus shortname or Facebook App ID."
token_error = "CSRF Token not correct"
tools = "Eszközök"
twitter_account = "Twitter account"
type_to_search = "Írja be a kereséshez"
uncategorized = "Nincs kategorizálva"
uncategorized_comment = "Olyan témák, amelyekhez nincs szükség kategóriára, vagy amelyek nem illenek más létező kategóriába"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "Frissítés"
update_available = "Elérhető frissítés"
update_draft = "Piszkozat frissítése"
update_post = "Bejegyzés frissítése"
update_to = "Frissítés"
upload = "Feltöltés"
user = "Felhasználó"
user_error = "User field is required"
valid_values_range_from_0_to_1.0._see = "Valid values range from 0.0 to 1.0. See"
video_post = "Videó bejegyzés"
video_post_comment = "Blogbejegyzés létrehozása kiemelt videóval"
view = "Nézet"
view_post = "View"
views = "Nézetek"
widget = "Widget"
widget_settings = "Widget beállítások"
would_you_like_to_try_our = "Szeretné kipróbálni a mi "
yes_im_in = "Yes I'm in"
yes_not_recommended = "Yes (not recommended)"
you_dont_have_permission_to_access_this_page = "Nincs engedélyed az oldal elérésére"
your_new_config_key = "Your New Config Key"
your_new_value = "Your New Value"
your_backups = "A biztonsági másolatok"
your_latest_blog_posts = "Your latest blog posts"
your_recent_posts = "Legutóbbi bejegyzéseid"
by = "által"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>hint:</u> Use <code>Ctrl</code>/<code>CMD</code> + <code>F</code> to search for your config key or value."
homepage = "kezdőlap"
instead = "helyett"
item_class = "CSS osztály beszúrása"
item_slug = "Link URL beszúrása"
now = "most"
of = "of"
optional = "választható"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>pro tips:</u> You can creating custom config key and print out your config key value anywhere in your template."
read_more = "tovább"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/id_ID.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Tentang"
add_category = "Tambah kategori"
add_content = "Tambah konten"
add_link = "Tambahkan link"
add_menu = "Tambah menu"
add_new_page = "Tambahkan halaman baru"
add_new_post = "Tambahkan artikel baru"
add_source_link_optional = "Tambahkan link sumber (opsional)"
add_sub = "Tambah sub halaman"
address_url = "Alamat (URL)"
admin = "Admin"
admin_panel_style_based_on = "Gaya panel admin berdasarkan"
all_blog_posts = "Semua artikel"
all_cache_has_been_deleted = "Cache telah dihapus!"
all_posts_tagged = "Semua postingan dengan tag"
archive_for = "Arsip untuk"
archive_page_for = "Halaman arsip untuk"
archives = "Arsip"
are_you_sure_you_want_to_delete_ = "Anda yakin ingin menghapus <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Saat ini Anda menggunakan menu yang dibuat secara otomatis."
audio_post = "Artikel dengan Audio"
audio_post_comment = "Membuat artikel dengan audio unggulan"
author = "Penulis"
author_description = "Hanya pengguna HTMLy lainnya"
back_to = "Kembali ke"
backup = "Cadangkan"
blog_description = "Dalam satu paragraf, ceritakan lebih banyak tentang blog Anda."
blog_theme = "Tema"
blog_title = "Judul blog"
blog_title_placeholder = "Blog HTMLy saya"
blog_posts_displayed_as = "Artikel blog ditampilkan sebagai"
breadcrumb_home_text = "Teks beranda pada breadcrumb"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Dengan menggunakan importir ini Anda setuju jika feed adalah milik Anda atau setidaknya Anda memiliki kewenangan untuk mempublikasikannya."
css_class_optional = "CSS Class (opsional)"
cache_expiration = "Masa berlaku cache (dalam jam)"
cache_off = "Cache nonaktif"
cache_timestamp = "Stempel waktu cache"
cancel = "Batal"
cannot_read_feed_content = "Tidak bisa membaca konten feed"
captcha_error = "reCaptcha tidak benar"
categories = "Kategori"
category = "Kategori"
check_update = "Cek pembaruan"
clear_cache = "Bersihkan cache"
comma_separated_values = "Pisahkan dengan koma"
comment_system = "Sistem komentar"
comments = "Komentar"
config = "Konfigurasi"
congrats_you_have_the_latest_version_of_htmly = "Selamat! Anda memiliki HTMLy versi terbaru."
content = "Konten"
contents = "Isi"
copyright_line = "Hak cipta"
copyright_line_placeholder = "(c) Nama Anda."
create_backup = "Membuat cadangan"
created = "Dibuat"
custom = "Kustom"
custom_settings = "Pengaturan Kustom"
dashboard = "Dasbor"
date = "Tanggal"
date_format = "Format tanggal"
delete = "Hapus"
description = "Keterangan"
disable = "Matikan"
disabled = "Dimatikan"
disqus_shortname = "Nama Panggilan Disqus"
disqus_shortname_placeholder = "htmly"
draft = "Konsep"
edit = "Sunting"
edit_category = "Ubah kategori"
edit_post = "Ubah"
edit_profile = "Sunting profil"
enable = "Aktifkan"
enable_blog_url = "Aktifkan URL blog"
enter_image_url = "Masukkan URL gambar"
facebook_app_id = "ID Aplikasi Facebook"
facebook_page = "Halaman Facebook"
featured_audio = "Audio Unggulan"
featured_image = "Gambar Unggulan"
featured_link = "Tautan Unggulan"
featured_quote = "Kutipan Unggulan"
featured_video = "Video Unggulan"
feed_url = "URL RSS"
filename = "Nama berkas"
follow = "Ikuti"
for_google_site_verification_meta = "Untuk meta verifikasi situs-google"
front_page_displays = "Tampilan halaman depan"
full_post = "Artikel lengkap"
general = "Umum"
general_settings = "Pengaturan Umum"
get_one_here = "Dapatkan satu di sini"
github_pre_release = "Pra-rilis Github"
google_analytics = "Penganalisa Google"
google_analytics_legacy = "Penganalisa Google (lama)"
google_search_console = "Google Search Console"
home = "Beranda"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Jika dibiarkan kosong kami akan mengutipnya dari konten di bawah ini"
if_the_url_is_left_empty_we_will_use_the_page_title = "Jika url dibiarkan kosong kita akan menggunakan judul halaman"
if_the_url_is_left_empty_we_will_use_the_post_title = "Jika URL dibiarkan kosong kita akan menggunakan judul artikel"
image_post = "Artikel bergambar"
image_post_comment = "Membuat artikel dengan gambar unggulan"
import = "Import"
import_feed = "Mulai Impor RSS"
import_rss = "Impor RSS"
import_rss_feed_2.0 = "Impor RSS Feed 2.0"
insert_image = "Sisipkan gambar"
invalid_error = "Kesalahan: nama pengguna atau kata sandi tidak sah"
language = "Bahasa Sistem"
link_name = "Nama tautan"
link_post = "Artikel tautan"
link_post_comment = "Membuat artikel dengan tautan unggulan"
login = "Masuk"
login_page = "Halaman login"
logout = "Keluar"
menu = "Menu"
menus = "Menu Editor"
meta_description = "Meta deskripsi"
meta_description_character = "Karakter meta deskripsi"
metatags = "Metatags"
metatags_settings = "Pengaturan Metatags"
mine = "Punya saya"
more = "Selengkapnya"
my_draft = "Konsep saya"
my_posts = "Artikel saya"
name = "Nama"
newer = "Baru"
next = "Selanjutnya"
next_post = "Artikel selanjutnya"
no_available_backup = "Tidak ada cadangan yang tersedia saat ini."
no_draft_found = "Konsep tidak ditemukan"
no_posts_found = "Artikel tidak ditemukan"
no_related_post_found = "Artikel terkait tidak ditemukan"
no_scheduled_posts_found = "Postingan terjadwal tidak ditemukan!"
no_search_results = "Tidak ada hasil pencarian"
nope = "Tidak"
not = "Tidak"
older = "Lama"
only = "Hanya"
operations = "Operasi"
page = "Halaman"
page_generation_time = "Waktu pembuatan halaman"
pages = "Halaman"
pass_error = "Kolom kata sandi diperlukan"
password = "Sandi"
performance = "Performa"
performance_settings = "Pengaturan Performa"
permalink = "Tautan permanen"
popular = "Populer"
popular_posts = "Artikel populer"
popular_posts_widget = "Widget artikel populer"
popular_posts_widget_at_most = "Widget artikel populer paling banyak"
popular_tags = "Tag populer"
post_by_author = "Artikel oleh Penulis ini"
posted_in = "Terbit di"
posted_on = "Terbit pada"
posts = "Artikel"
posts_by = "Postingan oleh"
posts_draft = "Daftar konsep"
posts_in_archive_page_at_most = "Artikel di halaman arsip paling banyak"
posts_in_category_page_at_most = "Artikel dalam halaman kategori paling banyak"
posts_in_front_page_show_at_most = "Artikel paling banyak ditampilkan"
posts_in_profile_page_at_most = "Artikel di halaman profil paling banyak"
posts_in_search_result_at_most = "Artikel dalam hasil pencarian paling banyak"
posts_in_tag_page_at_most = "Artikel paling banyak di halaman tag"
posts_in_type_page_at_most = "Artikel dalam halaman tipe paling banyak"
posts_index_settings = "Pengaturan indeks artikel"
posts_list = "Daftar artikel"
posts_tagged = "Postingan dengan tag"
posts_with_type = "Postingan dengan tipe"
pre_release = "Pra-rilis"
prev = "Sebelumnya"
prev_post = "Artikel sebelumnya"
preview = "Pratayang"
profile_for = "Profil untuk"
proudly_powered_by = "Dengan bangga ditenagai"
publish = "Terbitkan"
publish_draft = "Terbitkan konsep"
published = "Telah terbit"
quote_post = "Artikel dengan kutipan"
quote_post_comment = "Membuat Artikel dengan kutipan unggulan"
rss_character = "Karakter RSS"
rss_feeds_show_the_most_recent = "Umpan RSS menampilkan berapa artikel"
rss_settings = "Pengaturan RSS"
read_more_text = "Baca lebih banyak teks"
read_more_text_placeholder = "Baca lebih banyak"
reading = "Bacaan"
reading_settings = "Pengaturan Membaca"
recaptcha = "reCAPTCHA"
recent_posts = "Artikel terbaru"
recent_posts_widget_at_most = "Widget artikel terbaru paling banyak"
regular_post = "Artikel reguler"
regular_post_comment = "Membuat Artikel reguler"
related_posts = "Artikel terkait"
related_widget_posts_at_most = "Artikel widget terkait paling banyak"
revert_to_draft = "Ubah ke konsep"
save = "Simpan"
save_config = "Simpan konfigurasi"
save_edit = "Simpan Edit"
save_menu = "Simpan menu"
save_as_draft = "Simpan sebagai konsep"
save_category = "Simpan kategori"
scheduled = "Terjadwal"
scheduled_posts = "Postingan terjadwal"
scheduled_tips = "Publikasikan dengan waktu yang akan datang untuk membuat postingan terjadwal"
search = "Cari"
search_for = "Mencari"
search_results_for = "Hasil pencarian untuk"
search_results_not_found = "Hasil pencarian tidak ada!"
secret_key = "Kunci rahasia"
settings = "Pengaturan"
sign_in_to_start_your_session = "Masuk untuk memulai sesi Anda"
site_key = "Kunci Situs"
sitemap = "Peta Situs"
slug = "Tautan"
social_media = "Sosial Media"
static_page = "Halaman statis"
static_page_comment = "Membuat halaman statis"
static_pages = "Halaman statis"
summary = "Ringkasan"
summary_character = "Karakter ringkasan"
tag = "Tag"
tagcloud_widget_at_most = "TagCloud terbanyak"
tagline = "Slogan"
tagline_placeholder = "Platform Blogging PHP Tanpa Database"
tagline_description = "Secara singkat, jelaskan blog ini tentang apa"
tags = "Tags"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Ini adalah kode lama. Biasanya analitik baru dibuat menggunakan gtag.js"
this_page_doesnt_exist = "Halaman ini tidak ada!"
time = "Jam"
timezone = "Zona waktu"
title = "Judul"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Untuk menggunakan Disqus atau komentar Facebook, Anda perlu memberikan username Disqus atau App ID Facebook."
token_error = "Token CSRF tidak benar"
tools = "Alat"
twitter_account = "Akun Twitter"
type_to_search = "Ketik untuk mencari"
uncategorized = "Tanpa kategori"
uncategorized_comment = "Topik yang tidak perlu kategori, atau tidak cocok dengan kategori yang ada"
universal_analytics = "Penganalisa Universal (gtag.js)"
unknown_feed_format = "Format feed tidak diketahui"
update = "Perbarui"
update_available = "Pembaruan tersedia"
update_draft = "Perbarui konsep"
update_post = "Perbarui artikel"
update_to = "Perbarui ke"
upload = "Unggah"
user = "Pengguna"
user_error = "Kolom pengguna dibutuhkan"
valid_values_range_from_0_to_1.0._see = "Nilai yang valid berkisar dari 0,0 hingga 1,0. Lihat"
video_post = "Artikel dengan video"
video_post_comment = "Membuat artikel dengan video unggulan"
view = "Lihat"
view_post = "Lihat"
views = "Tampilan"
widget = "Widget"
widget_settings = "Pengaturan Widget"
would_you_like_to_try_our = "Apakah Anda ingin mencoba "
yes_im_in = "Ya, saya ikut"
yes_not_recommended = "Ya (tidak disarankan)"
you_dont_have_permission_to_access_this_page = "Anda tidak memiliki izin untuk mengakses halaman ini"
your_new_config_key = "Kunci Konfigurasi Baru Anda"
your_new_value = "Nilai Baru Anda"
your_backups = "Cadangan Anda"
your_latest_blog_posts = "Artikel blog terbaru Anda"
your_recent_posts = "Artikel terbaru Anda"
by = "oleh"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u> petunjuk: </u> Gunakan <code> Ctrl </code> / <code> CMD </code> + <code> F </code> untuk menelusuri kunci konfigurasi atau nilai Anda."
homepage = "Beranda"
instead = "Sebagai gantinya"
item_class = "Sisipkan CSS class"
item_slug = "Sisipkan URL Tautan"
now = "sekarang"
of = "dari"
optional = "Opsional"
post_your_post_slug = "/post/slug-artikel-anda"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u> tips pro: </u> Anda dapat membuat kunci konfigurasi khusus dan mencetak nilai kunci konfigurasi Anda di mana saja di template Anda."
read_more = "Baca selengkapnya"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/tahun/bulan/slug-artikel-anda"
your_key = "kunci.anda"
summary_behavior = "Perilaku ringkasan"
default = "Default"
check_shortcode = "Cek shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "Di mode ringkasan, apakah harus mengecek shortcode terlebih dahulu sebelum memangkas konten ke karakter x"
manage_users = "Kelola pengguna"
add_user = "Tambah pengguna"
username = "Username"
role = "Role"
change_password = "Ganti password"
config_mfa = "Mengonfigurasi MFA"
mfacode = "Kode MFA"
verify_code = "Verifikasi kode MFA"
verify_password = "Verifikasi kata sandi saat ini"
manualsetupkey = "Anda juga dapat menambahkan kunci pengaturan secara manual"
mfa_error = "Kode MFA tidak benar"
disablemfa = "Nonaktifkan MFA"
enable_auto_save = "Aktifkan Simpan Otomatis"
explain_autosave = "Jika diaktifkan, konten atau draf baru akan disimpan secara otomatis setiap 60 detik."
login_protect_system = "Sistem perlindungan login"
cloudflare_info = "Tinjau dokumentasi Pintu Putar Cloudflare:"
mfa_config = "Autentikasi Multi Faktor (MFA)"
set_mfa_globally = "Atur status MFA"
explain_mfa = "Saat diaktifkan, MFA bersifat opsional untuk semua pengguna. Saat dinonaktifkan, tidak ada pengguna yang dapat menggunakannya dan menyembunyikan bidang di halaman login."
set_version_publicly = "Visibilitas Versi"
explain_version = "Secara default versi HTMLy terlihat secara publik di kode sumber, beberapa admin mungkin lebih suka menyembunyikannya."
focus_mode = "Beralih Fokus"
writing = "Penulisan"
writing_settings = "Pengaturan Penulisan"
security = "Keamanan"
security_settings = "Pengaturan Keamanan"
msg_error_field_req_username = "Bidang nama pengguna wajib diisi"
msg_error_field_req_password = "Bidang kata sandi wajib diisi"
msg_error_field_req_title = "Bidang judul wajib diisi"
msg_error_field_req_content = "Bidang konten wajib diisi"
msg_error_field_req_tag = "Bidang tag wajib diisi"
msg_error_field_req_image = "Bidang gambar wajib diisi"
msg_error_field_req_video = "Bidang vidio wajib diisi"
msg_error_field_req_link = "Bidang tautan wajin diisi"
msg_error_field_req_quote = "Bidang kutipan wajib diisi."
msg_error_field_req_audio = "Bidang audio wajib diisi."
msg_error_field_req_feedurl = "Anda perlu menentukan url feed."
rss_feeds_description_select = "Deskripsi RSS"
rss_description_body = "Isi postingan"
rss_description_meta = "Deskripsi Meta Postingan"
admin_theme = "Tema admin"
admin_theme_light = "Terang"
admin_theme_dark = "Gelap"
search_index = "Indeks Pencarian"
fulltext_search = "Pencarian Lengkap"
add_search_index = "Tambahkan postingan ke Indeks"
clear_search_index = "Hapus Indeks Pencarian"
unindexed_posts = "Postingan berikut belum masuk ke Indeks Pencarian"
indexed_posts = "Postingan sudah terindeks"

332
lang/it_IT.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Informazioni"
add_category = "Aggiungi categoria"
add_content = "Aggiungi contenuto"
add_link = "Aggiungi link"
add_menu = "Aggiungi menu"
add_new_page = "Aggiungi una nuova pagina"
add_new_post = "Aggiungi un nuovo articolo"
add_source_link_optional = "Aggiungi link sorgente (facoltativo)"
add_sub = "Aggiungi sub"
address_url = "Indirizzo (URL)"
admin = "Pannello Amministratore"
admin_panel_style_based_on = "Stile del pannello amminstratore basato su"
all_blog_posts = "Tutti gli articoli del blog"
all_cache_has_been_deleted = "Tutta la cache è stata svuotata !"
all_posts_tagged = "Tutti gli articoli etichettati"
archive_for = "Archivio per"
archive_page_for = "Pagina di archivio per"
archives = "Archivi"
are_you_sure_you_want_to_delete_ = "Sei sicuro di voler eliminare <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Al momento stai usando un menu generato automaticamente."
audio_post = "Articolo con audio"
audio_post_comment = "Crea un articolo del blog con un audio in evidenza"
author = "Autore"
author_description = "Solo un altro utente di HTMLy"
back_to = "Torna indietro"
backup = "Backup"
blog_description = "In un paragrafo, parlaci un po' di più del tuo blog."
blog_theme = "Tema del Blog"
blog_title = "Titolo del Blog"
blog_title_placeholder = "Il mio blog con HTMLy"
blog_posts_displayed_as = "Articoli del blog visualizzati come"
breadcrumb_home_text = "Testo della home Breadcrumb"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Usando questo importatore sei d'accordo che il feed sia tuo o almeno tu ne abbia l'autorità per pubblicarlo."
css_class_optional = "Classe CSS (facoltativa)"
cache_expiration = "Scadenza della cache (in ore)"
cache_off = "Disattiva cache"
cache_timestamp = "Fuso orario della cache"
cancel = "Annulla"
cannot_read_feed_content = "Impossibile leggere il contenuto del feed"
captcha_error = "reCaptcha non corretto"
categories = "Categorie"
category = "Categoria"
check_update = "Controllo aggiornamenti"
clear_cache = "Svuota la cache"
comma_separated_values = "Valori separati da virgole"
comment_system = "Sistema dei commenti"
comments = "Commenti"
config = "Configurazione"
congrats_you_have_the_latest_version_of_htmly = "Congratulazioni! Hai l'ultima versione di HTMLy."
content = "Contenuto"
contents = "Contenuti"
copyright_line = "Riga del Copyright"
copyright_line_placeholder = "(c) Il tuo nome."
create_backup = "Crea backup"
created = "Creato"
custom = "Personalizzato"
custom_settings = "Impostazioni personalizzate"
dashboard = "Pannello utente"
date = "Data"
date_format = "Formato della data"
delete = "Elimina"
description = "Descrizione"
disable = "Disabilita"
disabled = "Disabilitato"
disqus_shortname = "Nomignolo Disqus"
disqus_shortname_placeholder = "htmly"
draft = "Bozza"
edit = "Modifica"
edit_category = "Modifica categoria"
edit_post = "Modifica"
edit_profile = "Modifica profilo"
enable = "Abilita"
enable_blog_url = "Abilita URL del blog"
enter_image_url = "Inserisci l'URL dell'immagine"
facebook_app_id = "ID di Facebook"
facebook_page = "Pagina Facebook"
featured_audio = "Audio in primo piano"
featured_image = "Immagine in primo piano"
featured_link = "Link in primo piano"
featured_quote = "Citazione in primo piano"
featured_video = "Video in primo piano"
feed_url = "URL del Feed"
filename = "Nome del file"
follow = "Segui"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "Visualizza pagina principale"
full_post = "Articoli completi"
general = "Generali"
general_settings = "Impostazioni generali"
get_one_here = "Prendine una qui"
github_pre_release = "Pre-release di Github"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "Home"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Se assente verrà estratto dai contenuti qui sotto"
if_the_url_is_left_empty_we_will_use_the_page_title = "Se l'url rimane in bianco verrà usato il titolo della pagina"
if_the_url_is_left_empty_we_will_use_the_post_title = "Se l'url rimane in bianco verrà usato il titolo dell'articolo"
image_post = "Articolo con immagine"
image_post_comment = "Crea un articolo del blog con un'immagine in evidenza"
import = "Importa"
import_feed = "Avvia importazione del Feed"
import_rss = "Importa RSS"
import_rss_feed_2.0 = "Importa Feed RSS 2.0"
insert_image = "Inserisci immagine"
invalid_error = "ERRORE: Nome utente o password non valido/a"
language = "Lingua di sistema"
link_name = "Nome del collegamento"
link_post = "Articolo con collegamento"
link_post_comment = "Crea un articolo del blog con un collegamento in evidenza"
login = "Connessione"
login_page = "Pagina di login"
logout = "Disconnessione"
menu = "Menu"
menus = "Editor del Menu"
meta_description = "Meta descrizione"
meta_description_character = "Carattere della Metadescrizione"
metatags = "Metatags"
metatags_settings = "Impostazioni dei Metatag"
mine = "I miei contenuti"
more = "Leggi di più"
my_draft = "Le mie bozze"
my_posts = "I miei articoli"
name = "Nome"
newer = "Più recenti"
next = "Successivo"
next_post = "Articolo successivo"
no_available_backup = "Nessun backup disponibile a quest'ora."
no_draft_found = "Nessuna bozza trovata"
no_posts_found = "Nessun articolo trovato"
no_related_post_found = "Nessun articolo correlato"
no_scheduled_posts_found = "Non è stato trovato alcun articolo pianificato!"
no_search_results = "Nessun risultato della ricerca"
nope = "Nessuno"
not = "No"
older = "Più vecchi"
only = "Solo"
operations = "Operazioni"
page = "Pagina"
page_generation_time = "Tempo di generazione della pagina"
pages = "Pagine"
pass_error = "È richiesto il campo Password"
password = "Password"
performance = "Prestazioni"
performance_settings = "Impostazioni delle Prestazioni"
permalink = "Permalink"
popular = "Popolare"
popular_posts = "Articoli popolari"
popular_posts_widget = "Widget articoli popolari"
popular_posts_widget_at_most = "Widget articoli popolari al massimo"
popular_tags = "Etichette popolari"
post_by_author = "Articoli di questo utente"
posted_in = "Pubblicato in"
posted_on = "Pubblicato il"
posts = "Articoli"
posts_by = "Articoli di"
posts_draft = "Elenco delle bozze"
posts_in_archive_page_at_most = "Gli articoli nella pagina archivio al massimo"
posts_in_category_page_at_most = "Gli articoli nella pagina delle categoria al massimo"
posts_in_front_page_show_at_most = "Articoli in prima pagina da visualizzare di più"
posts_in_profile_page_at_most = "Gli articoli nella pagina del profilo al massimo"
posts_in_search_result_at_most = "Gli articoli nei risultati della ricerca al massimo"
posts_in_tag_page_at_most = "Gli articoli nella pagina delle etichette al massimo"
posts_in_type_page_at_most = "Gli articoli della pagina dei tipi al massimo"
posts_index_settings = "Impostazioni indice degli articoli"
posts_list = "Elenco articoli"
posts_tagged = "Articoli etichettati"
posts_with_type = "Articoli con un tipo"
pre_release = "Pre-release"
prev = "Precedenti"
prev_post = "Articolo precedente"
preview = "Anteprima"
profile_for = "Profilo per"
proudly_powered_by = "Questo blog è basato su"
publish = "Pubblica"
publish_draft = "Pubblica la bozza"
published = "Pubblicato"
quote_post = "Articolo con una citazione"
quote_post_comment = "Crea un articolo del blog con una citazione in evidenza"
rss_character = "Carattere RSS"
rss_feeds_show_the_most_recent = "I feed RSS visualizzano i più recenti"
rss_settings = "Impostazioni RSS"
read_more_text = "Leggi più testo"
read_more_text_placeholder = "Leggi di più"
reading = "Lettura"
reading_settings = "Impostazioni di lettura"
recaptcha = "Protezione login"
recent_posts = "Articoli recenti"
recent_posts_widget_at_most = "Widget articoli recenti al massimo"
regular_post = "Articolo semplice"
regular_post_comment = "Crea un articolo semplice per il blog"
related_posts = "Articoli correlati"
related_widget_posts_at_most = "Widget articoli correlati al massimo"
revert_to_draft = "Trasforma in bozza"
save = "Salva"
save_config = "Salva configurazione"
save_edit = "Salva Modifica"
save_menu = "Salva menu"
save_as_draft = "Salva come bozza"
save_category = "Salva categoria"
scheduled = "Pianificazione"
scheduled_posts = "Articoli pianificati"
scheduled_tips = "Pubblicando un articolo con una data o un'ora futura, questo verrà inserito negli articoli pianificati"
search = "Cerca"
search_for = "Cerca per"
search_results_for = "Risultati della ricerca per"
search_results_not_found = "Non è stato trovato nessun risultato della ricerca!"
secret_key = "Chiave segreta"
settings = "Impostazioni"
sign_in_to_start_your_session = "Connettiti per avviare la sessione"
site_key = "Chiave del sito"
sitemap = "Mappa del sito"
slug = "Slug"
social_media = "Social Media"
static_page = "Pagina statica"
static_page_comment = "Creazione di una pagina statica"
static_pages = "Pagine statiche"
summary = "Riassunto"
summary_character = "Caratteri del riassunto"
tag = "Etichetta"
tagcloud_widget_at_most = "TagCloud al massimo"
tagline = "Slogan"
tagline_placeholder = "Piattaforma per blog in PHP senza database"
tagline_description = "In poche parole, spiega di cosa parla questo blog."
tags = "Etichette"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Questo è codice legacy. Di solito le nuove statistiche usano il file gtag.js"
this_page_doesnt_exist = "Questa pagina non esiste !"
time = "Ora"
timezone = "Fuso orario"
title = "Titolo"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Per usare Disqus o i commenti di Facebook hai bisogno di fornire il nomignolo di Disqus o l'ID di Facebook."
token_error = "Il token CSRF non è corretto"
tools = "Strumenti"
twitter_account = "Profilo Twitter"
type_to_search = "Digita per cercare"
uncategorized = "Senza categoria"
uncategorized_comment = "Argomenti che non necessitano di una categoria, o che non si adattano a nessuna categoria esistente"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Formato del feed sconosciuto"
update = "Aggiorna"
update_available = "Aggiornamento disponibile"
update_draft = "Aggiorna bozza"
update_post = "Aggiorna articolo"
update_to = "Aggiorna a"
upload = "Carica"
user = "Utente"
user_error = "È richiesto il campo nome utente"
valid_values_range_from_0_to_1.0._see = "Il campo dei valori validi va da 0.0 a 1.0. Vedi"
video_post = "Articolo video"
video_post_comment = "Crea un articolo del blog con un video in evidenza"
view = "Visualizza"
view_post = "Visualizza"
views = "Visualizzazioni"
widget = "Widget"
widget_settings = "Impostazioni dei Widget"
would_you_like_to_try_our = "Volete provare la nostra "
yes_im_in = "Si, ci sono"
yes_not_recommended = "Si (non consigliato)"
you_dont_have_permission_to_access_this_page = "Non hai il permesso di accedere a questa pagina"
your_new_config_key = "La tua nuova chiave di configurazione"
your_new_value = "Il tuo nuovo valore"
your_backups = "I tuoi backup"
your_latest_blog_posts = "I tuoi ultimi articoli sul blog"
your_recent_posts = "I tuoi articoli più recenti"
by = "di"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>consiglio:</u> Usa <code>Ctrl</code>/<code>CMD</code> + <code>F</code> per cercare la chiave o il valore di configurazione."
homepage = "homepage"
instead = "invece"
item_class = "Inserisci Classe CSS"
item_slug = "Inserisci URL del Link"
now = "ora"
of = "di"
optional = "facoltativo"
post_your_post_slug = "/articolo/il-tuo-slug-degli-articoli"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>consiglio pratico:</u> Puoi creare la tua chiave di configurazione e usare il valore della chiave di configurazione dovunque nel tuo template."
read_more = "leggi di più"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/anno/mese/il-tuo-slug-degli-articoli"
your_key = "la.tua.chiave"
summary_behavior = "Modalità riassunto"
default = "Predefinito"
check_shortcode = "Controlla codice breve"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In modalità riassunto, si può controllare il codice breve o no prima di ridurre il contenuto a x caratteri"
manage_users = "Gestione utenti"
add_user = "Aggiungi utente"
username = "Nome utente"
role = "Ruolo"
change_password = "Modifica password"
config_mfa = "Configura AMF"
mfacode = "Codice AMF"
verify_code = "Verifica il codice AMF"
verify_password = "Verifica la password in uso"
manualsetupkey = "Si può anche aggiungere manualmente la chiave di setup"
mfa_error = "Il codice MFA non è corretto"
disablemfa = "Disabilita AMF"
enable_auto_save = "Abilita il salvataggio automatico nelle Bozze"
explain_autosave = "Una volta abilitato, i nuovi articoli o le nuove pagine verranno atuomaticamente salvate come bozze ogni 60 secondi dopo aver iniziato a scrivere."
login_protect_system = "Sistema di protezione della connessione"
cloudflare_info = "Rivedi la documentazione di Cloudflare Turnstile: "
mfa_config = "Autenticazione Multi Fattore (AMF)"
set_mfa_globally = "Imposta lo stato della AMF"
explain_mfa = "Una volta abilitata, la AMF è facoltativa per tutti gli utenti. Se disattivata, nessun utente può usarla ed il relativo campo nella pagina di connessione viene nascosto."
set_version_publicly = "Visibilità della versione"
explain_version = "Per impostazione predefinita la versione di HTMLy è visibile a tutti nel codice sorgente, alcuni amministratori preferirebbero nasconderla."
focus_mode = "Cambia visuale"
writing = "Scrittura"
writing_settings = "Impostazioni della scrittura"
security = "Sicurezza"
security_settings = "Impostazioni della sicurezza"
msg_error_field_req_username = "È richiesto il campo nome utente."
msg_error_field_req_password = "È richiesto il campo Password."
msg_error_field_req_title = "È richiesto il campo Titolo."
msg_error_field_req_content = "È richiesto il campo Contenuto."
msg_error_field_req_tag = "È richiesto il campo Etichetta."
msg_error_field_req_image = "È richiesto il campo Immagine."
msg_error_field_req_video = "È richiesto il campo Video."
msg_error_field_req_link = "È richiesto il campo Collegamento."
msg_error_field_req_quote = "È richiesto il campo Citazione."
msg_error_field_req_audio = "È richiesto il campo Audio."
msg_error_field_req_feedurl = "Devi specificare l'url del feed."
rss_feeds_description_select = "Descrizione del feed RSS"
rss_description_body = "Corpo dell'articolo"
rss_description_meta = "Meta descrizione dell'articolo"
admin_theme = "Tema Pannello Amministratore"
admin_theme_light = "Chiaro"
admin_theme_dark = "Scuro"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/ko_KO.ini Executable file
View File

@ -0,0 +1,332 @@
about = "이 블로그는..."
add_category = "새 카테고리 만들기"
add_content = "새 글 쓰기"
add_link = "링크 추가"
add_menu = "메뉴 추가"
add_new_page = "새 페이지 만들기"
add_new_post = "새 글 쓰기"
add_source_link_optional = "소스 링크 추가 (선택 사항)"
add_sub = "서브 페이지 추가"
address_url = "주소 (URL)"
admin = "관리자"
admin_panel_style_based_on = "관리자 패널 스타일 기반: "
all_blog_posts = "모든 블로그 글"
all_cache_has_been_deleted = "모든 캐시를 삭제했어요!"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "아카이브"
are_you_sure_you_want_to_delete_ = "정말 삭제할거예요? '<strong>%s</strong>'"
at_the_moment_you_are_using_auto_generated_menu = "지금은 자동으로 만든 메뉴를 쓰고 있어요."
audio_post = "오디오 첨부"
audio_post_comment = "오디오를 넣은 글을 쓸 수 있어요"
author = "글쓴이"
author_description = "또 다른 HTMLy 사용자"
back_to = "돌아가기"
backup = "백업"
blog_description = "한 단락으로 이 블로그에 대해 더 알려주세요."
blog_theme = "블로그 테마"
blog_title = "블로그 제목"
blog_title_placeholder = "내 HTMLy 블로그"
blog_posts_displayed_as = "글 보기 모드"
breadcrumb_home_text = "사이트 이동 홈 (Breadcrumb)"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "가져오기를 사용하면 피드가 사용자의 것이거나 적어도 게시할 권한이 있다고 동의하는거예요."
css_class_optional = "CSS 클래스 (선택 사항)"
cache_expiration = "캐시 만료 (시간 단위) "
cache_off = "캐시 끄기"
cache_timestamp = "캐시 타임 스탬프"
cancel = "취소"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha가 틀렸어요"
categories = "카테고리"
category = "카테고리"
check_update = "업데이트 확인"
clear_cache = "캐시 지우기"
comma_separated_values = "쉼표로 분리된 값"
comment_system = "댓글 시스템"
comments = "댓글"
config = "설정"
congrats_you_have_the_latest_version_of_htmly = "축하해요! HTMLy 최신 버전을 쓰고 있어요."
content = "콘텐츠"
contents = "콘텐츠"
copyright_line = "저작권 표시"
copyright_line_placeholder = "(C) 당신의 이름."
create_backup = "백업 만들기"
created = "만듦"
custom = "사용자 지정"
custom_settings = "사용자 지정 설정"
dashboard = "대시보드"
date = "날짜"
date_format = "날짜 형식"
delete = "지우기"
description = "설명"
disable = "사용 안함"
disabled = "사용 안함"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "초안"
edit = "편집"
edit_category = "카테고리 편집"
edit_post = "편집"
edit_profile = "프로필 편집"
enable = "사용"
enable_blog_url = "'blog' URL 켜기"
enter_image_url = "이미지 URL을 입력하세요"
facebook_app_id = "페이스북 AppID"
facebook_page = "페이스북 페이지"
featured_audio = "오디오 기능"
featured_image = "이미지 기능"
featured_link = "링크 기능"
featured_quote = "인용 기능"
featured_video = "비디오 기능"
feed_url = "URL 피드"
filename = "파일 이름"
follow = "팔로우"
for_google_site_verification_meta = "google-site-verification 메타"
front_page_displays = "첫 페이지 표시"
full_post = "전체 글 보기"
general = "일반"
general_settings = "일반 설정"
get_one_here = "이 곳에서 얻을 수 있어요: "
github_pre_release = "Github 시험판"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "구글 검색 콘솔"
home = "홈"
if_left_empty_we_will_excerpt_it_from_the_content_below = "비워둘 경우 아래 내용에서 발췌해요"
if_the_url_is_left_empty_we_will_use_the_page_title = "URL이 비어 있으면 페이지 제목을 사용해요"
if_the_url_is_left_empty_we_will_use_the_post_title = "URL이 비어 있으면 글 제목을 사용해요"
image_post = "이미지 첨부"
image_post_comment = "이미지를 넣은 글을 쓸 수 있어요"
import = "가져오기"
import_feed = "피드 가져오기 시작"
import_rss = "RSS 가져오기"
import_rss_feed_2.0 = "RSS 2.0 피드 가져오기"
insert_image = "이미지 넣기"
invalid_error = "오류: 사용자나 비밀번호가 틀렸어요"
language = "시스템 언어"
link_name = "링크 이름"
link_post = "링크 첨부"
link_post_comment = "링크가 들어간 글을 쓸 수 있어요"
login = "로그인"
login_page = "로그인 페이지"
logout = "로그아웃"
menu = "메뉴"
menus = "메뉴 편집"
meta_description = "메타 설명"
meta_description_character = "메타 설명 문자"
metatags = "메타 태그"
metatags_settings = "메타 태그 설정"
mine = "내꺼"
more = "더"
my_draft = "내 초안"
my_posts = "내 글"
name = "이름"
newer = "최신"
next = "다음"
next_post = "다음 글"
no_available_backup = "백업이 없어요."
no_draft_found = "초안이 없어요"
no_posts_found = "글이 없어요"
no_related_post_found = "관련된 글이 없어요"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "찾기 결과가 없어요"
nope = "아니오"
not = "아니오"
older = "오래전"
only = "오직(Only)"
operations = "작업"
page = "페이지"
page_generation_time = "페이지 생성 시간"
pages = "페이지"
pass_error = "비밀번호 필드는 필수예요"
password = "비밀번호"
performance = "성능"
performance_settings = "성능 설정"
permalink = "고정링크"
popular = "인기있는"
popular_posts = "인기 게시물"
popular_posts_widget = "인기 글 위젯"
popular_posts_widget_at_most = "최대 인기 글"
popular_tags = "인기 태그"
post_by_author = "이 글쓴이가 썼어요"
posted_in = "카테고리: "
posted_on = "글을 올렸어요: "
posts = "글"
posts_by = "글쓴이: "
posts_draft = "초안 목록"
posts_in_archive_page_at_most = "최대 아카이브 페이지"
posts_in_category_page_at_most = "최대 카테고리 페이지"
posts_in_front_page_show_at_most = "최대 프론트 페이지"
posts_in_profile_page_at_most = "최대 프로필 페이지"
posts_in_search_result_at_most = "최대 검색 결과"
posts_in_tag_page_at_most = "최대 태그 페이지"
posts_in_type_page_at_most = "최대 타입 페이지"
posts_index_settings = "인덱스 설정"
posts_list = "글 목록"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "시험판 써보기"
prev = "이전"
prev_post = "이전 글"
preview = "미리보기"
profile_for = "Profile for"
proudly_powered_by = "Proudly Powered by"
publish = "올리기"
publish_draft = "올리기"
published = "글쓴이"
quote_post = "인용 글"
quote_post_comment = "인용 글을 쓸 수 있어요"
rss_character = "RSS 글자"
rss_feeds_show_the_most_recent = "최대 최근 RSS 피드"
rss_settings = "RSS 설정"
read_more_text = "더 읽기 표시"
read_more_text_placeholder = "더 읽기"
reading = "읽기"
reading_settings = "읽기 설정"
recaptcha = "reCAPTCHA"
recent_posts = "최근 글"
recent_posts_widget_at_most = "최대 최근 글"
regular_post = "글 쓰기"
regular_post_comment = "평범하게 글을 쓸 수 있어요"
related_posts = "관련 글"
related_widget_posts_at_most = "최대 관련 위젯"
revert_to_draft = "초안으로 되돌리기"
save = "저장"
save_config = "설정 저장"
save_edit = "편집 저장"
save_menu = "메뉴 저장"
save_as_draft = "초안 저장하기"
save_category = "카테고리 저장"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "찾기"
search_for = "찾기"
search_results_for = "Search results for"
search_results_not_found = "찾기 결과가 없어요!"
secret_key = "비밀 키"
settings = "설정"
sign_in_to_start_your_session = "시작하려면 로그인 하세요"
site_key = "사이트 키"
sitemap = "사이트맵"
slug = "줄임표시"
social_media = "소셜 미디어"
static_page = "고정 페이지"
static_page_comment = "고정 페이지 만들기"
static_pages = "고정 페이지"
summary = "요약 보기"
summary_character = "요약 글자수"
tag = "태그"
tagcloud_widget_at_most = "최대 TagCloud"
tagline = "태그 라인"
tagline_placeholder = "데이터베이스를 쓰지 않는 PHP 블로그 플랫폼"
tagline_description = "몇 단어로 이 블로그에 대해 설명해주세요."
tags = "태그"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "이것은 레거시 코드입니다. 보통 gtag.js를 써서 새 분석을 만들어요."
this_page_doesnt_exist = "페이지가 존재하지 않아요!"
time = "시간"
timezone = "시간대"
title = "제목"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Disqus나 페이스북 댓글을 사용하려면 Disqus의 shortname 또는, 페이스북 AppID가 필요해요."
token_error = "CSRF 토큰이 바르지 않아요"
tools = "도구"
twitter_account = "트위터 계정"
type_to_search = "찾을 내용 입력"
uncategorized = "카테고리 없음"
uncategorized_comment = "카테고리가 필요하지 않거나 다른 카테고리에 넣을 수 없는 주제"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "업데이트"
update_available = "업데이트가 있어요"
update_draft = "초안 업데이트"
update_post = "글 업데이트"
update_to = "업데이트: "
upload = "업로드"
user = "사용자"
user_error = "사용자 필드는 필수예요"
valid_values_range_from_0_to_1.0._see = "유효한 범위는 0.0에서 1.0까지예요. 참조: "
video_post = "비디오 첨부"
video_post_comment = "비디오를 넣은 글을 쓸 수 있어요"
view = "보기"
view_post = "보기"
views = "보기"
widget = "위젯"
widget_settings = "위젯 설정"
would_you_like_to_try_our = "우리 제품을 시험해 보시겠어요? "
yes_im_in = "예, 써볼께요"
yes_not_recommended = "예 (권장하지 않음)"
you_dont_have_permission_to_access_this_page = "이 페이지에 접근할 권한이 없어요"
your_new_config_key = "새 설정 키"
your_new_value = "새 값"
your_backups = "백업"
your_latest_blog_posts = "최신 블로그 글"
your_recent_posts = "최근 글"
by = ": "
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>힌트:</u> <code>CTRL</code>/<code>CMD</code> + <code>F</code> 를 눌러 키나 값을 찾을 수 있어요."
homepage = "홈페이지"
instead = "대신(instead)"
item_class = "CSS 클래스 추가"
item_slug = "링크 URL 추가"
now = "지금"
of = "of"
optional = "선택 사항"
post_your_post_slug = "/post/문서-줄임표시"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>추가 힌트:</u> 사용자 지정 설정 키를 만들고 템플릿 어디에서나 키 값을 인쇄할 수 있어요."
read_more = "더 읽기"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/년/월/문서-줄임표시"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/ms_MY.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Perihal"
add_category = "Kategori Add"
add_content = "Kandungan Add"
add_link = "Pautan Tambah"
add_menu = "Menu Add"
add_new_page = "Tambah halaman baru"
add_new_post = "Tambah jawatan baru"
add_source_link_optional = "Tambah pautan sumber (pilihan)"
add_sub = "Halaman sub Add"
address_url = "Alamat (URL)"
admin = "Admin"
admin_panel_style_based_on = "Gaya panel Admin berdasarkan"
all_blog_posts = "Jawatan blog Semua"
all_cache_has_been_deleted = "Semua cache telah dipadam!"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "Arkib"
are_you_sure_you_want_to_delete_ = "Adakah anda pasti anda mahu memadam <strong>% s </ strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Pada masa ini anda menggunakan auto menu dihasilkan."
audio_post = "Post Audio"
audio_post_comment = "Mewujudkan post blog dengan audio yang diketengahkan"
author = "Pengarang"
author_description = "Just another HTMLy user"
back_to = "Kembali kepada"
backup = "Backup"
blog_description = "Dalam satu ayat, memberitahu kita lebih lanjut mengenai blog anda."
blog_theme = "Blog Tema"
blog_title = "Tajuk blog"
blog_title_placeholder = "My HTMLy Blog"
blog_posts_displayed_as = "Jawatan Blog dipaparkan sebagai"
breadcrumb_home_text = "Text rumah Breadcrumb"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Dengan menggunakan pengimport ini anda bersetuju jika suapan itu milik anda atau sekurang-kurangnya anda mempunyai kuasa untuk menerbitkan ia."
css_class_optional = "CSS Kelas (pilihan)"
cache_expiration = "Cache tamat tempoh (dalam jam)"
cache_off = "Cache off"
cache_timestamp = "Cache cap masa"
cancel = "Batal"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha not correct"
categories = "Kategori"
category = "Kategori"
check_update = "Daftar update"
clear_cache = "Kosongkan cache"
comma_separated_values = "Comma Separated Values"
comment_system = "Sistem Comment"
comments = "Comments"
config = "Config"
congrats_you_have_the_latest_version_of_htmly = "Tahniah! Anda mempunyai versi terbaru HTMLy."
content = "Kandungan"
contents = "Kandungan"
copyright_line = "Garis Copyright"
copyright_line_placeholder = "(c) Nama anda."
create_backup = "Buat sandaran"
created = "Dicipta"
custom = "Custom"
custom_settings = "Tetapan Custom"
dashboard = "Dashboard"
date = "Tarikh"
date_format = "Format tarikh"
delete = "Padam"
description = "Penerangan"
disable = "Disable"
disabled = "Orang Kurang Upaya"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "Htmly"
draft = "Draf"
edit = "Edit"
edit_category = "Edit kategori"
edit_post = "Edit"
edit_profile = "Sunting profil"
enable = "Enable"
enable_blog_url = "Membolehkan blog URL"
enter_image_url = "Masukkan URL imej"
facebook_app_id = "Facebook App ID"
facebook_page = "Laman Facebook"
featured_audio = "Terutama Audio"
featured_image = "Imej Pilihan"
featured_link = "Kemudahan Link"
featured_quote = "Quote Pilihan"
featured_video = "Terutama Video"
feed_url = "URL Feed"
filename = "Nama fail"
follow = "Ikut"
for_google_site_verification_meta = "Bagi google-site-pengesahan meta"
front_page_displays = "Memaparkan halaman depan"
full_post = "Post Penuh"
general = "Umum"
general_settings = "Tetapan umum"
get_one_here = "Dapatkan satu di sini"
github_pre_release = "Github pra keluaran"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (warisan)"
google_search_console = "Google Search Console"
home = "Home"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Jika cuti mengosongkan kami akan petikan dari kandungan di bawah"
if_the_url_is_left_empty_we_will_use_the_page_title = "Jika cuti url kosongkan kami akan menggunakan tajuk halaman"
if_the_url_is_left_empty_we_will_use_the_post_title = "Jika cuti url kosongkan kami akan menggunakan tajuk post"
image_post = "Post Image"
image_post_comment = "Mewujudkan post blog dengan imej yang ditampilkan"
import = "Import"
import_feed = "Mula Import Feed"
import_rss = "Import RSS"
import_rss_feed_2.0 = "Import RSS Feed 2.0"
insert_image = "Insert Image"
invalid_error = "ERROR: Invalid username or password"
language = "Sistem Bahasa"
link_name = "Nama Link"
link_post = "Link post"
link_post_comment = "Mewujudkan post blog dengan link yang diketengahkan"
login = "Log masuk"
login_page = "Halaman Login"
logout = "Log keluar"
menu = "Menu"
menus = "Menu Editor"
meta_description = "Description Meta"
meta_description_character = "Meta description watak"
metatags = "Metatags"
metatags_settings = "Metatags Tetapan"
mine = "Mine"
more = "Lagi"
my_draft = "Draf Saya"
my_posts = "Jawatan saya"
name = "Nama"
newer = "Terbaru"
next = "Next"
next_post = "Post Next"
no_available_backup = "Tiada sandaran yang ada pada masa ini."
no_draft_found = "Tidak draf dijumpai"
no_posts_found = "Tiada ulasan dijumpai"
no_related_post_found = "Tiada suapan berita berkaitan dijumpai"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "No search results"
nope = "Nope"
not = "Tidak"
older = "Lama"
only = "Sahaja"
operations = "Operasi"
page = "Page"
page_generation_time = "Page masa generasi"
pages = "Pages"
pass_error = "Password field is required"
password = "Kata Laluan"
performance = "Prestasi"
performance_settings = "Tetapan Prestasi"
permalink = "Permalink"
popular = "Popular"
popular_posts = "Jawatan Popular"
popular_posts_widget = "Jawatan Popular widget"
popular_posts_widget_at_most = "Jawatan Popular widget paling banyak"
popular_tags = "Tag Popular"
post_by_author = "Posts by this author"
posted_in = "Posted in"
posted_on = "Posted on"
posts = "Siaran"
posts_by = "Posts by"
posts_draft = "Siaran menggubal"
posts_in_archive_page_at_most = "Siaran di halaman arkib paling banyak"
posts_in_category_page_at_most = "Siaran dalam halaman kategori paling banyak"
posts_in_front_page_show_at_most = "Siaran dalam persembahan muka depan paling banyak"
posts_in_profile_page_at_most = "Siaran di halaman profil paling banyak"
posts_in_search_result_at_most = "Siaran dalam hasil carian paling banyak"
posts_in_tag_page_at_most = "Siaran di halaman tag paling banyak"
posts_in_type_page_at_most = "Siaran di halaman jenis paling banyak"
posts_index_settings = "Siaran tetapan index"
posts_list = "Senarai Posts"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "Pra-release"
prev = "Tua"
prev_post = "Sebelum Post"
preview = "Preview"
profile_for = "Profile for"
proudly_powered_by = "Dengan bangganya dikuasakan oleh"
publish = "Menerbitkan"
publish_draft = "Terbitkan draf"
published = "Diterbitkan"
quote_post = "Post Quote"
quote_post_comment = "Mewujudkan blog post with quote diketengahkan"
rss_character = "Watak RSS"
rss_feeds_show_the_most_recent = "RSS suapan menunjukkan yang paling baru-baru ini"
rss_settings = "Tetapan RSS"
read_more_text = "Baca lebih lanjut text"
read_more_text_placeholder = "Baca lebih"
reading = "Membaca"
reading_settings = "Tetapan Reading"
recaptcha = "ReCAPTCHA"
recent_posts = "Jawatan baru-baru"
recent_posts_widget_at_most = "Jawatan terkini widget paling banyak"
regular_post = "Post biasa"
regular_post_comment = "Mewujudkan blog post biasa"
related_posts = "Related posts"
related_widget_posts_at_most = "Berkaitan widget jawatan paling banyak"
revert_to_draft = "Kembali kepada draf"
save = "Save"
save_config = "Simpan config"
save_edit = "Save Edit"
save_menu = "Simpan menu"
save_as_draft = "Menyimpan sebagai draf"
save_category = "Simpan kategori"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "Cari"
search_for = "Carian untuk"
search_results_for = "Search results for"
search_results_not_found = "Search results not found!"
secret_key = "Secret Key"
settings = "Tetapan"
sign_in_to_start_your_session = "Log masuk untuk memulakan sesi anda"
site_key = "Laman Utama"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Media Sosial"
static_page = "Halaman statik"
static_page_comment = "Membuat halaman statik"
static_pages = "Laman statik"
summary = "Ringkasan"
summary_character = "Ringkasan watak"
tag = "Tag"
tagcloud_widget_at_most = "TagCloud at most"
tagline = "Tagline"
tagline_placeholder = "Blogging Platform Databaseless PHP"
tagline_description = "Dalam beberapa perkataan, menjelaskan apa yang blog ini adalah kira-kira."
tags = "Tag"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Ini adalah kod warisan. Selalunya analisis baru dicipta menggunakan gtag.js"
this_page_doesnt_exist = "Laman ini tidak wujud!"
time = "Masa"
timezone = "Zon masa"
title = "Tajuk"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Untuk menggunakan Disqus atau Facebook komen anda perlu memberikan Disqus shortname atau Facebook App ID."
token_error = "CSRF Token not correct"
tools = "Tools"
twitter_account = "Akaun Twitter"
type_to_search = "Taip untuk mencari"
uncategorized = "Uncategorized"
uncategorized_comment = "Topik yang tidak perlu kategori, atau tidak patut ke dalam mana-mana kategori yang sedia ada yang lain"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "Update"
update_available = "Kemaskini ada"
update_draft = "Update draf"
update_post = "Update post"
update_to = "Kemas kini kepada"
upload = "Muat naik"
user = "Pengguna"
user_error = "User field is required"
valid_values_range_from_0_to_1.0._see = "Nilai sah berkisar 0,0-1,0. Lihat"
video_post = "Post Video"
video_post_comment = "Mewujudkan post blog dengan video yang diketengahkan"
view = "View"
view_post = "View"
views = "Paparan"
widget = "Widget"
widget_settings = "Widget Tetapan"
would_you_like_to_try_our = "Adakah anda ingin mencuba kami"
yes_im_in = "Ya saya setuju"
yes_not_recommended = "Ya (tidak digalakkan)"
you_dont_have_permission_to_access_this_page = "Anda tidak mempunyai kebenaran untuk mengakses halaman ini"
your_new_config_key = "Baru Anda Config Key"
your_new_value = "Nilai Baru Anda"
your_backups = "Backup Anda"
your_latest_blog_posts = "Posting blog terkini Anda"
your_recent_posts = "Jawatan baru-baru Anda"
by = "Oleh"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<U> tanda-tanda: </ u> Gunakan <code> Ctrl </ code> / <code> CMD </ code> + <code> F </ code> untuk mencari kekunci config anda atau nilai."
homepage = "Laman utama"
instead = "Dan bukannya"
item_class = "Insert kelas CSS"
item_slug = "Insert Link URL"
now = "Sekarang"
of = "of"
optional = "Pilihan"
post_your_post_slug = "/ Pos /-post-slug anda"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<U> pro tips:. </ U> Anda boleh mewujudkan utama config adat dan mencetak nilai mana-mana sahaja kunci config anda dalam template anda"
read_more = "Read more"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/ Tahun / bulan /-post-slug anda"
your_key = "Your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/nl_NL.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Over"
add_category = "Categorie toevoegen"
add_content = "Inhoud toevoegen"
add_link = "Voeg link toe"
add_menu = "Menu toevoegen"
add_new_page = "Nieuwe pagina toevoegen"
add_new_post = "Nieuw bericht toevoegen"
add_source_link_optional = "Bronlink toevoegen (optioneel)"
add_sub = "Subpagina toevoegen"
address_url = "Webadres (URL)"
admin = "Admin"
admin_panel_style_based_on = "Stijl Adminpaneel gebaseerd op"
all_blog_posts = "Alle blogberichten"
all_cache_has_been_deleted = "Alle cache werd verwijderd!"
all_posts_tagged = "Alle berichten gelabeld"
archive_for = "Archief voor"
archive_page_for = "Archief pagina voor"
archives = "Archieven"
are_you_sure_you_want_to_delete_ = "Ben je zeker dat je wil verwijderen <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Op dit ogenblik gebruikt u een automatisch gegenereerd menu."
audio_post = "Audiobericht"
audio_post_comment = "Blogpost maken met aanbevolen audio"
author = "Auteur"
author_description = "Zomaar een HTMLy gebruiker"
back_to = "Terug naar"
backup = "Backup"
blog_description = "Vertel ons in een alinea wat meer over uw blog."
blog_theme = "Blog thema"
blog_title = "Titel blog"
blog_title_placeholder = "Mijn HTMLy Blog"
blog_posts_displayed_as = "Blogberichten weergegeven als"
breadcrumb_home_text = "Broodkruimel start tekst"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Door te importeren geef je aan dat je er toestemming voor hebt."
css_class_optional = "CSS Class (optioneel)"
cache_expiration = "Cache vervaltijd (in uren)"
cache_off = "Cache uit"
cache_timestamp = "Tijdstempel cache"
cancel = "Annuleren"
cannot_read_feed_content = "Kan feed inhoud niet lezen"
captcha_error = "reCaptcha niet correct"
categories = "Categorie&#235;n"
category = "Categorie"
check_update = "Controleer updates"
clear_cache = "Cache verwijderen"
comma_separated_values = "Waarden gescheiden door komma's (CSV)"
comment_system = "Commentaarsysteem"
comments = "Reacties"
config = "Configuratie"
congrats_you_have_the_latest_version_of_htmly = "Gefeliciteerd! Je hebt de laatste versie van HTMLy."
content = "Inhoud"
contents = "Inhoud"
copyright_line = "Copyrightregel"
copyright_line_placeholder = "(c) Uw Naam."
create_backup = "Maak een backup"
created = "Gemaakt"
custom = "Aangepast"
custom_settings = "Aangepaste instellingen"
dashboard = "Dashboard"
date = "Datum"
date_format = "Datumnotatie"
delete = "Verwijder"
description = "Omschrijving"
disable = "Uitschakelen"
disabled = "Uitgeschakeld"
disqus_shortname = "Disqus gebruikersnaam"
disqus_shortname_placeholder = "htmly"
draft = "Ontwerp"
edit = "Bewerk"
edit_category = "Bewerk categorie"
edit_post = "Bewerk"
edit_profile = "Bewerk profiel"
enable = "Inschakelen"
enable_blog_url = "Activeer blog URL"
enter_image_url = "Voer de URL van de afbeelding in"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook pagina"
featured_audio = "Uitgelichte Audio"
featured_image = "Uitgelichte Afbeelding"
featured_link = "Uitgelichte Link"
featured_quote = "Uitgelicht Citaat"
featured_video = "Uitgelichte Video"
feed_url = "Feed URL"
filename = "Bestandsnaam"
follow = "Volg"
for_google_site_verification_meta = "Voor google-site-verificatie meta"
front_page_displays = "Voorpagina weergaven"
full_post = "Volledige bericht"
general = "Algemeen"
general_settings = "Algemene Instellingen"
get_one_here = "Krijg er hier een"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Zoek Console"
home = "Start"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Als u het leeg laat, halen we het uit de onderstaande inhoud"
if_the_url_is_left_empty_we_will_use_the_page_title = "Als de url leeg wordt gelaten, wordt de titel van de pagina gebruikt"
if_the_url_is_left_empty_we_will_use_the_post_title = "Als de url leeg wordt gelaten, wordt de titel van het bericht gebruikt"
image_post = "Bericht met afbeelding"
image_post_comment = "Nieuw bericht met uitgelichte afbeelding"
import = "Importeer"
import_feed = "Importeer feed starten"
import_rss = "Importeer RSS"
import_rss_feed_2.0 = "Importeer RSS Feed 2.0"
insert_image = "Afbeelding invoegen"
invalid_error = "FOUT: Ongeldig gebruikersnaam of wachtwoord"
language = "Systeemtaal"
link_name = "Linknaam"
link_post = "Bericht met link"
link_post_comment = "Nieuw bericht met uitgelichte verwijzing"
login = "aanmelden"
login_page = "Aanmeldpagina"
logout = "Afmelden"
menu = "Menu"
menus = "Menu Bewerken"
meta_description = "Meta omschrijving"
meta_description_character = "Metabeschrijving"
metatags = "Metalabels"
metatags_settings = "Instellingen metalabels"
mine = "Mijn"
more = "Meer"
my_draft = "Mijn concept"
my_posts = "Mijn berichten"
name = "Naam"
newer = "Nieuwere"
next = "Volgende"
next_post = "Volgende bericht"
no_available_backup = "Op dit ogenblik is er geen backup beschikbaar."
no_draft_found = "Geen concept gevonden"
no_posts_found = "Geen berichten gevonden"
no_related_post_found = "Geen gerelateerd bericht gevonden"
no_scheduled_posts_found = "Geen geagendeerd bericht gevonden!"
no_search_results = "Geen zoekresultaat gevonden"
nope = "Nee"
not = "Nee"
older = "Oudere"
only = "Enkel"
operations = "Operaties"
page = "Pagina"
page_generation_time = "Generatietijd pagina"
pages = "Pagina's"
pass_error = "Wachtwoord veld is verplicht"
password = "Wachtwoord"
performance = "Prestaties"
performance_settings = "Prestatie Instellingen"
permalink = "Definitieve link"
popular = "Populair"
popular_posts = "Populaire berichten"
popular_posts_widget = "Populaire berichten widget"
popular_posts_widget_at_most = "Maximum populaire berichten widget"
popular_tags = "Populaire labels"
post_by_author = "Bericht van deze auteur"
posted_in = "Geplaatst in"
posted_on = "Geplaatst op"
posts = "Berichten"
posts_by = "Geplaatst door"
posts_draft = "Berichten ontwerpen"
posts_in_archive_page_at_most = "Maximum berichten op archief pagina"
posts_in_category_page_at_most = "Maximum berichten op pagina categorie"
posts_in_front_page_show_at_most = "Maximum berichten op de voorpagina"
posts_in_profile_page_at_most = "Maximum berichten op profielpagina"
posts_in_search_result_at_most = "Maximum berichten in zoekresultaat"
posts_in_tag_page_at_most = "Maximum berichten op tag pagina"
posts_in_type_page_at_most = "Maximum berichten op type pagina"
posts_index_settings = "Index instellingen berichten"
posts_list = "Lijst berichten"
posts_tagged = "Bericht gelabeld"
posts_with_type = "Bericht van type"
pre_release = "Pre-release"
prev = "Vorige"
prev_post = "Vorige bericht"
preview = "Voorbeeld"
profile_for = "Profiel van"
proudly_powered_by = "Wordt mogelijk gemaakt door"
publish = "Publiceer"
publish_draft = "Publiceer ontwerp"
published = "Gepubliceerd"
quote_post = "Bericht met citaat"
quote_post_comment = "Blogbericht maken met citaat"
rss_character = "RSS tekens"
rss_feeds_show_the_most_recent = "RSS feeds toon de meest recente"
rss_settings = "RSS instellingen"
read_more_text = "Lees meer tekst"
read_more_text_placeholder = "Lees meer tekst placeholder"
reading = "Lezen"
reading_settings = "Instellingen lezen"
recaptcha = "reCAPTCHA"
recent_posts = "Recente berichten"
recent_posts_widget_at_most = "Maximum recente berichten widget"
regular_post = "Reguliere post"
regular_post_comment = "Nieuw bericht maken"
related_posts = "Gerelateerde berichten"
related_widget_posts_at_most = "Maximum Gerelateerde berichten widget"
revert_to_draft = "Terug naar concept"
save = "Opslaan"
save_config = "Bewaar configuratie"
save_edit = "Wijzigingen opslaan"
save_menu = "Menu opslaan"
save_as_draft = "Opslaan als concept"
save_category = "Categorie opslaan"
scheduled = "Geagendeerd (later)"
scheduled_posts = "Geagendeerd bericht"
scheduled_tips = "Geagendeerd bericht met datum in toekomst, wordt later zichtbaar"
search = "Zoeken"
search_for = "Zoeken naar"
search_results_for = "Zoekresultaten voor"
search_results_not_found = "Geen zoekresultaten!"
secret_key = "Geheime sleutel"
settings = "Instellingen"
sign_in_to_start_your_session = "Log in om je sessie te starten"
site_key = "Sitesleutel"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Sociale media"
static_page = "Statische pagina"
static_page_comment = "Statische pagina maken"
static_pages = "Statische pagina's"
summary = "Samenvatting"
summary_character = "Samenvattingsteken"
tag = "Label"
tagcloud_widget_at_most = "LabelWolk met meeste woorden"
tagline = "Labellijn"
tagline_placeholder = "Databaseloos PHP Bloggen Platform"
tagline_description = "In een paar woorden, waar gaat dit blog over."
tags = "Labels"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "This is legacy code. Usually new created analytics using gtag.js"
this_page_doesnt_exist = "Deze pagina bestaat niet!"
time = "Tijd"
timezone = "Tijdzone"
title = "Titel"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Om Disqus of Facebook commentaar te gebruiken moet u Disqus shortname of Facebook App ID opgeven."
token_error = "CSRF Token niet correct"
tools = "Gereedschap"
twitter_account = "Twitter (X) account"
type_to_search = "Tik hier uw zoekterm"
uncategorized = "Niet ingedeeld"
uncategorized_comment = "Onderwerpen die geen categorie nodig hebben, of niet passen in een andere bestaande categorie"
universal_analytics = "Universele Analyse (gtag.js)"
unknown_feed_format = "Onbekende berichtenopmaak"
update = "Bijwerken"
update_available = "Update beschikbaar"
update_draft = "Concept bijwerken"
update_post = "Bericht bijwerken "
update_to = "Bijwerken naar"
upload = "Upload"
user = "Gebruiker"
user_error = "Gebruikersveld is verplicht"
valid_values_range_from_0_to_1.0._see = "Geldige waarden wisselen van 0,0 tot 1,0. Zie"
video_post = "Video bericht"
video_post_comment = "Bericht maken met aanbevolen video"
view = "Bekijken"
view_post = "Bekijk bericht"
views = "Aantal keer bekeken"
widget = "Widget"
widget_settings = "Instellingen Widget"
would_you_like_to_try_our = "Probeert u onze"
yes_im_in = "Ja, ik doe mee"
yes_not_recommended = "Ja (niet aanbevolen)"
you_dont_have_permission_to_access_this_page = "U heeft geen toestemming om deze pagina te openen"
your_new_config_key = "Uw nieuwe configuratiesleutel"
your_new_value = "Uw nieuwe waarde"
your_backups = "Uw backups"
your_latest_blog_posts = "Uw laatste blogberichten"
your_recent_posts = "Uw recente berichten"
by = "door"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>hint:</u> Gebruik <code>Ctrl</code>/<code>CMD</code> + <code>F</code> om jouw config key of waarde te vinden."
homepage = "start"
instead = "in plaats van"
item_class = "Invoegen CSS class"
item_slug = "Link URL invoegen"
now = "nu"
of = "of"
optional = "optioneel"
post_your_post_slug = "/bericht/uw-bericht-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>pro tips:</u> Je kan zelf een key maken en printen overal in je template."
read_more = "Lees meer"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/jaar/maand/uw-bericht-slug"
your_key = "jouw sleutel"
summary_behavior = "Samenvatting"
default = "Standaard"
check_shortcode = "Controleercode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "Bij een samenvatting, controleer eerst wat er staat of gebruik x tekens"
manage_users = "Beheer gebruikers"
add_user = "Voeg gebruiker toe"
username = "Gebruiker"
role = "Rol"
change_password = "Wijzig wachtwoord"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

333
lang/pl_PL.ini Executable file
View File

@ -0,0 +1,333 @@
about = "Informacje"
add_category = "Dodaj kategorię"
add_content = "Dodaj zawartość"
add_link = "Dodaj odnośnik"
add_menu = "Dodaj menu"
add_new_page = "Dodaj nową stronę"
add_new_post = "Dodaj nowy post"
add_source_link_optional = "Dodaj odnośnik do źródła (opcjonalne)"
add_sub = "Dodaj podstronę"
address_url = "Addres (URL)"
admin = "Admin"
admin_panel_style_based_on = "Styl panelu administracyjnego bazuje na"
all_blog_posts = "Wszystkie posty"
all_cache_has_been_deleted = "Pamięć podręczna została wyczyszczona!"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "Archiwa"
are_you_sure_you_want_to_delete_ = "Czy chcesz usunąć <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "W tym momencie menu jest generowane automatycznie."
audio_post = "Post z audio"
audio_post_comment = "Utwórz dźwiękowy post na blogu"
author = "Autor"
author_description = "Po prostu kolejne konto HTMLy"
back_to = "Wróć do"
backup = "Kopia zapasowa"
blog_description = "W jednym akapicie opisz ten blog."
blog_theme = "Motyw bloga"
blog_title = "Tytuł bloga"
blog_title_placeholder = "Skrót bloga"
blog_posts_displayed_as = "Posty blogowe wyświetlane jako"
breadcrumb_home_text = "Tekst nawigacji domowej"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Używając tego importera zgadzasz się, że feed jest Twój lub przynajmniej masz uprawnienia do jego publikacji."
css_class_optional = "Klasy CSS (opcjonalne)"
cache_expiration = "Czas trwania pamięci tymczasowej (w godzinach)"
cache_off = "Pamięć tymczasowa wyłączona"
cache_timestamp = "Odcisk czasu pamięci podręcznej"
cancel = "Anuluj"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha błędna"
categories = "Kategorie"
category = "Kategoria"
check_update = "Sprawdź aktualizacje"
clear_cache = "Wyczyść pamięć podręczną"
comma_separated_values = "Wartości rozdzielane przecinkiem"
comment_system = "System komentarzy"
comments = "Komentarze"
config = "Konfiguracja"
congrats_you_have_the_latest_version_of_htmly = "Gratulacje! Masz aktualną wersję HTMLy."
content = "Zawartość"
contents = "Zawartość"
copyright_line = "Fragment praw autorskich"
copyright_line_placeholder = "(c) Twoje imię."
create_backup = "Stwórz kopie zapasowe"
created = "Utworzono"
custom = "Modyfikacje"
custom_settings = "Ustawienia modyfikacji"
dashboard = "Kokpit"
date = "Data"
date_format = "Format daty"
delete = "Usuń"
description = "Opis"
disable = "Wyłączenie"
disabled = "Nieaktywne"
disqus_shortname = "Disqus skrócona nazwa"
disqus_shortname_placeholder = "htmly"
draft = "Wersja robocza"
edit = "Edytuj"
edit_category = "Edytuj kategorię"
edit_post = "Edycja"
edit_profile = "Edytuj profil"
enable = "Włączenie"
enable_blog_url = "Włączenie URL blog"
enter_image_url = "Wpisz URL obrazka"
facebook_app_id = "Facebook App ID"
facebook_page = "Strona Facebook"
featured_audio = "Prezentowany Dźwięk"
featured_image = "Prezentowany Obraz"
featured_link = "Prezentowany Odnośnik"
featured_quote = "Prezentowany Cytat"
featured_video = "Prezentowane Wideo"
feed_url = "Feed URL"
filename = "Nazwa pliku"
follow = "Śledź"
for_google_site_verification_meta = "Dla google-site-verification meta"
front_page_displays = "Wyświetlenie strony startowej"
full_post = "Pełen post"
general = "Ogólnie"
general_settings = "Ustawienia ogólne"
get_one_here = "Zdobądź jeden teraz"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "Strona domowa"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Jeżeli pozostanie puste, zawartość poniżej zostanie użyta jako zajawka"
if_the_url_is_left_empty_we_will_use_the_page_title = "Jeżeli URL pozostanie puste, tytuł strony zostanie użyty"
if_the_url_is_left_empty_we_will_use_the_post_title = "Jeżeli URL pozostanie puste, tytuł posta zostanie użyty"
image_post = "Post obrazkowy"
image_post_comment = "Tworzy post z wyróżnionym zdjęciem"
import = "Import"
import_feed = "Rozpocznij import Feed'a"
import_rss = "Import RSS"
import_rss_feed_2.0 = "Importuj RSS Feed 2.0"
insert_image = "Wstaw Obraz"
invalid_error = "BŁĄD: Błędna nazwa konta lub hasło"
language = "Język systemu"
link_name = "Nazwa odnośnika"
link_post = "Odnośnik"
link_post_comment = "Tworzy post z wyróżnionym linkiem"
login = "Login"
login_page = "Strona logowania"
logout = "Wyloguj się"
menu = "Menu"
menus = "Edytor Menu"
meta_description = "Meta-informacje"
meta_description_character = "Ilość znaków metaopisu"
metatags = "Metatags"
metatags_settings = "Ustawienia metatagów"
mine = "Moje"
more = "Więcej"
my_draft = "Mój szkic"
my_posts = "Moje posty"
name = "Nazwa"
newer = "Nigdy"
next = "Dalej"
next_post = "Następny post"
no_available_backup = "W tym momencie nie ma dostępnych kopii zapasowych."
no_draft_found = "Nie znaleziono szkicu"
no_newer_posts = "Nie znaleziono najnowszych postów"
no_posts_found = "Nie znaleziono postów"
no_related_post_found = "Nie znaleziono powiązanych postów."
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "Nie znaleziono"
nope = "Nie"
not = "Nie"
older = "Starsze"
only = "Tylko"
operations = "Operacje"
page = "Strona"
page_generation_time = "Czas wygenerowania strony"
pages = "Strony"
pass_error = "Wartość z hasłem konta jest wymagana"
password = "Hasło"
performance = "Wydajność"
performance_settings = "Ustawienia wydajności"
permalink = "Stały odnośnik"
popular = "Popularne"
popular_posts = "Popularne posty"
popular_posts_widget = "Sekcja postów popularnych"
popular_posts_widget_at_most = "Maksymalna ilość postów wyświetlana w Sekcji Postów Popularnych"
popular_tags = "Popularne tagi"
post_by_author = "Posty autorstwa"
posted_in = "Napisano w"
posted_on = "Opublikowano "
posts = "Posty"
posts_by = "Posty "
posts_draft = "Szablon posta"
posts_in_archive_page_at_most = "Maksymalna ilość postów w archiwum"
posts_in_category_page_at_most = "Maksymalna ilość postów na stronie kategorii"
posts_in_front_page_show_at_most = "Posty na stronie startowej widzialne od najnowszego"
posts_in_profile_page_at_most = "Maksymalna ilość postów na stronie profilu"
posts_in_search_result_at_most = "Maksymalna ilość postów na stronie wyszukiwania"
posts_in_tag_page_at_most = "Maksymalna ilość postów na stronie tagu"
posts_in_type_page_at_most = "Maksymalna ilość postów na stronie typu"
posts_index_settings = "Ustawienia indeksowania postów"
posts_list = "Lista postów"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "Pre-release"
prev = "Starszy"
prev_post = "Poprzedni post"
preview = "Podgląd"
profile_for = "Profile for"
proudly_powered_by = "Dumnie tworzone przez"
publish = "Opublikuj"
publish_draft = "Opublikuj wersję roboczą"
published = "Opublikowano"
quote_post = "Cytuj post"
quote_post_comment = "Tworzenie postu z cytatem"
rss_character = "Ilość znaków RSS"
rss_feeds_show_the_most_recent = "Maksymalna ilość wpisów Feed'u RSS"
rss_settings = "Ustawienia RSS"
read_more_text = "Czytaj Więcej tekst"
read_more_text_placeholder = "Czytaj więcej"
reading = "Czytanie"
reading_settings = "Ustawienia czytania"
recaptcha = "reCAPTCHA"
recent_posts = "Ostatnie posty"
recent_posts_widget_at_most = "Maksymalna ilość postów wyświetlana w Sekcji Ostatnich Postów"
regular_post = "Standardowy post"
regular_post_comment = "Tworzenie zwykłego postu"
related_posts = "Powiązane posty"
related_widget_posts_at_most = "Maksymalna ilość postów wyświetlana w Sekcji Postów Powiązanych"
revert_to_draft = "Cofnij do wersji roboczej"
save = "Zapisz"
save_config = "Zapisz konfigurację"
save_edit = "Zapisz edycję"
save_menu = "Zapisz menu"
save_as_draft = "Zapisz jako szkic"
save_category = "Zapisz kategorię"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "Szukaj"
search_for = "Szukaj"
search_results_for = "Search results for"
search_results_not_found = "Brak wyników wyszukiwania!"
secret_key = "Klucz sekretny"
settings = "Ustawienia"
sign_in_to_start_your_session = "Zaloguj się by rozpocząć sesję"
site_key = "Klucz strony"
sitemap = "Mapa strony"
slug = "Uproszczenie"
social_media = "Platforma społecznościowa"
static_page = "Statyczna strona"
static_page_comment = "Tworzy statyczną stronę"
static_pages = "Strony statyczne"
summary = "Podsumowanie"
summary_character = "Ilość znaków podsumowania"
tag = "Tag"
tagcloud_widget_at_most = "Maksymalna ilość tagów w Chmurze Tagów"
tagline = "Krótki opis"
tagline_placeholder = "Bezbazodanowa platforma PHP do blogowania"
tagline_description = "W kilku słowach opsiz o czym ten blog jest."
tags = "Tagi"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "To jest przestarzały kod. Zazwyzcaj nowo utworzone analizy używają gtag.js"
this_page_doesnt_exist = "Ta strona nie istnieje!"
time = "Czas"
timezone = "Strefa czasowa"
title = "Tytuł"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Do używania Disqus lub Komentarzy Facebook potrzeba wpisać ich App ID."
token_error = "Token CSRF jest niepoprawny"
tools = "Narzędzia"
twitter_account = "Konto Twitter"
type_to_search = "Wpisz wyszkukiwaną frazę"
uncategorized = "Bez kategorii"
uncategorized_comment = "Wpisy, któe nie potrzebują kategorii, lub niepasujące do żadnej kategorii."
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "Aktualizacja"
update_available = "Aktualizacje są dostępne"
update_draft = "Aktualizuj szkic"
update_post = "Aktualizuj post"
update_to = "Aktualizuj do"
upload = "Wgraj"
user = "Konto"
user_error = "Wartość pola z nazwą konta jest wymagane"
valid_values_range_from_0_to_1.0._see = "Poprawne wartości są w zakresie 0.0 do 1.0. Zobacz"
video_post = "Film"
video_post_comment = "Tworzy post z wyróżnionym filmem."
view = "Zobacz"
view_post = "Podgląd"
views = "Wyświetleń"
widget = "Widgety"
widget_settings = "Ustawienia widgetów"
would_you_like_to_try_our = "Czy przetestujesz "
yes_im_in = "Tak, wchodzę w to"
yes_not_recommended = "Tak (niezalecane)"
you_dont_have_permission_to_access_this_page = "Nie masz uprawnień do tej strony"
your_new_config_key = "Twój nowy klucz konfiguracji"
your_new_value = "Wartość twojego nowego klucza konfiguracji"
your_backups = "Twoje kopie zapasowe"
your_latest_blog_posts = "Twoje ostatnie wpisy"
your_recent_posts = "Twoje ostatnie posty"
by = "przez"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>wskazówka:</u> Użyj <code>Ctrl</code>/<code>CMD</code> + <code>F</code> by wyszukać wartość klucza konfiguracji."
homepage = "strona_domowa"
instead = "zamiast"
item_class = "Wstaw klasy CSS"
item_slug = "Wstaw URL odnośnika"
now = "teraz"
of = " "
optional = "opcjonalne"
post_your_post_slug = "/post/uproszczona-nazwa-postu"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>super wskazówka:</u> Możesz tworzyć własne klucze konfiguracji i wyświetlać je gdziekolwiek w szablonie."
read_more = "Czytaj więcej"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/rok/miesiąc/uproszczona-nazwa-postu"
your_key = "ten.klucz"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/pt_BR.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Sobre"
add_category = "Adicionar categoria"
add_content = "Adicionar conteúdo"
add_link = "Adicionar link"
add_menu = "Adicionar menu"
add_new_page = "Adicionar nova página"
add_new_post = "Adicionar nova postagem"
add_source_link_optional = "Adicione o link da fonte (opcional)"
add_sub = "Adicionar sub página"
address_url = "Endereço (URL)"
admin = "Admin"
admin_panel_style_based_on = "Painel de administração baseado no"
all_blog_posts = "Todas as postagens do blog"
all_cache_has_been_deleted = "Todo cache foi excluído !"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "Arquivos"
are_you_sure_you_want_to_delete_ = "Tem certeza de que deseja excluir <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "No momento você está usando a geração automática de menus."
audio_post = "Postagem com áudio"
audio_post_comment = "Criação de postagem com áudio em destaque"
author = "Autor"
author_description = "Just another HTMLy user"
back_to = "Voltar para"
backup = "Backup"
blog_description = "Em um parágrafo, descreva sobre seu site/blog."
blog_theme = "Tema do site/blog"
blog_title = "Título (site/blog)"
blog_title_placeholder = "Meu site / blog"
blog_posts_displayed_as = "Exibir postagens como"
breadcrumb_home_text = "Breadcrumb: texto da página inicial"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Utilizando este importador você está de acordo que o feed é seu ou pelo menos tenha a autorização para publicar."
css_class_optional = "Classe CSS (opcional)"
cache_expiration = "Expiração do cache (em horas)"
cache_off = "Desativar Cache"
cache_timestamp = "Timestamp do cache"
cancel = "Cancelar"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha not correct"
categories = "Categorias"
category = "Categoria"
check_update = "Verificar atualização"
clear_cache = "Limpar cache"
comma_separated_values = "Os valores devem ser separados por virgula"
comment_system = "Sistema de comentário"
comments = "Comentários"
config = "Configurar"
congrats_you_have_the_latest_version_of_htmly = "Parabêns ! Você tem a última versão do HTMLy."
content = "Conteúdo"
contents = "Conteúdo"
copyright_line = "Direitos reservados"
copyright_line_placeholder = "(c) Seu nome."
create_backup = "Gerar backup"
created = "Criado"
custom = "Customizar"
custom_settings = "Configurações customizadas"
dashboard = "Painel de Controle"
date = "Data"
date_format = "Formato de data"
delete = "Excluir"
description = "Descrição"
disable = "Desabilitar"
disabled = "Desabilitado"
disqus_shortname = "Usuário Disqus"
disqus_shortname_placeholder = "htmly"
draft = "Rascunho"
edit = "Editar"
edit_category = "Editar categoria"
edit_post = "Edit"
edit_profile = "Editar perfil"
enable = "Habilitar"
enable_blog_url = "Habilitar a URL blog"
enter_image_url = "Insira a URL da imagem"
facebook_app_id = "Facebook App ID"
facebook_page = "Página do Facebook"
featured_audio = "Audio em destaque"
featured_image = "Imagem em destaque"
featured_link = "Link em destaque"
featured_quote = "Citação em destaque"
featured_video = "Video em destaque"
feed_url = "URL do Feed"
filename = "Nome do arquivo"
follow = "Seguir"
for_google_site_verification_meta = "Para o meta google-site-verification"
front_page_displays = "Mostrar na primeira página"
full_post = "Postagem completa"
general = "Geral"
general_settings = "Configurações Gerais"
get_one_here = "Efetue as configuração no link"
github_pre_release = "Pré-lançamento do Github"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legado)"
google_search_console = "Google Search Console"
home = "Inicial"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Se deixar em branco, iremos extraí-lo do conteúdo abaixo"
if_the_url_is_left_empty_we_will_use_the_page_title = "Se a url estiver vazia, usaremos o título da página"
if_the_url_is_left_empty_we_will_use_the_post_title = "Se a url estiver vazia, usaremos o título da postagem"
image_post = "Postagem com imagem"
image_post_comment = "Criação de postagem com imagem em destaque"
import = "Importar"
import_feed = "Iniciar importação do feed"
import_rss = "Importar RSS"
import_rss_feed_2.0 = "Importar o Feed RSS 2.0"
insert_image = "Inserir Imagem"
invalid_error = "ERROR: Invalid username or password"
language = "Idioma do sistema"
link_name = "Nome do link"
link_post = "Postagem de link"
link_post_comment = "Criação de postagem com link em destaque"
login = "Logar"
login_page = "Página de login"
logout = "Sair"
menu = "Menu"
menus = "Editor de menus"
meta_description = "Meta Descrição"
meta_description_character = "Caracteres da 'Meta description'"
metatags = "Metatags"
metatags_settings = "Configurações de Metatags"
mine = "Meu"
more = "Mais"
my_draft = "Meu rascunho"
my_posts = "Minhas postagens"
name = "Nome"
newer = "Mais recente"
next = "Próximo"
next_post = "Próxima postagem"
no_available_backup = "Não há nenhum backup no momento."
no_draft_found = "Nenhum rascunho encontrado"
no_posts_found = "nenhuma postagem encontrada"
no_related_post_found = "Nenhuma postagem relacionada encontrada"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "No search results"
nope = "Não"
not = "Não"
older = "Antigo"
only = "Somente"
operations = "Operações"
page = "Page"
page_generation_time = "Tempo de geração da página"
pages = "Pages"
pass_error = "Password field is required"
password = "Senha"
performance = "Performance"
performance_settings = "Configurações de Performance"
permalink = "Link permanente"
popular = "Popular"
popular_posts = "Postagens populares"
popular_posts_widget = "Posts populares"
popular_posts_widget_at_most = "Limite de post populares"
popular_tags = "Tags populares"
post_by_author = "Posts by this author"
posted_in = "Postado em"
posted_on = "Posted em"
posts = "Postagens"
posts_by = "Posts by"
posts_draft = "Rascunhos"
posts_in_archive_page_at_most = "Limite na página de arquivados"
posts_in_category_page_at_most = "Limite na página de categoria"
posts_in_front_page_show_at_most = "Limitar posts na primeira página"
posts_in_profile_page_at_most = "Limite na página de perfil"
posts_in_search_result_at_most = "Limite em resultados de pesquisa"
posts_in_tag_page_at_most = "Limite na página de tags"
posts_in_type_page_at_most = "Limite na página por tipo (type)"
posts_index_settings = "Configurações de índice das postagens"
posts_list = "Postagens"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "Pré-lançamento"
prev = "Antigo"
prev_post = "Postagem anterior"
preview = "Pré visualização"
profile_for = "Profile for"
proudly_powered_by = "Orgulhosamente desenvolvido por"
publish = "Publicar"
publish_draft = "Publicar rascunho"
published = "Publicados"
quote_post = "Postagem com citação"
quote_post_comment = "Criação de postagem de blog com citação em destaque"
rss_character = "Limite de caracteres do RSS"
rss_feeds_show_the_most_recent = "Limite de postagens recentes"
rss_settings = "Configurações RSS"
read_more_text = "Texto para continuar a leitura"
read_more_text_placeholder = "Leia mais"
reading = "Leitura"
reading_settings = "Configurações de Leitura"
recaptcha = "reCAPTCHA"
recent_posts = "Postagens recentes"
recent_posts_widget_at_most = "Limite de posts recentes"
regular_post = "Postagem padrão"
regular_post_comment = "Criação de postagem padrão no blog"
related_posts = "Postagens relacionadas"
related_widget_posts_at_most = "Limite de posts relacionados"
revert_to_draft = "Reverter para rascunho"
save = "Salvar"
save_config = "Salvar configurações"
save_edit = "Salvar edição"
save_menu = "Salvar menu"
save_as_draft = "Salvar como rascunho"
save_category = "Salvar categoria"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "Buscar"
search_for = "Buscar por"
search_results_for = "Search results for"
search_results_not_found = "Search results not found!"
secret_key = "Chave secreta"
settings = "Configurações"
sign_in_to_start_your_session = "Faça login para iniciar a sessão"
site_key = "Chave do site"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Mídia Social"
static_page = "Página estática"
static_page_comment = "Criação de página estática"
static_pages = "Páginas estáticas"
summary = "Postagem Resumida"
summary_character = "Limite de caracteres do resumo"
tag = "Tag"
tagcloud_widget_at_most = "TagCloud at most"
tagline = "Slogan"
tagline_placeholder = "Descreva um slogan"
tagline_description = "Em poucas palavras defina o site/blog de forma objetiva."
tags = "Tags"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Este é um código legado. Normalmente o novo Analytics usa o gtag.js"
this_page_doesnt_exist = "A página requisitada não existe !"
time = "Hora"
timezone = "Fuso horário"
title = "Título"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Para usar o Disqus ou comentário do Facebook, você precisa fornecer o nome abreviado do Disqus ou o ID do aplicativo do Facebook."
token_error = "CSRF Token not correct"
tools = "Ferramentas"
twitter_account = "Conta do Twitter"
type_to_search = "Digite para buscar"
uncategorized = "Sem categoria"
uncategorized_comment = "Tópicos que não precisam de uma categoria ou não se encaixam em nenhuma outra categoria existente"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "Atualizar"
update_available = "Atualização disponível"
update_draft = "Atualizar rascunho"
update_post = "Atualizar postagem"
update_to = "Atualizar para"
upload = "Carregar"
user = "Usuário"
user_error = "User field is required"
valid_values_range_from_0_to_1.0._see = "Valores válidos são entre 0.0 e 1.0. Veja mais em"
video_post = "Postagem de video"
video_post_comment = "Criação de postagem com vídeo em destaque"
view = "Visualizar"
view_post = "View"
views = "Visualizações"
widget = "Widget"
widget_settings = "Configurações dos Widgets"
would_you_like_to_try_our = "Poderia tentar a nossa "
yes_im_in = "Sim, estou dentro"
yes_not_recommended = "Sim (não recomendado)"
you_dont_have_permission_to_access_this_page = "Você não tem permissão para acessar esta página"
your_new_config_key = "Sua nova chave configurada"
your_new_value = "Seu novo valor"
your_backups = "Seus backups"
your_latest_blog_posts = "Suas postagens de blog"
your_recent_posts = "Suas postagens recentes"
by = "por"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>Dica:</u> Utilize <code>Ctrl</code>/<code>CMD</code> + <code>F</code> para buscar pela chave ou valor."
homepage = "página inicial"
instead = "no lugar"
item_class = "Insira a classe CSS do link"
item_slug = "Insira a URL do link"
now = "agora"
of = "of"
optional = "opcional"
post_your_post_slug = "/post/url-da-postagem"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>Dica profissional:</u> Você pode criar chaves customizadas e imprimir seus valores em qualquer local de seu tema."
read_more = "leia mais"
widget_key_placeholder = "Seu código"
year_month_your_post_slug = "/ano/mes/url-da-postagem"
your_key = "sua.chave"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

333
lang/ru_RU.ini Executable file
View File

@ -0,0 +1,333 @@
about = "О сайте"
add_category = "Добавить категорию"
add_content = "Добавить статью"
add_link = "Добавить ссылку"
add_menu = "Добавить меню"
add_new_page = "Добавить новую страницу"
add_new_post = "Добавить новую статью"
add_source_link_optional = "Добавить ссылку на источник (не обязательно)"
add_sub = "Добавить подстраницу"
address_url = "Адрес (URL)"
admin = "Админ"
admin_panel_style_based_on = "Стиль админ панели основан на"
all_blog_posts = "Все статьи"
all_cache_has_been_deleted = "Все кеши были очищены!"
all_posts_tagged = "All posts tagged"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "Архивы"
are_you_sure_you_want_to_delete_ = "Вы уверены, что хотите удалить <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Сейчас вы используете автоматически созданное меню"
audio_post = "Статья с аудио"
audio_post_comment = "Создать статью с аудио"
author = "Автор"
author_description = "Еще один пользователь HTMLy"
back_to = "Вернуться на"
backup = "Бэкап"
blog_description = "Расскажите больше о своем блоге (один абзац)"
blog_theme = "Тема блога"
blog_title = "Заголовок блога"
blog_title_placeholder = "Мой блог на HTMLy"
blog_posts_displayed_as = "Записи в блоге отображаются в виде"
breadcrumb_home_text = "Текст для главной страницы в хлебных крошках"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Используя данный импортер, вы подтверждаете, что лента принадлежит вам, или у вас есть полномочия на ее публикацию"
css_class_optional = "CSS класс (не обязательно)"
cache_expiration = "Срок действия кеша (в часах)"
cache_off = "Кеш выключен"
cache_timestamp = "Отметка времени кеша"
cancel = "Отменить"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha не верна"
categories = "Категории"
category = "Категория"
check_update = "Проверить обновления"
clear_cache = "Очистить кеш"
comma_separated_values = "Разделенные запятыми значения"
comment_system = "Выберите систему"
comments = "Комментарии"
config = "Конфигурация"
congrats_you_have_the_latest_version_of_htmly = "Поздравляем! У вас установлена последняя версия HTMLy"
content = "Содержимое"
contents = "Содержание"
copyright_line = "Авторские права"
copyright_line_placeholder = "(c) Ваше имя"
create_backup = "Создать резервную копию"
created = "Создано"
custom = "Пользовательские"
custom_settings = "Пользовательские настройки"
dashboard = "Панель"
date = "Дата"
date_format = "Формат даты"
delete = "Удалить"
description = "Описание"
disable = "Выключить"
disabled = "Отключено"
disqus_shortname = "Имя Disqus"
disqus_shortname_placeholder = "htmly"
draft = "Черновик"
edit = "Редактировать"
edit_category = "Редактировать категорию"
edit_post = "Редактировать"
edit_profile = "Редактировать профиль"
enable = "Включить"
enable_blog_url = "Включить ссылку blog"
enter_image_url = "Введите URL изображения"
facebook_app_id = "Facebook App ID"
facebook_page = "Страница Facebook"
featured_audio = "Аудио"
featured_image = "Изображение"
featured_link = "Ссылка"
featured_quote = "Цитата"
featured_video = "Видео"
feed_url = "Адрес рассылки"
filename = "Имя файла"
follow = "Следовать"
for_google_site_verification_meta = "Для google-site-verification (мета тег)"
front_page_displays = "Показывать на главной странице"
full_post = "Статья полностью"
general = "Общие"
general_settings = "Общие настройки"
get_one_here = "Получить"
github_pre_release = "Предварительный выпуск на Github"
google_analytics = "Аналитика Google"
google_analytics_legacy = "Аналитика Google (legacy)"
google_search_console = "Поисковая консоль Google"
home = "Главная"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Если оставить пустым, данные будут внесены из основного содержимого"
if_the_url_is_left_empty_we_will_use_the_page_title = "Если адрес оставить пустым, будет использован заголовок страницы"
if_the_url_is_left_empty_we_will_use_the_post_title = "Если адрес оставить пустым, будет использован заголовок статьи"
image_post = "Статья с изображением"
image_post_comment = "Создать статью с изображением"
import = "Импорт"
import_feed = "Запустить импорт ленты"
import_rss = "Импорт RSS"
import_rss_feed_2.0 = "Импорт RSS Feed 2.0"
insert_image = "Вставить изображение"
invalid_error = "ОШИБКА: Неверные имя пользователя или Пароль"
language = "Язык системы"
link_name = "Название ссылки"
link_post = "Статья со ссылкой"
link_post_comment = "Создать статью со ссылкой"
login = "Вход"
login_page = "Страница входа"
logout = "Выйти"
menu = "Меню"
menus = "Редактор меню"
meta_description = "Мета-описание"
meta_description_character = "Количество символов в мета-описании"
metatags = "Мета теги"
metatags_settings = "Настройки мета тегов"
mine = "Моё"
more = "Подробнее"
my_draft = "Мой черновик"
my_posts = "Мои статьи"
name = "Имя"
newer = "Новое"
next = "Вперед"
next_post = "Следующая статья"
no_available_backup = "Резервные копии отсутствуют"
no_draft_found = "Черновики не найдены"
no_newer_posts = "Нет новых статей"
no_posts_found = "Статьи не найдены"
no_related_post_found = "Нет похожих статей."
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "Безрезультатно"
nope = "Нет"
not = "Нет"
older = "Старое"
only = "Только"
operations = "Операции"
page = "Страница"
page_generation_time = "Время создания страницы"
pages = "Страницы"
pass_error = "Введите пароль"
password = "Пароль"
performance = "Производительность"
performance_settings = "Настройки производительности"
permalink = "Постоянная ссылка"
popular = "Популярный"
popular_posts = "Популярные статьи"
popular_posts_widget = "Популярные статьи"
popular_posts_widget_at_most = "Количество популярных статей, не более"
popular_tags = "Популярные теги"
post_by_author = "Авторские статьи"
posted_in = "Опубликовано в"
posted_on = "Опубликовано "
posts = "Статьи"
posts_by = "Статьи автора"
posts_draft = "Черновики"
posts_in_archive_page_at_most = "Количество статей на архивных страницах, не более"
posts_in_category_page_at_most = "Количество статей на странице категорий, не более"
posts_in_front_page_show_at_most = "Количество статей на главной, не более"
posts_in_profile_page_at_most = "Количество статей на страницах профиля пользователя, не более"
posts_in_search_result_at_most = "Количество статей в результатах поиска, не более"
posts_in_tag_page_at_most = "Количество статей на страницах для каждой метки, не более"
posts_in_type_page_at_most = "Количество статей на страницах для каждого типа записей, не более"
posts_index_settings = "Настройки количества статей"
posts_list = "Список статей"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "предварительный выпуск"
prev = "Назад"
prev_post = "Предыдущая статья"
preview = "Просмотр"
profile_for = "Profile for"
proudly_powered_by = "Разработано"
publish = "Опубликовать"
publish_draft = "Опубликовать черновик"
published = "Опубликовано"
quote_post = "Статья с цитатой"
quote_post_comment = "Создать статью с цитатой"
rss_character = "Количество символов в RSS"
rss_feeds_show_the_most_recent = "Количество последних новостей в RSS каналах"
rss_settings = "Настройки RSS"
read_more_text = "Текст Читать далее"
read_more_text_placeholder = "Подробнее"
reading = "Чтение"
reading_settings = "Настройки чтения"
recaptcha = "reCAPTCHA"
recent_posts = "Новые статьи"
recent_posts_widget_at_most = "Количество новых статей, не более"
regular_post = "Стандартная статья"
regular_post_comment = "Создать стандартную статью"
related_posts = "Похожие статьи"
related_widget_posts_at_most = "Количество похожих статей, не более"
revert_to_draft = "Переключить на черновик"
save = "Сохранить"
save_config = "Сохранить настройки"
save_edit = "Сохранить"
save_menu = "Сохранить меню"
save_as_draft = "Сохранить как черновик"
save_category = "Сохранить категорию"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "Поиск"
search_for = "Искать"
search_results_for = "Search results for"
search_results_not_found = "По вашему запросу ничего не найдено!"
secret_key = "Секретный ключ"
settings = "Настройки"
sign_in_to_start_your_session = "Авторизация пользователя"
site_key = "Ключ сайта"
sitemap = "Карта сайта"
slug = "ЧПУ"
social_media = "Социальные медиа"
static_page = "Статичная страница"
static_page_comment = "Создать статичную страницу"
static_pages = "Статичные страницы"
summary = "Отрывок"
summary_character = "Количество символов в отрывке"
tag = "Метка"
tagcloud_widget_at_most = "TagCloud at most"
tagline = "Подзаголовок"
tagline_placeholder = "Платформа для ведения блогов на PHP без базы данных"
tagline_description = "В нескольких словах расскажите, о чем этот блог"
tags = "Метки"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Это устаревший код. Обычно новая аналитика создается с использованием gtag.js"
this_page_doesnt_exist = "Такая станица не существует!"
time = "Время"
timezone = "Часовой пояс"
title = "Заголовок"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Для использования комментариев Disqus или Facebook вам необходимо указать короткое имя Disqus или Facebook App ID."
token_error = "Неправильный токен"
tools = "Инструменты"
twitter_account = "Аккаунт Twitter"
type_to_search = "Введите для поиска"
uncategorized = "Без категории"
uncategorized_comment = "Статьи, которым не нужна категория или которые не подходят ни к одной существующей категории."
universal_analytics = "Универсальная (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "Обновить"
update_available = "Доступно обновление"
update_draft = "Обновить черновик"
update_post = "Обновить статью"
update_to = "Обновить до"
upload = "Загрузить"
user = "Пользователь"
user_error = "Заполните имя пользователя"
valid_values_range_from_0_to_1.0._see = "Допустимые значения от 0.0 до 1.0. Подробнее: "
video_post = "Статья с видео"
video_post_comment = "Создать статью с видео"
view = "Просмотр"
view_post = "Просмотр"
views = "Просмотры"
widget = "Виджет"
widget_settings = "Управление виджетами"
would_you_like_to_try_our = "Хотели бы вы попробовать "
yes_im_in = "Да"
yes_not_recommended = "Да (не рекомендуется)"
you_dont_have_permission_to_access_this_page = "У вас нет разрешений для доступа к этой странице"
your_new_config_key = "Ваш новый ключ конфигурации"
your_new_value = "Значение ключа"
your_backups = "Резервные копии"
your_latest_blog_posts = "Ваши последние статьи"
your_recent_posts = "Ваши недавние статьи"
by = ""
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>совет:</u> Для поиска ключа конфигурации и его значения используйте комбинацию клавиш <code>Ctrl</code>/<code>CMD</code> + <code>F</code>"
homepage = "главная"
instead = "вместо"
item_class = "Добавьте класс CSS"
item_slug = "Вставьте ЧП ссылку"
now = "сейчас"
of = "of"
optional = "необязательный"
post_your_post_slug = "/post/постоянная-ссылка-на-статью"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>совет:</u> Вы можете создать собственный ключ конфигурации и выводить значение этого ключа в любом месте вашего шаблона"
read_more = "Читать далее"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/год/месяц/постоянная-ссылка-на-статью"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

344
lang/sv_SE.ini Executable file
View File

@ -0,0 +1,344 @@
about = "Om"
add_category = "Ny kategori"
add_content = "Nytt"
add_link = "Add link"
add_menu = "Add menu"
add_new_page = "Add new page"
add_new_post = "Add new post"
add_source_link_optional = "Add source link (optional)"
add_sub = "Ny undersida"
address_url = "Address (URL)"
admin = "Admin"
admin_panel_style_based_on = "Admin panel style based on"
all_blog_posts = "Alla blogginlägg"
all_cache_has_been_deleted = "All cache has been deleted !"
all_posts_tagged = "All posts tagged"
archive = "Arkiv"
archive_for = "Archive for"
archive_page_for = "Archive page for"
archives = "Arkiv"
are_you_sure_you_want_to_delete_ = "Är du säker på att du vill radera <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "At the moment you are using auto generated menu."
audio_post = "Audioinlägg"
audio_post_comment = "Skapa inlägg med ljudklipp"
author = "Författare"
author_description = "Just another HTMLy user"
back_to = "Back to"
backup = "Säkerhetskopiera"
blog_description = "In one paragraph, tell us more about your blog."
blog_theme = "Blog Theme"
blog_title = "Blog title"
blog_title_placeholder = "My HTMLy Blog"
blog_posts_displayed_as = "Blog posts displayed as"
breadcrumb_home_text = "Breadcrumb home text"
by = "av"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "By using this importer you are agree if the feed is yours or at least you have the authority to publish it."
css_class_optional = "CSS Class (optional)"
cache_expiration = "Cache expiration (in hours)"
cache_off = "Cache off"
cache_timestamp = "Cache timestamp"
cancel = "Avbryt"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha not correct"
categories = "Kategorier"
category = "Kategori"
check_update = "Check update"
clear_cache = "Rensa cache"
comma_separated_values = "Comma separated values"
comment_system = "Comment system"
comments = "kommentarer"
config = "Konfiguration"
congrats_you_have_the_latest_version_of_htmly = "Congrats! You have the latest version of HTMLy."
content = "Content"
contents = "Innehåll"
continue_reading = "Läs vidare"
copyright_line = "Copyright line"
copyright_line_placeholder = "(c) Your name."
create_backup = "Create backup"
created = "Skapad"
custom = "Custom"
custom_settings = "Custom Settings"
dashboard = "Dashboard"
date = "Date"
date_format = "Date Format"
delete = "Radera"
description = "Beskrivning"
design_by = "Designad av"
disable = "Disable"
disabled = "Disabled"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "Utkast"
edit = "Redigera"
edit_category = "Edit category"
edit_post = "Edit"
edit_profile = "Redigera profil"
enable = "Enable"
enable_blog_url = "Enable blog URL"
enter_image_url = "Enter image URL"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook page"
featured_audio = "Featured Audio"
featured_image = "Featured Image"
featured_link = "Featured Link"
featured_quote = "Featured Quote"
featured_video = "Featured Video"
feed_url = "Feed URL"
filename = "Filnamn"
follow = "Följ"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "Front page displays"
full_post = "Full post"
general = "General"
general_settings = "General Settings"
get_one_here = "Get one here"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "Home"
if_left_empty_we_will_excerpt_it_from_the_content_below = "If leave empty we will excerpt it from the content below"
if_the_url_is_left_empty_we_will_use_the_page_title = "If the url leave empty we will use the page title"
if_the_url_is_left_empty_we_will_use_the_post_title = "If the url leave empty we will use the post title"
image_post = "Bildinlägg"
image_post_comment = "Skapa inlägg med bild"
import = "Importera"
import_feed = "Start Import Feed"
import_rss = "Import RSS"
import_rss_feed_2.0 = "Import RSS Feed 2.0"
insert_image = "Insert Image"
invalid_error = "ERROR: Invalid username or password"
language = "System Language"
link_name = "Link name"
link_post = "Länkinlägg"
link_post_comment = "Skapa inlägg med länk"
login = "Login"
login_page = "Inloggningssida"
logout = "Logga ut"
menu = "Menu"
menus = "Menu Editor"
meta_description = "Meta-beskrivning"
meta_description_character = "Meta description character"
metatags = "Metatags"
metatags_settings = "Metatags Settings"
mine = "Mina"
more = "Mer"
my_draft = "Mina utkast"
my_posts = "Mina inlägg"
name = "Name"
newer = "Nyare"
newer_posts = "Nyare inlägg"
next = "Nästa"
next_post = "Nästa inlägg"
no_available_backup = "No available backup at this time."
no_draft_found = "Inga utkast funna"
no_newer_posts = "Inga nyare inlägg"
no_older_posts = "Inga äldre inlägg"
no_posts_found = "Inga inlägg funna"
no_related_post_found = "Inga relaterade inlägg funna"
no_scheduled_posts_found = "No scheduled posts found!"
no_search_results = "No search results"
nope = "Nope"
not = "No"
older = "Äldre"
older_posts = "Äldre inlägg"
only = "Only"
operations = "Åtgärder"
page = "Page"
page_generation_time = "Page generation time"
pages = "Pages"
pass_error = "Password field is required"
password = "Password"
performance = "Performance"
performance_settings = "Performance Settings"
permalink = "Permalink"
popular = "Popular"
popular_posts = "Populära inlägg"
popular_posts_widget = "Popular posts widget"
popular_posts_widget_at_most = "Popular posts widget at most"
popular_tags = "Populära etiketter"
post_by_author = "Posts by this author"
posted_in = "Upplagd i"
posted_on = "Upplagd på"
posts = "Inlägg"
posts_by = "Posts by"
posts_draft = "Posts draft"
posts_in_archive_page_at_most = "Posts in archive page at most"
posts_in_category_page_at_most = "Posts in category page at most"
posts_in_front_page_show_at_most = "Posts in front page show at most"
posts_in_profile_page_at_most = "Posts in profile page at most"
posts_in_search_result_at_most = "Posts in search result at most"
posts_in_tag_page_at_most = "Posts in tag page at most"
posts_in_type_page_at_most = "Posts in type page at most"
posts_index_settings = "Posts index settings"
posts_list = "Posts list"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "Pre-release"
prev = "Föregående"
prev_post = "Föregående inlägg"
preview = "Preview"
previous = "Föregående"
profile_for = "Profile for"
proudly_powered_by = "Proudly powered by"
publish = "Publicera"
publish_draft = "Publicera utkast"
published = "Publicerad"
published_by = "Publicerad av"
quote_post = "Citatinlägg"
quote_post_comment = "Skapa inlägg med citat"
rss_character = "RSS character"
rss_feeds_show_the_most_recent = "RSS feeds show the most recent"
rss_settings = "RSS settings"
read_more = "läs mer"
read_more_text = "Read more text"
read_more_text_placeholder = "Read more"
reading = "Reading"
reading_settings = "Reading Settings"
recaptcha = "reCAPTCHA"
recent_comments = "Senaste kommentarer"
recent_posts = "Senaste inlägg"
recent_posts_widget_at_most = "Recent posts widget at most"
regular_post = "Vanligt inlägg"
regular_post_comment = "Skapa vanligt inlägg"
related_posts = "Relaterade inlägg"
related_widget_posts_at_most = "Related widget posts at most"
return_to_home = "Tillbaka till startsidan"
revert_to_draft = "Återgå till utkast"
save = "Spara"
save_config = "Save config"
save_edit = "Save Edit"
save_menu = "Save menu"
save_as_draft = "Spara som utkast"
save_category = "Save category"
scheduled = "Scheduled"
scheduled_posts = "Scheduled posts"
scheduled_tips = "Publishing a post with future date or time, it will go into scheduled posts"
search = "Sök"
search_for = "Sök efter"
search_results_for = "Search results for"
search_results_not_found = "Search results not found!"
secret_key = "Secret Key"
settings = "Settings"
share_this_post = "Dela inlägg"
sign_in_to_start_your_session = "Sign in to start your session"
site_key = "Site Key"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Social Media"
static_page = "Statisk sida"
static_page_comment = "Skapa statisk sida"
static_pages = "Statiska sidor"
summary = "Summary"
summary_character = "Summary character"
tag = "Etikett"
tagcloud_widget_at_most = "TagCloud at most"
tagline = "Tagline"
tagline_placeholder = "Databaseless PHP Blogging Platform"
tagline_description = "In a few words, explain what this blog is about."
tags = "Etiketter"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "This is legacy code. Usually new created analytics using gtag.js"
this_page_doesnt_exist = "This page doesn't exist !"
time = "Time"
timezone = "Timezone"
title = "Titel"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "To using Disqus or Facebook comment you need to provide Disqus shortname or Facebook App ID."
token_error = "CSRF Token not correct"
tools = "Tools"
twitter_account = "Twitter account"
type_to_search = "Type to search"
uncategorized = "Ingen kategori"
uncategorized_comment = "Inlägg som inte behöver någon kategori eller inte passar i någon av övriga kategorier."
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "Uppdatera"
update_available = "Update Available"
update_draft = "Uppdatera utkast"
update_post = "Uppdatera inlägg"
update_to = "Update to"
upload = "Upload"
user = "User"
user_error = "User field is required"
valid_values_range_from_0_to_1.0._see = "Valid values range from 0.0 to 1.0. See"
video_post = "Videoinlägg"
video_post_comment = "Skapa inlägg med video"
view = "Visa"
view_post = "View"
views = "Visningar"
widget = "Widget"
widget_settings = "Widget Settings"
would_you_like_to_try_our = "Would you like to try our "
yes_im_in = "Yes I'm in"
yes_not_recommended = "Yes (not recommended)"
you_dont_have_permission_to_access_this_page = "You don't have permission to access this page"
your_new_config_key = "Your New Config Key"
your_new_value = "Your New Value"
your_backups = "Your backups"
your_latest_blog_posts = "Your latest blog posts"
your_recent_posts = "Dina senaste inlägg"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>hint:</u> Use <code>Ctrl</code>/<code>CMD</code> + <code>F</code> to search for your config key or value."
homepage = "homepage"
instead = "instead"
item_class = "Insert CSS class"
item_slug = "Insert Link URL"
now = "now"
of = "of"
optional = "optional"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>pro tips:</u> You can creating custom config key and print out your config key value anywhere in your template."
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/tr_TR.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Hakkında"
add_category = "Kategori ekle"
add_content = "İçerik ekle"
add_link = "Bağlantı ekle"
add_menu = "Menü ekle"
add_new_page = "Yeni sayfa ekle"
add_new_post = "Yeni gönderi ekle"
add_source_link_optional = "Kaynak bağlantısı ekle (isteğe bağlı)"
add_sub = "Alt ekle"
address_url = "Adres (URL)"
admin = "Yönetici"
admin_panel_style_based_on = "Yönetici paneli stili temel alıyor"
all_blog_posts = "Tüm blog yazıları"
all_cache_has_been_deleted = "Tüm önbellek silindi!"
all_posts_tagged = "Tüm etiketlenmiş gönderiler"
archive_for = "Arşiv"
archive_page_for = "Arşiv sayfası"
archives = "Arşivler"
are_you_sure_you_want_to_delete_ = "<strong>%s</strong> silmek istediğinize emin misiniz?"
at_the_moment_you_are_using_auto_generated_menu = "Şu anda otomatik oluşturulmuş menü kullanıyorsunuz."
audio_post = "Sesli gönderi"
audio_post_comment = "Ses içeren bir blog gönderisi oluşturuluyor"
author = "Yazar"
author_description = "Bir başka HTMLy kullanıcısı"
back_to = "Geri dön"
backup = "Yedekleme"
blog_description = "Blogunuzu daha iyi anlatan bir paragraf."
blog_theme = "Blog Teması"
blog_title = "Blog Başlığı"
blog_title_placeholder = "HTMLy Blogum"
blog_posts_displayed_as = "Blog gönderileri şu şekilde görüntülenir"
breadcrumb_home_text = "Anasayfa kırıntı metni"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "Bu içe aktarımı kullanarak beslemenin size ait olduğunu veya en azından yayınlama yetkinizin olduğunu onaylıyorsunuz."
css_class_optional = "CSS Sınıfı (isteğe bağlı)"
cache_expiration = "Önbellek süresi (saat cinsinden)"
cache_off = "Önbellek kapalı"
cache_timestamp = "Önbellek zaman damgası"
cancel = "İptal"
cannot_read_feed_content = "Besleme içeriği okunamıyor"
captcha_error = "reCAPTCHA doğru değil"
categories = "Kategoriler"
category = "Kategori"
check_update = "Güncellemeyi kontrol et"
clear_cache = "Önbelleği temizle"
comma_separated_values = "Virgülle ayrılmış değerler"
comment_system = "Yorum sistemi"
comments = "Yorumlar"
config = "Ayarlar"
congrats_you_have_the_latest_version_of_htmly = "Tebrikler! HTMLy'nin en son sürümüne sahipsiniz."
content = "İçerik"
contents = "İçerikler"
copyright_line = "Telif Hakkı Satırı"
copyright_line_placeholder = "(c) Adınız."
create_backup = "Yedek oluştur"
created = "Oluşturuldu"
custom = "Özel"
custom_settings = "Özel Ayarlar"
dashboard = "Panel"
date = "Tarih"
date_format = "Tarih Formatı"
delete = "Sil"
description = "Açıklama"
disable = "Devre dışı bırak"
disabled = "Devre dışı"
disqus_shortname = "Disqus kısa adı"
disqus_shortname_placeholder = "htmly"
draft = "Taslak"
edit = "Düzenle"
edit_category = "Kategoriyi düzenle"
edit_post = "Düzenle"
edit_profile = "Profili düzenle"
enable = "Etkinleştir"
enable_blog_url = "Blog URL'sini etkinleştir"
enter_image_url = "Görsel URL'sini girin"
facebook_app_id = "Facebook Uygulama ID'si"
facebook_page = "Facebook sayfası"
featured_audio = "Öne çıkan ses"
featured_image = "Öne çıkan görsel"
featured_link = "Öne çıkan bağlantı"
featured_quote = "Öne çıkan alıntı"
featured_video = "Öne çıkan video"
feed_url = "Besleme URL'si"
filename = "Dosya Adı"
follow = "Takip et"
for_google_site_verification_meta = "Google site doğrulaması için meta"
front_page_displays = "Anasayfa gösterimi"
full_post = "Tam gönderi"
general = "Genel"
general_settings = "Genel Ayarlar"
get_one_here = "Buradan bir tane alın"
github_pre_release = "Github ön sürüm"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (eski)"
google_search_console = "Google Search Console"
home = "Anasayfa"
if_left_empty_we_will_excerpt_it_from_the_content_below = "Boş bırakılırsa, aşağıdaki içerikten özet çıkarılacaktır."
if_the_url_is_left_empty_we_will_use_the_page_title = "URL boş bırakılırsa sayfa başlığı kullanılacaktır."
if_the_url_is_left_empty_we_will_use_the_post_title = "URL boş bırakılırsa gönderi başlığı kullanılacaktır."
image_post = "Görsel gönderi"
image_post_comment = "Öne çıkan görsel içeren bir blog gönderisi oluşturuluyor"
import = "İçe aktar"
import_feed = "Besleme içe aktarmayı başlat"
import_rss = "RSS'yi içe aktar"
import_rss_feed_2.0 = "RSS Feed 2.0 içe aktar"
insert_image = "Görsel ekle"
invalid_error = "HATA: Geçersiz kullanıcı adı veya şifre"
language = "Sistem Dili"
link_name = "Bağlantı adı"
link_post = "Bağlantı gönderisi"
link_post_comment = "Link içerikli bir blog gönderisi oluşturuluyor."
login = "Giriş yap"
login_page = "Giriş sayfası"
logout = ıkış yap"
menu = "Menü"
menus = "Menü Editörü"
meta_description = "Meta Açıklaması"
meta_description_character = "Meta açıklama karakteri"
metatags = "Meta etiketler"
metatags_settings = "Meta etiket ayarları"
mine = "Benim"
more = "Daha fazla"
my_draft = "Taslaklarım"
my_posts = "Gönderilerim"
name = "Ad"
newer = "Daha Yeni"
next = "Sonraki"
next_post = "Sonraki gönderi"
no_available_backup = "Bu anda kullanılabilir yedek yok."
no_draft_found = "Taslak bulunamadı"
no_posts_found = "Gönderi bulunamadı"
no_related_post_found = "Benzer gönderi bulunamadı"
no_scheduled_posts_found = "Planlanmış gönderi bulunamadı!"
no_search_results = "Arama sonuçları yok"
nope = "Hayır"
not = "Değil"
older = "Daha Eski"
only = "Sadece"
operations = "Operasyonlar"
page = "Sayfa"
page_generation_time = "Sayfa oluşturma süresi"
pages = "Sayfalar"
pass_error = "Şifre alanı zorunludur"
password = "Şifre"
performance = "Performans"
performance_settings = "Performans Ayarları"
permalink = "Kalıcı Bağlantı"
popular = "Popüler"
popular_posts = "Popüler gönderiler"
popular_posts_widget = "Popüler gönderiler widget'ı"
popular_posts_widget_at_most = "Popüler gönderiler widget'ı en fazla"
popular_tags = "Popüler etiketler"
post_by_author = "Bu yazarın gönderileri"
posted_in = "Gönderildi"
posted_on = "Gönderildi"
posts = "Gönderiler"
posts_by = "Yazarı"
posts_draft = "Taslak gönderiler"
posts_in_archive_page_at_most = "Arşiv sayfasındaki en fazla gönderi"
posts_in_category_page_at_most = "Kategori sayfasındaki en fazla gönderi"
posts_in_front_page_show_at_most = "Anasayfada en fazla gösterilecek gönderi"
posts_in_profile_page_at_most = "Profil sayfasındaki en fazla gönderi"
posts_in_search_result_at_most = "Arama sonuçlarındaki en fazla gönderi"
posts_in_tag_page_at_most = "Etiket sayfasındaki en fazla gönderi"
posts_in_type_page_at_most = "Tür sayfasındaki en fazla gönderi"
posts_index_settings = "Gönderi dizini ayarları"
posts_list = "Gönderi listesi"
posts_tagged = "Etiketlenmiş gönderiler"
posts_with_type = "Türü olan gönderiler"
pre_release = "Ön sürüm"
prev = "Önceki"
prev_post = "Önceki gönderi"
preview = "Önizleme"
profile_for = "Profil"
proudly_powered_by = "Gururla desteklenir"
publish = "Yayınla"
publish_draft = "Taslağı yayınla"
published = "Yayınlandı"
quote_post = "Alıntı gönderi"
quote_post_comment = "Alıntı içeren blog gönderisi oluşturuluyor"
rss_character = "RSS karakteri"
rss_feeds_show_the_most_recent = "RSS beslemeleri en yeni gönderileri gösterir"
rss_settings = "RSS ayarları"
read_more_text = "Devamını oku metni"
read_more_text_placeholder = "Devamını oku"
reading = "Okuma"
reading_settings = "Okuma Ayarları"
recaptcha = "reCAPTCHA"
recent_posts = "Son gönderiler"
recent_posts_widget_at_most = "Son gönderiler widget'ı en fazla"
regular_post = "Düzenli gönderi"
regular_post_comment = "Düzenli gönderi oluşturuluyor"
related_posts = "İlgili gönderiler"
related_widget_posts_at_most = "İlgili gönderiler widget'ı en fazla"
revert_to_draft = "Taslağa dönüştür"
save = "Kaydet"
save_config = "Yapılandırmayı kaydet"
save_edit = "Düzenlemeyi kaydet"
save_menu = "Menüyü kaydet"
save_as_draft = "Taslak olarak kaydet"
save_category = "Kategoriyi kaydet"
scheduled = "Planlandı"
scheduled_posts = "Planlanan gönderiler"
scheduled_tips = "Gelecek tarih veya saatte bir gönderi yayınlandığında, planlanan gönderiler kısmına gider"
search = "Ara"
search_for = "Arama:"
search_results_for = "Arama sonuçları:"
search_results_not_found = "Arama sonuçları bulunamadı!"
secret_key = "Gizli Anahtar"
settings = "Ayarlar"
sign_in_to_start_your_session = "Oturumunuzu başlatmak için giriş yapın"
site_key = "Site Anahtarı"
sitemap = "Site haritası"
slug = "URL"
social_media = "Sosyal Medya"
static_page = "Statik sayfa"
static_page_comment = "Statik sayfa oluşturuluyor"
static_pages = "Statik sayfalar"
summary = "Özet"
summary_character = "Özet karakteri"
tag = "Etiket"
tagcloud_widget_at_most = "Etiket Bulutu en fazla"
tagline = "Slogan"
tagline_placeholder = "Veritabanı olmayan PHP Blog Platformu"
tagline_description = "Bu blogun ne hakkında olduğunu birkaç kelime ile açıklayın."
tags = "Etiketler"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Bu eski bir koddur. Genellikle yeni oluşturulan analizler gtag.js kullanır."
this_page_doesnt_exist = "Bu sayfa mevcut değil!"
time = "Zaman"
timezone = "Zaman dilimi"
title = "Başlık"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Disqus veya Facebook yorumlarını kullanmak için Disqus kısa adı veya Facebook Uygulama ID'si sağlamanız gerekir."
token_error = "CSRF Tokeni doğru değil"
tools = "Araçlar"
twitter_account = "Twitter hesabı"
type_to_search = "Aramak için yazın"
uncategorized = "Kategorilenmemiş"
uncategorized_comment = "Bir kategoriye ihtiyaç duymayan veya mevcut herhangi bir kategoriye uymayan konular"
universal_analytics = "Evrensel Analiz (gtag.js)"
unknown_feed_format = "Bilinmeyen besleme formatı"
update = "Güncelle"
update_available = "Güncelleme mevcut"
update_draft = "Taslağı güncelle"
update_post = "Gönderiyi güncelle"
update_to = "Güncelle"
upload = "Yükle"
user = "Kullanıcı"
user_error = "Kullanıcı alanı zorunludur"
valid_values_range_from_0_to_1.0._see = "Geçerli değerler 0.0 ile 1.0 arasında olmalıdır. Bakınız"
video_post = "Video gönderisi"
video_post_comment = "Video içeren blog gönderisi oluşturuluyor"
view = "Görüntüleme"
view_post = "Gönderiyi görüntüle"
views = "Görüntülemeler"
widget = "Widget"
widget_settings = "Widget Ayarları"
would_you_like_to_try_our = "Bizimle denemek ister misiniz"
yes_im_in = "Evet, varım"
yes_not_recommended = "Evet (önerilmez)"
you_dont_have_permission_to_access_this_page = "Bu sayfaya erişim izniniz yok"
your_new_config_key = "Yeni Yapılandırma Anahtarınız"
your_new_value = "Yeni Değeriniz"
your_backups = "Yedekleriniz"
your_latest_blog_posts = "Son blog gönderileriniz"
your_recent_posts = "Son gönderileriniz"
by = "tarafından"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>İpucu:</u> Yapılandırma anahtarınızı veya değerini aramak için <code>Ctrl</code>/<code>CMD</code> + <code>F</code> kullanın."
homepage = "ana sayfa"
instead = "yerine"
item_class = "CSS sınıfı ekle"
item_slug = "Bağlantı URL'sini ekle"
now = "şimdi"
of = "nin"
optional = "isteğe bağlı"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>Pro ipucu:</u> Özel yapılandırma anahtarı oluşturabilir ve şablonunuzun herhangi bir yerinde bu anahtarın değerini yazdırabilirsiniz."
read_more = "daha fazla oku"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "sizin.anahtarınız"
summary_behavior = "Özet davranışı"
default = "Varsayılan"
check_shortcode = "Kısa kodu kontrol et"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "Özet modunda, içeriği x karaktere kadar kırpmadan önce kısa kodu kontrol edip etmeyeceğini belirleyin."
manage_users = "Kullanıcıları yönet"
add_user = "Kullanıcı ekle"
username = "Kullanıcı adı"
role = "Rol"
change_password = "Şifre değiştir"
config_mfa = "MFA'yı yapılandır"
mfacode = "MFA Kodu"
verify_code = "MFA kodunu doğrula"
verify_password = "Mevcut şifreyi doğrula"
manualsetupkey = "Kurulum anahtarını manuel olarak da ekleyebilirsiniz"
mfa_error = "MFA kodu doğru değil"
disablemfa = "MFA'yı devre dışı bırak"
enable_auto_save = "Otomatik Kaydet'i Etkinleştir"
explain_autosave = "Etkinleştirildiğinde, yeni içerik veya taslak her 60 saniyede bir otomatik olarak kaydedilir."
login_protect_system = "Giriş koruma sistemi"
cloudflare_info = "Cloudflare'nin Turnstile belgelerini inceleyin:"
mfa_config = "Çok Faktörlü Kimlik Doğrulama (MFA)"
set_mfa_globally = "MFA durumunu genel olarak ayarla"
explain_mfa = "Etkinleştirildiğinde, MFA tüm kullanıcılar için isteğe bağlıdır. Devre dışı bırakıldığında, hiçbir kullanıcı kullanamaz ve giriş sayfasındaki alan gizlenir."
set_version_publicly = "Sürüm Görünürlüğü"
explain_version = "Varsayılan olarak, HTMLy'nin sürümü kaynak kodunda açıkça görülür. Bazı yöneticiler bu bilgiyi gizlemeyi tercih edebilir."
focus_mode = "Odak Modu Değiştir"
writing = "Yazma"
writing_settings = "Yazma Ayarları"
security = "Güvenlik"
security_settings = "Güvenlik Ayarları"
msg_error_field_req_username = "Kullanıcı adı alanı zorunludur."
msg_error_field_req_password = "Şifre alanı zorunludur."
msg_error_field_req_title = "Başlık alanı zorunludur."
msg_error_field_req_content = "İçerik alanı zorunludur."
msg_error_field_req_tag = "Etiket alanı zorunludur."
msg_error_field_req_image = "Görsel alanı zorunludur."
msg_error_field_req_video = "Video alanı zorunludur."
msg_error_field_req_link = "Bağlantı alanı zorunludur."
msg_error_field_req_quote = "Alıntı alanı zorunludur."
msg_error_field_req_audio = "Ses alanı zorunludur."
msg_error_field_req_feedurl = "Besleme URL'sini belirtmeniz gerekiyor."
rss_feeds_description_select = "RSS Açıklaması"
rss_description_body = "Gönderi Metni"
rss_description_meta = "Gönderi Meta Açıklaması"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/uk_UA.ini Executable file
View File

@ -0,0 +1,332 @@
about = "Про нас"
add_category = "Додати категорію"
add_content = "Додати контент"
add_link = "Додати посилання"
add_menu = "Додати меню"
add_new_page = "Додати нову сторінку"
add_new_post = "Додати новий запис"
add_source_link_optional = "Додати джерело (необов'язково)"
add_sub = "Додати підсторінку"
address_url = "Адреса (URL)"
admin = "Адмін"
admin_panel_style_based_on = "Стиль адмін-панелі на основі"
all_blog_posts = "Всі записи блогу"
all_cache_has_been_deleted = "Весь кеш було видалено!"
all_posts_tagged = "Всі записи з тегом"
archive_for = "Архів для"
archive_page_for = "Сторінка архіву для"
archives = "Архіви"
are_you_sure_you_want_to_delete_ = "Ви впевнені, що хочете видалити <strong>%s</strong>?"
at_the_moment_you_are_using_auto_generated_menu = "Зараз ви використовуєте автоматично згенероване меню."
audio_post = "Аудіо запис"
audio_post_comment = "Створення блогу з аудіо"
author = "Автор"
author_description = "Ще один користувач HTMLy"
back_to = "Назад до"
backup = "Резервне копіювання"
blog_description = "В одному абзаці розкажіть більше про ваш блог."
blog_theme = "Тема блогу"
blog_title = "Назва блогу"
blog_title_placeholder = "Мій HTMLy блог"
blog_posts_displayed_as = "Відображення записів блогу як"
breadcrumb_home_text = "Текст головної крихти"
by_using_this_importer_you_are_agree_if_the_feed_is_yours_or_at_least_you_have_the_authority_to_publish_it = "Використовуючи цей імпортер, ви погоджуєтесь, що фід ваш або ви маєте право його публікувати."
css_class_optional = "CSS клас (необов'язково)"
cache_expiration = "Час життя кешу (в годинах)"
cache_off = "Кеш вимкнено"
cache_timestamp = "Часова мітка кешу"
cancel = "Скасувати"
cannot_read_feed_content = "Неможливо прочитати вміст фіду"
captcha_error = "Помилка reCAPTCHA"
categories = "Категорії"
category = "Категорія"
check_update = "Перевірити оновлення"
clear_cache = "Очистити кеш"
comma_separated_values = "Значення через кому"
comment_system = "Система коментування"
comments = "Коментарі"
config = "Конфігурація"
congrats_you_have_the_latest_version_of_htmly = "Вітаємо! У вас остання версія HTMLy."
content = "Контент"
contents = "Контенти"
copyright_line = "Рядок копірайту"
copyright_line_placeholder = "(c) Ваше ім'я."
create_backup = "Створити резервну копію"
created = "Створено"
custom = "Користувацький"
custom_settings = "Користувацькі налаштування"
dashboard = "Панель управління"
date = "Дата"
date_format = "Формат дати"
delete = "Видалити"
description = "Опис"
disable = "Вимкнути"
disabled = "Вимкнено"
disqus_shortname = "Коротка назва Disqus"
disqus_shortname_placeholder = "htmly"
draft = "Чернетка"
edit = "Редагувати"
edit_category = "Редагувати категорію"
edit_post = "Редагувати"
edit_profile = "Редагувати профіль"
enable = "Увімкнути"
enable_blog_url = "Увімкнути /blog URL"
enter_image_url = "Введіть URL зображення"
facebook_app_id = "ID додатка Facebook"
facebook_page = "Сторінка Facebook"
featured_audio = "Рекомендоване аудіо"
featured_image = "Рекомендоване зображення"
featured_link = "Рекомендоване посилання"
featured_quote = "Рекомендована цитата"
featured_video = "Рекомендоване відео"
feed_url = "URL фіду"
filename = "Назва файлу"
follow = "Слідкувати"
for_google_site_verification_meta = "Для google-site-verification мета"
front_page_displays = "Головна сторінка відображає"
full_post = "Повний запис"
general = "Загальні"
general_settings = "Загальні налаштування"
get_one_here = "Отримайте один тут"
github_pre_release = "Попередня версія Github"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (спадщина)"
google_search_console = "Google Search Console"
home = "Головна"
if_leave_empty_we_will_excerpt_it_from_the_content_below = "Якщо залишити порожнім, ми витягнемо це з контенту нижче"
if_the_url_leave_empty_we_will_use_the_page_title = "Якщо URL залишити порожнім, ми використаємо заголовок сторінки"
if_the_url_leave_empty_we_will_use_the_post_title = "Якщо URL залишити порожнім, ми використаємо заголовок запису"
image_post = "Зображення запису"
image_post_comment = "Створення блогу з зображенням"
import = "Імпорт"
import_feed = "Почати імпорт фіду"
import_rss = "Імпорт RSS"
import_rss_feed_2.0 = "Імпорт RSS фіду 2.0"
insert_image = "Вставити зображення"
invalid_error = "ПОМИЛКА: Невірне ім'я користувача або пароль"
language = "Мова системи"
link_name = "Назва посилання"
link_post = "Посилання на запис"
link_post_comment = "Створення блогу з посиланням"
login = "Увійти"
login_page = "Сторінка входу"
logout = "Вийти"
menu = "Меню"
menus = "Редактор меню"
meta_description = "Мета опис"
meta_description_character = "Символи мета опису"
metatags = "Мета-теги"
metatags_settings = "Налаштування мета-тегів"
mine = "Мої"
more = "Більше"
my_draft = "Моя чернетка"
my_posts = "Мої записи"
name = "Ім'я"
newer = "Новіші"
next = "Наступні"
next_post = "Наступний запис"
no_available_backup = "Немає доступної резервної копії на цей час."
no_draft_found = "Чернеток не знайдено"
no_posts_found = "Записів не знайдено"
no_related_post_found = "Пов'язаних записів не знайдено"
no_scheduled_posts_found = "Запланованих записів не знайдено!"
no_search_results = "Результатів пошуку не знайдено"
nope = "Ні"
not = "Ні"
older = "Старіші"
only = "Тільки"
operations = "Операції"
page = "Сторінка"
page_generation_time = "Час генерації сторінки"
pages = "Сторінки"
pass_error = "Поле пароля є обов'язковим"
password = "Пароль"
performance = "Продуктивність"
performance_settings = "Налаштування продуктивності"
permalink = "Постійне посилання"
popular = "Популярні"
popular_posts = "Популярні записи"
popular_posts_widget = "Віджет популярних записів"
popular_posts_widget_at_most = "Віджет популярних записів, не більше ніж"
popular_tags = "Популярні теги"
post_by_author = "Записи цього автора"
posted_in = "Опубліковано в"
posted_on = "Опубліковано"
posts = "Записи"
posts_by = "Запис від"
posts_draft = "Чернетки записів"
posts_in_archive_page_at_most = "Записів на сторінці архіву, не більше ніж"
posts_in_category_page_at_most = "Записів на сторінці категорії, не більше ніж"
posts_in_front_page_show_at_most = "Записів на головній сторінці, не більше ніж"
posts_in_profile_page_at_most = "Записів на сторінці профілю, не більше ніж"
posts_in_search_result_at_most = "Записів у результатах пошуку, не більше ніж"
posts_in_tag_page_at_most = "Записів на сторінці тегу, не більше ніж"
posts_in_type_page_at_most = "Записів на сторінці типу, не більше ніж"
posts_index_settings = "Налаштування індексації записів"
posts_list = "Список записів"
posts_tagged = "Записи з тегом"
posts_with_type = "Записи з типом"
pre_release = "Попередній випуск"
prev = "Попередні"
prev_post = "Попередній запис"
preview = "Попередній перегляд"
profile_for = "Профіль для"
proudly_powered_by = "Працює на"
publish = "Опублікувати"
publish_draft = "Опублікувати чернетку"
published = "Опубліковано"
quote_post = "Цитата запису"
quote_post_comment = "Створення блогу з цитатою"
rss_character = "Символи RSS"
rss_feeds_show_the_most_recent = "RSS фіди показують найновіше"
rss_settings = "Налаштування RSS"
read_more_text = "Текст 'Читати більше'"
read_more_text_placeholder = "Читати більше"
reading = "Читання"
reading_settings = "Налаштування читання"
recaptcha = "reCAPTCHA"
recent_posts = "Останні записи"
recent_posts_widget_at_most = "Віджет останніх записів, не більше ніж"
regular_post = "Звичайний запис"
regular_post_comment = "Створення звичайного запису блогу"
related_posts = "Пов'язані записи"
related_widget_posts_at_most = "Віджет пов'язаних записів, не більше ніж"
revert_to_draft = "Повернути до чернетки"
save = "Зберегти"
save_config = "Зберегти конфігурацію"
save_edit = "Зберегти редагування"
save_menu = "Зберегти меню"
save_as_draft = "Зберегти як чернетку"
save_category = "Зберегти категорію"
scheduled = "Заплановано"
scheduled_posts = "Заплановані записи"
scheduled_tips = "Публікація запису з майбутньою датою або часом, він буде відправлений до запланованих записів"
search = "Пошук"
search_for = "Шукати"
search_results_for = "Результати пошуку для"
search_results_not_found = "Результатів пошуку не знайдено!"
secret_key = "Секретний ключ"
settings = "Налаштування"
sign_in_to_start_your_session = "Увійдіть, щоб розпочати сеанс"
site_key = "Ключ сайту"
sitemap = "Карта сайту"
slug = "Slug"
social_media = "Соціальні мережі"
static_page = "Статична сторінка"
static_page_comment = "Створення статичної сторінки"
static_pages = "Статичні сторінки"
summary = "Резюме"
summary_character = "Символи резюме"
tag = "Тег"
tagcloud_widget_at_most = "Хмара тегів, не більше ніж"
tagline = "Слоган"
tagline_placeholder = "Без бази даних PHP платформа для блогів"
tagline_description = "У кількох словах поясніть, про що цей блог."
tags = "Теги"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "Це спадковий код. Зазвичай нові аналітики створюються за допомогою gtag.js"
this_page_doesnt_exist = "Ця сторінка не існує!"
time = "Час"
timezone = "Часовий пояс"
title = "Заголовок"
to_using_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "Для використання коментарів Disqus або Facebook ви повинні надати коротке ім'я Disqus або ID додатка Facebook."
token_error = "Невірний CSRF токен"
tools = "Інструменти"
twitter_account = "Акаунт у Twitter"
type_to_search = "Введіть для пошуку"
uncategorized = "Без категорії"
uncategorized_comment = "Тематики, які не потребують категорії або не підходять до жодної з існуючих категорій"
universal_analytics = "Універсальна аналітика (gtag.js)"
unknown_feed_format = "Невідомий формат фіду"
update = "Оновити"
update_available = "Доступне оновлення"
update_draft = "Оновити чернетку"
update_post = "Оновити запис"
update_to = "Оновити до"
upload = "Завантажити"
user = "Користувач"
user_error = "Поле користувача є обов'язковим"
valid_values_range_from_0_to_1.0._see = "Дійсні значення в діапазоні від 0.0 до 1.0. Див."
video_post = "Відео запис"
video_post_comment = "Створення блогу з відео"
view = "Перегляд"
view_post = "Перегляд"
views = "Перегляди"
widget = "Віджет"
widget_settings = "Налаштування віджетів"
would_you_like_to_try_our = "Бажаєте спробувати наш "
yes_im_in = "Так, я згоден"
yes_not_recommended = "Так (не рекомендується)"
you_dont_have_permission_to_access_this_page = "У вас немає дозволу на доступ до цієї сторінки"
your_new_config_key = "Ваш новий конфігураційний ключ"
your_new_value = "Ваше нове значення"
your_backups = "Ваші резервні копії"
your_latest_blog_posts = "Ваші останні записи блогу"
your_recent_posts = "Ваші останні записи"
by = "від"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>підказка:</u> Використовуйте <code>Ctrl</code>/<code>CMD</code> + <code>F</code> для пошуку вашого конфігураційного ключа або значення."
homepage = "Головна сторінка"
instead = "замість"
item_class = "Вставити CSS клас"
item_slug = "Вставити URL посилання"
now = "зараз"
of = "з"
optional = "необов'язково"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_creating_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>професійна підказка:</u> Ви можете створити власні конфігураційні ключі та виводити їх значення будь-де у вашому шаблоні."
read_more = "читати далі"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "ваш ключ"
summary_behavior = "Поведінка резюме"
default = "За замовчуванням"
check_shortcode = "Перевірити шорткод"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "У режимі резюме, чи перевіряти спочатку шорткод перед обрізанням контенту до x символів"
manage_users = "Керування користувачами"
add_user = "Додати користувача"
username = "Ім'я користувача"
role = "Роль"
change_password = "Змінити пароль"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/zh_CN.ini Executable file
View File

@ -0,0 +1,332 @@
about = "关于"
add_category = "添加分类"
add_content = "添加内容"
add_link = "添加链接"
add_menu = "添加菜单"
add_new_page = "添加新页面"
add_new_post = "添加新文章"
add_source_link_optional = "添加源链接(可选)"
add_sub = "添加子页面"
address_url = "地址URL"
admin = "管理员"
admin_panel_style_based_on = "管理面板风格基于"
all_blog_posts = "所有博客文章"
all_cache_has_been_deleted = "所有缓存已删除!"
all_posts_tagged = "所有带指定标签的文章:"
archive_for = "归档:"
archive_page_for = "归档:"
archives = "存档"
are_you_sure_you_want_to_delete_ = "你确定要删除<strong>%s</strong>"
at_the_moment_you_are_using_auto_generated_menu = "你正在使用自动创建的菜单"
audio_post = "音频文章"
audio_post_comment = "创建有特色音频的文章"
author = "作者"
author_description = "Just another HTMLy user"
back_to = "回到"
backup = "备份"
blog_description = "用一篇文章告诉我们更多关于你博客的信息"
blog_theme = "博客主题"
blog_title = "博客标题"
blog_title_placeholder = "My HTMLy Blog"
blog_posts_displayed_as = "文章显示为"
breadcrumb_home_text = "“主页”链接文本"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "使用这个导入器即代表你同意要导入的Feed是你的或者至少你有权力发布它"
css_class_optional = "CSS类可选"
cache_expiration = "缓存过期时间(小时)"
cache_off = "关闭缓存"
cache_timestamp = "缓存时间戳"
cancel = "取消"
cannot_read_feed_content = "Cannot read feed content"
captcha_error = "reCaptcha不正确"
categories = "分类"
category = "分类"
check_update = "检查更新"
clear_cache = "清除缓存"
comma_separated_values = "用逗号分隔值"
comment_system = "评论系统"
comments = "评论"
config = "配置"
congrats_you_have_the_latest_version_of_htmly = "恭喜你正在使用最新版HTMLy"
content = "内容"
contents = "内容"
copyright_line = "版权信息"
copyright_line_placeholder = "(c) Your name."
create_backup = "创建备份"
created = "已创建"
custom = "自定义"
custom_settings = "自定义设置"
dashboard = "仪表板"
date = "日期"
date_format = "日期格式"
delete = "删除"
description = "描述"
disable = "禁用"
disabled = "已禁用"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "草稿"
edit = "编辑"
edit_category = "编辑分类"
edit_post = "编辑"
edit_profile = "编辑个人信息"
enable = "启用"
enable_blog_url = "启用 blog URL"
enter_image_url = "输入图片URL"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook页面"
featured_audio = "特色音频"
featured_image = "特色图片"
featured_link = "特色链接"
featured_quote = "特色引用"
featured_video = "特色视频"
feed_url = "Feed URL"
filename = "文件名"
follow = "跟随"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "主页显示"
full_post = "全文"
general = "通用"
general_settings = "通用设置"
get_one_here = "获取自"
github_pre_release = "Github预发布版本"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (传统)"
google_search_console = "Google Search Console"
home = "主页"
if_left_empty_we_will_excerpt_it_from_the_content_below = "如果留空,从下面的文章内容中摘录"
if_the_url_is_left_empty_we_will_use_the_page_title = "如果留空使用页面标题作为URL"
if_the_url_is_left_empty_we_will_use_the_post_title = "如果留空使用文章标题作为URL"
image_post = "图片文章"
image_post_comment = "创建有特色图片的文章"
import = "导入"
import_feed = "开始导入Feed"
import_rss = "导入RSS"
import_rss_feed_2.0 = "导入RSS Feed 2.0"
insert_image = "插入图片"
invalid_error = "用户名或密码错误"
language = "系统语言"
link_name = "链接名称"
link_post = "链接文章"
link_post_comment = "创建有特色链接的文章"
login = "登录"
login_page = "登录页面"
logout = "登出"
menu = "菜单"
menus = "菜单编辑器"
meta_description = "元数据描述"
meta_description_character = "元描述字数"
metatags = "Metatags"
metatags_settings = "Metatag设置"
mine = "我的"
more = "更多"
my_draft = "我的草稿"
my_posts = "我的文章"
name = "名称"
newer = "较新"
next = "下一个"
next_post = "下一个文章"
no_available_backup = "现在没有可用备份"
no_draft_found = "没有找到草稿"
no_posts_found = "没有找到文章"
no_related_post_found = "没有找到相关文章"
no_scheduled_posts_found = "没有计划发布的文章!"
no_search_results = "没有搜索结果"
nope = "否"
not = "否"
older = "较旧"
only = "只有"
operations = "操作"
page = "页面"
page_generation_time = "页面创建时间"
pages = "页面"
pass_error = "密码输入框没有内容"
password = "密码"
performance = "性能"
performance_settings = "性能设置"
permalink = "外链位置"
popular = "热门"
popular_posts = "热门文章"
popular_posts_widget = "热门文章组件"
popular_posts_widget_at_most = "“热门”组件最多文章数"
popular_tags = "热门标签"
post_by_author = "这个作者的文章"
posted_in = "发布于"
posted_on = "发布于"
posts = "文章"
posts_by = "文章来自"
posts_draft = "文章草稿"
posts_in_archive_page_at_most = "归档页最多文章数"
posts_in_category_page_at_most = "分类页最多文章数"
posts_in_front_page_show_at_most = "主页最多文章数"
posts_in_profile_page_at_most = "个人资料页最多文章数"
posts_in_search_result_at_most = "搜索结果页最多文章数"
posts_in_tag_page_at_most = "标签页最多文章数"
posts_in_type_page_at_most = "类型页最多文章数"
posts_index_settings = "文章索引设置"
posts_list = "文章列表"
posts_tagged = "带指定标签的文章:"
posts_with_type = "指定类型的文章:"
pre_release = "接收预发布版本"
prev = "旧"
prev_post = "上一个文章"
preview = "预览"
profile_for = "个人资料:"
proudly_powered_by = "Proudly powered by"
publish = "发布"
publish_draft = "发布草稿"
published = "发布"
quote_post = "引用文章"
quote_post_comment = "创建有特色引用的文章"
rss_character = "RSS字数"
rss_feeds_show_the_most_recent = "RSS feed显示最近文章数"
rss_settings = "RSS设置"
read_more_text = "“查看全文”文本"
read_more_text_placeholder = "阅读全文"
reading = "阅读"
reading_settings = "阅读设置"
recaptcha = "reCAPTCHA"
recent_posts = "最近文章"
recent_posts_widget_at_most = "“最近”组件最多文章数"
regular_post = "普通文章"
regular_post_comment = "创建普通文章"
related_posts = "相关文章"
related_widget_posts_at_most = "“相关”组件最多文章数"
revert_to_draft = "转换成草稿"
save = "保存"
save_config = "保存配置"
save_edit = "保存编辑"
save_menu = "保存菜单"
save_as_draft = "作为草稿保存"
save_category = "保存分类"
scheduled = "计划发布"
scheduled_posts = "计划发布的文章"
scheduled_tips = "设定一个未来的时间和日期以启动计划发布"
search = "搜索"
search_for = "搜索"
search_results_for = "搜索结果:"
search_results_not_found = "没有找到搜索结果"
secret_key = "Secret Key"
settings = "设置"
sign_in_to_start_your_session = "登录以开始你的会话"
site_key = "Site Key"
sitemap = "站点地图"
slug = "外链"
social_media = "社交媒体"
static_page = "静态页面"
static_page_comment = "创建静态页面"
static_pages = "静态页面"
summary = "摘要"
summary_character = "摘要字数"
tag = "标签"
tagcloud_widget_at_most = "TagCloud最多标签数"
tagline = "标语"
tagline_placeholder = "Databaseless PHP Blogging Platform"
tagline_description = "用几个字简述这个博客是关于什么的"
tags = "标签"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "通常情况下新创建的统计使用gtag.js"
this_page_doesnt_exist = "这个页面不存在!"
time = "时间"
timezone = "时区"
title = "标题"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "要使用Disqus或Facebook评论你需要提供你的Disqus shortname或你的Facebook App ID"
token_error = "CSRF Token不正确"
tools = "工具"
twitter_account = "Twitter账号"
type_to_search = "输入搜索内容"
uncategorized = "未分类"
uncategorized_comment = "不需要分类的或者不适合任何分类的文章"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "Unknown feed format"
update = "更新"
update_available = "更新可用"
update_draft = "更新草稿"
update_post = "更新文章"
update_to = "更新到"
upload = "上传"
user = "用户"
user_error = "用户输入框没有内容"
valid_values_range_from_0_to_1.0._see = "有效范围从0.0到1.0。参考"
video_post = "视频文章"
video_post_comment = "创建有特色视频的文章"
view = "查看"
view_post = "查看"
views = "查看"
widget = "组件"
widget_settings = "组件设置"
would_you_like_to_try_our = "你想不想试试我们的"
yes_im_in = "是"
yes_not_recommended = "是(不推荐)"
you_dont_have_permission_to_access_this_page = "你没有访问此页面的权限"
your_new_config_key = "新配置项"
your_new_value = "值"
your_backups = "你的备份"
your_latest_blog_posts = "最新的文章"
your_recent_posts = "你的最近文章"
by = "来自"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>提示:</u>用<code>Ctrl</code>/<code>CMD</code> + <code>F</code>搜索配置项或者值"
homepage = "主页"
instead = "instead"
item_class = "CSS类"
item_slug = "链接URL"
now = "现在"
of = "于"
optional = "选填"
post_your_post_slug = "/post/文章外链"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>专业提示:</u>你可以在模板的任何地方创建自定义的配置项并打印出对应的值"
read_more = "阅读全文"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/年/月/文章外链"
your_key = "your.key"
summary_behavior = "Summary behavior"
default = "Default"
check_shortcode = "Check shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "In summary mode, whether check the shortcode first or not before trim the content to x char"
manage_users = "Manage users"
add_user = "Add user"
username = "Username"
role = "Role"
change_password = "Change password"
config_mfa = "Configure MFA"
mfacode = "MFA Code"
verify_code = "Verify the MFA code"
verify_password = "Verify current password"
manualsetupkey = "You can also manually add the setup key"
mfa_error = "MFA code is not correct"
disablemfa = "Disable MFA"
enable_auto_save = "Enable Auto Save"
explain_autosave = "When enabled, new content or draft will be automatically saved every 60 seconds."
login_protect_system = "Login protection system"
cloudflare_info = "Review Cloudflare's Turnstile documentation: "
mfa_config = "Multi Factor Authentication (MFA)"
set_mfa_globally = "Set the status of MFA"
explain_mfa = "When enabled, MFA is optional for all users. When disabled, no users can use it and it hides the field on the login page."
set_version_publicly = "Version Visibility"
explain_version = "By default the version of HTMLy is visible publicly in the source code, some admins may prefer to hide this."
focus_mode = "Toggle Focus"
writing = "Writing"
writing_settings = "Writing Settings"
security = "Security"
security_settings = "Security Settings"
msg_error_field_req_username = "Username field is required."
msg_error_field_req_password = "Password field is required."
msg_error_field_req_title = "Title field is required."
msg_error_field_req_content = "Content field is required."
msg_error_field_req_tag = "Tag field is required."
msg_error_field_req_image = "Image field is required."
msg_error_field_req_video = "Video field is required."
msg_error_field_req_link = "Link field is required."
msg_error_field_req_quote = "Quote field is required."
msg_error_field_req_audio = "Audio field is required."
msg_error_field_req_feedurl = "You need to specify the feed url."
rss_feeds_description_select = "RSS Description"
rss_description_body = "Post Body"
rss_description_meta = "Post Meta Description"
admin_theme = "Admin theme"
admin_theme_light = "Light"
admin_theme_dark = "Dark"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

332
lang/zh_TW.ini Executable file
View File

@ -0,0 +1,332 @@
about = "關於"
add_category = "新增分類"
add_content = "新增內容"
add_link = "新增連結"
add_menu = "新增選單"
add_new_page = "新增一頁新網頁"
add_new_post = "新增一篇新文章"
add_source_link_optional = "加入來源連結 (非必填)"
add_sub = "新增子項"
address_url = "位址 (URL)"
admin = "管理"
admin_panel_style_based_on = "管理面板風格基於"
all_blog_posts = "所有部落格文章"
all_cache_has_been_deleted = "所有暫存頁面資料已經清除 !"
all_posts_tagged = "所有已標記的文章"
archive_for = "文章庫的"
archive_page_for = "文章庫頁面"
archives = "文章庫"
are_you_sure_you_want_to_delete_ = "你確定你想要刪除 <strong>%s</strong> 嗎?"
at_the_moment_you_are_using_auto_generated_menu = "目前您正在使用自動產生的選單."
audio_post = "音樂文章"
audio_post_comment = "建立以音樂為主的文章"
author = "作者"
author_description = "其他文章作者"
back_to = "返回"
backup = "備份資料"
blog_description = "請用短短幾句話,簡單介紹更多關於您部落格的主題內容"
blog_theme = "部落格樣式"
blog_title = "部落格標題"
blog_title_placeholder = "我的部落格"
blog_posts_displayed_as = "文章用何種方式顯示"
breadcrumb_home_text = "導覽列的首頁顯示文字"
by_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it = "By using this importer you are agree if the feed is yours or at least you have the authority to publish it."
css_class_optional = "CSS Class (非必填)"
cache_expiration = "快取暫存失效時間 (小時)"
cache_off = "關閉快取暫存"
cache_timestamp = "快取暫存時間戳"
cancel = "取消"
cannot_read_feed_content = "無法讀取提供的內容"
captcha_error = "reCaptcha 不正確"
categories = "文章分類"
category = "文章分類"
check_update = "檢查更新"
clear_cache = "清除快取"
comma_separated_values = "以逗號來分隔不同標籤值"
comment_system = "留言系統"
comments = "留言"
config = "系統設定"
congrats_you_have_the_latest_version_of_htmly = "恭喜! 您擁有最新版本的 HTMLy."
content = "內容"
contents = "內容"
copyright_line = "著作權宣導"
copyright_line_placeholder = "©你的名字."
create_backup = "建立備份"
created = "已建立"
custom = "自訂"
custom_settings = "自訂設定"
dashboard = "儀表板"
date = "日期"
date_format = "日期格式"
delete = "刪除"
description = "簡介"
disable = "停用"
disabled = "已停用"
disqus_shortname = "Disqus shortname"
disqus_shortname_placeholder = "htmly"
draft = "草稿"
edit = "編輯"
edit_category = "修改分類"
edit_post = "修改"
edit_profile = "編輯個人資料"
enable = "啟用"
enable_blog_url = "啟用 blog 的前置網址"
enter_image_url = "輸入圖片URL位址"
facebook_app_id = "Facebook App ID"
facebook_page = "Facebook page"
featured_audio = "Featured Audio"
featured_image = "Featured Image"
featured_link = "Featured Link"
featured_quote = "Featured Quote"
featured_video = "Featured Video"
feed_url = "Feed URL"
filename = "檔名"
follow = "追蹤"
for_google_site_verification_meta = "For google-site-verification meta"
front_page_displays = "前端頁面的顯示"
full_post = "全文"
general = "基本"
general_settings = "基本設定"
get_one_here = "Get one here"
github_pre_release = "Github pre-release"
google_analytics = "Google Analytics"
google_analytics_legacy = "Google Analytics (legacy)"
google_search_console = "Google Search Console"
home = "首頁"
if_left_empty_we_will_excerpt_it_from_the_content_below = "如果留空我們將從下面的內容中摘錄簡介"
if_the_url_is_left_empty_we_will_use_the_page_title = "如果 url 留空,我們將使用頁面標題"
if_the_url_is_left_empty_we_will_use_the_post_title = "如果 url 留空,我們將使用文章標題"
image_post = "影像文章"
image_post_comment = "建立以圖片為主的文章"
import = "匯入"
import_feed = "開始匯入 Feed"
import_rss = "匯入 RSS"
import_rss_feed_2.0 = "匯入 RSS Feed 2.0"
insert_image = "插入圖片"
invalid_error = "錯誤: 不正確的帳號或密碼"
language = "系統語言"
link_name = "連結名稱"
link_post = "連結文章"
link_post_comment = "建立以連結為主的文章"
login = "登入"
login_page = "登入頁面"
logout = "登出"
menu = "選單"
menus = "編輯選單"
meta_description = "Meta 備註"
meta_description_character = "文章簡介字數"
metatags = "標籤"
metatags_settings = "標籤設定"
mine = "Mine"
more = "更多"
my_draft = "我的草稿"
my_posts = "我的文章"
name = "名稱"
newer = "較新的"
next = "下一個"
next_post = "下一篇文章"
no_available_backup = "目前沒有可用的備份."
no_draft_found = "找不到草稿"
no_posts_found = "找不到文章"
no_related_post_found = "找不到相關文章"
no_scheduled_posts_found = "找不到預約排定的文章!"
no_search_results = "沒有搜尋到結果"
nope = "沒有"
not = "否"
older = "較舊的"
only = "只有"
operations = "操作"
page = "頁"
page_generation_time = "頁面產生時間"
pages = "靜態網頁"
pass_error = "密碼欄位為必填"
password = "密碼"
performance = "效能"
performance_settings = "效能設定"
permalink = "文章網址格式"
popular = "熱門"
popular_posts = "熱門文章"
popular_posts_widget = "熱門文章工具"
popular_posts_widget_at_most = "熱門文章工具篇數"
popular_tags = "熱門標籤"
post_by_author = "發表自"
posted_in = "發文在"
posted_on = "發文於"
posts = "文章"
posts_by = "發表自 "
posts_draft = "文章草稿"
posts_in_archive_page_at_most = "更多封存頁中的文章"
posts_in_category_page_at_most = "更多分類頁中的文章"
posts_in_front_page_show_at_most = "更多前端顯示頁中的文章"
posts_in_profile_page_at_most = "更多個人頁中的文章"
posts_in_search_result_at_most = "更多搜尋結果頁中的文章"
posts_in_tag_page_at_most = "更多標籤頁中的文章"
posts_in_type_page_at_most = "更多類別頁中的文章"
posts_index_settings = "文章首頁設定"
posts_list = "文章列表"
posts_tagged = "Posts tagged"
posts_with_type = "Posts with type"
pre_release = "Pre-release"
prev = "舊"
prev_post = "前一篇文章"
preview = "預覽"
profile_for = "Profile for"
proudly_powered_by = "Proudly powered by"
publish = "發布"
publish_draft = "發布草稿"
published = "已發表"
quote_post = "語錄文章"
quote_post_comment = "建立以語錄為主的文章"
rss_character = "RSS character"
rss_feeds_show_the_most_recent = "RSS feeds show the most recent"
rss_settings = "RSS 設定"
read_more_text = "閱讀更多文字"
read_more_text_placeholder = "閱讀更多"
reading = "顯示"
reading_settings = "顯示設定"
recaptcha = "reCAPTCHA"
recent_posts = "最新文章"
recent_posts_widget_at_most = "更多小工具中的文章"
regular_post = "一般文章"
regular_post_comment = "建立一般部落格文章"
related_posts = "相關文章"
related_widget_posts_at_most = "更多相關工具中的文章"
revert_to_draft = "轉換為草稿"
save = "儲存"
save_config = "儲存設定"
save_edit = "儲存編輯"
save_menu = "儲存選單"
save_as_draft = "儲存為草稿"
save_category = "儲存分類"
scheduled = "預約排定"
scheduled_posts = "預約排定的文章"
scheduled_tips = "發表帶有未來日期或時間的文章,將可提前預約排定文章的發表"
search = "搜尋"
search_for = "搜尋"
search_results_for = "搜尋一下"
search_results_not_found = "搜尋不到任何結果"
secret_key = "Secret Key"
settings = "系統設定"
sign_in_to_start_your_session = "Sign in to start your session"
site_key = "Site Key"
sitemap = "Sitemap"
slug = "Slug"
social_media = "Social Media"
static_page = "靜態網頁"
static_page_comment = "建立靜態網頁"
static_pages = "靜態網頁"
summary = "摘要"
summary_character = "摘要字數"
tag = "標籤"
tagcloud_widget_at_most = "標籤雲數量"
tagline = "副標"
tagline_placeholder = "這裡都是我的祕密"
tagline_description = "請用一句話快速表達這個部落格的主題"
tags = "標籤"
this_is_legacy_code_usually_new_created_analytics_using_gtag_js = "This is legacy code. Usually new created analytics using gtag.js"
this_page_doesnt_exist = "該頁面不存在 !"
time = "時間"
timezone = "時區"
title = "標題"
to_use_disqus_or_facebook_comment_you_need_to_provide_disqus_shortname_or_facebook_app_id = "To using Disqus or Facebook comment you need to provide Disqus shortname or Facebook App ID."
token_error = "CSRF Token not correct"
tools = "工具"
twitter_account = "TwitterX.com帳號"
type_to_search = "輸入欲搜尋的文字"
uncategorized = "無分類"
uncategorized_comment = "不需要分類或不適合目前所有分類的文章主題"
universal_analytics = "Universal Analytics (gtag.js)"
unknown_feed_format = "未知的格式"
update = "更新"
update_available = "可用的更新"
update_draft = "更新草稿"
update_post = "更新文章"
update_to = "更新到"
upload = "上傳"
user = "使用者"
user_error = "使用者欄位為必填"
valid_values_range_from_0_to_1.0._see = "驗證數值範圍自 0.0 到 1.0"
video_post = "影片文章"
video_post_comment = "建立以影片為主的文章"
view = "檢視"
view_post = "觀看"
views = "看過"
widget = "工具"
widget_settings = "工具設定"
would_you_like_to_try_our = "您想嘗試我們的 "
yes_im_in = "是的 我有"
yes_not_recommended = "是 (不建議)"
you_dont_have_permission_to_access_this_page = "您無權限存取此頁面"
your_new_config_key = "Your New Config Key"
your_new_value = "Your New Value"
your_backups = "你的備份"
your_latest_blog_posts = "您最新的部落格文章"
your_recent_posts = "您最近的文章"
by = "由"
hint_use_ctrlcmdf_to_search_for_your_config_key_or_value = "<u>提示:</u> 使用 <code>Ctrl</code>/<code>CMD</code> + <code>F</code> 可以快速搜尋你設定的按鍵值。"
homepage = "首頁"
instead = "取代"
item_class = "插入CSS class"
item_slug = "插入URL連結"
now = "現在"
of = "of"
optional = "選填"
post_your_post_slug = "/post/your-post-slug"
pro_tips_you_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template = "<u>專業提示:</u> 您可以建立自訂按鍵並在樣版中的任何位置,顯示您設定的按鍵鍵值。"
read_more = "讀取更多"
widget_key_placeholder = "12345abcde"
year_month_your_post_slug = "/year/month/your-post-slug"
your_key = "your.key"
summary_behavior = "摘要特性"
default = "預設"
check_shortcode = "檢查 shortcode"
in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char = "在摘要模式下,將內容縮減字元數之前,是不要先檢查 shortcode"
manage_users = "管理使用者"
add_user = "新增使用者"
username = "使用者名稱"
role = "規則"
change_password = "更改密碼"
config_mfa = "設定 MFA"
mfacode = "MFA Code"
verify_code = "驗證 MFA code"
verify_password = "驗證目前密碼"
manualsetupkey = "您也可以手動新增設定密鑰"
mfa_error = "MFA code 不正確"
disablemfa = "停用 MFA"
enable_auto_save = "啟用自動儲存"
explain_autosave = "當啟用時新的內容或刪減將會自動在每60秒進行背景儲存。"
login_protect_system = "登入保護系統"
cloudflare_info = "查看 Cloudflare's Turnstile 文件: "
mfa_config = "多重身份驗證 (MFA)"
set_mfa_globally = "設定 MFA 狀態"
explain_mfa = "當啟用時MFA 會開放給所有使用者自行選用。當停用後,所有使用者都不能使用此功能,並且會在登入頁面隱藏相關訊息。"
set_version_publicly = "可見版本"
explain_version = "預設情況下HTMLy 的版本在原始碼中公開可見,但有些管理員可能會希望隱藏起來。"
focus_mode = "切換焦點"
writing = "寫入"
writing_settings = "寫入設定"
security = "安全"
security_settings = "安全設定"
msg_error_field_req_username = "名稱欄位為必填."
msg_error_field_req_password = "密碼欄位為必填."
msg_error_field_req_title = "標題欄位為必填."
msg_error_field_req_content = "內容欄位為必填."
msg_error_field_req_tag = "標籤欄位為必填."
msg_error_field_req_image = "圖片欄位為必填."
msg_error_field_req_video = "影片欄位為必填."
msg_error_field_req_link = "連結欄位為必填."
msg_error_field_req_quote = "語錄欄位為必填."
msg_error_field_req_audio = "音訊欄位為必填."
msg_error_field_req_feedurl = "您需指定 Feed 網址."
rss_feeds_description_select = "RSS 描述"
rss_description_body = "Post 內容"
rss_description_meta = "Post Meta 描述"
admin_theme = "後台界面風格"
admin_theme_light = "明亮"
admin_theme_dark = "暗沉"
search_index = "Search Index"
fulltext_search = "Fulltext Search"
add_search_index = "Add posts to Search Index"
clear_search_index = "Clear Search Index"
unindexed_posts = "Here are the posts that have not been indexed"
indexed_posts = "Posts has been indexed"

BIN
media/MFA.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

0
old/blog/2024-07-01_Plates.html Normal file → Executable file
View File

0
old/blog/2024-07-01_Plates_list.html Normal file → Executable file
View File

0
old/blog/2024-08-04_Vexillology-i.html Normal file → Executable file
View File

0
old/blog/media/MFA-i.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

36
robots.txt Executable file
View File

@ -0,0 +1,36 @@
#
# robots.txt
#
# This file is to prevent the crawling and indexing of certain parts
# of your site by web crawlers and spiders run by sites like Yahoo!
# and Google. By telling these "robots" where not to go on your site,
# you save bandwidth and server resources.
#
# This file will be ignored unless it is at the root of your host:
# Used: http://example.com/robots.txt
# Ignored: http://example.com/site/robots.txt
#
# For more information about the robots.txt standard, see:
# http://www.robotstxt.org/wc/robots.html
#
# For syntax checking, see:
# http://www.sxw.org.uk/computing/robots/check.html
User-agent: *
# Allow directories
Allow: /system/resources/
# Disallow directories
Disallow: /config/
Disallow: /system/
Disallow: /cache/
Disallow: /lang/
# Disallow files
Disallow: /composer.json
Disallow: /composer.lock
Disallow: /composer.phar
# Disallow paths
Disallow: /admin/

1916
system/admin/admin.php Executable file

File diff suppressed because it is too large Load Diff

32
system/admin/editor/LICENSE.txt Executable file
View File

@ -0,0 +1,32 @@
A javascript port of Markdown, as used on Stack Overflow
and the rest of Stack Exchange network.
Largely based on showdown.js by John Fraser (Attacklab).
Original Markdown Copyright (c) 2004-2005 John Gruber
<http://daringfireball.net/projects/markdown/>
Original Showdown code copyright (c) 2007 John Fraser
Modifications and bugfixes (c) 2009 Dana Robinson
Modifications and bugfixes (c) 2009-2013 Stack Exchange Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@ -0,0 +1,184 @@
body {
font-family: Georgia, sans-serif;
}
blockquote {
border-left: 2px dotted #888;
padding-left: 5px;
background: #F6F7F9;
}
.wmd-panel {
float: left;
}
.wmd-button-bar {
background-color: #F6F7F9;
padding: 5px 0;
margin-bottom: 10px;
width: 100%;
border: 1px solid #CFDAE5;
border-radius:5px;
display: block;
float: left;
}
.dark-mode .wmd-button-bar {
background-color: #292d32;
border-color: #292d32 !important;
}
.wmd-button-bar:hover {
border: 1px solid #CCCCCC;
}
.wmd-input {
min-height: 300px;
}
.wmd-preview {
background-color: #E4EBF1;
float: left;
padding: 2%;
}
.wmd-preview table {
margin: 20px 0;
}
.wmd-preview td, .wmd-preview th {
border-right: 1px solid #ccc;
padding: 8px 12px;
}
.wmd-preview td:last-child, .wmd-preview th:last-child {
border-right: none;
}
.wmd-preview td {
border-top: 1px solid #ccc;
}
.wmd-button-row {
position: relative;
margin: 0px;
padding: 0px;
}
.wmd-spacer {
width: 1px;
height: 20px;
background-color: Silver;
list-style: none;
float: left;
margin: 5px;
}
.wmd-button {
list-style: none;
cursor: pointer;
float: left;
}
.wmd-button > span {
background-repeat: no-repeat;
background-position: 0px 0px;
display: inline-block;
}
.dark-mode .wmd-button > span.btn-light {
color: #fff;
background-color: #292d32;
border-color: #292d32;
box-shadow: none;
}
.dark-mode .wmd-button > span.btn-light:not(.disabled):hover {
background-color: #171a1d;
border-color: #343a40;
}
.wmd-spacer1 {
left: 50px;
}
.wmd-spacer2 {
left: 175px;
}
.wmd-spacer3 {
left: 300px;
}
.wmd-prompt-background {
background-color: Black;
}
.wmd-prompt-dialog {
border: 1px solid #999999;
background-color: #F5F5F5;
}
.wmd-prompt-dialog > div {
font-size: 0.8em;
font-family: arial, helvetica, sans-serif;
}
.wmd-prompt-dialog > form > input[type="text"] {
border: 1px solid #999999;
color: black;
}
.wmd-prompt-dialog > form > input[type="button"] {
border: 1px solid #888888;
font-family: trebuchet MS, helvetica, sans-serif;
font-size: 0.8em;
font-weight: bold;
}
pre {
margin: 1em 0;
overflow: auto;
background: #F1F1FF;
}
pre code {
color: #333333;
display: block;
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
font-size: 14px;
padding: 5px 10px;
}
@media all and (max-width: 980px) {
.nav {
width: 100%;
padding: 2%;
}
.wmd-panel, .wmd-preview {
width: 96%;
float: left;
padding: 2%;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
}
}
.notice {
position: fixed;
bottom: 20px;
right: 20px;
padding: 10px 20px;
background-color: #f0f9ff;
border: 1px solid #e0e0e0;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
font-size: 14px;
color: #333;
z-index: 999;
display: flex;
align-items: center;
display: none;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,874 @@
(function () {
// A quick way to make sure we're only keeping span-level tags when we need to.
// This isn't supposed to be foolproof. It's just a quick way to make sure we
// keep all span-level tags returned by a pagedown converter. It should allow
// all span-level tags through, with or without attributes.
var inlineTags = new RegExp(['^(<\\/?(a|abbr|acronym|applet|area|b|basefont|',
'bdo|big|button|cite|code|del|dfn|em|figcaption|',
'font|i|iframe|img|input|ins|kbd|label|map|',
'mark|meter|object|param|progress|q|ruby|rp|rt|s|',
'samp|script|select|small|span|strike|strong|',
'sub|sup|textarea|time|tt|u|var|wbr)[^>]*>|',
'<(br)\\s?\\/?>)$'].join(''), 'i');
/******************************************************************
* Utility Functions *
*****************************************************************/
// patch for ie7
if (!Array.indexOf) {
Array.prototype.indexOf = function(obj) {
for (var i = 0; i < this.length; i++) {
if (this[i] == obj) {
return i;
}
}
return -1;
};
}
function trim(str) {
return str.replace(/^\s+|\s+$/g, '');
}
function rtrim(str) {
return str.replace(/\s+$/g, '');
}
// Remove one level of indentation from text. Indent is 4 spaces.
function outdent(text) {
return text.replace(new RegExp('^(\\t|[ ]{1,4})', 'gm'), '');
}
function contains(str, substr) {
return str.indexOf(substr) != -1;
}
// Sanitize html, removing tags that aren't in the whitelist
function sanitizeHtml(html, whitelist) {
return html.replace(/<[^>]*>?/gi, function(tag) {
return tag.match(whitelist) ? tag : '';
});
}
// Merge two arrays, keeping only unique elements.
function union(x, y) {
var obj = {};
for (var i = 0; i < x.length; i++)
obj[x[i]] = x[i];
for (i = 0; i < y.length; i++)
obj[y[i]] = y[i];
var res = [];
for (var k in obj) {
if (obj.hasOwnProperty(k))
res.push(obj[k]);
}
return res;
}
// JS regexes don't support \A or \Z, so we add sentinels, as Pagedown
// does. In this case, we add the ascii codes for start of text (STX) and
// end of text (ETX), an idea borrowed from:
// https://github.com/tanakahisateru/js-markdown-extra
function addAnchors(text) {
if(text.charAt(0) != '\x02')
text = '\x02' + text;
if(text.charAt(text.length - 1) != '\x03')
text = text + '\x03';
return text;
}
// Remove STX and ETX sentinels.
function removeAnchors(text) {
if(text.charAt(0) == '\x02')
text = text.substr(1);
if(text.charAt(text.length - 1) == '\x03')
text = text.substr(0, text.length - 1);
return text;
}
// Convert markdown within an element, retaining only span-level tags
function convertSpans(text, extra) {
return sanitizeHtml(convertAll(text, extra), inlineTags);
}
// Convert internal markdown using the stock pagedown converter
function convertAll(text, extra) {
var result = extra.blockGamutHookCallback(text);
// We need to perform these operations since we skip the steps in the converter
result = unescapeSpecialChars(result);
result = result.replace(/~D/g, "$$").replace(/~T/g, "~");
result = extra.previousPostConversion(result);
return result;
}
// Convert escaped special characters
function processEscapesStep1(text) {
// Markdown extra adds two escapable characters, `:` and `|`
return text.replace(/\\\|/g, '~I').replace(/\\:/g, '~i');
}
function processEscapesStep2(text) {
return text.replace(/~I/g, '|').replace(/~i/g, ':');
}
// Duplicated from PageDown converter
function unescapeSpecialChars(text) {
// Swap back in all the special characters we've hidden.
text = text.replace(/~E(\d+)E/g, function(wholeMatch, m1) {
var charCodeToReplace = parseInt(m1);
return String.fromCharCode(charCodeToReplace);
});
return text;
}
function slugify(text) {
return text.toLowerCase()
.replace(/\s+/g, '-') // Replace spaces with -
.replace(/[^\w\-]+/g, '') // Remove all non-word chars
.replace(/\-\-+/g, '-') // Replace multiple - with single -
.replace(/^-+/, '') // Trim - from start of text
.replace(/-+$/, ''); // Trim - from end of text
}
/*****************************************************************************
* Markdown.Extra *
****************************************************************************/
Markdown.Extra = function() {
// For converting internal markdown (in tables for instance).
// This is necessary since these methods are meant to be called as
// preConversion hooks, and the Markdown converter passed to init()
// won't convert any markdown contained in the html tags we return.
this.converter = null;
// Stores html blocks we generate in hooks so that
// they're not destroyed if the user is using a sanitizing converter
this.hashBlocks = [];
// Stores footnotes
this.footnotes = {};
this.usedFootnotes = [];
// Special attribute blocks for fenced code blocks and headers enabled.
this.attributeBlocks = false;
// Fenced code block options
this.googleCodePrettify = false;
this.highlightJs = false;
// Table options
this.tableClass = '';
this.tabWidth = 4;
};
Markdown.Extra.init = function(converter, options) {
// Each call to init creates a new instance of Markdown.Extra so it's
// safe to have multiple converters, with different options, on a single page
var extra = new Markdown.Extra();
var postNormalizationTransformations = [];
var preBlockGamutTransformations = [];
var postSpanGamutTransformations = [];
var postConversionTransformations = ["unHashExtraBlocks"];
options = options || {};
options.extensions = options.extensions || ["all"];
if (contains(options.extensions, "all")) {
options.extensions = ["tables", "fenced_code_gfm", "def_list", "attr_list", "footnotes", "smartypants", "strikethrough", "newlines"];
}
preBlockGamutTransformations.push("wrapHeaders");
if (contains(options.extensions, "attr_list")) {
postNormalizationTransformations.push("hashFcbAttributeBlocks");
preBlockGamutTransformations.push("hashHeaderAttributeBlocks");
postConversionTransformations.push("applyAttributeBlocks");
extra.attributeBlocks = true;
}
if (contains(options.extensions, "fenced_code_gfm")) {
// This step will convert fcb inside list items and blockquotes
preBlockGamutTransformations.push("fencedCodeBlocks");
// This extra step is to prevent html blocks hashing and link definition/footnotes stripping inside fcb
postNormalizationTransformations.push("fencedCodeBlocks");
}
if (contains(options.extensions, "tables")) {
preBlockGamutTransformations.push("tables");
}
if (contains(options.extensions, "def_list")) {
preBlockGamutTransformations.push("definitionLists");
}
if (contains(options.extensions, "footnotes")) {
postNormalizationTransformations.push("stripFootnoteDefinitions");
preBlockGamutTransformations.push("doFootnotes");
postConversionTransformations.push("printFootnotes");
}
if (contains(options.extensions, "smartypants")) {
postConversionTransformations.push("runSmartyPants");
}
if (contains(options.extensions, "strikethrough")) {
postSpanGamutTransformations.push("strikethrough");
}
if (contains(options.extensions, "newlines")) {
postSpanGamutTransformations.push("newlines");
}
converter.hooks.chain("postNormalization", function(text) {
return extra.doTransform(postNormalizationTransformations, text) + '\n';
});
converter.hooks.chain("preBlockGamut", function(text, blockGamutHookCallback) {
// Keep a reference to the block gamut callback to run recursively
extra.blockGamutHookCallback = blockGamutHookCallback;
text = processEscapesStep1(text);
text = extra.doTransform(preBlockGamutTransformations, text) + '\n';
text = processEscapesStep2(text);
return text;
});
converter.hooks.chain("postSpanGamut", function(text) {
return extra.doTransform(postSpanGamutTransformations, text);
});
// Keep a reference to the hook chain running before doPostConversion to apply on hashed extra blocks
extra.previousPostConversion = converter.hooks.postConversion;
converter.hooks.chain("postConversion", function(text) {
text = extra.doTransform(postConversionTransformations, text);
// Clear state vars that may use unnecessary memory
extra.hashBlocks = [];
extra.footnotes = {};
extra.usedFootnotes = [];
return text;
});
if ("highlighter" in options) {
extra.googleCodePrettify = options.highlighter === 'prettify';
extra.highlightJs = options.highlighter === 'highlight';
}
if ("table_class" in options) {
extra.tableClass = options.table_class;
}
extra.converter = converter;
// Caller usually won't need this, but it's handy for testing.
return extra;
};
// Do transformations
Markdown.Extra.prototype.doTransform = function(transformations, text) {
for(var i = 0; i < transformations.length; i++)
text = this[transformations[i]](text);
return text;
};
// Return a placeholder containing a key, which is the block's index in the
// hashBlocks array. We wrap our output in a <p> tag here so Pagedown won't.
Markdown.Extra.prototype.hashExtraBlock = function(block) {
return '\n<p>~X' + (this.hashBlocks.push(block) - 1) + 'X</p>\n';
};
Markdown.Extra.prototype.hashExtraInline = function(block) {
return '~X' + (this.hashBlocks.push(block) - 1) + 'X';
};
// Replace placeholder blocks in `text` with their corresponding
// html blocks in the hashBlocks array.
Markdown.Extra.prototype.unHashExtraBlocks = function(text) {
var self = this;
function recursiveUnHash() {
var hasHash = false;
text = text.replace(/(?:<p>)?~X(\d+)X(?:<\/p>)?/g, function(wholeMatch, m1) {
hasHash = true;
var key = parseInt(m1, 10);
return self.hashBlocks[key];
});
if(hasHash === true) {
recursiveUnHash();
}
}
recursiveUnHash();
return text;
};
// Wrap headers to make sure they won't be in def lists
Markdown.Extra.prototype.wrapHeaders = function(text) {
function wrap(text) {
return '\n' + text + '\n';
}
text = text.replace(/^.+[ \t]*\n=+[ \t]*\n+/gm, wrap);
text = text.replace(/^.+[ \t]*\n-+[ \t]*\n+/gm, wrap);
text = text.replace(/^\#{1,6}[ \t]*.+?[ \t]*\#*\n+/gm, wrap);
return text;
};
/******************************************************************
* Attribute Blocks *
*****************************************************************/
// TODO: use sentinels. Should we just add/remove them in doConversion?
// TODO: better matches for id / class attributes
var attrBlock = "\\{[ \\t]*((?:[#.][-_:a-zA-Z0-9]+[ \\t]*)+)\\}";
var hdrAttributesA = new RegExp("^(#{1,6}.*#{0,6})[ \\t]+" + attrBlock + "[ \\t]*(?:\\n|0x03)", "gm");
var hdrAttributesB = new RegExp("^(.*)[ \\t]+" + attrBlock + "[ \\t]*\\n" +
"(?=[\\-|=]+\\s*(?:\\n|0x03))", "gm"); // underline lookahead
var fcbAttributes = new RegExp("^(```[^`\\n]*)[ \\t]+" + attrBlock + "[ \\t]*\\n" +
"(?=([\\s\\S]*?)\\n```[ \\t]*(\\n|0x03))", "gm");
// Extract headers attribute blocks, move them above the element they will be
// applied to, and hash them for later.
Markdown.Extra.prototype.hashHeaderAttributeBlocks = function(text) {
var self = this;
function attributeCallback(wholeMatch, pre, attr) {
return '<p>~XX' + (self.hashBlocks.push(attr) - 1) + 'XX</p>\n' + pre + "\n";
}
text = text.replace(hdrAttributesA, attributeCallback); // ## headers
text = text.replace(hdrAttributesB, attributeCallback); // underline headers
return text;
};
// Extract FCB attribute blocks, move them above the element they will be
// applied to, and hash them for later.
Markdown.Extra.prototype.hashFcbAttributeBlocks = function(text) {
// TODO: use sentinels. Should we just add/remove them in doConversion?
// TODO: better matches for id / class attributes
var self = this;
function attributeCallback(wholeMatch, pre, attr) {
return '<p>~XX' + (self.hashBlocks.push(attr) - 1) + 'XX</p>\n' + pre + "\n";
}
return text.replace(fcbAttributes, attributeCallback);
};
Markdown.Extra.prototype.applyAttributeBlocks = function(text) {
var self = this;
var blockRe = new RegExp('<p>~XX(\\d+)XX</p>[\\s]*' +
'(?:<(h[1-6]|pre)(?: +class="(\\S+)")?(>[\\s\\S]*?</\\2>))', "gm");
text = text.replace(blockRe, function(wholeMatch, k, tag, cls, rest) {
if (!tag) // no following header or fenced code block.
return '';
// get attributes list from hash
var key = parseInt(k, 10);
var attributes = self.hashBlocks[key];
// get id
var id = attributes.match(/#[^\s#.]+/g) || [];
var idStr = id[0] ? ' id="' + id[0].substr(1, id[0].length - 1) + '"' : '';
// get classes and merge with existing classes
var classes = attributes.match(/\.[^\s#.]+/g) || [];
for (var i = 0; i < classes.length; i++) // Remove leading dot
classes[i] = classes[i].substr(1, classes[i].length - 1);
var classStr = '';
if (cls)
classes = union(classes, [cls]);
if (classes.length > 0)
classStr = ' class="' + classes.join(' ') + '"';
return "<" + tag + idStr + classStr + rest;
});
return text;
};
/******************************************************************
* Tables *
*****************************************************************/
// Find and convert Markdown Extra tables into html.
Markdown.Extra.prototype.tables = function(text) {
var self = this;
var leadingPipe = new RegExp(
['^' ,
'[ ]{0,3}' , // Allowed whitespace
'[|]' , // Initial pipe
'(.+)\\n' , // $1: Header Row
'[ ]{0,3}' , // Allowed whitespace
'[|]([ ]*[-:]+[-| :]*)\\n' , // $2: Separator
'(' , // $3: Table Body
'(?:[ ]*[|].*\\n?)*' , // Table rows
')',
'(?:\\n|$)' // Stop at final newline
].join(''),
'gm'
);
var noLeadingPipe = new RegExp(
['^' ,
'[ ]{0,3}' , // Allowed whitespace
'(\\S.*[|].*)\\n' , // $1: Header Row
'[ ]{0,3}' , // Allowed whitespace
'([-:]+[ ]*[|][-| :]*)\\n' , // $2: Separator
'(' , // $3: Table Body
'(?:.*[|].*\\n?)*' , // Table rows
')' ,
'(?:\\n|$)' // Stop at final newline
].join(''),
'gm'
);
text = text.replace(leadingPipe, doTable);
text = text.replace(noLeadingPipe, doTable);
// $1 = header, $2 = separator, $3 = body
function doTable(match, header, separator, body, offset, string) {
// remove any leading pipes and whitespace
header = header.replace(/^ *[|]/m, '');
separator = separator.replace(/^ *[|]/m, '');
body = body.replace(/^ *[|]/gm, '');
// remove trailing pipes and whitespace
header = header.replace(/[|] *$/m, '');
separator = separator.replace(/[|] *$/m, '');
body = body.replace(/[|] *$/gm, '');
// determine column alignments
var alignspecs = separator.split(/ *[|] */);
var align = [];
for (var i = 0; i < alignspecs.length; i++) {
var spec = alignspecs[i];
if (spec.match(/^ *-+: *$/m))
align[i] = ' align="right"';
else if (spec.match(/^ *:-+: *$/m))
align[i] = ' align="center"';
else if (spec.match(/^ *:-+ *$/m))
align[i] = ' align="left"';
else align[i] = '';
}
// TODO: parse spans in header and rows before splitting, so that pipes
// inside of tags are not interpreted as separators
var headers = header.split(/ *[|] */);
var colCount = headers.length;
// build html
var cls = self.tableClass ? ' class="' + self.tableClass + '"' : '';
var html = ['<table', cls, '>\n', '<thead>\n', '<tr>\n'].join('');
// build column headers.
for (i = 0; i < colCount; i++) {
var headerHtml = convertSpans(trim(headers[i]), self);
html += [" <th", align[i], ">", headerHtml, "</th>\n"].join('');
}
html += "</tr>\n</thead>\n";
// build rows
var rows = body.split('\n');
for (i = 0; i < rows.length; i++) {
if (rows[i].match(/^\s*$/)) // can apply to final row
continue;
// ensure number of rowCells matches colCount
var rowCells = rows[i].split(/ *[|] */);
var lenDiff = colCount - rowCells.length;
for (var j = 0; j < lenDiff; j++)
rowCells.push('');
html += "<tr>\n";
for (j = 0; j < colCount; j++) {
var colHtml = convertSpans(trim(rowCells[j]), self);
html += [" <td", align[j], ">", colHtml, "</td>\n"].join('');
}
html += "</tr>\n";
}
html += "</table>\n";
// replace html with placeholder until postConversion step
return self.hashExtraBlock(html);
}
return text;
};
/******************************************************************
* Footnotes *
*****************************************************************/
// Strip footnote, store in hashes.
Markdown.Extra.prototype.stripFootnoteDefinitions = function(text) {
var self = this;
text = text.replace(
/\n[ ]{0,3}\[\^(.+?)\]\:[ \t]*\n?([\s\S]*?)\n{1,2}((?=\n[ ]{0,3}\S)|$)/g,
function(wholeMatch, m1, m2) {
m1 = slugify(m1);
m2 += "\n";
m2 = m2.replace(/^[ ]{0,3}/g, "");
self.footnotes[m1] = m2;
return "\n";
});
return text;
};
// Find and convert footnotes references.
Markdown.Extra.prototype.doFootnotes = function(text) {
var self = this;
if(self.isConvertingFootnote === true) {
return text;
}
var footnoteCounter = 0;
text = text.replace(/\[\^(.+?)\]/g, function(wholeMatch, m1) {
var id = slugify(m1);
var footnote = self.footnotes[id];
if (footnote === undefined) {
return wholeMatch;
}
footnoteCounter++;
self.usedFootnotes.push(id);
var html = '<a href="#fn:' + id + '" id="fnref:' + id
+ '" title="See footnote" class="footnote">' + footnoteCounter
+ '</a>';
return self.hashExtraInline(html);
});
return text;
};
// Print footnotes at the end of the document
Markdown.Extra.prototype.printFootnotes = function(text) {
var self = this;
if (self.usedFootnotes.length === 0) {
return text;
}
text += '\n\n<div class="footnotes">\n<hr>\n<ol>\n\n';
for(var i=0; i<self.usedFootnotes.length; i++) {
var id = self.usedFootnotes[i];
var footnote = self.footnotes[id];
self.isConvertingFootnote = true;
var formattedfootnote = convertSpans(footnote, self);
delete self.isConvertingFootnote;
text += '<li id="fn:'
+ id
+ '">'
+ formattedfootnote
+ ' <a href="#fnref:'
+ id
+ '" title="Return to article" class="reversefootnote">&#8617;</a></li>\n\n';
}
text += '</ol>\n</div>';
return text;
};
/******************************************************************
* Fenced Code Blocks (gfm) *
******************************************************************/
// Find and convert gfm-inspired fenced code blocks into html.
Markdown.Extra.prototype.fencedCodeBlocks = function(text) {
function encodeCode(code) {
code = code.replace(/&/g, "&amp;");
code = code.replace(/</g, "&lt;");
code = code.replace(/>/g, "&gt;");
// These were escaped by PageDown before postNormalization
code = code.replace(/~D/g, "$$");
code = code.replace(/~T/g, "~");
return code;
}
var self = this;
text = text.replace(/(?:^|\n)```([^`\n]*)\n([\s\S]*?)\n```[ \t]*(?=\n)/g, function(match, m1, m2) {
var language = trim(m1), codeblock = m2;
// adhere to specified options
var preclass = self.googleCodePrettify ? ' class="prettyprint"' : '';
var codeclass = '';
if (language) {
if (self.googleCodePrettify || self.highlightJs) {
// use html5 language- class names. supported by both prettify and highlight.js
codeclass = ' class="language-' + language + '"';
} else {
codeclass = ' class="' + language + '"';
}
}
var html = ['<pre', preclass, '><code', codeclass, '>',
encodeCode(codeblock), '</code></pre>'].join('');
// replace codeblock with placeholder until postConversion step
return self.hashExtraBlock(html);
});
return text;
};
/******************************************************************
* SmartyPants *
******************************************************************/
Markdown.Extra.prototype.educatePants = function(text) {
var self = this;
var result = '';
var blockOffset = 0;
// Here we parse HTML in a very bad manner
text.replace(/(?:<!--[\s\S]*?-->)|(<)([a-zA-Z1-6]+)([^\n]*?>)([\s\S]*?)(<\/\2>)/g, function(wholeMatch, m1, m2, m3, m4, m5, offset) {
var token = text.substring(blockOffset, offset);
result += self.applyPants(token);
self.smartyPantsLastChar = result.substring(result.length - 1);
blockOffset = offset + wholeMatch.length;
if(!m1) {
// Skip commentary
result += wholeMatch;
return;
}
// Skip special tags
if(!/code|kbd|pre|script|noscript|iframe|math|ins|del|pre/i.test(m2)) {
m4 = self.educatePants(m4);
}
else {
self.smartyPantsLastChar = m4.substring(m4.length - 1);
}
result += m1 + m2 + m3 + m4 + m5;
});
var lastToken = text.substring(blockOffset);
result += self.applyPants(lastToken);
self.smartyPantsLastChar = result.substring(result.length - 1);
return result;
};
function revertPants(wholeMatch, m1) {
var blockText = m1;
blockText = blockText.replace(/&\#8220;/g, "\"");
blockText = blockText.replace(/&\#8221;/g, "\"");
blockText = blockText.replace(/&\#8216;/g, "'");
blockText = blockText.replace(/&\#8217;/g, "'");
blockText = blockText.replace(/&\#8212;/g, "---");
blockText = blockText.replace(/&\#8211;/g, "--");
blockText = blockText.replace(/&\#8230;/g, "...");
return blockText;
}
Markdown.Extra.prototype.applyPants = function(text) {
// Dashes
text = text.replace(/---/g, "&#8212;").replace(/--/g, "&#8211;");
// Ellipses
text = text.replace(/\.\.\./g, "&#8230;").replace(/\.\s\.\s\./g, "&#8230;");
// Backticks
text = text.replace(/``/g, "&#8220;").replace (/''/g, "&#8221;");
if(/^'$/.test(text)) {
// Special case: single-character ' token
if(/\S/.test(this.smartyPantsLastChar)) {
return "&#8217;";
}
return "&#8216;";
}
if(/^"$/.test(text)) {
// Special case: single-character " token
if(/\S/.test(this.smartyPantsLastChar)) {
return "&#8221;";
}
return "&#8220;";
}
// Special case if the very first character is a quote
// followed by punctuation at a non-word-break. Close the quotes by brute force:
text = text.replace (/^'(?=[!"#\$\%'()*+,\-.\/:;<=>?\@\[\\]\^_`{|}~]\B)/, "&#8217;");
text = text.replace (/^"(?=[!"#\$\%'()*+,\-.\/:;<=>?\@\[\\]\^_`{|}~]\B)/, "&#8221;");
// Special case for double sets of quotes, e.g.:
// <p>He said, "'Quoted' words in a larger quote."</p>
text = text.replace(/"'(?=\w)/g, "&#8220;&#8216;");
text = text.replace(/'"(?=\w)/g, "&#8216;&#8220;");
// Special case for decade abbreviations (the '80s):
text = text.replace(/'(?=\d{2}s)/g, "&#8217;");
// Get most opening single quotes:
text = text.replace(/(\s|&nbsp;|--|&[mn]dash;|&\#8211;|&\#8212;|&\#x201[34];)'(?=\w)/g, "$1&#8216;");
// Single closing quotes:
text = text.replace(/([^\s\[\{\(\-])'/g, "$1&#8217;");
text = text.replace(/'(?=\s|s\b)/g, "&#8217;");
// Any remaining single quotes should be opening ones:
text = text.replace(/'/g, "&#8216;");
// Get most opening double quotes:
text = text.replace(/(\s|&nbsp;|--|&[mn]dash;|&\#8211;|&\#8212;|&\#x201[34];)"(?=\w)/g, "$1&#8220;");
// Double closing quotes:
text = text.replace(/([^\s\[\{\(\-])"/g, "$1&#8221;");
text = text.replace(/"(?=\s)/g, "&#8221;");
// Any remaining quotes should be opening ones.
text = text.replace(/"/ig, "&#8220;");
return text;
};
// Find and convert markdown extra definition lists into html.
Markdown.Extra.prototype.runSmartyPants = function(text) {
this.smartyPantsLastChar = '';
text = this.educatePants(text);
// Clean everything inside html tags (some of them may have been converted due to our rough html parsing)
text = text.replace(/(<([a-zA-Z1-6]+)\b([^\n>]*?)(\/)?>)/g, revertPants);
return text;
};
/******************************************************************
* Definition Lists *
******************************************************************/
// Find and convert markdown extra definition lists into html.
Markdown.Extra.prototype.definitionLists = function(text) {
var wholeList = new RegExp(
['(\\x02\\n?|\\n\\n)' ,
'(?:' ,
'(' , // $1 = whole list
'(' , // $2
'[ ]{0,3}' ,
'((?:[ \\t]*\\S.*\\n)+)', // $3 = defined term
'\\n?' ,
'[ ]{0,3}:[ ]+' , // colon starting definition
')' ,
'([\\s\\S]+?)' ,
'(' , // $4
'(?=\\0x03)' , // \z
'|' ,
'(?=' ,
'\\n{2,}' ,
'(?=\\S)' ,
'(?!' , // Negative lookahead for another term
'[ ]{0,3}' ,
'(?:\\S.*\\n)+?' , // defined term
'\\n?' ,
'[ ]{0,3}:[ ]+' , // colon starting definition
')' ,
'(?!' , // Negative lookahead for another definition
'[ ]{0,3}:[ ]+' , // colon starting definition
')' ,
')' ,
')' ,
')' ,
')'
].join(''),
'gm'
);
var self = this;
text = addAnchors(text);
text = text.replace(wholeList, function(match, pre, list) {
var result = trim(self.processDefListItems(list));
result = "<dl>\n" + result + "\n</dl>";
return pre + self.hashExtraBlock(result) + "\n\n";
});
return removeAnchors(text);
};
// Process the contents of a single definition list, splitting it
// into individual term and definition list items.
Markdown.Extra.prototype.processDefListItems = function(listStr) {
var self = this;
var dt = new RegExp(
['(\\x02\\n?|\\n\\n+)' , // leading line
'(' , // definition terms = $1
'[ ]{0,3}' , // leading whitespace
'(?![:][ ]|[ ])' , // negative lookahead for a definition
// mark (colon) or more whitespace
'(?:\\S.*\\n)+?' , // actual term (not whitespace)
')' ,
'(?=\\n?[ ]{0,3}:[ ])' // lookahead for following line feed
].join(''), // with a definition mark
'gm'
);
var dd = new RegExp(
['\\n(\\n+)?' , // leading line = $1
'(' , // marker space = $2
'[ ]{0,3}' , // whitespace before colon
'[:][ ]+' , // definition mark (colon)
')' ,
'([\\s\\S]+?)' , // definition text = $3
'(?=\\n*' , // stop at next definition mark,
'(?:' , // next term or end of text
'\\n[ ]{0,3}[:][ ]|' ,
'<dt>|\\x03' , // \z
')' ,
')'
].join(''),
'gm'
);
listStr = addAnchors(listStr);
// trim trailing blank lines:
listStr = listStr.replace(/\n{2,}(?=\\x03)/, "\n");
// Process definition terms.
listStr = listStr.replace(dt, function(match, pre, termsStr) {
var terms = trim(termsStr).split("\n");
var text = '';
for (var i = 0; i < terms.length; i++) {
var term = terms[i];
// process spans inside dt
term = convertSpans(trim(term), self);
text += "\n<dt>" + term + "</dt>";
}
return text + "\n";
});
// Process actual definitions.
listStr = listStr.replace(dd, function(match, leadingLine, markerSpace, def) {
if (leadingLine || def.match(/\n{2,}/)) {
// replace marker with the appropriate whitespace indentation
def = Array(markerSpace.length + 1).join(' ') + def;
// process markdown inside definition
// TODO?: currently doesn't apply extensions
def = outdent(def) + "\n\n";
def = "\n" + convertAll(def, self) + "\n";
} else {
// convert span-level markdown inside definition
def = rtrim(def);
def = convertSpans(outdent(def), self);
}
return "\n<dd>" + def + "</dd>\n";
});
return removeAnchors(listStr);
};
/***********************************************************
* Strikethrough *
************************************************************/
Markdown.Extra.prototype.strikethrough = function(text) {
// Pretty much duplicated from _DoItalicsAndBold
return text.replace(/([\W_]|^)~T~T(?=\S)([^\r]*?\S[\*_]*)~T~T([\W_]|$)/g,
"$1<del>$2</del>$3");
};
/***********************************************************
* New lines *
************************************************************/
Markdown.Extra.prototype.newlines = function(text) {
// We have to ignore already converted newlines and line breaks in sub-list items
return text.replace(/(<(?:br|\/li)>)?\n/g, function(wholeMatch, previousTag) {
return previousTag ? wholeMatch : " <br>\n";
});
};
})();

View File

@ -0,0 +1,108 @@
(function () {
var output, Converter;
if (typeof exports === "object" && typeof require === "function") { // we're in a CommonJS (e.g. Node.js) module
output = exports;
Converter = require("./Markdown.Converter").Converter;
} else {
output = window.Markdown;
Converter = output.Converter;
}
output.getSanitizingConverter = function () {
var converter = new Converter();
converter.hooks.chain("postConversion", sanitizeHtml);
converter.hooks.chain("postConversion", balanceTags);
return converter;
}
function sanitizeHtml(html) {
return html.replace(/<[^>]*>?/gi, sanitizeTag);
}
// (tags that can be opened/closed) | (tags that stand alone)
var basic_tag_whitelist = /^(<\/?(b|blockquote|code|del|dd|dl|dt|em|h1|h2|h3|i|kbd|li|ol|p|pre|s|sup|sub|strong|strike|ul)>|<(br|hr)\s?\/?>)$/i;
// <a href="url..." optional title>|</a>
var a_white = /^(<a\shref="((https?|ftp):\/\/|\/)[-A-Za-z0-9+&@#\/%?=~_|!:,.;\(\)]+"(\stitle="[^"<>]+")?\s?>|<\/a>)$/i;
// <img src="url..." optional width optional height optional alt optional title
var img_white = /^(<img\ssrc="(https?:\/\/|\/)[-A-Za-z0-9+&@#\/%?=~_|!:,.;\(\)]+"(\swidth="\d{1,3}")?(\sheight="\d{1,3}")?(\salt="[^"<>]*")?(\stitle="[^"<>]*")?\s?\/?>)$/i;
function sanitizeTag(tag) {
if (tag.match(basic_tag_whitelist) || tag.match(a_white) || tag.match(img_white))
return tag;
else
return "";
}
/// <summary>
/// attempt to balance HTML tags in the html string
/// by removing any unmatched opening or closing tags
/// IMPORTANT: we *assume* HTML has *already* been
/// sanitized and is safe/sane before balancing!
///
/// adapted from CODESNIPPET: A8591DBA-D1D3-11DE-947C-BA5556D89593
/// </summary>
function balanceTags(html) {
if (html == "")
return "";
var re = /<\/?\w+[^>]*(\s|$|>)/g;
// convert everything to lower case; this makes
// our case insensitive comparisons easier
var tags = html.toLowerCase().match(re);
// no HTML tags present? nothing to do; exit now
var tagcount = (tags || []).length;
if (tagcount == 0)
return html;
var tagname, tag;
var ignoredtags = "<p><img><br><li><hr>";
var match;
var tagpaired = [];
var tagremove = [];
var needsRemoval = false;
// loop through matched tags in forward order
for (var ctag = 0; ctag < tagcount; ctag++) {
tagname = tags[ctag].replace(/<\/?(\w+).*/, "$1");
// skip any already paired tags
// and skip tags in our ignore list; assume they're self-closed
if (tagpaired[ctag] || ignoredtags.search("<" + tagname + ">") > -1)
continue;
tag = tags[ctag];
match = -1;
if (!/^<\//.test(tag)) {
// this is an opening tag
// search forwards (next tags), look for closing tags
for (var ntag = ctag + 1; ntag < tagcount; ntag++) {
if (!tagpaired[ntag] && tags[ntag] == "</" + tagname + ">") {
match = ntag;
break;
}
}
}
if (match == -1)
needsRemoval = tagremove[ctag] = true; // mark for removal
else
tagpaired[match] = true; // mark paired
}
if (!needsRemoval)
return html;
// delete all orphaned tags from the string
var ctag = 0;
html = html.replace(re, function (match) {
var res = tagremove[ctag] ? "" : match;
ctag++;
return res;
});
return html;
}
})();

View File

@ -0,0 +1,73 @@
(function () {
var converter = new Markdown.Converter();
Markdown.Extra.init(converter);
var editor = new Markdown.Editor(converter);
//======Image Uploader=====
var callbackFunc;
var dialogClose = function() {
$('#insertImageDialog').modal('hide');
$('#insertImageDialogURL').val('');
$('#insertImageDialogFile').val('');
$('#insertMediaDialogURL').val('');
$('#insertMediaDialogFile').val('');
$('#gallery-1').html(initial_image);
$('#gallery-2').html(initial_image);
};
$('#insertImageDialogInsert').click( function() {
callbackFunc( $('#insertImageDialogURL').val().length > 0 ? $('#insertImageDialogURL').val() : null );
dialogClose();
});
$('#insertImageDialogClose').click( function() {
callbackFunc(null);
dialogClose();
});
$('#insertImageDialogCancel').click( function() {
callbackFunc(null);
dialogClose();
});
$('#insertImageDialogFile').on('input', function(){
var file = $("#insertImageDialogFile").prop("files");
var formData = new FormData();
formData.append('file', file[0], file[0].name);
// Set up the request.
$.ajax({
type: "POST",
url: base_path + 'upload.php',
data: formData,
processData: false,
contentType: false,
success: function (response) {
if (response.error == '0')
{
callbackFunc(base_path + response.path);
dialogClose();
}
else
{
if (response.error !== '') alert(response.error);
else alert("An unknown error has occurred");
console.error("Bad Response");
console.error(response);
$('#insertImageDialogFile').val('');
}
},
failure: function (response) {
if (response.error !== '') alert(response.error);
else alert("An unknown error has occurred");
console.error("Unable to Upload");
console.error(response);
$('#insertImageDialogFile').val('');
}
});//ajax
});//oninput
editor.hooks.set('insertImageDialog', function(callback) {
$('#insertImageDialog').modal('show');
callbackFunc = callback;
return true; // tell the editor that we'll take care of getting the image url
});
//=====end image uploader=====
editor.run();
})();

View File

@ -0,0 +1,43 @@
// Usage:
//
// var myConverter = new Markdown.Editor(myConverter, null, { strings: Markdown.local.fr });
(function () {
Markdown.local = Markdown.local || {};
Markdown.local.fr = {
bold: "Gras <strong> Ctrl+B",
boldexample: "texte en gras",
italic: "Italique <em> Ctrl+I",
italicexample: "texte en italique",
link: "Hyperlien <a> Ctrl+L",
linkdescription: "description de l'hyperlien",
linkdialog: "<p><b>Insérer un hyperlien</b></p><p>http://example.com/ \"titre optionnel\"</p>",
quote: "Citation <blockquote> Ctrl+Q",
quoteexample: "Citation",
code: "Extrait de code <pre><code> Ctrl+K",
codeexample: "votre extrait de code",
image: "Image <img> Ctrl+G",
imagedescription: "description de l'image",
imagedialog: "<p><b>Insérer une image</b></p><p>http://example.com/images/diagram.jpg \"titre optionnel\"<br><br><a href='http://www.google.com/search?q=free+image+hosting' target='_blank'>Vous chercher un hébergement d'image grauit ?</a></p>",
olist: "Liste numérotée <ol> Ctrl+O",
ulist: "Liste à point <ul> Ctrl+U",
litem: "Elément de liste",
heading: "Titre <h1>/<h2> Ctrl+H",
headingexample: "Titre",
hr: "Trait horizontal <hr> Ctrl+R",
undo: "Annuler - Ctrl+Z",
redo: "Refaire - Ctrl+Y",
redomac: "Refaire - Ctrl+Shift+Z",
help: "Aide sur Markdown"
};
})();

View File

@ -0,0 +1,3 @@
GLOBAL.Markdown = {};
require('./Markdown.Extra.js');
exports.Extra = Markdown.Extra;

View File

@ -0,0 +1,2 @@
exports.Converter = require("./Markdown.Converter").Converter;
exports.getSanitizingConverter = require("./Markdown.Sanitizer").getSanitizingConverter;

View File

@ -0,0 +1,19 @@
{
"name": "pagedown",
"version": "1.1.0",
"description": "markdown converter, based on showdown",
"repository": {
"type": "hg",
"url": "https://code.google.com/p/pagedown/"
},
"keywords": ["markdown"],
"license": "MIT",
"files": [
"Markdown.Converter.js",
"Markdown.Sanitizer.js",
"node-pagedown.js"
],
"main": "node-pagedown.js",
"bugs": "http://code.google.com/p/pagedown/issues/list",
"homepage": "http://code.google.com/p/pagedown/wiki/PageDown"
}

1
system/admin/views/.htaccess Executable file
View File

@ -0,0 +1 @@
deny from all

21
system/admin/views/404.html.php Executable file
View File

@ -0,0 +1,21 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<!DOCTYPE html>
<html>
<head>
<link href='<?php echo site_url() ?>favicon.ico' rel='icon' type='image/x-icon'/>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" user-scalable="no"/>
<title>404 Not Found - <?php echo blog_title() ?></title>
<link href="<?php echo site_url() ?>themes/default/css/style.css" rel="stylesheet"/>
<!-- Include the Open Sans font -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="center message">
<h1><?php echo i18n('This_page_doesnt_exist');?></h1>
<p><?php echo i18n('Would_you_like_to_try_our');?> <a href="<?php echo site_url() ?>"><?php echo i18n('homepage');?></a> <?php echo i18n('instead');?> ?</p>
</div>
</body>
</html>

View File

@ -0,0 +1,381 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
$type = $type;
if ($type != 'is_post' && $type != 'is_image' && $type != 'is_video' && $type != 'is_audio' && $type != 'is_link' && $type != 'is_quote') {
$add = site_url() . 'admin/content';
header("location: $add");
}
$desc = get_category_info(null);
$tags = tag_cloud(true);
$tagslang = "content/data/tags.lang";
if (file_exists($tagslang)) {
$ptags = unserialize(file_get_contents($tagslang));
$tkey = array_keys($tags);
if (!empty($ptags)) {
$newlang = array_intersect_key($ptags, array_flip($tkey));
} else {
$newlang = array_combine($tkey, $tkey);
}
$tmp = serialize($newlang);
file_put_contents($tagslang, print_r($tmp, true), LOCK_EX);
}
$images = image_gallery(null, 1, 40);
?>
<link rel="stylesheet" type="text/css" href="<?php echo site_url() ?>system/admin/editor/css/editor.css"/>
<script src="<?php echo site_url() ?>system/resources/js/jquery-ui.min.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Converter.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Sanitizer.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Editor.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Extra.js"></script>
<link rel="stylesheet" href="<?php echo site_url() ?>system/resources/css/jquery-ui.css">
<script>
$( function() {
var availableTags = [
<?php foreach ($tags as $tag => $count):?>
"<?php echo tag_i18n($tag) ?>",
<?php endforeach;?>
];
function split( val ) {
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}
$( "#pTag" )
// don't navigate away from the field on tab when selecting an item
.on( "keydown", function( event ) {
if ( event.keyCode === 9 && // 9 = tab
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
} );
</script>
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<div class="notice" id="response"></div>
<div class="row">
<div class="hide-button" style="margin-bottom:1em;width:100%;text-align:right;"><button type="button" title="<?php echo i18n('Focus_mode');?>" id="hideButton" class="note-btn btn btn-sm <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "btn-light" : "btn-dark");?>" style="width:38px;height:38px;font-size:18px;" ><i class="fa fa-eye" aria-hidden="true"></i></button></div>
<div class="wmd-panel" style="width:100%;">
<form method="POST">
<div id="post-settings" class="row">
<div class="col-sm-6">
<label for="pTitle"><?php echo i18n('Title');?> <span class="required">*</span></label>
<input autofocus type="text" class="form-control text <?php if (isset($postTitle)) { if (empty($postTitle)) { echo 'error';}} ?>" id="pTitle" name="title" value="<?php if (isset($postTitle)) { echo $postTitle;} ?>"/>
<br>
<label for="pCategory"><?php echo i18n('Category');?> <span class="required">*</span></label>
<select id="pCategory" class="form-control" name="category">
<?php foreach ($desc as $d):?>
<option value="<?php echo $d->slug;?>"><?php echo $d->title;?></option>
<?php endforeach;?>
</select>
<br>
<label for="pTag"><?php echo i18n('Tags');?> <span class="required">*</span></label>
<input type="text" class="form-control text <?php if (isset($postTag)) { if (empty($postTag)) { echo 'error';}} ?>" id="pTag" name="tag" value="<?php if (isset($postTag)) { echo $postTag; } ?>" placeholder="<?php echo i18n('Comma_separated_values');?>"/>
<br>
<label for="pMeta"><?php echo i18n('Meta_description');?> (<?php echo i18n('optional');?>)</label>
<textarea id="pMeta" class="form-control" name="description" rows="3" cols="20" placeholder="<?php echo i18n('If_left_empty_we_will_excerpt_it_from_the_content_below');?>"><?php if (isset($p->description)) { echo $p->description;} ?></textarea>
<br>
</div>
<div class="col-sm-6">
<div class="form-row">
<div class="col">
<label for="pDate"><?php echo i18n('Date');?></label>
<input type="date" id="pDate" name="date" class="form-control text" value="<?php echo date('Y-m-d'); ?>">
</div>
<div class="col">
<label for="pTime"><?php echo i18n('Time');?></label>
<input step="1" type="time" id="pTime" name="time" class="form-control text" value="<?php echo date('H:i:s'); ?>">
</div>
<small style="margin-top:10px;"><em><?php echo i18n('Scheduled_tips');?></em></small>
</div>
<br>
<label for="pURL"><?php echo i18n('Slug');?> (<?php echo i18n('optional');?>)</label>
<input type="text" class="form-control text" id="pURL" name="url" value="<?php if (isset($postUrl)) { echo $postUrl;} ?>" placeholder="<?php echo i18n('If_the_url_is_left_empty_we_will_use_the_post_title');?>"/>
<br>
<?php if ($type == 'is_audio'):?>
<label for="pAudio"><?php echo i18n('Featured_Audio');?> <span class="required">*</span> (e.g Soundcloud)</label>
<textarea rows="2" cols="20" class="media-uploader form-control text <?php if (isset($postAudio)) { if (empty($postAudio)) { echo 'error';} } ?>" id="pAudio" name="audio"><?php if (isset($postAudio)) { echo $postAudio;} ?></textarea>
<input type="hidden" name="is_audio" value="is_audio">
<br>
<?php endif;?>
<?php if ($type == 'is_video'):?>
<label for="pVideo"><?php echo i18n('Featured_Video');?> <span class="required">*</span> (e.g Youtube)</label>
<textarea rows="2" cols="20" class="media-uploader form-control text <?php if (isset($postVideo)) { if (empty($postVideo)) { echo 'error';} } ?>" id="pVideo" name="video"><?php if (isset($postVideo)) { echo $postVideo;} ?></textarea>
<input type="hidden" name="is_video" value="is_video">
<br>
<?php endif;?>
<?php if ($type == 'is_image'):?>
<style>.imgPrev img {width:50%;} </style>
<label for="pImage"><?php echo i18n('Featured_Image');?> <span class="required">*</span></label>
<br>
<label class="btn btn-primary btn-sm" id="insertButton"><?php echo i18n('Insert_Image');?></label>
<br>
<div class="imgPrev"><?php if (isset($postImage)) { echo '<img id="imgFile" src="' . $postImage . '"/>';} ?></div>
<br>
<input type="text" class="media-uploader form-control text <?php if (isset($postImage)) { if (empty($postImage)) { echo 'error';}} ?>" id="pImage" name="image" readonly value="<?php if (isset($postImage)) { echo $postImage;} ?>">
<input type="hidden" name="is_image" value="is_image">
<br>
<?php endif;?>
<?php if ($type == 'is_quote'):?>
<label for="pQuote"><?php echo i18n('Featured_Quote');?> <span class="required">*</span></label>
<textarea rows="3" cols="20" class="form-control text <?php if (isset($postQuote)) { if (empty($postQuote)) { echo 'error';} } ?>" id="pQuote" name="quote"><?php if (isset($postQuote)) { echo $postQuote;} ?></textarea>
<input type="hidden" name="is_quote" value="is_quote">
<br>
<?php endif;?>
<?php if ($type == 'is_link'):?>
<label for="pLink"><?php echo i18n('Featured_Link');?> <span class="required">*</span></label>
<textarea rows="2" cols="20" class="form-control text <?php if (isset($postLink)) { if (empty($postLink)) { echo 'error';} } ?>" id="pLink" name="link"><?php if (isset($postLink)) { echo $postLink;} ?></textarea>
<input type="hidden" name="is_link" value="is_link">
<br>
<?php endif;?>
<?php if ($type == 'is_post'):?>
<input type="hidden" name="is_post" value="is_post">
<?php endif;?>
<input id="oldfile" type="hidden" name="oldfile" class="text"/>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
</div>
</div>
<div class="row">
<div class="col-sm-12" style="text-align:right;">
<button class="note-btn btn btn-sm <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "btn-light" : "btn-dark");?>" style="width:38px;height:38px;font-size:18px;" type="button" title="Toggle <?php echo i18n('Preview');?>" id="preview-toggle" class="btn btn-secondary btn-xs"><i class="fa fa-columns" aria-hidden="true"></i></button>
</div>
</div>
<div class="row">
<div class="col-sm-6" id="editor-col">
<div>
<input type="hidden" id="pType" name="posttype" value="<?php echo $type; ?>">
<label for="wmd-input"><?php echo i18n('Content');?> <span class="required">*</span></label>
<div id="wmd-button-bar" class="wmd-button-bar"></div>
<textarea id="wmd-input" class="form-control wmd-input <?php if (isset($postContent)) { if (empty($postContent)) { echo 'error'; } } ?>" name="content" cols="20" rows="15"><?php if (isset($postContent)) { echo $postContent;} ?></textarea><br>
<input type="submit" name="publish" class="btn btn-primary submit" value="<?php echo i18n('Publish');?>"/> <input type="submit" name="draft" class="btn btn-primary draft" value="<?php echo i18n('Save_as_draft');?>"/>
<br><br>
</div>
</div>
<div class="col-sm-6" id="preview-col">
<label><?php echo i18n('Preview');?></label>
<br>
<div id="wmd-preview" class="wmd-panel wmd-preview <?php if (config('admin.theme') === 'dark'){echo "card";}?>" style="width:100%;overflow:auto;"></div>
</div>
</div>
</form>
</div>
<style>
.wmd-prompt-background {z-index:10!important;}
#wmd-preview img {max-width:100%;}
.cover-container {
overflow: auto;
max-height: 65vh;
width: 100%;
white-space: nowrap;
}
.cover-item {
position: relative;
margin: 2px 2px;
border-top-right-radius: 2px;
width: 190px;
height: 140px;
vertical-align: top;
background-position: top left;
background-repeat: no-repeat;
background-size: cover;
float:left;
}
</style>
<div class="modal fade" id="insertImageDialog" tabindex="-1" role="dialog" aria-labelledby="insertImageDialogTitle" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<p class="modal-title" id="insertImageDialogTitle"><?php echo i18n('Insert_Image');?></p>
<button type="button" class="close" id="insertImageDialogClose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-9">
<div class="form-group">
<div class="row-fluid img-container" id="gallery-1">
<?php echo $images;?>
</div>
</div>
</div>
<div class="col">
<div class="form-group">
<label for="insertImageDialogURL">URL</label>
<textarea class="form-control" id="insertImageDialogURL" rows="5" placeholder="<?php echo i18n('Enter_image_URL');?>" ></textarea>
</div>
<hr>
<div class="form-group">
<label for="insertImageDialogFile"><?php echo i18n('Upload');?></label>
<input type="file" class="form-control-file" name="file" id="insertImageDialogFile" accept="image/png,image/jpeg,image/gif" />
</div>
<hr>
<div class="form-group">
<button type="button" class="btn btn-primary" id="insertImageDialogInsert"><?php echo i18n('Insert_Image');?></button>
<button type="button" class="btn btn-secondary" id="insertImageDialogCancel" data-dismiss="modal"><?php echo i18n('Cancel');?></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php if ($type == 'is_image'):?>
<div class="modal fade" id="insertMediaDialog" tabindex="-1" role="dialog" aria-labelledby="insertMediaDialogTitle" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<p class="modal-title" id="insertMediaDialogTitle"><?php echo i18n('Insert_Image');?></p>
<button type="button" class="close" id="insertMediaDialogClose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-9">
<div class="form-group">
<div class="row-fluid img-container" id="gallery-2">
<?php echo $images;?>
</div>
</div>
</div>
<div class="col">
<div class="form-group">
<label for="insertMediaDialogURL">URL</label>
<textarea class="form-control" id="insertMediaDialogURL" rows="5" placeholder="<?php echo i18n('Enter_image_URL');?>"></textarea>
</div>
<hr>
<div class="form-group">
<label for="insertMediaDialogFile"><?php echo i18n('Upload');?></label>
<input type="file" class="form-control-file" name="file" id="insertMediaDialogFile" accept="image/png,image/jpeg,image/gif" />
</div>
<hr>
<div class="form-group">
<button type="button" class="btn btn-primary" id="insertMediaDialogInsert"><?php echo i18n('Insert_Image');?></button>
<button type="button" class="btn btn-secondary" id="insertMediaDialogCancel" data-dismiss="modal"><?php echo i18n('Cancel');?></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endif;?>
</div>
<!-- Declare the base path. Important -->
<script type="text/javascript">
var base_path = '<?php echo site_url() ?>';
var initial_image = '<?php echo $images;?>';
var parent_page = '';
var addEdit = 'add';
var saveInterval = 60000;
</script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/editor.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/resources/js/media.uploader.js"></script>
<script>
function loadImages(page) {
$.ajax({
url: '<?php echo site_url();?>admin/gallery',
type: 'POST',
data: { page: page },
dataType: 'json',
success: function(response) {
$('#gallery-1').html(response.images);
$('#gallery-2').html(response.images);
}
});
}
$('.img-container').on("click", ".the-img", function(e) {
$('#insertMediaDialogURL').val($(e.target).attr('src'));
$('#insertImageDialogURL').val($(e.target).attr('src'));
});
</script>
<script>
function toggleDivs() {
var div1 = document.getElementById('post-settings');
if (div1.style.display === 'none') {
div1.style.display = '';
document.body.classList.add("sidebar-mini");
document.body.classList.remove("sidebar-collapse");
} else {
div1.style.display = 'none';
document.body.classList.remove("sidebar-mini");
document.body.classList.add("sidebar-collapse");
}
}
document.getElementById('hideButton').addEventListener('click', toggleDivs);
</script>
<?php if (config('autosave.enable') == 'true' ):?>
<script src="<?php echo site_url();?>system/resources/js/save_draft.js?v=1"></script>
<?php endif;?>
<script>
if (localStorage.getItem("preview-state") === "open") {
document.getElementById("editor-col").classList.remove('col-sm-12');
document.getElementById("editor-col").classList.add('col-sm-6');
document.getElementById("preview-col").style.display = '';
} else if (localStorage.getItem("preview-state") === "close") {
document.getElementById("editor-col").classList.remove('col-sm-6');
document.getElementById("editor-col").classList.add('col-sm-12');
document.getElementById("preview-col").style.display = 'none';
}
document.getElementById("preview-toggle").addEventListener("click", () => {
if (document.getElementById("editor-col").className.includes("col-sm-6")) {
document.getElementById("editor-col").classList.remove('col-sm-6');
document.getElementById("editor-col").classList.add('col-sm-12');
document.getElementById("preview-col").style.display = 'none';
localStorage.setItem("preview-state", 'close');
} else {
document.getElementById("editor-col").classList.remove('col-sm-12');
document.getElementById("editor-col").classList.add('col-sm-6');
document.getElementById("preview-col").style.display = '';
localStorage.setItem("preview-state", 'open');
}
})
</script>

View File

@ -0,0 +1,201 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php $images = image_gallery(null, 1, 40); ?>
<link rel="stylesheet" type="text/css" href="<?php echo site_url() ?>system/admin/editor/css/editor.css"/>
<script src="<?php echo site_url() ?>system/resources/js/jquery.min.js"></script>
<script src="<?php echo site_url() ?>system/resources/js/jquery-ui.min.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Converter.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Sanitizer.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Editor.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Extra.js"></script>
<link rel="stylesheet" href="<?php echo site_url() ?>system/resources/css/jquery-ui.css">
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<div class="notice" id="response"></div>
<div class="row">
<div class="hide-button" style="margin-bottom:1em;width:100%;text-align:right;"><button type="button" title="<?php echo i18n('Focus_mode');?>" id="hideButton" class="note-btn btn btn-sm <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "btn-light" : "btn-dark");?>" style="width:38px;height:38px;font-size:18px;" ><i class="fa fa-eye" aria-hidden="true"></i></button></div>
<div class="wmd-panel" style="width:100%;">
<form method="POST">
<div id="post-settings" class="row">
<div class="col-sm-6">
<label for="pTitle"><?php echo i18n('Title');?> <span class="required">*</span></label>
<input type="text" class="form-control text <?php if (isset($postTitle)) {if (empty($postTitle)) {echo 'error';}} ?>" id="pTitle" name="title" value="<?php if (isset($postTitle)) {echo $postTitle;} ?>"/>
<br>
<label for="pMeta"><?php echo i18n('Meta_description');?> (<?php echo i18n('optional');?>)</label>
<textarea id="pMeta" class="form-control" name="description" rows="3" cols="20" placeholder="<?php echo i18n('If_left_empty_we_will_excerpt_it_from_the_content_below');?>"><?php if (isset($p->description)) {echo $p->description;} ?></textarea>
<br>
</div>
<div class="col-sm-6">
<?php if ($type == 'is_page' || $type == 'is_subpage') :?>
<label for="pURL"><?php echo i18n('Slug');?> (<?php echo i18n('optional');?>)</label>
<input type="text" class="form-control text" id="pURL" name="url" value="<?php if (isset($postUrl)) {echo $postUrl;} ?>" placeholder="<?php echo i18n('If_the_url_is_left_empty_we_will_use_the_page_title');?>"/>
<br>
<?php endif;?>
</div>
</div>
<div class="row">
<div class="col-sm-12" style="text-align:right;">
<button class="note-btn btn btn-sm <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "btn-light" : "btn-dark");?>" style="width:38px;height:38px;font-size:18px;" type="button" title="Toggle <?php echo i18n('Preview');?>" id="preview-toggle" class="btn btn-secondary btn-xs"><i class="fa fa-columns" aria-hidden="true"></i></button>
</div>
</div>
<div class="row">
<div class="col-sm-6" id="editor-col">
<label for="wmd-input"><?php echo i18n('Content');?> <span class="required">*</span></label>
<div id="wmd-button-bar" class="wmd-button-bar"></div>
<textarea id="wmd-input" class="form-control wmd-input <?php if (isset($postContent)) {if (empty($postContent)) {echo 'error';}} ?>" name="content" cols="20" rows="10"><?php if (isset($postContent)) {echo $postContent;} ?></textarea>
<br>
<input type="hidden" id="pType" name="posttype" value="<?php echo $type; ?>">
<input id="oldfile" type="hidden" name="oldfile" class="text"/>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<?php if ($type == 'is_page' || $type == 'is_subpage') :?>
<input type="submit" name="submit" class="btn btn-primary submit" value="<?php echo i18n('Publish');?>"/> <input type="submit" name="draft" class="btn btn-primary draft" value="<?php echo i18n('Save_as_draft');?>"/>
<?php endif;?>
<?php if ($type == 'is_category') :?>
<input type="submit" name="submit" class="btn btn-primary submit" value="<?php echo i18n('Add_category');?>"/>
<?php endif;?>
</div>
<div class="col-sm-6" id="preview-col">
<label><?php echo i18n('Preview');?></label>
<br>
<div id="wmd-preview" class="wmd-panel wmd-preview <?php if (config('admin.theme') === 'dark'){echo "card";}?>" style="width:100%;overflow:auto;"></div>
</div>
</div>
</form>
</div>
<style>
.wmd-prompt-background {z-index:10!important;}
#wmd-preview img {max-width:100%;}
.cover-container {
overflow: auto;
max-height: 65vh;
width: 100%;
white-space: nowrap;
}
.cover-item {
position: relative;
margin: 2px 2px;
border-top-right-radius: 2px;
width: 190px;
height: 140px;
vertical-align: top;
background-position: top left;
background-repeat: no-repeat;
background-size: cover;
float:left;
}
</style>
<div class="modal fade" id="insertImageDialog" tabindex="-1" role="dialog" aria-labelledby="insertImageDialogTitle" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<p class="modal-title" id="insertImageDialogTitle"><?php echo i18n('Insert_Image');?></p>
<button type="button" class="close" id="insertImageDialogClose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-9">
<div class="form-group">
<div class="row-fluid img-container" id="gallery-1">
<?php echo $images;?>
</div>
</div>
</div>
<div class="col">
<div class="form-group">
<label for="insertImageDialogURL">URL</label>
<textarea class="form-control" id="insertImageDialogURL" rows="5" placeholder="<?php echo i18n('Enter_image_URL');?>" ></textarea>
</div>
<hr>
<div class="form-group">
<label for="insertImageDialogFile"><?php echo i18n('Upload');?></label>
<input type="file" class="form-control-file" name="file" id="insertImageDialogFile" accept="image/png,image/jpeg,image/gif" />
</div>
<hr>
<div class="form-group">
<button type="button" class="btn btn-primary" id="insertImageDialogInsert"><?php echo i18n('Insert_Image');?></button>
<button type="button" class="btn btn-secondary" id="insertImageDialogCancel" data-dismiss="modal"><?php echo i18n('Cancel');?></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Declare the base path. Important -->
<script type="text/javascript">
var base_path = '<?php echo site_url() ?>';
var initial_image = '<?php echo $images;?>';
var parent_page = '<?php echo isset($parent) ? $parent : '';?>';
var addEdit = 'add';
var saveInterval = 60000;
</script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/editor.js"></script>
<script>
function loadImages(page) {
$.ajax({
url: '<?php echo site_url();?>admin/gallery',
type: 'POST',
data: { page: page },
dataType: 'json',
success: function(response) {
$('#gallery-1').html(response.images);
$('#gallery-2').html(response.images);
}
});
}
$('.img-container').on("click", ".the-img", function(e) {
$('#insertMediaDialogURL').val($(e.target).attr('src'));
$('#insertImageDialogURL').val($(e.target).attr('src'));
});
</script>
<script>
function toggleDivs() {
var div1 = document.getElementById('post-settings');
if (div1.style.display === 'none') {
div1.style.display = '';
document.body.classList.add("sidebar-mini");
document.body.classList.remove("sidebar-collapse");
} else {
div1.style.display = 'none';
document.body.classList.remove("sidebar-mini");
document.body.classList.add("sidebar-collapse");
}
}
document.getElementById('hideButton').addEventListener('click', toggleDivs);
</script>
<?php if (config('autosave.enable') == 'true' ):?>
<?php if ($type == 'is_page' || $type == 'is_subpage') :?>
<script src="<?php echo site_url();?>system/resources/js/save_draft.js?v=1"></script>
<?php endif;?>
<?php endif;?>
<script>
if (localStorage.getItem("preview-state") === "open") {
document.getElementById("editor-col").classList.remove('col-sm-12');
document.getElementById("editor-col").classList.add('col-sm-6');
document.getElementById("preview-col").style.display = '';
} else if (localStorage.getItem("preview-state") === "close") {
document.getElementById("editor-col").classList.remove('col-sm-6');
document.getElementById("editor-col").classList.add('col-sm-12');
document.getElementById("preview-col").style.display = 'none';
}
document.getElementById("preview-toggle").addEventListener("click", () => {
if (document.getElementById("editor-col").className.includes("col-sm-6")) {
document.getElementById("editor-col").classList.remove('col-sm-6');
document.getElementById("editor-col").classList.add('col-sm-12');
document.getElementById("preview-col").style.display = 'none';
localStorage.setItem("preview-state", 'close');
} else {
document.getElementById("editor-col").classList.remove('col-sm-12');
document.getElementById("editor-col").classList.add('col-sm-6');
document.getElementById("preview-col").style.display = '';
localStorage.setItem("preview-state", 'open');
}
})
</script>

View File

@ -0,0 +1,48 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Add_user'); ?></h2>
<br>
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Username');?></label>
<div class="col-sm-10">
<input type="text" name="username" class="form-control" id="username-id" value="<?php if (isset($username)) { echo $username;} ?>" placeholder="<?php echo i18n('username');?>">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Role');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="user-role" id="admin-id" value="admin" >
<label class="form-check-label" for="admin-id">
Admin
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="user-role" id="editor-id" value="editor">
<label class="form-check-label" for="editor-id">
Editor
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="user-role" id="author-id" value="author" checked>
<label class="form-check-label" for="author-id">
Author
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Password');?></label>
<div class="col-sm-10">
<input type="password" name="password" class="form-control" id="password" value="<?php if (isset($password)) { echo $password;} ?>" placeholder="<?php echo i18n('password');?>">
</div>
</div>
<input type="submit" class="btn btn-primary" style="width:100px;" value="<?php echo i18n('Save');?>">
<span><a class="btn btn-primary" href="<?php echo site_url();?>admin/users"><?php echo i18n('Cancel');?></a></span>
</form>

View File

@ -0,0 +1,24 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
$title = config('blog.title');
$name = preg_replace('/[^A-Za-z0-9 ,.-]/u', '', strtolower($title));
$name = str_replace(' ', '-', $name);
$name = str_replace('--', '-', $name);
$name = str_replace('--', '-', $name);
$name = rtrim(ltrim($name, ' \,\.\-'), ' \,\.\-');
$timestamp = date('Y-m-d-H-i-s');
$dir = 'backup';
if (is_dir($dir)) {
Zip('content/', 'backup/' . $name . '_' . $timestamp . '.zip', true);
} else {
mkdir($dir, 0775, true);
Zip('content/', 'backup/' . $name . '_' . $timestamp . '.zip', true);
}
$redirect = site_url() . 'admin/backup';
header("Location: $redirect");
?>

View File

@ -0,0 +1,51 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if (login()) {
if (isset($_GET['file'])) {
$file = _h($_GET['file']);
$file = preg_replace('/\/|\\\\/','0',$file);
if (!empty($file)) {
unlink("backup/$file");
}
}
}
?>
<?php if (!extension_loaded('zip')) { ?>
<div class="callout callout-info">
<h5><i class="fa fa-info"></i> Note:</h5>
Please install the ZIP extension to use the backup feature.
</div>
<?php } ?>
<h2><?php echo i18n('Your_backups');?></h2>
<br>
<a class="btn btn-primary <?php if (!extension_loaded('zip')) { ?>disabled<?php } ?>" href="<?php echo site_url() ?>admin/backup-start"><?php echo i18n('Create_backup');?></a>
<br><br>
<?php
if (isset($_SESSION[site_url()]['user'])) {
$files = get_zip_files();
if (!empty($files)) {
krsort($files);
echo '<table class="table backup-list">';
echo '<tr class="head"><th>' . i18n('Filename') . '</th><th>'.i18n('Date').'</th><th>' . i18n('Operations') . '</th></tr>';
foreach ($files as $file) {
$arr = explode('_', pathinfo($file, PATHINFO_FILENAME));
$t = str_replace('-', '', $arr[1]);
$dt = new DateTime($t);
$timestamp = $dt->format("D, d F Y, H:i:s");
$url = site_url() . $file;
echo '<tr>';
echo '<td>' . pathinfo($file, PATHINFO_BASENAME) . '</td>';
echo '<td>' . $timestamp . '</td>';
echo '<td><a class="btn btn-primary btn-xs" target="_blank" href="' . $url . '">Download</a> <form method="GET"><input type="hidden" name="file" value="' . pathinfo($file, PATHINFO_BASENAME) . '"/><input type="submit" class="btn btn-danger btn-xs" name="submit" value="Delete"/></form></td>';
echo '</tr>';
}
echo '</table>';
} else {
echo i18n('No_available_backup');
}
}
?>

View File

@ -0,0 +1,30 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
$desc = get_category_info(null);
?>
<h2><?php echo i18n("Categories");?></h2>
<br>
<a class="btn btn-primary " href="<?php echo site_url();?>add/category"><?php echo i18n('Add_category');?></a>
<br><br>
<table class="table category-list">
<thead>
<tr class="head">
<th><?php echo i18n('Name');?></th>
<th><?php echo i18n('Description');?></th>
<th><?php echo i18n('Contents');?></th>
<th><?php echo i18n('Operations');?></th>
</tr>
</thead>
<tbody>
<?php foreach ($desc as $d):?>
<tr>
<td><a href="<?php echo site_url();?>admin/categories/<?php echo $d->slug;?>"><?php echo $d->title;?></a></td>
<td><?php echo $d->body;?></td>
<td><?php $total = get_draftcount($d->slug) + $d->count + get_scheduledcount($d->slug); echo $total?></td>
<?php if($d->slug !== 'uncategorized'):?>
<td><a class="btn btn-primary btn-xs" href="<?php echo $d->url;?>/edit?destination=admin/categories"><?php echo i18n('Edit');?></a> <?php if ($d->count == 0 && get_draftcount($d->slug) == 0 && get_scheduledcount($d->slug) == 0){echo '<a class="btn btn-danger btn-xs" href="' . $d->url . '/delete?destination=admin/categories">' . i18n('Delete') . '</a>';}?></td>
<?php endif;?>
</tr>
<?php endforeach;?>
</tbody>
</table>

View File

@ -0,0 +1,53 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2 class="post-index"><?php echo $category->title ?></h2>
<div><?php echo $category->body;?></div>
<br>
<?php if ($category->url !== site_url() . 'category/uncategorized'):?><a class="btn btn-primary right" href="<?php echo $category->url;?>/edit?destination=admin/categories"><?php echo i18n("Edit_category");?></a><?php endif;?>
<br><br>
<?php if (!empty($posts)) { ?>
<table class="table post-list">
<thead>
<tr class="head">
<th><?php echo i18n('Title');?></th>
<th><?php echo i18n('Published');?></th>
<th><?php echo i18n('Operations');?></th>
</tr>
</thead>
<tbody>
<?php foreach ($posts as $p): ?>
<tr>
<td><a target="_blank" href="<?php echo $p->url ?>"><?php echo $p->title ?></a></td>
<td><?php echo format_date($p->date) ?></td>
<?php if ($category->url !== site_url() . 'category/uncategorized') {?>
<td><a class="btn btn-primary btn-xs" href="<?php echo $p->url ?>/edit?destination=admin/categories/<?php echo $category->slug;?>"><?php echo i18n('Edit');?></a> <a
class="btn btn-danger btn-xs" href="<?php echo $p->url ?>/delete?destination=admin/categories/<?php echo $category->slug;?>"><?php echo i18n('Delete');?></a></td>
<?php } else {?>
<td><a class="btn btn-primary btn-xs" href="<?php echo $p->url ?>/edit?destination=admin/categories/uncategorized"><?php echo i18n('Edit');?></a> <a
class="btn btn-danger btn-xs" href="<?php echo $p->url ?>/delete?destination=admin/categories/uncategorized"><?php echo i18n('Delete');?></a></td>
<?php } ?>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<?php if (!empty($pagination['prev']) || !empty($pagination['next'])): ?>
<br>
<div class="pager">
<ul class="pagination">
<?php if (!empty($pagination['prev'])) { ?>
<li class="newer page-item"><a class="page-link" href="?page=<?php echo $page - 1 ?>" rel="prev">&#8592; <?php echo i18n('Newer');?></a></li>
<?php } else { ?>
<li class="page-item disabled" ><span class="page-link">&#8592; <?php echo i18n('Newer');?></span></li>
<?php } ?>
<li class="page-number page-item disabled"><span class="page-link"><?php echo $pagination['pagenum'];?></span></li>
<?php if (!empty($pagination['next'])) { ?>
<li class="older page-item" ><a class="page-link" href="?page=<?php echo $page + 1 ?>" rel="next"><?php echo i18n('Older');?> &#8594;</a></li>
<?php } else { ?>
<li class="page-item disabled" ><span class="page-link"><?php echo i18n('Older');?> &#8594;</span></li>
<?php } ?>
</ul>
</div>
<?php endif; ?>
<?php } else {
echo i18n('No_posts_found') . '!';
} ?>

View File

@ -0,0 +1,16 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
foreach (glob('cache/index/*.txt', GLOB_NOSORT) as $file) {
unlink($file);
}
rebuilt_cache('all');
foreach (glob('cache/page/*.cache', GLOB_NOSORT) as $file) {
unlink($file);
}
echo i18n('All_cache_has_been_deleted');
?>

View File

@ -0,0 +1,45 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Custom_Settings');?></h2>
<br>
<nav>
<div class="nav nav-tabs" id="nav-tab">
<a class="nav-item nav-link" id="nav-general-tab" href="<?php echo site_url();?>admin/config"><?php echo i18n('General');?></a>
<a class="nav-item nav-link" id="nav-profile-tab" href="<?php echo site_url();?>admin/config/reading"><?php echo i18n('Reading');?></a>
<a class="nav-item nav-link" id="nav-writing-tab" href="<?php echo site_url();?>admin/config/writing"><?php echo i18n('Writing');?></a>
<a class="nav-item nav-link" id="nav-widget-tab" href="<?php echo site_url();?>admin/config/widget"><?php echo i18n('Widget');?></a>
<a class="nav-item nav-link" id="nav-metatags-tab" href="<?php echo site_url();?>admin/config/metatags"><?php echo i18n('Metatags');?></a>
<a class="nav-item nav-link" id="nav-security-tab" href="<?php echo site_url();?>admin/config/security"><?php echo i18n('Security');?></a>
<a class="nav-item nav-link" id="nav-performance-tab" href="<?php echo site_url();?>admin/config/performance"><?php echo i18n('Performance');?></a>
<a class="nav-item nav-link active" id="nav-custom-tab" href="<?php echo site_url();?>admin/config/custom"><?php echo i18n('Custom');?></a>
</div>
</nav>
<br><br>
<p><?php echo i18n('hint_Use_CtrlCMDF_to_search_for_your_config_key_or_value');?></p>
<p><?php echo i18n('pro_tips_You_can_create_custom_config_key_and_print_out_your_config_key_value_anywhere_in_your_template');?></p>
<p><code>&lt;?php echo config('<?php echo i18n('your_key');?>'); ?&gt;</code></p>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<table class="table" id="config">
<tr>
<td><input type="text" class="form-control" name="newKey" placeholder="<?php echo i18n('Your_New_Config_Key');?>"></td>
<td><input type="text" class="form-control" name="newValue" placeholder="<?php echo i18n('Your_New_Value');?>"></td>
</tr>
<?php
global $config_file;
$array = array();
if (file_exists($config_file)) {
$array = parse_ini_file($config_file, true);
}
$configList = json_decode(file_get_contents('system/configList.json', true));
foreach ($array as $key => $value) {
if (!in_array($key, $configList)) {
echo '<tr>';
echo '<td><label for="' . $key . '">' . $key . '</label></td>';
echo '<td><input class="form-control" type="text" id="' . $key . '" name="-config-' . $key . '" value="' . valueMaker($value) . '"></td>';
echo '</tr>';
}
}
?>
</table>
<input type="submit" class="form-control btn-primary btn-sm" style="width:100px;" value="<?php echo i18n('Save');?>">
</form>

View File

@ -0,0 +1,254 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
global $config_file;
$array = array();
if (file_exists($config_file)) {
$array = parse_ini_file($config_file, true);
}
$homeFormat = config('home.title.format');
if (empty($homeFormat)) {
$homeFormat = '%blog_title% - %blog_tagline%';
}
$postFormat = config('post.title.format');
if (empty($postFormat)) {
$postFormat = '%post_title% - %blog_title%';
}
$pageFormat = config('page.title.format');
if (empty($pageFormat)) {
$pageFormat = '%page_title% - %blog_title%';
}
$categoryFormat = config('category.title.format');
if (empty($categoryFormat)) {
$categoryFormat = '%category_title% - %blog_title%';
}
$tagFormat = config('tag.title.format');
if (empty($tagFormat)) {
$tagFormat = '%tag_title% - %blog_title%';
}
$searchFormat = config('search.title.format');
if (empty($searchFormat)) {
$searchFormat = '%search_title% - %blog_title%';
}
$archiveFormat = config('archive.title.format');
if (empty($archiveFormat)) {
$archiveFormat = '%archive_title% - %blog_title%';
}
$typeFormat = config('type.title.format');
if (empty($typeFormat)) {
$typeFormat = '%type_title% - %blog_title%';
}
$blogFormat = config('blog.title.format');
if (empty($blogFormat)) {
$blogFormat = 'Blog - %blog_title%';
}
$profileFormat = config('profile.title.format');
if (empty($profileFormat)) {
$profileFormat = '%author_name% - %blog_title%';
}
$defaultFormat = config('default.title.format');
if (empty($defaultFormat)) {
$defaultFormat = '%page_title% - %blog_title%';
}
?>
<h2><?php echo i18n('Metatags_Settings');?></h2>
<br>
<?php if (!extension_loaded('gd')) { ?>
<div class="callout callout-info">
<h5><i class="fa fa-info"></i> Note:</h5>
Please install and enable the GD extension to use the thumbnail feature.
</div>
<?php } ?>
<nav>
<div class="nav nav-tabs" id="nav-tab">
<a class="nav-item nav-link" id="nav-general-tab" href="<?php echo site_url();?>admin/config"><?php echo i18n('General');?></a>
<a class="nav-item nav-link" id="nav-profile-tab" href="<?php echo site_url();?>admin/config/reading"><?php echo i18n('Reading');?></a>
<a class="nav-item nav-link" id="nav-writing-tab" href="<?php echo site_url();?>admin/config/writing"><?php echo i18n('Writing');?></a>
<a class="nav-item nav-link" id="nav-widget-tab" href="<?php echo site_url();?>admin/config/widget"><?php echo i18n('Widget');?></a>
<a class="nav-item nav-link active" id="nav-metatags-tab" href="<?php echo site_url();?>admin/config/metatags"><?php echo i18n('Metatags');?></a>
<a class="nav-item nav-link" id="nav-security-tab" href="<?php echo site_url();?>admin/config/security"><?php echo i18n('Security');?></a>
<a class="nav-item nav-link" id="nav-performance-tab" href="<?php echo site_url();?>admin/config/performance"><?php echo i18n('Performance');?></a>
<a class="nav-item nav-link" id="nav-custom-tab" href="<?php echo site_url();?>admin/config/custom"><?php echo i18n('Custom');?></a>
</div>
</nav>
<br><br>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<h4><?php echo i18n('Permalink');?></h4>
<hr>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Enable_blog_URL');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-blog.enable" id="blog.enable1" value="true" <?php if (config('blog.enable') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="blog.enable1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-blog.enable" id="blog.enable2" value="false" <?php if (config('blog.enable') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="blog.enable2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="blog.path" class="col-sm-2 col-form-label">Blog Path</label>
<div class="col-sm-10">
<input type="text" name="-config-blog.path" class="form-control" id="blog.path" placeholder="blog" value="<?php echo config('blog.path');?>">
</div>
</div>
<div class="form-group row">
<label for="blog.string" class="col-sm-2 col-form-label">Blog String</label>
<div class="col-sm-10">
<input type="text" name="-config-blog.string" class="form-control" id="blog.string" placeholder="Blog" value="<?php echo config('blog.string');?>">
</div>
</div>
<div class="form-group row">
<label for="custom.permalink" class="col-sm-2 col-form-label"><?php echo i18n('Permalink');?> Prefix</label>
<div class="col-sm-10">
<input type="text" name="-config-permalink.type" class="form-control" id="permalink.type" value="<?php echo permalink_type();?>" placeholder="default">
<p class="title-format" style="margin-bottom:5px;"><code>default</code> <?php echo i18n('year_month_your_post_slug');?></p>
<p class="title-format" style="margin-bottom:5px;"><code>post</code> <?php echo i18n('post_your_post_slug');?></p>
</div>
</div>
<br>
<h4><?php echo i18n('Metatags');?></h4>
<hr>
<div class="form-group row">
<label for="description.char" class="col-sm-2 col-form-label"><?php echo i18n('Meta_description_character');?></label>
<div class="col-sm-10">
<input type="number" name="-config-description.char" class="form-control" id="description.char" value="<?php echo config('description.char');?>">
</div>
</div>
<div class="form-group row">
<label for="read.more" class="col-sm-2 col-form-label"><?php echo i18n('Breadcrumb_home_text');?></label>
<div class="col-sm-10">
<input type="text" name="-config-breadcrumb.home" class="form-control" id="breadcrumb.home" value="<?php echo valueMaker(config('breadcrumb.home'));?>" placeholder="<?php echo i18n('Home');?>">
</div>
</div>
<div class="form-group row">
<label for="favicon.image" class="col-sm-2 col-form-label">Favicon Image</label>
<div class="col-sm-10">
<input type="text" name="-config-favicon.image" class="form-control" id="favicon.image" value="<?php echo config('favicon.image');?>" placeholder="<?php echo site_url();?>favicon.png">
</div>
</div>
<div class="form-group row">
<label for="default.image" class="col-sm-2 col-form-label"><?php echo i18n('default');?> Image</label>
<div class="col-sm-10">
<input type="text" name="-config-default.image" class="form-control" id="default.image" value="<?php echo config('default.image');?>" placeholder="<?php echo site_url();?>system/resources/images/logo-big.png">
</div>
</div>
<div class="form-group row">
<label for="thumbnail.width" class="col-sm-2 col-form-label">Thumbnail Width</label>
<div class="col-sm-10">
<input type="number" name="-config-thumbnail.width" class="form-control" id="thumbnail.width" value="<?php echo config('thumbnail.width');?>">
</div>
</div>
<br>
<h4>Title formats</h4>
<hr>
<style>.title-format {margin-top:5px;font-size:95%} .title-format code {display:inline-block;margin-left:10px; margin-bottom:5px;color: #333; background: #fbf7f0; padding: 5px; border-radius: .25rem; border: 1px solid #e4e4e4;}</style>
<div class="form-group row">
<label for="home.title.format" class="col-sm-2 col-form-label"><?php echo i18n('home');?></label>
<div class="col-sm-10">
<input type="text" name="-config-home.title.format" class="form-control" id="home.title.format" value="<?php echo $homeFormat;?>" placeholder="%blog_title% - %blog_tagline%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="post.title.format" class="col-sm-2 col-form-label"><?php echo i18n('posts');?></label>
<div class="col-sm-10">
<input type="text" name="-config-post.title.format" class="form-control" id="post.title.format" value="<?php echo $postFormat;?>" placeholder="%post_title% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%post_title%</code> <code>%post_description%</code> <code>%post_category%</code> <code>%post_tag%</code> <code>%post_author%</code> <code>%post_type%</code></p>
</div>
</div>
<div class="form-group row">
<label for="page.title.format" class="col-sm-2 col-form-label"><?php echo i18n('static_page');?></label>
<div class="col-sm-10">
<input type="text" name="-config-page.title.format" class="form-control" id="page.title.format" value="<?php echo $pageFormat;?>" placeholder="%page_title% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%page_title%</code> <code>%page_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="category.title.format" class="col-sm-2 col-form-label"><?php echo i18n('category');?></label>
<div class="col-sm-10">
<input type="text" name="-config-category.title.format" class="form-control" id="category.title.format" value="<?php echo $categoryFormat;?>" placeholder="%category_title% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%category_title%</code> <code>%category_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="tag.title.format" class="col-sm-2 col-form-label"><?php echo i18n('tag');?></label>
<div class="col-sm-10">
<input type="text" name="-config-tag.title.format" class="form-control" id="tag.title.format" value="<?php echo $tagFormat;?>" placeholder="%tag_title% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%tag_title%</code> <code>%tag_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="archive.title.format" class="col-sm-2 col-form-label"><?php echo i18n('archives');?></label>
<div class="col-sm-10">
<input type="text" name="-config-archive.title.format" class="form-control" id="archive.title.format" value="<?php echo $archiveFormat;?>" placeholder="%archive_title% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%archive_title%</code> <code>%archive_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="search.title.format" class="col-sm-2 col-form-label"><?php echo i18n('search');?></label>
<div class="col-sm-10">
<input type="text" name="-config-search.title.format" class="form-control" id="search.title.format" value="<?php echo $searchFormat;?>" placeholder="%search_title% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%search_title%</code> <code>%search_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="type.title.format" class="col-sm-2 col-form-label">Type</label>
<div class="col-sm-10">
<input type="text" name="-config-type.title.format" class="form-control" id="type.title.format" value="<?php echo $typeFormat;?>" placeholder="%type_title% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%type_title%</code> <code>%type_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="profile.title.format" class="col-sm-2 col-form-label"><?php echo i18n('author');?></label>
<div class="col-sm-10">
<input type="text" name="-config-profile.title.format" class="form-control" id="profile.title.format" value="<?php echo $profileFormat;?>" placeholder="%author_name% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%author_name%</code> <code>%author_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="blog.title.format" class="col-sm-2 col-form-label">Blog</label>
<div class="col-sm-10">
<input type="text" name="-config-blog.title.format" class="form-control" id="blog.title.format" value="<?php echo $blogFormat;?>" placeholder="Blog - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code></p>
</div>
</div>
<div class="form-group row">
<label for="default.title.format" class="col-sm-2 col-form-label"><?php echo i18n('default');?></label>
<div class="col-sm-10">
<input type="text" name="-config-default.title.format" class="form-control" id="default.title.format" value="<?php echo $defaultFormat;?>" placeholder="%page_title% - %blog_title%">
<p class="title-format">Available shortcode: <code>%blog_title%</code> <code>%blog_tagline%</code> <code>%blog_description%</code> <code>%page_title%</code></p>
</div>
</div>
<br>
<h4><?php echo i18n('Sitemap');?></h4>
<hr>
<p><?php echo i18n('Valid_values_range_from_0_to_1.0._See');?> <a target="_blank" href="https://www.sitemaps.org/protocol.html">https://www.sitemaps.org/protocol.html</a></p>
<?php foreach($array as $key => $value) {?>
<?php if (stripos($key, 'sitemap.priority') !== false):?>
<?php if ($key !== 'sitemap.priority.archiveDay'):?>
<div class="form-group row">
<label for="<?php echo $key;?>" class="col-sm-2 col-form-label"><?php echo $key;?></label>
<div class="col-sm-10">
<input step="any" type="number" name="-config-<?php echo $key;?>" class="form-control" id="<?php echo $key;?>" value="<?php echo $value;?>">
</div>
</div>
<?php endif;?>
<?php endif; ?>
<?php } ?>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary"><?php echo i18n('Save_Config');?></button>
</div>
</div>
</form>

View File

@ -0,0 +1,131 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Performance_Settings');?></h2>
<br>
<nav>
<div class="nav nav-tabs" id="nav-tab">
<a class="nav-item nav-link" id="nav-general-tab" href="<?php echo site_url();?>admin/config"><?php echo i18n('General');?></a>
<a class="nav-item nav-link" id="nav-profile-tab" href="<?php echo site_url();?>admin/config/reading"><?php echo i18n('Reading');?></a>
<a class="nav-item nav-link" id="nav-writing-tab" href="<?php echo site_url();?>admin/config/writing"><?php echo i18n('Writing');?></a>
<a class="nav-item nav-link" id="nav-widget-tab" href="<?php echo site_url();?>admin/config/widget"><?php echo i18n('Widget');?></a>
<a class="nav-item nav-link" id="nav-metatags-tab" href="<?php echo site_url();?>admin/config/metatags"><?php echo i18n('Metatags');?></a>
<a class="nav-item nav-link" id="nav-security-tab" href="<?php echo site_url();?>admin/config/security"><?php echo i18n('Security');?></a>
<a class="nav-item nav-link active" id="nav-performance-tab" href="<?php echo site_url();?>admin/config/performance"><?php echo i18n('Performance');?></a>
<a class="nav-item nav-link" id="nav-custom-tab" href="<?php echo site_url();?>admin/config/custom"><?php echo i18n('Custom');?></a>
</div>
</nav>
<br><br>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<div class="form-group row">
<label for="cache.expiration" class="col-sm-2 col-form-label"><?php echo i18n('Cache_expiration');?></label>
<div class="col-sm-10">
<input type="number" name="-config-cache.expiration" class="form-control" id="cache.expiration" value="<?php echo config('cache.expiration');?>">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Cache_off');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-cache.off" id="cache.off1" value="true" <?php if (config('cache.off') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="cache.off1">
<?php echo i18n('Yes_not_recommended');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-cache.off" id="cache.off2" value="false" <?php if (config('cache.off') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="cache.off2">
<?php echo i18n('Not');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Cache_timestamp');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-cache.timestamp" id="cache.timestamp1" value="true" <?php if (config('cache.timestamp') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="cache.timestamp1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-cache.timestamp" id="cache.timestamp2" value="false" <?php if (config('cache.timestamp') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="generation.time2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Page_generation_time');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-generation.time" id="generation.time1" value="true" <?php if (config('generation.time') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="generation.time1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-generation.time" id="generation.time2" value="false" <?php if (config('generation.time') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="generation.time2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
</div>
</div>
<br>
<h4>Multisite</h4>
<hr>
<div class="form-group row">
<label class="col-sm-2 col-form-label">Multisite</label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-multi.site" id="multi.site1" value="true" <?php if (config('multi.site') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="multi.site1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-multi.site" id="multi.site2" value="false" <?php if (config('multi.site') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="multi.site2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
</div>
</div>
<br>
<h4><?php echo i18n('Github_pre_release');?></h4>
<hr>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Pre_release');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-prerelease" id="prerelease1" value="true" <?php if (config('prerelease') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="prerelease1">
<?php echo i18n('Yes_Im_in');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-prerelease" id="prerelease2" value="false" <?php if (config('prerelease') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="prerelease2">
<?php echo i18n('Nope');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary"><?php echo i18n('Save_Config');?></button>
</div>
</div>
</form>

View File

@ -0,0 +1,173 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Reading_Settings');?></h2>
<br>
<nav>
<div class="nav nav-tabs" id="nav-tab">
<a class="nav-item nav-link" id="nav-general-tab" href="<?php echo site_url();?>admin/config"><?php echo i18n('General');?></a>
<a class="nav-item nav-link active" id="nav-profile-tab" href="<?php echo site_url();?>admin/config/reading"><?php echo i18n('Reading');?></a>
<a class="nav-item nav-link" id="nav-writing-tab" href="<?php echo site_url();?>admin/config/writing"><?php echo i18n('Writing');?></a>
<a class="nav-item nav-link" id="nav-widget-tab" href="<?php echo site_url();?>admin/config/widget"><?php echo i18n('Widget');?></a>
<a class="nav-item nav-link" id="nav-metatags-tab" href="<?php echo site_url();?>admin/config/metatags"><?php echo i18n('Metatags');?></a>
<a class="nav-item nav-link" id="nav-security-tab" href="<?php echo site_url();?>admin/config/security"><?php echo i18n('Security');?></a>
<a class="nav-item nav-link" id="nav-performance-tab" href="<?php echo site_url();?>admin/config/performance"><?php echo i18n('Performance');?></a>
<a class="nav-item nav-link" id="nav-custom-tab" href="<?php echo site_url();?>admin/config/custom"><?php echo i18n('Custom');?></a>
</div>
</nav>
<br><br>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Front_page_displays');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-static.frontpage" id="static.frontpage1" value="false" <?php if (config('static.frontpage') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="static.frontpage1">
<?php echo i18n('Your_latest_blog_posts');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-static.frontpage" id="static.frontpage2" value="true" <?php if (config('static.frontpage') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="static.frontpage2">
<?php echo i18n('Static_page');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="posts.perpage" class="col-sm-2 col-form-label"><?php echo i18n('Posts_in_front_page_show_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-posts.perpage" class="form-control" id="posts.perpage" value="<?php echo config('posts.perpage');?>">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Blog_posts_displayed_as');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-teaser.type" id="teaser.type1" value="full" <?php if (config('teaser.type') === 'full'):?>checked<?php endif;?>>
<label class="form-check-label" for="teaser.type1">
<?php echo i18n('Full_post');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-teaser.type" id="teaser.type2" value="trimmed" <?php if (config('teaser.type') === 'trimmed'):?>checked<?php endif;?>>
<label class="form-check-label" for="teaser.type2">
<?php echo i18n('Summary');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="teaser.char" class="col-sm-2 col-form-label"><?php echo i18n('Summary_character');?></label>
<div class="col-sm-10">
<input type="number" name="-config-teaser.char" class="form-control" id="teaser.char" value="<?php echo config('teaser.char');?>">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('summary_behavior');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-teaser.behave" id="teaser.behave1" value="default" <?php if (config('teaser.behave') === 'default' || is_null(config('teaser.behave'))):?>checked<?php endif;?>>
<label class="form-check-label" for="teaser.behave1">
<?php echo i18n('Default');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-teaser.behave" id="teaser.behave2" value="check" <?php if (config('teaser.behave') === 'check'):?>checked<?php endif;?>>
<label class="form-check-label" for="teaser.behave2">
<?php echo i18n('Check_shortcode');?>
</label>
</div>
</div>
<small><em><?php echo i18n('in_summary_mode_whether_check_the_shortcode_first_or_not_before_trim_the_content_to_x_char');?></em></small>
</div>
</div>
<div class="form-group row">
<label for="read.more" class="col-sm-2 col-form-label"><?php echo i18n('Read_more_text');?></label>
<div class="col-sm-10">
<input type="text" name="-config-read.more" class="form-control" id="read.more" value="<?php echo valueMaker(config('read.more'));?>" placeholder="<?php echo i18n('Read_more_text_placeholder');?>">
</div>
</div>
<br>
<h4><?php echo i18n('Posts_index_settings');?></h4>
<hr>
<div class="form-group row">
<label for="category.perpage" class="col-sm-2 col-form-label"><?php echo i18n('Posts_in_category_page_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-category.perpage" class="form-control" id="category.perpage" value="<?php echo config('category.perpage');?>">
</div>
</div>
<div class="form-group row">
<label for="archive.perpage" class="col-sm-2 col-form-label"><?php echo i18n('Posts_in_archive_page_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-archive.perpage" class="form-control" id="archive.perpage" value="<?php echo config('archive.perpage');?>">
</div>
</div>
<div class="form-group row">
<label for="tag.perpage" class="col-sm-2 col-form-label"><?php echo i18n('Posts_in_tag_page_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-tag.perpage" class="form-control" id="tag.perpage" value="<?php echo config('tag.perpage');?>">
</div>
</div>
<div class="form-group row">
<label for="search.perpage" class="col-sm-2 col-form-label"><?php echo i18n('Posts_in_search_result_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-search.perpage" class="form-control" id="search.perpage" value="<?php echo config('search.perpage');?>">
</div>
</div>
<div class="form-group row">
<label for="type.perpage" class="col-sm-2 col-form-label"><?php echo i18n('Posts_in_type_page_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-type.perpage" class="form-control" id="type.perpage" value="<?php echo config('type.perpage');?>">
</div>
</div>
<div class="form-group row">
<label for="profile.perpage" class="col-sm-2 col-form-label"><?php echo i18n('Posts_in_profile_page_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-profile.perpage" class="form-control" id="profile.perpage" value="<?php echo config('profile.perpage');?>">
</div>
</div>
<br>
<h4><?php echo i18n('RSS_settings');?></h4>
<hr>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('RSS_feeds_description_select');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-rss.description" id="rss.description1" value="body" <?php if (config('rss.description') === 'body'):?>checked<?php endif;?>>
<label class="form-check-label" for="rss.description1">
<?php echo i18n('RSS_description_body');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-rss.description" id="rss.description2" value="meta" <?php if (config('rss.description') === 'meta'):?>checked<?php endif;?>>
<label class="form-check-label" for="rss.description2">
<?php echo i18n('RSS_description_meta');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="rss.count" class="col-sm-2 col-form-label"><?php echo i18n('RSS_feeds_show_the_most_recent');?></label>
<div class="col-sm-10">
<input type="number" name="-config-rss.count" class="form-control" id="rss.count" value="<?php echo config('rss.count');?>">
</div>
</div>
<div class="form-group row">
<label for="rss.char" class="col-sm-2 col-form-label"><?php echo i18n('RSS_character');?></label>
<div class="col-sm-10">
<input type="number" name="-config-rss.char" class="form-control" id="rss.char" value="<?php echo config('rss.char');?>">
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary"><?php echo i18n('Save_Config');?></button>
</div>
</div>
</form>

View File

@ -0,0 +1,88 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Security_Settings');?></h2>
<br>
<nav>
<div class="nav nav-tabs" id="nav-tab">
<a class="nav-item nav-link" id="nav-general-tab" href="<?php echo site_url();?>admin/config"><?php echo i18n('General');?></a>
<a class="nav-item nav-link" id="nav-profile-tab" href="<?php echo site_url();?>admin/config/reading"><?php echo i18n('Reading');?></a>
<a class="nav-item nav-link" id="nav-writing-tab" href="<?php echo site_url();?>admin/config/writing"><?php echo i18n('Writing');?></a>
<a class="nav-item nav-link" id="nav-widget-tab" href="<?php echo site_url();?>admin/config/widget"><?php echo i18n('Widget');?></a>
<a class="nav-item nav-link" id="nav-metatags-tab" href="<?php echo site_url();?>admin/config/metatags"><?php echo i18n('Metatags');?></a>
<a class="nav-item nav-link active" id="nav-security-tab" href="<?php echo site_url();?>admin/config/security"><?php echo i18n('Security');?></a>
<a class="nav-item nav-link" id="nav-performance-tab" href="<?php echo site_url();?>admin/config/performance"><?php echo i18n('Performance');?></a>
<a class="nav-item nav-link" id="nav-custom-tab" href="<?php echo site_url();?>admin/config/custom"><?php echo i18n('Custom');?></a>
</div>
</nav>
<br><br>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<h4><?php echo i18n('Recaptcha');?></h4>
<hr>
<p><?php echo i18n('Get_one_here');?> <a target="_blank" href="https://www.google.com/recaptcha/admin">https://www.google.com/recaptcha/admin</a>
<p><?php echo i18n('Cloudflare_info');?> <a target="_blank" href="https://developers.cloudflare.com/turnstile/">https://developers.cloudflare.com/turnstile/</a>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Recaptcha');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-login.protect.system" id="login.protect.system1" value="disable" <?php if (config('login.protect.system') === 'disable'):?>checked<?php endif;?>>
<label class="form-check-label" for="login.protect.system1">
<?php echo i18n('Disabled');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-login.protect.system" id="login.protect.system2" value="google" <?php if (config('login.protect.system') === 'google'):?>checked<?php endif;?>>
<label class="form-check-label" for="login.protect.system2">
Google reCaptcha
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-login.protect.system" id="login.protect.system3" value="cloudflare" <?php if (config('login.protect.system') === 'cloudflare'):?>checked<?php endif;?>>
<label class="form-check-label" for="login.protect.system3">
Cloudflare Turnstile
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="login.protect.public" class="col-sm-2 col-form-label"><?php echo i18n('Site_Key');?></label>
<div class="col-sm-10">
<input type="text" name="-config-login.protect.public" class="form-control" id="login.protect.public" value="<?php echo valueMaker(config('login.protect.public'));?>" placeholder="<?php echo i18n('widget_key_placeholder');?>">
</div>
</div>
<div class="form-group row">
<label for="login.protect.private" class="col-sm-2 col-form-label"><?php echo i18n('Secret_Key');?></label>
<div class="col-sm-10">
<input type="text" name="-config-login.protect.private" class="form-control" id="login.protect.private" value="<?php echo valueMaker(config('login.protect.private'));?>" placeholder="<?php echo i18n('widget_key_placeholder');?>">
</div>
</div>
<br>
<h4><?php echo i18n('mfa_config');?></h4>
<hr>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('set_mfa_globally');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-mfa.state" id="mfa.state1" value="true" <?php if (config('mfa.state') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="mfa.state1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-mfa.state" id="mfa.state2" value="false" <?php if (config('mfa.state') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="mfa.state2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
<small><em><?php echo i18n('explain_mfa');?></em></small>
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary"><?php echo i18n('Save_Config');?></button>
</div>
</div>
</form>

View File

@ -0,0 +1,261 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Widget_Settings');?></h2>
<br>
<nav>
<div class="nav nav-tabs" id="nav-tab">
<a class="nav-item nav-link" id="nav-general-tab" href="<?php echo site_url();?>admin/config"><?php echo i18n('General');?></a>
<a class="nav-item nav-link" id="nav-profile-tab" href="<?php echo site_url();?>admin/config/reading"><?php echo i18n('Reading');?></a>
<a class="nav-item nav-link" id="nav-writing-tab" href="<?php echo site_url();?>admin/config/writing"><?php echo i18n('Writing');?></a>
<a class="nav-item nav-link active" id="nav-widget-tab" href="<?php echo site_url();?>admin/config/widget"><?php echo i18n('Widget');?></a>
<a class="nav-item nav-link" id="nav-metatags-tab" href="<?php echo site_url();?>admin/config/metatags"><?php echo i18n('Metatags');?></a>
<a class="nav-item nav-link" id="nav-security-tab" href="<?php echo site_url();?>admin/config/security"><?php echo i18n('Security');?></a>
<a class="nav-item nav-link" id="nav-performance-tab" href="<?php echo site_url();?>admin/config/performance"><?php echo i18n('Performance');?></a>
<a class="nav-item nav-link" id="nav-custom-tab" href="<?php echo site_url();?>admin/config/custom"><?php echo i18n('Custom');?></a>
</div>
</nav>
<br><br>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<div class="form-group row">
<label for="related.count" class="col-sm-2 col-form-label"><?php echo i18n('Related_widget_posts_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-related.count" class="form-control" id="related.count" value="<?php echo config('related.count');?>">
</div>
</div>
<div class="form-group row">
<label for="recent.count" class="col-sm-2 col-form-label"><?php echo i18n('Recent_posts_widget_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-recent.count" class="form-control" id="recent.count" value="<?php echo config('recent.count');?>">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Popular_posts_widget');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-views.counter" id="views.counter1" value="true" <?php if (config('views.counter') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="views.counter1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-views.counter" id="views.counter2" value="false" <?php if (config('views.counter') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="views.counter2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="popular.count" class="col-sm-2 col-form-label"><?php echo i18n('Popular_posts_widget_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-popular.count" class="form-control" id="popular.count" value="<?php echo config('popular.count');?>">
</div>
</div>
<div class="form-group row">
<label for="tagcloud.count" class="col-sm-2 col-form-label"><?php echo i18n('Tagcloud_widget_at_most');?></label>
<div class="col-sm-10">
<input type="number" name="-config-tagcloud.count" class="form-control" id="tagcloud.count" value="<?php echo config('tagcloud.count');?>">
</div>
</div>
<br>
<h4>TOC (Table of Contents)</h4>
<hr>
<div class="form-group row">
<label for="toc.label" class="col-sm-2 col-form-label">TOC label</label>
<div class="col-sm-10">
<input type="text" name="-config-toc.label" class="form-control" id="toc.label" value="<?php if(is_null(config('toc.label'))) {echo 'Table of Contents';} else {echo config('toc.label');};?>" placeholder="Table of Contents">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">TOC initial state</label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-toc.state" id="toc.state1" value="open" <?php if (config('toc.state') === 'open'):?>checked<?php endif;?>>
<label class="form-check-label" for="toc.state1">
Open
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-toc.state" id="toc.state2" value="close" <?php if (config('toc.state') === 'close' || is_null(config('toc.state'))):?>checked<?php endif;?>>
<label class="form-check-label" for="toc.state2">
Close
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">TOC styling</label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-toc.style" id="toc.style1" value="default" <?php if (config('toc.style') === 'default' || is_null(config('toc.style'))):?>checked<?php endif;?>>
<label class="form-check-label" for="toc.style1">
Default
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-toc.style" id="toc.style2" value="theme" <?php if (config('toc.style') === 'theme'):?>checked<?php endif;?>>
<label class="form-check-label" for="toc.style2">
Theme
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label">Automatic TOC</label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-toc.automatic" id="toc.automatic1" value="true" <?php if (config('toc.automatic') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="toc.automatic1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-toc.automatic" id="toc.automatic2" value="false" <?php if (config('toc.automatic') === 'false' || is_null(config('toc.automatic'))):?>checked<?php endif;?>>
<label class="form-check-label" for="toc.automatic2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
<small><em>It will check the shortcode first before add the TOC to <code>post</code> or <code>page/subpage</code></em></small>
</div>
</div>
<div class="form-group row">
<label for="toc.position" class="col-sm-2 col-form-label">TOC position after x paragraph</label>
<div class="col-sm-10">
<input type="number" name="-config-toc.position" class="form-control" id="toc.position" value="<?php echo config('toc.position');?>">
</div>
</div>
<br>
<h4><?php echo i18n('Comments');?></h4>
<hr>
<p><?php echo i18n('To_use_Disqus_or_Facebook_comment_you_need_to_provide_Disqus_shortname_or_Facebook_App_ID');?></p>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Comment_system');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-comment.system" id="comment.system1" value="disable" <?php if (config('comment.system') === 'disable'):?>checked<?php endif;?>>
<label class="form-check-label" for="comment.system1">
<?php echo i18n('Disabled');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-comment.system" id="comment.system2" value="disqus" <?php if (config('comment.system') === 'disqus'):?>checked<?php endif;?>>
<label class="form-check-label" for="comment.system2">
Disqus
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-comment.system" id="comment.system3" value="facebook" <?php if (config('comment.system') === 'facebook'):?>checked<?php endif;?>>
<label class="form-check-label" for="comment.system3">
Facebook
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="disqus.shortname" class="col-sm-2 col-form-label"><?php echo i18n('Disqus_shortname');?></label>
<div class="col-sm-10">
<input type="text" name="-config-disqus.shortname" class="form-control" id="disqus.shortname" value="<?php echo valueMaker(config('disqus.shortname'));?>" placeholder="<?php echo i18n('Disqus_shortname_placeholder');?>">
</div>
</div>
<div class="form-group row">
<label for="fb.appid" class="col-sm-2 col-form-label"><?php echo i18n('Facebook_App_ID');?></label>
<div class="col-sm-10">
<input type="text" name="-config-fb.appid" class="form-control" id="fb.appid" value="<?php echo valueMaker(config('fb.appid'));?>" placeholder="<?php echo i18n('widget_key_placeholder');?>">
</div>
</div>
<br>
<h4><?php echo i18n('Google_Analytics');?></h4>
<hr>
<div class="form-group row">
<label for="google.gtag.id" class="col-sm-2 col-form-label"><?php echo i18n('Universal_Analytics');?></label>
<div class="col-sm-10">
<input type="text" name="-config-google.gtag.id" class="form-control" id="google.gtag.id" value="<?php echo valueMaker(config('google.gtag.id'));?>" placeholder="<?php echo i18n('widget_key_placeholder');?>">
</div>
</div>
<div class="form-group row">
<label for="google.analytics.id" class="col-sm-2 col-form-label"><?php echo i18n('Google_Analytics_legacy');?></label>
<div class="col-sm-10">
<input type="text" name="-config-google.analytics.id" class="form-control" id="google.analytics.id" value="<?php echo valueMaker(config('google.analytics.id'));?>" placeholder="<?php echo i18n('widget_key_placeholder');?>">
<small><em><?php echo i18n('This_is_legacy_code_usually_new_created_analytics_using_gtag_js');?></em></small>
</div>
</div>
<div class="form-group row">
<label for="google.wmt.id" class="col-sm-2 col-form-label"><?php echo i18n('Google_Search_Console');?></label>
<div class="col-sm-10">
<input type="text" name="-config-google.wmt.id" class="form-control" id="google.wmt.id" value="<?php echo valueMaker(config('google.wmt.id'));?>" placeholder="<?php echo i18n('widget_key_placeholder');?>">
<small><em><?php echo i18n('For_google_site_verification_meta');?></em></small>
</div>
</div>
<br>
<h4><?php echo i18n('Social_Media');?></h4>
<hr>
<div class="form-group row">
<label for="social.bluesky" class="col-sm-2 col-form-label">Bluesky</label>
<div class="col-sm-10">
<input type="text" name="-config-social.bluesky" class="form-control" id="social.bluesky" value="<?php echo config('social.bluesky');?>" placeholder="https://bsky.app/profile/username.bsky.social">
</div>
</div>
<div class="form-group row">
<label for="social.twitter" class="col-sm-2 col-form-label">Twitter</label>
<div class="col-sm-10">
<input type="text" name="-config-social.twitter" class="form-control" id="social.twitter" value="<?php echo config('social.twitter');?>" placeholder="https://twitter.com/gohtmly">
</div>
</div>
<div class="form-group row">
<label for="social.facebook" class="col-sm-2 col-form-label">Facebook</label>
<div class="col-sm-10">
<input type="text" name="-config-social.facebook" class="form-control" id="social.facebook" value="<?php echo config('social.facebook');?>" placeholder="https://www.facebook.com/gohtmly">
</div>
</div>
<div class="form-group row">
<label for="social.instagram" class="col-sm-2 col-form-label">Instagram</label>
<div class="col-sm-10">
<input type="text" name="-config-social.instagram" class="form-control" id="social.instagram" value="<?php echo config('social.instagram');?>" placeholder="https://www.instagram.com/username">
</div>
</div>
<div class="form-group row">
<label for="social.linkedin" class="col-sm-2 col-form-label">Linkedin</label>
<div class="col-sm-10">
<input type="text" name="-config-social.linkedin" class="form-control" id="social.linkedin" value="<?php echo config('social.linkedin');?>" placeholder="https://www.linkedin.com/in/username">
</div>
</div>
<div class="form-group row">
<label for="social.github" class="col-sm-2 col-form-label">Github</label>
<div class="col-sm-10">
<input type="text" name="-config-social.github" class="form-control" id="social.github" value="<?php echo config('social.github');?>" placeholder="https://github.com/username">
</div>
</div>
<div class="form-group row">
<label for="social.mastodon" class="col-sm-2 col-form-label">Mastodon</label>
<div class="col-sm-10">
<input type="text" name="-config-social.mastodon" class="form-control" id="social.mastodon" value="<?php echo config('social.mastodon');?>" placeholder="https://mastodon.social/@username">
</div>
</div>
<div class="form-group row">
<label for="social.tiktok" class="col-sm-2 col-form-label">TikTok</label>
<div class="col-sm-10">
<input type="text" name="-config-social.tiktok" class="form-control" id="social.tiktok" value="<?php echo config('social.tiktok');?>" placeholder="https://tiktok.com/@username">
</div>
</div>
<div class="form-group row">
<label for="social.youtube" class="col-sm-2 col-form-label">Youtube</label>
<div class="col-sm-10">
<input type="text" name="-config-social.youtube" class="form-control" id="social.youtube" value="<?php echo config('social.youtube');?>" placeholder="https://www.youtube.com/user/username">
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary"><?php echo i18n('Save_Config');?></button>
</div>
</div>
</form>

View File

@ -0,0 +1,44 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Writing_Settings');?></h2>
<br>
<nav>
<div class="nav nav-tabs" id="nav-tab">
<a class="nav-item nav-link" id="nav-general-tab" href="<?php echo site_url();?>admin/config"><?php echo i18n('General');?></a>
<a class="nav-item nav-link" id="nav-profile-tab" href="<?php echo site_url();?>admin/config/reading"><?php echo i18n('Reading');?></a>
<a class="nav-item nav-link active" id="nav-writing-tab" href="<?php echo site_url();?>admin/config/writing"><?php echo i18n('Writing');?></a>
<a class="nav-item nav-link" id="nav-widget-tab" href="<?php echo site_url();?>admin/config/widget"><?php echo i18n('Widget');?></a>
<a class="nav-item nav-link" id="nav-metatags-tab" href="<?php echo site_url();?>admin/config/metatags"><?php echo i18n('Metatags');?></a>
<a class="nav-item nav-link" id="nav-security-tab" href="<?php echo site_url();?>admin/config/security"><?php echo i18n('Security');?></a>
<a class="nav-item nav-link" id="nav-performance-tab" href="<?php echo site_url();?>admin/config/performance"><?php echo i18n('Performance');?></a>
<a class="nav-item nav-link" id="nav-custom-tab" href="<?php echo site_url();?>admin/config/custom"><?php echo i18n('Custom');?></a>
</div>
</nav>
<br><br>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Enable_auto_save');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-autosave.enable" id="autosave.enable1" value="true" <?php if (config('autosave.enable') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="autosave.enable1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-autosave.enable" id="autosave.enable2" value="false" <?php if (config('autosave.enable') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="autosave.enable2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
<small><em><?php echo i18n('explain_autosave');?></em></small>
</div>
</div>
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary"><?php echo i18n('Save_Config');?></button>
</div>
</div>
</form>

View File

@ -0,0 +1,216 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('General_Settings')?></h2>
<br>
<?php
if (config('show.version') == 'false') {
if(file_exists('cache/installedVersion.json')) {
unlink('cache/installedVersion.json');
}
}
?>
<?php if (!extension_loaded('intl')) { ?>
<div class="callout callout-info">
<h5><i class="fa fa-info"></i> Note:</h5>
Please install and enable the INTL extension to format the date format to your local language.
</div>
<?php } ?>
<nav>
<div class="nav nav-tabs" id="nav-tab">
<a class="nav-item nav-link active" id="nav-general-tab" href="<?php echo site_url();?>admin/config"><?php echo i18n('General');?></a>
<a class="nav-item nav-link" id="nav-profile-tab" href="<?php echo site_url();?>admin/config/reading"><?php echo i18n('Reading');?></a>
<a class="nav-item nav-link" id="nav-writing-tab" href="<?php echo site_url();?>admin/config/writing"><?php echo i18n('Writing');?></a>
<a class="nav-item nav-link" id="nav-widget-tab" href="<?php echo site_url();?>admin/config/widget"><?php echo i18n('Widget');?></a>
<a class="nav-item nav-link" id="nav-metatags-tab" href="<?php echo site_url();?>admin/config/metatags"><?php echo i18n('Metatags');?></a>
<a class="nav-item nav-link" id="nav-security-tab" href="<?php echo site_url();?>admin/config/security"><?php echo i18n('Security');?></a>
<a class="nav-item nav-link" id="nav-performance-tab" href="<?php echo site_url();?>admin/config/performance"><?php echo i18n('Performance');?></a>
<a class="nav-item nav-link" id="nav-custom-tab" href="<?php echo site_url();?>admin/config/custom"><?php echo i18n('Custom');?></a>
</div>
</nav>
<br><br>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Address_URL');?></label>
<div class="col-sm-10">
<input type="text" name="-config-site.url" class="form-control" id="site.url" value="<?php echo valueMaker(config('site.url'));?>" placeholder="https://www.htmly.com">
</div>
</div>
<div class="form-group row">
<label for="blog.title" class="col-sm-2 col-form-label"><?php echo i18n('Blog_Title');?></label>
<div class="col-sm-10">
<input type="text" name="-config-blog.title" class="form-control" id="blog.title" value="<?php echo valueMaker(config('blog.title'));?>" placeholder="<?php echo i18n('Blog_Title_Placeholder');?>">
</div>
</div>
<div class="form-group row">
<label for="blog.tagline" class="col-sm-2 col-form-label"><?php echo i18n('Tagline');?></label>
<div class="col-sm-10">
<input type="text" name="-config-blog.tagline" class="form-control" id="blog.tagline" value="<?php echo valueMaker(config('blog.tagline'));?>" placeholder="<?php echo i18n('Tagline_Placeholder');?>">
<small><em><?php echo i18n('Tagline_description');?></em></small>
</div>
</div>
<div class="form-group row">
<label for="blog.description" class="col-sm-2 col-form-label"><?php echo i18n('Description');?></label>
<div class="col-sm-10">
<textarea id="blog.description" name="-config-blog.description" class="form-control"><?php echo valueMaker(config('blog.description'));?></textarea>
<small><em><?php echo i18n('Blog_Description');?></em></small>
</div>
</div>
<div class="form-group row">
<label for="language" class="col-sm-2 col-form-label"><?php echo i18n('Language');?></label>
<div class="col-sm-10">
<select class="form-control" id="language" name="-config-language">
<?php foreach (glob('lang/*.ini') as $file) { ?>
<option value="<?php echo pathinfo($file)['filename'];?>" <?php if (config('language') === pathinfo($file)['filename']):?>selected<?php endif;?>><?php echo pathinfo($file)['filename'];?></option>
<?php } ?>
</select>
</div>
</div>
<div class="form-group row">
<label for="timezone" class="col-sm-2 col-form-label"><?php echo i18n('Timezone');?></label>
<div class="col-sm-10">
<select class="form-control" id="timezone" name="-config-timezone">
<?php foreach (timezone_identifiers_list() as $zone) { ?>
<option value="<?php echo $zone;?>" <?php if (config('timezone') === $zone):?>selected<?php endif;?>><?php echo $zone;?></option>
<?php } ?>
</select>
</div>
</div>
<div class="form-group row">
<?php $time = new DateTime('NOW'); $date = $time->format("Y-m-d H:i:s");?>
<label class="col-sm-2 col-form-label"><?php echo i18n('Date_Format');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format1" value="d F Y" <?php if (config('date.format') === 'd F Y'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format1">
<?php echo format_date(strtotime($date), 'd F Y'); ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format2" value="F d, Y" <?php if (config('date.format') === 'F d, Y'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format2">
<?php echo format_date(strtotime($date), 'F d, Y'); ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format3" value="d M Y" <?php if (config('date.format') === 'd M Y'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format3">
<?php echo format_date(strtotime($date), 'd M Y'); ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format4" value="M d, Y" <?php if (config('date.format') === 'M d, Y'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format4">
<?php echo format_date(strtotime($date), 'M d, Y'); ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format5" value="d/m/Y" <?php if (config('date.format') === 'd/m/Y'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format5">
<?php echo format_date(strtotime($date), 'd/m/Y'); ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format6" value="m/d/Y" <?php if (config('date.format') === 'm/d/Y'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format6">
<?php echo format_date(strtotime($date), 'm/d/Y'); ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format7" value="Y-m-d" <?php if (config('date.format') === 'Y-m-d'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format7">
<?php echo format_date(strtotime($date), 'Y-m-d'); ?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-date.format" id="date.format8" value="d.m.Y" <?php if (config('date.format') === 'd.m.Y'):?>checked<?php endif;?>>
<label class="form-check-label" for="date.format8">
<?php echo format_date(strtotime($date), 'd.m.Y'); ?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="views.root" class="col-sm-2 col-form-label"><?php echo i18n('Blog_Theme');?></label>
<div class="col-sm-10">
<select class="form-control" id="views.root" name="-config-views.root">
<?php foreach (glob('themes/*/layout.html.php') as $folder) { ?>
<?php $theme = explode('/',pathinfo($folder)['dirname']); global $config_file; $this_config = parse_ini_file($config_file, true);?>
<option value="<?php echo pathinfo($folder)['dirname'];?>" <?php if ($this_config['views.root'] === pathinfo($folder)['dirname']):?>selected<?php endif;?>><?php echo $theme['1'];?></option>
<?php } ?>
</select>
</div>
</div>
<div class="form-group row">
<label for="blog.copyright" class="col-sm-2 col-form-label"><?php echo i18n('Copyright_Line');?></label>
<div class="col-sm-10">
<input type="text" name="-config-blog.copyright" class="form-control" id="blog.copyright" value="<?php echo valueMaker(config('blog.copyright'));?>" placeholder="<?php echo i18n('Copyright_Line_Placeholder');?>">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('set_version_publicly');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-show.version" id="show.version1" value="true" <?php if (config('show.version') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="show.version1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-show.version" id="show.version2" value="false" <?php if (config('show.version') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="show.version2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
<small><em><?php echo i18n('explain_version');?></em></small>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('admin_theme');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-admin.theme" id="admin.theme1" value="light" <?php if (config('admin.theme') === 'light' || is_null(config('admin.theme'))):?>checked<?php endif;?>>
<label class="form-check-label" for="admin.theme1">
<?php echo i18n('admin_theme_light');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-admin.theme" id="admin.theme2" value="dark" <?php if (config('admin.theme') === 'dark'):?>checked<?php endif;?>>
<label class="form-check-label" for="admin.theme2">
<?php echo i18n('admin_theme_dark');?>
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('fulltext_search');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-fulltext.search" id="fulltext.search1" value="true" <?php if (config('fulltext.search') === 'true'):?>checked<?php endif;?>>
<label class="form-check-label" for="fulltext.search1">
<?php echo i18n('Enable');?>
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="-config-fulltext.search" id="fulltext.search2" value="false" <?php if (config('fulltext.search') === 'false'):?>checked<?php endif;?>>
<label class="form-check-label" for="fulltext.search2">
<?php echo i18n('Disable');?>
</label>
</div>
</div>
</div>
</div>
<hr />
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-primary"><?php echo i18n('Save_Config');?></button>
</div>
</div>
</form>

View File

@ -0,0 +1,21 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Add_content');?></h2>
<?php
$user = $_SESSION[site_url()]['user'];
$role = user('role', $user);
?>
<div class="row">
<div class="col-sm-6">
<p><a href="<?php echo site_url();?>add/content?type=post"><?php echo i18n('Regular_post')?></a><br><?php echo i18n('Regular_post_comment')?>.</p>
<p><a href="<?php echo site_url();?>add/content?type=image"><?php echo i18n('Image_post')?></a><br><?php echo i18n('Image_post_comment')?>.</p>
<p><a href="<?php echo site_url();?>add/content?type=video"><?php echo i18n('Video_post')?></a><br><?php echo i18n('Video_post_comment')?>.</p>
<p><a href="<?php echo site_url();?>add/content?type=audio"><?php echo i18n('Audio_post')?></a><br><?php echo i18n('Audio_post_comment')?>.</p>
</div>
<div class="col-sm-6">
<p><a href="<?php echo site_url();?>add/content?type=link"><?php echo i18n('Link_post')?></a><br><?php echo i18n('Link_post_comment')?>.</p>
<p><a href="<?php echo site_url();?>add/content?type=quote"><?php echo i18n('Quote_post')?></a><br><?php echo i18n('Quote_post_comment')?>.</p>
<?php if ($role === 'editor' || $role === 'admin'):?>
<p><a href="<?php echo site_url();?>add/page"><?php echo i18n('Static_page')?></a><br><?php echo i18n('Static_page_comment')?>.</p>
<?php endif;?>
</div>
</div>

View File

@ -0,0 +1,25 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if (isset($_GET['destination'])) {
$destination = _h($_GET['destination']);
}
$url = $p->file;
$post = $p->url;
if (isset($destination)) {
if ($destination == 'post') {
$back = $post;
} else {
$back = site_url() . $destination;
}
} else {
$back = site_url();
}
$info = $p->title . ' (' . $p->file . ')';
?>
<p><?php echo sprintf(i18n('Are_you_sure_you_want_to_delete_'), $info);?></p>
<form method="POST">
<input type="hidden" name="file" value="<?php echo $p->file ?>"/><br>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<input type="submit" class="btn btn-danger" name="submit" value="<?php echo i18n('Delete');?>"/>
<span><a class="btn btn-primary" href="<?php echo $back . '">' . i18n('Cancel');?></a></span>
</form>

View File

@ -0,0 +1,25 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if (isset($_GET['destination'])) {
$destination = _h($_GET['destination']);
}
$url = $p->file;
$post = $p->url;
if (isset($destination)) {
if ($destination == 'post') {
$back = $post;
} else {
$back = site_url() . $destination;
}
} else {
$back = site_url();
}
$info = $p->title . ' (' . $p->file . ')';
?>
<p><?php echo sprintf(i18n('Are_you_sure_you_want_to_delete_'), $info);?></p>
<form method="POST">
<input type="hidden" name="file" value="<?php echo $p->file ?>"/><br>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<input type="submit" class="btn btn-danger" name="submit" value="<?php echo i18n('Delete');?>"/>
<span><a class="btn btn-primary" href="<?php echo $back . '">' . i18n('Cancel');?></a></span>
</form>

View File

@ -0,0 +1,25 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if (isset($_GET['destination'])) {
$destination = _h($_GET['destination']);
}
$url = $p->file;
$post = $p->url;
if (isset($destination)) {
if ($destination == 'post') {
$back = $post;
} else {
$back = site_url() . $destination;
}
} else {
$back = site_url();
}
$info = $p->title . ' (' . $p->file . ')';
?>
<p><?php echo sprintf(i18n('Are_you_sure_you_want_to_delete_'), $info);?></p>
<form method="POST">
<input type="hidden" name="file" value="<?php echo $p->file ?>"/><br>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<input type="submit" class="btn btn-danger" name="submit" value="<?php echo i18n('Delete');?>"/>
<span><a class="btn btn-primary" href="<?php echo $back . '">' . i18n('Cancel');?></a></span>
</form>

View File

@ -0,0 +1,13 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
$file = 'config/users/' . $username . '.ini';
?>
<p><?php echo sprintf(i18n('Are_you_sure_you_want_to_delete_'), $username);?></p>
<p><small><strong>Note:</strong> This only delete the user and not the contents.</small>
<form method="POST">
<input type="hidden" name="file" value="<?php echo $file ?>"/><br>
<input type="hidden" name="username" value="<?php echo $username ?>"/><br>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<input type="submit" class="btn btn-danger" name="submit" value="<?php echo i18n('Delete');?>"/>
<span><a class="btn btn-primary" href="<?php echo site_url();?>admin/users"><?php echo i18n('Cancel');?></a></span>
</form>

View File

@ -0,0 +1,2 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h1><?php echo i18n('You_dont_have_permission_to_access_this_page');?></h1>

View File

@ -0,0 +1,431 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if (isset($p->file)) {
$file_path = pathinfo($p->file);
} else {
$file_path = pathinfo($oldfile);
}
$filename = $file_path['dirname'] . '/' . $file_path['basename'];
$desc = get_category_info(null);
$content = file_get_contents($filename);
$oldtitle = get_content_tag('t', $content, 'Untitled');
$olddescription = get_content_tag('d', $content);
$oldtag = get_content_tag('tag', $content);
$oldcontent = remove_html_comments($content);
$oldimage = get_content_tag('image', $content);
$oldaudio = get_content_tag('audio', $content);
$oldvideo = get_content_tag('video', $content);
$oldlink = get_content_tag('link', $content);
$oldquote = get_content_tag('quote', $content);
$dir = $file_path['dirname'];
$isdraft = explode('/', $dir);
$oldurl = explode('_', $file_path['basename']);
if (empty($oldtag)) {
$oldtag = $oldurl[1];
}
$oldmd = str_replace('.md', '', $oldurl[2]);
if (isset($_GET['destination'])) {
$destination = _h($_GET['destination']);
} else {
$destination = 'admin';
}
$cat = explode('/', $dir);
$category = $cat[3];
$dt = $oldurl[0];
$t = str_replace('-', '', $dt);
$time = new DateTime($t);
$timestamp = $time->format("Y-m-d H:i:s");
// The post date
$postdate = strtotime($timestamp);
// The post URL
if (permalink_type() == 'default') {
$delete = site_url() . date('Y/m', $postdate) . '/' . $oldmd . '/delete?destination=' . $destination;
} else {
// The post URL
$delete = site_url() . permalink_type() . '/' . $oldmd . '/delete?destination=' . $destination;
}
$tags = tag_cloud(true);
$tagslang = "content/data/tags.lang";
if (file_exists($tagslang)) {
$ptags = unserialize(file_get_contents($tagslang));
$tkey = array_keys($tags);
if (!empty($ptags)) {
$newlang = array_intersect_key($ptags, array_flip($tkey));
} else {
$newlang = array_combine($tkey, $tkey);
}
$tmp = serialize($newlang);
file_put_contents($tagslang, print_r($tmp, true), LOCK_EX);
}
$images = image_gallery(null, 1, 40);
?>
<link rel="stylesheet" type="text/css" href="<?php echo site_url() ?>system/admin/editor/css/editor.css"/>
<script src="<?php echo site_url() ?>system/resources/js/jquery.min.js"></script>
<script src="<?php echo site_url() ?>system/resources/js/jquery-ui.min.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Converter.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Sanitizer.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Editor.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Extra.js"></script>
<link rel="stylesheet" href="<?php echo site_url() ?>system/resources/css/jquery-ui.css">
<script>
$( function() {
var availableTags = [
<?php foreach ($tags as $tag => $count):?>
"<?php echo tag_i18n($tag) ?>",
<?php endforeach;?>
];
function split( val ) {
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}
$( "#pTag" )
// don't navigate away from the field on tab when selecting an item
.on( "keydown", function( event ) {
if ( event.keyCode === 9 && // 9 = tab
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
} );
</script>
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<div class="notice" id="response"></div>
<div class="row">
<div class="hide-button" style="margin-bottom:1em;width:100%;text-align:right;"><button type="button" title="<?php echo i18n('Focus_mode');?>" id="hideButton" class="note-btn btn btn-sm <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "btn-light" : "btn-dark");?>" style="width:38px;height:38px;font-size:18px;" ><i class="fa fa-eye" aria-hidden="true"></i></button></div>
<div class="wmd-panel" style="width:100%;">
<form method="POST">
<div id="post-settings" class="row">
<div class="col-sm-6">
<label for="pTitle"><?php echo i18n('Title');?> <span class="required">*</span></label>
<input autofocus type="text" id="pTitle" name="title" class="form-control text <?php if (isset($postTitle)) { if (empty($postTitle)) { echo 'error';} } ?>" value="<?php echo $oldtitle ?>"/>
<br>
<label for="pCategory"><?php echo i18n('Category');?> <span class="required">*</span></label>
<select id="pCategory" class="form-control" name="category">
<?php foreach ($desc as $d):?>
<option value="<?php echo $d->slug;?>" <?php if($category === $d->slug) { echo 'selected="selected"';} ?>><?php echo $d->title;?></option>
<?php endforeach;?>
</select>
<br>
<label for="pTag"><?php echo i18n('Tags');?> <span class="required">*</span></label>
<input type="text" id="pTag" name="tag" class="form-control text <?php if (isset($postTag)) { if (empty($postTag)) { echo 'error'; } } ?>" value="<?php echo $oldtag ?>" placeholder="<?php echo i18n('Comma_separated_values');?>"/>
<br>
<label for="pMeta"><?php echo i18n('Meta_description');?> (<?php echo i18n('optional');?>)</label>
<textarea id="pMeta" class="form-control" name="description" rows="3" cols="20" placeholder="<?php echo i18n('If_left_empty_we_will_excerpt_it_from_the_content_below');?>"><?php if (isset($p->description)) { echo $p->description; } else { echo $olddescription;} ?></textarea>
<br>
</div>
<div class="col-sm-6">
<div class="form-row">
<div class="col">
<label for="pDate"><?php echo i18n('Date');?></label>
<input type="date" id="pDate" name="date" class="form-control text" value="<?php echo date('Y-m-d', $postdate); ?>">
</div>
<div class="col">
<label for="pTime"><?php echo i18n('Time');?></label>
<input step="1" type="time" id="pTime" name="time" class="form-control text" value="<?php echo $time->format('H:i:s'); ?>">
</div>
<small style="margin-top:10px;"><em><?php echo i18n('Scheduled_tips');?></em></small>
</div>
<br>
<label for="pURL"><?php echo i18n('Slug');?> (<?php echo i18n('optional');?>)</label>
<input type="text" id="pURL" name="url" class="form-control text" value="<?php echo $oldmd ?>" placeholder="<?php echo i18n('If_the_url_is_left_empty_we_will_use_the_post_title');?>"/>
<br>
<?php if ($type == 'is_audio'):?>
<label for="pAudio"><?php echo i18n('Featured_Audio');?> <span class="required">*</span> (e.g Soundcloud)</label>
<textarea rows="2" cols="20" class="media-uploader form-control text <?php if (isset($postAudio)) { if (empty($postAudio)) { echo 'error';} } ?>" id="pAudio" name="audio"><?php echo $oldaudio; ?></textarea>
<input type="hidden" name="is_audio" value="is_audio">
<br>
<?php endif;?>
<?php if ($type == 'is_video'):?>
<label for="pVideo"><?php echo i18n('Featured_Video');?> <span class="required">*</span> (e.g Youtube)</label>
<textarea rows="2" cols="20" class="media-uploader form-control text <?php if (isset($postVideo)) { if (empty($postVideo)) { echo 'error';} } ?>" id="pVideo" name="video"><?php echo $oldvideo ?></textarea>
<input type="hidden" name="is_video" value="is_video">
<br>
<?php endif;?>
<?php if ($type == 'is_image'):?>
<style>.imgPrev img {width:50%;} </style>
<label for="pImage"><?php echo i18n('Featured_Image');?> <span class="required">*</span></label>
<br>
<label class="btn btn-primary btn-sm" id="insertButton"><?php echo i18n('Insert_Image');?></label>
<br>
<div class="imgPrev"><img id="imgFile" src="<?php echo $oldimage; ?>"/></div>
<br>
<input type="text" class="media-uploader form-control text <?php if (isset($postImage)) { if (empty($postImage)) { echo 'error';}} ?>" id="pImage" name="image" readonly value="<?php echo $oldimage; ?>">
<input type="hidden" name="is_image" value="is_image">
<br>
<?php endif;?>
<?php if ($type == 'is_quote'):?>
<label for="pQuote"><?php echo i18n('Featured_Quote');?> <span class="required">*</span></label>
<textarea rows="3" cols="20" class="form-control text <?php if (isset($postQuote)) { if (empty($postQuote)) { echo 'error';} } ?>" id="pQuote" name="quote"><?php echo $oldquote ?></textarea>
<input type="hidden" name="is_quote" value="is_quote">
<br>
<?php endif;?>
<?php if ($type == 'is_link'):?>
<label for="pLink"><?php echo i18n('Featured_Link');?> <span class="required">*</span></label>
<textarea rows="2" cols="20" class="form-control text <?php if (isset($postLink)) { if (empty($postLink)) { echo 'error';} } ?>" id="pLink" name="link"><?php echo $oldlink ?></textarea>
<input type="hidden" name="is_link" value="is_link">
<br>
<?php endif;?>
<?php if ($type == 'is_post'):?>
<input type="hidden" name="is_post" value="is_post">
<?php endif;?>
<input id="oldfile" type="hidden" name="oldfile" class="text" value="<?php echo $filename; ?>"/>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
</div>
</div>
<div class="row">
<div class="col-sm-12" style="text-align:right;">
<button class="note-btn btn btn-sm <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "btn-light" : "btn-dark");?>" style="width:38px;height:38px;font-size:18px;" type="button" title="Toggle <?php echo i18n('Preview');?>" id="preview-toggle" class="btn btn-secondary btn-xs"><i class="fa fa-columns" aria-hidden="true"></i></button>
</div>
</div>
<div class="row">
<div class="col-sm-6" id="editor-col">
<div>
<input type="hidden" id="pType" name="posttype" value="<?php echo $type; ?>">
<label for="wmd-input"><?php echo i18n('Content');?> <span class="required">*</span></label>
<div id="wmd-button-bar" class="wmd-button-bar"></div>
<textarea id="wmd-input" class="form-control wmd-input <?php if (isset($postContent)) { if (empty($postContent)) { echo 'error'; } } ?>" name="content" cols="20" rows="15"><?php echo $oldcontent ?></textarea><br>
<?php if ($isdraft[4] == 'draft') { ?>
<input type="submit" name="publishdraft" class="btn btn-primary submit" value="<?php echo i18n('Publish_draft');?>"/> <input type="submit" name="updatedraft" class="btn btn-primary draft" value="<?php echo i18n('Update_draft');?>"/> <a class="btn btn-danger" href="<?php echo $delete ?>"><?php echo i18n('Delete');?></a>
<?php } else { ?>
<input type="submit" name="updatepost" class="btn btn-primary submit" value="<?php echo i18n('Update_post');?>"/> <input type="submit" name="revertpost" class="btn btn-primary revert" value="<?php echo i18n('Revert_to_draft');?>"/> <a class="btn btn-danger" href="<?php echo $delete ?>"><?php echo i18n('Delete');?></a>
<?php }?>
<br><br>
</div>
</div>
<div class="col-sm-6" id="preview-col">
<label><?php echo i18n('Preview');?></label>
<br>
<div id="wmd-preview" class="wmd-panel wmd-preview <?php if (config('admin.theme') === 'dark'){echo "card";}?>" style="width:100%;overflow:auto;"></div>
</div>
</div>
</form>
</div>
<style>
.wmd-prompt-background {z-index:10!important;}
#wmd-preview img {max-width:100%;}
.cover-container {
overflow: auto;
max-height: 65vh;
width: 100%;
white-space: nowrap;
}
.cover-item {
position: relative;
margin: 2px 2px;
border-top-right-radius: 2px;
width: 190px;
height: 140px;
vertical-align: top;
background-position: top left;
background-repeat: no-repeat;
background-size: cover;
float:left;
}
</style>
<div class="modal fade" id="insertImageDialog" tabindex="-1" role="dialog" aria-labelledby="insertImageDialogTitle" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<p class="modal-title" id="insertImageDialogTitle"><?php echo i18n('Insert_Image');?></p>
<button type="button" class="close" id="insertImageDialogClose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-9">
<div class="form-group">
<div class="row-fluid img-container" id="gallery-1">
<?php echo $images;?>
</div>
</div>
</div>
<div class="col">
<div class="form-group">
<label for="insertImageDialogURL">URL</label>
<textarea class="form-control" id="insertImageDialogURL" rows="5" placeholder="<?php echo i18n('Enter_image_URL');?>" ></textarea>
</div>
<hr>
<div class="form-group">
<label for="insertImageDialogFile"><?php echo i18n('Upload');?></label>
<input type="file" class="form-control-file" name="file" id="insertImageDialogFile" accept="image/png,image/jpeg,image/gif" />
</div>
<hr>
<div class="form-group">
<button type="button" class="btn btn-primary" id="insertImageDialogInsert"><?php echo i18n('Insert_Image');?></button>
<button type="button" class="btn btn-secondary" id="insertImageDialogCancel" data-dismiss="modal"><?php echo i18n('Cancel');?></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php if ($type == 'is_image'):?>
<div class="modal fade" id="insertMediaDialog" tabindex="-1" role="dialog" aria-labelledby="insertMediaDialogTitle" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<p class="modal-title" id="insertMediaDialogTitle"><?php echo i18n('Insert_Image');?></p>
<button type="button" class="close" id="insertMediaDialogClose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-9">
<div class="form-group">
<div class="row-fluid img-container" id="gallery-2">
<?php echo $images;?>
</div>
</div>
</div>
<div class="col">
<div class="form-group">
<label for="insertMediaDialogURL">URL</label>
<textarea class="form-control" id="insertMediaDialogURL" rows="5" placeholder="<?php echo i18n('Enter_image_URL');?>"></textarea>
</div>
<hr>
<div class="form-group">
<label for="insertMediaDialogFile"><?php echo i18n('Upload');?></label>
<input type="file" class="form-control-file" name="file" id="insertMediaDialogFile" accept="image/png,image/jpeg,image/gif" />
</div>
<hr>
<div class="form-group">
<button type="button" class="btn btn-primary" id="insertMediaDialogInsert"><?php echo i18n('Insert_Image');?></button>
<button type="button" class="btn btn-secondary" id="insertMediaDialogCancel" data-dismiss="modal"><?php echo i18n('Cancel');?></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endif;?>
</div>
<!-- Declare the base path. Important -->
<script type="text/javascript">
var base_path = '<?php echo site_url() ?>';
var initial_image = '<?php echo $images;?>';
var parent_page = '';
var addEdit = 'edit';
var saveInterval = 60000;
</script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/editor.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/resources/js/media.uploader.js"></script>
<script>
function loadImages(page) {
$.ajax({
url: '<?php echo site_url();?>admin/gallery',
type: 'POST',
data: { page: page },
dataType: 'json',
success: function(response) {
$('#gallery-1').html(response.images);
$('#gallery-2').html(response.images);
}
});
}
$('.img-container').on("click", ".the-img", function(e) {
$('#insertMediaDialogURL').val($(e.target).attr('src'));
$('#insertImageDialogURL').val($(e.target).attr('src'));
});
</script>
<script>
function toggleDivs() {
var div1 = document.getElementById('post-settings');
if (div1.style.display === 'none') {
div1.style.display = '';
document.body.classList.add("sidebar-mini");
document.body.classList.remove("sidebar-collapse");
} else {
div1.style.display = 'none';
document.body.classList.remove("sidebar-mini");
document.body.classList.add("sidebar-collapse");
}
}
document.getElementById('hideButton').addEventListener('click', toggleDivs);
</script>
<?php if (config('autosave.enable') == 'true' ):?>
<?php if ($isdraft[4] == 'draft') : ?>
<script src="<?php echo site_url();?>system/resources/js/save_draft.js?v=1"></script>
<?php endif;?>
<?php endif;?>
<script>
if (localStorage.getItem("preview-state") === "open") {
document.getElementById("editor-col").classList.remove('col-sm-12');
document.getElementById("editor-col").classList.add('col-sm-6');
document.getElementById("preview-col").style.display = '';
} else if (localStorage.getItem("preview-state") === "close") {
document.getElementById("editor-col").classList.remove('col-sm-6');
document.getElementById("editor-col").classList.add('col-sm-12');
document.getElementById("preview-col").style.display = 'none';
}
document.getElementById("preview-toggle").addEventListener("click", () => {
if (document.getElementById("editor-col").className.includes("col-sm-6")) {
document.getElementById("editor-col").classList.remove('col-sm-6');
document.getElementById("editor-col").classList.add('col-sm-12');
document.getElementById("preview-col").style.display = 'none';
localStorage.setItem("preview-state", 'close');
} else {
document.getElementById("editor-col").classList.remove('col-sm-12');
document.getElementById("editor-col").classList.add('col-sm-6');
document.getElementById("preview-col").style.display = '';
localStorage.setItem("preview-state", 'open');
}
})
</script>

View File

@ -0,0 +1,76 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if (isset($_SESSION[site_url()]['user'])) {
$user = $_SESSION[site_url()]['user'];
}
use PragmaRX\Google2FA\Google2FA;
use BaconQrCode\Renderer\GDLibRenderer;
use BaconQrCode\Writer;
$domain = parse_url(site_url());
$domain = rtrim($domain['host'] . $domain['path'], "/");
$mfa_state = user('mfa_secret', $user);
if (is_null($mfa_state) || $mfa_state == 'disabled') {
$google2fa = new Google2FA();
$mfasecret = $google2fa->generateSecretKey();
if (version_compare(PHP_VERSION, '8.1', '>=')) {
$g2faUrl = $google2fa->getQRCodeUrl(
$user,
$domain,
$mfasecret
);
$renderer = new GDLibRenderer(400);
$writer = new Writer($renderer);
$qrcode_image = base64_encode($writer->writeString($g2faUrl));
}
}
?>
<h2><?php echo i18n('config_mfa'); echo ': ' . $user; ?></h2>
<br>
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<input type="hidden" name="username" value="<?php echo $user; ?>">
<?php if (is_null($mfa_state) || $mfa_state == 'disabled') {?>
<?php if (version_compare(PHP_VERSION, '8.1', '>=')) {?>
<div style="text-align:center;width:100%;"><img style="margin:-10px auto;" src="data:image/png;base64, <?php echo $qrcode_image; ?>"/></div>
<span style="text-align:center;width:100%;float:left;"><small><?php echo i18n('manualsetupkey') . ': ' . $mfasecret; ?></small></span>
<?php } else {?>
<span style="text-align:center;width:100%;float:left;"><small>Setup Key</small></span>
<span style="text-align:center;width:100%;float:left;"><h4><?php echo $mfasecret;?></h4></span>
<br><br>
<?php } ?>
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('MFACode');?></label>
<div class="col-sm-10">
<input type="text" name="mfacode" class="form-control" id="mfacode" value="" placeholder="<?php echo i18n('verify_code');?>">
</div>
</div>
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Password');?></label>
<div class="col-sm-10">
<input type="password" name="password" class="form-control" id="password" value="" placeholder="<?php echo i18n('verify_password');?>">
</div>
</div>
<input type="hidden" name="mfa_secret" value="<?php echo $mfasecret;?>">
<input type="submit" class="btn btn-primary" style="width:100px;" value="<?php echo i18n('Save');?>">
<?php } else { ?>
<input type="hidden" name="mfa_secret" value="disabled">
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Password');?></label>
<div class="col-sm-10">
<input type="password" name="password" class="form-control" id="password" value="" placeholder="<?php echo i18n('verify_password');?>">
</div>
</div>
<input type="submit" class="btn btn-primary" value="<?php echo i18n('disablemfa');?>">
<?php } ?>
</form>

View File

@ -0,0 +1,358 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if ($type == 'is_frontpage') {
$filename = 'content/data/frontpage/frontpage.md';
if (file_exists($filename)) {
$content = file_get_contents($filename);
$oldtitle = get_content_tag('t', $content, 'Welcome');
$oldcontent = remove_html_comments($content);
} else {
$oldtitle = 'Welcome';
$oldcontent = 'Welcome to our website.';
}
} elseif ($type == 'is_profile') {
if (isset($_SESSION[site_url()]['user'])) {
$user = $_SESSION[site_url()]['user'];
}
$filename = 'content/' . $user . '/author.md';
if (file_exists($filename)) {
$content = file_get_contents($filename);
$oldtitle = get_content_tag('t', $content, 'user');
$olddescription = get_content_tag('d', $content, remove_html_comments($content));
$oldcontent = remove_html_comments($content);
$oldimage = get_content_tag('image', $content);
} else {
$oldtitle = $user;
$olddescription = i18n('Author_Description');
$oldcontent = i18n('Author_Description');
$oldimage = '';
}
} elseif ($type == 'is_category') {
$content = $p->body;
$oldtitle = $p->title;
$olddescription = $p->description;
$oldcontent = $p->body;
$oldmd = $p->slug;
$url = 'content/data/category/'. $p->slug . '.md';
} else {
if (isset($p->file)) {
$url = $p->file;
} else {
$url = $oldfile;
}
$content = file_get_contents($url);
$oldtitle = get_content_tag('t', $content, 'Untitled');
$olddescription = get_content_tag('d', $content);
$oldcontent = remove_html_comments($content);
if (isset($_GET['destination'])) {
$destination = _h($_GET['destination']);
} else {
$destination = 'admin';
}
$dir = pathinfo($url, PATHINFO_DIRNAME);
$oldurl = pathinfo($url, PATHINFO_BASENAME);
$fn = explode('.', pathinfo($url, PATHINFO_FILENAME));
if (isset($fn[1])) {
$oldmd = $fn[1];
} else {
$oldmd = pathinfo($url, PATHINFO_FILENAME);
}
if (isset($p->url)) {
$delete = $p->url . '/delete?destination=' . $destination;
}
else {
if(empty($sub)) {
$delete = site_url() . $oldmd . '/delete?destination=' . $destination;
}
else {
$delete = site_url() . $static .'/'. $sub . '/delete?destination=' . $destination;
}
}
}
$images = image_gallery(null, 1, 40);
?>
<link rel="stylesheet" type="text/css" href="<?php echo site_url() ?>system/admin/editor/css/editor.css"/>
<script src="<?php echo site_url() ?>system/resources/js/jquery.min.js"></script>
<script src="<?php echo site_url() ?>system/resources/js/jquery-ui.min.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Converter.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Sanitizer.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Editor.js"></script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/Markdown.Extra.js"></script>
<link rel="stylesheet" href="<?php echo site_url() ?>system/resources/css/jquery-ui.css">
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<div class="notice" id="response"></div>
<div class="row">
<div class="hide-button" style="margin-bottom:1em;width:100%;text-align:right;"><button type="button" title="<?php echo i18n('Focus_mode');?>" id="hideButton" class="note-btn btn btn-sm <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "btn-light" : "btn-dark");?>" style="width:38px;height:38px;font-size:18px;" ><i class="fa fa-eye" aria-hidden="true"></i></button></div>
<div class="wmd-panel" style="width:100%;">
<form method="POST">
<div id="post-settings" class="row">
<div class="col-sm-6">
<label for="pTitle"><?php echo i18n('Title');?> <span class="required">*</span></label>
<input type="text" id="pTitle" name="title" class="form-control text <?php if (isset($postTitle)) { if (empty($postTitle)) { echo 'error'; } } ?>" value="<?php echo $oldtitle ?>"/>
<br>
<?php if($type != 'is_frontpage') { ?>
<label for="pMeta"><?php echo i18n('Meta_description');?> (<?php echo i18n('optional');?>)</label>
<br />
<textarea id="pMeta" class="form-control" name="description" rows="3" cols="20" placeholder="<?php echo i18n('If_left_empty_we_will_excerpt_it_from_the_content_below');?>"><?php if (isset($p->description)) { echo $p->description;} else {echo $olddescription;}?></textarea>
<br /><br />
<?php } ?>
</div>
<div class="col-sm-6">
<?php if($type != 'is_frontpage' && $type != 'is_profile') { ?>
<label for="pURL"><?php echo i18n('Slug');?> (<?php echo i18n('optional');?>)</label>
<br>
<input type="text" id="pURL" name="url" class="form-control text" value="<?php echo $oldmd ?>" placeholder="<?php echo i18n('If_the_url_is_left_empty_we_will_use_the_page_title');?>"/>
<br>
<?php } ?>
<?php if ($type == 'is_profile'):?>
<style>.imgPrev img {width:50%;} </style>
<label for="pImage">Avatar (<?php echo i18n('optional');?>)</label>
<br>
<label class="btn btn-primary btn-sm" id="insertButton"><?php echo i18n('Insert_Image');?></label>
<br>
<div class="imgPrev"><img id="imgFile" src="<?php echo $oldimage; ?>"/></div>
<br>
<input type="text" class="media-uploader form-control text <?php if (isset($postImage)) { if (empty($postImage)) { echo 'error';}} ?>" id="pImage" name="image" readonly value="<?php echo $oldimage; ?>">
<input type="hidden" name="is_image" value="is_image">
<br>
<?php endif;?>
</div>
</div>
<div class="row">
<div class="col-sm-12" style="text-align:right;">
<button class="note-btn btn btn-sm <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "btn-light" : "btn-dark");?>" style="width:38px;height:38px;font-size:18px;" type="button" title="Toggle <?php echo i18n('Preview');?>" id="preview-toggle" class="btn btn-secondary btn-xs"><i class="fa fa-columns" aria-hidden="true"></i></button>
</div>
</div>
<div class="row">
<div class="col-sm-6" id="editor-col">
<label for="wmd-input"><?php echo i18n('Content');?> <span class="required">*</span></label>
<div id="wmd-button-bar" class="wmd-button-bar"></div>
<textarea id="wmd-input" class="form-control wmd-input <?php if (isset($postContent)) {if (empty($postContent)) {echo 'error';}} ?>" name="content" cols="20" rows="10"><?php echo $oldcontent ?></textarea>
<br>
<input type="hidden" id="pType" name="posttype" value="<?php echo $type; ?>">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<?php if($type == 'is_frontpage' || $type == 'is_profile') { ?>
<input type="submit" name="submit" class="btn btn-primary submit" value="<?php echo i18n('Save');?>"/>
<?php } elseif ($type == 'is_category') {?>
<input id="oldfile" type="hidden" name="oldfile" class="text" value="<?php echo $url ?>"/>
<input type="submit" name="submit" class="btn btn-primary submit" value="<?php echo i18n('Save_category');?>"/>
<?php } else {?>
<input id="oldfile" type="hidden" name="oldfile" class="text" value="<?php echo $url ?>"/>
<?php $dd = find_subpage($oldmd); ?>
<?php $dr = find_draft_subpage($oldmd);?>
<?php if (stripos($dir . '/', '/draft/') !== false) { ?>
<input type="submit" name="publishdraft" class="btn btn-primary submit" value="<?php echo i18n('Publish_draft');?>"/> <input type="submit" name="updatedraft" class="btn btn-primary draft" value="<?php echo i18n('Update_draft');?>"/> <?php if (empty($dd) && empty($dr)):?><a class="btn btn-danger" href="<?php echo $delete ?>"><?php echo i18n('Delete');?></a><?php endif;?>
<?php } else { ?>
<input type="submit" name="submit" class="btn btn-primary submit" value="<?php echo i18n('Save');?>"/> <?php if (empty($dd) && empty($dr)):?><input type="submit" name="revertpage" class="btn btn-primary revert" value="<?php echo i18n('Revert_to_draft');?>"/> <a class="btn btn-danger" href="<?php echo $delete ?>"><?php echo i18n('Delete');?></a><?php endif;?>
<?php } ?>
<?php } ?>
</div>
<div class="col-sm-6" id="preview-col">
<label><?php echo i18n('Preview');?></label>
<br>
<div id="wmd-preview" class="wmd-panel wmd-preview <?php if (config('admin.theme') === 'dark'){echo "card";}?>" style="width:100%;overflow:auto;"></div>
</div>
</div>
</form>
</div>
<style>
.wmd-prompt-background {z-index:10!important;}
#wmd-preview img {max-width:100%;}
.cover-container {
overflow: auto;
max-height: 65vh;
width: 100%;
white-space: nowrap;
}
.cover-item {
position: relative;
margin: 2px 2px;
border-top-right-radius: 2px;
width: 190px;
height: 140px;
vertical-align: top;
background-position: top left;
background-repeat: no-repeat;
background-size: cover;
float:left;
}
</style>
<div class="modal fade" id="insertImageDialog" tabindex="-1" role="dialog" aria-labelledby="insertImageDialogTitle" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<p class="modal-title" id="insertImageDialogTitle"><?php echo i18n('Insert_Image');?></p>
<button type="button" class="close" id="insertImageDialogClose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-9">
<div class="form-group">
<div class="row-fluid img-container" id="gallery-1">
<?php echo $images;?>
</div>
</div>
</div>
<div class="col">
<div class="form-group">
<label for="insertImageDialogURL">URL</label>
<textarea class="form-control" id="insertImageDialogURL" rows="5" placeholder="<?php echo i18n('Enter_image_URL');?>" ></textarea>
</div>
<hr>
<div class="form-group">
<label for="insertImageDialogFile"><?php echo i18n('Upload');?></label>
<input type="file" class="form-control-file" name="file" id="insertImageDialogFile" accept="image/png,image/jpeg,image/gif" />
</div>
<hr>
<div class="form-group">
<button type="button" class="btn btn-primary" id="insertImageDialogInsert"><?php echo i18n('Insert_Image');?></button>
<button type="button" class="btn btn-secondary" id="insertImageDialogCancel" data-dismiss="modal"><?php echo i18n('Cancel');?></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php if ($type == 'is_profile'):?>
<div class="modal fade" id="insertMediaDialog" tabindex="-1" role="dialog" aria-labelledby="insertMediaDialogTitle" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<p class="modal-title" id="insertMediaDialogTitle"><?php echo i18n('Insert_Image');?></p>
<button type="button" class="close" id="insertMediaDialogClose" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-9">
<div class="form-group">
<div class="row-fluid img-container" id="gallery-2">
<?php echo $images;?>
</div>
</div>
</div>
<div class="col">
<div class="form-group">
<label for="insertMediaDialogURL">URL</label>
<textarea class="form-control" id="insertMediaDialogURL" rows="5" placeholder="<?php echo i18n('Enter_image_URL');?>"></textarea>
</div>
<hr>
<div class="form-group">
<label for="insertMediaDialogFile"><?php echo i18n('Upload');?></label>
<input type="file" class="form-control-file" name="file" id="insertMediaDialogFile" accept="image/png,image/jpeg,image/gif" />
</div>
<hr>
<div class="form-group">
<button type="button" class="btn btn-primary" id="insertMediaDialogInsert"><?php echo i18n('Insert_Image');?></button>
<button type="button" class="btn btn-secondary" id="insertMediaDialogCancel" data-dismiss="modal"><?php echo i18n('Cancel');?></button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php endif;?>
</div>
<!-- Declare the base path. Important -->
<script type="text/javascript">
var base_path = '<?php echo site_url() ?>';
var initial_image = '<?php echo $images;?>';
var parent_page = '<?php echo isset($parent) ? $parent : '';?>';
var addEdit = 'edit';
var saveInterval = 60000;
</script>
<script type="text/javascript" src="<?php echo site_url() ?>system/admin/editor/js/editor.js"></script>
<?php if ($type == 'is_profile'):?>
<script type="text/javascript" src="<?php echo site_url() ?>system/resources/js/media.uploader.js"></script>
<?php endif;?>
<script>
function loadImages(page) {
$.ajax({
url: '<?php echo site_url();?>admin/gallery',
type: 'POST',
data: { page: page },
dataType: 'json',
success: function(response) {
$('#gallery-1').html(response.images);
$('#gallery-2').html(response.images);
}
});
}
$('.img-container').on("click", ".the-img", function(e) {
$('#insertMediaDialogURL').val($(e.target).attr('src'));
$('#insertImageDialogURL').val($(e.target).attr('src'));
});
</script>
<script>
function toggleDivs() {
var div1 = document.getElementById('post-settings');
if (div1.style.display === 'none') {
div1.style.display = '';
document.body.classList.add("sidebar-mini");
document.body.classList.remove("sidebar-collapse");
} else {
div1.style.display = 'none';
document.body.classList.remove("sidebar-mini");
document.body.classList.add("sidebar-collapse");
}
}
document.getElementById('hideButton').addEventListener('click', toggleDivs);
</script>
<?php if (config('autosave.enable') == 'true'):?>
<?php if ($type !== 'is_category' && $type !== 'is_profile' && $type !== 'is_frontpage') :?>
<?php if (stripos($dir . '/', '/draft/') !== false): ?>
<script src="<?php echo site_url();?>system/resources/js/save_draft.js?v=1"></script>
<?php endif;?>
<?php endif;?>
<?php endif;?>
<script>
if (localStorage.getItem("preview-state") === "open") {
document.getElementById("editor-col").classList.remove('col-sm-12');
document.getElementById("editor-col").classList.add('col-sm-6');
document.getElementById("preview-col").style.display = '';
} else if (localStorage.getItem("preview-state") === "close") {
document.getElementById("editor-col").classList.remove('col-sm-6');
document.getElementById("editor-col").classList.add('col-sm-12');
document.getElementById("preview-col").style.display = 'none';
}
document.getElementById("preview-toggle").addEventListener("click", () => {
if (document.getElementById("editor-col").className.includes("col-sm-6")) {
document.getElementById("editor-col").classList.remove('col-sm-6');
document.getElementById("editor-col").classList.add('col-sm-12');
document.getElementById("preview-col").style.display = 'none';
localStorage.setItem("preview-state", 'close');
} else {
document.getElementById("editor-col").classList.remove('col-sm-12');
document.getElementById("editor-col").classList.add('col-sm-6');
document.getElementById("preview-col").style.display = '';
localStorage.setItem("preview-state", 'open');
}
})
</script>

View File

@ -0,0 +1,25 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
if (isset($_SESSION[site_url()]['user'])) {
$user = $_SESSION[site_url()]['user'];
}
?>
<h2><?php echo i18n('change_password'); echo ': ' . $user; ?></h2>
<br>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Username');?></label>
<div class="col-sm-10">
<input type="text" name="username" readonly class="form-control" id="username-id" value="<?php echo $user;?>">
</div>
</div>
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Password');?></label>
<div class="col-sm-10">
<input type="password" name="password" class="form-control" id="password" value="" placeholder="<?php echo i18n('change_password');?>">
</div>
</div>
<input type="submit" class="btn btn-primary" style="width:100px;" value="<?php echo i18n('Save');?>">
<span><a class="btn btn-primary" href="<?php echo site_url();?>admin"><?php echo i18n('Cancel');?></a></span>
</form>

View File

@ -0,0 +1,49 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<h2><?php echo i18n('Edit'); echo ': ' . $username; ?></h2>
<br>
<?php
$role = user('role', $username);
$password = user('password', $username);
?>
<form method="POST">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>">
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Username');?></label>
<div class="col-sm-10">
<input type="text" name="username" readonly class="form-control" id="username-id" value="<?php echo $username;?>">
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 col-form-label"><?php echo i18n('Role');?></label>
<div class="col-sm-10">
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="role-name" id="admin-id" value="admin" <?php if ($role === 'admin'):?>checked<?php endif;?>>
<label class="form-check-label" for="admin-id">
Admin
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="role-name" id="editor-id" value="editor" <?php if ($role === 'editor'):?>checked<?php endif;?>>
<label class="form-check-label" for="editor-id">
Editor
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="role-name" id="author-id" value="author" <?php if ($role === 'author'):?>checked<?php endif;?>>
<label class="form-check-label" for="author-id">
Author
</label>
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="site.url" class="col-sm-2 col-form-label"><?php echo i18n('Password');?></label>
<div class="col-sm-10">
<input type="password" name="password" class="form-control" id="password" value="" placeholder="<?php echo i18n('change_password');?>">
</div>
</div>
<input type="submit" class="btn btn-primary" style="width:100px;" value="<?php echo i18n('Save');?>">
<span><a class="btn btn-primary" href="<?php echo site_url();?>admin/users"><?php echo i18n('Cancel');?></a></span>
</form>

View File

@ -0,0 +1,16 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<h1><?php echo i18n('Import_RSS_Feed_2.0');?></h1>
<p><?php echo i18n('By_using_this_importer_you_confirm_that_the_feed_is_yours_or_that_at_least_you_have_the_authority_to_publish_it');?></p>
<form method="POST">
<label><?php echo i18n('Feed_Url');?> <span class="required">*</span></label><input type="url" class="form-control text <?php if (isset($url)) {
if (empty($url)) {
echo 'error';
}
} ?>" name="url"/><br>
<?php echo i18n('Add_source_link_optional');?> <input type="checkbox" class="checkbox" name="credit" value="yes"/><br><br>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<input type="submit" name="submit" class="btn btn-primary submit" value="<?php echo i18n('Import_Feed');?>"/>
</form>

View File

@ -0,0 +1,403 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<!DOCTYPE html>
<html lang="<?php echo blog_language();?>">
<head>
<?php echo head_contents();?>
<title><?php echo $title;?></title>
<meta name="description" content="<?php echo $description; ?>"/>
<link rel="canonical" href="<?php echo $canonical; ?>" />
<link rel="stylesheet" href="<?php echo site_url() ?>system/resources/css/fontawesome.min.css">
<link rel="stylesheet" href="<?php echo site_url() ?>system/resources/css/solid.min.css">
<link href="<?php echo site_url() ?>system/resources/css/adminlte.min.css?v=1" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">
<script src="<?php echo site_url() ?>system/resources/js/jquery.min.js"></script>
<script src="<?php echo site_url() ?>system/resources/js/jquery-ui.min.js"></script>
</head>
<?php if (login()) {
$user = $_SESSION[site_url()]['user'];
$role = user('role', $user);
$author = get_author($user);
if (isset($author[0])) {
$author = $author[0];
} else {
$author = default_profile($user);
}
?>
<body class="hold-transition sidebar-mini <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "light-mode" : "dark-mode"); ?>">
<div id="top"></div>
<div class="wrapper">
<style>.error-message ul {margin:0;padding:0;list-style-type:none;}</style>
<!-- Navbar -->
<nav class="main-header navbar navbar-expand <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "navbar-white navbar-light" : "navbar-gray-dark navbar-dark"); ?>">
<!-- Left navbar links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" data-widget="pushmenu" href="#" role="button"><i class="fa fa-bars"></i></a>
</li>
<li class="nav-item d-none d-sm-inline-block">
<a href="<?php echo site_url();?>" class="nav-link"><i class="fa fa-globe"></i> <?php echo config('breadcrumb.home')?></a>
</li>
</ul>
<!-- SEARCH FORM -->
<form class="form-inline ml-3">
<input type="search" name="search" class="form-control" placeholder="<?php echo i18n('Type_to_search')?>">
</form>
</nav>
<!-- /.navbar -->
<!-- Main Sidebar Container -->
<aside class="main-sidebar sidebar-dark-primary elevation-4">
<!-- Sidebar -->
<div class="sidebar">
<!-- Sidebar user panel (optional) -->
<div class="user-panel mt-3 pb-3 mb-3 d-flex">
<div class="image">
<img src="<?php echo $author->avatar; ?>" class="img-circle elevation-2" alt="HTMLy logo">
</div>
<div class="info">
<a href="<?php echo site_url();?>admin" class="d-block"><?php echo i18n('Dashboard')?></a>
</div>
</div>
<!-- Sidebar Menu -->
<nav class="mt-2">
<ul class="nav nav-pills nav-sidebar flex-column" data-widget="treeview" role="menu" data-accordion="false">
<!-- Add icons to the links using the .nav-icon class
with font-awesome or any other icon font library -->
<li class="nav-item">
<a href="<?php echo site_url();?>admin/content" class="nav-link">
<i class="nav-icon fa-solid fa-square-plus"></i>
<p>
<?php echo ucwords(i18n('Add_content')); ?>
</p>
</a>
</li>
<li class="nav-item has-treeview menu-open">
<a href="#" class="nav-link">
<i class="nav-icon fa fa-thumb-tack"></i>
<p>
<?php echo i18n('Posts'); ?>
<i class="right fa fa-angle-left"></i>
</p>
</a>
<ul class="nav nav-treeview">
<?php if ($role === 'editor' || $role === 'admin'):?>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/posts" class="nav-link">
<p>
<?php echo i18n('Posts_list'); ?>
</p>
</a>
</li>
<?php endif;?>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/mine" class="nav-link">
<p>
<?php echo i18n('My_posts');?>
</p>
</a>
</li>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/scheduled" class="nav-link">
<p>
<?php echo i18n('Scheduled'); ?>
</p>
</a>
</li>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/draft" class="nav-link">
<p>
<?php echo i18n('Posts_draft'); ?>
</p>
</a>
</li>
<?php if ($role === 'editor' || $role === 'admin'):?>
<?php if (config('views.counter') == 'true') : ?>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/popular" class="nav-link">
<p>
<?php echo i18n('Popular_posts');?>
</p>
</a>
</li>
<?php endif; ?>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/categories" class="nav-link">
<p>
<?php echo i18n('Categories');?>
</p>
</a>
</li>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/pages" class="nav-link">
<p>
<?php echo i18n('Static_pages'); ?>
</p>
</a>
</li>
<?php endif;?>
</ul>
</li>
<?php if ($role === 'editor' || $role === 'admin'):?>
<li class="nav-item has-treeview menu-open">
<a href="#" class="nav-link">
<i class="nav-icon fa fa-cogs"></i>
<p>
<?php echo i18n('Settings'); ?>
<i class="right fa fa-angle-left"></i>
</p>
</a>
<ul class="nav nav-treeview">
<?php if ($role === 'admin'):?>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/config" class="nav-link">
<p>
<?php echo i18n('Config'); ?>
</p>
</a>
</li>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/users" class="nav-link">
<p>
<?php echo i18n('Manage_users'); ?>
</p>
</a>
</li>
<?php endif;?>
<?php if ($role === 'editor' || $role === 'admin'):?>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/menu" class="nav-link">
<p>
<?php echo i18n('Menus');?>
</p>
</a>
</li>
<?php endif;?>
</ul>
</li>
<?php endif;?>
<?php if ($role === 'editor' || $role === 'admin'):?>
<li class="nav-item has-treeview menu-open">
<a href="#" class="nav-link">
<i class="nav-icon fa fa-briefcase"></i>
<p>
<?php echo i18n('Tools'); ?>
<i class="right fa fa-angle-left"></i>
</p>
</a>
<ul class="nav nav-treeview">
<li class="nav-item">
<a href="<?php echo site_url();?>admin/clear-cache" class="nav-link">
<p>
<?php echo i18n('Clear_cache');?>
</p>
</a>
</li>
<?php if (config('fulltext.search') == 'true') : ?>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/search" class="nav-link">
<p>
<?php echo i18n('search_index');?>
</p>
</a>
</li>
<?php endif; ?>
<?php if ($role === 'admin'):?>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/update" class="nav-link">
<p>
<?php echo i18n('Check_update'); ?>
</p>
</a>
</li>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/backup" class="nav-link">
<p>
<?php echo i18n('Backup');?>
</p>
</a>
</li>
<li class="nav-item">
<a href="<?php echo site_url();?>admin/import" class="nav-link">
<p>
<?php echo i18n('Import_RSS');?>
</p>
</a>
</li>
<?php endif;?>
</ul>
</li>
<?php endif;?>
<li class="nav-item has-treeview menu-open">
<a href="#" class="nav-link">
<i class="nav-icon fa fa-user"></i>
<p>
<?php echo i18n('User'); ?>
<i class="right fa fa-angle-left"></i>
</p>
</a>
<ul class="nav nav-treeview">
<li class="nav-item">
<a href="<?php echo site_url();?>edit/password" class="nav-link">
<p>
<?php echo i18n('Change_password');?>
</p>
</a>
</li>
<?php if (config('mfa.state') === 'true'): ?>
<li class="nav-item">
<a href="<?php echo site_url();?>edit/mfa" class="nav-link">
<p>
<?php echo i18n('config_mfa');?>
</p>
</a>
</li>
<?php endif;?>
<li class="nav-item">
<a href="<?php echo site_url();?>edit/profile" class="nav-link">
<p>
<?php echo i18n('Edit_profile');?>
</p>
</a>
</li>
<li class="nav-item">
<a href="<?php echo site_url();?>logout" class="nav-link">
<p>
<?php echo i18n('Logout'); ?>
</p>
</a>
</li>
</ul>
</ul>
</nav>
<!-- /.sidebar-menu -->
</div>
<!-- /.sidebar -->
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<div class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col">
<?php if (!empty($breadcrumb)): ?>
<style>.breadcrumb a {margin:0 5px;}</style>
<div class="breadcrumb"><?php echo $breadcrumb ?></div>
<?php endif; ?>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container-fluid -->
</div>
<!-- /.content-header -->
<!-- Main content -->
<div class="content">
<div class="container-fluid">
<div class="row">
<div class="col" >
<div class="card card-primary card-outline">
<div class="card-body">
<?php echo content() ?>
</div>
</div><!-- /.card -->
</div>
<!-- /.col-md-6 -->
</div>
<!-- /.row -->
</div><!-- /.container-fluid -->
</div>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<!-- Control Sidebar -->
<aside class="control-sidebar control-sidebar-dark">
<!-- Control sidebar content goes here -->
<div class="p-3">
<h5>Title</h5>
<p>Sidebar content</p>
</div>
</aside>
<!-- /.control-sidebar -->
<!-- Main Footer -->
<footer class="main-footer">
<!-- To the right -->
<div class="float-right d-none d-sm-inline">
<small><?php echo i18n('Admin_panel_style_based_on');?> <a rel="nofollow" target="_blank" href="https://github.com/ColorlibHQ/AdminLTE">AdminLTE</a></small>
</div>
<!-- Default to the left -->
<?php echo i18n('Proudly_powered_by');?> <a href="https://www.htmly.com" target="_blank"><?php echo 'HTMLy ' . constant('HTMLY_VERSION'); ?></a>
</footer>
</div>
<!-- ./wrapper -->
<?php } else { ?>
<body class="hold-transition login-page <?php echo ((config('admin.theme') === 'light' || is_null(config('admin.theme'))) ? "light-mode" : "dark-mode"); ?>">
<div class="login-box">
<div class="login-logo">
<h1><a href="https://www.htmly.com" target="_blank"><img width="200px" src="<?php echo site_url(); ?>system/resources/images/logo-big.png" alt="HTMLy"/></a></h1>
</div>
<!-- /.login-logo -->
<div class="card">
<div class="card-body login-card-body">
<p class="login-box-msg"><?php echo i18n('Sign_in_to_start_your_session');?></p>
<?php echo content();?>
</div>
<!-- /.login-card-body -->
</div>
<br>
<span><a href="<?php echo site_url();?>"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-arrow-left" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M15 8a.5.5 0 0 0-.5-.5H2.707l3.147-3.146a.5.5 0 1 0-.708-.708l-4 4a.5.5 0 0 0 0 .708l4 4a.5.5 0 0 0 .708-.708L2.707 8.5H14.5A.5.5 0 0 0 15 8z"/>
</svg> <?php echo i18n('Back_to'); ?> <?php echo blog_title();?></a></span>
</div>
<?php } ?>
<style>
.top-link {
visibility: hidden;
position: fixed;
bottom: 60px;
right: 30px;
z-index: 99;
background: #ddd;
width: 42px;
height: 42px;
padding: 12px;
border-radius: 64px;
transition: visibility 0.5s, opacity 0.8s linear;
border: none;
font-size:13px;
}
.top-link:focus {
outline: none;
}
</style>
<a href="#top" aria-label="go to top" title="Go to Top" class="top-link" id="top-link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
<path d="M12 6H0l6-6z"></path>
</svg>
</a>
<script>
var mybutton = document.getElementById("top-link");
window.onscroll = function () {
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
mybutton.style.visibility = "visible";
mybutton.style.opacity = "1";
} else {
mybutton.style.visibility = "hidden";
mybutton.style.opacity = "0";
}
};
</script>
<script src="<?php echo site_url() ?>system/resources/js/bootstrap.min.js"></script>
<script src="<?php echo site_url() ?>system/resources/js/adminlte.min.js"></script>
</body>
</html>

View File

@ -0,0 +1,17 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
$_SESSION["mfa_uid"] = $username;
$_SESSION["mfa_pwd"] = $password;
?>
<style>.error-message ul {margin:0;padding:0;}</style>
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<h1><?php echo i18n('Login');?></h1>
<form method="POST" action="login-mfa">
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<label><?php echo i18n('MFACode');?></label>
<input type="text" class="form-control" name="mfacode" placeholder="<?php echo i18n('verify_code'); ?>"/>
<br>
<input type="submit" class="btn btn-primary" name="submit" value="<?php echo i18n('Login');?>"/>
</form>

View File

@ -0,0 +1,38 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<style>.error-message ul {margin:0;padding:0;}</style>
<?php if (isset($error)) { ?>
<div class="error-message"><?php echo $error ?></div>
<?php } ?>
<?php if (!login()) { ?>
<h1><?php echo i18n('Login');?></h1>
<form method="POST" action="login">
<label><?php echo i18n('User');?> <span class="required">*</span></label>
<input type="text" class="form-control <?php if (isset($username)) {
if (empty($username)) {
echo 'error';
}
} ?>" name="user" placeholder="<?php echo i18n('User'); ?>"/>
<br>
<label><?php echo i18n('Password');?> <span class="required">*</span></label>
<input type="password" class="form-control <?php if (isset($password)) {
if (empty($password)) {
echo 'error';
}
} ?>" name="password" placeholder="<?php echo i18n('Password'); ?>"/>
<br>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf() ?>">
<?php if (config('login.protect.system') === 'google'): ?>
<script src='https://www.google.com/recaptcha/api.js'></script>
<div class="g-recaptcha" data-sitekey="<?php echo config("login.protect.public"); ?>"></div>
<br/>
<?php endif; ?>
<?php if (config('login.protect.system') === 'cloudflare'): ?>
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" defer></script>
<div style="text-align:center;" class="cf-turnstile" data-sitekey="<?php echo config("login.protect.public"); ?>"></div>
<br/>
<?php endif; ?>
<input type="submit" class="btn btn-primary" name="submit" value="<?php echo i18n('Login');?>"/>
</form>
<?php } else {
header('location: admin');
} ?>

View File

@ -0,0 +1,8 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php
unset($_SESSION[site_url()]);
header('location: login');
?>

View File

@ -0,0 +1,31 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<?php echo '<h2>' . i18n('Your_recent_posts') . '</h2>';?>
<br>
<a class="btn btn-primary right" href="<?php echo site_url();?>admin/content"><?php echo i18n('Add_content');?></a>
<br><br>
<?php
if (isset($_SESSION[site_url()]['user'])) {
$posts = get_profile_posts($_SESSION[site_url()]['user'], 1, 10);
if (!empty($posts)) {
echo '<table class="table post-list">';
echo '<tr class="head"><th>' . i18n('Title') . '</th><th>' . i18n('Published') . '</th>';
if (config("views.counter") == "true")
echo '<th>'.i18n('Views').'</th>';
echo '<th>' . i18n('Category') . '</th><th>' . i18n('Tags') . '</th><th>' . i18n('Operations') . '</th></tr>';
foreach ($posts as $p) {
echo '<tr>';
echo '<td><a target="_blank" href="' . $p->url . '">' . $p->title . '</a></td>';
echo '<td>' . format_date($p->date) . '</td>';
if (config("views.counter") == "true")
echo '<td>' . $p->views . '</td>';
echo '<td><a href="' . site_url() . 'admin/categories/' . $p->categorySlug . '">'. $p->categoryTitle .'</a></td>';
echo '<td>' . str_replace("rel=\"tag\"", "rel=\"tag\" class=\"badge badge-light text-primary font-weight-normal\"", $p->tag) . '</td>';
echo '<td><a class="btn btn-primary btn-xs" href="' . $p->url . '/edit?destination=admin">' . i18n('Edit') . '</a> <a class="btn btn-danger btn-xs" href="' . $p->url . '/delete?destination=admin">' . i18n('Delete') . '</a></td>';
echo '</tr>';
}
echo '</table>';
}
}
?>

Some files were not shown because too many files have changed in this diff Show More