diff -Nru php-horde-crypt-2.7.8/debian/changelog php-horde-crypt-2.7.9/debian/changelog --- php-horde-crypt-2.7.8/debian/changelog 2017-05-27 20:14:43.000000000 +0000 +++ php-horde-crypt-2.7.9/debian/changelog 2017-07-01 19:25:09.000000000 +0000 @@ -1,3 +1,12 @@ +php-horde-crypt (2.7.9-1) unstable; urgency=medium + + * New upstream version 2.7.9 + - Remove 0001-Horde_Crypt-Fix-getFingerprintsFromKey-test-with-gpg.patch and + 0002-Horde_Crypt-Fix-GetSignersKeyID-test-with-gpg-2.1.18.patch, merged + upstream + + -- Mathieu Parent Sat, 01 Jul 2017 21:25:09 +0200 + php-horde-crypt (2.7.8-1) unstable; urgency=medium * New upstream version 2.7.8 diff -Nru php-horde-crypt-2.7.8/debian/patches/0001-Horde_Crypt-Fix-getFingerprintsFromKey-test-with-gpg.patch php-horde-crypt-2.7.9/debian/patches/0001-Horde_Crypt-Fix-getFingerprintsFromKey-test-with-gpg.patch --- php-horde-crypt-2.7.8/debian/patches/0001-Horde_Crypt-Fix-getFingerprintsFromKey-test-with-gpg.patch 2017-05-27 20:14:43.000000000 +0000 +++ php-horde-crypt-2.7.9/debian/patches/0001-Horde_Crypt-Fix-getFingerprintsFromKey-test-with-gpg.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -From a9e6ac7d33c06cd4500f95dd6004f7736d7340eb Mon Sep 17 00:00:00 2001 -From: Mathieu Parent -Date: Thu, 18 May 2017 22:39:35 +0200 -Subject: [PATCH 1/2] Horde_Crypt: Fix getFingerprintsFromKey test with gpg - 2.1.18 - -Using --with-colons and --fixed-list-mode ensure stable formating. ---- - Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php | 11 +++++++---- - 1 file changed, 7 insertions(+), 4 deletions(-) - -diff --git a/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php b/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php -index 2d71888ec0..5d80705eb6 100644 ---- a/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php -+++ b/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php -@@ -382,6 +382,8 @@ extends Horde_Crypt_Pgp_Backend - array( - '--fingerprint', - $keyring, -+ '--with-colons', -+ '--fixed-list-mode', - ), - 'r', - null, -@@ -397,10 +399,11 @@ extends Horde_Crypt_Pgp_Backend - $lines = explode("\n", $result->stdout); - - foreach ($lines as $line) { -- if (preg_match('/pub\s+\w+\/(\w{8})/', $line, $matches)) { -- $keyid = '0x' . $matches[1]; -- } elseif ($keyid && preg_match('/^\s+[\s\w]+=\s*([\w\s]+)$/m', $line, $matches)) { -- $fingerprints[$keyid] = str_replace(' ', '', $matches[1]); -+ $fields = explode(':', $line); -+ if ($fields[0] == 'pub') { -+ $keyid = '0x' . substr($fields[4], -8); -+ } elseif ($keyid && ($fields[0] == 'fpr')) { -+ $fingerprints[$keyid] = $fields[9]; - $keyid = null; - } - } --- -2.11.0 - diff -Nru php-horde-crypt-2.7.8/debian/patches/0002-Horde_Crypt-Fix-GetSignersKeyID-test-with-gpg-2.1.18.patch php-horde-crypt-2.7.9/debian/patches/0002-Horde_Crypt-Fix-GetSignersKeyID-test-with-gpg-2.1.18.patch --- php-horde-crypt-2.7.8/debian/patches/0002-Horde_Crypt-Fix-GetSignersKeyID-test-with-gpg-2.1.18.patch 2017-05-27 20:14:43.000000000 +0000 +++ php-horde-crypt-2.7.9/debian/patches/0002-Horde_Crypt-Fix-GetSignersKeyID-test-with-gpg-2.1.18.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -From de53721f027b135e3a43a0de0a0a3896d2bb249b Mon Sep 17 00:00:00 2001 -From: Mathieu Parent -Date: Thu, 18 May 2017 22:56:41 +0200 -Subject: [PATCH 2/2] Horde_Crypt: Fix GetSignersKeyID test with gpg 2.1.18 - -Output format has changed. ---- - Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php | 6 ++++++ - 1 file changed, 6 insertions(+) - -diff --git a/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php b/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php -index 5d80705eb6..9ec105cd66 100644 ---- a/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php -+++ b/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php -@@ -364,10 +364,16 @@ extends Horde_Crypt_Pgp_Backend - true - ); - -+ // GnuPG 1 - if (preg_match('/gpg:\sSignature\smade.*ID\s+([A-F0-9]{8})\s+/', $result->stderr, $matches)) { - return $matches[1]; - } - -+ // GnuPG 2 -+ if (preg_match('/gpg:\sSignature\smade.*using\s+\S+\s+key\s+([A-F0-9]{16})\s+/s', $result->stderr, $matches)) { -+ return substr($matches[1], -8); -+ } -+ - throw new Horde_Crypt_Exception(_("Cannot read PGP key ID")); - } - --- -2.11.0 - diff -Nru php-horde-crypt-2.7.8/debian/patches/series php-horde-crypt-2.7.9/debian/patches/series --- php-horde-crypt-2.7.8/debian/patches/series 2017-05-27 20:14:43.000000000 +0000 +++ php-horde-crypt-2.7.9/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -0001-Horde_Crypt-Fix-getFingerprintsFromKey-test-with-gpg.patch -0002-Horde_Crypt-Fix-GetSignersKeyID-test-with-gpg-2.1.18.patch diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/doc/Horde/Crypt/COPYING php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/doc/Horde/Crypt/COPYING --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/doc/Horde/Crypt/COPYING 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/doc/Horde/Crypt/COPYING 1970-01-01 00:00:00.000000000 +0000 @@ -1,458 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Exception.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Exception.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Exception.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Exception.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * Exception handler for the horde/Crypt package. - * - * @author Michael Slusarz - * @category Horde - * @copyright 2010-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ -class Horde_Crypt_Exception extends Horde_Exception_Wrapped -{ -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend/Binary.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,856 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * PGP backend that uses the gnupg binary. - * - * NOTE: This class is NOT intended to be accessed outside of this package. - * There is NO guarantees that the API of this class will not change across - * versions. - * - * @author Michael Slusarz - * @category Horde - * @copyright 2015-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @internal - */ -class Horde_Crypt_Pgp_Backend_Binary -extends Horde_Crypt_Pgp_Backend -{ - /** - * GnuPG program location/common options. - * - * @var array - */ - protected $_gnupg; - - /** - * Filename of the temporary private keyring. - * - * @var string - */ - protected $_privateKeyring; - - /** - * Filename of the temporary public keyring. - * - * @var string - */ - protected $_publicKeyring; - - /** - * The temporary directory to use. - * - * @var string - */ - protected $_tempdir; - - /** - * Constructor. - * - * @param string $gnupg The path to the GnuPG binary. - * @param string $temp Location of temporary directory. - */ - public function __construct($gnupg, $temp = null) - { - $this->_tempdir = Horde_Util::createTempDir($temp); - - /* Store the location of GnuPG and set common options. */ - $this->_gnupg = array( - $gnupg, - '--emit-version', - '--no-tty', - '--no-secmem-warning', - '--no-options', - '--no-default-keyring', - '--yes', - '--homedir ' . $this->_tempdir - ); - - /* GnuPG 2 requires specifying the pinentry-mode. */ - $result = $this->_callGpg(array('--version'), 'r'); - if (preg_match('/gpg \(GnuPG\) (\d+\.\d+\.\d+)/', $result->stdout, $version) && - version_compare($version[1], '2.1.0', '>')) { - if (version_compare($version[1], '2.1.12', '>=')) { - $this->_gnupg[] = '--pinentry-mode loopback'; - file_put_contents( - $this->_tempdir . '/gpg-agent.conf', - 'allow-loopback-pinentry' - ); - } else { - throw new Horde_Crypt_Exception( - sprintf( - Horde_Crypt_Translation::t("Unsupported GnuPG version %s detected. Only versions < 2.1 and > 2.1.11 are supported."), - $version[1] - ) - ); - } - } - } - - /** - */ - public function generateKey($opts) - { - /* Create temp files to hold the generated keys. */ - $pub_file = $this->_createTempFile('horde-pgp'); - $secret_file = $this->_createTempFile('horde-pgp'); - - $expire = empty($opts['expire']) - ? 0 - : date('Y-m-d', $opts['expire']); - - /* Create the config file necessary for GnuPG to run in batch mode. */ - /* TODO: Sanitize input, More user customizable? */ - $input = array( - '%pubring ' . $pub_file, - '%secring ' . $secret_file, - 'Key-Type: ' . $opts['key_type'], - 'Key-Length: ' . $opts['keylength'], - 'Subkey-Type: ' . $opts['subkey_type'], - 'Subkey-Length: ' . $opts['keylength'], - 'Name-Real: ' . $opts['name'], - 'Name-Email: ' . $opts['email'], - 'Expire-Date: ' . $expire, - 'Passphrase: ' . $opts['passphrase'], - 'Preferences: AES256 AES192 AES CAST5 3DES SHA256 SHA512 SHA384 SHA224 SHA1 ZLIB BZIP2 ZIP Uncompressed' - ); - if (!empty($opts['comment'])) { - $input[] = 'Name-Comment: ' . $opts['comment']; - } - $input[] = '%commit'; - - /* Run through gpg binary. */ - $result = $this->_callGpg( - array( - '--gen-key', - '--batch', - '--armor' - ), - 'w', - $input, - true, - true - ); - - /* Get the keys from the temp files. */ - $public_key = file_get_contents($pub_file); - $secret_key = file_get_contents($secret_file); - - /* If either key is empty, something went wrong. */ - if (empty($public_key) || empty($secret_key)) { - throw new Horde_Crypt_Exception(_("Cannot generate PGP keys")); - } - - return array( - 'public' => $public_key, - 'private' => $secret_key - ); - } - - /** - */ - public function packetInfo($pgpdata) - { - $info = $this->packetInfoMultiple($pgpdata); - return reset($info); - } - - /** - */ - public function packetInfoMultiple($pgpdata) - { - $header = $keyid = null; - $input = $this->_createTempFile('horde-pgp'); - $sig_id = $uid_idx = 0; - $key_idx = -1; - $out = array(); - - $this2 = $this; - - $packetInfoHelper = function ($a) { - return chr(hexdec($a[1])); - }; - - /* The list of PGP hash algorithms (from RFC 3156). */ - $hashAlg = array( - 1 => 'pgp-md5', - 2 => 'pgp-sha1', - 3 => 'pgp-ripemd160', - 5 => 'pgp-md2', - 6 => 'pgp-tiger192', - 7 => 'pgp-haval-5-160', - 8 => 'pgp-sha256', - 9 => 'pgp-sha384', - 10 => 'pgp-sha512', - 11 => 'pgp-sha224' - ); - - /* Store message in temporary file. */ - file_put_contents($input, $pgpdata); - - $cmdline = array( - '--list-packets', - $input - ); - $result = $this->_callGpg($cmdline, 'r', null, false, false, true); - - foreach (explode("\n", $result->stdout) as $line) { - /* Headers are prefaced with a ':' as the first character on the - * line. */ - if (strpos($line, ':') === 0) { - $lowerLine = Horde_String::lower($line); - - if (strpos($lowerLine, ':public key packet:') !== false) { - $header = 'public_key'; - $key_idx++; - $uid_idx = 0; - continue; - } - - if (strpos($lowerLine, ':secret key packet:') !== false) { - $header = 'secret_key'; - continue; - } - - if (strpos($lowerLine, ':user id packet:') !== false) { - $uid_idx++; - $line = preg_replace_callback('/\\\\x([0-9a-f]{2})/', $packetInfoHelper, $line); - if (!preg_match('/"([^\<]+)\<([^\>]+)\>"/', $line, $matches)) { - continue; - } - $header = 'id' . $uid_idx; - if (preg_match('/([^\(]+)\((.+)\)$/', trim($matches[1]), $comment_matches)) { - $out[$key_idx]['signature'][$header]['name'] = trim($comment_matches[1]); - $out[$key_idx]['signature'][$header]['comment'] = $comment_matches[2]; - } else { - $out[$key_idx]['signature'][$header]['name'] = trim($matches[1]); - $out[$key_idx]['signature'][$header]['comment'] = ''; - } - // Some gpg versions do not return keyid in the - // :public|secret key packet: section so we use the - // fingerprint - if (empty($keyid)) { - $cmdline = array( - '--with-fingerprint', - $input - ); - $results = $this->_callGpg($cmdline, 'r', null, false, false, true); - if (preg_match('/key fingerprint = ([0-9A-Z ]+)/i', $results->stdout, $m)) { - $keyid = substr(str_replace(' ', '', $m[1]), -16); - } - } - $out[$key_idx]['signature'][$header]['email'] = $matches[2]; - $out[$key_idx]['signature'][$header]['keyid'] = $keyid; - continue; - } - - if (strpos($lowerLine, ':signature packet:') !== false) { - if (empty($header) || empty($uid_idx)) { - $header = '_SIGNATURE'; - } - if (!preg_match('/keyid\s+([0-9A-F]+)/i', $line, $matches)) { - continue; - } - $sig_id = $matches[1]; - $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['keyid'] = $matches[1]; - $out[$key_idx]['keyid'] = $matches[1]; - continue; - } - - if (strpos($lowerLine, ':literal data packet:') !== false) { - $header = 'literal'; - continue; - } - - if (strpos($lowerLine, ':encrypted data packet:') !== false) { - $header = 'encrypted'; - continue; - } - - $header = null; - continue; - } - - if ($header == 'secret_key' || $header == 'public_key') { - if (preg_match('/created\s+(\d+),\s+expires\s+(\d+)/i', $line, $matches)) { - $out[$key_idx][$header]['created'] = $matches[1]; - $out[$key_idx][$header]['expires'] = $matches[2]; - continue; - } - if (preg_match('/\s+[sp]key\[0\]:\s+\[(\d+)/i', $line, $matches)) { - $out[$key_idx][$header]['size'] = $matches[1]; - continue; - } - if (preg_match('/\s+keyid:\s+([0-9A-F]+)/i', $line, $matches)) { - $keyid = $matches[1]; - continue; - } - continue; - } - - if ($header == 'literal' || $header == 'encrypted') { - $out[$key_idx][$header] = true; - continue; - } - - if ($header) { - if (preg_match('/version\s+\d+,\s+created\s+(\d+)/i', $line, $matches)) { - $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['created'] = $matches[1]; - continue; - } - - if (isset($out[$key_idx]['signature'][$header]['sig_' . $sig_id]['created']) && - preg_match('/expires after (\d+y\d+d\d+h\d+m)\)$/', $line, $matches)) { - $expires = $matches[1]; - preg_match('/^(\d+)y(\d+)d(\d+)h(\d+)m$/', $expires, $matches); - list(, $years, $days, $hours, $minutes) = $matches; - $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['expires'] = - strtotime('+ ' . $years . ' years + ' . $days . ' days + ' . $hours . ' hours + ' . $minutes . ' minutes', $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['created']); - continue; - } - - if (preg_match('/digest algo\s+(\d{1})/', $line, $matches)) { - $micalg = $hashAlg[$matches[1]]; - $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['micalg'] = $micalg; - if ($header == '_SIGNATURE') { - /* Likely a signature block, not a key. */ - $out[$key_idx]['signature']['_SIGNATURE']['micalg'] = $micalg; - } - - if ($sig_id == $keyid) { - /* Self signing signature - we can assume - * the micalg value from this signature is - * that for the key */ - $out[$key_idx]['signature']['_SIGNATURE']['micalg'] = $micalg; - $out[$key_idx]['signature'][$header]['micalg'] = $micalg; - } - } - - continue; - } - } - - return $out; - } - - /** - */ - public function getSignersKeyID($text) - { - $input = $this->_createTempFile('horde-pgp'); - file_put_contents($input, $text); - - $result = $this->_callGpg( - array( - '--verify', - $input - ), - 'r', - null, - true, - true, - true - ); - - if (preg_match('/gpg:\sSignature\smade.*ID\s+([A-F0-9]{8})\s+/', $result->stderr, $matches)) { - return $matches[1]; - } - - throw new Horde_Crypt_Exception(_("Cannot read PGP key ID")); - } - - /** - */ - public function getFingerprintsFromKey($pgpdata) - { - /* Store the key in a temporary keyring. */ - $keyring = $this->_putInKeyring($pgpdata); - - $result = $this->_callGpg( - array( - '--fingerprint', - $keyring, - ), - 'r', - null, - true, - false, - true - ); - $this->_ensureResult($result); - - /* Parse fingerprints and key ids from output. */ - $fingerprints = array(); - $keyid = null; - $lines = explode("\n", $result->stdout); - - foreach ($lines as $line) { - if (preg_match('/pub\s+\w+\/(\w{8})/', $line, $matches)) { - $keyid = '0x' . $matches[1]; - } elseif ($keyid && preg_match('/^\s+[\s\w]+=\s*([\w\s]+)$/m', $line, $matches)) { - $fingerprints[$keyid] = str_replace(' ', '', $matches[1]); - $keyid = null; - } - } - - return empty($fingerprints) - ? false - : $fingerprints; - } - - /** - */ - public function isEncryptedSymmetrically($text) - { - $result = $this->_callGpg( - array( - '--decrypt', - '--batch', - '--passphrase ""' - ), - 'w', - $text, - true, - true, - true, - true - ); - - return (strpos($result->stderr, 'gpg: encrypted with 1 passphrase') !== false); - } - - /** - */ - public function encryptMessage($text, $params) - { - /* Create temp files for input. */ - $input = $this->_createTempFile('horde-pgp'); - file_put_contents($input, $text); - - /* Build command line. */ - $cmdline = array( - '--armor', - '--batch', - '--always-trust' - ); - - if (empty($params['symmetric'])) { - /* Store public key in temporary keyring. */ - $keyring = $this->_putInKeyring(array_values($params['recips'])); - - $cmdline[] = $keyring; - $cmdline[] = '--encrypt'; - foreach (array_keys($params['recips']) as $val) { - $cmdline[] = '--recipient ' . escapeshellarg($val); - } - } else { - $cmdline[] = '--symmetric'; - $cmdline[] = '--passphrase-fd 0'; - } - $cmdline[] = $input; - - /* Encrypt the document. */ - $result = $this->_callGpg( - $cmdline, - 'w', - empty($params['symmetric']) ? null : $params['passphrase'], - true, - true - ); - $this->_ensureResult($result); - - return $result->output; - } - - /** - */ - public function encryptSignature($text, $params) - { - /* Create temp files for input. */ - $input = $this->_createTempFile('horde-pgp'); - - /* Encryption requires both keyrings. */ - $pub_keyring = $this->_putInKeyring(array($params['pubkey'])); - $sec_keyring = $this->_putInKeyring( - array($params['privkey']), - 'private' - ); - - /* Store message in temporary file. */ - file_put_contents($input, $text); - - /* Sign the document. */ - $result = $this->_callGpg( - array( - '--armor', - '--batch', - '--passphrase-fd 0', - $sec_keyring, - $pub_keyring, - (isset($params['sigtype']) && ($params['sigtype'] == 'cleartext')) ? '--clearsign' : '--detach-sign', - $input - ), - 'w', - $params['passphrase'], - true, - true - ); - $this->_ensureResult($result); - - return $result->output; - } - - /** - */ - public function decryptMessage($text, $params) - { - /* Create temp files. */ - $input = $this->_createTempFile('horde-pgp'); - - /* Store message in file. */ - file_put_contents($input, $text); - - /* Build command line. */ - $cmdline = array( - '--always-trust', - '--armor', - '--batch' - ); - if (empty($params['no_passphrase'])) { - $cmdline[] = '--passphrase-fd 0'; - } - if (!empty($params['pubkey']) && !empty($params['privkey'])) { - /* Decryption requires both keyrings. */ - $pub_keyring = $this->_putInKeyring(array($params['pubkey'])); - $sec_keyring = $this->_putInKeyring(array($params['privkey']), 'private'); - $cmdline[] = $sec_keyring; - $cmdline[] = $pub_keyring; - } - $cmdline[] = '--decrypt'; - $cmdline[] = $input; - - $result = $this->_callGpg( - $cmdline, - empty($params['no_passphrase']) ? 'w' : 'r', - empty($params['no_passphrase']) ? $params['passphrase'] : null, - true, - true, - true - ); - $this->_ensureResult($result); - - return $this->_checkSignatureResult($result->stderr, $result->output); - } - - /** - */ - public function decryptSignature($text, $params) - { - /* Create temp files for input. */ - $input = $this->_createTempFile('horde-pgp'); - - /* Store public key in temporary keyring. */ - $keyring = $this->_putInKeyring($params['pubkey']); - - /* Store the message in a temporary file. */ - file_put_contents($input, $text); - - /* Options for the GPG binary. */ - $cmdline = array( - '--armor', - '--always-trust', - '--batch', - '--charset ' . (isset($params['charset']) ? escapeshellarg($params['charset']) : 'UTF-8'), - $keyring, - '--verify' - ); - - /* Extra stuff to do if we are using a detached signature. */ - if ($params['type'] === 'detached-signature') { - $sigfile = $this->_createTempFile('horde-pgp'); - $cmdline[] = $sigfile . ' ' . $input; - file_put_contents($sigfile, $params['signature']); - } else { - $cmdline[] = $input; - } - - /* Verify the signature. We need to catch standard error output, - * since this is where the signature information is sent. */ - $result = $this->_callGpg($cmdline, 'r', null, true, true, true); - - return $this->_checkSignatureResult($result->stderr, $result->stderr); - } - - /** - */ - public function getPublicKeyFromPrivateKey($data) - { - $this->_putInKeyring(array($data), 'private'); - $fingerprints = $this->getFingerprintsFromKey($data); - reset($fingerprints); - - $cmdline = array( - '--armor', - '--export', - key($fingerprints) - ); - - $result = $this->_callGpg($cmdline, 'r', array(), true, true); - $this->_ensureResult($result); - - return $result->output; - } - - /** - * Checks signature result from the GnuPG binary. - * - * @param string $result The signature result. - * @param string $message The decrypted message data. - * - * @return object See decryptSignature(). - * @throws Horde_Crypt_Exception - */ - protected function _checkSignatureResult($result, $message = null) - { - /* Good signature: - * gpg: Good signature from "blah blah blah (Comment)" - * Bad signature: - * gpg: BAD signature from "blah blah blah (Comment)" */ - if (strpos($result, 'gpg: BAD signature') !== false) { - throw new Horde_Crypt_Exception($result); - } - - $ob = new stdClass; - $ob->message = $message; - $ob->result = $result; - - return $ob; - } - - /** - * Function that handles interfacing with the GnuPG binary. - * - * @param array $options Options and commands to pass to GnuPG. - * @param string $mode 'r' to read from stdout, 'w' to write to - * stdin. - * @param array $input Input to write to stdin. - * @param boolean $output Collect and store output in object returned? - * @param boolean $stderr Collect and store stderr in object returned? - * @param boolean $parseable Is parseable output required? The gpg binary - * would be executed with C locale then. - * @param boolean $verbose Run GnuPG with verbose flag? - * - * @return stdClass Class with members output, stderr, and stdout. - * @throws Horde_Crypt_Exception - * @todo This method should be protected, but due to closures not having - * proper access to $this without assigning it to another variable - * which does not give it access to non-puplic members, we must - * make this public until H6 when we can require at least PHP 5.4. - */ - public function _callGpg( - $options, $mode, $input = array(), $output = false, $stderr = false, - $parseable = false, $verbose = false - ) - { - $data = new stdClass; - $data->output = null; - $data->stderr = null; - $data->stdout = null; - - /* Verbose output? */ - if (!$verbose) { - array_unshift($options, '--quiet'); - } - - /* Create temp files for output. */ - if ($output) { - $output_file = $this->_createTempFile('horde-pgp', false); - array_unshift($options, '--output ' . $output_file); - - /* Do we need standard error output? */ - if ($stderr) { - $stderr_file = $this->_createTempFile('horde-pgp', false); - $options[] = '2> ' . $stderr_file; - } - } - - /* Silence errors if not requested. */ - if (!$output || !$stderr) { - $options[] = '2> /dev/null'; - } - - /* Build the command line string now. */ - $cmdline = implode(' ', array_merge($this->_gnupg, $options)); - - $language = getenv('LANGUAGE'); - if ($parseable) { - putenv('LANGUAGE=C'); - } - if ($mode == 'w') { - if ($fp = popen($cmdline, 'w')) { - putenv('LANGUAGE=' . $language); - $win32 = !strncasecmp(PHP_OS, 'WIN', 3); - - if (!is_array($input)) { - $input = array($input); - } - - foreach ($input as $line) { - if ($win32 && (strpos($line, "\x0d\x0a") !== false)) { - $chunks = explode("\x0d\x0a", $line); - foreach ($chunks as $chunk) { - fputs($fp, $chunk . "\n"); - } - } else { - fputs($fp, $line . "\n"); - } - } - } else { - putenv('LANGUAGE=' . $language); - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to pgp binary.")); - } - } elseif ($mode == 'r') { - if ($fp = popen($cmdline, 'r')) { - putenv('LANGUAGE=' . $language); - while (!feof($fp)) { - $data->stdout .= fgets($fp, 1024); - } - } else { - putenv('LANGUAGE=' . $language); - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to pgp binary.")); - } - } - pclose($fp); - - if ($output) { - $data->output = file_get_contents($output_file); - unlink($output_file); - if ($stderr) { - $data->stderr = file_get_contents($stderr_file); - unlink($stderr_file); - } - } - - return $data; - } - - /** - * Creates a temporary gpg keyring. - * - * @param string $type The type of key to analyze. 'public' or 'private'. - * - * @return string Command line keystring option to use with gpg program. - */ - protected function _createKeyring($type = 'public') - { - switch (Horde_String::lower($type)) { - case 'public': - if (empty($this->_publicKeyring)) { - $this->_publicKeyring = $this->_createTempFile('horde-pgp'); - } - return '--keyring ' . $this->_publicKeyring; - - case 'private': - if (empty($this->_privateKeyring)) { - $this->_privateKeyring = $this->_createTempFile('horde-pgp'); - } - return '--secret-keyring ' . $this->_privateKeyring; - } - } - - /** - * Adds PGP keys to the keyring. - * - * @param mixed $keys A single key or an array of key(s) to add to the - * keyring. - * @param string $type The type of key(s) to add. 'public' or 'private'. - * - * @return string Command line keystring option to use with gpg program. - * @throws Horde_Crypt_Exception - */ - protected function _putInKeyring($keys = array(), $type = 'public') - { - $type = Horde_String::lower($type); - - if (!is_array($keys)) { - $keys = array($keys); - } - - /* Gnupg v2: --secret-keyring is not used, so import everything into - * the main keyring also. */ - if ($type == 'private') { - $this->_putInKeyring($keys); - } - - /* Create the keyrings if they don't already exist. */ - $keyring = $this->_createKeyring($type); - - /* Store the key(s) in the keyring. */ - $this->_callGpg( - array( - '--allow-secret-key-import', - '--batch', - '--fast-import', - $keyring - ), - 'w', - array_values($keys) - ); - - return $keyring; - } - - /** - * Checks whether there was some valid output. - * - * @param object $result A result from _callGpg(). - * - * @throws Horde_Crypt_Exception with messages from stderr if the result - * output is empty. - */ - protected function _ensureResult($result) - { - if (empty($result->output) && empty($result->stdout)) { - throw new Horde_Crypt_Exception( - preg_replace( - array('/^gpg: /', '/\n/'), - array('', '. '), - $result->stderr - ) - ); - } - } - - /** - * Create a temporary file that will be deleted at the end of this - * process. - * - * @param string $descrip Description string to use in filename. - * @param boolean $delete Delete the file automatically? - * - * @return string Filename of a temporary file. - */ - protected function _createTempFile($descrip = 'horde-crypt', - $delete = true) - { - return Horde_Util::getTempFile( - $descrip, - $delete, - $this->_tempdir, - true - ); - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Backend.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,221 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * Abstract backend class to implement PGP functionality. - * - * NOTE: This class is NOT intended to be accessed outside of this package. - * There is NO guarantees that the API of this class will not change across - * versions. - * - * @author Michael Slusarz - * @category Horde - * @copyright 2015-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @internal - */ -class Horde_Crypt_Pgp_Backend -{ - /** - * Is this driver supported? - * - * @return boolean True if supported. - */ - static public function supported() - { - return true; - } - - /** - * Generates a personal public/private keypair combination. - * - * @param array $opts Configuration: - * - comment: (string) The comment to use. - * - email: (string) The email to use. - * - expire: (integer) The expiration date (UNIX timestamp). No - * expiration if empty. - * - keylength: (integer) The keylength to use. - * - key_type: (string) Key type. - * - name: (string) The name to use. - * - passphrase: (string) The passphrase to use. - * - subkey_type: (string) Subkey type. - * - * @return mixed False on error; an array on success consisting of the - * following keys/values: - * - private: (string) Private key. - * - public: (string) Public key. - */ - public function generateKey($opts) - { - throw new BadMethodCallException(); - } - - /** - * Returns information on a PGP data block. - * - * @param string $pgpdata The PGP data block. - * - * @return array An array with information on the PGP data block. - * {@see Horde_Crypt_Pgp::pgpPacketInformation()} - */ - public function packetInfo($pgpdata) - { - throw new BadMethodCallException(); - } - - /** - * Returns all information on a PGP data block. - * - * @since Horde_Crypt 2.7.0 - * - * @param string $pgpdata The PGP data block. - * - * @return array An array with information on the PGP data block. - * {@see Horde_Crypt_Pgp::pgpPacketInformationMultiple()} - */ - public function packetInfoMultiple($pgpdata) - { - throw new BadMethodCallException(); - } - - /** - * Returns the key ID of the key used to sign a block of PGP data. - * - * @param string $text The PGP signed text block. - * - * @return mixed The key ID of the key used to sign $text. - */ - public function getSignersKeyId($text) - { - throw new BadMethodCallException(); - } - - /** - * Get the fingerprints from a key block. - * - * @param string $pgpdata The PGP data block. - * - * @return array The fingerprints in $pgpdata indexed by key id. - */ - public function getFingerprintsFromKey($pgpdata) - { - throw new BadMethodCallException(); - } - - /** - * Returns whether a text has been encrypted symmetrically. - * - * @param string $text The PGP encrypted text. - * - * @return boolean True if the text is symmetrically encrypted. - */ - public function isEncryptedSymmetrically($text) - { - throw new BadMethodCallException(); - } - - /** - * Encrypts a message in PGP format using a public key. - * - * @param string $text The text to be encrypted. - * @param array $params The parameters needed for encryption. - * - passphrase: The passphrase for the symmetric encryption (REQUIRED - * if 'symmetric' is true) - * - recips: An array with the e-mail address of the recipient as the - * key and that person's public key as the value. - * (REQUIRED if 'symmetric' is false) - * - symmetric: Whether to use symmetric instead of asymmetric - * encryption (defaults to false). - * - type: [REQUIRED] 'message' - * - * @return string The encrypted message. - */ - public function encryptMessage($text, $params) - { - throw new BadMethodCallException(); - } - - /** - * Signs a message in PGP format using a private key. - * - * @param string $text The text to be signed. - * @param array $params The parameters needed for signing. - * - passphrase: [REQUIRED] Passphrase for PGP Key. - * - privkey: [REQUIRED] PGP private key. - * - pubkey: [REQUIRED] PGP public key. - * - sigtype: Determine the signature type to use. - * - 'cleartext': Make a clear text signature - * - 'detach': Make a detached signature (DEFAULT) - * - type: [REQUIRED] 'signature' - * - * @return string The signed message. - */ - public function encryptSignature($text, $params) - { - throw new BadMethodCallException(); - } - - /** - * Decrypts an PGP encrypted message using a private/public keypair and a - * passhprase. - * - * @param string $text The text to be decrypted. - * @param array $params The parameters needed for decryption. - * - no_passphrase: Passphrase is not required. - * - passphrase: Passphrase for PGP Key. (REQUIRED, see no_passphrase) - * - privkey: PGP private key. (REQUIRED for asymmetric encryption) - * - pubkey: PGP public key. (REQUIRED for asymmetric encryption) - * - type: [REQUIRED] 'message' - * - * @return object An object with the following properties: - * - message: (string) The signature result text. - * - result: (boolean) The result of the signature test. - */ - public function decryptMessage($text, $params) - { - throw new BadMethodCallException(); - } - - /** - * Decrypts an PGP signed message using a public key. - * - * @param string $text The text to be verified. - * @param array $params The parameters needed for verification. - * - charset: Charset of the message body. - * - pubkey: [REQUIRED] PGP public key. - * - signature: PGP signature block. (REQUIRED for detached signature) - * - type: [REQUIRED] 'signature' or 'detached-signature' - * - * @return object An object with the following properties: - * - message: (string) The signature result text. - * - result: (boolean) The result of the signature test. - */ - public function decryptSignature($text, $params) - { - throw new BadMethodCallException(); - } - - /** - * Generates a public key from a private key. - * - * @param string $data Armor text of private key. - * - * @return string Armor text of public key. - */ - public function getPublicKeyFromPrivateKey($data) - { - throw new BadMethodCallException(); - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Keyserver.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Keyserver.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Keyserver.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Keyserver.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,260 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * Provides methods to connect to a PGP keyserver. - * - * Connects to a public key server via HKP (Horrowitz Keyserver Protocol). - * http://tools.ietf.org/html/draft-shaw-openpgp-hkp-00 - * - * @author Michael Slusarz - * @category Horde - * @copyright 2002-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @since 2.4.0 - */ -class Horde_Crypt_Pgp_Keyserver -{ - /** - * HTTP object. - * - * @var Horde_Http_Client - */ - protected $_http; - - /** - * Keyserver hostname. - * - * @var string - */ - protected $_keyserver; - - /** - * PGP object. - * - * @var Horde_Crypt_Pgp - */ - protected $_pgp; - - /** - * Constructor. - * - * @param Horde_Crypt_Pgp $pgp A Horde_Crypt_Pgp object. - * @param array $params Optional parameters: - *
-     *   - http: (Horde_Http_Client) The HTTP client object to use.
-     *   - keyserver: (string) The public PGP keyserver to use.
-     *   - port: (integer) The public PGP keyserver port.
-     * 
- */ - public function __construct($pgp, array $params = array()) - { - $this->_pgp = $pgp; - if (isset($params['http'])) { - if (!($params['http'] instanceof Horde_Http_Client)) { - throw new InvalidArgumentException('Argument is not a Horde_Http_Client instance'); - } - $this->_http = $params['http']; - } else { - $this->_http = new Horde_Http_Client(); - } - /* There is a broken key server software that returns HTML content - * instead of plain text on arbitrary criteria. A User-Agent header is - * one of those. */ - $this->_http->{'request.userAgent'} = ''; - $this->_keyserver = isset($params['keyserver']) - ? $params['keyserver'] - : 'http://pool.sks-keyservers.net'; - $this->_keyserver .= ':' . (isset($params['port']) ? $params['port'] : '11371'); - } - - /** - * Returns PGP public key data retrieved from a public keyserver. - * - * @param string $keyid The key ID of the PGP key. - * - * @return string The PGP public key. - * @throws Horde_Crypt_Exception - */ - public function get($keyid) - { - /* Connect to the public keyserver. */ - $url = $this->_createUrl('/pks/lookup', array( - 'op' => 'get', - 'search' => $this->_pgp->getKeyIDString($keyid) - )); - - try { - $output = $this->_http->get($url)->getBody(); - } catch (Horde_Http_Exception $e) { - throw new Horde_Crypt_Exception($e); - } - - /* Grab PGP key from output. */ - if (($start = strstr($output, '-----BEGIN'))) { - $length = strpos($start, '-----END') + 34; - return substr($start, 0, $length); - } - - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Could not obtain public key from the keyserver.")); - } - - /** - * Sends a PGP public key to a public keyserver. - * - * @param string $pubkey The PGP public key - * - * @throws Horde_Crypt_Exception - */ - public function put($pubkey) - { - /* Get the key ID of the public key. */ - $info = $this->_pgp->pgpPacketInformation($pubkey); - - /* See if the public key already exists on the keyserver. */ - try { - $this->get($info['keyid']); - } catch (Horde_Crypt_Exception $e) { - $pubkey = 'keytext=' . urlencode(rtrim($pubkey)); - try { - $this->_http->post( - $this->_createUrl('/pks/add'), - $pubkey, - array( - 'User-Agent: Horde Application Framework', - 'Content-Type: application/x-www-form-urlencoded', - 'Content-Length: ' . strlen($pubkey), - 'Connection: close' - ) - ); - } catch (Horde_Http_Exception $e) { - throw new Horde_Crypt_Exception($e); - } - } - - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Key already exists on the public keyserver.")); - } - - /** - * Returns the first matching key ID for an email address from a public - * keyserver. - * - * @param string $address The email address of the PGP key. - * - * @return string The PGP key ID. - * @throws Horde_Crypt_Exception - */ - public function getKeyId($address) - { - $pubkey = null; - - /* Connect to the public keyserver. */ - $url = $this->_createUrl('/pks/lookup', array( - 'op' => 'index', - 'options' => 'mr', - 'search' => $address - )); - - // Some keyservers are broken, third time's a charm. - $output = null; - for ($i = 0; $i < 3; $i++) { - try { - $response = $this->_http->get($url); - // Some keyservers return HTML, try again. - if (strpos($response->getHeader('Content-Type'), 'text/plain') !== 0) { - continue; - } - $output = $response->getBody(); - } catch (Horde_Http_Exception $e) { - throw new Horde_Crypt_Exception($e); - } - } - - if (!$output) { - throw new Horde_Crypt_Exception( - Horde_Crypt_Translation::t("Could not obtain public key from the keyserver.") - ); - } - - if (strpos($output, '-----BEGIN PGP PUBLIC KEY BLOCK') !== false) { - $pubkey = $output; - } elseif (strpos($output, 'pub:') !== false) { - $output = explode("\n", $output); - $keyids = $keyuids = array(); - $curid = null; - - foreach ($output as $line) { - if (substr($line, 0, 4) == 'pub:') { - $line = explode(':', $line); - /* Ignore invalid lines and expired keys. */ - if (count($line) != 7 || - (!empty($line[5]) && $line[5] <= time())) { - continue; - } - $curid = $line[4]; - $keyids[$curid] = $line[1]; - } elseif (!is_null($curid) && substr($line, 0, 4) == 'uid:') { - preg_match("/<([^>]+)>/", $line, $matches); - $keyuids[$curid][] = $matches[1]; - } - } - - /* Remove keys without a matching UID. */ - foreach ($keyuids as $id => $uids) { - $match = false; - foreach ($uids as $uid) { - if ($uid == $address) { - $match = true; - break; - } - } - if (!$match) { - unset($keyids[$id]); - } - } - - /* Sort by timestamp to use the newest key. */ - if (count($keyids)) { - ksort($keyids); - $pubkey = $this->get(array_pop($keyids)); - } - } - - if ($pubkey) { - $sig = $this->_pgp->pgpPacketSignature($pubkey, $address); - if (!empty($sig['keyid']) && - (empty($sig['public_key']['expires']) || - $sig['public_key']['expires'] > time())) { - return substr($this->_pgp->getKeyIDString($sig['keyid']), 2); - } - } - - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Could not obtain public key from the keyserver.")); - } - - /** - * Create the URL for the keyserver. - * - * @param string $uri Action URI. - * @param array $params List of parameters to add to URL. - * - * @return Horde_Url Keyserver URL. - */ - protected function _createUrl($uri, array $params = array()) - { - $url = new Horde_Url($this->_keyserver . $uri, true); - return $url->add($params); - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Parse.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Parse.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Parse.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp/Parse.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,233 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * Provides methods to parse PGP armored text data. - * - * @author Michael Slusarz - * @category Horde - * @copyright 2002-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @since 2.4.0 - */ -class Horde_Crypt_Pgp_Parse -{ - /** - * Armor Header Lines - From RFC 2440: - * - * An Armor Header Line consists of the appropriate header line text - * surrounded by five (5) dashes ('-', 0x2D) on either side of the header - * line text. The header line text is chosen based upon the type of data - * that is being encoded in Armor, and how it is being encoded. - * - * All Armor Header Lines are prefixed with 'PGP'. - * - * The Armor Tail Line is composed in the same manner as the Armor Header - * Line, except the string "BEGIN" is replaced by the string "END." - */ - - /* Used for signed, encrypted, or compressed files. */ - const ARMOR_MESSAGE = 1; - - /* Used for signed files. */ - const ARMOR_SIGNED_MESSAGE = 2; - - /* Used for armoring public keys. */ - const ARMOR_PUBLIC_KEY = 3; - - /* Used for armoring private keys. */ - const ARMOR_PRIVATE_KEY = 4; - - /* Used for detached signatures, PGP/MIME signatures, and natures - * following clearsigned messages. */ - const ARMOR_SIGNATURE = 5; - - /* Regular text contained in an PGP message. */ - const ARMOR_TEXT = 6; - - /** - * Metadata names for data. - */ - const PGP_ARMOR = 'pgp_armor'; /* @since 2.5.0 */ - const SIG_CHARSET = 'pgp_sig_charset'; - const SIG_RAW = 'pgp_sig_raw'; - - /** - * Strings in armor header lines used to distinguish between the different - * types of PGP decryption/encryption. - * - * @var array - */ - protected $_armor = array( - 'MESSAGE' => self::ARMOR_MESSAGE, - 'SIGNED MESSAGE' => self::ARMOR_SIGNED_MESSAGE, - 'PUBLIC KEY BLOCK' => self::ARMOR_PUBLIC_KEY, - 'PRIVATE KEY BLOCK' => self::ARMOR_PRIVATE_KEY, - 'SIGNATURE' => self::ARMOR_SIGNATURE - ); - - /** - * Parses a message into text and PGP components. - * - * @param mixed $text Either the text to parse or a Horde_Stream object. - * - * @return array An array with the parsed text, returned in blocks of - * text corresponding to their actual order. Keys: - *
-     *   - data: (array) The data for each section. Each line has been
-     *           stripped of EOL characters.
-     *   - type: (integer) The type of data contained in block. Valid types
-     *           are the class ARMOR_* constants.
-     * 
- */ - public function parse($text) - { - $data = array(); - $temp = array( - 'type' => self::ARMOR_TEXT - ); - - if ($text instanceof Horde_Stream) { - $stream = $text; - $stream->rewind(); - } else { - $stream = new Horde_Stream_Temp(); - $stream->add($text, true); - } - - while (!$stream->eof()) { - $val = rtrim($stream->getToChar("\n", false), "\r"); - if ((strpos($val, '-----') === 0) && - preg_match('/^-----(BEGIN|END) PGP ([^-]+)-----\s*$/', $val, $matches)) { - if (isset($temp['data'])) { - $data[] = $temp; - } - $temp = array(); - - if ($matches[1] == 'BEGIN') { - $temp['type'] = $this->_armor[$matches[2]]; - $temp['data'][] = $val; - } elseif ($matches[1] == 'END') { - $temp['type'] = self::ARMOR_TEXT; - $data[count($data) - 1]['data'][] = $val; - } - } else { - $temp['data'][] = $val; - } - } - - if (isset($temp['data']) && - ((count($temp['data']) > 1) || !empty($temp['data'][0]))) { - $data[] = $temp; - } - - return $data; - } - - /** - * Parses an armored message into a Horde_Mime_Part object. - * - * @param mixed $text Either the text to parse or a Horde_Stream object. - * - * @return mixed Either null if no PGP data was found, or a - * Horde_Mime_Part object. For detached signature data: - * the full contents of the armored text (data + sig) is - * contained in the SIG_RAW metadata, and the charset is - * contained in the SIG_CHARSET metadata, within the - * application/pgp-signature part. - */ - public function parseToPart($text, $charset = 'UTF-8') - { - $parts = $this->parse($text); - - if (empty($parts) || - ((count($parts) == 1) && ($parts[0]['type'] == self::ARMOR_TEXT))) { - return null; - } - - $new_part = new Horde_Mime_Part(); - $new_part->setType('multipart/mixed'); - - for ($val = reset($parts); $val; $val = next($parts)) { - switch ($val['type']) { - case self::ARMOR_TEXT: - $part = new Horde_Mime_Part(); - $part->setType('text/plain'); - $part->setCharset($charset); - $part->setContents(implode("\n", $val['data'])); - $new_part->addPart($part); - break; - - case self::ARMOR_PUBLIC_KEY: - $part = new Horde_Mime_Part(); - $part->setType('application/pgp-keys'); - $part->setContents(implode("\n", $val['data'])); - $new_part->addPart($part); - break; - - case self::ARMOR_MESSAGE: - $part = new Horde_Mime_Part(); - $part->setType('multipart/encrypted'); - $part->setMetadata(self::PGP_ARMOR, true); - $part->setContentTypeParameter('protocol', 'application/pgp-encrypted'); - - $part1 = new Horde_Mime_Part(); - $part1->setType('application/pgp-encrypted'); - $part1->setContents("Version: 1\n"); - - $part2 = new Horde_Mime_Part(); - $part2->setType('application/octet-stream'); - $part2->setContents(implode("\n", $val['data'])); - $part2->setDisposition('inline'); - - $part->addPart($part1); - $part->addPart($part2); - - $new_part->addPart($part); - break; - - case self::ARMOR_SIGNED_MESSAGE: - if (($sig = next($parts)) && - ($sig['type'] == self::ARMOR_SIGNATURE)) { - $part = new Horde_Mime_Part(); - $part->setType('multipart/signed'); - // TODO: add micalg parameter - $part->setContentTypeParameter('protocol', 'application/pgp-signature'); - - $part1 = new Horde_Mime_Part(); - $part1->setType('text/plain'); - $part1->setCharset($charset); - - $part1_data = implode("\n", $val['data']); - $part1->setContents(substr($part1_data, strpos($part1_data, "\n\n") + 2)); - - $part2 = new Horde_Mime_Part(); - - $part2->setType('application/pgp-signature'); - $part2->setContents(implode("\n", $sig['data'])); - - $part2->setMetadata(self::SIG_CHARSET, $charset); - $part2->setMetadata(self::SIG_RAW, implode("\n", $val['data']) . "\n" . implode("\n", $sig['data'])); - - $part->addPart($part1); - $part->addPart($part2); - $new_part->addPart($part); - } - } - } - - return $new_part; - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Pgp.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,975 +0,0 @@ - - * @author Jan Schneider - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * A framework for Horde applications to interact with the GNU Privacy Guard - * program ("GnuPG"). GnuPG implements the OpenPGP standard (RFC 4880). - * - * GnuPG Website: ({@link http://www.gnupg.org/}) - * - * @author Michael Slusarz - * @author Jan Schneider - * @category Horde - * @copyright 2002-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ -class Horde_Crypt_Pgp extends Horde_Crypt -{ - /** - * List of initialized backends. - * - * @var array - */ - protected $_backends = array(); - - /** - * Constructor. - * - * @param array $params Configuration parameters: - * - backends: (array) The explicit list of backend drivers - * (Horde_Crypt_Pgp_Backend objects) to use. - * - program: (string) The path to the GnuPG binary. - * - temp: (string) Location of temporary directory. - */ - public function __construct($params = array()) - { - parent::__construct($params); - } - - /** - * Generates a personal Public/Private keypair combination. - * - * @param string $realname The name to use for the key. - * @param string $email The email to use for the key. - * @param string $passphrase The passphrase to use for the key. - * @param string $comment The comment to use for the key. - * @param integer $keylength The keylength to use for the key. - * @param integer $expire The expiration date (UNIX timestamp). No - * expiration if empty. - * @param string $key_type Key type (@since 2.2.0). - * @param string $subkey_type Subkey type (@since 2.2.0). - * - * @return array An array consisting of the following keys/values: - * - private: (string) Private key. - * - public: (string) Public key. - * - * @throws Horde_Crypt_Exception - */ - public function generateKey($realname, $email, $passphrase, $comment = '', - $keylength = 1024, $expire = null, - $key_type = 'RSA', $subkey_type = 'RSA') - { - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - $ret = $val->generateKey(array( - 'comment' => $comment, - 'email' => $email, - 'expire' => $expire, - 'keylength' => $keylength, - 'key_type' => $key_type, - 'name' => $realname, - 'passphrase' => $passphrase, - 'subkey_type' => $subkey_type - )); - - if ($ret !== false) { - return $ret; - } - } catch (Horde_Crypt_Exception $e) {} - } - - throw new Horde_Crypt_Exception( - Horde_Crypt_Translation::t("Public/Private keypair not generated successfully.") - ); - } - - /** - * Returns information on a PGP data block. - * - * If the data block contains multiple keys, only the first is returned. To - * return all keys of this block, use pgpPacketInformationMultiple() - * instead. - * - * @see pgpPacketInformationMultiple() - * - * @param string $pgpdata The PGP data block. - * - * @return array An array with information on the PGP data block. If an - * element is not present in the data block, it will - * likewise not be set in the array. - *
-     * Array Format:
-     * -------------
-     * [public_key]/[secret_key] => Array
-     *   (
-     *     [created] => Key creation - UNIX timestamp
-     *     [expires] => Key expiration - UNIX timestamp (0 = never expires)
-     *     [size]    => Size of the key in bits
-     *   )
-     *
-     * [keyid] => Key ID of the PGP data (if available)
-     *            16-bit hex value
-     *
-     * [signature] => Array (
-     *     [id{n}/'_SIGNATURE'] => Array (
-     *         [name]        => Full Name
-     *         [comment]     => Comment
-     *         [email]       => E-mail Address
-     *         [keyid]       => 16-bit hex value
-     *         [created]     => Signature creation - UNIX timestamp
-     *         [expires]     => Signature expiration - UNIX timestamp
-     *         [micalg]      => The hash used to create the signature
-     *         [sig_{hex}]   => Array [details of a sig verifying the ID] (
-     *             [created]     => Signature creation - UNIX timestamp
-     *             [expires]     => Signature expiration - UNIX timestamp
-     *             [keyid]       => 16-bit hex value
-     *             [micalg]      => The hash used to create the signature
-     *         )
-     *     )
-     * )
-     * 
- * - * Each user ID will be stored in the array 'signature' and have data - * associated with it, including an array for information on each - * signature that has signed that UID. Signatures not associated with a - * UID (e.g. revocation signatures and sub keys) will be stored under the - * special keyword '_SIGNATURE'. - */ - public function pgpPacketInformation($pgpdata) - { - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - return $val->packetInfo($pgpdata); - } catch (Horde_Crypt_Exception $e) {} - } - - return array(); - } - - /** - * Returns all information on a PGP data block. - * - * @since Horde_Crypt 2.7.0 - * @see pgpPacketInformation() - * - * @param string $pgpdata The PGP data block. - * - * @return array An array with information on the PGP data block. The - * array contains one or more entries as returned from - * pgpPacketInformation(). - */ - public function pgpPacketInformationMultiple($pgpdata) - { - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - return $val->packetInfoMultiple($pgpdata); - } catch (Horde_Crypt_Exception $e) {} - } - - return array(); - } - - /** - * Returns human readable information on a PGP key. - * - * @param string $pgpdata The PGP data block. - * - * @return string Tabular information on the PGP key. - * @throws Horde_Crypt_Exception - */ - public function pgpPrettyKey($pgpdata) - { - $msg = ''; - $fingerprints = $this->getFingerprintsFromKey($pgpdata); - $info = $this->pgpPacketInformation($pgpdata); - - if (empty($info['signature'])) { - return $msg; - } - - /* Making the property names the same width for all localizations .*/ - $leftrow = array( - Horde_Crypt_Translation::t("Name"), - Horde_Crypt_Translation::t("Key Type"), - Horde_Crypt_Translation::t("Key Creation"), - Horde_Crypt_Translation::t("Expiration Date"), - Horde_Crypt_Translation::t("Key Length"), - Horde_Crypt_Translation::t("Comment"), - Horde_Crypt_Translation::t("E-Mail"), - Horde_Crypt_Translation::t("Hash-Algorithm"), - Horde_Crypt_Translation::t("Key ID"), - Horde_Crypt_Translation::t("Key Fingerprint") - ); - - array_walk( - $leftrow, - function (&$s, $k, $m) { - $s .= ':' . str_repeat(' ', $m - Horde_String::length($s)); - }, - max(array_map('strlen', $leftrow)) + 2 - ); - - foreach ($info['signature'] as $uid_idx => $val) { - if ($uid_idx == '_SIGNATURE') { - continue; - } - - $key = $this->pgpPacketSignatureByUidIndex($pgpdata, $uid_idx); - - $keyid = empty($key['keyid']) - ? null - : $this->getKeyIDString($key['keyid']); - $fingerprint = isset($fingerprints[$keyid]) - ? $fingerprints[$keyid] - : null; - $sig_key = 'sig_' . $key['keyid']; - - $msg .= $leftrow[0] . (isset($key['name']) ? stripcslashes($key['name']) : '') . "\n" - . $leftrow[1] . (($key['key_type'] == 'public_key') ? Horde_Crypt_Translation::t("Public Key") : Horde_Crypt_Translation::t("Private Key")) . "\n" - . $leftrow[2] . strftime("%D", $val[$sig_key]['created']) . "\n" - . $leftrow[3] . (empty($val[$sig_key]['expires']) ? '[' . Horde_Crypt_Translation::t("Never") . ']' : strftime("%D", $val[$sig_key]['expires'])) . "\n" - . $leftrow[4] . $key['key_size'] . " Bytes\n" - . $leftrow[5] . (empty($key['comment']) ? '[' . Horde_Crypt_Translation::t("None") . ']' : $key['comment']) . "\n" - . $leftrow[6] . (empty($key['email']) ? '[' . Horde_Crypt_Translation::t("None") . ']' : $key['email']) . "\n" - . $leftrow[7] . (empty($key['micalg']) ? '[' . Horde_Crypt_Translation::t("Unknown") . ']' : $key['micalg']) . "\n" - . $leftrow[8] . (empty($keyid) ? '[' . Horde_Crypt_Translation::t("Unknown") . ']' : $keyid) . "\n" - . $leftrow[9] . (empty($fingerprint) ? '[' . Horde_Crypt_Translation::t("Unknown") . ']' : $fingerprint) . "\n\n"; - } - - return $msg; - } - - /** - * TODO - * - * @since 2.4.0 - */ - public function getKeyIDString($keyid) - { - /* Get the 8 character key ID string. */ - if (strpos($keyid, '0x') === 0) { - $keyid = substr($keyid, 2); - } - if (strlen($keyid) > 8) { - $keyid = substr($keyid, -8); - } - return '0x' . $keyid; - } - - /** - * Returns only information on the first ID that matches the email address - * input. - * - * @param string $pgpdata The PGP data block. - * @param string $email An e-mail address. - * - * @return array An array with information on the PGP data block. If an - * element is not present in the data block, it will - * likewise not be set in the array. Array elements: - * - comment: Comment - * - created: Signature creation (UNIX timestamp) - * - email: E-mail Address - * - key_created: Key creation (UNIX timestamp) - * - key_expires: Key expiration (UNIX timestamp; 0 = never expires) - * - key_size: Size of the key in bits - * - key_type: The key type (public_key or secret_key) - * - keyid: 16-bit hex value - * - micalg: The hash used to create the signature - * - name: Full Name - */ - public function pgpPacketSignature($pgpdata, $email) - { - $data = $this->pgpPacketInformation($pgpdata); - $out = array(); - - /* Check that [signature] key exists. */ - if (!isset($data['signature'])) { - return $out; - } - - /* Store the signature information now. */ - if (($email == '_SIGNATURE') && - isset($data['signature']['_SIGNATURE'])) { - foreach ($data['signature'][$email] as $key => $value) { - $out[$key] = $value; - } - } else { - $uid_idx = 1; - - while (isset($data['signature']['id' . $uid_idx])) { - if ($data['signature']['id' . $uid_idx]['email'] == $email) { - foreach ($data['signature']['id' . $uid_idx] as $key => $val) { - $out[$key] = $val; - } - break; - } - ++$uid_idx; - } - } - - return $this->_pgpPacketSignature($data, $out); - } - - /** - * Returns information on a PGP signature embedded in PGP data. Similar - * to pgpPacketSignature(), but returns information by unique User ID - * Index (format id{n} where n is an integer of 1 or greater). - * - * @see pgpPacketSignature() - * - * @param string $pgpdata See pgpPacketSignature(). - * @param string $uid_idx The UID index. - * - * @return array See pgpPacketSignature(). - */ - public function pgpPacketSignatureByUidIndex($pgpdata, $uid_idx) - { - $data = $this->pgpPacketInformation($pgpdata); - - return isset($data['signature'][$uid_idx]) - ? $this->_pgpPacketSignature($data, $data['signature'][$uid_idx]) - : array(); - } - - /** - * Adds some data to the pgpPacketSignature*() function array. - * - * @see pgpPacketSignature(). - * - * @param array $data See pgpPacketSignature(). - * @param array $out The return array. - * - * @return array The return array. - */ - protected function _pgpPacketSignature($data, $out) - { - /* If empty, return now. */ - if (empty($out)) { - return $out; - } - - $key_type = null; - - /* Store any public/private key information. */ - if (isset($data['public_key'])) { - $key_type = 'public_key'; - } elseif (isset($data['secret_key'])) { - $key_type = 'secret_key'; - } - - if ($key_type) { - $out['key_type'] = $key_type; - if (isset($data[$key_type]['created'])) { - $out['key_created'] = $data[$key_type]['created']; - } - if (isset($data[$key_type]['expires'])) { - $out['key_expires'] = $data[$key_type]['expires']; - } - if (isset($data[$key_type]['size'])) { - $out['key_size'] = $data[$key_type]['size']; - } - } - - return $out; - } - - /** - * Returns the key ID of the key used to sign a block of PGP data. - * - * @param string $text The PGP signed text block. - * - * @return string The key ID of the key used to sign $text, or null if - * not found. - */ - public function getSignersKeyID($text) - { - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - return $val->getSignersKeyId($text); - } catch (Horde_Crypt_Exception $e) {} - } - - return null; - } - - /** - * Verify a passphrase for a given public/private keypair. - * - * @param string $public_key The user's PGP public key. - * @param string $private_key The user's PGP private key. - * @param string $passphrase The user's passphrase. - * - * @return boolean Returns true on valid passphrase, false on invalid - * passphrase. - * @throws Horde_Crypt_Exception - */ - public function verifyPassphrase($public_key, $private_key, $passphrase) - { - /* Get e-mail address of public key. */ - $info = $this->pgpPacketInformation($public_key); - if (!isset($info['signature']['id1']['email'])) { - throw new Horde_Crypt_Exception( - Horde_Crypt_Translation::t("Could not determine the recipient's e-mail address.") - ); - } - - /* Encrypt a test message. */ - try { - $result = $this->encrypt( - 'Test', - array( - 'type' => 'message', - 'pubkey' => $public_key, - 'recips' => array( - $info['signature']['id1']['email'] => $public_key - ) - ) - ); - } catch (Horde_Crypt_Exception $e) { - return false; - } - - /* Try to decrypt the message. */ - try { - $this->decrypt( - $result, - array( - 'type' => 'message', - 'pubkey' => $public_key, - 'privkey' => $private_key, - 'passphrase' => $passphrase - ) - ); - } catch (Horde_Crypt_Exception $e) { - return false; - } - - return true; - } - - /** - * Sends a PGP public key to a public keyserver. - * - * @param string $pubkey The PGP public key - * @param string $server The keyserver to use. - * @param float $timeout The keyserver timeout. - * - * @throws Horde_Crypt_Exception - */ - public function putPublicKeyserver($pubkey, - $server = self::KEYSERVER_PUBLIC, - $timeout = self::KEYSERVER_TIMEOUT) - { - return $this->_getKeyserverOb($server)->put($pubkey); - } - - /** - * Returns the first matching key ID for an email address from a - * public keyserver. - * - * @param string $address The email address of the PGP key. - * @param string $server The keyserver to use. - * @param float $timeout The keyserver timeout. - * - * @return string The PGP key ID. - * @throws Horde_Crypt_Exception - */ - public function getKeyID($address, $server = self::KEYSERVER_PUBLIC, - $timeout = self::KEYSERVER_TIMEOUT) - { - return $this->_getKeyserverOb($server)->getKeyId($address); - } - - /** - * Get the fingerprints from a key block. - * - * @param string $pgpdata The PGP data block. - * - * @return array The fingerprints in $pgpdata indexed by key id. - */ - public function getFingerprintsFromKey($pgpdata) - { - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - return $val->getFingerprintsFromKey($pgpdata); - } catch (Horde_Crypt_Exception $e) {} - } - - return array(); - } - - /** - * Generates a public key from a private key. - * - * @param string $data Armor text of private key. - * - * @return string Armor text of public key, or null if it could not be - * generated. - */ - public function getPublicKeyFromPrivateKey($data) - { - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - return $val->getPublicKeyFromPrivateKey($data); - } catch (Horde_Crypt_Exception $e) {} - } - - return null; - } - - /** - * Encrypts text using PGP. - * - * @param string $text The text to be PGP encrypted. - * @param array $params The parameters needed for encryption. - * See the individual _encrypt*() functions for the - * parameter requirements. - * - * @return string The encrypted message. - * @throws Horde_Crypt_Exception - */ - public function encrypt($text, $params = array()) - { - switch (isset($params['type']) ? $params['type'] : false) { - case 'message': - $error = Horde_Crypt_Translation::t( - "Could not PGP encrypt message." - ); - $func = 'encryptMessage'; - break; - - case 'signature': - /* Check for required parameters. */ - if (!isset($params['pubkey']) || - !isset($params['privkey']) || - !isset($params['passphrase'])) { - /* This is a programming error, not a user displayable - * error. */ - throw new InvalidArgumentException( - 'A public PGP key, private PGP key, and passphrase are required to sign a message.' - ); - } - - $error = Horde_Crypt_Translation::t("Could not PGP sign message."); - $func = 'encryptSignature'; - break; - - default: - throw new InvalidArgumentException( - 'Incorrect "type" parameter provided.' - ); - } - - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - return $val->$func($text, $params); - } catch (Horde_Crypt_Exception $e) {} - } - - throw new Horde_Crypt_Exception($error); - } - - /** - * Decrypts text using PGP. - * - * @param string $text The text to be PGP decrypted. - * @param array $params The parameters needed for decryption. - * See the individual _decrypt*() functions for the - * parameter requirements. - * - * @return object An object with the following properties: - * - message: (string) The signature result text. - * - result: (boolean) The result of the signature test. - * - * @throws Horde_Crypt_Exception - */ - public function decrypt($text, $params = array()) - { - switch (isset($params['type']) ? $params['type'] : false) { - case 'detached-signature': - case 'signature': - /* Check for required parameters. */ - if (!isset($params['pubkey'])) { - throw new InvalidArgumentException( - 'A public PGP key is required to verify a signed message.' - ); - } - if (($params['type'] === 'detached-signature') && - !isset($params['signature'])) { - throw new InvalidArgumentException( - 'The detached PGP signature block is required to verify the signed message.' - ); - } - - $func = 'decryptSignature'; - break; - - case 'message': - /* Check for required parameters. */ - if (!isset($params['passphrase']) && - empty($params['no_passphrase'])) { - throw new InvalidArgumentException( - 'A passphrase is required to decrypt a message.' - ); - } - - $func = 'decryptMessage'; - break; - - default: - throw new InvalidArgumentException( - 'Incorrect "type" parameter provided.' - ); - } - - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - return $val->$func($text, $params); - } catch (Horde_Crypt_Exception $e) {} - } - - throw new Horde_Crypt_Exception( - Horde_Crypt_Translation::t("Could not decrypt PGP data.") - ); - } - - /** - * Returns whether a text has been encrypted symmetrically. - * - * @todo Return null, instead of exception, if tools are not available to - * determine whether data was encrypted symmetrically. - * - * @param string $text The PGP encrypted text. - * - * @return boolean True if the text is symmetrically encrypted. - * @throws Horde_Crypt_Exception - */ - public function encryptedSymmetrically($text) - { - $this->_initDrivers(); - - foreach ($this->_backends as $val) { - try { - return $val->isEncryptedSymmetrically($text); - } catch (Horde_Crypt_Exception $e) {} - } - - throw new Horde_Crypt_Exception( - Horde_Crypt_Translation::t("Unable to determine if data was encrypted symmetrically.") - ); - } - - /** - * Signs a MIME part using PGP. - * - * @param Horde_Mime_Part $mime_part The object to sign. - * @param array $params The parameters required for signing. - * ({@see _encryptSignature()}). - * - * @return mixed A Horde_Mime_Part object that is signed according to RFC - * 3156. - * @throws Horde_Crypt_Exception - */ - public function signMIMEPart($mime_part, $params = array()) - { - $params = array_merge($params, array( - 'sigtype' => 'detach', - 'type' => 'signature' - )); - - /* RFC 3156 Requirements for a PGP signed message: - * + Content-Type params 'micalg' & 'protocol' are REQUIRED. - * + The digitally signed message MUST be constrained to 7 bits. - * + The MIME headers MUST be a part of the signed data. - * + Ensure there are no trailing spaces in encoded data by forcing - * text to be Q-P encoded (see, e.g., RFC 3676 [4.6]). */ - - /* Ensure that all text parts are Q-P encoded. */ - foreach ($mime_part->contentTypeMap(false) as $key => $val) { - if (strpos($val, 'text/') === 0) { - $mime_part[$key]->setTransferEncoding('quoted-printable', array( - 'send' => true - )); - } - } - - /* Get the signature. */ - $msg_sign = $this->encrypt($mime_part->toString(array( - 'canonical' => true, - 'headers' => true - )), $params); - - /* Add the PGP signature. */ - $pgp_sign = new Horde_Mime_Part(); - $pgp_sign->setType('application/pgp-signature'); - $pgp_sign->setHeaderCharset('UTF-8'); - $pgp_sign->setDisposition('inline'); - $pgp_sign->setDescription( - Horde_Crypt_Translation::t("PGP Digital Signature") - ); - $pgp_sign->setContents($msg_sign, array('encoding' => '7bit')); - - /* Get the algorithim information from the signature. Since we are - * analyzing a signature packet, we need to use the special keyword - * '_SIGNATURE' - see Horde_Crypt_Pgp. */ - $sig_info = $this->pgpPacketSignature($msg_sign, '_SIGNATURE'); - - /* Setup the multipart MIME Part. */ - $part = new Horde_Mime_Part(); - $part->setType('multipart/signed'); - $part->setContents( - "This message is in MIME format and has been PGP signed.\n" - ); - $part->addPart($mime_part); - $part->addPart($pgp_sign); - $part->setContentTypeParameter( - 'protocol', - 'application/pgp-signature' - ); - $part->setContentTypeParameter('micalg', $sig_info['micalg']); - - return $part; - } - - /** - * Encrypts a MIME part using PGP. - * - * @param Horde_Mime_Part $mime_part The object to encrypt. - * @param array $params The parameters required for - * encryption - * ({@see _encryptMessage()}). - * - * @return mixed A Horde_Mime_Part object that is encrypted according to - * RFC 3156. - * @throws Horde_Crypt_Exception - */ - public function encryptMIMEPart($mime_part, $params = array()) - { - $params = array_merge($params, array('type' => 'message')); - - $signenc_body = $mime_part->toString(array( - 'canonical' => true, - 'headers' => true - )); - $message_encrypt = $this->encrypt($signenc_body, $params); - - /* Set up MIME Structure according to RFC 3156. */ - $part = new Horde_Mime_Part(); - $part->setType('multipart/encrypted'); - $part->setHeaderCharset('UTF-8'); - $part->setContentTypeParameter( - 'protocol', - 'application/pgp-encrypted' - ); - $part->setDescription( - Horde_Crypt_Translation::t("PGP Encrypted Data") - ); - $part->setContents( - "This message is in MIME format and has been PGP encrypted.\n" - ); - - $part1 = new Horde_Mime_Part(); - $part1->setType('application/pgp-encrypted'); - $part1->setCharset(null); - $part1->setContents("Version: 1\n", array('encoding' => '7bit')); - $part->addPart($part1); - - $part2 = new Horde_Mime_Part(); - $part2->setType('application/octet-stream'); - $part2->setCharset(null); - $part2->setContents($message_encrypt, array('encoding' => '7bit')); - $part2->setDisposition('inline'); - $part->addPart($part2); - - return $part; - } - - /** - * Signs and encrypts a MIME part using PGP. - * - * @param Horde_Mime_Part $mime_part The object to sign and encrypt. - * @param array $sign_params The parameters required for - * signing - * ({@see _encryptSignature()}). - * @param array $encrypt_params The parameters required for - * encryption - * ({@see _encryptMessage()}). - * - * @return mixed A Horde_Mime_Part object that is signed and encrypted - * according to RFC 3156. - * @throws Horde_Crypt_Exception - */ - public function signAndEncryptMIMEPart($mime_part, $sign_params = array(), - $encrypt_params = array()) - { - /* RFC 3156 requires that the entire signed message be encrypted. We - * need to explicitly call using Horde_Crypt_Pgp:: because we don't - * know whether a subclass has extended these methods. */ - $part = $this->signMIMEPart($mime_part, $sign_params); - $part = $this->encryptMIMEPart($part, $encrypt_params); - $part->setContents( - "This message is in MIME format and has been PGP signed and encrypted.\n" - ); - - $part->setCharset($this->_params['email_charset']); - $part->setDescription( - Horde_String::convertCharset( - Horde_Crypt_Translation::t("PGP Signed/Encrypted Data"), - 'UTF-8', - $this->_params['email_charset'] - ) - ); - - return $part; - } - - /** - * Generates a Horde_Mime_Part object, in accordance with RFC 3156, that - * contains a public key. - * - * @param string $key The public key. - * - * @return Horde_Mime_Part An object that contains the public key. - */ - public function publicKeyMIMEPart($key) - { - $part = new Horde_Mime_Part(); - $part->setType('application/pgp-keys'); - $part->setHeaderCharset('UTF-8'); - $part->setDescription(Horde_Crypt_Translation::t("PGP Public Key")); - $part->setContents($key, array('encoding' => '7bit')); - - return $part; - } - - /** - * Initialize the backend driver list. - */ - protected function _initDrivers() - { - if (empty($this->_backends)) { - if (isset($this->_params['backends'])) { - $this->_backends = $this->_params['backends']; - } else { - if (Horde_Crypt_Pgp_Backend_Binary::supported()) { - $this->_backends[] = new Horde_Crypt_Pgp_Backend_Binary( - $this->_params['program'], - isset($this->_params['temp']) ? $this->_params['temp'] : null - ); - } - } - } - } - - /* Deprecated components. */ - - /** - * @deprecated Use Horde_Crypt_Pgp_Parse instead. - */ - const ARMOR_MESSAGE = 1; - const ARMOR_SIGNED_MESSAGE = 2; - const ARMOR_PUBLIC_KEY = 3; - const ARMOR_PRIVATE_KEY = 4; - const ARMOR_SIGNATURE = 5; - const ARMOR_TEXT = 6; - - /** - * @deprecated Use Horde_Crypt_Pgp_Parse instead. - */ - protected $_armor = array( - 'MESSAGE' => self::ARMOR_MESSAGE, - 'SIGNED MESSAGE' => self::ARMOR_SIGNED_MESSAGE, - 'PUBLIC KEY BLOCK' => self::ARMOR_PUBLIC_KEY, - 'PRIVATE KEY BLOCK' => self::ARMOR_PRIVATE_KEY, - 'SIGNATURE' => self::ARMOR_SIGNATURE - ); - - /** - * @deprecated Use Horde_Crypt_Pgp_Keyserver instead. - */ - const KEYSERVER_PUBLIC = 'pool.sks-keyservers.net'; - const KEYSERVER_REFUSE = 3; - const KEYSERVER_TIMEOUT = 10; - - /** - * @deprecated Use Horde_Crypt_Pgp_Parse instead. - */ - public function parsePGPData($text) - { - $parse = new Horde_Crypt_Pgp_Parse(); - return $parse->parse($text); - } - - /** - * @deprecated Use Horde_Crypt_Pgp_Keyserver instead. - */ - public function getPublicKeyserver($keyid, - $server = self::KEYSERVER_PUBLIC, - $timeout = self::KEYSERVER_TIMEOUT, - $address = null) - { - $keyserver = $this->_getKeyserverOb($server); - if (empty($keyid) && !empty($address)) { - $keyid = $keyserver->getKeyID($address); - } - return $keyserver->get($keyid); - } - - /** - * @deprecated - */ - public function generateRevocation($key, $email, $passphrase) - { - throw new Horde_Crypt_Exception('Not supported'); - } - - /** - * @deprecated - * @internal - */ - protected function _getKeyserverOb($server) - { - $params = array( - 'keyserver' => $server, - 'http' => new Horde_Http_Client() - ); - - if (!empty($this->_params['proxy_host'])) { - $params['http']->{'request.proxyServer'} = $this->_params['proxy_host']; - if (isset($this->_params['proxy_port'])) { - $params['http']->{'request.proxyPort'} = $this->_params['proxy_port']; - } - } - - return new Horde_Crypt_Pgp_Keyserver($this, $params); - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Smime.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Smime.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Smime.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Smime.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,852 +0,0 @@ - - * @author Michael Slusarz - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * Library to interact with the OpenSSL library and implement S/MIME. - * - * @author Mike Cochrane - * @author Michael Slusarz - * @category Horde - * @copyright 2002-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ -class Horde_Crypt_Smime extends Horde_Crypt -{ - /** - * Constructor. - * - * @param array $params Configuration parameters: - * - temp: (string) Location of temporary directory. - */ - public function __construct($params = array()) - { - parent::__construct($params); - } - - /** - * Verify a passphrase for a given private key. - * - * @param string $private_key The user's private key. - * @param string $passphrase The user's passphrase. - * - * @return boolean Returns true on valid passphrase, false on invalid - * passphrase. - */ - public function verifyPassphrase($private_key, $passphrase) - { - $res = is_null($passphrase) - ? openssl_pkey_get_private($private_key) - : openssl_pkey_get_private($private_key, $passphrase); - - return is_resource($res); - } - - /** - * Encrypt text using S/MIME. - * - * @param string $text The text to be encrypted. - * @param array $params The parameters needed for encryption. - * See the individual _encrypt*() functions for - * the parameter requirements. - * - * @return string The encrypted message. - * @throws Horde_Crypt_Exception - */ - public function encrypt($text, $params = array()) - { - /* Check for availability of OpenSSL PHP extension. */ - $this->checkForOpenSSL(); - - if (isset($params['type'])) { - if ($params['type'] === 'message') { - return $this->_encryptMessage($text, $params); - } elseif ($params['type'] === 'signature') { - return $this->_encryptSignature($text, $params); - } - } - } - - /** - * Decrypt text via S/MIME. - * - * @param string $text The text to be smime decrypted. - * @param array $params The parameters needed for decryption. - * See the individual _decrypt*() functions for - * the parameter requirements. - * - * @return string The decrypted message. - * @throws Horde_Crypt_Exception - */ - public function decrypt($text, $params = array()) - { - /* Check for availability of OpenSSL PHP extension. */ - $this->checkForOpenSSL(); - - if (isset($params['type'])) { - if ($params['type'] === 'message') { - return $this->_decryptMessage($text, $params); - } elseif (($params['type'] === 'signature') || - ($params['type'] === 'detached-signature')) { - return $this->_decryptSignature($text, $params); - } - } - } - - /** - * Verify a signature using via S/MIME. - * - * @param string $text The multipart/signed data to be verified. - * @param mixed $certs Either a single or array of root certificates. - * - * @return stdClass Object with the following elements: - *
-     * cert - (string) The certificate of the signer stored in the message (in
-     *        PEM format).
-     * email - (string) The email of the signing person.
-     * msg - (string) Status string.
-     * verify - (boolean) True if certificate was verified.
-     * 
- * @throws Horde_Crypt_Exception - */ - public function verify($text, $certs) - { - /* Check for availability of OpenSSL PHP extension. */ - $this->checkForOpenSSL(); - - /* Create temp files for input/output. */ - $input = $this->_createTempFile('horde-smime'); - $output = $this->_createTempFile('horde-smime'); - - /* Write text to file */ - file_put_contents($input, $text); - unset($text); - - $root_certs = array(); - if (!is_array($certs)) { - $certs = array($certs); - } - foreach ($certs as $file) { - if (file_exists($file)) { - $root_certs[] = $file; - } - } - - $ob = new stdClass; - - if (!empty($root_certs) && - (openssl_pkcs7_verify($input, 0, $output, $root_certs) === true)) { - /* Message verified */ - $ob->msg = Horde_Crypt_Translation::t("Message verified successfully."); - $ob->verify = true; - } else { - /* Try again without verfying the signer's cert */ - $result = openssl_pkcs7_verify($input, PKCS7_NOVERIFY, $output); - - if ($result === -1) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Verification failed - an unknown error has occurred.")); - } elseif ($result === false) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Verification failed - this message may have been tampered with.")); - } - - $ob->msg = Horde_Crypt_Translation::t("Message verified successfully but the signer's certificate could not be verified."); - $ob->verify = false; - } - - $ob->cert = file_get_contents($output); - $ob->email = $this->getEmailFromKey($ob->cert); - - return $ob; - } - - /** - * Extract the contents from signed S/MIME data. - * - * @param string $data The signed S/MIME data. - * @param string $sslpath The path to the OpenSSL binary. - * - * @return string The contents embedded in the signed data. - * @throws Horde_Crypt_Exception - */ - public function extractSignedContents($data, $sslpath) - { - /* Check for availability of OpenSSL PHP extension. */ - $this->checkForOpenSSL(); - - /* Create temp files for input/output. */ - $input = $this->_createTempFile('horde-smime'); - $output = $this->_createTempFile('horde-smime'); - - /* Write text to file. */ - file_put_contents($input, $data); - unset($data); - - exec($sslpath . ' smime -verify -noverify -nochain -in ' . $input . ' -out ' . $output); - - $ret = file_get_contents($output); - if ($ret) { - return $ret; - } - - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("OpenSSL error: Could not extract data from signed S/MIME part.")); - } - - /** - * Sign a MIME part using S/MIME. This produces S/MIME Version 3.2 - * compatible data (see RFC 5751 [3.4]). - * - * @param Horde_Mime_Part $mime_part The object to sign. - * @param array $params The parameters required for signing. - * - * @return Horde_Mime_Part A signed MIME part object. - * @throws Horde_Crypt_Exception - */ - public function signMIMEPart($mime_part, $params) - { - /* Sign the part as a message */ - $message = $this->encrypt( - $mime_part->toString(array( - 'headers' => true, - 'canonical' => true - )), - $params - ); - - /* Break the result into its components */ - $mime_message = Horde_Mime_Part::parseMessage( - $message, - array('forcemime' => true) - ); - - $smime_sign = $mime_message->getPart('2'); - $smime_sign->setDescription( - Horde_Crypt_Translation::t("S/MIME Signature") - ); - $smime_sign->setTransferEncoding('base64', array('send' => true)); - - $smime_part = new Horde_Mime_Part(); - $smime_part->setType('multipart/signed'); - $smime_part->setContents( - "This is a cryptographically signed message in MIME format.\n" - ); - $smime_part->setContentTypeParameter( - 'protocol', - 'application/pkcs7-signature' - ); - $smime_part->setContentTypeParameter( - 'micalg', $mime_message->getContentTypeParameter('micalg') - ); - $smime_part->addPart($mime_part); - $smime_part->addPart($smime_sign); - - return $smime_part; - } - - /** - * Encrypt a MIME part using S/MIME. This produces S/MIME Version 3.2 - * compatible data (see RFC 5751 [3.3]). - * - * @param Horde_Mime_Part $mime_part The object to encrypt. - * @param array $params The parameters required for - * encryption. - * - * @return Horde_Mime_Part An encrypted MIME part object. - * @throws Horde_Crypt_Exception - */ - public function encryptMIMEPart($mime_part, $params = array()) - { - /* Sign the part as a message */ - $message = $this->encrypt( - $mime_part->toString(array( - 'headers' => true, - 'canonical' => true - )), - $params - ); - - $msg = new Horde_Mime_Part(); - $msg->setCharset($this->_params['email_charset']); - $msg->setHeaderCharset('UTF-8'); - $msg->setDescription( - Horde_Crypt_Translation::t("S/MIME Encrypted Message") - ); - $msg->setDisposition('inline'); - $msg->setType('application/pkcs7-mime'); - $msg->setContentTypeParameter('smime-type', 'enveloped-data'); - $msg->setContents( - substr($message, strpos($message, "\n\n") + 2), - array('encoding' => 'base64') - ); - - return $msg; - } - - /** - * Encrypt a message in S/MIME format using a public key. - * - * @param string $text The text to be encrypted. - * @param array $params The parameters needed for encryption. - * - type: (string) [REQUIRED] 'message'. - * - pubkey: (mixed) [REQUIRED] Public key/cert or array of public - * keys/certs. - * - * @return string The encrypted message. - * @throws Horde_Crypt_Exception - */ - protected function _encryptMessage($text, $params) - { - /* Check for required parameters. */ - if (!isset($params['pubkey'])) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t( - "A public S/MIME key is required to encrypt a message." - )); - } - - /* Create temp files for input/output. */ - $input = $this->_createTempFile('horde-smime'); - $output = $this->_createTempFile('horde-smime'); - - /* Store message in file. */ - file_put_contents($input, $text); - unset($text); - - /* Encrypt the document. */ - $ciphers = array( - // SHOULD- support (RFC 5751 [2.7]) - OPENSSL_CIPHER_3DES - ); - if (defined('OPENSSL_CIPHER_AES_128_CBC')) { - // MUST support (RFC 5751 [2.7]) - array_unshift($ciphers, OPENSSL_CIPHER_AES_128_CBC); - // SHOULD+ support (RFC 5751 [2.7]) - array_unshift($ciphers, OPENSSL_CIPHER_AES_192_CBC); - array_unshift($ciphers, OPENSSL_CIPHER_AES_256_CBC); - } - - foreach ($ciphers as $val) { - $success = openssl_pkcs7_encrypt( - $input, - $output, - $params['pubkey'], - array(), - 0, - $val - ); - - if ($success && ($result = file_get_contents($output))) { - return $this->_fixContentType($result, 'message'); - } - } - - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t( - "Could not S/MIME encrypt message." - )); - } - - /** - * Sign a message in S/MIME format using a private key. - * - * @param string $text The text to be signed. - * @param array $params The (string) parameters needed for signing: - * - 'certs': Additional signing certs (Optional) - * - 'passphrase': Passphrase for key (REQUIRED) - * - 'privkey': Private key (REQUIRED) - * - 'pubkey': Public key (REQUIRED) - * - 'sigtype': Determine the signature type to use. (Optional): - * - 'cleartext': Make a clear text signature - * - 'detach': Make a detached signature (DEFAULT) - * - 'type': 'signature' (REQUIRED) - * - * @return string The signed message. - * @throws Horde_Crypt_Exception - */ - protected function _encryptSignature($text, $params) - { - /* Check for required parameters. */ - if (!isset($params['pubkey']) || - !isset($params['privkey']) || - !array_key_exists('passphrase', $params)) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("A public S/MIME key, private S/MIME key, and passphrase are required to sign a message.")); - } - - /* Create temp files for input/output/certificates. */ - $input = $this->_createTempFile('horde-smime'); - $output = $this->_createTempFile('horde-smime'); - $certs = $this->_createTempFile('horde-smime'); - - /* Store message in temporary file. */ - file_put_contents($input, $text); - unset($text); - - /* Store additional certs in temporary file. */ - if (!empty($params['certs'])) { - file_put_contents($certs, $params['certs']); - } - - /* Determine the signature type to use. */ - $flags = (isset($params['sigtype']) && ($params['sigtype'] == 'cleartext')) - ? PKCS7_TEXT - : PKCS7_DETACHED; - - $privkey = (is_null($params['passphrase'])) ? $params['privkey'] : array($params['privkey'], $params['passphrase']); - - if (empty($params['certs'])) { - $res = openssl_pkcs7_sign($input, $output, $params['pubkey'], $privkey, array(), $flags); - } else { - $res = openssl_pkcs7_sign($input, $output, $params['pubkey'], $privkey, array(), $flags, $certs); - } - - if (!$res) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Could not S/MIME sign message.")); - } - - /* Output from openssl_pkcs7_sign may contain both \n and \r\n EOLs. - * Canonicalize to \r\n. */ - $fp = fopen($output, 'r'); - stream_filter_register('horde_eol', 'Horde_Stream_Filter_Eol'); - stream_filter_append($fp, 'horde_eol'); - $data = stream_get_contents($fp); - fclose($fp); - - return $this->_fixContentType($data, 'signature'); - } - - /** - * Decrypt an S/MIME encrypted message using a private/public keypair - * and a passhprase. - * - * @param string $text The text to be decrypted. - * @param array $params The parameters needed for decryption. - *
-     * Parameters:
-     * ===========
-     * 'type'        =>  'message' (REQUIRED)
-     * 'pubkey'      =>  public key. (REQUIRED)
-     * 'privkey'     =>  private key. (REQUIRED)
-     * 'passphrase'  =>  Passphrase for Key. (REQUIRED)
-     * 
- * - * @return string The decrypted message. - * @throws Horde_Crypt_Exception - */ - protected function _decryptMessage($text, $params) - { - /* Check for required parameters. */ - if (!isset($params['pubkey']) || - !isset($params['privkey']) || - !array_key_exists('passphrase', $params)) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("A public S/MIME key, private S/MIME key, and passphrase are required to decrypt a message.")); - } - - /* Create temp files for input/output. */ - $input = $this->_createTempFile('horde-smime'); - $output = $this->_createTempFile('horde-smime'); - - /* Store message in file. */ - file_put_contents($input, $text); - unset($text); - - $privkey = is_null($params['passphrase']) - ? $params['privkey'] - : array($params['privkey'], $params['passphrase']); - if (openssl_pkcs7_decrypt($input, $output, $params['pubkey'], $privkey)) { - return file_get_contents($output); - } - - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Could not decrypt S/MIME data.")); - } - - /** - * Sign and Encrypt a MIME part using S/MIME. - * - * @param Horde_Mime_Part $mime_part The object to sign and encrypt. - * @param array $sign_params The parameters required for - * signing. @see _encryptSignature(). - * @param array $encrypt_params The parameters required for - * encryption. - * @see _encryptMessage(). - * - * @return mixed A Horde_Mime_Part object that is signed and encrypted. - * @throws Horde_Crypt_Exception - */ - public function signAndEncryptMIMEPart($mime_part, $sign_params = array(), - $encrypt_params = array()) - { - $part = $this->signMIMEPart($mime_part, $sign_params); - return $this->encryptMIMEPart($part, $encrypt_params); - } - - /** - * Convert a PEM format certificate to readable HTML version. - * - * @param string $cert PEM format certificate. - * - * @return string HTML detailing the certificate. - */ - public function certToHTML($cert) - { - $fieldnames = array( - /* Common Fields */ - 'description' => Horde_Crypt_Translation::t("Description"), - 'emailAddress' => Horde_Crypt_Translation::t("Email Address"), - 'commonName' => Horde_Crypt_Translation::t("Common Name"), - 'organizationName' => Horde_Crypt_Translation::t("Organisation"), - 'organizationalUnitName' => Horde_Crypt_Translation::t("Organisational Unit"), - 'countryName' => Horde_Crypt_Translation::t("Country"), - 'stateOrProvinceName' => Horde_Crypt_Translation::t("State or Province"), - 'localityName' => Horde_Crypt_Translation::t("Location"), - 'streetAddress' => Horde_Crypt_Translation::t("Street Address"), - 'telephoneNumber' => Horde_Crypt_Translation::t("Telephone Number"), - 'surname' => Horde_Crypt_Translation::t("Surname"), - 'givenName' => Horde_Crypt_Translation::t("Given Name"), - - /* X590v3 Extensions */ - 'extendedKeyUsage' => Horde_Crypt_Translation::t("Extended Key Usage"), - 'basicConstraints' => Horde_Crypt_Translation::t("Basic Constraints"), - 'subjectAltName' => Horde_Crypt_Translation::t("Subject Alternative Name"), - 'subjectKeyIdentifier' => Horde_Crypt_Translation::t("Subject Key Identifier"), - 'certificatePolicies' => Horde_Crypt_Translation::t("Certificate Policies"), - 'crlDistributionPoints' => Horde_Crypt_Translation::t("CRL Distribution Points"), - 'keyUsage' => Horde_Crypt_Translation::t("Key Usage") - ); - - $details = $this->parseCert($cert); - - $text = '
';
-
-        /* Subject (a/k/a Certificate Owner) */
-        $text .= "" . Horde_Crypt_Translation::t("Certificate Owner") . ":\n";
-
-        foreach ($details['subject'] as $key => $value) {
-            $value = htmlspecialchars($this->_implodeValues($value));
-            $text .= isset($fieldnames[$key])
-                ? sprintf("  %s: %s\n", htmlspecialchars($fieldnames[$key]), $value)
-                : sprintf("  *%s: %s\n", htmlspecialchars($key), $value);
-        }
-        $text .= "\n";
-
-        /* Issuer */
-        $text .= "" . Horde_Crypt_Translation::t("Issuer") . ":\n";
-
-        foreach ($details['issuer'] as $key => $value) {
-            $value = htmlspecialchars($this->_implodeValues($value));
-            $text .= isset($fieldnames[$key])
-                ? sprintf("  %s: %s\n", htmlspecialchars($fieldnames[$key]), $value)
-                : sprintf("  *%s: %s\n", htmlspecialchars($key), $value);
-        }
-        $text .= "\n";
-
-        /* Dates  */
-        $text .= "" . Horde_Crypt_Translation::t("Validity") . ":\n" .
-            sprintf("  %s: %s\n", Horde_Crypt_Translation::t("Not Before"), strftime("%x %X", $details['validity']['notbefore']->getTimestamp())) .
-            sprintf("  %s: %s\n", Horde_Crypt_Translation::t("Not After"), strftime("%x %X", $details['validity']['notafter']->getTimestamp())) .
-            "\n";
-
-        /* X509v3 extensions */
-        if (!empty($details['extensions'])) {
-            $text .= "" . Horde_Crypt_Translation::t("X509v3 extensions") . ":\n";
-
-            foreach ($details['extensions'] as $key => $value) {
-                $value = htmlspecialchars(trim($this->_implodeValues($value, 6)));
-                $text .= isset($fieldnames[$key])
-                    ? sprintf("  %s:\n    %s\n", htmlspecialchars($fieldnames[$key]), $value)
-                    : sprintf("  *%s:\n    %s\n", htmlspecialchars($key), $value);
-            }
-
-            $text .= "\n";
-        }
-
-        /* Certificate Details */
-        $text .= "" . Horde_Crypt_Translation::t("Certificate Details") . ":\n" .
-            sprintf("  %s: %d\n", Horde_Crypt_Translation::t("Version"), $details['version']) .
-            sprintf("  %s: %d\n", Horde_Crypt_Translation::t("Serial Number"), $details['serialNumber']);
-
-        return $text . "\n
"; - } - - /** - * Formats a multi-value cert field. - * - * @param array|string $value A cert field value. - * @param integer $indent The indention level. - * - * @return string The formatted cert field value(s). - */ - protected function _implodeValues($value, $indent = 4) - { - if (is_array($value)) { - $value = "\n" . str_repeat(' ', $indent) - . implode("\n" . str_repeat(' ', $indent), $value); - } - return $value; - } - - /** - * Extract the contents of a PEM format certificate to an array. - * - * @param string $cert PEM format certificate. - * - * @return array All extractable information about the certificate. - */ - public function parseCert($cert) - { - $data = openssl_x509_parse($cert, false); - if (!$data) { - throw new Horde_Crypt_Exception(sprintf(Horde_Crypt_Translation::t("Error parsing S/MIME certficate: %s"), openssl_error_string())); - } - - $details = array( - 'extensions' => $data['extensions'], - 'issuer' => $data['issuer'], - 'serialNumber' => $data['serialNumber'], - 'subject' => $data['subject'], - 'validity' => array( - 'notafter' => new DateTime('@' . $data['validTo_time_t']), - 'notbefore' => new DateTime('@' . $data['validFrom_time_t']) - ), - 'version' => $data['version'] - ); - - // Add additional fields for BC purposes. - $details['certificate'] = $details; - - $bc_changes = array( - 'emailAddress' => 'Email', - 'commonName' => 'CommonName', - 'organizationName' => 'Organisation', - 'organizationalUnitName' => 'OrganisationalUnit', - 'countryName' => 'Country', - 'stateOrProvinceName' => 'StateOrProvince', - 'localityName' => 'Location', - 'streetAddress' => 'StreetAddress', - 'telephoneNumber' => 'TelephoneNumber', - 'surname' => 'Surname', - 'givenName' => 'GivenName' - ); - foreach (array('issuer', 'subject') as $val) { - foreach (array_keys($details[$val]) as $key) { - if (isset($bc_changes[$key])) { - $details['certificate'][$val][$bc_changes[$key]] = $details[$val][$key]; - unset($details['certificate'][$val][$key]); - } - } - } - - return $details; - } - - /** - * Decrypt an S/MIME signed message using a public key. - * - * @param string $text The text to be verified. - * @param array $params The parameters needed for verification. - * - * @return string The verification message. - * @throws Horde_Crypt_Exception - */ - protected function _decryptSignature($text, $params) - { - throw new Horde_Crypt_Exception('_decryptSignature() ' . Horde_Crypt_Translation::t("not yet implemented")); - } - - /** - * Check for the presence of the OpenSSL extension to PHP. - * - * @throws Horde_Crypt_Exception - */ - public function checkForOpenSSL() - { - if (!Horde_Util::extensionExists('openssl')) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("The openssl module is required for the Horde_Crypt_Smime:: class.")); - } - } - - /** - * Extract the email address from a public key. - * - * @param string $key The public key. - * - * @return mixed Returns the first email address found, or null if - * there are none. - */ - public function getEmailFromKey($key) - { - $key_info = openssl_x509_parse($key); - if (!is_array($key_info)) { - return null; - } - - if (isset($key_info['subject'])) { - if (isset($key_info['subject']['Email'])) { - return $key_info['subject']['Email']; - } elseif (isset($key_info['subject']['emailAddress'])) { - return $key_info['subject']['emailAddress']; - } - } - - // Check subjectAltName per http://www.ietf.org/rfc/rfc3850.txt - if (isset($key_info['extensions']['subjectAltName'])) { - $names = preg_split('/\s*,\s*/', $key_info['extensions']['subjectAltName'], -1, PREG_SPLIT_NO_EMPTY); - foreach ($names as $name) { - if (strpos($name, ':') === false) { - continue; - } - list($kind, $value) = explode(':', $name, 2); - if (Horde_String::lower($kind) == 'email') { - return $value; - } - } - } - - return null; - } - - /** - * Convert a PKCS 12 encrypted certificate package into a private key, - * public key, and any additional keys. - * - * @param string $pkcs12 The PKCS 12 data. - * @param array $params The parameters needed for parsing. - *
-     * Parameters:
-     * ===========
-     * 'sslpath' => The path to the OpenSSL binary. (REQUIRED)
-     * 'password' => The password to use to decrypt the data. (Optional)
-     * 'newpassword' => The password to use to encrypt the private key.
-     *                  (Optional)
-     * 
- * - * @return stdClass An object. - * 'private' - The private key in PEM format. - * 'public' - The public key in PEM format. - * 'certs' - An array of additional certs. - * @throws Horde_Crypt_Exception - */ - public function parsePKCS12Data($pkcs12, $params) - { - /* Check for availability of OpenSSL PHP extension. */ - $this->checkForOpenSSL(); - - if (!isset($params['sslpath'])) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("No path to the OpenSSL binary provided. The OpenSSL binary is necessary to work with PKCS 12 data.")); - } - $sslpath = escapeshellcmd($params['sslpath']); - - /* Create temp files for input/output. */ - $input = $this->_createTempFile('horde-smime'); - $output = $this->_createTempFile('horde-smime'); - - $ob = new stdClass; - - /* Write text to file */ - file_put_contents($input, $pkcs12); - unset($pkcs12); - - /* Extract the private key from the file first. */ - $cmdline = $sslpath . ' pkcs12 -in ' . $input . ' -out ' . $output . ' -nocerts'; - if (isset($params['password'])) { - $cmdline .= ' -passin stdin'; - if (!empty($params['newpassword'])) { - $cmdline .= ' -passout stdin'; - } else { - $cmdline .= ' -nodes'; - } - } else { - $cmdline .= ' -nodes'; - } - - if ($fd = popen($cmdline, 'w')) { - fwrite($fd, $params['password'] . "\n"); - if (!empty($params['newpassword'])) { - fwrite($fd, $params['newpassword'] . "\n"); - } - pclose($fd); - } else { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to smime binary.")); - } - - $ob->private = trim(file_get_contents($output)); - if (empty($ob->private)) { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Password incorrect")); - } - - /* Extract the client public key next. */ - $cmdline = $sslpath . ' pkcs12 -in ' . $input . ' -out ' . $output . ' -nokeys -clcerts'; - if (isset($params['password'])) { - $cmdline .= ' -passin stdin'; - } - - if ($fd = popen($cmdline, 'w')) { - fwrite($fd, $params['password'] . "\n"); - pclose($fd); - } else { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to smime binary.")); - } - - $ob->public = trim(file_get_contents($output)); - - /* Extract the CA public key next. */ - $cmdline = $sslpath . ' pkcs12 -in ' . $input . ' -out ' . $output . ' -nokeys -cacerts'; - if (isset($params['password'])) { - $cmdline .= ' -passin stdin'; - } - - if ($fd = popen($cmdline, 'w')) { - fwrite($fd, $params['password'] . "\n"); - pclose($fd); - } else { - throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to smime binary.")); - } - - $ob->certs = trim(file_get_contents($output)); - - return $ob; - } - - /** - * The Content-Type parameters PHP's openssl_pkcs7_* functions return are - * deprecated. Fix these headers to the correct ones (see RFC 2311). - * - * @param string $text The PKCS7 data. - * @param string $type Is this 'message' or 'signature' data? - * - * @return string The PKCS7 data with the correct Content-Type parameter. - */ - protected function _fixContentType($text, $type) - { - if ($type == 'message') { - $from = 'application/x-pkcs7-mime'; - $to = 'application/pkcs7-mime'; - } else { - $from = 'application/x-pkcs7-signature'; - $to = 'application/pkcs7-signature'; - } - return str_replace('Content-Type: ' . $from, 'Content-Type: ' . $to, $text); - } - - /** - * Create a temporary file that will be deleted at the end of this - * process. - * - * @param string $descrip Description string to use in filename. - * @param boolean $delete Delete the file automatically? - * - * @return string Filename of a temporary file. - */ - protected function _createTempFile($descrip = 'horde-crypt', $delete = true) - { - return Horde_Util::getTempFile($descrip, $delete, $this->_params['temp'], true); - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Translation.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Translation.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt/Translation.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt/Translation.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * Horde_Crypt_Translation is the translation wrapper class for Horde_Crypt. - * - * @author Jan Schneider - * @category Horde - * @copyright 2010-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ -class Horde_Crypt_Translation extends Horde_Translation_Autodetect -{ - /** - * The translation domain - * - * @var string - */ - protected static $_domain = 'Horde_Crypt'; - - /** - * The absolute PEAR path to the translations for the default gettext handler. - * - * @var string - */ - protected static $_pearDirectory = '@data_dir@'; -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/lib/Horde/Crypt.php 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/lib/Horde/Crypt.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,110 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ - -/** - * Provides an API for various cryptographic systems used by Horde - * applications. - * - * @author Michael Slusarz - * @category Horde - * @copyright 2002-2017 Horde LLC - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - */ -class Horde_Crypt -{ - /** - * Configuration parameters. - * - * @var array - */ - protected $_params = array(); - - /** - * Attempts to return a concrete Horde_Crypt instance based on $driver. - * - * @param string $driver Either a driver name, or the full class name to - * use (class must extend Horde_Crypt). - * @param array $params A hash containing any additional configuration - * or parameters a subclass might need. - * - * @return Horde_Crypt The newly created concrete instance. - * @throws Horde_Crypt_Exception - */ - public static function factory($driver, $params = array()) - { - /* Return a base Horde_Crypt object if no driver is specified. */ - if (empty($driver) || (strcasecmp($driver, 'none') == 0)) { - return new Horde_Crypt(); - } - - /* Base drivers (in Crypt/ directory). */ - $class = __CLASS__ . '_' . Horde_String::ucfirst(basename($driver)); - if (class_exists($class)) { - return new $class($params); - } - - /* Explicit class name, */ - $class = $driver; - if (class_exists($class)) { - return new $class($params); - } - - throw new Horde_Crypt_Exception( - __CLASS__ . ': Class definition of ' . $driver . ' not found.' - ); - } - - /** - * Constructor. - * - * @param array $params Configuration parameters: - * - email_charset: (string) The default email charset. - */ - public function __construct(array $params = array()) - { - $this->_params = array_merge(array( - 'email_charset' => null, - ), $params); - } - - /** - * Encrypt the requested data. - * This method should be provided by all classes that extend Horde_Crypt. - * - * @param string $data The data to encrypt. - * @param array $params An array of arguments needed to encrypt the data. - * - * @return array The encrypted data. - */ - public function encrypt($data, $params = array()) - { - return $data; - } - - /** - * Decrypt the requested data. - * This method should be provided by all classes that extend Horde_Crypt. - * - * @param string $data The data to decrypt. - * @param array $params An array of arguments needed to decrypt the data. - * - * @return array The decrypted data. - * @throws Horde_Crypt_Exception - */ - public function decrypt($data, $params = array()) - { - return $data; - } - -} Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ar/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ar/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ar/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ar/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ar/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ar/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,430 +0,0 @@ -# Arabic translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "Comment" -msgstr "الأوامر:" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:939 -#, fuzzy -msgid "Connection refused to the public keyserver." -msgstr "حصل خطأ خلال الإتصال بمخدم الـ FTP." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "لا إمكانية لنسخ %s إلى %s" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "البريد" - -#: lib/Horde/Crypt/Smime.php:474 -#, fuzzy -msgid "Email Address" -msgstr "عنوان بريدك الإلكتروني:" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "حجم الاستخدام:" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "الاسم" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "أبداً" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "كلمة المرور" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "عنوان المنزل" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "الاسم" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/bg/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/bg/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/bg/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/bg/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/bg/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/bg/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,453 +0,0 @@ -# Bulgarian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "За да криптирате писмо е необходим публичен PGP ключ." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "За да проверите подписано писмо е необходим PGP ключ." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"За да подпишете писмо са необходими: публичен ключ, личен ключ и ключова " -"фраза." - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "За да криптирате писмо е необходим публичен SMIME ключ." - -#: lib/Horde/Crypt/Smime.php:422 -#, fuzzy -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"За да декриптирате писмо са необходими: публичен SMIME ключ, личен SMIME " -"ключ и ключова фраза." - -#: lib/Horde/Crypt/Smime.php:360 -#, fuzzy -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"За да подпишете писмо са необходими: публичен SMIME ключ, личен SMIME ключ и " -"ключова фраза." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "Comment" -msgstr "Команди:" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Достъпа до публичния сървър беше отказан." - -#: lib/Horde/Crypt/Pgp.php:950 -#, fuzzy, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Достъпа до публичния сървър беше отказан." - -#: lib/Horde/Crypt/Pgp.php:1132 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "Грешка при PGP криптирането на писмо." - -#: lib/Horde/Crypt/Pgp.php:1201 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "Грешка при PGP подписването на писмо." - -#: lib/Horde/Crypt/Smime.php:330 -#, fuzzy -msgid "Could not S/MIME encrypt message." -msgstr "Грешка при SMIME криптирането на писмо." - -#: lib/Horde/Crypt/Smime.php:391 -#, fuzzy -msgid "Could not S/MIME sign message." -msgstr "Грешка при SMIME подписването на писмо." - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Грешка при декриптирането на PGP данни." - -#: lib/Horde/Crypt/Smime.php:440 -#, fuzzy -msgid "Could not decrypt S/MIME data." -msgstr "Грешка при декриптирането на SMIME данни." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Некоректен email адрес на получателя." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Грешка при получаването на публичния ключ от ключ-сървъра." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "Поща" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Еmail адрес" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -#, fuzzy -msgid "Given Name" -msgstr "Име на файл" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -#, fuzzy -msgid "Key Type" -msgstr "Mime тип" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Използване::" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Ключа вече съществува в публичния ключсървър." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:189 -#, fuzzy -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Писмото беше проверено успешно, но сертификата на подписа не беше потвърден." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Име" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Никога" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "Администриране" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Парола: " - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Ключова двойка публичен/частен ключ не беше генерирана." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "Ключова двойка публичен/частен ключ не беше генерирана." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -#, fuzzy -msgid "S/MIME Encrypted Message" -msgstr "Грешка при SMIME криптирането на писмо." - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "Домашен адрес" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "без име" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Прикрепеният PGP подпис е необходим за да се провери подписаното писмо." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Модулът OpenSSL е необходим за Crypt_smime:: class." - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Грешка при проверката - това писмо може да е било подправено." - -#: lib/Horde/Crypt/Smime.php:610 -#, fuzzy -msgid "Version" -msgstr "Права" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/bs/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/bs/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/bs/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/bs/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/bs/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/bs/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,443 +0,0 @@ -# Bosnian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:475 -#, fuzzy -msgid "Common Name" -msgstr "Vaše ime" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Nije bilo moguce obrisati poruke od %s: %s" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -#, fuzzy -msgid "Could not determine the recipient's e-mail address." -msgstr "Nedozvoljena slova u email adresi." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "Sanduce" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Email adresa" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -#, fuzzy -msgid "Given Name" -msgstr "Ime datoteke" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -#, fuzzy -msgid "Key Type" -msgstr "Mime tip" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Poruka" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Lokacija" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -#, fuzzy -msgid "Modulus" -msgstr "Prebaci" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Ime" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Nikada" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Nijedan" - -#: lib/Horde/Crypt/Smime.php:549 -#, fuzzy -msgid "Not After" -msgstr "Not Draft" - -#: lib/Horde/Crypt/Smime.php:548 -#, fuzzy -msgid "Not Before" -msgstr "Not Draft" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "Registracija korisnika" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -#, fuzzy -msgid "PGP Digital Signature" -msgstr "Zatamni potpise?" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Password" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Čitanje poruka" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Serijski broj" - -#: lib/Horde/Crypt/Smime.php:622 -#, fuzzy -msgid "Signature" -msgstr "Vaš potpis:" - -#: lib/Horde/Crypt/Smime.php:621 -#, fuzzy -msgid "Signature Algorithm" -msgstr "Vaš potpis:" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "Od adrese" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "Username" - -#: lib/Horde/Crypt/Smime.php:482 -#, fuzzy -msgid "Telephone Number" -msgstr "Serijski broj" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "Došlo je do fatalne greške" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -#, fuzzy -msgid "Version" -msgstr "Lično" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -#, fuzzy -msgid "not yet implemented" -msgstr "Ne izbrisana" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ca/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ca/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ca/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ca/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ca/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ca/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,443 +0,0 @@ -# Catalan translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "Empremta dactilar %s" - -#: lib/Horde/Crypt/Pgp.php:1240 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "Es necessita una clau PGP pública per xifrar un missatge." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "Es necessita una clau PGP pública per verificar un missatge signat." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Es necessiten una clau PGP pública, una clau PGP privada i una contrasenya " -"per signar un missatge." - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Es necessita una clau SMIME pública per xifrar un missatge." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Es necessiten una clau S/MIME pública, una clau S/MIME privada i una " -"contrasenya per desxifrar un missatge." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Es necessiten una clau S/MIME pública, una clau S/MIME privada i una " -"contrasenya per signar un missatge." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "Punts de distribució de CRL" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Detalls del certificat" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Titular del certificat" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Polítiques de certificació" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Comentari" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "Nom comú" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "S'ha rebutjat la connexió al servidor de claus públiques." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "S'ha rebutjat la connexió al servidor de claus públiques. Raó: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "Encripta aquest missatge amb el PGP" - -#: lib/Horde/Crypt/Pgp.php:1201 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "No s'ha trobat el tipus de missatge %s!\n" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "No es pot xifrar el missatge amb S/MIME." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "No es pot signar el missatge amb S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "No s'han pogut escriure les dades." - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "No s'ha pogut desxifrar les dades S/MIME." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "No s'ha pogut determinar l'adreça electrònica del destinatari." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "No s'ha pogut obtenir una clau pública del servidor de claus." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "País" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "Correu electrònic" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Adreça electrònica" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Data de venciment" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Exponent" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "Nom de pila" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Algorisme de hash" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Emissor" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Creació de claus" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Empremta digital de la clau" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Longitud de la clau" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Tipus de clau" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Ús de la clau" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Ja existeix una clau en el servidor de claus públiques." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Ubicació" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"El missatge ha estat verificat correctament, però no s'ha pogut verificar el " -"certificat el signant." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "Mòdul" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nom" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "URL base de Netscape" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "URL de revocació de CA de Netscape" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "URL de polítiques de CA de Netscape" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "URL de renovació de Netscape" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "URL de revocació de Netscape" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "Nom del servidor SSL de Netscape" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Comentari del certificat de Netscape" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Tipus de certificat de Netscape" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Mai" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"No s'ha indicat la via d'accés al binari OpenSSL. Cal el binari OpenSSL per " -"treballar amb les dades PKCS 12." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Cap" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "No després" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "No abans" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"Error OpenSSL: no s'han pogut extreure les dades de la part S/MIME signada." - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Organització" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Unitat organitzativa" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "Signatura digital PGP" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "Dades xifrades amb PGP" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Clau PGP pública" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "Dades signades/xifrades amb PGP" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Contrasenya incorrecta" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Clau privada" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Clau pública" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Algorisme de clau pública" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "Informació de clau pública" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "No s'ha generat correctament la parella de claus pública/privada" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "Clau pública RSA (%d bit)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Llegiu els missatges" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "No s'ha generat correctament la parella de claus pública/privada" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "Signatura criptogràfica amb S/MIME" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "Missatge xifrat amb S/MIME" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Número de sèrie" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Signatura" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "Algorisme de signatura" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Estat o província" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Adreça particular" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Cognom" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Número de telèfon" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Es necessita el bloc de signatures PGP separat per verificar el missatge " -"signat." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Es necessita el mòdul openssl per a la classe Horde_Crypt_smime." - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "No s'ha pogut extreure els detalls del certificat." - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Desconegut" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Extensió no implementada" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "Validesa" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "S'ha produït un error desconegut." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Ha fallat la verificació: és possible que s'hagi alterat el missatge." - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Versió" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "Limitacions bàsiques X509v3" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "Ús de la clau estesa x509v3" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "Nom alternatiu d'assumpte X509v3" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "Identificador de clau d'assumpte X509v3" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "Extensions X508v3" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "encara no s'ha implementat" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/cs/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/cs/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/cs/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/cs/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/cs/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/cs/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,436 +0,0 @@ -# Czech translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s otisk" - -#: lib/Horde/Crypt/Pgp.php:1240 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "Pro zašifrování zprávy je nutno použít veřejný PGP klíč." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "Pro verifikaci podepsané zprávy je nutno použít veřejný PGP klíč." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Pro podepsání zprávy je nutno použít veřejný PGP klíč, privátní PGP klíč a " -"heslo." - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Pro zašifrování zprávy je nutno použít veřejný S/MIME klíč." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Pro dešifrování zprávy je nutno použít veřejný S/MIME klíč, privátní S/MIME " -"klíč a heslo." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Pro podepsání zprávy je nutno použít veřejný S/MIME klíč, privátní S/MIME " -"klíč a heslo." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "CRL distribuční body" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Podrobnosti certifikátu" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Vlastník certifikátu" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Podmínky certifikátu" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Poznámka" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "Obecné jméno" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Bylo zamítnuto spojení s veřejným klíčovým serverem." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Bylo zamítnuto spojení s veřejným klíčovým serverem. Důvod : %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "Zprávu nelze šifrovat pomocí PGP: " - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "Zprávu nelze podepsat pomocí PGP: " - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Zprávu nelze šifrovat pomocí S/MIME." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Zprávu nelze podepsat pomocí S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "Nelze dešifrovat PGP data: " - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Nelze dešifrovat S/MIME data." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Nelze zjistit e-mailovou adresu příjemce." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Nelze získat veřejný klíč z klíčového serveru." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Země" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "E-mail" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Emailová adresa" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Datum pro konec platnosti" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Exponent" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "Křestní jméno" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hash-algoritmus" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Poskytovatel" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Vytvoření klíče" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Vytvoření otisku klíče" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Délka klíče" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Typ klíče" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Užití klíče" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Klíč již existuje na veřejném klíčovém serveru." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Místo" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "Zpráva byla ověřena v pořádku, ale nelze ověřit podpisový certifikát." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "Modul" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Jméno" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "Netscape Base URL" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "Netscape CA Revocation URL" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "Netscape CA policy URL" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "Netscape Renewal URL" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "Netscape Revocation URL" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "Jméno Netscape SSL serveru" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Poznámka k certifikátu Netscapu" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Typ certifikátu Netscapu" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Nikdy" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Nebyla poskytnuta cesta k binárnímu souboru OpenSSL. Binární soubor OpenSSL " -"je zapotřebí pro práci s PKCS 12 daty." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Žádný" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "Není po" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "Není před" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "Chyba OpenSSL: Nelze získat data z podepsané části S/MIME." - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Organizace" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Organizační jednotka" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "PGP digitální podpis" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "PGP šifrovaná data" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Veřejný PGP klíč" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "Data podepsaná/šifrovaná pomocí PGP" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Nesprávné heslo" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Privátní klíč" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Veřejný klíč" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Algoritmus pro veřejný klíč" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "Veřejný klíč" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Veřejný/privátní klíčový pár nebyl úspěšně vytvořen." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA veřejný klíč (%d bitů)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Přečtené zprávy" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "Veřejný/privátní klíčový pár nebyl úspěšně vytvořen." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME šifrovaný podpis" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME šifrovaná zpráva" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Sériové číslo" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Podpis" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "Algoritmus pro podpis" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Stát či provincie" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Ulice" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Příjmení" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Telefonní číslo" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "K ověření podepsané zprávy je třeba oddělený blok s PGP podpisem." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Třída Horde_Crypt_smime:: vyžaduje modul openssl." - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "Nelze zjistit podrobnosti o certifikátu." - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Neznámé" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Nepodporovaná přípona" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "Platnost" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "Nastala neznámá chyba." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Selhala verifikace - tato zpráva mohla být zfalšována." - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Verze" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 základní omezení" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 rozšířené použití klíče" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 alternativní jméno osoby" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 identifikátor klíče" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "X509v3 rozšíření" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "není dosud implementováno" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/da/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/da/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/da/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/da/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/da/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/da/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,360 +0,0 @@ -# Danish translations for Horde_Crypt package. -# Copyright (C) 2014 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt package. -# Erling Preben Hansen , 2013-2014. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2014-03-16 21:08+0100\n" -"PO-Revision-Date: 2014-03-19 18:07+0100\n" -"Last-Translator: Erling Preben Hansen \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Pgp.php:1086 -msgid "A passphrase is required to decrypt a message." -msgstr "Et løsen kræves for at dekryptere en besked." - -#: lib/Horde/Crypt/Pgp.php:1157 -msgid "A public PGP key is required to verify a signed message." -msgstr "En offentlig PGP-nøgle kræves for at verificere en signeret besked." - -#: lib/Horde/Crypt/Pgp.php:1017 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"En offentlig PGP nøgle, privat PGP nøgle og et løsen kræves for at signere " -"en besked." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "En offentlig S/MIME nøgle kræves for at kryptere en besked." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"En offentlig S/MIME nøgle, privat S/MIME nøgle og et løsen kræves for at " -"dekryptere en besked." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"En offentlig S/MIME nøgle, personlig S/MIME nøgle og løsen kræves for at " -"signere en besked." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "CRL distributionssteder" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "Certifikat detaljer" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "Certifikat ejer" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Certifikat politikker" - -#: lib/Horde/Crypt/Pgp.php:417 -msgid "Comment" -msgstr "Kommentar" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Common Name" - -#: lib/Horde/Crypt/Pgp.php:985 -msgid "Could not PGP encrypt message: " -msgstr "Kunne ikke PGP kryptére besked: " - -#: lib/Horde/Crypt/Pgp.php:1054 -msgid "Could not PGP sign message: " -msgstr "Kunne ikke PGP signére besked: " - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "Kunne ikke S/MIME kryptere besked." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "Kunne ikke S/MIME signére besked." - -#: lib/Horde/Crypt/Pgp.php:1125 -msgid "Could not decrypt PGP data: " -msgstr "Kunne ikke dekryptere PGP-data: " - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "Kunne ikke dekryptere S/MIME data." - -#: lib/Horde/Crypt/Pgp.php:644 -msgid "Could not determine the recipient's e-mail address." -msgstr "Kunne ikke bestemme modtagerens email adresse." - -#: lib/Horde/Crypt/Pgp/Keyserver.php:101 lib/Horde/Crypt/Pgp/Keyserver.php:219 -msgid "Could not obtain public key from the keyserver." -msgstr "Kunne ikke hente offentlig nøgle fra nøgleserver." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "Land" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Beskrivelse" - -#: lib/Horde/Crypt/Pgp.php:418 -msgid "E-Mail" -msgstr "Email" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "email adresse" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Der opstod en fejl under analysen af S/MIME-certificatet: %s" - -#: lib/Horde/Crypt/Pgp.php:1453 lib/Horde/Crypt/Pgp.php:1461 -msgid "Error while talking to pgp binary." -msgstr "Der opstod en fejl under kontakten til pgp programmet." - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "Der opstod en fejl under kontakten til smime programmet." - -#: lib/Horde/Crypt/Pgp.php:415 -msgid "Expiration Date" -msgstr "Forældelsesdato" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "Fornavn" - -#: lib/Horde/Crypt/Pgp.php:419 -msgid "Hash-Algorithm" -msgstr "Hash-algoritme" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "Udsteder" - -#: lib/Horde/Crypt/Pgp.php:414 -msgid "Key Creation" -msgstr "Nøgle skabelse" - -#: lib/Horde/Crypt/Pgp.php:421 -msgid "Key Fingerprint" -msgstr "Nøgle fingeraftryk" - -#: lib/Horde/Crypt/Pgp.php:420 -msgid "Key ID" -msgstr "Nøgle ID" - -#: lib/Horde/Crypt/Pgp.php:416 -msgid "Key Length" -msgstr "Nøglelængde" - -#: lib/Horde/Crypt/Pgp.php:413 -msgid "Key Type" -msgstr "Nøgletype" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "Nøgleanvendelse" - -#: lib/Horde/Crypt/Pgp/Keyserver.php:137 -msgid "Key already exists on the public keyserver." -msgstr "Nøgle eksisterer allerede på den offentlige nøgleserver." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Sted" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Beskeden blev verificeret men underskriverens certifikat kunne ikke " -"verificeres." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "Beskeden er verificeret." - -#: lib/Horde/Crypt/Pgp.php:412 -msgid "Name" -msgstr "Navn" - -#: lib/Horde/Crypt/Pgp.php:444 -msgid "Never" -msgstr "Aldrig" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Sti til OpenSSL programmet mangler. OpenSSL programmet er nødvendigt for at " -"håndtere PKCS 12 data." - -#: lib/Horde/Crypt/Pgp.php:446 lib/Horde/Crypt/Pgp.php:447 -msgid "None" -msgstr "Ingen" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "Ikke senere end" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "Ikke før" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OpenSSL fejl: Data kunne ikke uddrages fra signeret S/MIME-del." - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Organisation" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "Organisatorisk enhed" - -#: lib/Horde/Crypt/Pgp.php:1275 -msgid "PGP Digital Signature" -msgstr "PGP digital signatur" - -#: lib/Horde/Crypt/Pgp.php:1319 -msgid "PGP Encrypted Data" -msgstr "PGP krypteret data" - -#: lib/Horde/Crypt/Pgp.php:1380 -msgid "PGP Public Key" -msgstr "Offentlig PGP nøgle" - -#: lib/Horde/Crypt/Pgp.php:1362 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP signeret/krypteret data" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Forkert kodeord" - -#: lib/Horde/Crypt/Pgp.php:442 -msgid "Private Key" -msgstr "Privat nøgle" - -#: lib/Horde/Crypt/Pgp.php:442 -msgid "Public Key" -msgstr "Offentlige nøgle" - -#: lib/Horde/Crypt/Pgp.php:212 -msgid "Public/Private keypair not generated successfully." -msgstr "Offentlig/privat nøglesæt generering mislykkedes." - -#: lib/Horde/Crypt/Pgp.php:214 -msgid "Returned error message:" -msgstr "Fejl beskeder er:" - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME krypteret besked" - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Signature" -msgstr "S/MIME signatur" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "Serienummer" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "Delstat eller provins" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Vej" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Efternavn" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Telefonnummer" - -#: lib/Horde/Crypt/Pgp.php:1161 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Den frigjorte PGP signatur blok kræves for at kunne verificere den signerede " -"besked." - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Openssl modulet er kræves af Horde_Crypt_Smime:: klassen." - -#: lib/Horde/Crypt/Pgp.php:448 lib/Horde/Crypt/Pgp.php:449 -#: lib/Horde/Crypt/Pgp.php:450 -msgid "Unknown" -msgstr "Ukendt" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "Gyldighed" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "Verifikationen fejlede - Der opstod en ukendt fejl." - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "Verifikationen fejlede - der er blevet pillet ved denne besked." - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Version" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 Grundlæggende begrænsninger" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 Udvidet nøgle anvendelse" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Subject Alternativt navn" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Subject Key Identifier" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "X509v3 udvidelser" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "endnu ikke implementeret" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/de/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/de/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/de/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/de/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/de/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/de/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,354 +0,0 @@ -# German translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Jan Schneider , 2010-2016. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2016-08-08 15:58+0200\n" -"PO-Revision-Date: 2016-08-08 16:18+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Smime.php:302 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" -"Ein öffentlicher S/MIME-Schlüssel wird für die Verschlüsselung einer " -"Nachricht benötigt." - -#: lib/Horde/Crypt/Smime.php:443 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Ein öffentlicher und ein privater S/MIME-Schlüssel sowie ein Passwort wird " -"für die Entschlüsselung einer Nachricht benötigt." - -#: lib/Horde/Crypt/Smime.php:374 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Ein öffentlicher und ein privater S/MIME-Schlüssel sowie ein Passwort wird " -"für die Unterzeichnung einer Nachricht benötigt." - -#: lib/Horde/Crypt/Smime.php:514 -msgid "CRL Distribution Points" -msgstr "CRL Distributionsstelle" - -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:132 -msgid "Cannot generate PGP keys" -msgstr "PGP-Schlüssel können nicht erzeugt werden" - -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:350 -msgid "Cannot read PGP key ID" -msgstr "PGP-Schlüssel-ID kann nicht gelesen werden" - -#: lib/Horde/Crypt/Smime.php:565 -msgid "Certificate Details" -msgstr "Zertifikatdetails" - -#: lib/Horde/Crypt/Smime.php:523 -msgid "Certificate Owner" -msgstr "Zertifikatbesitzer" - -#: lib/Horde/Crypt/Smime.php:513 -msgid "Certificate Policies" -msgstr "Zertifikatrichtlinien" - -#: lib/Horde/Crypt/Pgp.php:214 -msgid "Comment" -msgstr "Kommentar" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Common Name" -msgstr "Eindeutiger Name" - -#: lib/Horde/Crypt/Pgp.php:559 -msgid "Could not PGP encrypt message." -msgstr "Die Nachricht konnte nicht mit PGP verschlüsselt werden." - -#: lib/Horde/Crypt/Pgp.php:576 -msgid "Could not PGP sign message." -msgstr "Die Nachricht konnte nicht mit PGP unterzeichnet werden." - -#: lib/Horde/Crypt/Smime.php:343 -msgid "Could not S/MIME encrypt message." -msgstr "Die Nachricht konnte nicht mit S/MIME verschlüsselt werden." - -#: lib/Horde/Crypt/Smime.php:405 -msgid "Could not S/MIME sign message." -msgstr "Die Nachricht konnte nicht mit S/MIME unterzeichnet werden." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not decrypt PGP data." -msgstr "PGP-Daten konnten nicht entschlüsselt werden." - -#: lib/Horde/Crypt/Smime.php:461 -msgid "Could not decrypt S/MIME data." -msgstr "S/MIME-Daten konnten nicht entschlüsselt werden." - -#: lib/Horde/Crypt/Pgp.php:431 -msgid "Could not determine the recipient's e-mail address." -msgstr "Die E-Mail-Adresse des Empfängers konnte nicht ermittelt werden." - -#: lib/Horde/Crypt/Pgp/Keyserver.php:110 lib/Horde/Crypt/Pgp/Keyserver.php:186 -#: lib/Horde/Crypt/Pgp/Keyserver.php:243 -msgid "Could not obtain public key from the keyserver." -msgstr "Öffentlicher Schlüssel konnte nicht vom Schlüsselserver geholt werden." - -#: lib/Horde/Crypt/Smime.php:500 -msgid "Country" -msgstr "Land" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Description" -msgstr "Beschreibung" - -#: lib/Horde/Crypt/Pgp.php:215 -msgid "E-Mail" -msgstr "E-Mail-Adresse" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Email Address" -msgstr "E-Mail-Adresse" - -#: lib/Horde/Crypt/Smime.php:600 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Fehler beim Lesen des S/MIME-Zertifikats: %s" - -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:701 -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:711 -msgid "Error while talking to pgp binary." -msgstr "Fehler beim Aufruf des PGP-Programms." - -#: lib/Horde/Crypt/Smime.php:770 lib/Horde/Crypt/Smime.php:788 -#: lib/Horde/Crypt/Smime.php:803 -msgid "Error while talking to smime binary." -msgstr "Fehler beim Aufruf der S/MIME-Bibliothek." - -#: lib/Horde/Crypt/Pgp.php:212 -msgid "Expiration Date" -msgstr "Verfallsdatum" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "Given Name" -msgstr "Vorname" - -#: lib/Horde/Crypt/Pgp.php:216 -msgid "Hash-Algorithm" -msgstr "Hash-Algorithmus" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Aussteller" - -#: lib/Horde/Crypt/Pgp.php:211 -msgid "Key Creation" -msgstr "Schlüsselerzeugung" - -#: lib/Horde/Crypt/Pgp.php:218 -msgid "Key Fingerprint" -msgstr "Fingerabdruck des Schlüssels" - -#: lib/Horde/Crypt/Pgp.php:217 -msgid "Key ID" -msgstr "Schlüssel-Id" - -#: lib/Horde/Crypt/Pgp.php:213 -msgid "Key Length" -msgstr "Schlüssellänge" - -#: lib/Horde/Crypt/Pgp.php:210 -msgid "Key Type" -msgstr "Schlüsseltyp" - -#: lib/Horde/Crypt/Smime.php:515 -msgid "Key Usage" -msgstr "Schlüsselzweck" - -#: lib/Horde/Crypt/Pgp/Keyserver.php:146 -msgid "Key already exists on the public keyserver." -msgstr "" -"Der Schlüssel befindet sich bereits auf dem öffentlichen Schlüsselserver." - -#: lib/Horde/Crypt/Smime.php:502 -msgid "Location" -msgstr "Ort" - -#: lib/Horde/Crypt/Smime.php:154 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Die Nachricht konnte erfolgreich überprüft werden aber nicht das Zertifikat " -"des Unterzeichners." - -#: lib/Horde/Crypt/Smime.php:142 -msgid "Message verified successfully." -msgstr "Nachricht erfolgreich überprüft." - -#: lib/Horde/Crypt/Pgp.php:209 -msgid "Name" -msgstr "Name" - -#: lib/Horde/Crypt/Pgp.php:247 -msgid "Never" -msgstr "Nie" - -#: lib/Horde/Crypt/Smime.php:736 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Kein Pfad zum OpenSSL-Programm angegeben. Das OpenSSL-Programm wird " -"benötigt, um PKCS-12-Daten verarbeiten zu können." - -#: lib/Horde/Crypt/Pgp.php:249 lib/Horde/Crypt/Pgp.php:250 -msgid "None" -msgstr "Keine" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Not After" -msgstr "Gültig bis" - -#: lib/Horde/Crypt/Smime.php:546 -msgid "Not Before" -msgstr "Gültig ab" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"OpenSSL-Fehler: Signierte S/MIME-Daten konnten nicht extrahiert werden." - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Organisation" -msgstr "Organisation" - -#: lib/Horde/Crypt/Smime.php:499 -msgid "Organisational Unit" -msgstr "Organisationsabteilung" - -#: lib/Horde/Crypt/Pgp.php:735 -msgid "PGP Digital Signature" -msgstr "Digitale PGP-Signatur" - -#: lib/Horde/Crypt/Pgp.php:792 -msgid "PGP Encrypted Data" -msgstr "PGP-verschlüsselte Daten" - -#: lib/Horde/Crypt/Pgp.php:866 -msgid "PGP Public Key" -msgstr "Öffentlicher PGP-Schlüssel" - -#: lib/Horde/Crypt/Pgp.php:844 -msgid "PGP Signed/Encrypted Data" -msgstr "Mit PGP unterzeichnete/verschlüsselte Daten" - -#: lib/Horde/Crypt/Smime.php:775 -msgid "Password incorrect" -msgstr "Falsches Passwort" - -#: lib/Horde/Crypt/Pgp.php:245 -msgid "Private Key" -msgstr "Privater Schlüssel" - -#: lib/Horde/Crypt/Pgp.php:245 -msgid "Public Key" -msgstr "Öffentlicher Schlüssel" - -#: lib/Horde/Crypt/Pgp.php:95 -msgid "Public/Private keypair not generated successfully." -msgstr "Das öffentliche/private Schlüsselpaar konnte nicht erstellt werden." - -#: lib/Horde/Crypt/Smime.php:272 -msgid "S/MIME Encrypted Message" -msgstr "Mit S/MIME verschlüsselte Nachricht" - -#: lib/Horde/Crypt/Smime.php:225 -msgid "S/MIME Signature" -msgstr "S/MIME-Signatur" - -#: lib/Horde/Crypt/Smime.php:567 -msgid "Serial Number" -msgstr "Seriennummer" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "State or Province" -msgstr "Bundesstaat oder Provinz" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "Street Address" -msgstr "Straße" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Surname" -msgstr "Nachname" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "Telephone Number" -msgstr "Telefonnummer" - -#: lib/Horde/Crypt/Smime.php:665 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Das OpenSSL-Modul wird für die Horde_Crypt_Smime:: Klasse benötigt." - -#: lib/Horde/Crypt/Pgp.php:685 -msgid "Unable to determine if data was encrypted symmetrically." -msgstr "" -"Es konnte nicht festgestellt werden, ob die Daten symmetrisch verschlüsselt " -"wurden." - -#: lib/Horde/Crypt/Pgp.php:251 lib/Horde/Crypt/Pgp.php:252 -#: lib/Horde/Crypt/Pgp.php:253 -msgid "Unknown" -msgstr "Unbekannt" - -#: lib/Horde/Crypt/Smime.php:545 -msgid "Validity" -msgstr "Gültigkeit" - -#: lib/Horde/Crypt/Smime.php:149 -msgid "Verification failed - an unknown error has occurred." -msgstr "Überprüfung fehlgeschlagen - ein unbekannter Fehler ist aufgetreten." - -#: lib/Horde/Crypt/Smime.php:151 -msgid "Verification failed - this message may have been tampered with." -msgstr "" -"Überprüfung fehlgeschlagen - diese Nachricht könnte manipuliert worden sein." - -#: lib/Horde/Crypt/Smime.php:566 -msgid "Version" -msgstr "Version" - -#: lib/Horde/Crypt/Smime.php:510 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 Generelle Einschränkung" - -#: lib/Horde/Crypt/Smime.php:509 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 Erweiterter Schlüsselzweck" - -#: lib/Horde/Crypt/Smime.php:511 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Alternativer Name des Zertifikatinhabers" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Identität des Zertifikatschlüssels" - -#: lib/Horde/Crypt/Smime.php:552 -msgid "X509v3 extensions" -msgstr "X509v3 Erweiterungen" - -#: lib/Horde/Crypt/Smime.php:654 -msgid "not yet implemented" -msgstr "Noch nicht implementiert" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/el/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/el/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/el/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/el/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/el/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/el/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,440 +0,0 @@ -# Greek translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2015-10-02 11:47+0200\n" -"Last-Translator: Antonis Limperis \n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Language: el\n" -"X-Generator: Poedit 1.7.1\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s Δακτυλικό αποτύπωμα" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" -"Για την αποκρυπτογράφηση ενός μηνύματος απαιτείται μια φράση πρόσβασης " -"(passphrase)." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" -"Απαιτείται δημόσιο κλειδί PGP για επιβεβαίωση ενός υπογεγραμμένου μηνύματος." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Απαιτείται δημόσιο, προσωπικό PGP κλειδί και λέξη-κωδικός για να υπογράψετε " -"ψηφιακά ένα μήνυμα." - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Απαιτείται δημόσιο κλειδί S/MIME για την κρυπτογράφηση ενός μηνύματος." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Απαιτείται δημόσιο, προσωπικό S/MIME κλειδί και λέξη-κωδικός για να " -"αποκρυπτογραφήσετε ένα μήνυμα." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Απαιτείται δημόσιο, προσωπικό S/MIME κλειδί και λέξη-κωδικός για να " -"υπογράψετε ψηφιακά ένα μήνυμα." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "Σημεία διανομής CRL" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Λεπτομέρειες Πιστοποιητικού" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Ιδιοκτήτης Πιστοποιητικού" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Πολιτική Πιστοποιητικού" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Σχόλιο" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "Κοινό Όνομα" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Αρνηση σύνδεσης από το δημόσιο εξυπηρετητή κλειδιών." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Αρνηση σύνδεσης από το δημόσιο εξυπηρετητή κλειδιών. Λόγος : %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "Αδύνατη η κρυπτογράφηση του μηνύματος με PGP." - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "Αδύνατη η υπογραφή του μηνύματος με PGP." - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Αδύνατη η κρυπτογράφηση του μηνύματος με S/MIME." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Αδύνατη η υπογραφή του μηνύματος με S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "Αδύνατη η αποκρυπτογράφηση PGP δεδομένων." - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Αδύνατη η αποκρυπτογράφηση S/MIME δεδομένων." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Δε μπορώ να διευκρινήσω τη διεύθυνση του παραλήπτη." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Αδύνατη η ανάκτηση δημόσιου κλειδιού από τον εξυπηρετητή Δημ.Κλειδιών." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Χώρα" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "Αλληλογραφία" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Διεύθυνση Email" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "Σφάλμα, κατά την αλληλεπίδραση με το πρόγραμμα PGP." - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "Σφάλμα, κατά την αλληλεπίδραση με το πρόγραμμα smime." - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Ημερομηνία Λήξης" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Εκθέτης" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "Μικρό Όνομα" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hash-Αλγόριθμος" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Εκδότης" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Δημιουργία Κλειδιού" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Αποτύπωμα Κλειδιού" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Μήκος Κλειδιού" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Τύπος Κλειδιού" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Χρήση Κλειδιού" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Το κλειδί υπάρχει ήδη στον εξυπηρετητή δημόσιων κλειδιών." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Τόποθεσία" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Το μήνυμα επιβεβαιώθηκε επιτυχώς, αλλά το πιστοποιητικό του υπογράφοντα δε " -"μπορεί να επιβεβαιωθεί." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Όνομα" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Ποτέ" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Δεν έχει οριστεί διαδρομή προς το πρόγραμμα OpenSSL. Το πρόγραμμα OpenSSL " -"είναι απαραίτητο για λειτουργίες με δεδομένα PKCS 12." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Καμμία" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "Όχι Μετά" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "Όχι Πριν" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"OpenSSL-Λάθος: Δεν μπορώ να βγάλω δεδομένα από S/MIME υπογεγραμμένο μέρος." - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Οργανισμός" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Τμήμα Οργανισμού" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "Ψηφιακή Υπογραφή PGP" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "Κρυπτογραφημένα δεδομένα PGP" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Δημόσιο Κλειδί PGP" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "Υπογεγραμμένα/Κρυπτογραφημένα PGP δεδομένα" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Λάθος κωδικός" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Προσωπικό Κλειδί" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Δημόσιο Κλειδί" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Αλγόριθμος Δημόσιου Κλειδιού" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "Πληροφορίες Δημόσιου Κλειδιού" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Το ζεύγος Δημόσιου/Προσωπικού κλειδιού δε δημιουργήθηκε επιτυχώς." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "Δημόσιο Κλειδί RSA (%d Bit)" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "Επισττρεφόμενο μήνυμα λάθους:" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "Το κλειδί ανάκλησης δεν δημιουργήθηκε με επιτυχία." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "Υπογραφή Κρυπτογράφησης S/MIME" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "Κρυπτογραφημένο μήνυμα S/MIME" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Σειριακός Αριθμός" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Υπογραφή" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "Αλγόριθμος Υπογραφής" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Πολιτεία ή Επαρχία" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Διεύθυνση-Οδός" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Επίθετο" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Αριθμός Τηλεφώνου" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Το τμήμα PGP που αποσπάσθηκε απαιτείτο για την επαλήθευση του υπογεγραμμένου " -"μηνήματος." - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Η βιβλιοθήκη OpenSSL απαιτείται για την κλάση Horde_Crypt_smime::." - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "Δε μπορώ να εξάγω πληροφορίες πιστοποιητικού" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Αγνωστο" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Μη υποστηριζόμενη επέκταση" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "Εγκυρότητα" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "Η επαλήθευση απέτυχε - Παρουσιάστηκε ένα άγνωστο σφάλμα." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Η επιβεβαίωση απέτυχε - αυτό το μήνυμα μπορεί να άλλαξε με." - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Έκδοση" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 Βασικοί Περιορισμοί" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 Χρήση επεκταμένου κλειδιού" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Εναλακτικό Όνομα Θέματος" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Αναγνωριστικό Κλειδί Θέματος" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "X509v3 Επεκτάσεις" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "δεν έχει εγκατασταθεί ακόμη" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/es/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/es/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/es/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/es/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/es/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/es/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,375 +0,0 @@ -# Spanish translations for Horde_Crypt package. -# Copyright (C) 2013 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt package. -# Automatically generated, 2013. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt \n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-07-16 21:24+0200\n" -"PO-Revision-Date: 2013-06-11 20:26+0200\n" -"Last-Translator: Manuel P. Ayala , Juan C. Blanco " -"\n" -"Language-Team: i18n@lists.horde.org\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Pgp.php:1275 -msgid "A passphrase is required to decrypt a message." -msgstr "Hace falta una frase clave para descifrar un mensaje." - -#: lib/Horde/Crypt/Pgp.php:1346 -msgid "A public PGP key is required to verify a signed message." -msgstr "Hace falta una clave PGP pública para comprobar un mensaje firmado." - -#: lib/Horde/Crypt/Pgp.php:1206 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Hacen falta una clave PGP pública, una clave PGP privada y una frase clave " -"para firmar un mensaje." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Hace falta una clave S/MIME pública para cifrar un mensaje." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Hacen falta una clave S/MIME pública, una clave S/MIME privada y una frase " -"clave para descifrar un mensaje." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Hacen falta una clave S/MIME pública, una clave S/MIME privada y una frase " -"clave para firmar un mensaje." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "Puntos de distribución CRC" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "Detalles del certificado" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "Propietario del certificado" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Políticas del certificado" - -#: lib/Horde/Crypt/Pgp.php:448 -msgid "Comment" -msgstr "Comentario" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Nombre común" - -#: lib/Horde/Crypt/Pgp.php:980 -msgid "Connection refused to the public keyserver." -msgstr "Se ha rechazado la conexión al servidor de claves público." - -#: lib/Horde/Crypt/Pgp.php:991 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" -"Se ha rechazado la conexión al servidor de claves público. Motivo: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1174 -msgid "Could not PGP encrypt message: " -msgstr "No se pudo cifrar el mensaje mediante PGP: " - -#: lib/Horde/Crypt/Pgp.php:1243 -msgid "Could not PGP sign message: " -msgstr "No se pudo firmar el mensaje mediante PGP: " - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "No se pudo cifrar el mensaje mediante S/MIME." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "No se pudo firmar el mensaje mediante S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1314 -msgid "Could not decrypt PGP data: " -msgstr "No se han podido descifrar los datos PGP: " - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "No se han podido descifrar los datos S/MIME." - -#: lib/Horde/Crypt/Pgp.php:673 -msgid "Could not determine the recipient's e-mail address." -msgstr "No se pudo determinar la dirección de correo del destinatario." - -#: lib/Horde/Crypt/Pgp.php:774 lib/Horde/Crypt/Pgp.php:888 -msgid "Could not obtain public key from the keyserver." -msgstr "No se pudo obtener la clave pública del servidor de claves." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "País" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Descripción" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "E-Mail" -msgstr "Correo" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "Dirección de correo" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Error al analizar el certificado S/MIME: %s" - -#: lib/Horde/Crypt/Pgp.php:1623 lib/Horde/Crypt/Pgp.php:1631 -msgid "Error while talking to pgp binary." -msgstr "Error hablando con el programa pgp." - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "Error hablando con el programa smime." - -#: lib/Horde/Crypt/Pgp.php:446 -msgid "Expiration Date" -msgstr "Fecha de caducidad" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "Nombre indicado" - -#: lib/Horde/Crypt/Pgp.php:450 -msgid "Hash-Algorithm" -msgstr "Algoritmo Hash" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "Emisor" - -#: lib/Horde/Crypt/Pgp.php:445 -msgid "Key Creation" -msgstr "Creación de clave" - -#: lib/Horde/Crypt/Pgp.php:452 -msgid "Key Fingerprint" -msgstr "Huella digital de la clave" - -#: lib/Horde/Crypt/Pgp.php:451 -msgid "Key ID" -msgstr "ID de clave" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Key Length" -msgstr "Tamaño de clave" - -#: lib/Horde/Crypt/Pgp.php:444 -msgid "Key Type" -msgstr "Tipo de clave" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "Uso de la clave:" - -#: lib/Horde/Crypt/Pgp.php:797 -msgid "Key already exists on the public keyserver." -msgstr "La clave ya existe en el servidor de claves público." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Ubicación" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Se ha verificado correctamente el mensaje pero no se puede validar el " -"certificado del firmante." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "Se ha redirigido correctamente el mensaje." - -#: lib/Horde/Crypt/Pgp.php:443 -msgid "Name" -msgstr "Nombre" - -#: lib/Horde/Crypt/Pgp.php:475 -msgid "Never" -msgstr "Nunca" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"No se ha indicado la vía de acceso a los binarios OpenSSL. Para trabajar con " -"datos PKCS 12 hacen falta los binarios OpenSSL." - -#: lib/Horde/Crypt/Pgp.php:477 lib/Horde/Crypt/Pgp.php:478 -msgid "None" -msgstr "Ninguna" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "No después" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "No antes" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"Error OpenSSL: No se han podido extraer datos de la parte S/MIME firmada." - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Organización" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "Unidad organizativa" - -#: lib/Horde/Crypt/Pgp.php:1445 -msgid "PGP Digital Signature" -msgstr "Firma digital PGP" - -#: lib/Horde/Crypt/Pgp.php:1489 -msgid "PGP Encrypted Data" -msgstr "Datos cifrados con PGP" - -#: lib/Horde/Crypt/Pgp.php:1550 -msgid "PGP Public Key" -msgstr "Clave PGP pública" - -#: lib/Horde/Crypt/Pgp.php:1532 -msgid "PGP Signed/Encrypted Data" -msgstr "Datos firmados/cifrados con PGP" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Contraseña incorrecta" - -#: lib/Horde/Crypt/Pgp.php:473 -msgid "Private Key" -msgstr "Clave privada" - -#: lib/Horde/Crypt/Pgp.php:473 -msgid "Public Key" -msgstr "Clave PGP pública" - -#: lib/Horde/Crypt/Pgp.php:243 -msgid "Public/Private keypair not generated successfully." -msgstr "No se generaron correctamente las claves Pública/Privada." - -#: lib/Horde/Crypt/Pgp.php:245 -msgid "Returned error message:" -msgstr "Mensaje de error devuelto:" - -#: lib/Horde/Crypt/Pgp.php:1685 -msgid "Revocation key not generated successfully." -msgstr "No se generó correctamente la clave de anulación." - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "Mensaje cifrado en S/MIME" - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Signature" -msgstr "Firma S/MIME" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "Número de serie" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "Estado o provincia" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Dirección de la calle" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Apellido" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Número de teléfono" - -#: lib/Horde/Crypt/Pgp.php:1350 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Para comprobar el mensaje firmado hace falta el bloque de firma separado." - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Hace falta el módulo openssl para la clase Horde_Crypt_smime::." - -#: lib/Horde/Crypt/Pgp.php:479 lib/Horde/Crypt/Pgp.php:480 -#: lib/Horde/Crypt/Pgp.php:481 -msgid "Unknown" -msgstr "Desconocido" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "Validez" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "Ha fallado la comprobación - se ha producido un error desconocido." - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "Ha fallado la comprobación - este mensaje puede haberse manipulado." - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Versión" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "Limitaciones básicas X509v3" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "Uso de clave extendida X509v3" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "Nombre alternativo de asunto X509v3" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "Identificador de clave de asunto X509v3" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "Extensiones X509v3" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "aún no se ha desarrollado" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/et/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/et/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/et/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/et/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/et/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/et/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,438 +0,0 @@ -# Estonian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2011-08-02 15:24+0200\n" -"PO-Revision-Date: 2010-11-09 01:27+0200\n" -"Last-Translator: Alar Sing \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Smime.php:632 -#, php-format -msgid "%s Fingerprint" -msgstr "%s sõrmejälg" - -#: lib/Horde/Crypt/Pgp.php:1237 -msgid "A passphrase is required to decrypt a message." -msgstr "Kirja dekrüpteerimiseks on vajalik parool." - -#: lib/Horde/Crypt/Pgp.php:1308 -msgid "A public PGP key is required to verify a signed message." -msgstr "Allkirja kontrollimiseks on vaja avalikku PGP võtit." - -#: lib/Horde/Crypt/Pgp.php:1168 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Kirja allkirjastamiseks on vaja avalikku PGP võtit, salajast PGP võtit ja " -"salasõna." - -#: lib/Horde/Crypt/Smime.php:312 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Kirja krüpteerimiseks on vaja avalikku S/MIME võtit." - -#: lib/Horde/Crypt/Smime.php:440 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Krüpteeritud kirja avamiseks on vaja avalikku S/MIME võtit, salajast S/MIME " -"võtit ja salasõna." - -#: lib/Horde/Crypt/Smime.php:371 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Kirja allkirjastamiseks on vaja avalikku S/MIME võtit, salajast S/MIME võtit " -"ja salasõna." - -#: lib/Horde/Crypt/Smime.php:524 -msgid "CRL Distribution Points" -msgstr "Tühistusnimekirja jaotuspunktid" - -#: lib/Horde/Crypt/Smime.php:627 -msgid "Certificate Details" -msgstr "Sertifikaadi üksikasjad" - -#: lib/Horde/Crypt/Smime.php:538 -msgid "Certificate Owner" -msgstr "Sertifikaadi omanik" - -#: lib/Horde/Crypt/Smime.php:523 -msgid "Certificate Policies" -msgstr "Sertifikaadi poliitikad" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Kommentaar" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Common Name" -msgstr "Lihtnimi" - -#: lib/Horde/Crypt/Pgp.php:943 -msgid "Connection refused to the public keyserver." -msgstr "Avalik võtmeserver ei anna ühendust." - -#: lib/Horde/Crypt/Pgp.php:954 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Avalik võtmeserver ei anna ühendust. Põhjus: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1136 -msgid "Could not PGP encrypt message: " -msgstr "Ei saanud kirja PGPga krüpteerida: " - -#: lib/Horde/Crypt/Pgp.php:1205 -msgid "Could not PGP sign message: " -msgstr "Ei saanud kirja PGPga allkirjastada: " - -#: lib/Horde/Crypt/Smime.php:341 -msgid "Could not S/MIME encrypt message." -msgstr "Ei saanud kirja S/MIMEga krüpteerida." - -#: lib/Horde/Crypt/Smime.php:402 -msgid "Could not S/MIME sign message." -msgstr "Ei saanud kirja S/MIMEga allkirjastada." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "Ei saanud PGP andmeid dekrüpteerida: " - -#: lib/Horde/Crypt/Smime.php:458 -msgid "Could not decrypt S/MIME data." -msgstr "Ei saanud S/MIME andmeid dekrüpteerida." - -#: lib/Horde/Crypt/Pgp.php:657 -msgid "Could not determine the recipient's e-mail address." -msgstr "Ei suutnud välja selgitada adressaadi e-posti aadress." - -#: lib/Horde/Crypt/Pgp.php:758 lib/Horde/Crypt/Pgp.php:851 -msgid "Could not obtain public key from the keyserver." -msgstr "Ei saanud võtmeserverist avalikku võtit kätte." - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Country" -msgstr "Riik" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "E-post" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Email Address" -msgstr "E-posti Aadress" - -#: lib/Horde/Crypt/Pgp.php:1586 lib/Horde/Crypt/Pgp.php:1594 -msgid "Error while talking to pgp binary." -msgstr "Viga pgp programmiga suhtlemisel." - -#: lib/Horde/Crypt/Smime.php:1256 lib/Horde/Crypt/Smime.php:1274 -#: lib/Horde/Crypt/Smime.php:1289 -msgid "Error while talking to smime binary." -msgstr "Viga smime programmiga suhtlemisel." - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Aegumise kuupäev" - -#: lib/Horde/Crypt/Smime.php:604 -msgid "Exponent" -msgstr "Eksponent" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "Given Name" -msgstr "Eesnimi" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Räsialgoritm" - -#: lib/Horde/Crypt/Smime.php:552 -msgid "Issuer" -msgstr "Väljaandja" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Võtme loomine" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Võtme sõrmejälg" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "Võtme ID" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Võtme pikkus" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Võtme tüüp" - -#: lib/Horde/Crypt/Smime.php:525 -msgid "Key Usage" -msgstr "Võtme kasutus" - -#: lib/Horde/Crypt/Pgp.php:781 -msgid "Key already exists on the public keyserver." -msgstr "Võti on avalikus serveris juba olemas." - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Location" -msgstr "Asukoht" - -#: lib/Horde/Crypt/Smime.php:192 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Kiri on edukalt kontrollitud, ent allkirjastaja sertifikaati ei saanud " -"kontrollida." - -#: lib/Horde/Crypt/Smime.php:180 -msgid "Message verified successfully." -msgstr "Kiri edukalt kontrollitud." - -#: lib/Horde/Crypt/Smime.php:601 -msgid "Modulus" -msgstr "Jääk" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nimi" - -#: lib/Horde/Crypt/Smime.php:508 -msgid "Netscape Base URL" -msgstr "Netscape Baas URL" - -#: lib/Horde/Crypt/Smime.php:510 -msgid "Netscape CA Revocation URL" -msgstr "Netscape CA tühistuse URL" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Netscape CA policy URL" -msgstr "Netscape CA poliisi URL" - -#: lib/Horde/Crypt/Smime.php:511 -msgid "Netscape Renewal URL" -msgstr "Netscape uuenduse URL" - -#: lib/Horde/Crypt/Smime.php:509 -msgid "Netscape Revocation URL" -msgstr "Netscape tühistuse URL" - -#: lib/Horde/Crypt/Smime.php:513 -msgid "Netscape SSL server name" -msgstr "Netscape SSL serveri nimi" - -#: lib/Horde/Crypt/Smime.php:514 -msgid "Netscape certificate comment" -msgstr "Netscape sertifikaadi kommentaar" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Netscape certificate type" -msgstr "Netscape sertifikaadi tüüp" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Mitte kunagi" - -#: lib/Horde/Crypt/Smime.php:1222 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"OpenSSL programmi asukoht ei ole määratud. OpenSSL programm on vajalik " -"PKCS#12 andmetega töötamiseks." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Määramata" - -#: lib/Horde/Crypt/Smime.php:567 -msgid "Not After" -msgstr "Mitte hiljem kui" - -#: lib/Horde/Crypt/Smime.php:566 -msgid "Not Before" -msgstr "Mitte varem kui" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OpenSSL viga: Andmete eraldamine allkirjastatud S/MIME osast nurjus." - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Organisation" -msgstr "Organisatsioon" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Organisational Unit" -msgstr "Allüksus" - -#: lib/Horde/Crypt/Pgp.php:1408 -msgid "PGP Digital Signature" -msgstr "PGP digitaalallkiri" - -#: lib/Horde/Crypt/Pgp.php:1452 -msgid "PGP Encrypted Data" -msgstr "PGP krüpteeritud andmed" - -#: lib/Horde/Crypt/Pgp.php:1513 -msgid "PGP Public Key" -msgstr "PGP avalik võti" - -#: lib/Horde/Crypt/Pgp.php:1495 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP allkirjastatud/krüpteeritud andmed" - -#: lib/Horde/Crypt/Smime.php:1261 -msgid "Password incorrect" -msgstr "Vale salasõna" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Salajane võti" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Avalik võti" - -#: lib/Horde/Crypt/Smime.php:572 -msgid "Public Key Algorithm" -msgstr "Avaliku võtme algoritm" - -#: lib/Horde/Crypt/Smime.php:571 -msgid "Public Key Info" -msgstr "Avaliku võtme info" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Võtmepaari genereerimine ei õnnestunud." - -#: lib/Horde/Crypt/Smime.php:590 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA avalik võti (%d bitti)" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "Tagastatud veateade:" - -#: lib/Horde/Crypt/Pgp.php:1646 -msgid "Revocation key not generated successfully." -msgstr "Tühistus võtme genereerimine ei õnnestunud." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME krüptograafiline allkiri" - -#: lib/Horde/Crypt/Smime.php:284 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME krüpteeritud kiri" - -#: lib/Horde/Crypt/Smime.php:629 -msgid "Serial Number" -msgstr "Järjenumber" - -#: lib/Horde/Crypt/Smime.php:636 -msgid "Signature" -msgstr "Allkiri" - -#: lib/Horde/Crypt/Smime.php:635 -msgid "Signature Algorithm" -msgstr "Allkirja algoritm" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "State or Province" -msgstr "Osariik või maakond" - -#: lib/Horde/Crypt/Smime.php:499 -msgid "Street Address" -msgstr "Tänav ja maja" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "Surname" -msgstr "Perekonnanimi" - -#: lib/Horde/Crypt/Smime.php:500 -msgid "Telephone Number" -msgstr "Telefoninumber" - -#: lib/Horde/Crypt/Pgp.php:1312 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Allkirjastatud kirja kontrollimiseks on vaja eraldi PGP allkirjablokki." - -#: lib/Horde/Crypt/Smime.php:1151 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Horde_Crypt_smime:: klass vajab openssl moodulit." - -#: lib/Horde/Crypt/Smime.php:530 -msgid "Unable to extract certificate details" -msgstr "Ei saa kätte sertifikaadi üksikasju" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Tundmatu" - -#: lib/Horde/Crypt/Smime.php:614 lib/Horde/Crypt/Smime.php:858 -#: lib/Horde/Crypt/Smime.php:864 -msgid "Unsupported Extension" -msgstr "Toetamata laiendus" - -#: lib/Horde/Crypt/Smime.php:565 -msgid "Validity" -msgstr "Kehtivus" - -#: lib/Horde/Crypt/Smime.php:187 -msgid "Verification failed - an unknown error has occurred." -msgstr "Kontrollimine ebaõnnestus - juhtus tundmatu viga." - -#: lib/Horde/Crypt/Smime.php:189 -msgid "Verification failed - this message may have been tampered with." -msgstr "Kontrollimine nurjus - see kiri võib olla pahatahtlikult muudetud." - -#: lib/Horde/Crypt/Smime.php:628 -msgid "Version" -msgstr "Järjenumber" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 põhilised piirangud" - -#: lib/Horde/Crypt/Smime.php:519 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 võtme laiendatud kasutus" - -#: lib/Horde/Crypt/Smime.php:521 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 subjekti alternatiivne nimi" - -#: lib/Horde/Crypt/Smime.php:522 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 subjekti võtme identifikaator" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "X509v3 extensions" -msgstr "X509v3 laiendused" - -#: lib/Horde/Crypt/Smime.php:1140 -msgid "not yet implemented" -msgstr "pole veel teostatud" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/eu/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/eu/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/eu/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/eu/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/eu/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/eu/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,386 +0,0 @@ -# Basque translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2012-11-06 16:40+0100\n" -"PO-Revision-Date: 2013-01-16 09:53+0100\n" -"Last-Translator: Ibon Igartua \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Pgp.php:1262 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "Sartu mezu hau enkriptatzeko erabilitako pasaesaldia." - -#: lib/Horde/Crypt/Pgp.php:1333 -#, fuzzy -msgid "A public PGP key is required to verify a signed message." -msgstr "PGP gako publiko hau erantsi zaio mezuari." - -#: lib/Horde/Crypt/Pgp.php:1193 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:266 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "PGP gako publiko hau erantsi zaio mezuari." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "Ziurtagiriaren xehetasunak" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "Ziurtagiriaren jabea" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Ziurtagiriaren gidalerroak" - -#: lib/Horde/Crypt/Pgp.php:436 -msgid "Comment" -msgstr "Iruzkina" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Izen arrunta" - -#: lib/Horde/Crypt/Pgp.php:968 -#, fuzzy -msgid "Connection refused to the public keyserver." -msgstr "Gakoa behar bezala bidali da gako-zerbitzari publikora." - -#: lib/Horde/Crypt/Pgp.php:979 -#, fuzzy, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Gakoa behar bezala bidali da gako-zerbitzari publikora." - -#: lib/Horde/Crypt/Pgp.php:1161 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "PGP enkriptazioko mezua" - -#: lib/Horde/Crypt/Pgp.php:1230 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "Ezin izan zaio %s erantsi mezuari." - -#: lib/Horde/Crypt/Smime.php:295 -#, fuzzy -msgid "Could not S/MIME encrypt message." -msgstr "S/MIMErekin enkriptatutako mezua" - -#: lib/Horde/Crypt/Smime.php:356 -#, fuzzy -msgid "Could not S/MIME sign message." -msgstr "S/MIMErekin sinatutako mezua" - -#: lib/Horde/Crypt/Pgp.php:1301 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Ezin izan da datu mota automatikoki zehaztu." - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:661 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:762 lib/Horde/Crypt/Pgp.php:876 -#, fuzzy -msgid "Could not obtain public key from the keyserver." -msgstr "Ezin izan da eskuratu %s(r)en gako publikoa." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "Herrialdea" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Azalpena" - -#: lib/Horde/Crypt/Pgp.php:437 -msgid "E-Mail" -msgstr "Posta hel." - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "Helbide elektronikoa" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1610 lib/Horde/Crypt/Pgp.php:1618 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:434 -#, fuzzy -msgid "Expiration Date" -msgstr "Aldatze-data" - -#: lib/Horde/Crypt/Smime.php:457 -#, fuzzy -msgid "Given Name" -msgstr "Fitxategi-izena" - -#: lib/Horde/Crypt/Pgp.php:438 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:433 -msgid "Key Creation" -msgstr "Gakoaren sortzea" - -#: lib/Horde/Crypt/Pgp.php:440 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:439 -msgid "Key ID" -msgstr "Gakoaren IDa" - -#: lib/Horde/Crypt/Pgp.php:435 -msgid "Key Length" -msgstr "Gakoaren luzera" - -#: lib/Horde/Crypt/Pgp.php:432 -msgid "Key Type" -msgstr "Gakoaren mota" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "Gakoaren erabilpena" - -#: lib/Horde/Crypt/Pgp.php:785 -#, fuzzy -msgid "Key already exists on the public keyserver." -msgstr "Gakoa behar bezala bidali da gako-zerbitzari publikora." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Kokalekua" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:131 -#, fuzzy -msgid "Message verified successfully." -msgstr "Mezua behar bezala birbideratu da." - -#: lib/Horde/Crypt/Pgp.php:431 -msgid "Name" -msgstr "Izena" - -#: lib/Horde/Crypt/Pgp.php:463 -msgid "Never" -msgstr "Inoiz ez" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:465 lib/Horde/Crypt/Pgp.php:466 -msgid "None" -msgstr "Bat ere ez" - -#: lib/Horde/Crypt/Smime.php:498 -#, fuzzy -msgid "Not After" -msgstr "Ez-pribatua" - -#: lib/Horde/Crypt/Smime.php:497 -#, fuzzy -msgid "Not Before" -msgstr "Aurreko hilabeteak" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Erakundea" - -#: lib/Horde/Crypt/Smime.php:450 -#, fuzzy -msgid "Organisational Unit" -msgstr "Erakundea" - -#: lib/Horde/Crypt/Pgp.php:1432 -#, fuzzy -msgid "PGP Digital Signature" -msgstr "Ilundu sinadurak?" - -#: lib/Horde/Crypt/Pgp.php:1476 -#, fuzzy -msgid "PGP Encrypted Data" -msgstr "PGP enkriptazioko mezua" - -#: lib/Horde/Crypt/Pgp.php:1537 -msgid "PGP Public Key" -msgstr "PGP gako publikoa" - -#: lib/Horde/Crypt/Pgp.php:1519 -#, fuzzy -msgid "PGP Signed/Encrypted Data" -msgstr "PGP sinaduradun/enkriptatzedun mezua" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Pasahitza ez da zuzena" - -#: lib/Horde/Crypt/Pgp.php:461 -msgid "Private Key" -msgstr "Gako pribatua" - -#: lib/Horde/Crypt/Pgp.php:461 -msgid "Public Key" -msgstr "Gako publikoa" - -#: lib/Horde/Crypt/Pgp.php:231 -#, fuzzy -msgid "Public/Private keypair not generated successfully." -msgstr "PGP gako-bikote pertsonala behar bezala sortu da." - -#: lib/Horde/Crypt/Pgp.php:233 -#, fuzzy -msgid "Returned error message:" -msgstr "Itzuli mezu-ikuspegira" - -#: lib/Horde/Crypt/Pgp.php:1670 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "PGP gako-bikote pertsonala behar bezala sortu da." - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:238 -#, fuzzy -msgid "S/MIME Encrypted Message" -msgstr "S/MIMErekin enkriptatutako mezua" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "Herrialdea edo probintzia" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Kale-helbidea" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Abizena" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Telefono zenbakia" - -#: lib/Horde/Crypt/Pgp.php:1337 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:467 lib/Horde/Crypt/Pgp.php:468 -#: lib/Horde/Crypt/Pgp.php:469 -msgid "Unknown" -msgstr "Ezezaguna" - -#: lib/Horde/Crypt/Smime.php:496 -#, fuzzy -msgid "Validity" -msgstr "Hezetasuna" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Bertsioa" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "ez da inplementatu oraindik" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fa/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fa/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fa/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fa/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fa/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fa/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,439 +0,0 @@ -# Persian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "اثر انگشت %s" - -#: lib/Horde/Crypt/Pgp.php:1240 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "یک کلید عمومی PGP برای رمزبندی یک پیغام مورد نیاز است" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "یک کلید عمومی PGP برای بازبینی یک پیغام امضاء شده مورد نیاز است" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"یک کلید عمومی، یک کلید خصوصی PGP و یک عبارت گذر برای امضاء یک پیغام مورد " -"نیاز است" - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "یک کلید عمومی S/MIME برای رمزبندی پیغام مورد نیاز است" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"یک کلید عمومی، یک کلید خصوصی S/MIME و یک عبارت گذر برای رمزگشایی پیغام مورد " -"نیاز است" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"یک کلید عمومی، یک کلید خصوصی S/MIME و یک عبارت گذر برای امضاء یک پیغام مورد " -"نیاز است" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "نقاط توزیع CRL" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "جزئیات گواهی " - -#: lib/Horde/Crypt/Smime.php:520 -#, fuzzy -msgid "Certificate Owner" -msgstr "جزئیات گواهی " - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "سیاستهای گواهی" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "توضیح" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "نام عمومی" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "اتصال به کارساز کلید عمومی رد شد" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "اتصال به کارساز کلید عمومی رد شد. دلیل: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "نمی‌تواند پیغام را رمزبندی کند PGP" - -#: lib/Horde/Crypt/Pgp.php:1201 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "نمی‌تواند پیغام را امضاء کند PGP" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "نمی‌تواند پیغام را رمزبندی کند S/MIME" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "نمی‌تواند پیغام را امضاء کند S/MIME" - -# #-#-#-#-# compendium.po (Horde 3) #-#-#-#-# -# -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "نمی‌توان داده PGP را رمزگشایی نمود " - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "نمی‌توان داده S/MIME را رمزگشایی نمود " - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "نمی‌توان آدرس گیرنده نامهٔ الکترونیکی را تشخیص داد" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "نمی‌توان کلید عمومی را از کارساز کلید بدست آورد" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "کشور" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "نامه الکترونیکی" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "آدرس نامهٔ الکترونیکی" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "تاریخ انقضاء" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "نماینده" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "نام داده شده" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "الگوریتم Hash" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "منتشر کننده" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "ایجاد کلید" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "اثر انگشت کلید" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "طول کلید" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "نوع کلید" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "کاربرد کلید" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "کلید قبلاً در کارساز عمومی کلید موجود است" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "موقعیت" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "پیغام با موفّقیّت بازبینی شد اما گواهی امضاء کننده نمی‌تواند بازبینی شود" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "نام" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "URL پایه Netscape" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "Netscape CA Revocation URL" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "Netscape CA policy URL" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "Netscape Renewal URL" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "Netscape Revocation URL" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "توضیح گواهی Netscape" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "نوع گواهی Netscape" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "هرگز" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "هیچ‌کدام" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "نه بعد" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "نه قبل" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "سازمان" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "واحد سازمانی" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "امضاء‌ دیجیتالی PGP" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "پیغام رمزبندی شدهٔ PGP" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr " کلید عمومی PGP" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "پیغام رمزبندی شده/امضاء شده PGP" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "اسم رمز نادرست است" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "کلید شخصی" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "کلید عمومی" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "الگوریتم کلید عمومی" - -#: lib/Horde/Crypt/Smime.php:553 -#, fuzzy -msgid "Public Key Info" -msgstr "کلید عمومی" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "جفت کلید عمومی/خصوصی با موفّقیّت تولید نشد" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr " کلید عمومی RSA (%d بیت)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "خواندن پیغامها " - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "جفت کلید عمومی/خصوصی با موفّقیّت تولید نشد" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "پیغام رمزبندی شدهٔ S/MIME " - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "اعداد ترتیبی" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "امضاء" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "الگوریتم امضاء" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "وضعیت حوزه‌ها" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "آدرس خیابان" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "نام خانوادگی" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "شماره تلفن" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "یک بلوک امضای PGP برای بازبینی یک پیغام امضاء شده مورد نیاز است" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "نمی‌توان جزئیات گواهی را استخراج نمود" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "داده ناشناخته" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "بسط بدون پشتیبانی" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "اعتبار" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "یک خطای جدی رخ داده است" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "نسخه" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "هنوز پیاده سازی نشده است" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fi/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fi/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fi/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fi/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fi/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fi/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,374 +0,0 @@ -# Finnish translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Leena Heino , 2010-2012. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2012-11-06 16:40+0100\n" -"PO-Revision-Date: 2012-10-28 20:41:43+0200\n" -"Last-Translator: Leena Heino \n" -"Language-Team: Finnish \n" -"Language: fi\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Pgp.php:1262 -msgid "A passphrase is required to decrypt a message." -msgstr "Salatun viestin purkamiseen tarvitaan salasanateksti." - -#: lib/Horde/Crypt/Pgp.php:1333 -msgid "A public PGP key is required to verify a signed message." -msgstr "Allekirjoitetun viestin tarkistukseen tarvitaan julkinen PGP-avain." - -#: lib/Horde/Crypt/Pgp.php:1193 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Viestin allekirjoittamiseksi tarvitaan julkinen PGP-avain, salainen PGP-" -"avain ja salasanateksti." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Viestin salaukseen tarvitaan julkinen SMIME-avain." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Viestin avaamiseen tarvitaan julkinen S/MIME-avain, salainen S/MIME-avain ja " -"salasanateksti." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Viestin allekirjoittamiseksi tarvitaan julkinen S/MIME-avain, salainen S/" -"MIME-avain ja salasanateksti." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "CRL-jakeluosoitteet" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "Varmenteen tiedot" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "Varmenteen omistaja" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Varmenteen politiikat" - -#: lib/Horde/Crypt/Pgp.php:436 -msgid "Comment" -msgstr "Kommentti" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Yleinen nimi" - -#: lib/Horde/Crypt/Pgp.php:968 -msgid "Connection refused to the public keyserver." -msgstr "Yhteys julkisten avainten palvelimelle on estetty." - -#: lib/Horde/Crypt/Pgp.php:979 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Yhteys julkisten avainten palvelimelle epäonnistui. Syy: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1161 -msgid "Could not PGP encrypt message: " -msgstr "Viestille ei voitu tehdä PGP-salausta: " - -#: lib/Horde/Crypt/Pgp.php:1230 -msgid "Could not PGP sign message: " -msgstr "Viestille ei voitu tehdä PGP-allekirjoitusta: " - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "Viestille ei voitu tehdä S/MIME-salausta." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "Viestille ei voitu tehdä S/MIME-allekirjoitusta." - -#: lib/Horde/Crypt/Pgp.php:1301 -msgid "Could not decrypt PGP data: " -msgstr "Viestin PGP-salausta ei voitu purkaa: " - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "Viestin S/MIME-salausta ei voitu purkaa." - -#: lib/Horde/Crypt/Pgp.php:661 -msgid "Could not determine the recipient's e-mail address." -msgstr "Viestin vastaanottajan sähköpostiosoitetta ei löytynyt." - -#: lib/Horde/Crypt/Pgp.php:762 lib/Horde/Crypt/Pgp.php:876 -msgid "Could not obtain public key from the keyserver." -msgstr "Avaintietoa ei pystytty hakemaan julkisten avainten palvelimelta." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "Maa" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Kuvaus" - -#: lib/Horde/Crypt/Pgp.php:437 -msgid "E-Mail" -msgstr "Sähköposti" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "Sähköpostiosoite" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Virhe tulkittaessa S/MIME-sertifikaattia: %s" - -#: lib/Horde/Crypt/Pgp.php:1610 lib/Horde/Crypt/Pgp.php:1618 -msgid "Error while talking to pgp binary." -msgstr "Virhe käytettäessä pgp-ohjelmistoa." - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "Virhe käytettäessä smime-ohjelmistoa." - -#: lib/Horde/Crypt/Pgp.php:434 -msgid "Expiration Date" -msgstr "Loppupäivämäärä" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "Etunimi" - -#: lib/Horde/Crypt/Pgp.php:438 -msgid "Hash-Algorithm" -msgstr "Tiivistealgoritmi" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "Liikkeellelaskija" - -#: lib/Horde/Crypt/Pgp.php:433 -msgid "Key Creation" -msgstr "Avaimen luonti" - -#: lib/Horde/Crypt/Pgp.php:440 -msgid "Key Fingerprint" -msgstr "Avaimen tunniste" - -#: lib/Horde/Crypt/Pgp.php:439 -msgid "Key ID" -msgstr "Avaimen ID" - -#: lib/Horde/Crypt/Pgp.php:435 -msgid "Key Length" -msgstr "Avaimen pituus" - -#: lib/Horde/Crypt/Pgp.php:432 -msgid "Key Type" -msgstr "Avaimen tyyppi" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "Avaimen käyttö" - -#: lib/Horde/Crypt/Pgp.php:785 -msgid "Key already exists on the public keyserver." -msgstr "Avain on jo julkisten avainten palvelimella" - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Paikka" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Viestin tarkistus onnistui, mutta allekirjoittajan varmennetta ei voitu " -"tarkistaa." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "Viestin tarkistus epäonnistui." - -#: lib/Horde/Crypt/Pgp.php:431 -msgid "Name" -msgstr "Nimi" - -#: lib/Horde/Crypt/Pgp.php:463 -msgid "Never" -msgstr "Ei koskaan" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Polkua OpenSSL komentoon ei ole määritelty. PKCS 12 tietojen käsittely " -"vaatii, että OpenSSL komentoa on käytettävissä." - -#: lib/Horde/Crypt/Pgp.php:465 lib/Horde/Crypt/Pgp.php:466 -msgid "None" -msgstr "Ei mitään" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "Ei jälkeen" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "Ei ennen" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"OpenSSL virhe: Tietoja ei saatu esille allekirjoitetusta S/MIME-osasta." - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Organisaatio" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "Organisaatioyksikkö" - -#: lib/Horde/Crypt/Pgp.php:1432 -msgid "PGP Digital Signature" -msgstr "Sähköinen PGP-allekirjoitus" - -#: lib/Horde/Crypt/Pgp.php:1476 -msgid "PGP Encrypted Data" -msgstr "PGP-salattua tietoa" - -#: lib/Horde/Crypt/Pgp.php:1537 -msgid "PGP Public Key" -msgstr "Julkinen PGP-avain" - -#: lib/Horde/Crypt/Pgp.php:1519 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP-allekirjoitettua ja salattua tietoa" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Väärä salasana" - -#: lib/Horde/Crypt/Pgp.php:461 -msgid "Private Key" -msgstr "Salainen avain" - -#: lib/Horde/Crypt/Pgp.php:461 -msgid "Public Key" -msgstr "Julkinen avain" - -#: lib/Horde/Crypt/Pgp.php:231 -msgid "Public/Private keypair not generated successfully." -msgstr "Julkisen/salaisen avainparin luonti epäonnistui." - -#: lib/Horde/Crypt/Pgp.php:233 -msgid "Returned error message:" -msgstr "Palautti virheilmoituksen:" - -#: lib/Horde/Crypt/Pgp.php:1670 -msgid "Revocation key not generated successfully." -msgstr "Sulkuavaimen luonti epäonnistui." - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME kryptograafinen allekirjoitus" - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME salattu viesti" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "Sarjanumero" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "Lääni tai alue" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Katuosoite" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Sukunimi" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Puhelinnumero" - -#: lib/Horde/Crypt/Pgp.php:1337 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Viestin allekirjoituksen tarkistamiseen tarvitaan erillinen PGP-" -"allekirjoituslohko." - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Moduuli openssl tarvitaan Horde_Crypt_smime:: -luokan käyttöön." - -#: lib/Horde/Crypt/Pgp.php:467 lib/Horde/Crypt/Pgp.php:468 -#: lib/Horde/Crypt/Pgp.php:469 -msgid "Unknown" -msgstr "Tuntematon" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "Voimassaoloaika" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "Tarkistus epäonnistui - tapahtui tuntematon virhe." - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "Tarkistus epäonnistui - Tätä viestiä on voitu käsitellä." - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Versio" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 perusrajoitteet" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 lisätoiminnot avaimen käytölle" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Kohteen vaihtoehtoinen nimi" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Kohteen avaimen tunniste" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "X509v3 laajennukset" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "ei ole vielä toteutettu" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fr/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fr/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fr/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fr/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/fr/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:11.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/fr/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,378 +0,0 @@ -# French translations for Horde_Crypt package. -# Copyright (C) 2013 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt package. -# -# Automatically generated, 2013. -# Paul De Vlieger , 2013 -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt \n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2012-11-06 16:40+0100\n" -"PO-Revision-Date: 2013-01-14 11:49+0100\n" -"Last-Translator: Paul De Vlieger \n" -"Language-Team: French \n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Lokalize 1.4\n" - -#: lib/Horde/Crypt/Pgp.php:1262 -msgid "A passphrase is required to decrypt a message." -msgstr "Une phrase secrète est nécessaire pour déchiffrer un message." - -#: lib/Horde/Crypt/Pgp.php:1333 -msgid "A public PGP key is required to verify a signed message." -msgstr "" -"Une clef publique PGP est nécessaire pour vérifier la signature d'un message." - -#: lib/Horde/Crypt/Pgp.php:1193 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Une clef publique PGP, une clef privée PGP, et une phrase secrète sont " -"nécessaires pour signer un message." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Une clef publique S/MIME est nécessaire pour chiffrer un message." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Une clef publique S/MIME, une clef privée S/MIME, et une phrase secrète sont " -"nécessaires pour déchiffrer un message." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Une clef publique S/MIME, une clef privée S/MIME, et une phrase secrète sont " -"nécessaires pour signer un message." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "Distribution des points LRC (Liste de révocation des certificats)" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "Détails du certificat" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "Propriétaire du certificat" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Politique de certification" - -#: lib/Horde/Crypt/Pgp.php:436 -msgid "Comment" -msgstr "Commentaire" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Nom usuel" - -#: lib/Horde/Crypt/Pgp.php:968 -msgid "Connection refused to the public keyserver." -msgstr "Connexion au serveur de clefs public refusée." - -#: lib/Horde/Crypt/Pgp.php:979 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Connexion au serveur de clefs public refusée. Raison : %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1161 -msgid "Could not PGP encrypt message: " -msgstr "Impossible de chiffrer le message : " - -#: lib/Horde/Crypt/Pgp.php:1230 -msgid "Could not PGP sign message: " -msgstr "Signature PGP du message impossible : " - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "Impossible de chiffrer le message avec S/MIME." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "Signature S/MIME du message impossible." - -#: lib/Horde/Crypt/Pgp.php:1301 -msgid "Could not decrypt PGP data: " -msgstr "Impossible de déchiffrer les données PGP : " - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "Impossible de déchiffrer les données S/MIME." - -#: lib/Horde/Crypt/Pgp.php:661 -msgid "Could not determine the recipient's e-mail address." -msgstr "Détermination de l'adresse du destinataire impossible." - -#: lib/Horde/Crypt/Pgp.php:762 lib/Horde/Crypt/Pgp.php:876 -msgid "Could not obtain public key from the keyserver." -msgstr "Impossible d'obtenir la clef publique à partir du serveur de clefs." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "Pays" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Description" - -#: lib/Horde/Crypt/Pgp.php:437 -msgid "E-Mail" -msgstr "Courrier" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "Adresse électronique" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Erreur de lecture du certificat S/MIME: %s" - -#: lib/Horde/Crypt/Pgp.php:1610 lib/Horde/Crypt/Pgp.php:1618 -msgid "Error while talking to pgp binary." -msgstr "Erreur de communication avec pgp." - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "Erreur de communication avec smime." - -#: lib/Horde/Crypt/Pgp.php:434 -msgid "Expiration Date" -msgstr "Date d'expiration" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "Prénom" - -#: lib/Horde/Crypt/Pgp.php:438 -msgid "Hash-Algorithm" -msgstr "Algorithme de hachage" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "Émetteur" - -#: lib/Horde/Crypt/Pgp.php:433 -msgid "Key Creation" -msgstr "Création de clef" - -#: lib/Horde/Crypt/Pgp.php:440 -msgid "Key Fingerprint" -msgstr "Empreinte de la clef" - -#: lib/Horde/Crypt/Pgp.php:439 -msgid "Key ID" -msgstr "Clé ID" - -#: lib/Horde/Crypt/Pgp.php:435 -msgid "Key Length" -msgstr "Longueur de la clef" - -#: lib/Horde/Crypt/Pgp.php:432 -msgid "Key Type" -msgstr "Type de clef" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "Utilisation de la clef" - -#: lib/Horde/Crypt/Pgp.php:785 -msgid "Key already exists on the public keyserver." -msgstr "La clef se trouve déjà sur le serveur de clefs public." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Lieu" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Vérification du message réussie, mais le certificat du signataire n'a pas pu " -"être vérifié." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "Vérification du message réussie." - -#: lib/Horde/Crypt/Pgp.php:431 -msgid "Name" -msgstr "Nom" - -#: lib/Horde/Crypt/Pgp.php:463 -msgid "Never" -msgstr "Jamais" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Aucun chemin vers le binaire OpenSSL fourni. Le binaire d'OpenSSL est " -"nécessaire pour fonctionner avec des données PKCS 12." - -#: lib/Horde/Crypt/Pgp.php:465 lib/Horde/Crypt/Pgp.php:466 -msgid "None" -msgstr "Aucun" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "Pas après" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "Pas avant" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"Erreur OpenSSL : impossible d'extraire les données de la partie signée S/" -"MIME." - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Organisation" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "Unité organisationnelle" - -#: lib/Horde/Crypt/Pgp.php:1432 -msgid "PGP Digital Signature" -msgstr "Signature numérique PGP" - -#: lib/Horde/Crypt/Pgp.php:1476 -msgid "PGP Encrypted Data" -msgstr "Données PGP chiffrées" - -#: lib/Horde/Crypt/Pgp.php:1537 -msgid "PGP Public Key" -msgstr "Clé publique PGP" - -#: lib/Horde/Crypt/Pgp.php:1519 -msgid "PGP Signed/Encrypted Data" -msgstr "Données PGP signées/chiffrées" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Mot de passe incorrect" - -#: lib/Horde/Crypt/Pgp.php:461 -msgid "Private Key" -msgstr "Clef privée" - -#: lib/Horde/Crypt/Pgp.php:461 -msgid "Public Key" -msgstr "Clef publique" - -#: lib/Horde/Crypt/Pgp.php:231 -msgid "Public/Private keypair not generated successfully." -msgstr "Échec de la génération de la paire de clefs publique/privée." - -#: lib/Horde/Crypt/Pgp.php:233 -msgid "Returned error message:" -msgstr "Message d'erreur retourné:" - -#: lib/Horde/Crypt/Pgp.php:1670 -msgid "Revocation key not generated successfully." -msgstr "Échec de la génération de la clé de révocation." - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Cryptographic Signature" -msgstr "Signature électronique S/MIME" - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "Message chiffré S/MIME" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "Numéro de série" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "État ou province" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Rue" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Nom de famille" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Numéro de téléphone" - -#: lib/Horde/Crypt/Pgp.php:1337 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Le bloc de signature PGP séparé est nécessaire pour vérifier la signature." - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Le module OpenSSL est requis pour la classe Horde_Crypt_smime" - -#: lib/Horde/Crypt/Pgp.php:467 lib/Horde/Crypt/Pgp.php:468 -#: lib/Horde/Crypt/Pgp.php:469 -msgid "Unknown" -msgstr "Inconnu" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "Validité" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "La vérification a échouée, une erreur inconnue s'est produite." - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "Échec de la vérification — ce message a peut-être été falsifié." - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Version" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "Contraintes basiques X509v3" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "Utilisation de clé étendue X509v3" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "Autre nom du sujet X509v3" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "Identifiant de clé du sujet X509v3" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "Extensions X509v3" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "pas encore pris en compte" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/gl/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/gl/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/gl/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/gl/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/gl/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/gl/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,427 +0,0 @@ -# Galician translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "Correo" - -#: lib/Horde/Crypt/Smime.php:474 -#, fuzzy -msgid "Email Address" -msgstr "Enderezo de correo electrónico:" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Mensaxe" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nome" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Nunca" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Chave de acceso" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "Enderezo particular" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "Usuario" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/he/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/he/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/he/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/he/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/he/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/he/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,427 +0,0 @@ -# Hebrew translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -#, fuzzy -msgid "Given Name" -msgstr "וייט–נם" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "שם" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "אפגניסתן" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "סיסמא: " - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "סורינם" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -#, fuzzy -msgid "Validity" -msgstr "לחות" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "גירסה" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/Horde_Crypt.pot php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/Horde_Crypt.pot --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/Horde_Crypt.pot 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/Horde_Crypt.pot 1970-01-01 00:00:00.000000000 +0000 @@ -1,339 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2016-08-08 15:58+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:302 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:443 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:374 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:514 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:132 -msgid "Cannot generate PGP keys" -msgstr "" - -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:350 -msgid "Cannot read PGP key ID" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:565 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:523 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:513 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:214 -msgid "Comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Common Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:559 -msgid "Could not PGP encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:576 -msgid "Could not PGP sign message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:343 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:405 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not decrypt PGP data." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:431 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp/Keyserver.php:110 lib/Horde/Crypt/Pgp/Keyserver.php:186 -#: lib/Horde/Crypt/Pgp/Keyserver.php:243 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:500 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Description" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:215 -msgid "E-Mail" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Email Address" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:600 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "" - -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:701 -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:711 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:770 lib/Horde/Crypt/Smime.php:788 -#: lib/Horde/Crypt/Smime.php:803 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:212 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "Given Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:216 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:211 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:218 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:217 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:213 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:210 -msgid "Key Type" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:515 -msgid "Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Pgp/Keyserver.php:146 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "Location" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:154 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:142 -msgid "Message verified successfully." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:209 -msgid "Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:247 -msgid "Never" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:736 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:249 lib/Horde/Crypt/Pgp.php:250 -msgid "None" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:546 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Organisation" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:499 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:735 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:792 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:866 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:844 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:775 -msgid "Password incorrect" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:245 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:245 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:95 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:272 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:225 -msgid "S/MIME Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:567 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "Street Address" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Surname" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:665 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:685 -msgid "Unable to determine if data was encrypted symmetrically." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:251 lib/Horde/Crypt/Pgp.php:252 -#: lib/Horde/Crypt/Pgp.php:253 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:545 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:149 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:151 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:566 -msgid "Version" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:510 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:509 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:511 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:552 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:654 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/hr/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/hr/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/hr/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/hr/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/hr/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/hr/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,449 +0,0 @@ -# Croatian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Valentin Vidic , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2011-08-02 15:24+0200\n" -"PO-Revision-Date: 2011-11-08 16:49+0200\n" -"Last-Translator: Valentin Vidic \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: hr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: lib/Horde/Crypt/Smime.php:632 -#, php-format -msgid "%s Fingerprint" -msgstr "%s Otisak prsta" - -#: lib/Horde/Crypt/Pgp.php:1237 -msgid "A passphrase is required to decrypt a message." -msgstr "Za dešifriranje poruke potrebna je lozinka." - -#: lib/Horde/Crypt/Pgp.php:1308 -msgid "A public PGP key is required to verify a signed message." -msgstr "Za verifikaciju napisane poruke potreban je javni PGP ključ." - -#: lib/Horde/Crypt/Pgp.php:1168 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Za potpisivanje poruke potrebni su javni PGP ključ, osobni PGP ključ i " -"lozinka." - -#: lib/Horde/Crypt/Smime.php:312 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Za šifriranje poruke potreban je javni S/MIME ključ." - -#: lib/Horde/Crypt/Smime.php:440 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Za dešifriranje poruke potrebni su javni S/MIME ključ, osobni S/MIME ključ i " -"lozinka." - -#: lib/Horde/Crypt/Smime.php:371 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Za potpisivanje poruke potrebni su javni S/MIME ključ, osobni S/MIME ključ i " -"lozinka." - -#: lib/Horde/Crypt/Smime.php:524 -msgid "CRL Distribution Points" -msgstr "CRL Distribucijske Točke" - -# pojedinosti -#: lib/Horde/Crypt/Smime.php:627 -msgid "Certificate Details" -msgstr "Detalji certifikata" - -# pojedinosti -#: lib/Horde/Crypt/Smime.php:538 -msgid "Certificate Owner" -msgstr "Vlasnik certifikata" - -#: lib/Horde/Crypt/Smime.php:523 -msgid "Certificate Policies" -msgstr "Smjernice certifikata" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Komentar" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Common Name" -msgstr "Zajedničko ime" - -#: lib/Horde/Crypt/Pgp.php:943 -msgid "Connection refused to the public keyserver." -msgstr "Odbijeno povezivanje na poslužitelj javnih ključeva." - -#: lib/Horde/Crypt/Pgp.php:954 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Odbijeno povezivanje na poslužitelj javnih ključeva. Razlog: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1136 -msgid "Could not PGP encrypt message: " -msgstr "PGP šifriranje poruke nije uspjelo: " - -#: lib/Horde/Crypt/Pgp.php:1205 -msgid "Could not PGP sign message: " -msgstr "PGP potpisivanje poruke nije uspjelo: " - -#: lib/Horde/Crypt/Smime.php:341 -msgid "Could not S/MIME encrypt message." -msgstr "S/MIME šifriranje poruke nije uspjelo." - -#: lib/Horde/Crypt/Smime.php:402 -msgid "Could not S/MIME sign message." -msgstr "S/MIME potpisivanje poruke nije uspjelo." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "Dešifriranje PGP podataka nije uspjelo: " - -#: lib/Horde/Crypt/Smime.php:458 -msgid "Could not decrypt S/MIME data." -msgstr "Dešifriranje S/MIME podataka nije uspjelo." - -#: lib/Horde/Crypt/Pgp.php:657 -msgid "Could not determine the recipient's e-mail address." -msgstr "Određivanje primateljeve e-mail adrese nije uspjelo." - -#: lib/Horde/Crypt/Pgp.php:758 lib/Horde/Crypt/Pgp.php:851 -msgid "Could not obtain public key from the keyserver." -msgstr "Primanje javnog ključa sa poslužitelja nije uspjelo." - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Country" -msgstr "Zemlja" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "E-Mail" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Email Address" -msgstr "E-mail adresa" - -#: lib/Horde/Crypt/Pgp.php:1586 lib/Horde/Crypt/Pgp.php:1594 -msgid "Error while talking to pgp binary." -msgstr "Greška prilikom komunikacije s pgp programom." - -#: lib/Horde/Crypt/Smime.php:1256 lib/Horde/Crypt/Smime.php:1274 -#: lib/Horde/Crypt/Smime.php:1289 -msgid "Error while talking to smime binary." -msgstr "Greška prilikom komunikacije s smime programom." - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Datum isteknuća" - -#: lib/Horde/Crypt/Smime.php:604 -msgid "Exponent" -msgstr "Eksponent" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "Given Name" -msgstr "Dodijeljeno ime" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hash algoritam" - -#: lib/Horde/Crypt/Smime.php:552 -msgid "Issuer" -msgstr "Izdavač" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Kreiranje ključa" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Otisak ključa" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "Oznaka ključa" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Duljina ključa" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Vrsta ključa" - -#: lib/Horde/Crypt/Smime.php:525 -msgid "Key Usage" -msgstr "Korištenje ključa" - -#: lib/Horde/Crypt/Pgp.php:781 -msgid "Key already exists on the public keyserver." -msgstr "Ključ već postoji na javnom poslužitelju ključeva." - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Location" -msgstr "Lokacija" - -# provjera -#: lib/Horde/Crypt/Smime.php:192 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Poruka je prošla verifikaciju, ali se certifikat potpisnika ne može " -"verificirati." - -#: lib/Horde/Crypt/Smime.php:180 -msgid "Message verified successfully." -msgstr "Poruka je uspješno verificirana." - -#: lib/Horde/Crypt/Smime.php:601 -msgid "Modulus" -msgstr "Modul" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Ime" - -#: lib/Horde/Crypt/Smime.php:508 -msgid "Netscape Base URL" -msgstr "URL Netscape Baze" - -#: lib/Horde/Crypt/Smime.php:510 -msgid "Netscape CA Revocation URL" -msgstr "URL Netscape CA opoziva" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Netscape CA policy URL" -msgstr "URL Netscape CA smjernice" - -#: lib/Horde/Crypt/Smime.php:511 -msgid "Netscape Renewal URL" -msgstr "URL Netscape obnove" - -#: lib/Horde/Crypt/Smime.php:509 -msgid "Netscape Revocation URL" -msgstr "URL Netscape opoziva" - -#: lib/Horde/Crypt/Smime.php:513 -msgid "Netscape SSL server name" -msgstr "Ime Netscape SSL poslužitelja" - -#: lib/Horde/Crypt/Smime.php:514 -msgid "Netscape certificate comment" -msgstr "Komentar Netscape certifikata" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Netscape certificate type" -msgstr "Vrsta Netscape certifikata" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Nikada" - -#: lib/Horde/Crypt/Smime.php:1222 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Putanja prema OpenSSL binarnoj datoteci nije navedena. OpenSSL binarna " -"datoteka je neophodna za rad s PKCS 12 podacima." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Ništa" - -#: lib/Horde/Crypt/Smime.php:567 -msgid "Not After" -msgstr "Ne poslije" - -#: lib/Horde/Crypt/Smime.php:566 -msgid "Not Before" -msgstr "Ne prije" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"OpenSSL greška: Nije uspjelo izdvajanje podataka iz potpisanog S/MIME dijela." - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Organisation" -msgstr "Organizacija" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Organisational Unit" -msgstr "Organizacijska jedinica" - -#: lib/Horde/Crypt/Pgp.php:1408 -msgid "PGP Digital Signature" -msgstr "PGP digitalni potpis" - -#: lib/Horde/Crypt/Pgp.php:1452 -msgid "PGP Encrypted Data" -msgstr "PGP šifrirani podaci" - -#: lib/Horde/Crypt/Pgp.php:1513 -msgid "PGP Public Key" -msgstr "PGP javni ključ" - -# Potpisani? -#: lib/Horde/Crypt/Pgp.php:1495 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP upisani/šfrirani podaci" - -#: lib/Horde/Crypt/Smime.php:1261 -msgid "Password incorrect" -msgstr "Lozinka je netočna" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Osobni ključ" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Javni ključ" - -#: lib/Horde/Crypt/Smime.php:572 -msgid "Public Key Algorithm" -msgstr "Algoritam javnog ključa" - -#: lib/Horde/Crypt/Smime.php:571 -msgid "Public Key Info" -msgstr "Informacije o javnom ključu" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Javni/osobni par ključeva nije uspješno generiran." - -#: lib/Horde/Crypt/Smime.php:590 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA javni ključ (%d bit)" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "Vraćena poruka o grešci:" - -#: lib/Horde/Crypt/Pgp.php:1646 -msgid "Revocation key not generated successfully." -msgstr "Ključ za opoziv nije uspješno generiran." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME kriptografski potpis" - -#: lib/Horde/Crypt/Smime.php:284 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME šifrirana poruka" - -#: lib/Horde/Crypt/Smime.php:629 -msgid "Serial Number" -msgstr "Serijski broj" - -#: lib/Horde/Crypt/Smime.php:636 -msgid "Signature" -msgstr "Potpis" - -#: lib/Horde/Crypt/Smime.php:635 -msgid "Signature Algorithm" -msgstr "Algoritam potpisa" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "State or Province" -msgstr "Država ili pokrajina" - -# adresa -#: lib/Horde/Crypt/Smime.php:499 -msgid "Street Address" -msgstr "Naziv ulice" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "Surname" -msgstr "Prezime" - -#: lib/Horde/Crypt/Smime.php:500 -msgid "Telephone Number" -msgstr "Telefonski broj" - -#: lib/Horde/Crypt/Pgp.php:1312 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Potreban je odvojeni blok PGP potpisa kako bi se verificirala potpisana " -"poruka." - -#: lib/Horde/Crypt/Smime.php:1151 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Modul openssl je potreban za Horde_Crypt_Smime:: klasu." - -#: lib/Horde/Crypt/Smime.php:530 -msgid "Unable to extract certificate details" -msgstr "Nije uspjelo izdvajanje podataka o certifikatu" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Nepoznato" - -#: lib/Horde/Crypt/Smime.php:614 lib/Horde/Crypt/Smime.php:858 -#: lib/Horde/Crypt/Smime.php:864 -msgid "Unsupported Extension" -msgstr "Nepodržana ekstenzija" - -# Ispravnost -#: lib/Horde/Crypt/Smime.php:565 -msgid "Validity" -msgstr "Valjanost" - -#: lib/Horde/Crypt/Smime.php:187 -msgid "Verification failed - an unknown error has occurred." -msgstr "Provjera nije uspjela - došlo je do nepoznate greške." - -#: lib/Horde/Crypt/Smime.php:189 -msgid "Verification failed - this message may have been tampered with." -msgstr "" -"Nije uspjela provjera podataka - mogućnost neovlaštenog pristupa poruci." - -#: lib/Horde/Crypt/Smime.php:628 -msgid "Version" -msgstr "Verzija" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 Osnovna ograničenja" - -#: lib/Horde/Crypt/Smime.php:519 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 Produljena upotreba ključa" - -# Alternativan naziv -#: lib/Horde/Crypt/Smime.php:521 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Alternativan naslov" - -#: lib/Horde/Crypt/Smime.php:522 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Identifikator naslova" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "X509v3 extensions" -msgstr "X509v3 esktenzije" - -#: lib/Horde/Crypt/Smime.php:1140 -msgid "not yet implemented" -msgstr "još nije implementirano" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/hu/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/hu/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/hu/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/hu/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/hu/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/hu/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,360 +0,0 @@ -# Hungarian translations for Horde_Crypt module. -# Copyright 2010-2013 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt \n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2014-03-25 18:08+0100\n" -"PO-Revision-Date: 2014-07-14 11:35+0200\n" -"Last-Translator: Andras Galos \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: hu\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Pgp.php:1086 -msgid "A passphrase is required to decrypt a message." -msgstr "Egy jelmondat szükséges a titkosítás visszafejtéséhez." - -#: lib/Horde/Crypt/Pgp.php:1157 -msgid "A public PGP key is required to verify a signed message." -msgstr "A digitális aláírás ellenőrzéséhez egy nyilvános PGP kulcs szükséges." - -#: lib/Horde/Crypt/Pgp.php:1017 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"A digitális aláíráshoz egy nyilvános PGP kulcs, egy titkos PGP kulcs és egy " -"jelmondat szükséges." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "A titkosításhoz egy nyilvános S/MIME kulcs szükséges." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"A titkosítás dekódolásához egy nyilvános S/MIME kulcs, egy titkos S/MIME " -"kulcs és egy jelmondat szükséges." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"A digitális aláíráshoz egy nyilvános S/MIME kulcs, egy titkos S/MIME kulcs " -"és egy jelmondat szükséges." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "A tanúsítványvisszavonási listák (CRL) címei" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "A tanúsítvány részletei" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "A tanúsítvány tulajdonosa" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Tanúsítványfelhasználási irányelvek" - -#: lib/Horde/Crypt/Pgp.php:417 -msgid "Comment" -msgstr "Megjegyzés" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Név, elnevezés" - -#: lib/Horde/Crypt/Pgp.php:985 -msgid "Could not PGP encrypt message: " -msgstr "Nem sikerült PGP-vel titkosítani a levelet: " - -#: lib/Horde/Crypt/Pgp.php:1054 -msgid "Could not PGP sign message: " -msgstr "A levelet nem sikerült PGP aláírással ellátni: " - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "A levelet nem sikerült az S/MIME szabvány szerint titkosítani." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "A levelet nem sikerült S/MIME aláírással ellátni." - -#: lib/Horde/Crypt/Pgp.php:1125 -msgid "Could not decrypt PGP data: " -msgstr "Az adatok PGP titkosításból történő dekódolása nem sikerült: " - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "Az adatok S/MIME titkosításból történő dekódolása nem sikerült." - -#: lib/Horde/Crypt/Pgp.php:644 -msgid "Could not determine the recipient's e-mail address." -msgstr "Nem sikerült megállapítani a címzett email címét." - -#: lib/Horde/Crypt/Pgp/Keyserver.php:101 lib/Horde/Crypt/Pgp/Keyserver.php:219 -msgid "Could not obtain public key from the keyserver." -msgstr "A nyilvános kulcsot nem sikerült megszerezni a kulcsszerverről." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "Ország" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Leírás" - -#: lib/Horde/Crypt/Pgp.php:418 -msgid "E-Mail" -msgstr "Email" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "Emailcím" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Hiba történt az S/MIME tanúsítvány olvasásakor: %s" - -#: lib/Horde/Crypt/Pgp.php:1453 lib/Horde/Crypt/Pgp.php:1461 -msgid "Error while talking to pgp binary." -msgstr "Hiba történt a pgp program futtatásakor." - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "Hiba történt az smime program futtatásakor." - -#: lib/Horde/Crypt/Pgp.php:415 -msgid "Expiration Date" -msgstr "Az érvényesség lejárata" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "Keresztnév" - -#: lib/Horde/Crypt/Pgp.php:419 -msgid "Hash-Algorithm" -msgstr "Hash algoritmus" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "A tanúsítvány kiadója" - -#: lib/Horde/Crypt/Pgp.php:414 -msgid "Key Creation" -msgstr "Kulcs létrehozása" - -#: lib/Horde/Crypt/Pgp.php:421 -msgid "Key Fingerprint" -msgstr "A kulcs lenyomata" - -#: lib/Horde/Crypt/Pgp.php:420 -msgid "Key ID" -msgstr "Kulcsazonosító" - -#: lib/Horde/Crypt/Pgp.php:416 -msgid "Key Length" -msgstr "Kulcshossz" - -#: lib/Horde/Crypt/Pgp.php:413 -msgid "Key Type" -msgstr "Kulcstípus" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "A kulcs használata" - -#: lib/Horde/Crypt/Pgp/Keyserver.php:137 -msgid "Key already exists on the public keyserver." -msgstr "A kulcs már létezik a nyilvános kulcsszerveren." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Hely" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"A digitálisan aláírt üzenet hiteles, de az aláíró tanúsítványát nem sikerült " -"ellenőrizni." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "A levél digitális aláírása érvényes." - -#: lib/Horde/Crypt/Pgp.php:412 -msgid "Name" -msgstr "Név" - -#: lib/Horde/Crypt/Pgp.php:444 -msgid "Never" -msgstr "Soha" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Nincs megadva az OpenSSL program elérési útvonala. Az OpenSSL program " -"szükséges a PKCS12 adatok kezeléséhez." - -#: lib/Horde/Crypt/Pgp.php:446 lib/Horde/Crypt/Pgp.php:447 -msgid "None" -msgstr "Nincs" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "Nem később" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "Nem korábban" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"OpenSSL hiba: Nem sikerült kinyerni az adatokat az aláírt S/MIME részből" - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Szervezet" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "Szervezeti egység" - -#: lib/Horde/Crypt/Pgp.php:1275 -msgid "PGP Digital Signature" -msgstr "PGP digitális aláírás" - -#: lib/Horde/Crypt/Pgp.php:1319 -msgid "PGP Encrypted Data" -msgstr "PGP-vel titkosított adat" - -#: lib/Horde/Crypt/Pgp.php:1380 -msgid "PGP Public Key" -msgstr "PGP nyilvános kulcs" - -#: lib/Horde/Crypt/Pgp.php:1362 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP-vel aláírt/titkosított adat" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Nem megfelelő jelszó" - -#: lib/Horde/Crypt/Pgp.php:442 -msgid "Private Key" -msgstr "Titkos kulcs" - -#: lib/Horde/Crypt/Pgp.php:442 -msgid "Public Key" -msgstr "Nyilvános kulcs" - -#: lib/Horde/Crypt/Pgp.php:212 -msgid "Public/Private keypair not generated successfully." -msgstr "A nyilvános/titkos kulcspárt nem sikerült létrehozni." - -#: lib/Horde/Crypt/Pgp.php:214 -msgid "Returned error message:" -msgstr "A kapott hibaüzenet:" - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME szabvány szerint titkosított levél" - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Signature" -msgstr "S/MIME digitális aláírás" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "Sorozatszám" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "Állam vagy tartomány" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Utcanév" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Családnév" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Telefonszám" - -#: lib/Horde/Crypt/Pgp.php:1161 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Különálló PGP aláírási blokk szükséges a digitálisan aláírt üzenet " -"hitelességének ellenőrzéséhez." - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Az openssl modul szükséges a Horde_Crypt_smime osztály használatához." - -#: lib/Horde/Crypt/Pgp.php:448 lib/Horde/Crypt/Pgp.php:449 -#: lib/Horde/Crypt/Pgp.php:450 -msgid "Unknown" -msgstr "Ismeretlen" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "Érvényesség" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "Az ellenőrzés sikertelen - ismeretlen hiba történt." - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "Az ellenőrzés sikertelen - lehet, hogy a levél megváltozott." - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Verzió" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 alapvető korlátozások" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 kiterjesztett kulcshasználat" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 tulajdonos alternatív elnevezése" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 tulajdonos kulcsazonosító" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "X509v3 kiterjesztések" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "A programnak ez a része még nincs megvalósítva." Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/id/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/id/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/id/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/id/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/id/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/id/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,436 +0,0 @@ -# Indonesian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "Comment" -msgstr "Command" - -#: lib/Horde/Crypt/Smime.php:475 -#, fuzzy -msgid "Common Name" -msgstr "Nama Anda" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Tidak dapat terhubung ke server ldap" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -#, fuzzy -msgid "Could not obtain public key from the keyserver." -msgstr "Tidak dapat terikat dengan server ldap" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "Surat" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Alamat Email" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -#, fuzzy -msgid "Key Creation" -msgstr "Pencipta Objek" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Lokasi" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -#, fuzzy -msgid "Name" -msgstr "Nama Lengkap" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Tidak pernah" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Tidak ada" - -#: lib/Horde/Crypt/Smime.php:549 -#, fuzzy -msgid "Not After" -msgstr "Belum diatur" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "Mengatur" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Sandi lama tidak benar." - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -#, fuzzy -msgid "Serial Number" -msgstr "Angka Desimal" - -#: lib/Horde/Crypt/Smime.php:622 -#, fuzzy -msgid "Signature" -msgstr "Daftar Bacaan" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "nama" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -#, fuzzy -msgid "Validity" -msgstr "Kelembaban" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -#, fuzzy -msgid "Version" -msgstr "Versi Kontrol" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/is/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/is/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/is/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/is/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/is/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/is/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,447 +0,0 @@ -# Icelandic translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:475 -#, fuzzy -msgid "Common Name" -msgstr "Fullt nafn þitt:" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "Þú átt 1 nýtt skeyti." - -#: lib/Horde/Crypt/Pgp.php:1201 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "Þú átt 1 nýtt skeyti." - -#: lib/Horde/Crypt/Smime.php:330 -#, fuzzy -msgid "Could not S/MIME encrypt message." -msgstr "Senda skeyti" - -#: lib/Horde/Crypt/Smime.php:391 -#, fuzzy -msgid "Could not S/MIME sign message." -msgstr "Þú átt 1 nýtt skeyti." - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Gat ekki eytt skeytum frá %s: %s" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -#, fuzzy -msgid "Could not determine the recipient's e-mail address." -msgstr "Gat ekki eytt skeytum frá %s: %s" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "Póstmappa" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Netfang" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -#, fuzzy -msgid "Given Name" -msgstr "Skrárnafn" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Skeyti" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -#, fuzzy -msgid "Location" -msgstr "Aðgerð" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -#, fuzzy -msgid "Modulus" -msgstr "Eining" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nafn" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Aldrei" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Engin" - -#: lib/Horde/Crypt/Smime.php:549 -#, fuzzy -msgid "Not After" -msgstr "Ekki uppkast" - -#: lib/Horde/Crypt/Smime.php:548 -#, fuzzy -msgid "Not Before" -msgstr "Ekki uppkast" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "Valkostir notanda" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -#, fuzzy -msgid "PGP Digital Signature" -msgstr "Hafa undirskriftir með daufum lit?" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Lykilorð" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Ný skeyti" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -#, fuzzy -msgid "S/MIME Encrypted Message" -msgstr "Senda skeyti" - -#: lib/Horde/Crypt/Smime.php:611 -#, fuzzy -msgid "Serial Number" -msgstr "desember" - -#: lib/Horde/Crypt/Smime.php:622 -#, fuzzy -msgid "Signature" -msgstr "Undirskrift þín:" - -#: lib/Horde/Crypt/Smime.php:621 -#, fuzzy -msgid "Signature Algorithm" -msgstr "Undirskrift þín:" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "Sendandanetfang" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "Notandanafn" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -#, fuzzy -msgid "Version" -msgstr "Persónulegt" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -#, fuzzy -msgid "not yet implemented" -msgstr "Ekki eytt" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/it/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/it/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/it/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/it/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/it/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/it/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,437 +0,0 @@ -# Italian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s Fingerprint" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "E' necessaria una frase di cifratura per decifrare il messaggio." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" -"E' necessaria una chiave PGP pubblica per verificare un messaggio firmato." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Sono necessarie una chiave PGP pubblica, una chiave PGP privata e una frase " -"di cifratura per firmare un messaggio." - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "E' necessaria una chiave SMIME pubblica per cifrare un messaggio." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Sono necessarie una chiave S/MIME pubblica, una chiave S/MIME privata, e una " -"frase di cifratura per decifrare un messaggio." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Sono necessarie una chiave S/MIME pubblica, una chiave S/MIME privata, e una " -"frase di cifratura per decifrare un messaggio." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "CRL Punti di Ditribuzione" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Dettagli del Certificato" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Proprietario del Certificato" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Regole del Certificato" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Commento" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "Il tuo nome" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Connessione al keyserver pubblico rifiutata." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Connessione al keyserver pubblico rifiutata. Ragione: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "Impossibile cifrare il messaggio in modalità PGP: " - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "Impossibile inserire la firma PGP nel messaggio: " - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Impossibile cifrare il messaggio in modalita S/MIME." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Impossible inserire la firma S/MIME nel messaggio." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "Impossibile decifrare i dati PGP: " - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Impossibile decifrare dati S/MIME" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Impossibile determinare il destinatario dell'e-mail." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Impossibile ottenere la chiave pubblica per il keyserver." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Paese" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "Posta" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Indirizzo di Posta" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Data di Scadenza" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Esponente" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "Nome inserito" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Algoritmo Hash" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "emittente" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Creazione chiave" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Chiave impronta digitale" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "ID Chiave" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Lunghezza chiave" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Tipo chiave" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Utilizzo chiave" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Chiave già esistente nel server delle chiavi pubblico." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Luogo" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Messaggio verificato con successo ma il certificato della firma non può " -"essere verificato." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "Modulus" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nome" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "Netscape Base URL" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "Netscape CA Revocation URL" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "Netscape CA policy URL" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "Netscape Renewal URL" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "Netscape Revocation URL" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "Nome server SSL Netscape" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Commento certificato Netscape" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Tipo di certificato Netscape" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Mai" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Manca il percorso a OpenSSL binario. OpenSSL binario è necessario per " -"lavorare con dati PKCS 12." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Nessuno" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "Non dopo" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "Non Prima" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"Errore OpenSSL: impossibile estrarre dati dalla porzione S/MIME firmata." - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Organizzazione" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Unità organizzativa" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "Firma Digitale PGP" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "Dati criptati con PGP" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Chiave pubblica PGP" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "Dati firmati/criptati con PGP" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Password errata" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Chiave privata" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Chiave Pubblica" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Algoritmo di chiave pubblica" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "Informazioni chiave pubblica" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Coppia chiave pubblica/privata non generata." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "Chiave Pubblica RSA (%d bit)" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "Ottenuto messaggio di errore:" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "Chiave di Revoca non generata." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "Firma crittografica S/MIME" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "Messaggio criptato S/MIME" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Numero Seriale" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Firma" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "Algoritmo di cifratura" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Stato o provincia" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Indirizzo" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Cognome" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Numero di telefono" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Il supporto alla cifratura PGP è richiesto per verificare il messaggio " -"firmato." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Il modulo openssl è necessario per la classe Horde_Crypt_smime::" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "Impossibile estrarre i dettagli del certificato" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Sconosciuto" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Estensione non supportata" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "Validità" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "Verifica fallita - E' avvenuto un errore sconosciuto." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Verifica fallita - Questo messaggio può essere alterato" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Versione" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 Basic Constraints" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 Extended Key Usage" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Subject Alternative Name" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Subject Key Identifier" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "X509v3 extensions" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "non ancora implementato" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ja/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ja/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ja/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ja/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ja/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ja/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,369 +0,0 @@ -# Japanese translation for Horde. -# Copyright 2004-2013 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde package. -# Hiromi Kimura -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-07-16 21:24+0200\n" -"PO-Revision-Date: 2013-07-17 22:21+0900\n" -"Last-Translator: Hiromi Kimura \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 1.5.4\n" - -#: lib/Horde/Crypt/Pgp.php:1275 -msgid "A passphrase is required to decrypt a message." -msgstr "メッセージを復号するためにパスフレーズが必要です。" - -#: lib/Horde/Crypt/Pgp.php:1346 -msgid "A public PGP key is required to verify a signed message." -msgstr "PGP公開鍵が署名されたメッセージの検証に必要です。" - -#: lib/Horde/Crypt/Pgp.php:1206 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "PGP公開鍵、PGP秘密鍵およびパスフレーズがメッセージの署名に必要です。" - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "S/MIME公開鍵がメッセージの暗号化に必要です。" - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"S/MIME公開鍵、S/MIME秘密鍵およびパスフレーズが暗号化メッセージの復号に必要で" -"す。" - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"S/MIME公開鍵、S/MIME秘密鍵およびパスフレーズがメッセージの署名に必要です。" - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "CRL 配布ポイント" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "証明書の詳細" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "証明書の所有者" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "証明書ポリシー" - -#: lib/Horde/Crypt/Pgp.php:448 -msgid "Comment" -msgstr "コメント" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "一般名" - -#: lib/Horde/Crypt/Pgp.php:980 -msgid "Connection refused to the public keyserver." -msgstr "公開鍵サーバへの接続が拒否されました。" - -#: lib/Horde/Crypt/Pgp.php:991 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "公開鍵サーバへの接続が拒否されました。理由:%s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1174 -msgid "Could not PGP encrypt message: " -msgstr "メッセージの PGP 暗号化ができませんでした:" - -#: lib/Horde/Crypt/Pgp.php:1243 -msgid "Could not PGP sign message: " -msgstr "メッセージの PGP 署名ができませんでした:" - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "メッセージの S/MIME 暗号化ができませんでした。" - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "メッセージの S/MIME 署名ができませんでした。" - -#: lib/Horde/Crypt/Pgp.php:1314 -msgid "Could not decrypt PGP data: " -msgstr "PGP データの復号化ができませんでした:" - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "S/MIME データの復号化ができませんでした。" - -#: lib/Horde/Crypt/Pgp.php:673 -msgid "Could not determine the recipient's e-mail address." -msgstr "受信者の電子メールアドレスが確定できませんでした。" - -#: lib/Horde/Crypt/Pgp.php:774 lib/Horde/Crypt/Pgp.php:888 -msgid "Could not obtain public key from the keyserver." -msgstr "公開鍵を鍵サーバから取得できませんでした。" - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "国" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "説明" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "E-Mail" -msgstr "電子メール" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "電子メールアドレス" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "S/MIME 証明書の解析エラー:%s" - -#: lib/Horde/Crypt/Pgp.php:1623 lib/Horde/Crypt/Pgp.php:1631 -msgid "Error while talking to pgp binary." -msgstr "PGP プログラムとの通信中にエラーが起きました。" - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "SMIME プログラムとの通信中にエラーが起きました。" - -#: lib/Horde/Crypt/Pgp.php:446 -msgid "Expiration Date" -msgstr "有効期限" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "姓" - -#: lib/Horde/Crypt/Pgp.php:450 -msgid "Hash-Algorithm" -msgstr "ハッシュアルゴリズム" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "発行者" - -#: lib/Horde/Crypt/Pgp.php:445 -msgid "Key Creation" -msgstr "鍵作成日" - -#: lib/Horde/Crypt/Pgp.php:452 -msgid "Key Fingerprint" -msgstr "鍵指紋" - -#: lib/Horde/Crypt/Pgp.php:451 -msgid "Key ID" -msgstr "鍵 ID" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Key Length" -msgstr "鍵長" - -#: lib/Horde/Crypt/Pgp.php:444 -msgid "Key Type" -msgstr "鍵種" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "鍵の使用" - -#: lib/Horde/Crypt/Pgp.php:797 -msgid "Key already exists on the public keyserver." -msgstr "電子鍵がすでに公衆鍵サーバに存在します。" - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "場所" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "メッセージは検証できましたが、署名者の証明書は検証できませんでした。" - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "メッセージは正常に検証されました。" - -#: lib/Horde/Crypt/Pgp.php:443 -msgid "Name" -msgstr "名前" - -#: lib/Horde/Crypt/Pgp.php:475 -msgid "Never" -msgstr "なし" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"OpenSSL プログラムのパスが指定されていません。OpenSSL は PKCS 12 のデータを扱" -"うのに必要です。" - -#: lib/Horde/Crypt/Pgp.php:477 lib/Horde/Crypt/Pgp.php:478 -msgid "None" -msgstr "なし" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "これより前" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "これより後" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"OpenSSL エラー:S/MIME 署名されたパートからデータを取り出せませんでした。" - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "組織" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "部署" - -#: lib/Horde/Crypt/Pgp.php:1445 -msgid "PGP Digital Signature" -msgstr "PGP 電子署名" - -#: lib/Horde/Crypt/Pgp.php:1489 -msgid "PGP Encrypted Data" -msgstr "PGP 暗号文" - -#: lib/Horde/Crypt/Pgp.php:1550 -msgid "PGP Public Key" -msgstr "PGP 公開鍵" - -#: lib/Horde/Crypt/Pgp.php:1532 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP 署名済/暗号化データ" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "パスワードが正しくありません" - -#: lib/Horde/Crypt/Pgp.php:473 -msgid "Private Key" -msgstr "秘密鍵" - -#: lib/Horde/Crypt/Pgp.php:473 -msgid "Public Key" -msgstr "公開鍵" - -#: lib/Horde/Crypt/Pgp.php:243 -msgid "Public/Private keypair not generated successfully." -msgstr "公衆鍵/秘密鍵が生成できませんでした。" - -#: lib/Horde/Crypt/Pgp.php:245 -msgid "Returned error message:" -msgstr "返ってきたエラーメッセージ:" - -#: lib/Horde/Crypt/Pgp.php:1685 -msgid "Revocation key not generated successfully." -msgstr "失効鍵は生成できませんでした。" - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME 暗号文" - -#: lib/Horde/Crypt/Smime.php:204 -#, fuzzy -msgid "S/MIME Signature" -msgstr "S/MIME 暗号署名" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "通し番号" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "州または県" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "住所番地" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "姓" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "電話番号" - -#: lib/Horde/Crypt/Pgp.php:1350 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "電子署名されたメッセージを検証するには、PGP 署名が必要です。" - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Horde_Crypt_smime::クラスには openssl モジュールが必要です。" - -#: lib/Horde/Crypt/Pgp.php:479 lib/Horde/Crypt/Pgp.php:480 -#: lib/Horde/Crypt/Pgp.php:481 -msgid "Unknown" -msgstr "不明" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "有効性" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "検証失敗 - 予期しないエラーが発生しました。" - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "検証失敗 - このメッセージは改竄されているようです。" - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "バージョン" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 基本制限" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 鍵使用法" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 主体者の別名" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 主体者の鍵識別子" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "X509v3 拡張機能" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "まだ実装されていません" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/km/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/km/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/km/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/km/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/km/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/km/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,432 +0,0 @@ -# Khmer translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "សេចក្តី​​អធិប្បាយ" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "ឈ្មោះ​ធម្មតា" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "ប្រទេស" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "អ៊ីមែល" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "អាសយដ្ឋាន​អ៊ីមែល" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "អ៊ិចស្បូណង់សែល" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "នាមខ្លួន" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "អ្នក​ចេញ" - -#: lib/Horde/Crypt/Pgp.php:424 -#, fuzzy -msgid "Key Creation" -msgstr "ចំណងជើង" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "ប្រវែង​កូនសោ" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "ប្រភេទ​គ្រាប់​ចុច" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "សារ" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "ទីតាំង" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "ឈ្មោះ" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "កុំ" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "គ្មាន" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "ការ​គ្រប់​គ្រង" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -#, fuzzy -msgid "PGP Digital Signature" -msgstr "ហត្ថលេខា" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -#, fuzzy -msgid "PGP Public Key" -msgstr "កូនសោ​សាធារណៈ" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "ពាក្យ​សម្ងាត់" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "កូនសោ​សាធារណៈ" - -#: lib/Horde/Crypt/Smime.php:554 -#, fuzzy -msgid "Public Key Algorithm" -msgstr "កូនសោ​សាធារណៈ" - -#: lib/Horde/Crypt/Smime.php:553 -#, fuzzy -msgid "Public Key Info" -msgstr "កូនសោ​សាធារណៈ" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, fuzzy, php-format -msgid "RSA Public Key (%d bit)" -msgstr "កូនសោ​សាធារណៈ" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "លេខ​សម្គាល់" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "ហត្ថលេខា" - -#: lib/Horde/Crypt/Smime.php:621 -#, fuzzy -msgid "Signature Algorithm" -msgstr "ហត្ថលេខា" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "អាសយដ្ឋាន​ផ្ទះ" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "ស៊ូរីណាមី" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "លេខ​ទូរស័ព្ទ" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "មិន​ស្គាល់" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "សុពលភាព" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "កំណែ" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ko/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ko/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ko/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ko/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ko/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ko/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,369 +0,0 @@ -# Korean translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -# Deokgon Kim , 2014 -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2014-03-13 11:19+0900\n" -"PO-Revision-Date: 2014-03-13 13:00+0200\n" -"Last-Translator: Deokgon Kim \n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: lib/Horde/Crypt/Pgp.php:1086 -msgid "A passphrase is required to decrypt a message." -msgstr "비밀번호를 입력하여야 복호화할 수 있습니다." - -#: lib/Horde/Crypt/Pgp.php:1157 -msgid "A public PGP key is required to verify a signed message." -msgstr "PGP 공개키를 가지고 있어야 검증할 수 있습니다." - -#: lib/Horde/Crypt/Pgp.php:1017 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "PGP서명을 하기 위해서는 PGP 공개키, 개인키, 비밀번호가 있어야합니다." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "S/MIME 공개 인증서가 있어야 암호화할 수 있습니다." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "S/MIME 공개키, 개인키, 비밀번호가 있어야 복호화할 수 있습니다." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "S/MIME 공개키, 개인키, 비밀번호가 있어야 전자서명할 수 있습니다." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "인증서폐기목록(CRL) 게시위치" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "인증서 정보" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "인증서 소유자" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "인증서 정책" - -#: lib/Horde/Crypt/Pgp.php:417 -msgid "Comment" -msgstr "비고" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "이름(CN)" - -#: lib/Horde/Crypt/Pgp.php:985 -msgid "Could not PGP encrypt message: " -msgstr "PGP 암호화를 실패했습니다." - -#: lib/Horde/Crypt/Pgp.php:1054 -msgid "Could not PGP sign message: " -msgstr "PGP 전자서명을 실패했습니다." - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "S/MIME 암호화를 실패했습니다." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "S/MIME 전자서명을 실패했습니다." - -#: lib/Horde/Crypt/Pgp.php:1125 -msgid "Could not decrypt PGP data: " -msgstr "PGP 복호화를 실패했습니다." - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "S/MIME 복호화를 실패했습니다." - -#: lib/Horde/Crypt/Pgp.php:644 -msgid "Could not determine the recipient's e-mail address." -msgstr "수신자의 이메일 주소를 확인할 수 없습니다." - -#: lib/Horde/Crypt/Pgp/Keyserver.php:101 lib/Horde/Crypt/Pgp/Keyserver.php:219 -msgid "Could not obtain public key from the keyserver." -msgstr "키서버에서 공개키를 받지 못했습니다." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "국가(C)" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "설명" - -#: lib/Horde/Crypt/Pgp.php:418 -msgid "E-Mail" -msgstr "이메일" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "이메일 주소(E)" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "S/MIME 인증서를 분석하지 못했습니다: %s" - -#: lib/Horde/Crypt/Pgp.php:1453 lib/Horde/Crypt/Pgp.php:1461 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:415 -msgid "Expiration Date" -msgstr "만료날짜" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "이름" - -#: lib/Horde/Crypt/Pgp.php:419 -msgid "Hash-Algorithm" -msgstr "해시알고리즘:" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "인증기관" - -#: lib/Horde/Crypt/Pgp.php:414 -#, fuzzy -msgid "Key Creation" -msgstr "%s 유지관리 작업 - 확인" - -#: lib/Horde/Crypt/Pgp.php:421 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:420 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:416 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:413 -#, fuzzy -msgid "Key Type" -msgstr "파일 유형" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "키 사용" - -#: lib/Horde/Crypt/Pgp/Keyserver.php:137 -#, fuzzy -msgid "Key already exists on the public keyserver." -msgstr "ftp 서버 연결 오류." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "위치" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"전자서명이 검증되었습니다. 하지만 서명자 인증서를 검증하지 못하였습니다." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "전자서명과 서명자인증서를 정상적으로 검증하였습니다." - -#: lib/Horde/Crypt/Pgp.php:412 -msgid "Name" -msgstr "이름" - -#: lib/Horde/Crypt/Pgp.php:444 -msgid "Never" -msgstr "사용안함" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:446 lib/Horde/Crypt/Pgp.php:447 -msgid "None" -msgstr "선택하지 않음" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "종료" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "시작" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "단체(O)" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "소속부서(OU)" - -#: lib/Horde/Crypt/Pgp.php:1275 -#, fuzzy -msgid "PGP Digital Signature" -msgstr "서명:" - -#: lib/Horde/Crypt/Pgp.php:1319 -#, fuzzy -msgid "PGP Encrypted Data" -msgstr "편지로 가기" - -#: lib/Horde/Crypt/Pgp.php:1380 -#, fuzzy -msgid "PGP Public Key" -msgstr "전체 이름:" - -#: lib/Horde/Crypt/Pgp.php:1362 -#, fuzzy -msgid "PGP Signed/Encrypted Data" -msgstr "편지 전송" - -#: lib/Horde/Crypt/Smime.php:726 -#, fuzzy -msgid "Password incorrect" -msgstr "암호" - -#: lib/Horde/Crypt/Pgp.php:442 -#, fuzzy -msgid "Private Key" -msgstr "전체 이름:" - -#: lib/Horde/Crypt/Pgp.php:442 -#, fuzzy -msgid "Public Key" -msgstr "전체 이름:" - -#: lib/Horde/Crypt/Pgp.php:212 -#, fuzzy -msgid "Public/Private keypair not generated successfully." -msgstr "편지가 성공적으로 전달되었습니다." - -#: lib/Horde/Crypt/Pgp.php:214 -#, fuzzy -msgid "Returned error message:" -msgstr "새 메일" - -#: lib/Horde/Crypt/Smime.php:238 -#, fuzzy -msgid "S/MIME Encrypted Message" -msgstr "메시지 전송" - -#: lib/Horde/Crypt/Smime.php:204 -#, fuzzy -msgid "S/MIME Signature" -msgstr "S/MIME 전자서명" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "일련번호" - -#: lib/Horde/Crypt/Smime.php:452 -#, fuzzy -msgid "State or Province" -msgstr "시/도" - -#: lib/Horde/Crypt/Smime.php:454 -#, fuzzy -msgid "Street Address" -msgstr "직장 주소" - -#: lib/Horde/Crypt/Smime.php:456 -#, fuzzy -msgid "Surname" -msgstr "이름" - -#: lib/Horde/Crypt/Smime.php:455 -#, fuzzy -msgid "Telephone Number" -msgstr "숫자" - -#: lib/Horde/Crypt/Pgp.php:1161 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:448 lib/Horde/Crypt/Pgp.php:449 -#: lib/Horde/Crypt/Pgp.php:450 -msgid "Unknown" -msgstr "알수 없슴" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "유효기간" - -#: lib/Horde/Crypt/Smime.php:138 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "치명적인 오류 발생:" - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "버전" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 기본 제약사항" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 인증서 주체 대체이름" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 인증서 주체키 식별자" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "X509v3 인증서 확장정보" - -#: lib/Horde/Crypt/Smime.php:605 -#, fuzzy -msgid "not yet implemented" -msgstr "삭제되지 않은 메일" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/lt/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/lt/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/lt/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/lt/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/lt/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/lt/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,437 +0,0 @@ -# Lithuanian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Vilius Šumskas , 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2011-05-28 01:09+0300\n" -"PO-Revision-Date: 2011-06-27 22:57+0300\n" -"Last-Translator: Vilius Šumskas \n" -"Language-Team: Lithuanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" - -#: lib/Horde/Crypt/Smime.php:621 -#, php-format -msgid "%s Fingerprint" -msgstr "%s antspaudas" - -#: lib/Horde/Crypt/Pgp.php:1237 -msgid "A passphrase is required to decrypt a message." -msgstr "Norėdami atkoduoti laišką privalote žinoti slaptąją frazę." - -#: lib/Horde/Crypt/Pgp.php:1304 -msgid "A public PGP key is required to verify a signed message." -msgstr "" -"Norėdami patikrinti pasirašytą laišką privalote turėti viešąjį PGP raktą." - -#: lib/Horde/Crypt/Pgp.php:1168 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Norėdami pasirašyti laišką privalote turėti viešąjį ir slaptąjį PGP raktus, " -"bei žinoti slaptąją frazę." - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Norėdami užkoduoti laišką privalote turėti viešąjį S/MIME raktą." - -#: lib/Horde/Crypt/Smime.php:429 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Norėdami atkoduoti laišką privalote turėti viešąjį ir slaptąjį S/MIME " -"raktus, bei žinoti slaptąją frazę." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Norėdami pasirašyti laišką privalote turėti viešąjį ir slaptąjį S/MIME " -"raktus, bei žinoti slaptąją frazę." - -#: lib/Horde/Crypt/Smime.php:513 -msgid "CRL Distribution Points" -msgstr "CRL paskirstymo punktai" - -#: lib/Horde/Crypt/Smime.php:616 -msgid "Certificate Details" -msgstr "Sertifikato detalės" - -#: lib/Horde/Crypt/Smime.php:527 -msgid "Certificate Owner" -msgstr "Sertifikato savininkas" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Certificate Policies" -msgstr "Sertifikato teisės" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Komentaras" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Common Name" -msgstr "Vardas/pavardė" - -#: lib/Horde/Crypt/Pgp.php:943 -msgid "Connection refused to the public keyserver." -msgstr "Prisijungti prie viešųjų raktų serverio nepavyko." - -#: lib/Horde/Crypt/Pgp.php:954 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Prisijungti prie viešųjų raktų serverio nepavyko, nes: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1136 -msgid "Could not PGP encrypt message: " -msgstr "Nepavyko užkoduoti PGP laiško: " - -#: lib/Horde/Crypt/Pgp.php:1205 -msgid "Could not PGP sign message: " -msgstr "Nepavyko pasirašyti PGP laiško: " - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Nepavyko užkoduoti S/MIME laiško." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Nepavyko pasirašyti S/MIME laiško." - -#: lib/Horde/Crypt/Pgp.php:1273 -msgid "Could not decrypt PGP data: " -msgstr "Nepavyko atkoduoti PGP duomenų: " - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Could not decrypt S/MIME data." -msgstr "Nepavyko atkoduoti S/MIME duomenų." - -#: lib/Horde/Crypt/Pgp.php:657 -msgid "Could not determine the recipient's e-mail address." -msgstr "Nepavyko nustatyti gavėjo el. pašto adreso." - -#: lib/Horde/Crypt/Pgp.php:758 lib/Horde/Crypt/Pgp.php:851 -msgid "Could not obtain public key from the keyserver." -msgstr "Nepavyko gauti viešojo rakto iš raktų serverio." - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Country" -msgstr "Valstybė" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "El. pašto adresas" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Email Address" -msgstr "El. pašto adresas" - -#: lib/Horde/Crypt/Pgp.php:1579 lib/Horde/Crypt/Pgp.php:1587 -msgid "Error while talking to pgp binary." -msgstr "Klaida paleidžiant pgp programa." - -#: lib/Horde/Crypt/Smime.php:1245 lib/Horde/Crypt/Smime.php:1263 -#: lib/Horde/Crypt/Smime.php:1278 -msgid "Error while talking to smime binary." -msgstr "Klaida paleidžiant smime programą." - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Galiojimo data" - -#: lib/Horde/Crypt/Smime.php:593 -msgid "Exponent" -msgstr "Eksponentė" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Given Name" -msgstr "Vardas" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hash-Algoritmas" - -#: lib/Horde/Crypt/Smime.php:541 -msgid "Issuer" -msgstr "Išdavėjas" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Rakto kūrimas" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Rakto atspaudas" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "Rakto ID" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Rakto ilgis" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Rakto tipas" - -#: lib/Horde/Crypt/Smime.php:514 -msgid "Key Usage" -msgstr "Rakto panaudojimas" - -#: lib/Horde/Crypt/Pgp.php:781 -msgid "Key already exists on the public keyserver." -msgstr "Raktas jau yra viešųjų raktų serveryje." - -#: lib/Horde/Crypt/Smime.php:487 -msgid "Location" -msgstr "Vieta" - -#: lib/Horde/Crypt/Smime.php:192 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Laiškas pavirtintas, tačiau nepatvirtintas pasirašiusio asmens sertifikatas." - -#: lib/Horde/Crypt/Smime.php:180 -msgid "Message verified successfully." -msgstr "Laiškas patvirtintas sėkmingai." - -#: lib/Horde/Crypt/Smime.php:590 -msgid "Modulus" -msgstr "Modulis" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Vardas" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Netscape Base URL" -msgstr "Netscpape bazinis URL" - -#: lib/Horde/Crypt/Smime.php:499 -msgid "Netscape CA Revocation URL" -msgstr "Netscpae serifikato atšaukimo URL" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "Netscape CA policy URL" -msgstr "Netscpae sertifikato teisių URL" - -#: lib/Horde/Crypt/Smime.php:500 -msgid "Netscape Renewal URL" -msgstr "Netscape atnaujinomo URL" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Netscape Revocation URL" -msgstr "Netscape atšaukimo URL" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "Netscape SSL server name" -msgstr "Netscape SSL serverio vardas" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "Netscape certificate comment" -msgstr "Netscape sertifikato aprašymas" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate type" -msgstr "Netscape sertifikato tipas" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Niekada" - -#: lib/Horde/Crypt/Smime.php:1211 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Neįvestas kelias iki OpenSSL pagrindinių failų. OpenSSL reikalinga darbui su " -"PKCS 12 duomenimis." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Nenurodyta" - -#: lib/Horde/Crypt/Smime.php:556 -msgid "Not After" -msgstr "Ne po to" - -#: lib/Horde/Crypt/Smime.php:555 -msgid "Not Before" -msgstr "Ne prieš tai" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OpenSSL klaida: nepavyko gauti duomenų iš pasirašytos S/MIME dalies." - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Organisation" -msgstr "Organizacija" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Organisational Unit" -msgstr "Padalinys" - -#: lib/Horde/Crypt/Pgp.php:1401 -msgid "PGP Digital Signature" -msgstr "PGP skaitmeninis parašas" - -#: lib/Horde/Crypt/Pgp.php:1445 -msgid "PGP Encrypted Data" -msgstr "PGP užkoduota informacija" - -#: lib/Horde/Crypt/Pgp.php:1506 -msgid "PGP Public Key" -msgstr "PGP viešasis raktas" - -#: lib/Horde/Crypt/Pgp.php:1488 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP pasirašyti/užkoduoti duomenys" - -#: lib/Horde/Crypt/Smime.php:1250 -msgid "Password incorrect" -msgstr "Slaptažodis neteisingas" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Slaptasis raktas" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Viešasis raktas" - -#: lib/Horde/Crypt/Smime.php:561 -msgid "Public Key Algorithm" -msgstr "Viešojo rakto algoritmas" - -#: lib/Horde/Crypt/Smime.php:560 -msgid "Public Key Info" -msgstr "Informacija apie viešąjį raktą" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Viešojo/slaptojo raktų pora nesugeneruota." - -#: lib/Horde/Crypt/Smime.php:579 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA viešasis raktas (%d bitai)" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "Klaidos pranešimas:" - -#: lib/Horde/Crypt/Pgp.php:1639 -msgid "Revocation key not generated successfully." -msgstr "Atšaukimo raktas nesugeneruotas." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME parašas" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME užkoduotas laiškas" - -#: lib/Horde/Crypt/Smime.php:618 -msgid "Serial Number" -msgstr "Serijos numeris" - -#: lib/Horde/Crypt/Smime.php:625 -msgid "Signature" -msgstr "Parašas" - -#: lib/Horde/Crypt/Smime.php:624 -msgid "Signature Algorithm" -msgstr "Parašo algoritmas" - -#: lib/Horde/Crypt/Smime.php:486 -msgid "State or Province" -msgstr "Rajonas arba provincija" - -#: lib/Horde/Crypt/Smime.php:488 -msgid "Street Address" -msgstr "Gatvės adresas" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Surname" -msgstr "Pavardė" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Telephone Number" -msgstr "Telefono numeris" - -#: lib/Horde/Crypt/Pgp.php:1308 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "Norėdami patikrinti laišką privalote turėti atskirą PGP parašo bloką." - -#: lib/Horde/Crypt/Smime.php:1140 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Horde_Crypt_Smime:: klasei reikalingas openssl modulis." - -#: lib/Horde/Crypt/Smime.php:519 -msgid "Unable to extract certificate details" -msgstr "Nepavyko gauti sertifikato aprašymo" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Nežinomas" - -#: lib/Horde/Crypt/Smime.php:603 lib/Horde/Crypt/Smime.php:847 -#: lib/Horde/Crypt/Smime.php:853 -msgid "Unsupported Extension" -msgstr "Plėtinys nepalaikomas" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Validity" -msgstr "Galiojimas" - -#: lib/Horde/Crypt/Smime.php:187 -msgid "Verification failed - an unknown error has occurred." -msgstr "Patvirtinimas nebaigtas - įvyko nežinoma klaida." - -#: lib/Horde/Crypt/Smime.php:189 -msgid "Verification failed - this message may have been tampered with." -msgstr "Patvirtinimas nebaigtas - šis laiškas sugadintas." - -#: lib/Horde/Crypt/Smime.php:617 -msgid "Version" -msgstr "Versija" - -#: lib/Horde/Crypt/Smime.php:509 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 pagrindiniai nustatymai" - -#: lib/Horde/Crypt/Smime.php:508 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 išplėsto rakto panaudojimas" - -#: lib/Horde/Crypt/Smime.php:510 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 alternatyvus vardas" - -#: lib/Horde/Crypt/Smime.php:511 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 rakto identifikatorius" - -#: lib/Horde/Crypt/Smime.php:599 -msgid "X509v3 extensions" -msgstr "X509v3 moduliai" - -#: lib/Horde/Crypt/Smime.php:1129 -msgid "not yet implemented" -msgstr "dar nerealizuota" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/lv/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/lv/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/lv/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/lv/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/lv/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/lv/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,445 +0,0 @@ -# Latvian translations for Horde_Crypt package. -# Copyright 2011-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt package. -# Automatically generated, 2011. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2011-03-15 13:27+0100\n" -"PO-Revision-Date: 2011-10-16 15:21+0300\n" -"Last-Translator: Jānis Eisaks \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: lv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2);\n" -"X-Poedit-Language: Latvian\n" -"X-Poedit-Country: LATVIA\n" -"X-Poedit-SourceCharset: utf-8\n" - -#: lib/Horde/Crypt/Smime.php:621 -#, php-format -msgid "%s Fingerprint" -msgstr "%s Pirkstu nospiedums" - -#: lib/Horde/Crypt/Pgp.php:1237 -msgid "A passphrase is required to decrypt a message." -msgstr "Vēstules atšifrēšanai nepieciešama parole." - -#: lib/Horde/Crypt/Pgp.php:1304 -msgid "A public PGP key is required to verify a signed message." -msgstr "Vēstules verificēšanai nepieciešama publiskā PGP atslēga." - -#: lib/Horde/Crypt/Pgp.php:1168 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Vēstules parakstīšanai nepieciešamas publiskā un privātā PGP atslēgas un " -"parole." - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Vēstules šifrēšanai nepieciešama publiskā S/MIME atslēga." - -#: lib/Horde/Crypt/Smime.php:429 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Vēstules atšifrēšanai nepieciešamas publiskā un privātā S/MIME atslēgas un " -"parole." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Vēstules parakstīšanai nepieciešamas publiskā un privātā S/MIME atslēgas un " -"parole." - -#: lib/Horde/Crypt/Smime.php:513 -msgid "CRL Distribution Points" -msgstr "CLR apmaiņas punkti" - -#: lib/Horde/Crypt/Smime.php:616 -msgid "Certificate Details" -msgstr "Sertifikāta detaļas" - -#: lib/Horde/Crypt/Smime.php:527 -msgid "Certificate Owner" -msgstr "Sertifikāta īpašnieks" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Certificate Policies" -msgstr "Sertifikāta politikas" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Komentārs" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Common Name" -msgstr "Kopējais nosaukums" - -#: lib/Horde/Crypt/Pgp.php:943 -msgid "Connection refused to the public keyserver." -msgstr "Pieslēgums publiskajam atslēgu serverim atteikts." - -#: lib/Horde/Crypt/Pgp.php:954 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Pieslēgums publiskajam atslēgu serverim atteikts. Iemesls: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1136 -msgid "Could not PGP encrypt message: " -msgstr "Nav iespējams šifrēt vēstuli ar PGP:" - -#: lib/Horde/Crypt/Pgp.php:1205 -msgid "Could not PGP sign message: " -msgstr "Nav iespējams parakstīt vēstuli ar PGP:" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Nav iespējams šifrēt vēstuli ar S/MIME." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Nav iespējams parakstīt vēstuli ar S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1273 -msgid "Could not decrypt PGP data: " -msgstr "Nav iespējams atšifrēt PGP datus:" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Could not decrypt S/MIME data." -msgstr "Nav iespējams atšifrēt S/MIME datus." - -#: lib/Horde/Crypt/Pgp.php:657 -msgid "Could not determine the recipient's e-mail address." -msgstr "Nevar noteikt saņēmēja e-pasta adresi." - -#: lib/Horde/Crypt/Pgp.php:758 lib/Horde/Crypt/Pgp.php:851 -msgid "Could not obtain public key from the keyserver." -msgstr "Nav iespējams saņemt publisko atslēgu no atslēgu servera." - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Country" -msgstr "Valsts" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "E-Pasts" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Email Address" -msgstr "E-pasta adrese" - -#: lib/Horde/Crypt/Pgp.php:1579 lib/Horde/Crypt/Pgp.php:1587 -msgid "Error while talking to pgp binary." -msgstr "PGP programmatūras kļūda." - -#: lib/Horde/Crypt/Smime.php:1245 lib/Horde/Crypt/Smime.php:1263 -#: lib/Horde/Crypt/Smime.php:1278 -msgid "Error while talking to smime binary." -msgstr "SMIME programmatūras kļūda." - -# #-#-#-#-# nag.po (Nag 2.1.4) #-#-#-#-# -# -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Beigu datums" - -#: lib/Horde/Crypt/Smime.php:593 -msgid "Exponent" -msgstr "Eksponente" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Given Name" -msgstr "Vārds" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hash-algoritms" - -#: lib/Horde/Crypt/Smime.php:541 -msgid "Issuer" -msgstr "Izsniedzējs" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Atslēgas radīšana" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Atslēgas pirkstu nospiedums" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "Atslēgas ID" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Atslēgas garums" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Atslēgas tips" - -#: lib/Horde/Crypt/Smime.php:514 -msgid "Key Usage" -msgstr "Atslēgas lietošana" - -#: lib/Horde/Crypt/Pgp.php:781 -msgid "Key already exists on the public keyserver." -msgstr "Atslēga jau eksistē uz publiskā atslēgu servera." - -#: lib/Horde/Crypt/Smime.php:487 -msgid "Location" -msgstr "Vieta" - -#: lib/Horde/Crypt/Smime.php:192 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Vēstule veiksmīgi verificēta, taču parakstītāja sertifikāts nav verificējams." - -#: lib/Horde/Crypt/Smime.php:180 -msgid "Message verified successfully." -msgstr "Vēstule veiksmīgi verificēta." - -#: lib/Horde/Crypt/Smime.php:590 -msgid "Modulus" -msgstr "Modulis" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nosaukums" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Netscape Base URL" -msgstr "Netscape bāzes URL" - -#: lib/Horde/Crypt/Smime.php:499 -msgid "Netscape CA Revocation URL" -msgstr "Netscape CA atsaukšanas URL" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "Netscape CA policy URL" -msgstr "Netscape CA politikas URL" - -#: lib/Horde/Crypt/Smime.php:500 -msgid "Netscape Renewal URL" -msgstr "Netscape atjaunošanas URL" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Netscape Revocation URL" -msgstr "Netscape atsaukšanas URL" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "Netscape SSL server name" -msgstr "Netscape SSL servera vārds" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "Netscape certificate comment" -msgstr "Netscape sertifikāta komentārs" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate type" -msgstr "Netscape sertifikāta tips" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Nekad" - -#: lib/Horde/Crypt/Smime.php:1211 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Nav norādīts ceļš līdz OpenSSL programmai. Tā ir nepieciešama darbībām ar " -"PKCS 12 datiem." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Nekas" - -#: lib/Horde/Crypt/Smime.php:556 -msgid "Not After" -msgstr "Ne vēlāk ka" - -#: lib/Horde/Crypt/Smime.php:555 -msgid "Not Before" -msgstr "Ne agrāk kā" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OpenSSL kļūda: nav iespējams ekstraģēt datus no S/MIME daļa." - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Organisation" -msgstr "Organizācija" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Organisational Unit" -msgstr "Organizācija vienība" - -#: lib/Horde/Crypt/Pgp.php:1401 -msgid "PGP Digital Signature" -msgstr "PGP digitālais paraksts" - -#: lib/Horde/Crypt/Pgp.php:1445 -msgid "PGP Encrypted Data" -msgstr "PGP šifrēti dati" - -#: lib/Horde/Crypt/Pgp.php:1506 -msgid "PGP Public Key" -msgstr "PGP publiskā atslēga" - -#: lib/Horde/Crypt/Pgp.php:1488 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP šifrēti/parakstīti dati" - -#: lib/Horde/Crypt/Smime.php:1250 -msgid "Password incorrect" -msgstr "Nepareiza parole" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Privātā atslēga" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Publiskā atslēga" - -#: lib/Horde/Crypt/Smime.php:561 -msgid "Public Key Algorithm" -msgstr "Publiskās atslēgas algoritms" - -#: lib/Horde/Crypt/Smime.php:560 -msgid "Public Key Info" -msgstr "Publiskā atslēgas informācija" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Publiskās/privātās atslēgu pāra ģenerēšana nav izdevusies." - -#: lib/Horde/Crypt/Smime.php:579 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA publiskā atslēga (%d biti)" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "Saņemtais kļūdas paziņojums:" - -#: lib/Horde/Crypt/Pgp.php:1639 -msgid "Revocation key not generated successfully." -msgstr "Atsaukšanas atslēgas ģenerēšana nav izdevusies." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME kriptogrāfiskais paraksts" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME šifrēta vēstule" - -#: lib/Horde/Crypt/Smime.php:618 -msgid "Serial Number" -msgstr "Sērijas numurs" - -#: lib/Horde/Crypt/Smime.php:625 -msgid "Signature" -msgstr "Paraksts" - -#: lib/Horde/Crypt/Smime.php:624 -msgid "Signature Algorithm" -msgstr "Paraksta algoritms" - -#: lib/Horde/Crypt/Smime.php:486 -msgid "State or Province" -msgstr "Valsts vai province" - -#: lib/Horde/Crypt/Smime.php:488 -msgid "Street Address" -msgstr "Iela" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Surname" -msgstr "Uzvārds" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Telephone Number" -msgstr "Tālruņa numurs" - -#: lib/Horde/Crypt/Pgp.php:1308 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Lai verificētu parakstīto vēstuli, ir nepieciešams nodalīts PGP paraksta " -"bloks." - -#: lib/Horde/Crypt/Smime.php:1140 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Horde_Crypt_Smime:: class ir nepieciešams openssl modulis." - -#: lib/Horde/Crypt/Smime.php:519 -msgid "Unable to extract certificate details" -msgstr "Nevar ekstraģēt sertifikāta detaļas" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Nezināms" - -#: lib/Horde/Crypt/Smime.php:603 lib/Horde/Crypt/Smime.php:847 -#: lib/Horde/Crypt/Smime.php:853 -msgid "Unsupported Extension" -msgstr "Neatbalstīts paplašinājums" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Validity" -msgstr "Derīgums" - -#: lib/Horde/Crypt/Smime.php:187 -msgid "Verification failed - an unknown error has occurred." -msgstr "Verifikācija kļūme - nezināma kļūda." - -#: lib/Horde/Crypt/Smime.php:189 -msgid "Verification failed - this message may have been tampered with." -msgstr "" -"Verifikācija neveiksmīga - iespējama ārēja iejaukšanās vēstules tekstā." - -#: lib/Horde/Crypt/Smime.php:617 -msgid "Version" -msgstr "Versija" - -#: lib/Horde/Crypt/Smime.php:509 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 Pamatierobežojumi" - -#: lib/Horde/Crypt/Smime.php:508 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 Extended Key lietojums" - -#: lib/Horde/Crypt/Smime.php:510 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Subject alternatīvais vārds" - -#: lib/Horde/Crypt/Smime.php:511 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Subject Key identifikators" - -#: lib/Horde/Crypt/Smime.php:599 -msgid "X509v3 extensions" -msgstr "X509v3 paplašinājumi" - -#: lib/Horde/Crypt/Smime.php:1129 -msgid "not yet implemented" -msgstr "vēl nav ieviests" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/mk/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/mk/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/mk/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/mk/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/mk/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/mk/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,428 +0,0 @@ -# Macedonian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "Пошта" - -#: lib/Horde/Crypt/Smime.php:474 -#, fuzzy -msgid "Email Address" -msgstr "Ваша Email адреса:" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Порака" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Име" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "Администрација" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Лозинка" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "Домашна адреса:" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "Корисничко име" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nb/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nb/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nb/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nb/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nb/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nb/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,445 +0,0 @@ -# Norwegian Bokmal translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s fingeravtrykk" - -#: lib/Horde/Crypt/Pgp.php:1240 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "En offentlig PGP-nøkkel er påkrevd for å kryptere meldingen." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" -"En offentlig PGP-nøkkel er påkrevd for å verifisere en signert melding." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"En offentlig PGP-nøkkel, privat PGP-nøkkel og passord er påkrevd for å " -"signere en melding." - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "En offentlig S/MIME-nøkkel er påkrevd for å kryptere en melding." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"En offentlig S/MIME-nøkkel, privat S/MIME-nøkkel, og passord er påkrevd for " -"å dekryptere en melding." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"En offentlig S/MIME-nøkkel, privat S/MIME-nøkkel, og passord er påkrevd for " -"å signere en melding." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "CRL-distribusjonspunkter" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Detaljer for sertifikatet" - -#: lib/Horde/Crypt/Smime.php:520 -#, fuzzy -msgid "Certificate Owner" -msgstr "Detaljer for sertifikatet" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Rettningslinjer for sertifikatet" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Kommentar" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "Navn" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Koblingen til offentlig nøkkeltjeneren feilet." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Koblingen til offentlig nøkkeltjeneren feilet. Årsak: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "Kunne ikke kryptere melding med PGP" - -#: lib/Horde/Crypt/Pgp.php:1201 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "Kunne ikke signere melding med PGP" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Kunne ikke kryptere meldingen med S/MIME." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Kunne ikke signere meldingen med S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Kunne ikke dekryptere PGP-melding." - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Kunne ikke dekryptere S/MIME melding." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Kunne ikke finne mottakers e-postadresse." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Kunne ikke hente ut offentlig nøkkel fra nøkkeltjeneren." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Land" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "E-post" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "E-postadresse" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Utløpsdato" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Eksponent" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "Gitt navn" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hash-algoritme" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Utgiver" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Nøkkelgenerering" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Nøkkelfingeravtrykk" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Nøkkellengde" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Nøkkeltype" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Nøkkelbruk" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Nøkkel eksisterer allerede på offentlig nøkkeltjeneren." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Lokasjon" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Meldingen ble verifisert, men sertifikatet til den som signerte ble ikke " -"verifisert." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "Modulus" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Navn" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Aldri" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Ingen" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "Ikke etter" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "Ikke før" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Organisasjon" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Organisasjonsenhet" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "PGP digital signatur" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "PGP-krypter melding" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "PGP offentlig nøkkel" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP signert/kryptert data" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Feil passord" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Privat nøkkel" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Offentlig nøkkel" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Offentlig nøkkelalgoritme" - -#: lib/Horde/Crypt/Smime.php:553 -#, fuzzy -msgid "Public Key Info" -msgstr "Offentlig nøkkel" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Offentlig/privat nøkkelpar ble ikke generert." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA offentlig nøkkel (%d bit)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Les meldinger" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "Offentlig/privat nøkkelpar ble ikke generert." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME-kryptert melding" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Serienummer" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Signatur" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "Signaturalgoritme" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Stat eller provins" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Gateadresse" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Etternavn" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Telefonnummer" - -#: lib/Horde/Crypt/Pgp.php:1311 -#, fuzzy -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"En offentlig PGP-nøkkel er påkrevd for å verifisere en signert melding." - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -#, fuzzy -msgid "Unable to extract certificate details" -msgstr "Detaljer for sertifikatet" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Ukjent" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -#, fuzzy -msgid "Validity" -msgstr "Fuktighet" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "En fatal feil har oppstått" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Versjon" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "ikke enda implementert" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nl/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nl/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nl/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nl/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nl/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nl/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,378 +0,0 @@ -# Dutch translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# -# Arjen de Korte , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2012-10-26 23:07+0200\n" -"PO-Revision-Date: 2012-11-30 09:53+0100\n" -"Last-Translator: Arjen de Korte \n" -"Language-Team: American English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Language: en_US\n" -"X-Generator: Lokalize 1.4\n" - -#: lib/Horde/Crypt/Pgp.php:1272 -msgid "A passphrase is required to decrypt a message." -msgstr "Een wachtwoord is nodig om een bericht te ontcijferen." - -#: lib/Horde/Crypt/Pgp.php:1343 -msgid "A public PGP key is required to verify a signed message." -msgstr "" -"Een openbare PGP sleutel is benodigd om een ondertekend bericht te " -"verifieren." - -#: lib/Horde/Crypt/Pgp.php:1203 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Een openbare PGP sleutel, privé PGP sleutel en wachtwoord zijn nodig om een " -"bericht te ondertekenen." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" -"Een openbare S/MIME sleutel is benodigd om een bericht te versleutelen." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Een openbare S/MIME sleutel, privé S/MIME sleutel en wachtwoord zijn nodig " -"om een bericht te ontcijferen." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Een openbare S/MIME sleutel, privé S/MIME sleutel en wachtwoord zijn nodig " -"om een bericht te ondertekenen." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "CRL distributie punten" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "Certificaat gegevens" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "Certificaat eigenaar" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Certificaat richtlijnen" - -#: lib/Horde/Crypt/Pgp.php:436 -msgid "Comment" -msgstr "Opmerking" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Algemene naam" - -#: lib/Horde/Crypt/Pgp.php:978 -msgid "Connection refused to the public keyserver." -msgstr "Verbinding met openbare sleutel server geweigerd." - -#: lib/Horde/Crypt/Pgp.php:989 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Verbinding met openbare sleutel server geweigerd. Reden: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1171 -msgid "Could not PGP encrypt message: " -msgstr "Kon bericht niet versleutelen met PGP." - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "Could not PGP sign message: " -msgstr "Kon bericht niet ondertekenen met PGP." - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "Kon bericht niet versleutelen met S/MIME." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "Kon bericht niet ondertekenen met S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "Could not decrypt PGP data: " -msgstr "Kon PGP gegevens niet ontcijferen:" - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "Kon de S/MIME gegevens niet ontcijferen." - -#: lib/Horde/Crypt/Pgp.php:671 -msgid "Could not determine the recipient's e-mail address." -msgstr "Kon het e-mailadres van de ontvanger niet bepalen." - -#: lib/Horde/Crypt/Pgp.php:772 lib/Horde/Crypt/Pgp.php:886 -msgid "Could not obtain public key from the keyserver." -msgstr "Kon de openbare sleutel niet ophalen van sleutel server." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "Land" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Omschrijving" - -#: lib/Horde/Crypt/Pgp.php:437 -msgid "E-Mail" -msgstr "E-mail" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "E-mailadres" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "" -"Er is een fout opgetreden bij het ontleden van het S/MIME certificaat: %s" - -#: lib/Horde/Crypt/Pgp.php:1620 lib/Horde/Crypt/Pgp.php:1628 -msgid "Error while talking to pgp binary." -msgstr "Er is een fout opgetreden bij het aanroepen van het pgp programma." - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "Er is een fout opgetreden bij het aanroepen van het smime programma." - -#: lib/Horde/Crypt/Pgp.php:434 -msgid "Expiration Date" -msgstr "Vervaldatum" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "Voornaam" - -#: lib/Horde/Crypt/Pgp.php:438 -msgid "Hash-Algorithm" -msgstr "Hash-algorithme" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "UItgever" - -#: lib/Horde/Crypt/Pgp.php:433 -msgid "Key Creation" -msgstr "Sleutel gemaakt op" - -#: lib/Horde/Crypt/Pgp.php:440 -msgid "Key Fingerprint" -msgstr "Sleutel vingerafdruk" - -#: lib/Horde/Crypt/Pgp.php:439 -msgid "Key ID" -msgstr "Sleutel ID" - -#: lib/Horde/Crypt/Pgp.php:435 -msgid "Key Length" -msgstr "Sleutellengte" - -#: lib/Horde/Crypt/Pgp.php:432 -msgid "Key Type" -msgstr "Sleutel type" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "Sleutel gebruik" - -#: lib/Horde/Crypt/Pgp.php:795 -msgid "Key already exists on the public keyserver." -msgstr "Sleutel bestaat al op de openbare sleutel server." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Locatie" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Bericht succesvol geverifieerd maar het certificaat van de ondertekenaar kon " -"niet worden geverifieerd." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "Bericht met succes geverifieerd." - -#: lib/Horde/Crypt/Pgp.php:431 -msgid "Name" -msgstr "Naam" - -#: lib/Horde/Crypt/Pgp.php:463 -msgid "Never" -msgstr "Nooit" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Geen pad naar het OpenSSL programma opgegeven. Het OpenSSL programma is " -"nodig om PKCS 12 gegevens te verwerken." - -#: lib/Horde/Crypt/Pgp.php:465 lib/Horde/Crypt/Pgp.php:466 -msgid "None" -msgstr "Geen" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "Niet na" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "Niet voor" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"OpenSSL fout: kon geen gegevens halen uit het ondertekende S/MIME deel." - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Organisatie" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "Afdeling" - -#: lib/Horde/Crypt/Pgp.php:1442 -msgid "PGP Digital Signature" -msgstr "PGP digitale ondertekening" - -#: lib/Horde/Crypt/Pgp.php:1486 -msgid "PGP Encrypted Data" -msgstr "PGP versleutelde gegevens" - -#: lib/Horde/Crypt/Pgp.php:1547 -msgid "PGP Public Key" -msgstr "Openbare PGP sleutel" - -#: lib/Horde/Crypt/Pgp.php:1529 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP ondertekende/versleutelde gegevens" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Wachtwoord onjuist" - -#: lib/Horde/Crypt/Pgp.php:461 -msgid "Private Key" -msgstr "Privé sleutel" - -#: lib/Horde/Crypt/Pgp.php:461 -msgid "Public Key" -msgstr "Openbare sleutel" - -#: lib/Horde/Crypt/Pgp.php:231 -msgid "Public/Private keypair not generated successfully." -msgstr "Openbaar/privé sleutelpaar niet met succes gegenereerd." - -#: lib/Horde/Crypt/Pgp.php:233 -msgid "Returned error message:" -msgstr "Geretourneerd fout bericht:" - -#: lib/Horde/Crypt/Pgp.php:1680 -msgid "Revocation key not generated successfully." -msgstr "Intrekkings sleutel niet succesvol gemaakt." - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME cryptografische ondertekening" - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME versleuteld bericht" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "Serienummer" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "Staat of provincie" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Straat" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Achternaam" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Telefoonnummer" - -#: lib/Horde/Crypt/Pgp.php:1347 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"De losgekoppelde PGP ondertekening is benodigd om het ondertekende bericht " -"te verifieren." - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "De openssl module is vereist voor de Horde_Crypt_Smime::class." - -#: lib/Horde/Crypt/Pgp.php:467 lib/Horde/Crypt/Pgp.php:468 -#: lib/Horde/Crypt/Pgp.php:469 -msgid "Unknown" -msgstr "Onbekend" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "Geldigheid" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "Verificatie mislukt - er is een onbekende fout opgetreden." - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "Verificatie mislukt - dit bericht is mogelijk niet authentiek." - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Versie" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 elementaire beperkingen" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 uitgebreid sleutelgebruik" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 onderwerp alternatieve naam" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 onderwerp sleutel identificatie" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "X509v3 uitbreidingen" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "niet geïmplementeerd" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nn/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nn/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nn/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nn/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/nn/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/nn/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,439 +0,0 @@ -# Norwegian Nynorsk translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Oppkopling mot offentleg nøkkeltenar nekta." - -#: lib/Horde/Crypt/Pgp.php:950 -#, fuzzy, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Oppkopling mot offentleg nøkkeltenar nekta." - -#: lib/Horde/Crypt/Pgp.php:1132 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "Kunne ikkje PGP-kode melding." - -#: lib/Horde/Crypt/Pgp.php:1201 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "Kunne ikkje PGP-signere melding." - -#: lib/Horde/Crypt/Smime.php:330 -#, fuzzy -msgid "Could not S/MIME encrypt message." -msgstr "Kunne ikkje PGP-kode melding." - -#: lib/Horde/Crypt/Smime.php:391 -#, fuzzy -msgid "Could not S/MIME sign message." -msgstr "Kunne ikkje PGP-signere melding." - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Kunne ikkje dekode PGP-data." - -#: lib/Horde/Crypt/Smime.php:440 -#, fuzzy -msgid "Could not decrypt S/MIME data." -msgstr "Kunne ikkje dekode PGP-data." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Kunne ikkje avgjere mottakaren si e-postadresse." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Kunne ikkje skaffe offentleg nøkkel frå nøkkeltenaren." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "E-post" - -#: lib/Horde/Crypt/Smime.php:474 -#, fuzzy -msgid "Email Address" -msgstr "Di e-postadresse:" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -#, fuzzy -msgid "Key Type" -msgstr "MIME-type" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Melding" - -#: lib/Horde/Crypt/Pgp.php:782 -#, fuzzy -msgid "Key already exists on the public keyserver." -msgstr "Oppkopling mot offentleg nøkkeltenar nekta." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Namn" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Aldri" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "Administrering" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Passord" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Offentleg/privat nøkkelpar vart ikkje generert." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "Offentleg/privat nøkkelpar vart ikkje generert." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "Adresse, privat" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "Brukarnamn" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -#, fuzzy -msgid "Version" -msgstr "Tilgang" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pl/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pl/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pl/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pl/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pl/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pl/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,450 +0,0 @@ -# Polish translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s odcisk palca" - -#: lib/Horde/Crypt/Pgp.php:1240 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "Potrzebny jest klucz publiczny PGP do zaszyfrowania wiadomości." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" -"Potrzebny jest klucz publiczny PGP do sprawdzenia podpisanej wiadomości." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Potrzebne są klucz publiczny PGP, klucz prywatny PGP oraz hasło do " -"podpisania wiadomości." - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Potrzebny jest klucz publiczny SMIME do zaszyfrowania wiadomości." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Potrzebne są klucz publiczny S/MIME, klucz prywatny S/MIME oraz hasło do " -"odszyfrowania wiadomości." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Potrzebne są klucz publiczny S/MIME, klucz prywatny S/MIME oraz hasło do " -"podpisania wiadomości." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Szczegóły certyfikatu" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Właściciel certyfikatu" - -#: lib/Horde/Crypt/Smime.php:505 -#, fuzzy -msgid "Certificate Policies" -msgstr "Szczegóły certyfikatu" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Komentarz" - -#: lib/Horde/Crypt/Smime.php:475 -#, fuzzy -msgid "Common Name" -msgstr "Twoje imię" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Odmówiono połączenia do publicznego serwera." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Odmówiono połączenia do publicznego serwera. Powód: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "Nie udało się zaszyfrować (PGP) wiadomości." - -#: lib/Horde/Crypt/Pgp.php:1201 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "Nie udało się podpisać (PGP) wiadomości." - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Nie udało się zaszyfrować (S/MIME) wiadomości." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Nie udało się podpisać (S/MIME) wiadomości." - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Nie udało się odszyfrować danych PGP." - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Nie udało się odszyfrować danych S/MIME." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Nie udało się ustalić adresu e-mail odbiorcy." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Nie udało się uzyskać z serwera klucza pbulicznego." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Kraj" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "E-mail" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Adres email" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Data ekspiracji" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -#, fuzzy -msgid "Given Name" -msgstr "Nazwisko" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "Hash-Algorithm" -msgstr "Algorytm podpisu" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Wydawca" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Tworzenie klucza" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Odcisk klucza" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Długość klucza" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Typ klucza" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Wiadomość" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Klucz już istnieje na publicznym serwerze kluczy." - -#: lib/Horde/Crypt/Smime.php:480 -#, fuzzy -msgid "Location" -msgstr "Opcje" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nazwisko" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Nigdy" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Żadna" - -#: lib/Horde/Crypt/Smime.php:549 -#, fuzzy -msgid "Not After" -msgstr "Nieustawione" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Organizacja" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Jednostka organizacyjna" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "Cyfrowy podpis PGP" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "Wiadomość zaszyfrowana PGP" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Klucz publiczny PGP" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "Wiadomość zaszyfrowana/podpisana kluczem PGP" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Hasło nieprawidłowe" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Klucz prywatny" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Klucz publiczny" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Algorytm klucza publicznego" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "Informacje o kluczu publicznym" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Para kluczy osobistych nie została wygenerowana pomyślnie." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "Klucz publiczny RSA (%d bitów)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Nowe wiadomości" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "Para kluczy osobistych nie została wygenerowana pomyślnie." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "Wiadomość zaszyfrowana S/MIME" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Numer seryjny" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Podpis" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "Algorytm podpisu" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Wojewódźtwo lub stan" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Adres domowy" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "Nazwisko" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Numer telefonu" - -#: lib/Horde/Crypt/Pgp.php:1311 -#, fuzzy -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Potrzebny jest klucz publiczny PGP do sprawdzenia podpisanej wiadomości." - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -#, fuzzy -msgid "Unable to extract certificate details" -msgstr "Błąd przy pobieraniu detali certyfikatu" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Nieznane" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Nieobsługiwane rozszerzenie" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "Pojawił się nieznany błąd." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Weryfikacja zawiodła - wiadomość mogła być zmieniana." - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Wersja" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -#, fuzzy -msgid "not yet implemented" -msgstr "Ta opcja nie jest jeszcze załączona." Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pt/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pt/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pt/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pt/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pt/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pt/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,448 +0,0 @@ -# Portuguese translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s Impressão Digital" - -#: lib/Horde/Crypt/Pgp.php:1240 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "É necessária uma chave pública PGP para encriptar a mensagem." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" -"É necessária uma chave pública PGP para verificar a assinatura de uma " -"mensagem" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Para assinar uma mensagem são necessárias uma chave pública PGP, uma chave " -"privada PGP e uma frase-passe." - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "É necessária uma chave pública S/MIME para encriptar uma mensagem." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Para decifrar uma mensagem são necessárias uma chave pública S/MIME, uma " -"chave privada S/MIME e uma frase-passe." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Para assinar uma mensagem são necessárias uma chave pública S/MIME, uma " -"chave privada S/MIME e uma frase-passe." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "Pontos de Distribuição CRL" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Pormenores do Certificado" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Dono do Certificado" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Políticas de Certificado" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Comentário" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "Nome Comum" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Conexão ao servidor de chaves públicas recusada." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Conexão ao servidor de chaves públicas recusada. Razão: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "Não foi possível cifrar com PGP a mensagem:" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "Não foi possível assinar com PGP a mensagem:" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Não foi possível encripar a mensagem com S/MIME." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Não foi possível assinar a mensagem com S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "Não foi possível decifrar com PGP a mensagem:" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Não foi possível desencriptar os dados com S/MIME." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "" -"Não foi possível determinar o endereço de correio electrónico do " -"destinatário." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" -"Não foi possível obter a chave pública a partir do servidor de chaves " -"públicas." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "País" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "Correio electrónico" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Endereço de Correio Electrónico" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Data de Expiração" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Expoente" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "Nome Próprio" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Algoritmo de \"Hash\"" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Emissor" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Criação da Chave" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Impressão digital da chave" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Comprimento da chave" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Tipo da Chave" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Utilização da Chave" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "A chave já existe no servidor de chaves públicas." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Localização" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Mensagen Verificada com Sucesso, mas o certificado do subscritor não pôde " -"ser verificado." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "Módulo" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nome" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "URL de Base Netscape" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "URL de Revogação CA Netscape" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "URL com a política de CA Netscape" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "URL de Renovação Netscape" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "URL de Revogação Netscape" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "Nome do servidor SSL Netscape" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Comentário de certificado Netscape" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Tipo de certificado Netscape" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Nunca" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Não foi indicado caminho para o binário OpenSSL. O binário OpenSSL é " -"necessário para trabalhar com dados PKCS 12." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Nenhuma" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "Nunca Depois de" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "Nunca Antes de" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" -"Erro OpenSSL: Não foi possível extrair dados de uma parte assinada com S/" -"MIME." - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Organização" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Unidade Organizacional" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "Assinatura Digital PGP" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "Dados encriptados PGP" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Chave Pública PGP" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "Dados Assinados/Encriptados com PGP" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Palavra-Passe incorrecta" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Chave Privada" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Chave Pública" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Algoritmo de Chave Pública" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "Informação Sobre a Chave" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "O par de chaves Publica/Privada não foi gerada com sucesso." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "Chave Pública RSA (%d bit)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Ler mensagens" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "O par de chaves Publica/Privada não foi gerada com sucesso." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "Assinatura Criptográfica S/MIME" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "Mensagem Encriptada com S/MIME" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Número de Série" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Assinatura" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "Algoritmo de Assinatura" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Estado ou Província" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Endereço de Rua" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Apelido" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Número de Telefone" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"O bloco de assinatura PGP destacado é necessário para verificar uma mensagem " -"assinada." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "O módulo openssl é necessário para a classe Horde_Crypt_smime::." - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "Não foi possível extrair os pormenores do certificado" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Desconhecido" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Extensão não Suportada" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "Validade." - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "Ocorreu um erro desconhecido." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Verificação falhou - esta mensagem pode ter sido adulterada." - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Versão" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "Restrições Básicas X509v3" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "Utilização de Chave Extendida X509v3" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "Nome Alternativo de Sujeito X509v3" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "Identificador Chave de Sujeito X509v3" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "Extensões X509v3" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "ainda por implementar" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pt_BR/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pt_BR/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,361 +0,0 @@ -# Portuguese translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2014-03-25 18:08+0100\n" -"PO-Revision-Date: 2013-11-21 22:57-0300\n" -"Last-Translator: Luis Felipe Marzagao \n" -"Language-Team: i18n@lists.horde.org\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 1.5.4\n" - -#: lib/Horde/Crypt/Pgp.php:1086 -msgid "A passphrase is required to decrypt a message." -msgstr "Uma palavra-chave é necessária para descriptografar uma mensagem." - -#: lib/Horde/Crypt/Pgp.php:1157 -msgid "A public PGP key is required to verify a signed message." -msgstr "Uma chave pública PGP é necessária para validar uma mensagem assinada." - -#: lib/Horde/Crypt/Pgp.php:1017 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Uma chave pública PGP, uma chave privada PGP, e uma palavra-chave são " -"necessários para assinar uma mensagem." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Uma chave pública S/MIME é necessáira para criptografar uma mensagem." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Uma chave pública S/MIME , uma chave privada S/MIME, e uma palavra-chave são " -"necessários para descriptografar uma mensagem." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Uma chave pública S/MIME, uma chave privada S/MIME, e uma palavra-chave são " -"necessários para assinar uma mensagem." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "Pontos de Distribuição CRL" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "Detalhes do Certificado" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "Proprietário do Certificado" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Política do Certificado" - -#: lib/Horde/Crypt/Pgp.php:417 -msgid "Comment" -msgstr "Comentário" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Nome Comum" - -#: lib/Horde/Crypt/Pgp.php:985 -msgid "Could not PGP encrypt message: " -msgstr "Não foi possível criptografar a mensagem com PGP:" - -#: lib/Horde/Crypt/Pgp.php:1054 -msgid "Could not PGP sign message: " -msgstr "Não foi possível assinar a mensagem com PGP: " - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "Não foi possível criptografar a mensagem com S/MIME." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "Não foi possível assinar a mensagem com S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1125 -msgid "Could not decrypt PGP data: " -msgstr "Não foi possível descriptografar dados PGP: " - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "Não foi possível descriptografar dados S/MIME." - -#: lib/Horde/Crypt/Pgp.php:644 -msgid "Could not determine the recipient's e-mail address." -msgstr "Não foi possível determinar o endereço de e-mail do destinatário." - -#: lib/Horde/Crypt/Pgp/Keyserver.php:101 lib/Horde/Crypt/Pgp/Keyserver.php:219 -msgid "Could not obtain public key from the keyserver." -msgstr "Não foi possível obter a chave pública do servidor de chaves." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "País" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Descrição" - -#: lib/Horde/Crypt/Pgp.php:418 -msgid "E-Mail" -msgstr "Correio" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "Endereço de E-Mail" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Erro ao processar certificado S/MIME: %s" - -#: lib/Horde/Crypt/Pgp.php:1453 lib/Horde/Crypt/Pgp.php:1461 -msgid "Error while talking to pgp binary." -msgstr "Erro ao comunicar com o binário pgp." - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "Erro ao comunicar com o binário smime." - -#: lib/Horde/Crypt/Pgp.php:415 -msgid "Expiration Date" -msgstr "Data de Expiração" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "Primeiro Nome" - -#: lib/Horde/Crypt/Pgp.php:419 -msgid "Hash-Algorithm" -msgstr "Algorítimo Hash" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "Emissor" - -#: lib/Horde/Crypt/Pgp.php:414 -msgid "Key Creation" -msgstr "Criação de Chave" - -#: lib/Horde/Crypt/Pgp.php:421 -msgid "Key Fingerprint" -msgstr "Impressão Digital da Chave" - -#: lib/Horde/Crypt/Pgp.php:420 -msgid "Key ID" -msgstr "Chave ID" - -#: lib/Horde/Crypt/Pgp.php:416 -msgid "Key Length" -msgstr "Tamanho da Chave" - -#: lib/Horde/Crypt/Pgp.php:413 -msgid "Key Type" -msgstr "Tipo da Chave" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "Uso da Chave" - -#: lib/Horde/Crypt/Pgp/Keyserver.php:137 -msgid "Key already exists on the public keyserver." -msgstr "Chave já existe no servidor de chaves públicas." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Localidade" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Mesnagem verificada com sucesso mas o certificado do assinante não pôde ser " -"verificado." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "Mensagem verificada com sucesso." - -#: lib/Horde/Crypt/Pgp.php:412 -msgid "Name" -msgstr "Nome" - -#: lib/Horde/Crypt/Pgp.php:444 -msgid "Never" -msgstr "Nunca" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Nenhum path para o binário do OpenSSL foi fornecido. O binário do OpenSSL é " -"necessário para manipular os dados PKCS 12." - -#: lib/Horde/Crypt/Pgp.php:446 lib/Horde/Crypt/Pgp.php:447 -msgid "None" -msgstr "Nenhuma" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "Não Após" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "Não Antes" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "Erro do OpenSSL: Não pude extrair dados da parte assinada S/MIME." - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Organização" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "Unidade Organizacional" - -#: lib/Horde/Crypt/Pgp.php:1275 -msgid "PGP Digital Signature" -msgstr "Assinatura Digital PGP" - -#: lib/Horde/Crypt/Pgp.php:1319 -msgid "PGP Encrypted Data" -msgstr "Dados Criptografados com PGP" - -#: lib/Horde/Crypt/Pgp.php:1380 -msgid "PGP Public Key" -msgstr "Chave Pública PGP" - -#: lib/Horde/Crypt/Pgp.php:1362 -msgid "PGP Signed/Encrypted Data" -msgstr "Dados Assinados/Criptografados com PGP" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Senha incorreta" - -#: lib/Horde/Crypt/Pgp.php:442 -msgid "Private Key" -msgstr "Chave Privada" - -#: lib/Horde/Crypt/Pgp.php:442 -msgid "Public Key" -msgstr "Chave Pública" - -#: lib/Horde/Crypt/Pgp.php:212 -msgid "Public/Private keypair not generated successfully." -msgstr "Par de chaves Pública/Privada não foram gerados com sucesso." - -#: lib/Horde/Crypt/Pgp.php:214 -msgid "Returned error message:" -msgstr "Mensagem de erro retornada:" - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "Mensagem Criptografada com S/MIME" - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Signature" -msgstr "Assinatura S/MIME" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "Número de Série" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "Estado ou Província" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Nome da Rua" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Sobrenome" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Número de Telefone" - -#: lib/Horde/Crypt/Pgp.php:1161 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Para verificar a mensagem assinada é necessário um bloco separado da " -"assinatura PGP." - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "O módulo openssl é requerido para Horde_Crypt_Smime:: class." - -#: lib/Horde/Crypt/Pgp.php:448 lib/Horde/Crypt/Pgp.php:449 -#: lib/Horde/Crypt/Pgp.php:450 -msgid "Unknown" -msgstr "Desconhecido" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "Validade" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "Verificação falhou - um erro desconhecido ocorreu." - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "Falha na verificação - esta mensagem pode ter sido adulterada." - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Versão" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "Restrições Básicas X509v3" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "Utilização de Chave Extendida X509v3" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "Nome Alternativo de Assunto X509v3" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "Identificador da Chave de Assunto X509v3" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "Extensões X509v3" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "não implementado ainda" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ro/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ro/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ro/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ro/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ro/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ro/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,429 +0,0 @@ -# Romanian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2;\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "Corespondenta" - -#: lib/Horde/Crypt/Smime.php:474 -#, fuzzy -msgid "Email Address" -msgstr "Adresa ta de Email:" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Mesaj" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Nume" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Niciodata" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Parola" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "Adresa de acasa" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "Utilizator" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ru/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ru/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ru/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ru/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/ru/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/ru/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,492 +0,0 @@ -# Russian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "Для расшифровки сообщения требуется пароль" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "Для проверки подписанного сообщения требуется публичный ключ PGP" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Для подписи сообщения требуется публичный ключ PGP, приватный ключ PGP и " -"пароль" - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Для шифрования сообщения требуется публичный ключ S/MIME" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Для расшифровки сообщения требуется публичный ключ S/MIME, приватный ключ S/" -"MIME и пароль" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Для подписи сообщения требуется публичный ключ S/MIME, приватный ключ S/MIME " -"и пароль" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "Точки Распространения СRL" - -# fuzzy, php-format -# fuzzy -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Подробности Сертификата" - -# fuzzy, php-format -# fuzzy -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Владелец Сертификата" - -# fuzzy, php-format -# fuzzy -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Политики Сертификата" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Комментарий" - -# fuzzy -#: lib/Horde/Crypt/Smime.php:475 -#, fuzzy -msgid "Common Name" -msgstr "Ваше имя:" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Публичный сервер ключей отказал в соединении" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Публичный сервер ключей отказал в соединении. Причина: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "PGP-шифрование данного сообщения невозможно:" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "PGP-подпись данного сообщения невозможна:" - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "S/MIME шифрование данного сообщения невозможно." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "S/MIME подпись данного сообщения невозможна." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "Невозможно расшифровать данные PGP:" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Невозможно расшифровать данные S/MIME." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Невозможно определить E-Mail получателя." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Невозможно получить публичный ключ с сервера ключей" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Страна" - -# fuzzy -#: lib/Horde/Crypt/Pgp.php:426 -#, fuzzy -msgid "E-Mail" -msgstr "Почта" - -#: lib/Horde/Crypt/Smime.php:474 -#, fuzzy -msgid "Email Address" -msgstr "Ваш Email:" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Дата окончания срока годности" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Экспонента" - -#: lib/Horde/Crypt/Smime.php:484 -#, fuzzy -msgid "Given Name" -msgstr "Имя" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:534 -#, fuzzy -msgid "Issuer" -msgstr "Инвертировать" - -#: lib/Horde/Crypt/Pgp.php:424 -#, fuzzy -msgid "Key Creation" -msgstr "Настройки" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Длина ключа" - -#: lib/Horde/Crypt/Pgp.php:424 -#, fuzzy -msgid "Key Type" -msgstr "Тип" - -#: lib/Horde/Crypt/Smime.php:507 -#, fuzzy -msgid "Key Usage" -msgstr "Сообщение" - -#: lib/Horde/Crypt/Pgp.php:782 -#, fuzzy -msgid "Key already exists on the public keyserver." -msgstr "Ключ успешно послан на публичный сервер" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Расположение" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:583 -#, fuzzy -msgid "Modulus" -msgstr "Сценарий" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Имя" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -#, fuzzy -msgid "Netscape certificate comment" -msgstr "Нет персональных сертификатов" - -# fuzzy, php-format -# fuzzy -#: lib/Horde/Crypt/Smime.php:489 -#, fuzzy -msgid "Netscape certificate type" -msgstr "Искать в Ответственных" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Никогда" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -# fuzzy -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "-не выбран-" - -#: lib/Horde/Crypt/Smime.php:549 -#, fuzzy -msgid "Not After" -msgstr "Заметки" - -#: lib/Horde/Crypt/Smime.php:548 -#, fuzzy -msgid "Not Before" -msgstr "Заметки" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -#, fuzzy -msgid "Organisation" -msgstr "Настройки пользователя" - -#: lib/Horde/Crypt/Smime.php:477 -#, fuzzy -msgid "Organisational Unit" -msgstr "Настройки пользователя" - -#: lib/Horde/Crypt/Pgp.php:1406 -#, fuzzy -msgid "PGP Digital Signature" -msgstr "Оттенять подписи?" - -# fuzzy -#: lib/Horde/Crypt/Pgp.php:1450 -#, fuzzy -msgid "PGP Encrypted Data" -msgstr "Шифрованние PGP" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Публичный ключ PGP" - -# fuzzy -#: lib/Horde/Crypt/Pgp.php:1493 -#, fuzzy -msgid "PGP Signed/Encrypted Data" -msgstr "Подпись и шифрование PGP" - -#: lib/Horde/Crypt/Smime.php:1256 -#, fuzzy -msgid "Password incorrect" -msgstr "Пароль" - -# fuzzy -#: lib/Horde/Crypt/Pgp.php:447 -#, fuzzy -msgid "Private Key" -msgstr "Ваш секретный ключ:" - -#: lib/Horde/Crypt/Pgp.php:447 -#, fuzzy -msgid "Public Key" -msgstr "Публичный ключ PGP" - -#: lib/Horde/Crypt/Smime.php:554 -#, fuzzy -msgid "Public Key Algorithm" -msgstr "Ваше полное имя:" - -#: lib/Horde/Crypt/Smime.php:553 -#, fuzzy -msgid "Public Key Info" -msgstr "Ваше полное имя:" - -# fuzzy -#: lib/Horde/Crypt/Pgp.php:225 -#, fuzzy -msgid "Public/Private keypair not generated successfully." -msgstr "Персональная пара PGP ключей была успешно сгенерирована." - -# fuzzy -#: lib/Horde/Crypt/Smime.php:572 -#, fuzzy, php-format -msgid "RSA Public Key (%d bit)" -msgstr "Публичных ключей не найдено" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Удаленные сообщения" - -# fuzzy -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "Персональная пара PGP ключей была успешно сгенерирована." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:283 -#, fuzzy -msgid "S/MIME Encrypted Message" -msgstr "Не могу открыть модуль Maintenance_Task %s" - -#: lib/Horde/Crypt/Smime.php:611 -#, fuzzy -msgid "Serial Number" -msgstr "Имя" - -#: lib/Horde/Crypt/Smime.php:622 -#, fuzzy -msgid "Signature" -msgstr "Перед подписью" - -#: lib/Horde/Crypt/Smime.php:621 -#, fuzzy -msgid "Signature Algorithm" -msgstr "Перед подписью" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -#, fuzzy -msgid "Street Address" -msgstr "Рабочий адрес" - -#: lib/Horde/Crypt/Smime.php:483 -#, fuzzy -msgid "Surname" -msgstr "Имя пользователя" - -#: lib/Horde/Crypt/Smime.php:482 -#, fuzzy -msgid "Telephone Number" -msgstr "Имя" - -#: lib/Horde/Crypt/Pgp.php:1311 -#, fuzzy -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "Для проверки подписанного сообщения требуется публичный ключ PGP" - -#: lib/Horde/Crypt/Smime.php:1146 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "" - -# fuzzy, php-format -# fuzzy -#: lib/Horde/Crypt/Smime.php:512 -#, fuzzy -msgid "Unable to extract certificate details" -msgstr "Подробности Сертификата" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Неизвесно" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -#, fuzzy -msgid "Unsupported Extension" -msgstr "Некорректное имя." - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "Произошла критическая ошибка:" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:610 -#, fuzzy -msgid "Version" -msgstr "Внимание" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -#, fuzzy -msgid "not yet implemented" -msgstr "" -"#-#-#-#-# ru_RU.po (Horde v2.1) #-#-#-#-#\n" -"#-#-#-#-# ru_RU.po (IMP v3.1) #-#-#-#-#\n" -"Новое сообщение" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sk/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sk/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sk/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sk/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sk/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sk/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,372 +0,0 @@ -# Slovak translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# Martin Matuška , 2008 -# Jozef Sudolský , 2012 -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2013-07-16 21:24+0200\n" -"PO-Revision-Date: 2013-08-26 12:42+0100\n" -"Last-Translator: Jozef Sudolsky \n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Poedit 1.5.4\n" - -#: lib/Horde/Crypt/Pgp.php:1275 -msgid "A passphrase is required to decrypt a message." -msgstr "Na dešifrovanie správy je potrebné heslo." - -#: lib/Horde/Crypt/Pgp.php:1346 -msgid "A public PGP key is required to verify a signed message." -msgstr "Na overenie podpísanej správy je potrebný verejný PGP kľúč." - -#: lib/Horde/Crypt/Pgp.php:1206 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Na podpísanie správy sú potrebné: vrejný PGP kľúč, privátny PGP kľúč a heslo." - -#: lib/Horde/Crypt/Smime.php:266 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Na zašifrovanie správy je potrebný verejný SMIME kľúč." - -#: lib/Horde/Crypt/Smime.php:394 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Na dešifrovanie správy sú potrebné: verejný S/MIME kľúč, privátny S/MIME " -"kľúč a heslo." - -#: lib/Horde/Crypt/Smime.php:325 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Na podpísanie správy sú potrebné: verejný S/MIME kľúč, privátny S/MIME kľúč " -"a heslo." - -#: lib/Horde/Crypt/Smime.php:465 -msgid "CRL Distribution Points" -msgstr "Distribučné body CRL" - -#: lib/Horde/Crypt/Smime.php:516 -msgid "Certificate Details" -msgstr "Podrobné informácie o certifikáte" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Certificate Owner" -msgstr "Vlastník certifikátu" - -#: lib/Horde/Crypt/Smime.php:464 -msgid "Certificate Policies" -msgstr "Pravidlá pre certifikáty" - -#: lib/Horde/Crypt/Pgp.php:448 -msgid "Comment" -msgstr "Komentár" - -#: lib/Horde/Crypt/Smime.php:448 -msgid "Common Name" -msgstr "Bežné meno" - -#: lib/Horde/Crypt/Pgp.php:980 -msgid "Connection refused to the public keyserver." -msgstr "Kľúč bol zamietnutý serverom verejných kľúčov." - -#: lib/Horde/Crypt/Pgp.php:991 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Kľúč bol zamietnutý serverom verejných kľúčov. Dôvod: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1174 -msgid "Could not PGP encrypt message: " -msgstr "Nepodarilo sa zašifrovať správu pomocou PGP: " - -#: lib/Horde/Crypt/Pgp.php:1243 -msgid "Could not PGP sign message: " -msgstr "Nepodarilo sa podpísať správu pomocou PGP: " - -#: lib/Horde/Crypt/Smime.php:295 -msgid "Could not S/MIME encrypt message." -msgstr "Nepodarilo sa zašifrovať správu pomocou S/MIME." - -#: lib/Horde/Crypt/Smime.php:356 -msgid "Could not S/MIME sign message." -msgstr "Nepodarilo sa podpísať správu pomocou S/MIME." - -#: lib/Horde/Crypt/Pgp.php:1314 -msgid "Could not decrypt PGP data: " -msgstr "Nepodarilo sa dešifrovať údaje pomocou PGP: " - -#: lib/Horde/Crypt/Smime.php:412 -msgid "Could not decrypt S/MIME data." -msgstr "Nepodarilo sa dešifrovať S/MIME údaje." - -#: lib/Horde/Crypt/Pgp.php:673 -msgid "Could not determine the recipient's e-mail address." -msgstr "Nepodarilo sa určiť e-mailovú adresu príjemcu." - -#: lib/Horde/Crypt/Pgp.php:774 lib/Horde/Crypt/Pgp.php:888 -msgid "Could not obtain public key from the keyserver." -msgstr "Nepodarilo sa získať verejný kľúč zo servera kľúčov." - -#: lib/Horde/Crypt/Smime.php:451 -msgid "Country" -msgstr "Krajina" - -#: lib/Horde/Crypt/Smime.php:446 -msgid "Description" -msgstr "Popis" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "E-Mail" -msgstr "E-mail" - -#: lib/Horde/Crypt/Smime.php:447 -msgid "Email Address" -msgstr "Emailová adresa:" - -#: lib/Horde/Crypt/Smime.php:551 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Chyba pri spracovaní S/MIME certifikátu: %s" - -#: lib/Horde/Crypt/Pgp.php:1623 lib/Horde/Crypt/Pgp.php:1631 -msgid "Error while talking to pgp binary." -msgstr "Chyba pri komunikácii s pgp." - -#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 -#: lib/Horde/Crypt/Smime.php:754 -msgid "Error while talking to smime binary." -msgstr "Chyba pri komunikácii s smime." - -#: lib/Horde/Crypt/Pgp.php:446 -msgid "Expiration Date" -msgstr "Dátum expirácie" - -#: lib/Horde/Crypt/Smime.php:457 -msgid "Given Name" -msgstr "Krstné meno" - -#: lib/Horde/Crypt/Pgp.php:450 -msgid "Hash-Algorithm" -msgstr "Algoritmus hashovacej funkcie" - -#: lib/Horde/Crypt/Smime.php:485 -msgid "Issuer" -msgstr "Vydavateľ" - -#: lib/Horde/Crypt/Pgp.php:445 -msgid "Key Creation" -msgstr "Vytvorenie kľúča" - -#: lib/Horde/Crypt/Pgp.php:452 -msgid "Key Fingerprint" -msgstr "Digitálny odtlačok kľúča" - -#: lib/Horde/Crypt/Pgp.php:451 -msgid "Key ID" -msgstr "ID kľúča" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Key Length" -msgstr "Dĺžka kľúča" - -#: lib/Horde/Crypt/Pgp.php:444 -msgid "Key Type" -msgstr "Typ kľúča" - -#: lib/Horde/Crypt/Smime.php:466 -msgid "Key Usage" -msgstr "Použitie kľúča" - -#: lib/Horde/Crypt/Pgp.php:797 -msgid "Key already exists on the public keyserver." -msgstr "Kľúč už existuje na serveri verejných kľúčov." - -#: lib/Horde/Crypt/Smime.php:453 -msgid "Location" -msgstr "Lokalita" - -#: lib/Horde/Crypt/Smime.php:143 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Správa bola úspešne overená, ale certifikát podpisu sa nepodarilo overiť." - -#: lib/Horde/Crypt/Smime.php:131 -msgid "Message verified successfully." -msgstr "Správa bola úspešne overená." - -#: lib/Horde/Crypt/Pgp.php:443 -msgid "Name" -msgstr "Meno" - -#: lib/Horde/Crypt/Pgp.php:475 -msgid "Never" -msgstr "Nikdy" - -#: lib/Horde/Crypt/Smime.php:687 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Nebola zadaná cesta k programu OpenSSL. Program OpenSSL je potrebný na prácu " -"s údajmi PKCS 12." - -#: lib/Horde/Crypt/Pgp.php:477 lib/Horde/Crypt/Pgp.php:478 -msgid "None" -msgstr "Žiaden" - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Not After" -msgstr "Neplatí po" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Not Before" -msgstr "Neplatí pred" - -#: lib/Horde/Crypt/Smime.php:182 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "Chyba OpenSSL: nepodarilo sa získať údaje z podpísanej časti S/MIME." - -#: lib/Horde/Crypt/Smime.php:449 -msgid "Organisation" -msgstr "Organizácia" - -#: lib/Horde/Crypt/Smime.php:450 -msgid "Organisational Unit" -msgstr "Organizačná jednotka" - -#: lib/Horde/Crypt/Pgp.php:1445 -msgid "PGP Digital Signature" -msgstr "Digitálny podpis PGP" - -#: lib/Horde/Crypt/Pgp.php:1489 -msgid "PGP Encrypted Data" -msgstr "Údaje zašifrované pomocou PGP" - -#: lib/Horde/Crypt/Pgp.php:1550 -msgid "PGP Public Key" -msgstr "PGP verejný kľúč" - -#: lib/Horde/Crypt/Pgp.php:1532 -msgid "PGP Signed/Encrypted Data" -msgstr "Údaje podpísané/zašifrované pomocou PGP" - -#: lib/Horde/Crypt/Smime.php:726 -msgid "Password incorrect" -msgstr "Nesprávne heslo" - -#: lib/Horde/Crypt/Pgp.php:473 -msgid "Private Key" -msgstr "Privátny kľúč" - -#: lib/Horde/Crypt/Pgp.php:473 -msgid "Public Key" -msgstr "Verejný kľúč" - -#: lib/Horde/Crypt/Pgp.php:243 -msgid "Public/Private keypair not generated successfully." -msgstr "Verejný/privátny kľúčový pár nebol úspešne vygenerovaný." - -#: lib/Horde/Crypt/Pgp.php:245 -msgid "Returned error message:" -msgstr "Navrátené chybové hlásenie:" - -#: lib/Horde/Crypt/Pgp.php:1685 -msgid "Revocation key not generated successfully." -msgstr "Revokačný kľúč nebol úspešne vytvorený." - -#: lib/Horde/Crypt/Smime.php:238 -msgid "S/MIME Encrypted Message" -msgstr "Správa zašifrovaná pomocou S/MIME" - -#: lib/Horde/Crypt/Smime.php:204 -msgid "S/MIME Signature" -msgstr "S/MIME podpis" - -#: lib/Horde/Crypt/Smime.php:518 -msgid "Serial Number" -msgstr "Sériové číslo" - -#: lib/Horde/Crypt/Smime.php:452 -msgid "State or Province" -msgstr "Štát alebo provincia" - -#: lib/Horde/Crypt/Smime.php:454 -msgid "Street Address" -msgstr "Bydlisko" - -#: lib/Horde/Crypt/Smime.php:456 -msgid "Surname" -msgstr "Priezvisko" - -#: lib/Horde/Crypt/Smime.php:455 -msgid "Telephone Number" -msgstr "Telefónne číslo" - -#: lib/Horde/Crypt/Pgp.php:1350 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Na overenie podpísanej správy je požadovaný oddelený blok s PGP podpisom." - -#: lib/Horde/Crypt/Smime.php:616 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Trieda Horde_Crypt_smime:: vyžaduje modul openssl." - -#: lib/Horde/Crypt/Pgp.php:479 lib/Horde/Crypt/Pgp.php:480 -#: lib/Horde/Crypt/Pgp.php:481 -msgid "Unknown" -msgstr "Neznáme" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Validity" -msgstr "Platnosť" - -#: lib/Horde/Crypt/Smime.php:138 -msgid "Verification failed - an unknown error has occurred." -msgstr "Overenie zlyhalo - nastala neznáma chyba." - -#: lib/Horde/Crypt/Smime.php:140 -msgid "Verification failed - this message may have been tampered with." -msgstr "Overenie zlyhalo - táto správa mohla byť sfalšovaná." - -#: lib/Horde/Crypt/Smime.php:517 -msgid "Version" -msgstr "Verzia" - -#: lib/Horde/Crypt/Smime.php:461 -msgid "X509v3 Basic Constraints" -msgstr "Základné obmedzenia X509v3" - -#: lib/Horde/Crypt/Smime.php:460 -msgid "X509v3 Extended Key Usage" -msgstr "Použitie rozšíreného kľúča X509v3" - -#: lib/Horde/Crypt/Smime.php:462 -msgid "X509v3 Subject Alternative Name" -msgstr "Alternatívne meno subjektu X509v3" - -#: lib/Horde/Crypt/Smime.php:463 -msgid "X509v3 Subject Key Identifier" -msgstr "Identifikátor kľúča subjektu X509v3" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 extensions" -msgstr "X509v3 rozšírenia" - -#: lib/Horde/Crypt/Smime.php:605 -msgid "not yet implemented" -msgstr "zatiaľ neimplementované" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sl/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sl/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sl/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sl/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sl/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sl/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,438 +0,0 @@ -# Slovenian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s Odtis" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "Za dešifriranje sporočila je potrebno geslo." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "Javni PGP ključ je potreben za preverjanje podpisanega sporočila." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"Javni PGP ključ, zasebni PGP ključ in geslo so potrebni za podpis sporočila." - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr " Javni SMIME klju je potreben za odklepanje sporočila " - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Javni S/MIME ključ, zasebni S/MIME ključ in geslo so potrebni za podpis " -"sporočila." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Javni S/MIME ključ, zasebni S/MIME ključ in geslo so potrebni za podpis " -"sporočila." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr " CRL razdelitvene točke " - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Podrobnosti potrdila" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Lastnik potrdila" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Pravila potrdila" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Komentar" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "Skupno ime" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Zavrnjena povezava z javnim ključnim strežnikom." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Zavrnjena povezava z javnim ključnim strežnikom. Razlog: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "PGP ne more šifrirati sporočila:" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "Ni mogoč PGP podpis sporočila." - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Ni mogoče S/MIME šifrirati sporočila." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Ni mogoče S/MIME podpis sporočila." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "Ni mogoče dešifrirati PGP podatkov:" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Ni mogoče dešifrirati S/MIME podatke." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Ni mogoče določiti elektronskega naslova prejemnika." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Ni mogoče dobiti javnega ključa od ključnega strežnika." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Država" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "Elektronski naslov" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Elektronski naslov" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Datum zapadlosti" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Zastopnik" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "Dano ime" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hash Algoritem" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Izdajatelj" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Ustvari Ključ " - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Odtis Ključa" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Dolžina Ključa" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Tip Ključa " - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Uporaba Ključa " - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Ključ že obstaja na javnem ključnem strežniku." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Mesto" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Sporočilo je bilo uspešno preverjeno, toda podpisnikovega potrdila ni bilo " -"mogoče preveriti." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "Moduli" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Ime" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "Netscape osnovni URL" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr " Netscape CA URL za preklic" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "Naslov Netscape certifikata" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr " Netscape obnovitveni URL" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr " Netscape URL za preklic" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "Netscape SSL ime strežnika" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Netscape uradni komentar" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Tip Netscape certifikata" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Nikoli" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Pot do binarne datoteke OpenSSL ni bila nastavljena. OpenSSL binarna " -"datoteka je potrebna za delo s PKCS 12 podatki." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Nobeden" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "Ne kasneje" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "Ne prej" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OdprtaSSL napaka: Ne morem povzeti datuma iz označenega S/MIM dela." - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Organizacija" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Organizacijska enota" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "Digitalen podpis PGP" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "Kodirani PGP podatki" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Javni ključ PGP" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "Podpisani/kodirani PGP podatki" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Nepravilno geslo" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Zaseben ključ" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Javni ključ" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Algoritem javnega ključa" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "Informacije javnega ključa" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Javni/zasebni par ključev ni bil uspešno generiran." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA javni ključ (%d bitov)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Beri sporočila" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "Javni/zasebni par ključev ni bil uspešno generiran." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr " S/MIME kriptografski podpis" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME kodirano sporočilo" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Serijska številka" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Podpis" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "Algoritmičen podpis" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Država ali provinca" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Naslov ulice" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Priimek" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Telefonska številka" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Potrebujem ločeno PGP podpisano beležnico, da previrim podpisano sporočilo." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Potrebujem openssl modul za Horde_Crypt_smime:: razred." - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "Ne morem izpisati potrjenih podrobnosti." - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Neznano" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Nepodprta razširitev" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "Veljavnost" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "Pojavila se je neznana napaka." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Preverjanje neuspešno - mogoče je bilo sporočilo spremenjeno." - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Različica" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 osnovna omejitev" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 Razširjena uporaba ključa" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Zadeva alternativno ime" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Kjue za doloeiti zadevo" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "X509v3 razširitev" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "še ni podprta" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sv/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sv/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sv/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sv/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/sv/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/sv/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,446 +0,0 @@ -# Swedish translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "Fingerprint för %s" - -#: lib/Horde/Crypt/Pgp.php:1240 -#, fuzzy -msgid "A passphrase is required to decrypt a message." -msgstr "En publik PGP-nyckel krävs för att kryptera ett meddelande." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "En publik PGP-nyckel krävs för att verifiera ett signerat meddelande." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"En publik och privat PGP-nyckel samt lösenord krävs för att signera ett " -"meddelande." - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "En publik S/MIME-nyckel krävs för att kryptera ett meddelande." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"En publik och privat S/MIME-nyckel samt lösenord krävs för att dekryptera " -"ett meddelande." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"En publik och privat S/MIME-nyckel samt lösenord krävs för att signera ett " -"meddelande." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "CRL Distribution Points" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Certifikatsdetaljer" - -#: lib/Horde/Crypt/Smime.php:520 -#, fuzzy -msgid "Certificate Owner" -msgstr "Certifikatsdetaljer" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Certifikatpolicies" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Kommentar" - -#: lib/Horde/Crypt/Smime.php:475 -#, fuzzy -msgid "Common Name" -msgstr "Ditt namn" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Förbindelse med publik nyckelserver nekades." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Förbindelse med publik nyckelserver nekades: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -#, fuzzy -msgid "Could not PGP encrypt message: " -msgstr "Kan inte PGP-kryptera meddelande." - -#: lib/Horde/Crypt/Pgp.php:1201 -#, fuzzy -msgid "Could not PGP sign message: " -msgstr "Kan inte PGP-signera meddelande." - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "Kan inte S/MIME-kryptera meddelande." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "Kan inte S/MIME-signera meddelande." - -#: lib/Horde/Crypt/Pgp.php:1276 -#, fuzzy -msgid "Could not decrypt PGP data: " -msgstr "Kan inte dekryptera PGP-data." - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "Kan inte dekryptera S/MIME-data." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Kan inte bestämma mottagarens ePost-adress." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Kan inte hämta publik nyckel från nyckelservern." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Land" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "E-post" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "E-post adress" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Förfallodatum" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Exponent" - -#: lib/Horde/Crypt/Smime.php:484 -#, fuzzy -msgid "Given Name" -msgstr "Filnamn" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hashalgoritm" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Nyckel skapad" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Fingerprint" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Nyckellängd" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Nyckeltyp" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Nyckelanvändande" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Nyckel finns redan på den publika nyckelservern." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Plats" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Meddelandet verifierades men den signerades certifikat kunde inte verifieras." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Namn" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Netsape certifikatskommentar" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Netsape certifikatstyp" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Aldrig" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Ingen" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "Inte efter" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "Inte före" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Organisation" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Organisation avdelning" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "PGP Digital Signature" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "PGP Encrypted Data" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "Publik PGP-nyckel" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP Signed/Encrypted Data" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Lösenord felaktigt" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Privata nyckel" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Publik nyckel" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Publik nyckel algoritm" - -#: lib/Horde/Crypt/Smime.php:553 -#, fuzzy -msgid "Public Key Info" -msgstr "Publik nyckel" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Fel vid generering av publikt/privat nyckelpar." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "Publik RSA-nyckel (%d bitar)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "Läs meddelanden" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "Fel vid generering av publikt/privat nyckelpar." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME signatur" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME-krypterat meddelande" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Serienummer" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "Signatur" - -#: lib/Horde/Crypt/Smime.php:621 -#, fuzzy -msgid "Signature Algorithm" -msgstr "Signatur" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Gatuadress" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Efternamn" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Telefonnummer" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Den lösgjorda PGP-signaturen krävs för att verifiera det signerade " -"meddelandet." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Modulen openssl krävs av klassen Horde_Crypt_smime::." - -#: lib/Horde/Crypt/Smime.php:512 -#, fuzzy -msgid "Unable to extract certificate details" -msgstr "Certifikatsdetaljer" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Okänd" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Extension stöds inte" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "Ett fatalt fel har inträffat" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Verifiering misslyckades - meddelandet kan ha manipulerats." - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Version" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "inte implementerad" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/tr/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/tr/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/tr/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/tr/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/tr/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/tr/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,435 +0,0 @@ -# Turkish translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s Parmak İzi" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "Bir mesajın şifresini açmak için geçiş tümceciği gerekmektedir." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "İmzalanmış iletiyi doğrulamak için PGP açık anahtarı gerekmektedir." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "" -"İletiyi imzalamak için açık PGP anahtarı,özel PGP anahtarı ve geçiş " -"tümceciği gerekmektedir." - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Bir mesajı şifrelemek için S/MIME açık anahtarı gereklidir." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"İletinin şifresini çözmek için açık S/MIME anahtarı, özel S/MIME anahtarı ve " -"geçiş tümceciği gerekmektedir." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"İletiyi imzalamak için açık S/MIME anahtarı, özel S/MIME anahtarı ve geçiş " -"tümceciği gerekmektedir." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "CRL Dağıtım Noktaları" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "Onay Belgesi Ayrıntıları" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "Onay Belgesi Sahibi" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "Onay Belgesi Kuralları" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "Açıklama" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "Ortak Adı" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "Açık anahtar sunucusuna bağlantı reddedildi." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "Açık anahtar sunucusuna bağlantı reddedildi. Sebeb: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "İleti PGP ile şifrelenemedi: " - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "İleti PGP ile imzalanamadı: " - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "İleti S/MIME ile sifrelenemedi." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "İleti S/MIME ile imzalanamadı." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "PGP verisinin şifresi açılamadı: " - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "S/MIME verisinin şifresi çözülemedi." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "Alıcının elektronik posta adresi belirlenemedi." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "Anahtar sunucusundan açık anahtar edinilemedi." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "Ülke" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "E-Posta" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "Elektronik Posta Adresi" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "Geçerlilik Son Tarihi" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "Üst" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "Verilen Ad" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "Hash Algoritması" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Çıkaran" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "Anahtar Yarat" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "Anahtar Parmakizi" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "Anahtar Uzunluğu" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "Anahtar Tipi" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "Anahtar Kullanımı" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "Açık anahtar sunucusunda anahtar zaten var." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "Yer" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "" -"İleri başarıyla doğrulandı ama imzalayıcının onay belgesi doğrulanamadı." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "Mod Tabanı" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "Ad" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "Netscape Taban URL" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "Netscape CA İptal URL" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "Netscape CA kural URL" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "Netscape Yenileme RL" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "Netscape İptal URL" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "Netscape SSL sunucu adı" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Netscape onay belgesi açıklaması" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Netscape onay belgesi türü" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "Asla" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"OpenSSL ikilisine hiçbir yol bulunamadı.OpenSSL ikilisi PKCS 12 verisiyle " -"calışmak için gerekli." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "Hiçbiri" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "Sonrasında Değil" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "Öncesinde Değil" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OpenSSL hatası:İmzalanmış S/MIME parçasından veri seçip çıkatılamadı." - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "Kuruluş" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "Kurumsal Birim" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "PGP Sayısal İmza" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "PGP Şifrelenmiş Veri" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "PGP Açık Anahtarı" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP ile İmzalanmış/Şifrelenmiş Veri" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "Yanlış şifre" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "Özel Anahtar" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "Açık Anahtar" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "Açık Anahtar algoritması" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "Açık Anahtar Bilgisi" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "Açık/Özel anahtar ikilisi başarıyla yaratılamadı." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA Açık Anahtarı (%d bit)" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "Dönen hata mesajı:" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "İptal anahtarı başarıyla oluşturulamadı." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME Şifreleme İmzası" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME ile Şifrelenmiş İleti" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "Seri Numarası" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "İmza" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "İmza Algoritması" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "Eyalet veya İl" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "Sokak Adresi" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "Soyadı" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "Telefon Numarası" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "" -"Çıkartılmış PGP imza öbeği imzalanmış iletinin doğruluğunun sağlanması için " -"gerekmektedir." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Horde_Crypt_sime:: sınıfı openssl birimi için gerekmektedir." - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "Onay belgesi ayrıntıları çıkartılamıyor" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "Bilinmeyen" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "Desteklenmeyen Uzantı" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "Geçerlilik" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "Bilinmeyen bir hata oluştu." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "Doğrulama başarısız oldu - bu ileti kurcalanmış olabilir. " - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "Sürüm" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 Temel Kısıtlamaları" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 Genişletilmiş Anahtar Kullanımı" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Öteki Konu Adı" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Konu Anahtar Tanıtıcısı" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "X509v3 uzantıları" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "henüz gerçekleştirilmedi" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/uk/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/uk/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/uk/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/uk/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/uk/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/uk/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,339 +0,0 @@ -# Ukrainian translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2015-05-28 17:03+0300\n" -"PO-Revision-Date: 2015-06-01 01:27+0200\n" -"Last-Translator: Andriy Kopystyansky \n" -"Language-Team: Ukrainian \n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: lib/Horde/Crypt/Smime.php:302 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "Публічний ключ S/MIME необхідний щоб декриптувати лист." - -#: lib/Horde/Crypt/Smime.php:443 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "" -"Публічний і приватний ключі S/MIME, а також пароль необхідні для " -"декриптування листа." - -#: lib/Horde/Crypt/Smime.php:374 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"Публічний і приватний ключі S/MIME, а також пароль необхідні для підпису " -"листа." - -#: lib/Horde/Crypt/Smime.php:514 -msgid "CRL Distribution Points" -msgstr "CRL Distribution Points" - -#: lib/Horde/Crypt/Smime.php:565 -msgid "Certificate Details" -msgstr "Деталі Сертифікату" - -#: lib/Horde/Crypt/Smime.php:523 -msgid "Certificate Owner" -msgstr "Власник сертифікату" - -#: lib/Horde/Crypt/Smime.php:513 -msgid "Certificate Policies" -msgstr "Правила Сертифікату" - -#: lib/Horde/Crypt/Pgp.php:183 -msgid "Comment" -msgstr "Коментар" - -#: lib/Horde/Crypt/Smime.php:497 -msgid "Common Name" -msgstr "Власне ім'я" - -#: lib/Horde/Crypt/Pgp.php:528 -msgid "Could not PGP encrypt message." -msgstr "PGP не може закриптувати листа." - -#: lib/Horde/Crypt/Pgp.php:545 -msgid "Could not PGP sign message." -msgstr "PGP не може підписати листа." - -#: lib/Horde/Crypt/Smime.php:343 -msgid "Could not S/MIME encrypt message." -msgstr "S/MIME не може закриптувати листа." - -#: lib/Horde/Crypt/Smime.php:405 -msgid "Could not S/MIME sign message." -msgstr "S/MIME не може підписати листа." - -#: lib/Horde/Crypt/Pgp.php:628 -msgid "Could not decrypt PGP data." -msgstr "Не можу розкодувати PGP дані." - -#: lib/Horde/Crypt/Smime.php:461 -msgid "Could not decrypt S/MIME data." -msgstr "Не можу розкодувати S/MIME дані." - -#: lib/Horde/Crypt/Pgp.php:400 -msgid "Could not determine the recipient's e-mail address." -msgstr "Не можу визначити адресу e-пошти отримувача." - -#: lib/Horde/Crypt/Pgp/Keyserver.php:101 -#: lib/Horde/Crypt/Pgp/Keyserver.php:219 -msgid "Could not obtain public key from the keyserver." -msgstr "Не можу отримати відкритий ключ з сервера ключів." - -#: lib/Horde/Crypt/Smime.php:500 -msgid "Country" -msgstr "Країна" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Description" -msgstr "Опис" - -#: lib/Horde/Crypt/Pgp.php:184 -msgid "E-Mail" -msgstr "E-пошта" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Email Address" -msgstr "Адреса e-пошти" - -#: lib/Horde/Crypt/Smime.php:600 -#, php-format -msgid "Error parsing S/MIME certficate: %s" -msgstr "Помилка розбору сертифіката S/MIME: %s" - -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:678 -#: lib/Horde/Crypt/Pgp/Backend/Binary.php:688 -msgid "Error while talking to pgp binary." -msgstr "Помилка роботи з виконавчим модулем pgp." - -#: lib/Horde/Crypt/Smime.php:770 lib/Horde/Crypt/Smime.php:788 -#: lib/Horde/Crypt/Smime.php:803 -msgid "Error while talking to smime binary." -msgstr "Помилка роботи з виконавчим модулем smime." - -#: lib/Horde/Crypt/Pgp.php:181 -msgid "Expiration Date" -msgstr "Дата закінчення" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "Given Name" -msgstr "Назва" - -#: lib/Horde/Crypt/Pgp.php:185 -msgid "Hash-Algorithm" -msgstr "Хеш-алгоритм" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "Емітент" - -#: lib/Horde/Crypt/Pgp.php:180 -msgid "Key Creation" -msgstr "Створення ключа" - -#: lib/Horde/Crypt/Pgp.php:187 -msgid "Key Fingerprint" -msgstr "Штамп ключа" - -#: lib/Horde/Crypt/Pgp.php:186 -msgid "Key ID" -msgstr "ID ключа" - -#: lib/Horde/Crypt/Pgp.php:182 -msgid "Key Length" -msgstr "Довжина ключа" - -#: lib/Horde/Crypt/Pgp.php:179 -msgid "Key Type" -msgstr "Тип ключа" - -#: lib/Horde/Crypt/Smime.php:515 -msgid "Key Usage" -msgstr "Використання ключа" - -#: lib/Horde/Crypt/Pgp/Keyserver.php:137 -msgid "Key already exists on the public keyserver." -msgstr "Ключ вже існує на відкритому сервері ключів." - -#: lib/Horde/Crypt/Smime.php:502 -msgid "Location" -msgstr "Місце перебування" - -#: lib/Horde/Crypt/Smime.php:154 -msgid "" -"Message verified successfully but the signer's certificate could not be " -"verified." -msgstr "" -"Лист перевірений успішно, але сертифікат підписувача не може бути " -"перевірений." - -#: lib/Horde/Crypt/Smime.php:142 -msgid "Message verified successfully." -msgstr "Лист успішно перевірено." - -#: lib/Horde/Crypt/Pgp.php:178 -msgid "Name" -msgstr "Ім'я" - -#: lib/Horde/Crypt/Pgp.php:216 -msgid "Never" -msgstr "Ніколи" - -#: lib/Horde/Crypt/Smime.php:736 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"Не надано шлях до OpenSSL. Бінарник OpenSSL необхідний для роботи з даними " -"PKCS 12." - -#: lib/Horde/Crypt/Pgp.php:218 lib/Horde/Crypt/Pgp.php:219 -msgid "None" -msgstr "Жодна" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Not After" -msgstr "Не після" - -#: lib/Horde/Crypt/Smime.php:546 -msgid "Not Before" -msgstr "Не перед" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OpenSSL помилка: Не можу витягнути дані з підписаної частини S/MIME." - -#: lib/Horde/Crypt/Smime.php:498 -msgid "Organisation" -msgstr "Організація" - -#: lib/Horde/Crypt/Smime.php:499 -msgid "Organisational Unit" -msgstr "Підрозділ" - -#: lib/Horde/Crypt/Pgp.php:704 -msgid "PGP Digital Signature" -msgstr "Цифровий підпис PGP" - -#: lib/Horde/Crypt/Pgp.php:761 -msgid "PGP Encrypted Data" -msgstr "Закриптовані дані PGP" - -#: lib/Horde/Crypt/Pgp.php:835 -msgid "PGP Public Key" -msgstr "Відкритий ключ PGP" - -#: lib/Horde/Crypt/Pgp.php:813 -msgid "PGP Signed/Encrypted Data" -msgstr "Дані Підписані/Закодовані PGP" - -#: lib/Horde/Crypt/Smime.php:775 -msgid "Password incorrect" -msgstr "Пароль невірний" - -#: lib/Horde/Crypt/Pgp.php:214 -msgid "Private Key" -msgstr "Приватний ключ" - -#: lib/Horde/Crypt/Pgp.php:214 -msgid "Public Key" -msgstr "Відкритий ключ" - -#: lib/Horde/Crypt/Pgp.php:95 -msgid "Public/Private keypair not generated successfully." -msgstr "Відкритий/Закритий ключі не згенеровані успішно." - -#: lib/Horde/Crypt/Smime.php:272 -msgid "S/MIME Encrypted Message" -msgstr "S/MIME закодований лист" - -#: lib/Horde/Crypt/Smime.php:225 -msgid "S/MIME Signature" -msgstr "Підпис S/MIME" - -#: lib/Horde/Crypt/Smime.php:567 -msgid "Serial Number" -msgstr "Серійний номер" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "State or Province" -msgstr "Область або Регіон" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "Street Address" -msgstr "Вулиця (адреса)" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Surname" -msgstr "Прізвище" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "Telephone Number" -msgstr "Номер телефону" - -#: lib/Horde/Crypt/Smime.php:665 -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Модуль openssl необхідний для класу Horde_Crypt_Smime:: ." - -#: lib/Horde/Crypt/Pgp.php:654 -msgid "Unable to determine if data was encrypted symmetrically." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:220 lib/Horde/Crypt/Pgp.php:221 -#: lib/Horde/Crypt/Pgp.php:222 -msgid "Unknown" -msgstr "Невідомий" - -#: lib/Horde/Crypt/Smime.php:545 -msgid "Validity" -msgstr "Дійсність" - -#: lib/Horde/Crypt/Smime.php:149 -msgid "Verification failed - an unknown error has occurred." -msgstr "Перевірка невдала - трапилась невідома помилка." - -#: lib/Horde/Crypt/Smime.php:151 -msgid "Verification failed - this message may have been tampered with." -msgstr "Перевірка невдала - цей лист може бути підробкою." - -#: lib/Horde/Crypt/Smime.php:566 -msgid "Version" -msgstr "Версія" - -#: lib/Horde/Crypt/Smime.php:510 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 Базові обмеження" - -#: lib/Horde/Crypt/Smime.php:509 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 розширенне використання ключа" - -#: lib/Horde/Crypt/Smime.php:511 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 Інше ім'я теми" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 Ідентифікатор ключа Об'єкта" - -#: lib/Horde/Crypt/Smime.php:552 -msgid "X509v3 extensions" -msgstr "Розширення X509v3" - -#: lib/Horde/Crypt/Smime.php:654 -msgid "not yet implemented" -msgstr "наразі не реалізовано" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/zh_CN/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/zh_CN/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,427 +0,0 @@ -# Chinese translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s 指纹" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "需要密码才可以解密邮件。" - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "需要 PGP 公钥来验证签名邮件。" - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "需要 PGP 公钥、私钥和密码来签署邮件。" - -#: lib/Horde/Crypt/Smime.php:311 -#, fuzzy -msgid "A public S/MIME key is required to encrypt a message." -msgstr "需要 S/MIME 公钥来加密邮件。" - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "需要 S/MIME 公钥、S/MIME 私钥和密码来解密邮件。" - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "需要 S/MIME 公钥、S/MIME 私钥和密码来签署邮件。" - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "CRL 分发点" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "证书详情" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "证书所有者" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "证书政策" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "注释" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "常用名" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "连接公钥服务器被拒。" - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "连接公钥服务器被拒。原因:%s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "无法使用 PGP 加密邮件:" - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "无法使用 PGP 签署邮件: " - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "无法使用 S/MIME 加密邮件。" - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "无法使用 S/MIME 签署邮件。" - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "无法解密 PGP 数据:" - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "无法解密 S/MIME 数据。" - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "无法确定收件人电子邮件地址。" - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "无法从证书服务器获取公钥。" - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "国家" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "电子邮件" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "电子邮件地址" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "过期日" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "说明" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "名字" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "哈希算法" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "发行者" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "创建密钥" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "密钥特征" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "密钥长度" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "密钥类型" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "密钥语法" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "密钥已在公钥服务器中。" - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "地区" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "邮件验证成功,但签名者的证书验证失败。" - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "模数" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "姓名" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "Netscape Base URL" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "Netscape CA 证书撤销 URL" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "Netscape CA 策略 URL" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "Netscape 续订 URL" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "Netscape 证书撤销 URL" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "Netscape SSL服务器名称" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Netscape 证书注释" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Netscape 证书类型" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "永不" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"未提供 OpenSSL 二进制库路径。OpenSSL 二进制库需要和 PKCS 12 数据搭配工作。" - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "无" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "不在此之后" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "不在此之前" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OpenSSL 错误:无法从已签名的 S/MIME 部分抽取数据。" - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "组织" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "组织单位" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "PGP 数字签名" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "PGP 加密数据" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "PGP 公钥" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP 已签名/已加密数据" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "密码错误" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "私钥" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "公钥" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "公钥算法" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "公钥信息" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "未成功生成公钥/私钥对。" - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA 公钥 (%d 位)" - -#: lib/Horde/Crypt/Pgp.php:227 -#, fuzzy -msgid "Returned error message:" -msgstr "阅读邮件" - -#: lib/Horde/Crypt/Pgp.php:1644 -#, fuzzy -msgid "Revocation key not generated successfully." -msgstr "未成功生成公钥/私钥对。" - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME 加密签名" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "使用 S/MIME 加密的邮件" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "序列号" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "签名" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "签名算法" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "地区或省" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "街道地址" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "别名" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "电话号码" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "验证签名邮件需要有已解开的 PGP 区。" - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Horde_Crypt_smime:: 类需要 openssl 模块。" - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "无法获取证书详情" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "未知" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "不支持的扩展" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "有效性" - -#: lib/Horde/Crypt/Smime.php:191 -#, fuzzy -msgid "Verification failed - an unknown error has occurred." -msgstr "出现未知错误。" - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "验证失败 - 此邮件可能已被他人篡改。" - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "版本" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 基本限制" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 密钥扩展用途" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 用户备用名" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 用户的公钥标识" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "X509v3 扩展项" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "仍未实现" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/zh_TW/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/zh_TW/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 @@ -1,424 +0,0 @@ -# Chinese translations for Horde_Crypt module. -# Copyright 2010-2017 Horde LLC (http://www.horde.org/) -# This file is distributed under the same license as the Horde_Crypt module. -# Automatically generated, 2010. -# -msgid "" -msgstr "" -"Project-Id-Version: Horde_Crypt\n" -"Report-Msgid-Bugs-To: dev@lists.horde.org\n" -"POT-Creation-Date: 2010-10-13 01:27+0200\n" -"PO-Revision-Date: 2010-10-13 01:27+0200\n" -"Last-Translator: Automatically generated\n" -"Language-Team: i18n@lists.horde.org\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: lib/Horde/Crypt/Smime.php:614 -#, php-format -msgid "%s Fingerprint" -msgstr "%s 指紋" - -#: lib/Horde/Crypt/Pgp.php:1240 -msgid "A passphrase is required to decrypt a message." -msgstr "欲加密郵件,還需要有一組密碼." - -#: lib/Horde/Crypt/Pgp.php:1307 -msgid "A public PGP key is required to verify a signed message." -msgstr "欲驗證已簽章的郵件,還需要有一個 PGP 公開金鑰." - -#: lib/Horde/Crypt/Pgp.php:1164 -msgid "" -"A public PGP key, private PGP key, and passphrase are required to sign a " -"message." -msgstr "欲執行郵件簽章,還需要有一個公開 PGP 金鑰,私密 PGP 金鑰,以及通關口令." - -#: lib/Horde/Crypt/Smime.php:311 -msgid "A public S/MIME key is required to encrypt a message." -msgstr "欲加密郵件,還需要有一個 SMIME 公開金鑰." - -#: lib/Horde/Crypt/Smime.php:422 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to " -"decrypt a message." -msgstr "欲解密郵件,還需要有一個公開 SMIME 金鑰,私密 SMIME 金鑰,以及通關口令." - -#: lib/Horde/Crypt/Smime.php:360 -msgid "" -"A public S/MIME key, private S/MIME key, and passphrase are required to sign " -"a message." -msgstr "" -"欲執行郵件簽章,還需要有一個公開 S/MIME 金鑰,私密 S/MIME 金鑰,以及通關口令." - -#: lib/Horde/Crypt/Smime.php:506 -msgid "CRL Distribution Points" -msgstr "CRL 分部點" - -#: lib/Horde/Crypt/Smime.php:609 -msgid "Certificate Details" -msgstr "憑證細節" - -#: lib/Horde/Crypt/Smime.php:520 -msgid "Certificate Owner" -msgstr "憑證擁有者" - -#: lib/Horde/Crypt/Smime.php:505 -msgid "Certificate Policies" -msgstr "憑證政策" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Comment" -msgstr "評論" - -#: lib/Horde/Crypt/Smime.php:475 -msgid "Common Name" -msgstr "稱呼" - -#: lib/Horde/Crypt/Pgp.php:939 -msgid "Connection refused to the public keyserver." -msgstr "連結至公開金鑰伺服器時遭拒." - -#: lib/Horde/Crypt/Pgp.php:950 -#, php-format -msgid "Connection refused to the public keyserver. Reason: %s (%s)" -msgstr "連結至公開金鑰伺服器時遭拒. 原因: %s (%s)" - -#: lib/Horde/Crypt/Pgp.php:1132 -msgid "Could not PGP encrypt message: " -msgstr "無法以 PGP 加密郵件: " - -#: lib/Horde/Crypt/Pgp.php:1201 -msgid "Could not PGP sign message: " -msgstr "無法以 PGP 執行郵件簽章: " - -#: lib/Horde/Crypt/Smime.php:330 -msgid "Could not S/MIME encrypt message." -msgstr "無法以 S/MIME 加密郵件." - -#: lib/Horde/Crypt/Smime.php:391 -msgid "Could not S/MIME sign message." -msgstr "無法為 S/MIME 郵件簽章." - -#: lib/Horde/Crypt/Pgp.php:1276 -msgid "Could not decrypt PGP data: " -msgstr "無法解密 PGP 資料: " - -#: lib/Horde/Crypt/Smime.php:440 -msgid "Could not decrypt S/MIME data." -msgstr "無法解密 S/MIME 資料." - -#: lib/Horde/Crypt/Pgp.php:659 -msgid "Could not determine the recipient's e-mail address." -msgstr "無法決定收件人的電子郵件位址." - -#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 -msgid "Could not obtain public key from the keyserver." -msgstr "無法自金鑰伺服器取得公開金鑰." - -#: lib/Horde/Crypt/Smime.php:478 -msgid "Country" -msgstr "國家" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "E-Mail" -msgstr "電子郵件" - -#: lib/Horde/Crypt/Smime.php:474 -msgid "Email Address" -msgstr "電子郵件住址" - -#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 -msgid "Error while talking to pgp binary." -msgstr "" - -#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 -#: lib/Horde/Crypt/Smime.php:1284 -msgid "Error while talking to smime binary." -msgstr "" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Expiration Date" -msgstr "到期日" - -#: lib/Horde/Crypt/Smime.php:586 -msgid "Exponent" -msgstr "解說員" - -#: lib/Horde/Crypt/Smime.php:484 -msgid "Given Name" -msgstr "名稱" - -#: lib/Horde/Crypt/Pgp.php:426 -msgid "Hash-Algorithm" -msgstr "雜湊-演算" - -#: lib/Horde/Crypt/Smime.php:534 -msgid "Issuer" -msgstr "簽發者" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Creation" -msgstr "金鑰建立" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key Fingerprint" -msgstr "金鑰特徵" - -#: lib/Horde/Crypt/Pgp.php:427 -msgid "Key ID" -msgstr "金鑰識別號碼" - -#: lib/Horde/Crypt/Pgp.php:425 -msgid "Key Length" -msgstr "金鑰長度" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Key Type" -msgstr "金鑰型態" - -#: lib/Horde/Crypt/Smime.php:507 -msgid "Key Usage" -msgstr "金鑰語法" - -#: lib/Horde/Crypt/Pgp.php:782 -msgid "Key already exists on the public keyserver." -msgstr "目前的公開金鑰伺服器中,已經存在你的金鑰." - -#: lib/Horde/Crypt/Smime.php:480 -msgid "Location" -msgstr "地區" - -#: lib/Horde/Crypt/Smime.php:189 -msgid "" -"Message Verified Successfully but the signer's certificate could not be " -"verified." -msgstr "郵件驗證已完成,但是使用者的簽章卻無法通過驗證." - -#: lib/Horde/Crypt/Smime.php:583 -msgid "Modulus" -msgstr "模組" - -#: lib/Horde/Crypt/Pgp.php:424 -msgid "Name" -msgstr "名稱" - -#: lib/Horde/Crypt/Smime.php:490 -msgid "Netscape Base URL" -msgstr "Netscape 為基礎的網址" - -#: lib/Horde/Crypt/Smime.php:492 -msgid "Netscape CA Revocation URL" -msgstr "Netscape 憑證作廢網址" - -#: lib/Horde/Crypt/Smime.php:494 -msgid "Netscape CA policy URL" -msgstr "Netscape 憑證政策網址" - -#: lib/Horde/Crypt/Smime.php:493 -msgid "Netscape Renewal URL" -msgstr "Netscape 更新網址" - -#: lib/Horde/Crypt/Smime.php:491 -msgid "Netscape Revocation URL" -msgstr "Netscape 作廢網址" - -#: lib/Horde/Crypt/Smime.php:495 -msgid "Netscape SSL server name" -msgstr "Netscape SSL 伺服器名稱" - -#: lib/Horde/Crypt/Smime.php:496 -msgid "Netscape certificate comment" -msgstr "Netscape 憑證的註解" - -#: lib/Horde/Crypt/Smime.php:489 -msgid "Netscape certificate type" -msgstr "Netscape 憑證型態" - -#: lib/Horde/Crypt/Pgp.php:449 -msgid "Never" -msgstr "從未" - -#: lib/Horde/Crypt/Smime.php:1217 -msgid "" -"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " -"work with PKCS 12 data." -msgstr "" -"未輸入 OpenSSL 二元執行檔的全路徑. PKCS 12 規格的加密資料需要用到該程式." - -#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 -msgid "None" -msgstr "無" - -#: lib/Horde/Crypt/Smime.php:549 -msgid "Not After" -msgstr "非之後" - -#: lib/Horde/Crypt/Smime.php:548 -msgid "Not Before" -msgstr "非之前" - -#: lib/Horde/Crypt/Smime.php:231 -msgid "OpenSSL error: Could not extract data from signed S/MIME part." -msgstr "OpenSSL 錯誤: 無法從 S/MIME 簽章附件解開資料." - -#: lib/Horde/Crypt/Smime.php:476 -msgid "Organisation" -msgstr "組織" - -#: lib/Horde/Crypt/Smime.php:477 -msgid "Organisational Unit" -msgstr "組織單位" - -#: lib/Horde/Crypt/Pgp.php:1406 -msgid "PGP Digital Signature" -msgstr "PGP 數位簽章" - -#: lib/Horde/Crypt/Pgp.php:1450 -msgid "PGP Encrypted Data" -msgstr "PGP 加密資料" - -#: lib/Horde/Crypt/Pgp.php:1511 -msgid "PGP Public Key" -msgstr "PGP 公開金鑰" - -#: lib/Horde/Crypt/Pgp.php:1493 -msgid "PGP Signed/Encrypted Data" -msgstr "PGP 已簽章/已加密 資料" - -#: lib/Horde/Crypt/Smime.php:1256 -msgid "Password incorrect" -msgstr "密碼不正確" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Private Key" -msgstr "私密金鑰" - -#: lib/Horde/Crypt/Pgp.php:447 -msgid "Public Key" -msgstr "公開金鑰" - -#: lib/Horde/Crypt/Smime.php:554 -msgid "Public Key Algorithm" -msgstr "公開金鑰演算" - -#: lib/Horde/Crypt/Smime.php:553 -msgid "Public Key Info" -msgstr "公開金鑰資訊" - -#: lib/Horde/Crypt/Pgp.php:225 -msgid "Public/Private keypair not generated successfully." -msgstr "公開/私密金鑰對並未被產生." - -#: lib/Horde/Crypt/Smime.php:572 -#, php-format -msgid "RSA Public Key (%d bit)" -msgstr "RSA 公開金鑰 (%d 位元)" - -#: lib/Horde/Crypt/Pgp.php:227 -msgid "Returned error message:" -msgstr "已回傳的錯誤訊息:" - -#: lib/Horde/Crypt/Pgp.php:1644 -msgid "Revocation key not generated successfully." -msgstr "撤銷金鑰對並未被產生." - -#: lib/Horde/Crypt/Smime.php:252 -msgid "S/MIME Cryptographic Signature" -msgstr "S/MIME 加密簽章" - -#: lib/Horde/Crypt/Smime.php:283 -msgid "S/MIME Encrypted Message" -msgstr "郵件已使用 S/MIME 加密" - -#: lib/Horde/Crypt/Smime.php:611 -msgid "Serial Number" -msgstr "序號" - -#: lib/Horde/Crypt/Smime.php:622 -msgid "Signature" -msgstr "簽章" - -#: lib/Horde/Crypt/Smime.php:621 -msgid "Signature Algorithm" -msgstr "簽章演算" - -#: lib/Horde/Crypt/Smime.php:479 -msgid "State or Province" -msgstr "省" - -#: lib/Horde/Crypt/Smime.php:481 -msgid "Street Address" -msgstr "街道" - -#: lib/Horde/Crypt/Smime.php:483 -msgid "Surname" -msgstr "綽號" - -#: lib/Horde/Crypt/Smime.php:482 -msgid "Telephone Number" -msgstr "電話號碼" - -#: lib/Horde/Crypt/Pgp.php:1311 -msgid "" -"The detached PGP signature block is required to verify the signed message." -msgstr "驗證郵件簽章需要有一個已解開的 PGP 區塊." - -#: lib/Horde/Crypt/Smime.php:1146 -#, fuzzy -msgid "The openssl module is required for the Horde_Crypt_Smime:: class." -msgstr "Horde_Crypt_smime:: 類別,必需要有 openssl 模組." - -#: lib/Horde/Crypt/Smime.php:512 -msgid "Unable to extract certificate details" -msgstr "無法解開憑證細節" - -#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 -#: lib/Horde/Crypt/Pgp.php:455 -msgid "Unknown" -msgstr "未知的" - -#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 -#: lib/Horde/Crypt/Smime.php:850 -msgid "Unsupported Extension" -msgstr "未支援的副檔名" - -#: lib/Horde/Crypt/Smime.php:547 -msgid "Validity" -msgstr "有效性" - -#: lib/Horde/Crypt/Smime.php:191 -msgid "Verification failed - an unknown error has occurred." -msgstr "驗證失敗 - 發生了一個未知的錯誤." - -#: lib/Horde/Crypt/Smime.php:193 -msgid "Verification failed - this message may have been tampered with." -msgstr "驗證失敗 - 此郵件可能已遭人擅自篡改." - -#: lib/Horde/Crypt/Smime.php:610 -msgid "Version" -msgstr "版本" - -#: lib/Horde/Crypt/Smime.php:502 -msgid "X509v3 Basic Constraints" -msgstr "X509v3 基本限制" - -#: lib/Horde/Crypt/Smime.php:501 -msgid "X509v3 Extended Key Usage" -msgstr "X509v3 延伸金鑰語法" - -#: lib/Horde/Crypt/Smime.php:503 -msgid "X509v3 Subject Alternative Name" -msgstr "X509v3 主旨替代名稱" - -#: lib/Horde/Crypt/Smime.php:504 -msgid "X509v3 Subject Key Identifier" -msgstr "X509v3 主旨金鑰識別者" - -#: lib/Horde/Crypt/Smime.php:592 -msgid "X509v3 extensions" -msgstr "X509v3 副檔名" - -#: lib/Horde/Crypt/Smime.php:1135 -msgid "not yet implemented" -msgstr "尚未實作." diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/AllTests.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/AllTests.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/AllTests.php 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/AllTests.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -run(); diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/bootstrap.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/bootstrap.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/bootstrap.php 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/bootstrap.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,3 +0,0 @@ -|~\{[]} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_encrypted_symmetric.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_encrypted_symmetric.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_encrypted_symmetric.txt 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_encrypted_symmetric.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ ------BEGIN PGP MESSAGE----- -Version: GnuPG v1.4.5 (GNU/Linux) - -jA0EAwMC8w6TJuJ4zhBgyYdWhfV8CJIOWg2IHcVVngMH5xHp7eiESg753YuwYaCJ -bYR4pItctfQbRDVhlQXqveO6SZCv9WJVrtiUBIo0N4r3p2Hsx0gL34MgLW02xpTc -4CfPwB+3VNeSTym5unWvVsB4VAuW78Xvc8fw6tjZnTPNUqA2IfH30gkpfnzBwcno -lNMhxacLMXE= -=N1Bk ------END PGP MESSAGE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_encrypted.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_encrypted.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_encrypted.txt 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_encrypted.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ ------BEGIN PGP MESSAGE----- -Version: GnuPG v1.4.5 (GNU/Linux) - -hQEOAyTtKXee8HSpEAP6Aj5+9VlYxyMQepJxeejXHePK58xs6jSv1oUn/I4zjdW3 -XKvXAGy/2dQdYLOFHCfMqzLx2cKPh/UL5+M89p/oSIXpeWz2anxrt/1JxnQHSIaD -n88jQ/H6Es07wGbJ41RvM8n4aobdVXVk9ujLi1nk4/2Pi2Ped22I6aAi3eO+dRED -/An4L6SCmFFdqTphEjIHRSeqf6QVp/tjdnYXMkMrqVJGtFSsvfrbhF7RGyWVQra3 -rEZdnJaPPF6CwtG99akP38I6iQ0c9GqWX8/VfAYaQyeqKkDJpdzfN8Pe9Z8Q9XVs -/qQXaIM2QxSen7K8qEC5WBah/ZOWpSrWSlk+fM65AXaS0qUBwvQoHi2/tjijfGZD -uKt4cYNal3aZLeDNWry+nGO2mckjCYsOiyerPOYPU84OvygndcOR8Y8r8+/No8IA -vCzvSVygJ0MCvq0QtIXRF8XDVQJt5eSAo18Tb4yfc6cU/NKWApY0/92OPAiRu3sA -NdxJM6Whb1cDsfAIOPT9sX4yM2K7JmnoxP8owOtu/ViwvIkWiJ55+dPNUVFG3cAf -KUjSRnwgJrg= -=RtGk ------END PGP MESSAGE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_private.asc php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_private.asc --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_private.asc 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_private.asc 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ ------BEGIN PGP PRIVATE KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -lQHhBETcWvARBADNitbvsWy5/hhV+WcU2ttmtXkAj2DqJVgJdGS2RH8msO0roG5j -CQK/e0iMJki5lfdgxvxxWgStYMnfF5ftgWA7JV+BZUzJt12Lobm0zdENv2TqL2vc -xlPTmEGsvfPDTbY+Gr3jvuODboXat7bUn2E723WXPdh2A7KNNnLou7JF2wCgiKs/ -RqNKM/Zm01PxLbQ+rs9ghd0D/jLUfJeYWySoDsvfO8e4UyDxDVTBLkkdw3XzLx1F -4SS/Cc2Z9yJuXiepzSH/G/vhdN5ROv12kJwA4FbwsFv5C1uCQleWiPngFixca9Nw -lAd2X2Cp0/4D2XRq1M9dEbcYdrgAuyzt2ZToj3aFaYNGwjfHoLqSngOu6/d3KD1d -i0b2A/9wnXo41kPwS73gU1Un2KKMkKqnczCQHdpopO6NjKaLhNcouRauLrgbrS5y -A1CW+nxjkKVvWrP/VFBmapUpjE1C51J9P0/ub8tRr7H0xHdTQyufv01lmfkjUpVF -n3GVf95l4seBFzD7r580aTx+dJztoHEGWrsWZTNJwo6IIlFOIf4DAwKhFBeOUwqs -hWA4x/9ffd4UC9JengF978ktHEm4RtB+5QS2angOVMG4mHqkeQobo2qEta2lciQQ -aqeJ5rQlTXkgTmFtZSAoTXkgQ29tbWVudCkgPG1lQGV4YW1wbGUuY29tPohgBBMR -AgAgBQJE3FrwAhsjBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQfKdEJrreq9fi -vACeLBcWErSQU4ZGQsjedhwfdst9cLQAnRETpwmqt/XvcGFVsOE28MUrUzOGnQFX -BETcWvAQBADNgIJ4nDlfgBOI/iqyNy08C9+MjxrqMylrj4TPn3rRk8wySr2myX+j -9CML5EHOtsxANYeI9u7hOF11n5Z8fDht/WGJrNR7EtRhNN6mkKsPaEuO3fhz6Egw -JYReUVzDJbvnV2fRCvQoEGaSntZGQaQzIzIL+/gMEFpEVRK1P2I3VwADBQP+K2Rm -mkm3DonXFlUUDWWdhEF4b7fy5/IPj41PSSOdo0IP4dprFoe15Vs9gWOYvzcnjy+B -bOwhVwsjE3F36hf04od3uTSM0dLS/xmpSvgbBh181T5c3W5aKT/daVhyxXJ4csxE -+JCVKbaBubne0DPEuyZjrYlL5Lm0z3VhNCcR0Lz+AwMCoRQXjlMKrIVgzwaI65oM -T4XCFhFGk67RoJ4D1I4R/7pXZffFhdCHsPzZBHqsadyC0chmu2ZoYtIcOxxSQmzc -4swO7XC5lohJBBgRAgAJBQJE3FrwAhsMAAoJEHynRCa63qvXpjcAoIeCpIKzYgIj -AfGSLg/OfLBCU3xMAJ9V3CCBw+tP458WDRprIE+SbhUY8Q== -=41gN ------END PGP PRIVATE KEY BLOCK----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_public.asc php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_public.asc --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_public.asc 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_public.asc 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG v1.4.5 (GNU/Linux) - -mQGiBETcWvARBADNitbvsWy5/hhV+WcU2ttmtXkAj2DqJVgJdGS2RH8msO0roG5j -CQK/e0iMJki5lfdgxvxxWgStYMnfF5ftgWA7JV+BZUzJt12Lobm0zdENv2TqL2vc -xlPTmEGsvfPDTbY+Gr3jvuODboXat7bUn2E723WXPdh2A7KNNnLou7JF2wCgiKs/ -RqNKM/Zm01PxLbQ+rs9ghd0D/jLUfJeYWySoDsvfO8e4UyDxDVTBLkkdw3XzLx1F -4SS/Cc2Z9yJuXiepzSH/G/vhdN5ROv12kJwA4FbwsFv5C1uCQleWiPngFixca9Nw -lAd2X2Cp0/4D2XRq1M9dEbcYdrgAuyzt2ZToj3aFaYNGwjfHoLqSngOu6/d3KD1d -i0b2A/9wnXo41kPwS73gU1Un2KKMkKqnczCQHdpopO6NjKaLhNcouRauLrgbrS5y -A1CW+nxjkKVvWrP/VFBmapUpjE1C51J9P0/ub8tRr7H0xHdTQyufv01lmfkjUpVF -n3GVf95l4seBFzD7r580aTx+dJztoHEGWrsWZTNJwo6IIlFOIbQlTXkgTmFtZSAo -TXkgQ29tbWVudCkgPG1lQGV4YW1wbGUuY29tPohgBBMRAgAgBQJE3FrwAhsjBgsJ -CAcDAgQVAggDBBYCAwECHgECF4AACgkQfKdEJrreq9fivACeLBcWErSQU4ZGQsje -dhwfdst9cLQAnRETpwmqt/XvcGFVsOE28MUrUzOGuQENBETcWvAQBADNgIJ4nDlf -gBOI/iqyNy08C9+MjxrqMylrj4TPn3rRk8wySr2myX+j9CML5EHOtsxANYeI9u7h -OF11n5Z8fDht/WGJrNR7EtRhNN6mkKsPaEuO3fhz6EgwJYReUVzDJbvnV2fRCvQo -EGaSntZGQaQzIzIL+/gMEFpEVRK1P2I3VwADBQP+K2Rmmkm3DonXFlUUDWWdhEF4 -b7fy5/IPj41PSSOdo0IP4dprFoe15Vs9gWOYvzcnjy+BbOwhVwsjE3F36hf04od3 -uTSM0dLS/xmpSvgbBh181T5c3W5aKT/daVhyxXJ4csxE+JCVKbaBubne0DPEuyZj -rYlL5Lm0z3VhNCcR0LyISQQYEQIACQUCRNxa8AIbDAAKCRB8p0Qmut6r16Y3AJ9h -umO5uT5yDcir3zwqUAxzBAkE4ACcCtGfb6usaTKnNXo+ZuLoHiOwIE4= -=GCjU ------END PGP PUBLIC KEY BLOCK----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signature.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signature.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signature.txt 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signature.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.5 (GNU/Linux) - -iD8DBQBE3JdufKdEJrreq9cRAhQ2AJ44XNI1uKRJB2KR3EvhUCcIKQwJ0wCfRsjv -5pAbY1qypr+8m0ZHJJcpubE= -=F0tK ------END PGP SIGNATURE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signed2.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signed2.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signed2.txt 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signed2.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ ------BEGIN PGP MESSAGE----- -Version: GnuPG v1.4.5 (GNU/Linux) - -owGbwMvMwCRYs9xFbde91dcZT79MYnC5M0XBwNDI2MTUzNzCEj+LKyQjVaGwNDM5 -WyGpKL88TyEtv0IhqzS3oFghvyy1SKEEKJ2TWFWpkJKfrjeqmD6KFSgxeRoVHU10 -KlJUUlmuqqahaWsft2VDgrayrp6Olnq8lbWNXU1dTHV0bC1Xhx0zKzhlwpKqIFPg -ZIYZfd+39c/3v2Hbbi9tZT5P+o/7eyOGuVJ6rUZsLHVikwvyfuc/2lPb3Cv/CwA= -=Cw7w ------END PGP MESSAGE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signed.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signed.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signed.txt 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/pgp_signed.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -0123456789012345678901234567890123456789 -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -0123456789012345678901234567890123456789 -!"$%&()=?^`+#-.,*'_:;<>|~\{[]} ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.5 (GNU/Linux) - -iD8DBQFE3JNgfKdEJrreq9cRAm4lAJ48IbiwbO4ToXa2BrJaAZAFt43AiACZATs+ -gnfrwrK41BzMWmVRhtjB1Po= -=5HXb ------END PGP SIGNATURE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/smime_subjectAltName.pem php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/smime_subjectAltName.pem --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/smime_subjectAltName.pem 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/fixtures/smime_subjectAltName.pem 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDGzCCAoSgAwIBAgIJAO0Hyim1pgtmMA0GCSqGSIb3DQEBBQUAMFIxCzAJBgNV -BAYTAlVTMRYwFAYDVQQIEw1NYXNzYWNodXNldHRzMQ8wDQYDVQQHEwZCb3N0b24x -GjAYBgNVBAoTEVRoZSBIb3JkZSBQcm9qZWN0MB4XDTA3MTIyODIyMDQwN1oXDTA4 -MDEyNzIyMDQwN1owUjELMAkGA1UEBhMCVVMxFjAUBgNVBAgTDU1hc3NhY2h1c2V0 -dHMxDzANBgNVBAcTBkJvc3RvbjEaMBgGA1UEChMRVGhlIEhvcmRlIFByb2plY3Qw -gZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOKFM64qxeVqHmfxxhBzE/zCgqzA -8c5JxJc2YYfKPCkQWGozRfUq45YDV4CsfJNgGMbjYdOe2cQOMpofdWgobD1xnKid -mmwRvxTuqjOhjx020VFOMuq0t8tl7dYPrsQcNl+9g7Pg2mG2oC768NQHgP6GnZgH -LPxkfEaDDVrqjSyFAgMBAAGjgfgwgfUwQQYDVR0RBDowOIERdGVzdDFAZXhhbXBs -ZS5jb22BEXRlc3QyQGV4YW1wbGUuY29tgRB0ZXN0QGV4YW1wbGUuY29tMB0GA1Ud -DgQWBBReeRq4wDuMdSnGMChBJCSzXmGxTTCBggYDVR0jBHsweYAUXnkauMA7jHUp -xjAoQSQks15hsU2hVqRUMFIxCzAJBgNVBAYTAlVTMRYwFAYDVQQIEw1NYXNzYWNo -dXNldHRzMQ8wDQYDVQQHEwZCb3N0b24xGjAYBgNVBAoTEVRoZSBIb3JkZSBQcm9q -ZWN0ggkA7QfKKbWmC2YwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQDN -ZR6muF28V3EdsUAwIw7JuZSGMnmZJdKz+b/aNGbK40iZY29OGmEnhy3qBFQHTQY3 -jSpLszDH3l9ZSLNjhoOmnm1TydCMAW4/7dQny7ONx/CFS3r9vHxBNreNk+ZmJgDJ -ASZwyX6IszJ1a3k4t+N3KY9+ZzSISIHJTPZZPzJiRA== ------END CERTIFICATE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/Pgp/BinaryTest.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/Pgp/BinaryTest.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/Pgp/BinaryTest.php 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/Pgp/BinaryTest.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ - - * @category Horde - * @copyright 2015-2016 Horde LLC - * @ignore - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @subpackage UnitTests - */ -class Horde_Crypt_Pgp_BinaryTest -extends Horde_Crypt_Pgp_TestBase -{ - protected function _setUp() - { - $c = self::getConfig('CRYPTPGP_TEST_CONFIG', __DIR__ . '/../'); - $gnupg = isset($c['gnupg']) - ? $c['gnupg'] - : '/usr/bin/gpg'; - - if (!is_executable($gnupg)) { - $this->markTestSkipped(sprintf( - 'GPG binary not found at %s.', - $gnupg - )); - } - - $backends = array(new Horde_Crypt_Pgp_Backend_Binary($gnupg)); - if (!empty($c['gnupg2'])) { - $backends[] = new Horde_Crypt_Pgp_Backend_Binary($c['gnupg2']); - } - - return $backends; - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/Pgp/TestBase.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/Pgp/TestBase.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/Pgp/TestBase.php 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/Pgp/TestBase.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,623 +0,0 @@ - - * @category Horde - * @copyright 2015-2016 Horde LLC - * @ignore - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @subpackage UnitTests - */ -abstract class Horde_Crypt_Pgp_TestBase -extends Horde_Test_Case -{ - private $_language; - - /* Returns the list of backends to test. */ - abstract protected function _setUp(); - - protected function setUp() - { - @date_default_timezone_set('GMT'); - $this->_language = getenv('LANGUAGE'); - } - - protected function tearDown() - { - putenv('LANGUAGE=' . $this->_language); - } - - public function backendProvider() - { - $pgp = array(); - foreach ($this->_setUp() as $backend) { - $pgp[] = array(Horde_Crypt::factory('Pgp', array( - 'backends' => array($backend) - ))); - } - return $pgp; - } - - /** - * @dataProvider backendProvider - */ - public function testBug6601($pgp) - { - $data = $this->_getFixture('bug_6601.asc'); - - putenv('LANGUAGE=C'); - $this->assertEquals( -'Name: Richard Selsky -Key Type: Public Key -Key Creation: 04/11/08 -Expiration Date: 04/11/13 -Key Length: 1024 Bytes -Comment: [None] -E-Mail: rselsky@bu.edu -Hash-Algorithm: pgp-sha1 -Key ID: 0xF3C01D42 -Key Fingerprint: 5912D91D4C79C6701FFF148604A67B37F3C01D42 - -', - $pgp->pgpPrettyKey($data) - ); - } - - /** - * decrypt() message - * - * @dataProvider backendProvider - */ - public function testPgpDecrypt($pgp) - { - // Encrypted data is in ISO-8859-1 format - $crypt = $this->_getFixture('pgp_encrypted.txt'); - - $decrypt = $pgp->decrypt($crypt, array( - 'passphrase' => 'Secret', - 'privkey' => $this->_getPrivateKey(), - 'pubkey' => $this->_getPublicKey(), - 'type' => 'message' - )); - - $this->assertEquals( -'0123456789012345678901234567890123456789 -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -0123456789012345678901234567890123456789 -!"$§%&()=?^´°`+#-.,*\'_:;<>|~\{[]} - -', - Horde_String::convertCharset($decrypt->message, 'ISO-8859-1', 'UTF-8') - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpDecryptSymmetric($pgp) - { - // Encrypted data is in ISO-8859-1 format - $crypt = $this->_getFixture('pgp_encrypted_symmetric.txt'); - - $decrypt = $pgp->decrypt($crypt, array( - 'passphrase' => 'Secret', - 'type' => 'message' - )); - - $this->assertEquals( -'0123456789012345678901234567890123456789 -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -0123456789012345678901234567890123456789 -!"$§%&()=?^´°`+#-.,*\'_:;<>|~\{[]} -', - Horde_String::convertCharset($decrypt->message, 'ISO-8859-1', 'UTF-8') - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpEncrypt($pgp) - { - $clear = $this->_getFixture('clear.txt'); - - $out = $pgp->encrypt($clear, array( - 'recips' => array('me@example.com' => $this->_getPublicKey()), - 'type' => 'message' - )); - - $this->assertStringMatchesFormat( -'-----BEGIN PGP MESSAGE----- -Version: GnuPG %s - -%s -%s -%s -%s -%s -%s -%s -%s -%s -%s -=%s ------END PGP MESSAGE-----', - $out - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpEncryptSymmetric($pgp) - { - $clear = $this->_getFixture('clear.txt'); - - $out = $pgp->encrypt($clear, array( - 'passphrase' => 'Secret', - 'symmetric' => true, - 'type' => 'message' - )); - - $this->assertStringMatchesFormat( -'-----BEGIN PGP MESSAGE----- -Version: GnuPG %s - -%s -%s -%s -%s -=%s ------END PGP MESSAGE-----', - $out - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpEncryptedSymmetrically($pgp) - { - $this->assertFalse( - $pgp->encryptedSymmetrically( - $this->_getFixture('pgp_encrypted.txt') - ) - ); - $this->assertTrue( - $pgp->encryptedSymmetrically( - $this->_getFixture('pgp_encrypted_symmetric.txt') - ) - ); - } - - /** - * @dataProvider backendProvider - */ - public function testGetSignersKeyID($pgp) - { - $this->assertEquals( - 'BADEABD7', - $pgp->getSignersKeyID($this->_getFixture('pgp_signed.txt')) - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpPacketInformation($pgp) - { - $out = $pgp->pgpPacketInformation($this->_getPublicKey()); - - $this->assertArrayHasKey( - 'public_key', - $out - ); - $this->assertArrayNotHasKey( - 'secret_key', - $out - ); - $this->assertEquals( - '1155291888', - $out['public_key']['created'] - ); - $this->assertEquals( - 2, - count($out['signature']) - ); - $this->assertEquals( - '7CA74426BADEABD7', - $out['keyid'] - ); - - $out = $pgp->pgpPacketInformation($this->_getPrivateKey()); - - $this->assertArrayHasKey( - 'secret_key', - $out - ); - $this->assertArrayNotHasKey( - 'public_key', - $out - ); - $this->assertEquals( - '1155291888', - $out['secret_key']['created'] - ); - $this->assertEquals( - 2, - count($out['signature']) - ); - $this->assertEquals( - '7CA74426BADEABD7', - $out['keyid'] - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpPacketSignature($pgp) - { - $out = $pgp->pgpPacketSignature( - $this->_getPublicKey(), - 'me@example.com' - ); - - $this->assertEquals( - '7CA74426BADEABD7', - $out['keyid'] - ); - - $out = $pgp->pgpPacketSignature( - $this->_getPrivateKey(), - 'me@example.com' - ); - - $this->assertEquals( - '7CA74426BADEABD7', - $out['keyid'] - ); - - $out = $pgp->pgpPacketSignature( - $this->_getPrivateKey(), - 'foo@example.com' - ); - - $this->assertArrayNotHasKey( - 'keyid', - $out - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpPacketSignatureByUidIndex($pgp) - { - $out = $pgp->pgpPacketSignatureByUidIndex( - $this->_getPublicKey(), - 'id1' - ); - - $this->assertEquals( - '7CA74426BADEABD7', - $out['keyid'] - ); - - $out = $pgp->pgpPacketSignatureByUidIndex( - $this->_getPrivateKey(), - 'id1' - ); - - $this->assertEquals( - '7CA74426BADEABD7', - $out['keyid'] - ); - - $out = $pgp->pgpPacketSignatureByUidIndex( - $this->_getPrivateKey(), - 'id2' - ); - - $this->assertArrayNotHasKey( - 'keyid', - $out - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpPrettyKey($pgp) - { - putenv('LANGUAGE=C'); - - $this->assertEquals( -'Name: My Name -Key Type: Public Key -Key Creation: 08/11/06 -Expiration Date: [Never] -Key Length: 1024 Bytes -Comment: My Comment -E-Mail: me@example.com -Hash-Algorithm: pgp-sha1 -Key ID: 0xBADEABD7 -Key Fingerprint: 966F4BA9569DE6F65E8253977CA74426BADEABD7 - -', - $pgp->pgpPrettyKey($this->_getPublicKey()) - ); - - $this->assertEquals( -'Name: My Name -Key Type: Private Key -Key Creation: 08/11/06 -Expiration Date: [Never] -Key Length: 1024 Bytes -Comment: My Comment -E-Mail: me@example.com -Hash-Algorithm: pgp-sha1 -Key ID: 0xBADEABD7 -Key Fingerprint: 966F4BA9569DE6F65E8253977CA74426BADEABD7 - -', - $pgp->pgpPrettyKey($this->_getPrivateKey()) - ); - } - - /** - * @dataProvider pgpGetFingerprintsFromKeyProvider - */ - public function testPgpGetFingerprintsFromKey($pgp, $expected, $key) - { - $this->assertEquals( - $expected, - $pgp->getFingerprintsFromKey($key) - ); - } - - public function pgpGetFingerprintsFromKeyProvider() - { - $fingerprints = array( - array( - array( - '0xBADEABD7' => '966F4BA9569DE6F65E8253977CA74426BADEABD7' - ), - $this->_getPublicKey() - ), - array( - array( - '0xBADEABD7' => '966F4BA9569DE6F65E8253977CA74426BADEABD7' - ), - $this->_getPrivateKey() - ) - ); - $args = $this->backendProvider(); - foreach ($args as &$arg) { - foreach ($fingerprints as $fingerprint) { - $arg = array_merge($arg, $fingerprint); - } - } - return $args; - } - - /** - * @dataProvider backendProvider - */ - public function pgpPublicKeyMIMEPart($pgp) - { - $mime_part = $pgp->publicKeyMIMEPart($this->_getPublicKey()); - - $this->assertEquals( - 'application/pgp-keys', - $mime_part->getType() - ); - - $this->assertEquals( -'-----BEGIN PGP PUBLIC KEY BLOCK----- -Version: GnuPG %s - -mQGiBETcWvARBADNitbvsWy5/hhV+WcU2ttmtXkAj2DqJVgJdGS2RH8msO0roG5j -CQK/e0iMJki5lfdgxvxxWgStYMnfF5ftgWA7JV+BZUzJt12Lobm0zdENv2TqL2vc -xlPTmEGsvfPDTbY+Gr3jvuODboXat7bUn2E723WXPdh2A7KNNnLou7JF2wCgiKs/ -RqNKM/Zm01PxLbQ+rs9ghd0D/jLUfJeYWySoDsvfO8e4UyDxDVTBLkkdw3XzLx1F -4SS/Cc2Z9yJuXiepzSH/G/vhdN5ROv12kJwA4FbwsFv5C1uCQleWiPngFixca9Nw -lAd2X2Cp0/4D2XRq1M9dEbcYdrgAuyzt2ZToj3aFaYNGwjfHoLqSngOu6/d3KD1d -i0b2A/9wnXo41kPwS73gU1Un2KKMkKqnczCQHdpopO6NjKaLhNcouRauLrgbrS5y -A1CW+nxjkKVvWrP/VFBmapUpjE1C51J9P0/ub8tRr7H0xHdTQyufv01lmfkjUpVF -n3GVf95l4seBFzD7r580aTx+dJztoHEGWrsWZTNJwo6IIlFOIbQlTXkgTmFtZSAo -TXkgQ29tbWVudCkgPG1lQGV4YW1wbGUuY29tPohgBBMRAgAgBQJE3FrwAhsjBgsJ -CAcDAgQVAggDBBYCAwECHgECF4AACgkQfKdEJrreq9fivACeLBcWErSQU4ZGQsje -dhwfdst9cLQAnRETpwmqt/XvcGFVsOE28MUrUzOGuQENBETcWvAQBADNgIJ4nDlf -gBOI/iqyNy08C9+MjxrqMylrj4TPn3rRk8wySr2myX+j9CML5EHOtsxANYeI9u7h -OF11n5Z8fDht/WGJrNR7EtRhNN6mkKsPaEuO3fhz6EgwJYReUVzDJbvnV2fRCvQo -EGaSntZGQaQzIzIL+/gMEFpEVRK1P2I3VwADBQP+K2Rmmkm3DonXFlUUDWWdhEF4 -b7fy5/IPj41PSSOdo0IP4dprFoe15Vs9gWOYvzcnjy+BbOwhVwsjE3F36hf04od3 -uTSM0dLS/xmpSvgbBh181T5c3W5aKT/daVhyxXJ4csxE+JCVKbaBubne0DPEuyZj -rYlL5Lm0z3VhNCcR0LyISQQYEQIACQUCRNxa8AIbDAAKCRB8p0Qmut6r16Y3AJ9h -umO5uT5yDcir3zwqUAxzBAkE4ACcCtGfb6usaTKnNXo+ZuLoHiOwIE4= -=GCjU ------END PGP PUBLIC KEY BLOCK-----', - $mime_part->getContents() - ); - } - - /** - * @dataProvider backendProvider - */ - public function testPgpSign($pgp) - { - $clear = $this->_getFixture('clear.txt'); - - $out = $pgp->encrypt($clear, array( - 'passphrase' => 'Secret', - 'privkey' => $this->_getPrivateKey(), - 'pubkey' => $this->_getPublicKey(), - 'type' => 'signature' - )); - - $this->assertStringMatchesFormat( -'-----BEGIN PGP SIGNATURE----- -Version: GnuPG %s - -%s -%s -=%s ------END PGP SIGNATURE-----', - $out - ); - - $out = $pgp->encrypt($clear, array( - 'passphrase' => 'Secret', - 'privkey' => $this->_getPrivateKey(), - 'pubkey' => $this->_getPublicKey(), - 'sigtype' => 'cleartext', - 'type' => 'signature' - )); - - $this->assertStringMatchesFormat( -'-----BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -0123456789012345678901234567890123456789 -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -The quick brown fox jumps over the lazy dog. -0123456789012345678901234567890123456789 -!"$§%&()=?^´°`+#-.,*\'_:;<>|~\{[]} ------BEGIN PGP SIGNATURE----- -Version: GnuPG %s - -%s -%s -=%s ------END PGP SIGNATURE-----', - Horde_String::convertCharset($out, 'ISO-8859-1', 'UTF-8') - ); - } - - /** - * @dataProvider backendProvider - */ - public function testDecryptSignature($pgp) - { - date_default_timezone_set('GMT'); - - $out = $pgp->decrypt( - $this->_getFixture('clear.txt'), - array( - 'pubkey' => $this->_getPublicKey(), - 'signature' => $this->_getFixture('pgp_signature.txt'), - 'type' => 'detached-signature' - ) - ); - - $this->assertNotEmpty($out->result); - - $out = $pgp->decrypt( - $this->_getFixture('pgp_signed.txt'), - array( - 'pubkey' => $this->_getPublicKey(), - 'type' => 'signature' - ) - ); - - $this->assertNotEmpty($out->result); - - $out = $pgp->decrypt( - $this->_getFixture('pgp_signed2.txt'), - array( - 'pubkey' => $this->_getPublicKey(), - 'type' => 'signature' - ) - ); - - $this->assertNotEmpty($out->result); - } - - /** - * @dataProvider backendProvider - */ - public function testVerifyPassphraseCorrect($pgp) - { - $this->assertTrue( - $pgp->verifyPassphrase( - $this->_getPublicKey(), - $this->_getPrivateKey(), - 'Secret' - ) - ); - } - - /** - * @dataProvider backendProvider - */ - public function testVerifyPassphraseIncorrect($pgp) - { - $this->assertFalse( - $pgp->verifyPassphrase( - $this->_getPublicKey(), - $this->_getPrivateKey(), - 'Wrong' - ) - ); - } - - /** - * @dataProvider backendProvider - */ - public function testGetPublicKeyFromPrivateKey($pgp) - { - $this->assertNotNull( - $pgp->getPublicKeyFromPrivateKey($this->_getPrivateKey()) - ); - } - - /* Helper methods. */ - - protected function _getFixture($file) - { - return file_get_contents(dirname(__DIR__) . '/fixtures/' . $file); - } - - protected function _getPrivateKey() - { - return $this->_getFixture('pgp_private.asc'); - } - - protected function _getPublicKey() - { - return $this->_getFixture('pgp_public.asc'); - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/PgpKeyserverTest.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/PgpKeyserverTest.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/PgpKeyserverTest.php 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/PgpKeyserverTest.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,88 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @subpackage UnitTests - */ - -class Horde_Crypt_PgpKeyserverTest extends Horde_Test_Case -{ - protected $_ks; - protected $_gnupg; - - protected function setUp() - { - $c = self::getConfig('CRYPTPGP_TEST_CONFIG', __DIR__); - $this->_gnupg = isset($c['gnupg']) - ? $c['gnupg'] - : '/usr/bin/gpg'; - - if (!is_executable($this->_gnupg)) { - $this->markTestSkipped(sprintf( - 'GPG binary not found at %s.', - $this->_gnupg - )); - } - - $this->_ks = new Horde_Crypt_Pgp_Keyserver( - Horde_Crypt::factory('Pgp', array( - 'program' => $this->_gnupg - )) - ); - } - - public function testKeyserverRetrieve() - { - try { - $this->_ks->get('4DE5B969'); - } catch (Horde_Crypt_Exception $e) { - if ($e->getPrevious() instanceof Horde_Http_Exception) { - $this->markTestSkipped($e->getMessage()); - } else { - throw $e; - } - } - } - - public function testKeyserverRetrieveByEmail() - { - try { - $this->assertEquals( - '4DE5B969', - $this->_ks->getKeyID('jan@horde.org') - ); - } catch (Horde_Crypt_Exception $e) { - if ($e->getPrevious() instanceof Horde_Http_Exception) { - $this->markTestSkipped($e->getMessage()); - } else { - throw $e; - } - } - } - - public function testBrokenKeyserver() - { - $ks = new Horde_Crypt_Pgp_Keyserver( - Horde_Crypt::factory('Pgp', array( - 'program' => $this->_gnupg - )), - array('keyserver' => 'http://pgp.key-server.io') - ); - try { - $this->assertEquals( - '4DE5B969', - $ks->getKeyID('jan@horde.org') - ); - } catch (Horde_Crypt_Exception $e) { - if ($e->getPrevious() instanceof Horde_Http_Exception) { - $this->markTestSkipped($e->getMessage()); - } else { - throw $e; - } - } - } -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/PgpParseTest.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/PgpParseTest.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/PgpParseTest.php 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/PgpParseTest.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,64 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @subpackage UnitTests - */ -class Horde_Crypt_PgpParseTest extends Horde_Test_Case -{ - protected $_pgp; - - protected function setUp() - { - $this->_pgp = new Horde_Crypt_Pgp(); - } - - /** - * @dataProvider parsePgpDataProvider - */ - public function testParsePgpData($data) - { - $out = $this->_pgp->parsePGPData($data); - - $this->assertEquals( - 2, - count($out) - ); - - $this->assertEquals( - Horde_Crypt_Pgp::ARMOR_SIGNED_MESSAGE, - $out[0]['type'] - ); - $this->assertEquals( - 17, - count($out[0]['data']) - ); - - $this->assertEquals( - Horde_Crypt_Pgp::ARMOR_SIGNATURE, - $out[1]['type'] - ); - $this->assertEquals( - 7, - count($out[1]['data']) - ); - } - - public function parsePgpDataProvider() - { - $data = file_get_contents(__DIR__ . '/fixtures/pgp_signed.txt'); - - $stream = new Horde_Stream_Temp(); - $stream->add($data, true); - - return array( - array($data), - array($stream) - ); - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/phpunit.xml php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/phpunit.xml --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/phpunit.xml 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/phpunit.xml 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ - diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/SmimeTest.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/SmimeTest.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.8/test/Horde/Crypt/SmimeTest.php 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.8/test/Horde/Crypt/SmimeTest.php 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ - - * @category Horde - * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 - * @package Crypt - * @subpackage UnitTests - */ - -class Horde_Crypt_SmimeTest extends PHPUnit_Framework_TestCase -{ - protected function setUp() - { - if (!extension_loaded('openssl')) { - $this->markTestSkipped('No openssl support in PHP.'); - } - } - - public function testSubjectAltName() - { - $smime = Horde_Crypt::factory('Smime', array( - 'temp' => sys_get_temp_dir() - )); - - $key = file_get_contents(__DIR__ . '/fixtures/smime_subjectAltName.pem'); - - $this->assertEquals( - 'test1@example.com', - $smime->getEmailFromKey($key) - ); - } - -} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/doc/Horde/Crypt/COPYING php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/doc/Horde/Crypt/COPYING --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/doc/Horde/Crypt/COPYING 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/doc/Horde/Crypt/COPYING 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,458 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Exception.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Exception.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Exception.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Exception.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,25 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * Exception handler for the horde/Crypt package. + * + * @author Michael Slusarz + * @category Horde + * @copyright 2010-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ +class Horde_Crypt_Exception extends Horde_Exception_Wrapped +{ +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Backend/Binary.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Backend/Binary.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Backend/Binary.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Backend/Binary.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,865 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * PGP backend that uses the gnupg binary. + * + * NOTE: This class is NOT intended to be accessed outside of this package. + * There is NO guarantees that the API of this class will not change across + * versions. + * + * @author Michael Slusarz + * @category Horde + * @copyright 2015-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @internal + */ +class Horde_Crypt_Pgp_Backend_Binary +extends Horde_Crypt_Pgp_Backend +{ + /** + * GnuPG program location/common options. + * + * @var array + */ + protected $_gnupg; + + /** + * Filename of the temporary private keyring. + * + * @var string + */ + protected $_privateKeyring; + + /** + * Filename of the temporary public keyring. + * + * @var string + */ + protected $_publicKeyring; + + /** + * The temporary directory to use. + * + * @var string + */ + protected $_tempdir; + + /** + * Constructor. + * + * @param string $gnupg The path to the GnuPG binary. + * @param string $temp Location of temporary directory. + */ + public function __construct($gnupg, $temp = null) + { + $this->_tempdir = Horde_Util::createTempDir($temp); + + /* Store the location of GnuPG and set common options. */ + $this->_gnupg = array( + $gnupg, + '--emit-version', + '--no-tty', + '--no-secmem-warning', + '--no-options', + '--no-default-keyring', + '--yes', + '--homedir ' . $this->_tempdir + ); + + /* GnuPG 2 requires specifying the pinentry-mode. */ + $result = $this->_callGpg(array('--version'), 'r'); + if (preg_match('/gpg \(GnuPG\) (\d+\.\d+\.\d+)/', $result->stdout, $version) && + version_compare($version[1], '2.1.0', '>')) { + if (version_compare($version[1], '2.1.12', '>=')) { + $this->_gnupg[] = '--pinentry-mode loopback'; + file_put_contents( + $this->_tempdir . '/gpg-agent.conf', + 'allow-loopback-pinentry' + ); + } else { + throw new Horde_Crypt_Exception( + sprintf( + Horde_Crypt_Translation::t("Unsupported GnuPG version %s detected. Only versions < 2.1 and > 2.1.11 are supported."), + $version[1] + ) + ); + } + } + } + + /** + */ + public function generateKey($opts) + { + /* Create temp files to hold the generated keys. */ + $pub_file = $this->_createTempFile('horde-pgp'); + $secret_file = $this->_createTempFile('horde-pgp'); + + $expire = empty($opts['expire']) + ? 0 + : date('Y-m-d', $opts['expire']); + + /* Create the config file necessary for GnuPG to run in batch mode. */ + /* TODO: Sanitize input, More user customizable? */ + $input = array( + '%pubring ' . $pub_file, + '%secring ' . $secret_file, + 'Key-Type: ' . $opts['key_type'], + 'Key-Length: ' . $opts['keylength'], + 'Subkey-Type: ' . $opts['subkey_type'], + 'Subkey-Length: ' . $opts['keylength'], + 'Name-Real: ' . $opts['name'], + 'Name-Email: ' . $opts['email'], + 'Expire-Date: ' . $expire, + 'Passphrase: ' . $opts['passphrase'], + 'Preferences: AES256 AES192 AES CAST5 3DES SHA256 SHA512 SHA384 SHA224 SHA1 ZLIB BZIP2 ZIP Uncompressed' + ); + if (!empty($opts['comment'])) { + $input[] = 'Name-Comment: ' . $opts['comment']; + } + $input[] = '%commit'; + + /* Run through gpg binary. */ + $result = $this->_callGpg( + array( + '--gen-key', + '--batch', + '--armor' + ), + 'w', + $input, + true, + true + ); + + /* Get the keys from the temp files. */ + $public_key = file_get_contents($pub_file); + $secret_key = file_get_contents($secret_file); + + /* If either key is empty, something went wrong. */ + if (empty($public_key) || empty($secret_key)) { + throw new Horde_Crypt_Exception(_("Cannot generate PGP keys")); + } + + return array( + 'public' => $public_key, + 'private' => $secret_key + ); + } + + /** + */ + public function packetInfo($pgpdata) + { + $info = $this->packetInfoMultiple($pgpdata); + return reset($info); + } + + /** + */ + public function packetInfoMultiple($pgpdata) + { + $header = $keyid = null; + $input = $this->_createTempFile('horde-pgp'); + $sig_id = $uid_idx = 0; + $key_idx = -1; + $out = array(); + + $this2 = $this; + + $packetInfoHelper = function ($a) { + return chr(hexdec($a[1])); + }; + + /* The list of PGP hash algorithms (from RFC 3156). */ + $hashAlg = array( + 1 => 'pgp-md5', + 2 => 'pgp-sha1', + 3 => 'pgp-ripemd160', + 5 => 'pgp-md2', + 6 => 'pgp-tiger192', + 7 => 'pgp-haval-5-160', + 8 => 'pgp-sha256', + 9 => 'pgp-sha384', + 10 => 'pgp-sha512', + 11 => 'pgp-sha224' + ); + + /* Store message in temporary file. */ + file_put_contents($input, $pgpdata); + + $cmdline = array( + '--list-packets', + $input + ); + $result = $this->_callGpg($cmdline, 'r', null, false, false, true); + + foreach (explode("\n", $result->stdout) as $line) { + /* Headers are prefaced with a ':' as the first character on the + * line. */ + if (strpos($line, ':') === 0) { + $lowerLine = Horde_String::lower($line); + + if (strpos($lowerLine, ':public key packet:') !== false) { + $header = 'public_key'; + $key_idx++; + $uid_idx = 0; + continue; + } + + if (strpos($lowerLine, ':secret key packet:') !== false) { + $header = 'secret_key'; + continue; + } + + if (strpos($lowerLine, ':user id packet:') !== false) { + $uid_idx++; + $line = preg_replace_callback('/\\\\x([0-9a-f]{2})/', $packetInfoHelper, $line); + if (!preg_match('/"([^\<]+)\<([^\>]+)\>"/', $line, $matches)) { + continue; + } + $header = 'id' . $uid_idx; + if (preg_match('/([^\(]+)\((.+)\)$/', trim($matches[1]), $comment_matches)) { + $out[$key_idx]['signature'][$header]['name'] = trim($comment_matches[1]); + $out[$key_idx]['signature'][$header]['comment'] = $comment_matches[2]; + } else { + $out[$key_idx]['signature'][$header]['name'] = trim($matches[1]); + $out[$key_idx]['signature'][$header]['comment'] = ''; + } + // Some gpg versions do not return keyid in the + // :public|secret key packet: section so we use the + // fingerprint + if (empty($keyid)) { + $cmdline = array( + '--with-fingerprint', + $input + ); + $results = $this->_callGpg($cmdline, 'r', null, false, false, true); + if (preg_match('/key fingerprint = ([0-9A-Z ]+)/i', $results->stdout, $m)) { + $keyid = substr(str_replace(' ', '', $m[1]), -16); + } + } + $out[$key_idx]['signature'][$header]['email'] = $matches[2]; + $out[$key_idx]['signature'][$header]['keyid'] = $keyid; + continue; + } + + if (strpos($lowerLine, ':signature packet:') !== false) { + if (empty($header) || empty($uid_idx)) { + $header = '_SIGNATURE'; + } + if (!preg_match('/keyid\s+([0-9A-F]+)/i', $line, $matches)) { + continue; + } + $sig_id = $matches[1]; + $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['keyid'] = $matches[1]; + $out[$key_idx]['keyid'] = $matches[1]; + continue; + } + + if (strpos($lowerLine, ':literal data packet:') !== false) { + $header = 'literal'; + continue; + } + + if (strpos($lowerLine, ':encrypted data packet:') !== false) { + $header = 'encrypted'; + continue; + } + + $header = null; + continue; + } + + if ($header == 'secret_key' || $header == 'public_key') { + if (preg_match('/created\s+(\d+),\s+expires\s+(\d+)/i', $line, $matches)) { + $out[$key_idx][$header]['created'] = $matches[1]; + $out[$key_idx][$header]['expires'] = $matches[2]; + continue; + } + if (preg_match('/\s+[sp]key\[0\]:\s+\[(\d+)/i', $line, $matches)) { + $out[$key_idx][$header]['size'] = $matches[1]; + continue; + } + if (preg_match('/\s+keyid:\s+([0-9A-F]+)/i', $line, $matches)) { + $keyid = $matches[1]; + continue; + } + continue; + } + + if ($header == 'literal' || $header == 'encrypted') { + $out[$key_idx][$header] = true; + continue; + } + + if ($header) { + if (preg_match('/version\s+\d+,\s+created\s+(\d+)/i', $line, $matches)) { + $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['created'] = $matches[1]; + continue; + } + + if (isset($out[$key_idx]['signature'][$header]['sig_' . $sig_id]['created']) && + preg_match('/expires after (\d+y\d+d\d+h\d+m)\)$/', $line, $matches)) { + $expires = $matches[1]; + preg_match('/^(\d+)y(\d+)d(\d+)h(\d+)m$/', $expires, $matches); + list(, $years, $days, $hours, $minutes) = $matches; + $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['expires'] = + strtotime('+ ' . $years . ' years + ' . $days . ' days + ' . $hours . ' hours + ' . $minutes . ' minutes', $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['created']); + continue; + } + + if (preg_match('/digest algo\s+(\d{1})/', $line, $matches)) { + $micalg = $hashAlg[$matches[1]]; + $out[$key_idx]['signature'][$header]['sig_' . $sig_id]['micalg'] = $micalg; + if ($header == '_SIGNATURE') { + /* Likely a signature block, not a key. */ + $out[$key_idx]['signature']['_SIGNATURE']['micalg'] = $micalg; + } + + if ($sig_id == $keyid) { + /* Self signing signature - we can assume + * the micalg value from this signature is + * that for the key */ + $out[$key_idx]['signature']['_SIGNATURE']['micalg'] = $micalg; + $out[$key_idx]['signature'][$header]['micalg'] = $micalg; + } + } + + continue; + } + } + + return $out; + } + + /** + */ + public function getSignersKeyID($text) + { + $input = $this->_createTempFile('horde-pgp'); + file_put_contents($input, $text); + + $result = $this->_callGpg( + array( + '--verify', + $input + ), + 'r', + null, + true, + true, + true + ); + + // GnuPG 1 + if (preg_match('/gpg:\sSignature\smade.*ID\s+([A-F0-9]{8})\s+/', $result->stderr, $matches)) { + return $matches[1]; + } + + // GnuPG 2 + if (preg_match('/gpg:\sSignature\smade.*using\s+\S+\s+key\s+([A-F0-9]{16})\s+/s', $result->stderr, $matches)) { + return substr($matches[1], -8); + } + + throw new Horde_Crypt_Exception(_("Cannot read PGP key ID")); + } + + /** + */ + public function getFingerprintsFromKey($pgpdata) + { + /* Store the key in a temporary keyring. */ + $keyring = $this->_putInKeyring($pgpdata); + + $result = $this->_callGpg( + array( + '--fingerprint', + $keyring, + '--with-colons', + '--fixed-list-mode', + ), + 'r', + null, + true, + false, + true + ); + $this->_ensureResult($result); + + /* Parse fingerprints and key ids from output. */ + $fingerprints = array(); + $keyid = null; + $lines = explode("\n", $result->stdout); + + foreach ($lines as $line) { + $fields = explode(':', $line); + if ($fields[0] == 'pub') { + $keyid = '0x' . substr($fields[4], -8); + } elseif ($keyid && ($fields[0] == 'fpr')) { + $fingerprints[$keyid] = $fields[9]; + $keyid = null; + } + } + + return empty($fingerprints) + ? false + : $fingerprints; + } + + /** + */ + public function isEncryptedSymmetrically($text) + { + $result = $this->_callGpg( + array( + '--decrypt', + '--batch', + '--passphrase ""' + ), + 'w', + $text, + true, + true, + true, + true + ); + + return (strpos($result->stderr, 'gpg: encrypted with 1 passphrase') !== false); + } + + /** + */ + public function encryptMessage($text, $params) + { + /* Create temp files for input. */ + $input = $this->_createTempFile('horde-pgp'); + file_put_contents($input, $text); + + /* Build command line. */ + $cmdline = array( + '--armor', + '--batch', + '--always-trust' + ); + + if (empty($params['symmetric'])) { + /* Store public key in temporary keyring. */ + $keyring = $this->_putInKeyring(array_values($params['recips'])); + + $cmdline[] = $keyring; + $cmdline[] = '--encrypt'; + foreach (array_keys($params['recips']) as $val) { + $cmdline[] = '--recipient ' . escapeshellarg($val); + } + } else { + $cmdline[] = '--symmetric'; + $cmdline[] = '--passphrase-fd 0'; + } + $cmdline[] = $input; + + /* Encrypt the document. */ + $result = $this->_callGpg( + $cmdline, + 'w', + empty($params['symmetric']) ? null : $params['passphrase'], + true, + true + ); + $this->_ensureResult($result); + + return $result->output; + } + + /** + */ + public function encryptSignature($text, $params) + { + /* Create temp files for input. */ + $input = $this->_createTempFile('horde-pgp'); + + /* Encryption requires both keyrings. */ + $pub_keyring = $this->_putInKeyring(array($params['pubkey'])); + $sec_keyring = $this->_putInKeyring( + array($params['privkey']), + 'private' + ); + + /* Store message in temporary file. */ + file_put_contents($input, $text); + + /* Sign the document. */ + $result = $this->_callGpg( + array( + '--armor', + '--batch', + '--passphrase-fd 0', + $sec_keyring, + $pub_keyring, + (isset($params['sigtype']) && ($params['sigtype'] == 'cleartext')) ? '--clearsign' : '--detach-sign', + $input + ), + 'w', + $params['passphrase'], + true, + true + ); + $this->_ensureResult($result); + + return $result->output; + } + + /** + */ + public function decryptMessage($text, $params) + { + /* Create temp files. */ + $input = $this->_createTempFile('horde-pgp'); + + /* Store message in file. */ + file_put_contents($input, $text); + + /* Build command line. */ + $cmdline = array( + '--always-trust', + '--armor', + '--batch' + ); + if (empty($params['no_passphrase'])) { + $cmdline[] = '--passphrase-fd 0'; + } + if (!empty($params['pubkey']) && !empty($params['privkey'])) { + /* Decryption requires both keyrings. */ + $pub_keyring = $this->_putInKeyring(array($params['pubkey'])); + $sec_keyring = $this->_putInKeyring(array($params['privkey']), 'private'); + $cmdline[] = $sec_keyring; + $cmdline[] = $pub_keyring; + } + $cmdline[] = '--decrypt'; + $cmdline[] = $input; + + $result = $this->_callGpg( + $cmdline, + empty($params['no_passphrase']) ? 'w' : 'r', + empty($params['no_passphrase']) ? $params['passphrase'] : null, + true, + true, + true + ); + $this->_ensureResult($result); + + return $this->_checkSignatureResult($result->stderr, $result->output); + } + + /** + */ + public function decryptSignature($text, $params) + { + /* Create temp files for input. */ + $input = $this->_createTempFile('horde-pgp'); + + /* Store public key in temporary keyring. */ + $keyring = $this->_putInKeyring($params['pubkey']); + + /* Store the message in a temporary file. */ + file_put_contents($input, $text); + + /* Options for the GPG binary. */ + $cmdline = array( + '--armor', + '--always-trust', + '--batch', + '--charset ' . (isset($params['charset']) ? escapeshellarg($params['charset']) : 'UTF-8'), + $keyring, + '--verify' + ); + + /* Extra stuff to do if we are using a detached signature. */ + if ($params['type'] === 'detached-signature') { + $sigfile = $this->_createTempFile('horde-pgp'); + $cmdline[] = $sigfile . ' ' . $input; + file_put_contents($sigfile, $params['signature']); + } else { + $cmdline[] = $input; + } + + /* Verify the signature. We need to catch standard error output, + * since this is where the signature information is sent. */ + $result = $this->_callGpg($cmdline, 'r', null, true, true, true); + + return $this->_checkSignatureResult($result->stderr, $result->stderr); + } + + /** + */ + public function getPublicKeyFromPrivateKey($data) + { + $this->_putInKeyring(array($data), 'private'); + $fingerprints = $this->getFingerprintsFromKey($data); + reset($fingerprints); + + $cmdline = array( + '--armor', + '--export', + key($fingerprints) + ); + + $result = $this->_callGpg($cmdline, 'r', array(), true, true); + $this->_ensureResult($result); + + return $result->output; + } + + /** + * Checks signature result from the GnuPG binary. + * + * @param string $result The signature result. + * @param string $message The decrypted message data. + * + * @return object See decryptSignature(). + * @throws Horde_Crypt_Exception + */ + protected function _checkSignatureResult($result, $message = null) + { + /* Good signature: + * gpg: Good signature from "blah blah blah (Comment)" + * Bad signature: + * gpg: BAD signature from "blah blah blah (Comment)" */ + if (strpos($result, 'gpg: BAD signature') !== false) { + throw new Horde_Crypt_Exception($result); + } + + $ob = new stdClass; + $ob->message = $message; + $ob->result = $result; + + return $ob; + } + + /** + * Function that handles interfacing with the GnuPG binary. + * + * @param array $options Options and commands to pass to GnuPG. + * @param string $mode 'r' to read from stdout, 'w' to write to + * stdin. + * @param array $input Input to write to stdin. + * @param boolean $output Collect and store output in object returned? + * @param boolean $stderr Collect and store stderr in object returned? + * @param boolean $parseable Is parseable output required? The gpg binary + * would be executed with C locale then. + * @param boolean $verbose Run GnuPG with verbose flag? + * + * @return stdClass Class with members output, stderr, and stdout. + * @throws Horde_Crypt_Exception + * @todo This method should be protected, but due to closures not having + * proper access to $this without assigning it to another variable + * which does not give it access to non-puplic members, we must + * make this public until H6 when we can require at least PHP 5.4. + */ + public function _callGpg( + $options, $mode, $input = array(), $output = false, $stderr = false, + $parseable = false, $verbose = false + ) + { + $data = new stdClass; + $data->output = null; + $data->stderr = null; + $data->stdout = null; + + /* Verbose output? */ + if (!$verbose) { + array_unshift($options, '--quiet'); + } + + /* Create temp files for output. */ + if ($output) { + $output_file = $this->_createTempFile('horde-pgp', false); + array_unshift($options, '--output ' . $output_file); + + /* Do we need standard error output? */ + if ($stderr) { + $stderr_file = $this->_createTempFile('horde-pgp', false); + $options[] = '2> ' . $stderr_file; + } + } + + /* Silence errors if not requested. */ + if (!$output || !$stderr) { + $options[] = '2> /dev/null'; + } + + /* Build the command line string now. */ + $cmdline = implode(' ', array_merge($this->_gnupg, $options)); + + $language = getenv('LANGUAGE'); + if ($parseable) { + putenv('LANGUAGE=C'); + } + if ($mode == 'w') { + if ($fp = popen($cmdline, 'w')) { + putenv('LANGUAGE=' . $language); + $win32 = !strncasecmp(PHP_OS, 'WIN', 3); + + if (!is_array($input)) { + $input = array($input); + } + + foreach ($input as $line) { + if ($win32 && (strpos($line, "\x0d\x0a") !== false)) { + $chunks = explode("\x0d\x0a", $line); + foreach ($chunks as $chunk) { + fputs($fp, $chunk . "\n"); + } + } else { + fputs($fp, $line . "\n"); + } + } + } else { + putenv('LANGUAGE=' . $language); + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to pgp binary.")); + } + } elseif ($mode == 'r') { + if ($fp = popen($cmdline, 'r')) { + putenv('LANGUAGE=' . $language); + while (!feof($fp)) { + $data->stdout .= fgets($fp, 1024); + } + } else { + putenv('LANGUAGE=' . $language); + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to pgp binary.")); + } + } + pclose($fp); + + if ($output) { + $data->output = file_get_contents($output_file); + unlink($output_file); + if ($stderr) { + $data->stderr = file_get_contents($stderr_file); + unlink($stderr_file); + } + } + + return $data; + } + + /** + * Creates a temporary gpg keyring. + * + * @param string $type The type of key to analyze. 'public' or 'private'. + * + * @return string Command line keystring option to use with gpg program. + */ + protected function _createKeyring($type = 'public') + { + switch (Horde_String::lower($type)) { + case 'public': + if (empty($this->_publicKeyring)) { + $this->_publicKeyring = $this->_createTempFile('horde-pgp'); + } + return '--keyring ' . $this->_publicKeyring; + + case 'private': + if (empty($this->_privateKeyring)) { + $this->_privateKeyring = $this->_createTempFile('horde-pgp'); + } + return '--secret-keyring ' . $this->_privateKeyring; + } + } + + /** + * Adds PGP keys to the keyring. + * + * @param mixed $keys A single key or an array of key(s) to add to the + * keyring. + * @param string $type The type of key(s) to add. 'public' or 'private'. + * + * @return string Command line keystring option to use with gpg program. + * @throws Horde_Crypt_Exception + */ + protected function _putInKeyring($keys = array(), $type = 'public') + { + $type = Horde_String::lower($type); + + if (!is_array($keys)) { + $keys = array($keys); + } + + /* Gnupg v2: --secret-keyring is not used, so import everything into + * the main keyring also. */ + if ($type == 'private') { + $this->_putInKeyring($keys); + } + + /* Create the keyrings if they don't already exist. */ + $keyring = $this->_createKeyring($type); + + /* Store the key(s) in the keyring. */ + $this->_callGpg( + array( + '--allow-secret-key-import', + '--batch', + '--fast-import', + $keyring + ), + 'w', + array_values($keys) + ); + + return $keyring; + } + + /** + * Checks whether there was some valid output. + * + * @param object $result A result from _callGpg(). + * + * @throws Horde_Crypt_Exception with messages from stderr if the result + * output is empty. + */ + protected function _ensureResult($result) + { + if (empty($result->output) && empty($result->stdout)) { + throw new Horde_Crypt_Exception( + preg_replace( + array('/^gpg: /', '/\n/'), + array('', '. '), + $result->stderr + ) + ); + } + } + + /** + * Create a temporary file that will be deleted at the end of this + * process. + * + * @param string $descrip Description string to use in filename. + * @param boolean $delete Delete the file automatically? + * + * @return string Filename of a temporary file. + */ + protected function _createTempFile($descrip = 'horde-crypt', + $delete = true) + { + return Horde_Util::getTempFile( + $descrip, + $delete, + $this->_tempdir, + true + ); + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Backend.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Backend.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Backend.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Backend.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,221 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * Abstract backend class to implement PGP functionality. + * + * NOTE: This class is NOT intended to be accessed outside of this package. + * There is NO guarantees that the API of this class will not change across + * versions. + * + * @author Michael Slusarz + * @category Horde + * @copyright 2015-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @internal + */ +class Horde_Crypt_Pgp_Backend +{ + /** + * Is this driver supported? + * + * @return boolean True if supported. + */ + static public function supported() + { + return true; + } + + /** + * Generates a personal public/private keypair combination. + * + * @param array $opts Configuration: + * - comment: (string) The comment to use. + * - email: (string) The email to use. + * - expire: (integer) The expiration date (UNIX timestamp). No + * expiration if empty. + * - keylength: (integer) The keylength to use. + * - key_type: (string) Key type. + * - name: (string) The name to use. + * - passphrase: (string) The passphrase to use. + * - subkey_type: (string) Subkey type. + * + * @return mixed False on error; an array on success consisting of the + * following keys/values: + * - private: (string) Private key. + * - public: (string) Public key. + */ + public function generateKey($opts) + { + throw new BadMethodCallException(); + } + + /** + * Returns information on a PGP data block. + * + * @param string $pgpdata The PGP data block. + * + * @return array An array with information on the PGP data block. + * {@see Horde_Crypt_Pgp::pgpPacketInformation()} + */ + public function packetInfo($pgpdata) + { + throw new BadMethodCallException(); + } + + /** + * Returns all information on a PGP data block. + * + * @since Horde_Crypt 2.7.0 + * + * @param string $pgpdata The PGP data block. + * + * @return array An array with information on the PGP data block. + * {@see Horde_Crypt_Pgp::pgpPacketInformationMultiple()} + */ + public function packetInfoMultiple($pgpdata) + { + throw new BadMethodCallException(); + } + + /** + * Returns the key ID of the key used to sign a block of PGP data. + * + * @param string $text The PGP signed text block. + * + * @return mixed The key ID of the key used to sign $text. + */ + public function getSignersKeyId($text) + { + throw new BadMethodCallException(); + } + + /** + * Get the fingerprints from a key block. + * + * @param string $pgpdata The PGP data block. + * + * @return array The fingerprints in $pgpdata indexed by key id. + */ + public function getFingerprintsFromKey($pgpdata) + { + throw new BadMethodCallException(); + } + + /** + * Returns whether a text has been encrypted symmetrically. + * + * @param string $text The PGP encrypted text. + * + * @return boolean True if the text is symmetrically encrypted. + */ + public function isEncryptedSymmetrically($text) + { + throw new BadMethodCallException(); + } + + /** + * Encrypts a message in PGP format using a public key. + * + * @param string $text The text to be encrypted. + * @param array $params The parameters needed for encryption. + * - passphrase: The passphrase for the symmetric encryption (REQUIRED + * if 'symmetric' is true) + * - recips: An array with the e-mail address of the recipient as the + * key and that person's public key as the value. + * (REQUIRED if 'symmetric' is false) + * - symmetric: Whether to use symmetric instead of asymmetric + * encryption (defaults to false). + * - type: [REQUIRED] 'message' + * + * @return string The encrypted message. + */ + public function encryptMessage($text, $params) + { + throw new BadMethodCallException(); + } + + /** + * Signs a message in PGP format using a private key. + * + * @param string $text The text to be signed. + * @param array $params The parameters needed for signing. + * - passphrase: [REQUIRED] Passphrase for PGP Key. + * - privkey: [REQUIRED] PGP private key. + * - pubkey: [REQUIRED] PGP public key. + * - sigtype: Determine the signature type to use. + * - 'cleartext': Make a clear text signature + * - 'detach': Make a detached signature (DEFAULT) + * - type: [REQUIRED] 'signature' + * + * @return string The signed message. + */ + public function encryptSignature($text, $params) + { + throw new BadMethodCallException(); + } + + /** + * Decrypts an PGP encrypted message using a private/public keypair and a + * passhprase. + * + * @param string $text The text to be decrypted. + * @param array $params The parameters needed for decryption. + * - no_passphrase: Passphrase is not required. + * - passphrase: Passphrase for PGP Key. (REQUIRED, see no_passphrase) + * - privkey: PGP private key. (REQUIRED for asymmetric encryption) + * - pubkey: PGP public key. (REQUIRED for asymmetric encryption) + * - type: [REQUIRED] 'message' + * + * @return object An object with the following properties: + * - message: (string) The signature result text. + * - result: (boolean) The result of the signature test. + */ + public function decryptMessage($text, $params) + { + throw new BadMethodCallException(); + } + + /** + * Decrypts an PGP signed message using a public key. + * + * @param string $text The text to be verified. + * @param array $params The parameters needed for verification. + * - charset: Charset of the message body. + * - pubkey: [REQUIRED] PGP public key. + * - signature: PGP signature block. (REQUIRED for detached signature) + * - type: [REQUIRED] 'signature' or 'detached-signature' + * + * @return object An object with the following properties: + * - message: (string) The signature result text. + * - result: (boolean) The result of the signature test. + */ + public function decryptSignature($text, $params) + { + throw new BadMethodCallException(); + } + + /** + * Generates a public key from a private key. + * + * @param string $data Armor text of private key. + * + * @return string Armor text of public key. + */ + public function getPublicKeyFromPrivateKey($data) + { + throw new BadMethodCallException(); + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Keyserver.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Keyserver.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Keyserver.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Keyserver.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,260 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * Provides methods to connect to a PGP keyserver. + * + * Connects to a public key server via HKP (Horrowitz Keyserver Protocol). + * http://tools.ietf.org/html/draft-shaw-openpgp-hkp-00 + * + * @author Michael Slusarz + * @category Horde + * @copyright 2002-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @since 2.4.0 + */ +class Horde_Crypt_Pgp_Keyserver +{ + /** + * HTTP object. + * + * @var Horde_Http_Client + */ + protected $_http; + + /** + * Keyserver hostname. + * + * @var string + */ + protected $_keyserver; + + /** + * PGP object. + * + * @var Horde_Crypt_Pgp + */ + protected $_pgp; + + /** + * Constructor. + * + * @param Horde_Crypt_Pgp $pgp A Horde_Crypt_Pgp object. + * @param array $params Optional parameters: + *
+     *   - http: (Horde_Http_Client) The HTTP client object to use.
+     *   - keyserver: (string) The public PGP keyserver to use.
+     *   - port: (integer) The public PGP keyserver port.
+     * 
+ */ + public function __construct($pgp, array $params = array()) + { + $this->_pgp = $pgp; + if (isset($params['http'])) { + if (!($params['http'] instanceof Horde_Http_Client)) { + throw new InvalidArgumentException('Argument is not a Horde_Http_Client instance'); + } + $this->_http = $params['http']; + } else { + $this->_http = new Horde_Http_Client(); + } + /* There is a broken key server software that returns HTML content + * instead of plain text on arbitrary criteria. A User-Agent header is + * one of those. */ + $this->_http->{'request.userAgent'} = ''; + $this->_keyserver = isset($params['keyserver']) + ? $params['keyserver'] + : 'http://pool.sks-keyservers.net'; + $this->_keyserver .= ':' . (isset($params['port']) ? $params['port'] : '11371'); + } + + /** + * Returns PGP public key data retrieved from a public keyserver. + * + * @param string $keyid The key ID of the PGP key. + * + * @return string The PGP public key. + * @throws Horde_Crypt_Exception + */ + public function get($keyid) + { + /* Connect to the public keyserver. */ + $url = $this->_createUrl('/pks/lookup', array( + 'op' => 'get', + 'search' => $this->_pgp->getKeyIDString($keyid) + )); + + try { + $output = $this->_http->get($url)->getBody(); + } catch (Horde_Http_Exception $e) { + throw new Horde_Crypt_Exception($e); + } + + /* Grab PGP key from output. */ + if (($start = strstr($output, '-----BEGIN'))) { + $length = strpos($start, '-----END') + 34; + return substr($start, 0, $length); + } + + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Could not obtain public key from the keyserver.")); + } + + /** + * Sends a PGP public key to a public keyserver. + * + * @param string $pubkey The PGP public key + * + * @throws Horde_Crypt_Exception + */ + public function put($pubkey) + { + /* Get the key ID of the public key. */ + $info = $this->_pgp->pgpPacketInformation($pubkey); + + /* See if the public key already exists on the keyserver. */ + try { + $this->get($info['keyid']); + } catch (Horde_Crypt_Exception $e) { + $pubkey = 'keytext=' . urlencode(rtrim($pubkey)); + try { + $this->_http->post( + $this->_createUrl('/pks/add'), + $pubkey, + array( + 'User-Agent: Horde Application Framework', + 'Content-Type: application/x-www-form-urlencoded', + 'Content-Length: ' . strlen($pubkey), + 'Connection: close' + ) + ); + } catch (Horde_Http_Exception $e) { + throw new Horde_Crypt_Exception($e); + } + } + + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Key already exists on the public keyserver.")); + } + + /** + * Returns the first matching key ID for an email address from a public + * keyserver. + * + * @param string $address The email address of the PGP key. + * + * @return string The PGP key ID. + * @throws Horde_Crypt_Exception + */ + public function getKeyId($address) + { + $pubkey = null; + + /* Connect to the public keyserver. */ + $url = $this->_createUrl('/pks/lookup', array( + 'op' => 'index', + 'options' => 'mr', + 'search' => $address + )); + + // Some keyservers are broken, third time's a charm. + $output = null; + for ($i = 0; $i < 3; $i++) { + try { + $response = $this->_http->get($url); + // Some keyservers return HTML, try again. + if (strpos($response->getHeader('Content-Type'), 'text/plain') !== 0) { + continue; + } + $output = $response->getBody(); + } catch (Horde_Http_Exception $e) { + throw new Horde_Crypt_Exception($e); + } + } + + if (!$output) { + throw new Horde_Crypt_Exception( + Horde_Crypt_Translation::t("Could not obtain public key from the keyserver.") + ); + } + + if (strpos($output, '-----BEGIN PGP PUBLIC KEY BLOCK') !== false) { + $pubkey = $output; + } elseif (strpos($output, 'pub:') !== false) { + $output = explode("\n", $output); + $keyids = $keyuids = array(); + $curid = null; + + foreach ($output as $line) { + if (substr($line, 0, 4) == 'pub:') { + $line = explode(':', $line); + /* Ignore invalid lines and expired keys. */ + if (count($line) != 7 || + (!empty($line[5]) && $line[5] <= time())) { + continue; + } + $curid = $line[4]; + $keyids[$curid] = $line[1]; + } elseif (!is_null($curid) && substr($line, 0, 4) == 'uid:') { + preg_match("/<([^>]+)>/", $line, $matches); + $keyuids[$curid][] = $matches[1]; + } + } + + /* Remove keys without a matching UID. */ + foreach ($keyuids as $id => $uids) { + $match = false; + foreach ($uids as $uid) { + if ($uid == $address) { + $match = true; + break; + } + } + if (!$match) { + unset($keyids[$id]); + } + } + + /* Sort by timestamp to use the newest key. */ + if (count($keyids)) { + ksort($keyids); + $pubkey = $this->get(array_pop($keyids)); + } + } + + if ($pubkey) { + $sig = $this->_pgp->pgpPacketSignature($pubkey, $address); + if (!empty($sig['keyid']) && + (empty($sig['public_key']['expires']) || + $sig['public_key']['expires'] > time())) { + return substr($this->_pgp->getKeyIDString($sig['keyid']), 2); + } + } + + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Could not obtain public key from the keyserver.")); + } + + /** + * Create the URL for the keyserver. + * + * @param string $uri Action URI. + * @param array $params List of parameters to add to URL. + * + * @return Horde_Url Keyserver URL. + */ + protected function _createUrl($uri, array $params = array()) + { + $url = new Horde_Url($this->_keyserver . $uri, true); + return $url->add($params); + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Parse.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Parse.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Parse.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp/Parse.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,233 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * Provides methods to parse PGP armored text data. + * + * @author Michael Slusarz + * @category Horde + * @copyright 2002-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @since 2.4.0 + */ +class Horde_Crypt_Pgp_Parse +{ + /** + * Armor Header Lines - From RFC 2440: + * + * An Armor Header Line consists of the appropriate header line text + * surrounded by five (5) dashes ('-', 0x2D) on either side of the header + * line text. The header line text is chosen based upon the type of data + * that is being encoded in Armor, and how it is being encoded. + * + * All Armor Header Lines are prefixed with 'PGP'. + * + * The Armor Tail Line is composed in the same manner as the Armor Header + * Line, except the string "BEGIN" is replaced by the string "END." + */ + + /* Used for signed, encrypted, or compressed files. */ + const ARMOR_MESSAGE = 1; + + /* Used for signed files. */ + const ARMOR_SIGNED_MESSAGE = 2; + + /* Used for armoring public keys. */ + const ARMOR_PUBLIC_KEY = 3; + + /* Used for armoring private keys. */ + const ARMOR_PRIVATE_KEY = 4; + + /* Used for detached signatures, PGP/MIME signatures, and natures + * following clearsigned messages. */ + const ARMOR_SIGNATURE = 5; + + /* Regular text contained in an PGP message. */ + const ARMOR_TEXT = 6; + + /** + * Metadata names for data. + */ + const PGP_ARMOR = 'pgp_armor'; /* @since 2.5.0 */ + const SIG_CHARSET = 'pgp_sig_charset'; + const SIG_RAW = 'pgp_sig_raw'; + + /** + * Strings in armor header lines used to distinguish between the different + * types of PGP decryption/encryption. + * + * @var array + */ + protected $_armor = array( + 'MESSAGE' => self::ARMOR_MESSAGE, + 'SIGNED MESSAGE' => self::ARMOR_SIGNED_MESSAGE, + 'PUBLIC KEY BLOCK' => self::ARMOR_PUBLIC_KEY, + 'PRIVATE KEY BLOCK' => self::ARMOR_PRIVATE_KEY, + 'SIGNATURE' => self::ARMOR_SIGNATURE + ); + + /** + * Parses a message into text and PGP components. + * + * @param mixed $text Either the text to parse or a Horde_Stream object. + * + * @return array An array with the parsed text, returned in blocks of + * text corresponding to their actual order. Keys: + *
+     *   - data: (array) The data for each section. Each line has been
+     *           stripped of EOL characters.
+     *   - type: (integer) The type of data contained in block. Valid types
+     *           are the class ARMOR_* constants.
+     * 
+ */ + public function parse($text) + { + $data = array(); + $temp = array( + 'type' => self::ARMOR_TEXT + ); + + if ($text instanceof Horde_Stream) { + $stream = $text; + $stream->rewind(); + } else { + $stream = new Horde_Stream_Temp(); + $stream->add($text, true); + } + + while (!$stream->eof()) { + $val = rtrim($stream->getToChar("\n", false), "\r"); + if ((strpos($val, '-----') === 0) && + preg_match('/^-----(BEGIN|END) PGP ([^-]+)-----\s*$/', $val, $matches)) { + if (isset($temp['data'])) { + $data[] = $temp; + } + $temp = array(); + + if ($matches[1] == 'BEGIN') { + $temp['type'] = $this->_armor[$matches[2]]; + $temp['data'][] = $val; + } elseif ($matches[1] == 'END') { + $temp['type'] = self::ARMOR_TEXT; + $data[count($data) - 1]['data'][] = $val; + } + } else { + $temp['data'][] = $val; + } + } + + if (isset($temp['data']) && + ((count($temp['data']) > 1) || !empty($temp['data'][0]))) { + $data[] = $temp; + } + + return $data; + } + + /** + * Parses an armored message into a Horde_Mime_Part object. + * + * @param mixed $text Either the text to parse or a Horde_Stream object. + * + * @return mixed Either null if no PGP data was found, or a + * Horde_Mime_Part object. For detached signature data: + * the full contents of the armored text (data + sig) is + * contained in the SIG_RAW metadata, and the charset is + * contained in the SIG_CHARSET metadata, within the + * application/pgp-signature part. + */ + public function parseToPart($text, $charset = 'UTF-8') + { + $parts = $this->parse($text); + + if (empty($parts) || + ((count($parts) == 1) && ($parts[0]['type'] == self::ARMOR_TEXT))) { + return null; + } + + $new_part = new Horde_Mime_Part(); + $new_part->setType('multipart/mixed'); + + for ($val = reset($parts); $val; $val = next($parts)) { + switch ($val['type']) { + case self::ARMOR_TEXT: + $part = new Horde_Mime_Part(); + $part->setType('text/plain'); + $part->setCharset($charset); + $part->setContents(implode("\n", $val['data'])); + $new_part->addPart($part); + break; + + case self::ARMOR_PUBLIC_KEY: + $part = new Horde_Mime_Part(); + $part->setType('application/pgp-keys'); + $part->setContents(implode("\n", $val['data'])); + $new_part->addPart($part); + break; + + case self::ARMOR_MESSAGE: + $part = new Horde_Mime_Part(); + $part->setType('multipart/encrypted'); + $part->setMetadata(self::PGP_ARMOR, true); + $part->setContentTypeParameter('protocol', 'application/pgp-encrypted'); + + $part1 = new Horde_Mime_Part(); + $part1->setType('application/pgp-encrypted'); + $part1->setContents("Version: 1\n"); + + $part2 = new Horde_Mime_Part(); + $part2->setType('application/octet-stream'); + $part2->setContents(implode("\n", $val['data'])); + $part2->setDisposition('inline'); + + $part->addPart($part1); + $part->addPart($part2); + + $new_part->addPart($part); + break; + + case self::ARMOR_SIGNED_MESSAGE: + if (($sig = next($parts)) && + ($sig['type'] == self::ARMOR_SIGNATURE)) { + $part = new Horde_Mime_Part(); + $part->setType('multipart/signed'); + // TODO: add micalg parameter + $part->setContentTypeParameter('protocol', 'application/pgp-signature'); + + $part1 = new Horde_Mime_Part(); + $part1->setType('text/plain'); + $part1->setCharset($charset); + + $part1_data = implode("\n", $val['data']); + $part1->setContents(substr($part1_data, strpos($part1_data, "\n\n") + 2)); + + $part2 = new Horde_Mime_Part(); + + $part2->setType('application/pgp-signature'); + $part2->setContents(implode("\n", $sig['data'])); + + $part2->setMetadata(self::SIG_CHARSET, $charset); + $part2->setMetadata(self::SIG_RAW, implode("\n", $val['data']) . "\n" . implode("\n", $sig['data'])); + + $part->addPart($part1); + $part->addPart($part2); + $new_part->addPart($part); + } + } + } + + return $new_part; + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Pgp.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,975 @@ + + * @author Jan Schneider + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * A framework for Horde applications to interact with the GNU Privacy Guard + * program ("GnuPG"). GnuPG implements the OpenPGP standard (RFC 4880). + * + * GnuPG Website: ({@link http://www.gnupg.org/}) + * + * @author Michael Slusarz + * @author Jan Schneider + * @category Horde + * @copyright 2002-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ +class Horde_Crypt_Pgp extends Horde_Crypt +{ + /** + * List of initialized backends. + * + * @var array + */ + protected $_backends = array(); + + /** + * Constructor. + * + * @param array $params Configuration parameters: + * - backends: (array) The explicit list of backend drivers + * (Horde_Crypt_Pgp_Backend objects) to use. + * - program: (string) The path to the GnuPG binary. + * - temp: (string) Location of temporary directory. + */ + public function __construct($params = array()) + { + parent::__construct($params); + } + + /** + * Generates a personal Public/Private keypair combination. + * + * @param string $realname The name to use for the key. + * @param string $email The email to use for the key. + * @param string $passphrase The passphrase to use for the key. + * @param string $comment The comment to use for the key. + * @param integer $keylength The keylength to use for the key. + * @param integer $expire The expiration date (UNIX timestamp). No + * expiration if empty. + * @param string $key_type Key type (@since 2.2.0). + * @param string $subkey_type Subkey type (@since 2.2.0). + * + * @return array An array consisting of the following keys/values: + * - private: (string) Private key. + * - public: (string) Public key. + * + * @throws Horde_Crypt_Exception + */ + public function generateKey($realname, $email, $passphrase, $comment = '', + $keylength = 1024, $expire = null, + $key_type = 'RSA', $subkey_type = 'RSA') + { + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + $ret = $val->generateKey(array( + 'comment' => $comment, + 'email' => $email, + 'expire' => $expire, + 'keylength' => $keylength, + 'key_type' => $key_type, + 'name' => $realname, + 'passphrase' => $passphrase, + 'subkey_type' => $subkey_type + )); + + if ($ret !== false) { + return $ret; + } + } catch (Horde_Crypt_Exception $e) {} + } + + throw new Horde_Crypt_Exception( + Horde_Crypt_Translation::t("Public/Private keypair not generated successfully.") + ); + } + + /** + * Returns information on a PGP data block. + * + * If the data block contains multiple keys, only the first is returned. To + * return all keys of this block, use pgpPacketInformationMultiple() + * instead. + * + * @see pgpPacketInformationMultiple() + * + * @param string $pgpdata The PGP data block. + * + * @return array An array with information on the PGP data block. If an + * element is not present in the data block, it will + * likewise not be set in the array. + *
+     * Array Format:
+     * -------------
+     * [public_key]/[secret_key] => Array
+     *   (
+     *     [created] => Key creation - UNIX timestamp
+     *     [expires] => Key expiration - UNIX timestamp (0 = never expires)
+     *     [size]    => Size of the key in bits
+     *   )
+     *
+     * [keyid] => Key ID of the PGP data (if available)
+     *            16-bit hex value
+     *
+     * [signature] => Array (
+     *     [id{n}/'_SIGNATURE'] => Array (
+     *         [name]        => Full Name
+     *         [comment]     => Comment
+     *         [email]       => E-mail Address
+     *         [keyid]       => 16-bit hex value
+     *         [created]     => Signature creation - UNIX timestamp
+     *         [expires]     => Signature expiration - UNIX timestamp
+     *         [micalg]      => The hash used to create the signature
+     *         [sig_{hex}]   => Array [details of a sig verifying the ID] (
+     *             [created]     => Signature creation - UNIX timestamp
+     *             [expires]     => Signature expiration - UNIX timestamp
+     *             [keyid]       => 16-bit hex value
+     *             [micalg]      => The hash used to create the signature
+     *         )
+     *     )
+     * )
+     * 
+ * + * Each user ID will be stored in the array 'signature' and have data + * associated with it, including an array for information on each + * signature that has signed that UID. Signatures not associated with a + * UID (e.g. revocation signatures and sub keys) will be stored under the + * special keyword '_SIGNATURE'. + */ + public function pgpPacketInformation($pgpdata) + { + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + return $val->packetInfo($pgpdata); + } catch (Horde_Crypt_Exception $e) {} + } + + return array(); + } + + /** + * Returns all information on a PGP data block. + * + * @since Horde_Crypt 2.7.0 + * @see pgpPacketInformation() + * + * @param string $pgpdata The PGP data block. + * + * @return array An array with information on the PGP data block. The + * array contains one or more entries as returned from + * pgpPacketInformation(). + */ + public function pgpPacketInformationMultiple($pgpdata) + { + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + return $val->packetInfoMultiple($pgpdata); + } catch (Horde_Crypt_Exception $e) {} + } + + return array(); + } + + /** + * Returns human readable information on a PGP key. + * + * @param string $pgpdata The PGP data block. + * + * @return string Tabular information on the PGP key. + * @throws Horde_Crypt_Exception + */ + public function pgpPrettyKey($pgpdata) + { + $msg = ''; + $fingerprints = $this->getFingerprintsFromKey($pgpdata); + $info = $this->pgpPacketInformation($pgpdata); + + if (empty($info['signature'])) { + return $msg; + } + + /* Making the property names the same width for all localizations .*/ + $leftrow = array( + Horde_Crypt_Translation::t("Name"), + Horde_Crypt_Translation::t("Key Type"), + Horde_Crypt_Translation::t("Key Creation"), + Horde_Crypt_Translation::t("Expiration Date"), + Horde_Crypt_Translation::t("Key Length"), + Horde_Crypt_Translation::t("Comment"), + Horde_Crypt_Translation::t("E-Mail"), + Horde_Crypt_Translation::t("Hash-Algorithm"), + Horde_Crypt_Translation::t("Key ID"), + Horde_Crypt_Translation::t("Key Fingerprint") + ); + + array_walk( + $leftrow, + function (&$s, $k, $m) { + $s .= ':' . str_repeat(' ', $m - Horde_String::length($s)); + }, + max(array_map('strlen', $leftrow)) + 2 + ); + + foreach ($info['signature'] as $uid_idx => $val) { + if ($uid_idx == '_SIGNATURE') { + continue; + } + + $key = $this->pgpPacketSignatureByUidIndex($pgpdata, $uid_idx); + + $keyid = empty($key['keyid']) + ? null + : $this->getKeyIDString($key['keyid']); + $fingerprint = isset($fingerprints[$keyid]) + ? $fingerprints[$keyid] + : null; + $sig_key = 'sig_' . $key['keyid']; + + $msg .= $leftrow[0] . (isset($key['name']) ? stripcslashes($key['name']) : '') . "\n" + . $leftrow[1] . (($key['key_type'] == 'public_key') ? Horde_Crypt_Translation::t("Public Key") : Horde_Crypt_Translation::t("Private Key")) . "\n" + . $leftrow[2] . strftime("%D", $val[$sig_key]['created']) . "\n" + . $leftrow[3] . (empty($val[$sig_key]['expires']) ? '[' . Horde_Crypt_Translation::t("Never") . ']' : strftime("%D", $val[$sig_key]['expires'])) . "\n" + . $leftrow[4] . $key['key_size'] . " Bytes\n" + . $leftrow[5] . (empty($key['comment']) ? '[' . Horde_Crypt_Translation::t("None") . ']' : $key['comment']) . "\n" + . $leftrow[6] . (empty($key['email']) ? '[' . Horde_Crypt_Translation::t("None") . ']' : $key['email']) . "\n" + . $leftrow[7] . (empty($key['micalg']) ? '[' . Horde_Crypt_Translation::t("Unknown") . ']' : $key['micalg']) . "\n" + . $leftrow[8] . (empty($keyid) ? '[' . Horde_Crypt_Translation::t("Unknown") . ']' : $keyid) . "\n" + . $leftrow[9] . (empty($fingerprint) ? '[' . Horde_Crypt_Translation::t("Unknown") . ']' : $fingerprint) . "\n\n"; + } + + return $msg; + } + + /** + * TODO + * + * @since 2.4.0 + */ + public function getKeyIDString($keyid) + { + /* Get the 8 character key ID string. */ + if (strpos($keyid, '0x') === 0) { + $keyid = substr($keyid, 2); + } + if (strlen($keyid) > 8) { + $keyid = substr($keyid, -8); + } + return '0x' . $keyid; + } + + /** + * Returns only information on the first ID that matches the email address + * input. + * + * @param string $pgpdata The PGP data block. + * @param string $email An e-mail address. + * + * @return array An array with information on the PGP data block. If an + * element is not present in the data block, it will + * likewise not be set in the array. Array elements: + * - comment: Comment + * - created: Signature creation (UNIX timestamp) + * - email: E-mail Address + * - key_created: Key creation (UNIX timestamp) + * - key_expires: Key expiration (UNIX timestamp; 0 = never expires) + * - key_size: Size of the key in bits + * - key_type: The key type (public_key or secret_key) + * - keyid: 16-bit hex value + * - micalg: The hash used to create the signature + * - name: Full Name + */ + public function pgpPacketSignature($pgpdata, $email) + { + $data = $this->pgpPacketInformation($pgpdata); + $out = array(); + + /* Check that [signature] key exists. */ + if (!isset($data['signature'])) { + return $out; + } + + /* Store the signature information now. */ + if (($email == '_SIGNATURE') && + isset($data['signature']['_SIGNATURE'])) { + foreach ($data['signature'][$email] as $key => $value) { + $out[$key] = $value; + } + } else { + $uid_idx = 1; + + while (isset($data['signature']['id' . $uid_idx])) { + if ($data['signature']['id' . $uid_idx]['email'] == $email) { + foreach ($data['signature']['id' . $uid_idx] as $key => $val) { + $out[$key] = $val; + } + break; + } + ++$uid_idx; + } + } + + return $this->_pgpPacketSignature($data, $out); + } + + /** + * Returns information on a PGP signature embedded in PGP data. Similar + * to pgpPacketSignature(), but returns information by unique User ID + * Index (format id{n} where n is an integer of 1 or greater). + * + * @see pgpPacketSignature() + * + * @param string $pgpdata See pgpPacketSignature(). + * @param string $uid_idx The UID index. + * + * @return array See pgpPacketSignature(). + */ + public function pgpPacketSignatureByUidIndex($pgpdata, $uid_idx) + { + $data = $this->pgpPacketInformation($pgpdata); + + return isset($data['signature'][$uid_idx]) + ? $this->_pgpPacketSignature($data, $data['signature'][$uid_idx]) + : array(); + } + + /** + * Adds some data to the pgpPacketSignature*() function array. + * + * @see pgpPacketSignature(). + * + * @param array $data See pgpPacketSignature(). + * @param array $out The return array. + * + * @return array The return array. + */ + protected function _pgpPacketSignature($data, $out) + { + /* If empty, return now. */ + if (empty($out)) { + return $out; + } + + $key_type = null; + + /* Store any public/private key information. */ + if (isset($data['public_key'])) { + $key_type = 'public_key'; + } elseif (isset($data['secret_key'])) { + $key_type = 'secret_key'; + } + + if ($key_type) { + $out['key_type'] = $key_type; + if (isset($data[$key_type]['created'])) { + $out['key_created'] = $data[$key_type]['created']; + } + if (isset($data[$key_type]['expires'])) { + $out['key_expires'] = $data[$key_type]['expires']; + } + if (isset($data[$key_type]['size'])) { + $out['key_size'] = $data[$key_type]['size']; + } + } + + return $out; + } + + /** + * Returns the key ID of the key used to sign a block of PGP data. + * + * @param string $text The PGP signed text block. + * + * @return string The key ID of the key used to sign $text, or null if + * not found. + */ + public function getSignersKeyID($text) + { + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + return $val->getSignersKeyId($text); + } catch (Horde_Crypt_Exception $e) {} + } + + return null; + } + + /** + * Verify a passphrase for a given public/private keypair. + * + * @param string $public_key The user's PGP public key. + * @param string $private_key The user's PGP private key. + * @param string $passphrase The user's passphrase. + * + * @return boolean Returns true on valid passphrase, false on invalid + * passphrase. + * @throws Horde_Crypt_Exception + */ + public function verifyPassphrase($public_key, $private_key, $passphrase) + { + /* Get e-mail address of public key. */ + $info = $this->pgpPacketInformation($public_key); + if (!isset($info['signature']['id1']['email'])) { + throw new Horde_Crypt_Exception( + Horde_Crypt_Translation::t("Could not determine the recipient's e-mail address.") + ); + } + + /* Encrypt a test message. */ + try { + $result = $this->encrypt( + 'Test', + array( + 'type' => 'message', + 'pubkey' => $public_key, + 'recips' => array( + $info['signature']['id1']['email'] => $public_key + ) + ) + ); + } catch (Horde_Crypt_Exception $e) { + return false; + } + + /* Try to decrypt the message. */ + try { + $this->decrypt( + $result, + array( + 'type' => 'message', + 'pubkey' => $public_key, + 'privkey' => $private_key, + 'passphrase' => $passphrase + ) + ); + } catch (Horde_Crypt_Exception $e) { + return false; + } + + return true; + } + + /** + * Sends a PGP public key to a public keyserver. + * + * @param string $pubkey The PGP public key + * @param string $server The keyserver to use. + * @param float $timeout The keyserver timeout. + * + * @throws Horde_Crypt_Exception + */ + public function putPublicKeyserver($pubkey, + $server = self::KEYSERVER_PUBLIC, + $timeout = self::KEYSERVER_TIMEOUT) + { + return $this->_getKeyserverOb($server)->put($pubkey); + } + + /** + * Returns the first matching key ID for an email address from a + * public keyserver. + * + * @param string $address The email address of the PGP key. + * @param string $server The keyserver to use. + * @param float $timeout The keyserver timeout. + * + * @return string The PGP key ID. + * @throws Horde_Crypt_Exception + */ + public function getKeyID($address, $server = self::KEYSERVER_PUBLIC, + $timeout = self::KEYSERVER_TIMEOUT) + { + return $this->_getKeyserverOb($server)->getKeyId($address); + } + + /** + * Get the fingerprints from a key block. + * + * @param string $pgpdata The PGP data block. + * + * @return array The fingerprints in $pgpdata indexed by key id. + */ + public function getFingerprintsFromKey($pgpdata) + { + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + return $val->getFingerprintsFromKey($pgpdata); + } catch (Horde_Crypt_Exception $e) {} + } + + return array(); + } + + /** + * Generates a public key from a private key. + * + * @param string $data Armor text of private key. + * + * @return string Armor text of public key, or null if it could not be + * generated. + */ + public function getPublicKeyFromPrivateKey($data) + { + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + return $val->getPublicKeyFromPrivateKey($data); + } catch (Horde_Crypt_Exception $e) {} + } + + return null; + } + + /** + * Encrypts text using PGP. + * + * @param string $text The text to be PGP encrypted. + * @param array $params The parameters needed for encryption. + * See the individual _encrypt*() functions for the + * parameter requirements. + * + * @return string The encrypted message. + * @throws Horde_Crypt_Exception + */ + public function encrypt($text, $params = array()) + { + switch (isset($params['type']) ? $params['type'] : false) { + case 'message': + $error = Horde_Crypt_Translation::t( + "Could not PGP encrypt message." + ); + $func = 'encryptMessage'; + break; + + case 'signature': + /* Check for required parameters. */ + if (!isset($params['pubkey']) || + !isset($params['privkey']) || + !isset($params['passphrase'])) { + /* This is a programming error, not a user displayable + * error. */ + throw new InvalidArgumentException( + 'A public PGP key, private PGP key, and passphrase are required to sign a message.' + ); + } + + $error = Horde_Crypt_Translation::t("Could not PGP sign message."); + $func = 'encryptSignature'; + break; + + default: + throw new InvalidArgumentException( + 'Incorrect "type" parameter provided.' + ); + } + + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + return $val->$func($text, $params); + } catch (Horde_Crypt_Exception $e) {} + } + + throw new Horde_Crypt_Exception($error); + } + + /** + * Decrypts text using PGP. + * + * @param string $text The text to be PGP decrypted. + * @param array $params The parameters needed for decryption. + * See the individual _decrypt*() functions for the + * parameter requirements. + * + * @return object An object with the following properties: + * - message: (string) The signature result text. + * - result: (boolean) The result of the signature test. + * + * @throws Horde_Crypt_Exception + */ + public function decrypt($text, $params = array()) + { + switch (isset($params['type']) ? $params['type'] : false) { + case 'detached-signature': + case 'signature': + /* Check for required parameters. */ + if (!isset($params['pubkey'])) { + throw new InvalidArgumentException( + 'A public PGP key is required to verify a signed message.' + ); + } + if (($params['type'] === 'detached-signature') && + !isset($params['signature'])) { + throw new InvalidArgumentException( + 'The detached PGP signature block is required to verify the signed message.' + ); + } + + $func = 'decryptSignature'; + break; + + case 'message': + /* Check for required parameters. */ + if (!isset($params['passphrase']) && + empty($params['no_passphrase'])) { + throw new InvalidArgumentException( + 'A passphrase is required to decrypt a message.' + ); + } + + $func = 'decryptMessage'; + break; + + default: + throw new InvalidArgumentException( + 'Incorrect "type" parameter provided.' + ); + } + + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + return $val->$func($text, $params); + } catch (Horde_Crypt_Exception $e) {} + } + + throw new Horde_Crypt_Exception( + Horde_Crypt_Translation::t("Could not decrypt PGP data.") + ); + } + + /** + * Returns whether a text has been encrypted symmetrically. + * + * @todo Return null, instead of exception, if tools are not available to + * determine whether data was encrypted symmetrically. + * + * @param string $text The PGP encrypted text. + * + * @return boolean True if the text is symmetrically encrypted. + * @throws Horde_Crypt_Exception + */ + public function encryptedSymmetrically($text) + { + $this->_initDrivers(); + + foreach ($this->_backends as $val) { + try { + return $val->isEncryptedSymmetrically($text); + } catch (Horde_Crypt_Exception $e) {} + } + + throw new Horde_Crypt_Exception( + Horde_Crypt_Translation::t("Unable to determine if data was encrypted symmetrically.") + ); + } + + /** + * Signs a MIME part using PGP. + * + * @param Horde_Mime_Part $mime_part The object to sign. + * @param array $params The parameters required for signing. + * ({@see _encryptSignature()}). + * + * @return mixed A Horde_Mime_Part object that is signed according to RFC + * 3156. + * @throws Horde_Crypt_Exception + */ + public function signMIMEPart($mime_part, $params = array()) + { + $params = array_merge($params, array( + 'sigtype' => 'detach', + 'type' => 'signature' + )); + + /* RFC 3156 Requirements for a PGP signed message: + * + Content-Type params 'micalg' & 'protocol' are REQUIRED. + * + The digitally signed message MUST be constrained to 7 bits. + * + The MIME headers MUST be a part of the signed data. + * + Ensure there are no trailing spaces in encoded data by forcing + * text to be Q-P encoded (see, e.g., RFC 3676 [4.6]). */ + + /* Ensure that all text parts are Q-P encoded. */ + foreach ($mime_part->contentTypeMap(false) as $key => $val) { + if (strpos($val, 'text/') === 0) { + $mime_part[$key]->setTransferEncoding('quoted-printable', array( + 'send' => true + )); + } + } + + /* Get the signature. */ + $msg_sign = $this->encrypt($mime_part->toString(array( + 'canonical' => true, + 'headers' => true + )), $params); + + /* Add the PGP signature. */ + $pgp_sign = new Horde_Mime_Part(); + $pgp_sign->setType('application/pgp-signature'); + $pgp_sign->setHeaderCharset('UTF-8'); + $pgp_sign->setDisposition('inline'); + $pgp_sign->setDescription( + Horde_Crypt_Translation::t("PGP Digital Signature") + ); + $pgp_sign->setContents($msg_sign, array('encoding' => '7bit')); + + /* Get the algorithim information from the signature. Since we are + * analyzing a signature packet, we need to use the special keyword + * '_SIGNATURE' - see Horde_Crypt_Pgp. */ + $sig_info = $this->pgpPacketSignature($msg_sign, '_SIGNATURE'); + + /* Setup the multipart MIME Part. */ + $part = new Horde_Mime_Part(); + $part->setType('multipart/signed'); + $part->setContents( + "This message is in MIME format and has been PGP signed.\n" + ); + $part->addPart($mime_part); + $part->addPart($pgp_sign); + $part->setContentTypeParameter( + 'protocol', + 'application/pgp-signature' + ); + $part->setContentTypeParameter('micalg', $sig_info['micalg']); + + return $part; + } + + /** + * Encrypts a MIME part using PGP. + * + * @param Horde_Mime_Part $mime_part The object to encrypt. + * @param array $params The parameters required for + * encryption + * ({@see _encryptMessage()}). + * + * @return mixed A Horde_Mime_Part object that is encrypted according to + * RFC 3156. + * @throws Horde_Crypt_Exception + */ + public function encryptMIMEPart($mime_part, $params = array()) + { + $params = array_merge($params, array('type' => 'message')); + + $signenc_body = $mime_part->toString(array( + 'canonical' => true, + 'headers' => true + )); + $message_encrypt = $this->encrypt($signenc_body, $params); + + /* Set up MIME Structure according to RFC 3156. */ + $part = new Horde_Mime_Part(); + $part->setType('multipart/encrypted'); + $part->setHeaderCharset('UTF-8'); + $part->setContentTypeParameter( + 'protocol', + 'application/pgp-encrypted' + ); + $part->setDescription( + Horde_Crypt_Translation::t("PGP Encrypted Data") + ); + $part->setContents( + "This message is in MIME format and has been PGP encrypted.\n" + ); + + $part1 = new Horde_Mime_Part(); + $part1->setType('application/pgp-encrypted'); + $part1->setCharset(null); + $part1->setContents("Version: 1\n", array('encoding' => '7bit')); + $part->addPart($part1); + + $part2 = new Horde_Mime_Part(); + $part2->setType('application/octet-stream'); + $part2->setCharset(null); + $part2->setContents($message_encrypt, array('encoding' => '7bit')); + $part2->setDisposition('inline'); + $part->addPart($part2); + + return $part; + } + + /** + * Signs and encrypts a MIME part using PGP. + * + * @param Horde_Mime_Part $mime_part The object to sign and encrypt. + * @param array $sign_params The parameters required for + * signing + * ({@see _encryptSignature()}). + * @param array $encrypt_params The parameters required for + * encryption + * ({@see _encryptMessage()}). + * + * @return mixed A Horde_Mime_Part object that is signed and encrypted + * according to RFC 3156. + * @throws Horde_Crypt_Exception + */ + public function signAndEncryptMIMEPart($mime_part, $sign_params = array(), + $encrypt_params = array()) + { + /* RFC 3156 requires that the entire signed message be encrypted. We + * need to explicitly call using Horde_Crypt_Pgp:: because we don't + * know whether a subclass has extended these methods. */ + $part = $this->signMIMEPart($mime_part, $sign_params); + $part = $this->encryptMIMEPart($part, $encrypt_params); + $part->setContents( + "This message is in MIME format and has been PGP signed and encrypted.\n" + ); + + $part->setCharset($this->_params['email_charset']); + $part->setDescription( + Horde_String::convertCharset( + Horde_Crypt_Translation::t("PGP Signed/Encrypted Data"), + 'UTF-8', + $this->_params['email_charset'] + ) + ); + + return $part; + } + + /** + * Generates a Horde_Mime_Part object, in accordance with RFC 3156, that + * contains a public key. + * + * @param string $key The public key. + * + * @return Horde_Mime_Part An object that contains the public key. + */ + public function publicKeyMIMEPart($key) + { + $part = new Horde_Mime_Part(); + $part->setType('application/pgp-keys'); + $part->setHeaderCharset('UTF-8'); + $part->setDescription(Horde_Crypt_Translation::t("PGP Public Key")); + $part->setContents($key, array('encoding' => '7bit')); + + return $part; + } + + /** + * Initialize the backend driver list. + */ + protected function _initDrivers() + { + if (empty($this->_backends)) { + if (isset($this->_params['backends'])) { + $this->_backends = $this->_params['backends']; + } else { + if (Horde_Crypt_Pgp_Backend_Binary::supported()) { + $this->_backends[] = new Horde_Crypt_Pgp_Backend_Binary( + $this->_params['program'], + isset($this->_params['temp']) ? $this->_params['temp'] : null + ); + } + } + } + } + + /* Deprecated components. */ + + /** + * @deprecated Use Horde_Crypt_Pgp_Parse instead. + */ + const ARMOR_MESSAGE = 1; + const ARMOR_SIGNED_MESSAGE = 2; + const ARMOR_PUBLIC_KEY = 3; + const ARMOR_PRIVATE_KEY = 4; + const ARMOR_SIGNATURE = 5; + const ARMOR_TEXT = 6; + + /** + * @deprecated Use Horde_Crypt_Pgp_Parse instead. + */ + protected $_armor = array( + 'MESSAGE' => self::ARMOR_MESSAGE, + 'SIGNED MESSAGE' => self::ARMOR_SIGNED_MESSAGE, + 'PUBLIC KEY BLOCK' => self::ARMOR_PUBLIC_KEY, + 'PRIVATE KEY BLOCK' => self::ARMOR_PRIVATE_KEY, + 'SIGNATURE' => self::ARMOR_SIGNATURE + ); + + /** + * @deprecated Use Horde_Crypt_Pgp_Keyserver instead. + */ + const KEYSERVER_PUBLIC = 'pool.sks-keyservers.net'; + const KEYSERVER_REFUSE = 3; + const KEYSERVER_TIMEOUT = 10; + + /** + * @deprecated Use Horde_Crypt_Pgp_Parse instead. + */ + public function parsePGPData($text) + { + $parse = new Horde_Crypt_Pgp_Parse(); + return $parse->parse($text); + } + + /** + * @deprecated Use Horde_Crypt_Pgp_Keyserver instead. + */ + public function getPublicKeyserver($keyid, + $server = self::KEYSERVER_PUBLIC, + $timeout = self::KEYSERVER_TIMEOUT, + $address = null) + { + $keyserver = $this->_getKeyserverOb($server); + if (empty($keyid) && !empty($address)) { + $keyid = $keyserver->getKeyID($address); + } + return $keyserver->get($keyid); + } + + /** + * @deprecated + */ + public function generateRevocation($key, $email, $passphrase) + { + throw new Horde_Crypt_Exception('Not supported'); + } + + /** + * @deprecated + * @internal + */ + protected function _getKeyserverOb($server) + { + $params = array( + 'keyserver' => $server, + 'http' => new Horde_Http_Client() + ); + + if (!empty($this->_params['proxy_host'])) { + $params['http']->{'request.proxyServer'} = $this->_params['proxy_host']; + if (isset($this->_params['proxy_port'])) { + $params['http']->{'request.proxyPort'} = $this->_params['proxy_port']; + } + } + + return new Horde_Crypt_Pgp_Keyserver($this, $params); + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Smime.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Smime.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Smime.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Smime.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,860 @@ + + * @author Michael Slusarz + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * Library to interact with the OpenSSL library and implement S/MIME. + * + * @author Mike Cochrane + * @author Michael Slusarz + * @category Horde + * @copyright 2002-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ +class Horde_Crypt_Smime extends Horde_Crypt +{ + /** + * Constructor. + * + * @param array $params Configuration parameters: + * - temp: (string) Location of temporary directory. + */ + public function __construct($params = array()) + { + parent::__construct($params); + } + + /** + * Verify a passphrase for a given private key. + * + * @param string $private_key The user's private key. + * @param string $passphrase The user's passphrase. + * + * @return boolean Returns true on valid passphrase, false on invalid + * passphrase. + */ + public function verifyPassphrase($private_key, $passphrase) + { + $res = is_null($passphrase) + ? openssl_pkey_get_private($private_key) + : openssl_pkey_get_private($private_key, $passphrase); + + return is_resource($res); + } + + /** + * Encrypt text using S/MIME. + * + * @param string $text The text to be encrypted. + * @param array $params The parameters needed for encryption. + * See the individual _encrypt*() functions for + * the parameter requirements. + * + * @return string The encrypted message. + * @throws Horde_Crypt_Exception + */ + public function encrypt($text, $params = array()) + { + /* Check for availability of OpenSSL PHP extension. */ + $this->checkForOpenSSL(); + + if (isset($params['type'])) { + if ($params['type'] === 'message') { + return $this->_encryptMessage($text, $params); + } elseif ($params['type'] === 'signature') { + return $this->_encryptSignature($text, $params); + } + } + } + + /** + * Decrypt text via S/MIME. + * + * @param string $text The text to be smime decrypted. + * @param array $params The parameters needed for decryption. + * See the individual _decrypt*() functions for + * the parameter requirements. + * + * @return string The decrypted message. + * @throws Horde_Crypt_Exception + */ + public function decrypt($text, $params = array()) + { + /* Check for availability of OpenSSL PHP extension. */ + $this->checkForOpenSSL(); + + if (isset($params['type'])) { + if ($params['type'] === 'message') { + return $this->_decryptMessage($text, $params); + } elseif (($params['type'] === 'signature') || + ($params['type'] === 'detached-signature')) { + return $this->_decryptSignature($text, $params); + } + } + } + + /** + * Verify a signature using via S/MIME. + * + * @param string $text The multipart/signed data to be verified. + * @param mixed $certs Either a single or array of root certificates. + * + * @return stdClass Object with the following elements: + *
+     * cert - (string) The certificate of the signer stored in the message (in
+     *        PEM format).
+     * email - (string) The email of the signing person.
+     * msg - (string) Status string.
+     * verify - (boolean) True if certificate was verified.
+     * 
+ * @throws Horde_Crypt_Exception + */ + public function verify($text, $certs) + { + /* Check for availability of OpenSSL PHP extension. */ + $this->checkForOpenSSL(); + + /* Create temp files for input/output. */ + $input = $this->_createTempFile('horde-smime'); + $output = $this->_createTempFile('horde-smime'); + + /* Write text to file */ + file_put_contents($input, $text); + unset($text); + + $root_certs = array(); + if (!is_array($certs)) { + $certs = array($certs); + } + foreach ($certs as $file) { + if (file_exists($file)) { + $root_certs[] = $file; + } + } + + $ob = new stdClass; + + if (!empty($root_certs) && + (openssl_pkcs7_verify($input, 0, $output, $root_certs) === true)) { + /* Message verified */ + $ob->msg = Horde_Crypt_Translation::t("Message verified successfully."); + $ob->verify = true; + } else { + /* Try again without verfying the signer's cert */ + $result = openssl_pkcs7_verify($input, PKCS7_NOVERIFY, $output); + + if ($result === -1) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Verification failed - an unknown error has occurred.")); + } elseif ($result === false) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Verification failed - this message may have been tampered with.")); + } + + $ob->msg = Horde_Crypt_Translation::t("Message verified successfully but the signer's certificate could not be verified."); + $ob->verify = false; + } + + $ob->cert = file_get_contents($output); + $ob->email = $this->getEmailFromKey($ob->cert); + + return $ob; + } + + /** + * Extract the contents from signed S/MIME data. + * + * @param string $data The signed S/MIME data. + * @param string $sslpath The path to the OpenSSL binary. @deprecated and + * not used, just for backwards-compatibility. + * + * @return string The contents embedded in the signed data. + * @throws Horde_Crypt_Exception + */ + public function extractSignedContents($data, $sslpath = null) + { + /* Check for availability of OpenSSL PHP extension. */ + $this->checkForOpenSSL(); + + /* Create temp files for input/output/certs. */ + $input = $this->_createTempFile('horde-smime'); + $output = $this->_createTempFile('horde-smime'); + $certs = $this->_createTempFile('horde-smime'); + + /* Write text to file. */ + file_put_contents($input, $data); + unset($data); + + /* Unfortunatelly the openssl_pkcs7_verify method does not behave as + * explained in openssl extensions documentation, it does not return + * content if no certs specified. Therefore, we need to use double + * verification which the first one tries to extract certificats then + * the second to extract content. */ + if (openssl_pkcs7_verify($input, PKCS7_NOVERIFY, $certs) === true && + openssl_pkcs7_verify($input, PKCS7_NOVERIFY, $certs, array(), $certs, $output) === true) { + $ret = file_get_contents($output); + if ($ret) { + return $ret; + } + } + + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("OpenSSL error: Could not extract data from signed S/MIME part.")); + } + + /** + * Sign a MIME part using S/MIME. This produces S/MIME Version 3.2 + * compatible data (see RFC 5751 [3.4]). + * + * @param Horde_Mime_Part $mime_part The object to sign. + * @param array $params The parameters required for signing. + * + * @return Horde_Mime_Part A signed MIME part object. + * @throws Horde_Crypt_Exception + */ + public function signMIMEPart($mime_part, $params) + { + /* Sign the part as a message */ + $message = $this->encrypt( + $mime_part->toString(array( + 'headers' => true, + 'canonical' => true + )), + $params + ); + + /* Break the result into its components */ + $mime_message = Horde_Mime_Part::parseMessage( + $message, + array('forcemime' => true) + ); + + $smime_sign = $mime_message->getPart('2'); + $smime_sign->setDescription( + Horde_Crypt_Translation::t("S/MIME Signature") + ); + $smime_sign->setTransferEncoding('base64', array('send' => true)); + + $smime_part = new Horde_Mime_Part(); + $smime_part->setType('multipart/signed'); + $smime_part->setContents( + "This is a cryptographically signed message in MIME format.\n" + ); + $smime_part->setContentTypeParameter( + 'protocol', + 'application/pkcs7-signature' + ); + $smime_part->setContentTypeParameter( + 'micalg', $mime_message->getContentTypeParameter('micalg') + ); + $smime_part->addPart($mime_part); + $smime_part->addPart($smime_sign); + + return $smime_part; + } + + /** + * Encrypt a MIME part using S/MIME. This produces S/MIME Version 3.2 + * compatible data (see RFC 5751 [3.3]). + * + * @param Horde_Mime_Part $mime_part The object to encrypt. + * @param array $params The parameters required for + * encryption. + * + * @return Horde_Mime_Part An encrypted MIME part object. + * @throws Horde_Crypt_Exception + */ + public function encryptMIMEPart($mime_part, $params = array()) + { + /* Sign the part as a message */ + $message = $this->encrypt( + $mime_part->toString(array( + 'headers' => true, + 'canonical' => true + )), + $params + ); + + $msg = new Horde_Mime_Part(); + $msg->setCharset($this->_params['email_charset']); + $msg->setHeaderCharset('UTF-8'); + $msg->setDescription( + Horde_Crypt_Translation::t("S/MIME Encrypted Message") + ); + $msg->setDisposition('inline'); + $msg->setType('application/pkcs7-mime'); + $msg->setContentTypeParameter('smime-type', 'enveloped-data'); + $msg->setContents( + substr($message, strpos($message, "\n\n") + 2), + array('encoding' => 'base64') + ); + + return $msg; + } + + /** + * Encrypt a message in S/MIME format using a public key. + * + * @param string $text The text to be encrypted. + * @param array $params The parameters needed for encryption. + * - type: (string) [REQUIRED] 'message'. + * - pubkey: (mixed) [REQUIRED] Public key/cert or array of public + * keys/certs. + * + * @return string The encrypted message. + * @throws Horde_Crypt_Exception + */ + protected function _encryptMessage($text, $params) + { + /* Check for required parameters. */ + if (!isset($params['pubkey'])) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t( + "A public S/MIME key is required to encrypt a message." + )); + } + + /* Create temp files for input/output. */ + $input = $this->_createTempFile('horde-smime'); + $output = $this->_createTempFile('horde-smime'); + + /* Store message in file. */ + file_put_contents($input, $text); + unset($text); + + /* Encrypt the document. */ + $ciphers = array( + // SHOULD- support (RFC 5751 [2.7]) + OPENSSL_CIPHER_3DES + ); + if (defined('OPENSSL_CIPHER_AES_128_CBC')) { + // MUST support (RFC 5751 [2.7]) + array_unshift($ciphers, OPENSSL_CIPHER_AES_128_CBC); + // SHOULD+ support (RFC 5751 [2.7]) + array_unshift($ciphers, OPENSSL_CIPHER_AES_192_CBC); + array_unshift($ciphers, OPENSSL_CIPHER_AES_256_CBC); + } + + foreach ($ciphers as $val) { + $success = openssl_pkcs7_encrypt( + $input, + $output, + $params['pubkey'], + array(), + 0, + $val + ); + + if ($success && ($result = file_get_contents($output))) { + return $this->_fixContentType($result, 'message'); + } + } + + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t( + "Could not S/MIME encrypt message." + )); + } + + /** + * Sign a message in S/MIME format using a private key. + * + * @param string $text The text to be signed. + * @param array $params The (string) parameters needed for signing: + * - 'certs': Additional signing certs (Optional) + * - 'passphrase': Passphrase for key (REQUIRED) + * - 'privkey': Private key (REQUIRED) + * - 'pubkey': Public key (REQUIRED) + * - 'sigtype': Determine the signature type to use. (Optional): + * - 'cleartext': Make a clear text signature + * - 'detach': Make a detached signature (DEFAULT) + * - 'type': 'signature' (REQUIRED) + * + * @return string The signed message. + * @throws Horde_Crypt_Exception + */ + protected function _encryptSignature($text, $params) + { + /* Check for required parameters. */ + if (!isset($params['pubkey']) || + !isset($params['privkey']) || + !array_key_exists('passphrase', $params)) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("A public S/MIME key, private S/MIME key, and passphrase are required to sign a message.")); + } + + /* Create temp files for input/output/certificates. */ + $input = $this->_createTempFile('horde-smime'); + $output = $this->_createTempFile('horde-smime'); + $certs = $this->_createTempFile('horde-smime'); + + /* Store message in temporary file. */ + file_put_contents($input, $text); + unset($text); + + /* Store additional certs in temporary file. */ + if (!empty($params['certs'])) { + file_put_contents($certs, $params['certs']); + } + + /* Determine the signature type to use. */ + $flags = (isset($params['sigtype']) && ($params['sigtype'] == 'cleartext')) + ? PKCS7_TEXT + : PKCS7_DETACHED; + + $privkey = (is_null($params['passphrase'])) ? $params['privkey'] : array($params['privkey'], $params['passphrase']); + + if (empty($params['certs'])) { + $res = openssl_pkcs7_sign($input, $output, $params['pubkey'], $privkey, array(), $flags); + } else { + $res = openssl_pkcs7_sign($input, $output, $params['pubkey'], $privkey, array(), $flags, $certs); + } + + if (!$res) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Could not S/MIME sign message.")); + } + + /* Output from openssl_pkcs7_sign may contain both \n and \r\n EOLs. + * Canonicalize to \r\n. */ + $fp = fopen($output, 'r'); + stream_filter_register('horde_eol', 'Horde_Stream_Filter_Eol'); + stream_filter_append($fp, 'horde_eol'); + $data = stream_get_contents($fp); + fclose($fp); + + return $this->_fixContentType($data, 'signature'); + } + + /** + * Decrypt an S/MIME encrypted message using a private/public keypair + * and a passhprase. + * + * @param string $text The text to be decrypted. + * @param array $params The parameters needed for decryption. + *
+     * Parameters:
+     * ===========
+     * 'type'        =>  'message' (REQUIRED)
+     * 'pubkey'      =>  public key. (REQUIRED)
+     * 'privkey'     =>  private key. (REQUIRED)
+     * 'passphrase'  =>  Passphrase for Key. (REQUIRED)
+     * 
+ * + * @return string The decrypted message. + * @throws Horde_Crypt_Exception + */ + protected function _decryptMessage($text, $params) + { + /* Check for required parameters. */ + if (!isset($params['pubkey']) || + !isset($params['privkey']) || + !array_key_exists('passphrase', $params)) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("A public S/MIME key, private S/MIME key, and passphrase are required to decrypt a message.")); + } + + /* Create temp files for input/output. */ + $input = $this->_createTempFile('horde-smime'); + $output = $this->_createTempFile('horde-smime'); + + /* Store message in file. */ + file_put_contents($input, $text); + unset($text); + + $privkey = is_null($params['passphrase']) + ? $params['privkey'] + : array($params['privkey'], $params['passphrase']); + if (openssl_pkcs7_decrypt($input, $output, $params['pubkey'], $privkey)) { + return file_get_contents($output); + } + + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Could not decrypt S/MIME data.")); + } + + /** + * Sign and Encrypt a MIME part using S/MIME. + * + * @param Horde_Mime_Part $mime_part The object to sign and encrypt. + * @param array $sign_params The parameters required for + * signing. @see _encryptSignature(). + * @param array $encrypt_params The parameters required for + * encryption. + * @see _encryptMessage(). + * + * @return mixed A Horde_Mime_Part object that is signed and encrypted. + * @throws Horde_Crypt_Exception + */ + public function signAndEncryptMIMEPart($mime_part, $sign_params = array(), + $encrypt_params = array()) + { + $part = $this->signMIMEPart($mime_part, $sign_params); + return $this->encryptMIMEPart($part, $encrypt_params); + } + + /** + * Convert a PEM format certificate to readable HTML version. + * + * @param string $cert PEM format certificate. + * + * @return string HTML detailing the certificate. + */ + public function certToHTML($cert) + { + $fieldnames = array( + /* Common Fields */ + 'description' => Horde_Crypt_Translation::t("Description"), + 'emailAddress' => Horde_Crypt_Translation::t("Email Address"), + 'commonName' => Horde_Crypt_Translation::t("Common Name"), + 'organizationName' => Horde_Crypt_Translation::t("Organisation"), + 'organizationalUnitName' => Horde_Crypt_Translation::t("Organisational Unit"), + 'countryName' => Horde_Crypt_Translation::t("Country"), + 'stateOrProvinceName' => Horde_Crypt_Translation::t("State or Province"), + 'localityName' => Horde_Crypt_Translation::t("Location"), + 'streetAddress' => Horde_Crypt_Translation::t("Street Address"), + 'telephoneNumber' => Horde_Crypt_Translation::t("Telephone Number"), + 'surname' => Horde_Crypt_Translation::t("Surname"), + 'givenName' => Horde_Crypt_Translation::t("Given Name"), + + /* X590v3 Extensions */ + 'extendedKeyUsage' => Horde_Crypt_Translation::t("Extended Key Usage"), + 'basicConstraints' => Horde_Crypt_Translation::t("Basic Constraints"), + 'subjectAltName' => Horde_Crypt_Translation::t("Subject Alternative Name"), + 'subjectKeyIdentifier' => Horde_Crypt_Translation::t("Subject Key Identifier"), + 'certificatePolicies' => Horde_Crypt_Translation::t("Certificate Policies"), + 'crlDistributionPoints' => Horde_Crypt_Translation::t("CRL Distribution Points"), + 'keyUsage' => Horde_Crypt_Translation::t("Key Usage") + ); + + $details = $this->parseCert($cert); + + $text = '
';
+
+        /* Subject (a/k/a Certificate Owner) */
+        $text .= "" . Horde_Crypt_Translation::t("Certificate Owner") . ":\n";
+
+        foreach ($details['subject'] as $key => $value) {
+            $value = htmlspecialchars($this->_implodeValues($value));
+            $text .= isset($fieldnames[$key])
+                ? sprintf("  %s: %s\n", htmlspecialchars($fieldnames[$key]), $value)
+                : sprintf("  *%s: %s\n", htmlspecialchars($key), $value);
+        }
+        $text .= "\n";
+
+        /* Issuer */
+        $text .= "" . Horde_Crypt_Translation::t("Issuer") . ":\n";
+
+        foreach ($details['issuer'] as $key => $value) {
+            $value = htmlspecialchars($this->_implodeValues($value));
+            $text .= isset($fieldnames[$key])
+                ? sprintf("  %s: %s\n", htmlspecialchars($fieldnames[$key]), $value)
+                : sprintf("  *%s: %s\n", htmlspecialchars($key), $value);
+        }
+        $text .= "\n";
+
+        /* Dates  */
+        $text .= "" . Horde_Crypt_Translation::t("Validity") . ":\n" .
+            sprintf("  %s: %s\n", Horde_Crypt_Translation::t("Not Before"), strftime("%x %X", $details['validity']['notbefore']->getTimestamp())) .
+            sprintf("  %s: %s\n", Horde_Crypt_Translation::t("Not After"), strftime("%x %X", $details['validity']['notafter']->getTimestamp())) .
+            "\n";
+
+        /* X509v3 extensions */
+        if (!empty($details['extensions'])) {
+            $text .= "" . Horde_Crypt_Translation::t("X509v3 extensions") . ":\n";
+
+            foreach ($details['extensions'] as $key => $value) {
+                $value = htmlspecialchars(trim($this->_implodeValues($value, 6)));
+                $text .= isset($fieldnames[$key])
+                    ? sprintf("  %s:\n    %s\n", htmlspecialchars($fieldnames[$key]), $value)
+                    : sprintf("  *%s:\n    %s\n", htmlspecialchars($key), $value);
+            }
+
+            $text .= "\n";
+        }
+
+        /* Certificate Details */
+        $text .= "" . Horde_Crypt_Translation::t("Certificate Details") . ":\n" .
+            sprintf("  %s: %d\n", Horde_Crypt_Translation::t("Version"), $details['version']) .
+            sprintf("  %s: %d\n", Horde_Crypt_Translation::t("Serial Number"), $details['serialNumber']);
+
+        return $text . "\n
"; + } + + /** + * Formats a multi-value cert field. + * + * @param array|string $value A cert field value. + * @param integer $indent The indention level. + * + * @return string The formatted cert field value(s). + */ + protected function _implodeValues($value, $indent = 4) + { + if (is_array($value)) { + $value = "\n" . str_repeat(' ', $indent) + . implode("\n" . str_repeat(' ', $indent), $value); + } + return $value; + } + + /** + * Extract the contents of a PEM format certificate to an array. + * + * @param string $cert PEM format certificate. + * + * @return array All extractable information about the certificate. + */ + public function parseCert($cert) + { + $data = openssl_x509_parse($cert, false); + if (!$data) { + throw new Horde_Crypt_Exception(sprintf(Horde_Crypt_Translation::t("Error parsing S/MIME certficate: %s"), openssl_error_string())); + } + + $details = array( + 'extensions' => $data['extensions'], + 'issuer' => $data['issuer'], + 'serialNumber' => $data['serialNumber'], + 'subject' => $data['subject'], + 'validity' => array( + 'notafter' => new DateTime('@' . $data['validTo_time_t']), + 'notbefore' => new DateTime('@' . $data['validFrom_time_t']) + ), + 'version' => $data['version'] + ); + + // Add additional fields for BC purposes. + $details['certificate'] = $details; + + $bc_changes = array( + 'emailAddress' => 'Email', + 'commonName' => 'CommonName', + 'organizationName' => 'Organisation', + 'organizationalUnitName' => 'OrganisationalUnit', + 'countryName' => 'Country', + 'stateOrProvinceName' => 'StateOrProvince', + 'localityName' => 'Location', + 'streetAddress' => 'StreetAddress', + 'telephoneNumber' => 'TelephoneNumber', + 'surname' => 'Surname', + 'givenName' => 'GivenName' + ); + foreach (array('issuer', 'subject') as $val) { + foreach (array_keys($details[$val]) as $key) { + if (isset($bc_changes[$key])) { + $details['certificate'][$val][$bc_changes[$key]] = $details[$val][$key]; + unset($details['certificate'][$val][$key]); + } + } + } + + return $details; + } + + /** + * Decrypt an S/MIME signed message using a public key. + * + * @param string $text The text to be verified. + * @param array $params The parameters needed for verification. + * + * @return string The verification message. + * @throws Horde_Crypt_Exception + */ + protected function _decryptSignature($text, $params) + { + throw new Horde_Crypt_Exception('_decryptSignature() ' . Horde_Crypt_Translation::t("not yet implemented")); + } + + /** + * Check for the presence of the OpenSSL extension to PHP. + * + * @throws Horde_Crypt_Exception + */ + public function checkForOpenSSL() + { + if (!Horde_Util::extensionExists('openssl')) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("The openssl module is required for the Horde_Crypt_Smime:: class.")); + } + } + + /** + * Extract the email address from a public key. + * + * @param string $key The public key. + * + * @return mixed Returns the first email address found, or null if + * there are none. + */ + public function getEmailFromKey($key) + { + $key_info = openssl_x509_parse($key); + if (!is_array($key_info)) { + return null; + } + + if (isset($key_info['subject'])) { + if (isset($key_info['subject']['Email'])) { + return $key_info['subject']['Email']; + } elseif (isset($key_info['subject']['emailAddress'])) { + return $key_info['subject']['emailAddress']; + } + } + + // Check subjectAltName per http://www.ietf.org/rfc/rfc3850.txt + if (isset($key_info['extensions']['subjectAltName'])) { + $names = preg_split('/\s*,\s*/', $key_info['extensions']['subjectAltName'], -1, PREG_SPLIT_NO_EMPTY); + foreach ($names as $name) { + if (strpos($name, ':') === false) { + continue; + } + list($kind, $value) = explode(':', $name, 2); + if (Horde_String::lower($kind) == 'email') { + return $value; + } + } + } + + return null; + } + + /** + * Convert a PKCS 12 encrypted certificate package into a private key, + * public key, and any additional keys. + * + * @param string $pkcs12 The PKCS 12 data. + * @param array $params The parameters needed for parsing. + *
+     * Parameters:
+     * ===========
+     * 'sslpath' => The path to the OpenSSL binary. (REQUIRED)
+     * 'password' => The password to use to decrypt the data. (Optional)
+     * 'newpassword' => The password to use to encrypt the private key.
+     *                  (Optional)
+     * 
+ * + * @return stdClass An object. + * 'private' - The private key in PEM format. + * 'public' - The public key in PEM format. + * 'certs' - An array of additional certs. + * @throws Horde_Crypt_Exception + */ + public function parsePKCS12Data($pkcs12, $params) + { + /* Check for availability of OpenSSL PHP extension. */ + $this->checkForOpenSSL(); + + if (!isset($params['sslpath'])) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("No path to the OpenSSL binary provided. The OpenSSL binary is necessary to work with PKCS 12 data.")); + } + $sslpath = escapeshellcmd($params['sslpath']); + + /* Create temp files for input/output. */ + $input = $this->_createTempFile('horde-smime'); + $output = $this->_createTempFile('horde-smime'); + + $ob = new stdClass; + + /* Write text to file */ + file_put_contents($input, $pkcs12); + unset($pkcs12); + + /* Extract the private key from the file first. */ + $cmdline = $sslpath . ' pkcs12 -in ' . $input . ' -out ' . $output . ' -nocerts'; + if (isset($params['password'])) { + $cmdline .= ' -passin stdin'; + if (!empty($params['newpassword'])) { + $cmdline .= ' -passout stdin'; + } else { + $cmdline .= ' -nodes'; + } + } else { + $cmdline .= ' -nodes'; + } + + if ($fd = popen($cmdline, 'w')) { + fwrite($fd, $params['password'] . "\n"); + if (!empty($params['newpassword'])) { + fwrite($fd, $params['newpassword'] . "\n"); + } + pclose($fd); + } else { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to smime binary.")); + } + + $ob->private = trim(file_get_contents($output)); + if (empty($ob->private)) { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Password incorrect")); + } + + /* Extract the client public key next. */ + $cmdline = $sslpath . ' pkcs12 -in ' . $input . ' -out ' . $output . ' -nokeys -clcerts'; + if (isset($params['password'])) { + $cmdline .= ' -passin stdin'; + } + + if ($fd = popen($cmdline, 'w')) { + fwrite($fd, $params['password'] . "\n"); + pclose($fd); + } else { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to smime binary.")); + } + + $ob->public = trim(file_get_contents($output)); + + /* Extract the CA public key next. */ + $cmdline = $sslpath . ' pkcs12 -in ' . $input . ' -out ' . $output . ' -nokeys -cacerts'; + if (isset($params['password'])) { + $cmdline .= ' -passin stdin'; + } + + if ($fd = popen($cmdline, 'w')) { + fwrite($fd, $params['password'] . "\n"); + pclose($fd); + } else { + throw new Horde_Crypt_Exception(Horde_Crypt_Translation::t("Error while talking to smime binary.")); + } + + $ob->certs = trim(file_get_contents($output)); + + return $ob; + } + + /** + * The Content-Type parameters PHP's openssl_pkcs7_* functions return are + * deprecated. Fix these headers to the correct ones (see RFC 2311). + * + * @param string $text The PKCS7 data. + * @param string $type Is this 'message' or 'signature' data? + * + * @return string The PKCS7 data with the correct Content-Type parameter. + */ + protected function _fixContentType($text, $type) + { + if ($type == 'message') { + $from = 'application/x-pkcs7-mime'; + $to = 'application/pkcs7-mime'; + } else { + $from = 'application/x-pkcs7-signature'; + $to = 'application/pkcs7-signature'; + } + return str_replace('Content-Type: ' . $from, 'Content-Type: ' . $to, $text); + } + + /** + * Create a temporary file that will be deleted at the end of this + * process. + * + * @param string $descrip Description string to use in filename. + * @param boolean $delete Delete the file automatically? + * + * @return string Filename of a temporary file. + */ + protected function _createTempFile($descrip = 'horde-crypt', $delete = true) + { + return Horde_Util::getTempFile($descrip, $delete, $this->_params['temp'], true); + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Translation.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Translation.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt/Translation.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt/Translation.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,38 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * Horde_Crypt_Translation is the translation wrapper class for Horde_Crypt. + * + * @author Jan Schneider + * @category Horde + * @copyright 2010-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ +class Horde_Crypt_Translation extends Horde_Translation_Autodetect +{ + /** + * The translation domain + * + * @var string + */ + protected static $_domain = 'Horde_Crypt'; + + /** + * The absolute PEAR path to the translations for the default gettext handler. + * + * @var string + */ + protected static $_pearDirectory = '@data_dir@'; +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/lib/Horde/Crypt.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/lib/Horde/Crypt.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,110 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ + +/** + * Provides an API for various cryptographic systems used by Horde + * applications. + * + * @author Michael Slusarz + * @category Horde + * @copyright 2002-2017 Horde LLC + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + */ +class Horde_Crypt +{ + /** + * Configuration parameters. + * + * @var array + */ + protected $_params = array(); + + /** + * Attempts to return a concrete Horde_Crypt instance based on $driver. + * + * @param string $driver Either a driver name, or the full class name to + * use (class must extend Horde_Crypt). + * @param array $params A hash containing any additional configuration + * or parameters a subclass might need. + * + * @return Horde_Crypt The newly created concrete instance. + * @throws Horde_Crypt_Exception + */ + public static function factory($driver, $params = array()) + { + /* Return a base Horde_Crypt object if no driver is specified. */ + if (empty($driver) || (strcasecmp($driver, 'none') == 0)) { + return new Horde_Crypt(); + } + + /* Base drivers (in Crypt/ directory). */ + $class = __CLASS__ . '_' . Horde_String::ucfirst(basename($driver)); + if (class_exists($class)) { + return new $class($params); + } + + /* Explicit class name, */ + $class = $driver; + if (class_exists($class)) { + return new $class($params); + } + + throw new Horde_Crypt_Exception( + __CLASS__ . ': Class definition of ' . $driver . ' not found.' + ); + } + + /** + * Constructor. + * + * @param array $params Configuration parameters: + * - email_charset: (string) The default email charset. + */ + public function __construct(array $params = array()) + { + $this->_params = array_merge(array( + 'email_charset' => null, + ), $params); + } + + /** + * Encrypt the requested data. + * This method should be provided by all classes that extend Horde_Crypt. + * + * @param string $data The data to encrypt. + * @param array $params An array of arguments needed to encrypt the data. + * + * @return array The encrypted data. + */ + public function encrypt($data, $params = array()) + { + return $data; + } + + /** + * Decrypt the requested data. + * This method should be provided by all classes that extend Horde_Crypt. + * + * @param string $data The data to decrypt. + * @param array $params An array of arguments needed to decrypt the data. + * + * @return array The decrypted data. + * @throws Horde_Crypt_Exception + */ + public function decrypt($data, $params = array()) + { + return $data; + } + +} Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ar/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ar/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ar/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ar/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ar/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ar/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,430 @@ +# Arabic translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "Comment" +msgstr "الأوامر:" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:939 +#, fuzzy +msgid "Connection refused to the public keyserver." +msgstr "حصل خطأ خلال الإتصال بمخدم الـ FTP." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "لا إمكانية لنسخ %s إلى %s" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "البريد" + +#: lib/Horde/Crypt/Smime.php:474 +#, fuzzy +msgid "Email Address" +msgstr "عنوان بريدك الإلكتروني:" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "حجم الاستخدام:" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "الاسم" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "أبداً" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "كلمة المرور" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "عنوان المنزل" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "الاسم" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/bg/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/bg/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/bg/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/bg/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/bg/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/bg/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,453 @@ +# Bulgarian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "За да криптирате писмо е необходим публичен PGP ключ." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "За да проверите подписано писмо е необходим PGP ключ." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"За да подпишете писмо са необходими: публичен ключ, личен ключ и ключова " +"фраза." + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "За да криптирате писмо е необходим публичен SMIME ключ." + +#: lib/Horde/Crypt/Smime.php:422 +#, fuzzy +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"За да декриптирате писмо са необходими: публичен SMIME ключ, личен SMIME " +"ключ и ключова фраза." + +#: lib/Horde/Crypt/Smime.php:360 +#, fuzzy +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"За да подпишете писмо са необходими: публичен SMIME ключ, личен SMIME ключ и " +"ключова фраза." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "Comment" +msgstr "Команди:" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Достъпа до публичния сървър беше отказан." + +#: lib/Horde/Crypt/Pgp.php:950 +#, fuzzy, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Достъпа до публичния сървър беше отказан." + +#: lib/Horde/Crypt/Pgp.php:1132 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "Грешка при PGP криптирането на писмо." + +#: lib/Horde/Crypt/Pgp.php:1201 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "Грешка при PGP подписването на писмо." + +#: lib/Horde/Crypt/Smime.php:330 +#, fuzzy +msgid "Could not S/MIME encrypt message." +msgstr "Грешка при SMIME криптирането на писмо." + +#: lib/Horde/Crypt/Smime.php:391 +#, fuzzy +msgid "Could not S/MIME sign message." +msgstr "Грешка при SMIME подписването на писмо." + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Грешка при декриптирането на PGP данни." + +#: lib/Horde/Crypt/Smime.php:440 +#, fuzzy +msgid "Could not decrypt S/MIME data." +msgstr "Грешка при декриптирането на SMIME данни." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Некоректен email адрес на получателя." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Грешка при получаването на публичния ключ от ключ-сървъра." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "Поща" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Еmail адрес" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +#, fuzzy +msgid "Given Name" +msgstr "Име на файл" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +#, fuzzy +msgid "Key Type" +msgstr "Mime тип" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Използване::" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Ключа вече съществува в публичния ключсървър." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:189 +#, fuzzy +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Писмото беше проверено успешно, но сертификата на подписа не беше потвърден." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Име" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Никога" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "Администриране" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Парола: " + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Ключова двойка публичен/частен ключ не беше генерирана." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "Ключова двойка публичен/частен ключ не беше генерирана." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +#, fuzzy +msgid "S/MIME Encrypted Message" +msgstr "Грешка при SMIME криптирането на писмо." + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "Домашен адрес" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "без име" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Прикрепеният PGP подпис е необходим за да се провери подписаното писмо." + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Модулът OpenSSL е необходим за Crypt_smime:: class." + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Грешка при проверката - това писмо може да е било подправено." + +#: lib/Horde/Crypt/Smime.php:610 +#, fuzzy +msgid "Version" +msgstr "Права" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/bs/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/bs/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/bs/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/bs/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/bs/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/bs/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,443 @@ +# Bosnian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:475 +#, fuzzy +msgid "Common Name" +msgstr "Vaše ime" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Nije bilo moguce obrisati poruke od %s: %s" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +#, fuzzy +msgid "Could not determine the recipient's e-mail address." +msgstr "Nedozvoljena slova u email adresi." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "Sanduce" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Email adresa" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +#, fuzzy +msgid "Given Name" +msgstr "Ime datoteke" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +#, fuzzy +msgid "Key Type" +msgstr "Mime tip" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Poruka" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Lokacija" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +#, fuzzy +msgid "Modulus" +msgstr "Prebaci" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Ime" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Nikada" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Nijedan" + +#: lib/Horde/Crypt/Smime.php:549 +#, fuzzy +msgid "Not After" +msgstr "Not Draft" + +#: lib/Horde/Crypt/Smime.php:548 +#, fuzzy +msgid "Not Before" +msgstr "Not Draft" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "Registracija korisnika" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +#, fuzzy +msgid "PGP Digital Signature" +msgstr "Zatamni potpise?" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Password" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Čitanje poruka" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Serijski broj" + +#: lib/Horde/Crypt/Smime.php:622 +#, fuzzy +msgid "Signature" +msgstr "Vaš potpis:" + +#: lib/Horde/Crypt/Smime.php:621 +#, fuzzy +msgid "Signature Algorithm" +msgstr "Vaš potpis:" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "Od adrese" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "Username" + +#: lib/Horde/Crypt/Smime.php:482 +#, fuzzy +msgid "Telephone Number" +msgstr "Serijski broj" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "Došlo je do fatalne greške" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +#, fuzzy +msgid "Version" +msgstr "Lično" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +#, fuzzy +msgid "not yet implemented" +msgstr "Ne izbrisana" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ca/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ca/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ca/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ca/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ca/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ca/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,443 @@ +# Catalan translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "Empremta dactilar %s" + +#: lib/Horde/Crypt/Pgp.php:1240 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "Es necessita una clau PGP pública per xifrar un missatge." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "Es necessita una clau PGP pública per verificar un missatge signat." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Es necessiten una clau PGP pública, una clau PGP privada i una contrasenya " +"per signar un missatge." + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Es necessita una clau SMIME pública per xifrar un missatge." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Es necessiten una clau S/MIME pública, una clau S/MIME privada i una " +"contrasenya per desxifrar un missatge." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Es necessiten una clau S/MIME pública, una clau S/MIME privada i una " +"contrasenya per signar un missatge." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "Punts de distribució de CRL" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Detalls del certificat" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Titular del certificat" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Polítiques de certificació" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Comentari" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "Nom comú" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "S'ha rebutjat la connexió al servidor de claus públiques." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "S'ha rebutjat la connexió al servidor de claus públiques. Raó: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "Encripta aquest missatge amb el PGP" + +#: lib/Horde/Crypt/Pgp.php:1201 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "No s'ha trobat el tipus de missatge %s!\n" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "No es pot xifrar el missatge amb S/MIME." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "No es pot signar el missatge amb S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "No s'han pogut escriure les dades." + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "No s'ha pogut desxifrar les dades S/MIME." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "No s'ha pogut determinar l'adreça electrònica del destinatari." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "No s'ha pogut obtenir una clau pública del servidor de claus." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "País" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "Correu electrònic" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Adreça electrònica" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Data de venciment" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Exponent" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "Nom de pila" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Algorisme de hash" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Emissor" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Creació de claus" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Empremta digital de la clau" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Longitud de la clau" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Tipus de clau" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Ús de la clau" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Ja existeix una clau en el servidor de claus públiques." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Ubicació" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"El missatge ha estat verificat correctament, però no s'ha pogut verificar el " +"certificat el signant." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "Mòdul" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nom" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "URL base de Netscape" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "URL de revocació de CA de Netscape" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "URL de polítiques de CA de Netscape" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "URL de renovació de Netscape" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "URL de revocació de Netscape" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "Nom del servidor SSL de Netscape" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Comentari del certificat de Netscape" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Tipus de certificat de Netscape" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Mai" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"No s'ha indicat la via d'accés al binari OpenSSL. Cal el binari OpenSSL per " +"treballar amb les dades PKCS 12." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Cap" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "No després" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "No abans" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"Error OpenSSL: no s'han pogut extreure les dades de la part S/MIME signada." + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Organització" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Unitat organitzativa" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "Signatura digital PGP" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "Dades xifrades amb PGP" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Clau PGP pública" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "Dades signades/xifrades amb PGP" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Contrasenya incorrecta" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Clau privada" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Clau pública" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Algorisme de clau pública" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "Informació de clau pública" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "No s'ha generat correctament la parella de claus pública/privada" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "Clau pública RSA (%d bit)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Llegiu els missatges" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "No s'ha generat correctament la parella de claus pública/privada" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "Signatura criptogràfica amb S/MIME" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "Missatge xifrat amb S/MIME" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Número de sèrie" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Signatura" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "Algorisme de signatura" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Estat o província" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Adreça particular" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Cognom" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Número de telèfon" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Es necessita el bloc de signatures PGP separat per verificar el missatge " +"signat." + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Es necessita el mòdul openssl per a la classe Horde_Crypt_smime." + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "No s'ha pogut extreure els detalls del certificat." + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Desconegut" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Extensió no implementada" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "Validesa" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "S'ha produït un error desconegut." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Ha fallat la verificació: és possible que s'hagi alterat el missatge." + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Versió" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "Limitacions bàsiques X509v3" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "Ús de la clau estesa x509v3" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "Nom alternatiu d'assumpte X509v3" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "Identificador de clau d'assumpte X509v3" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "Extensions X508v3" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "encara no s'ha implementat" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/cs/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/cs/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/cs/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/cs/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/cs/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/cs/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,436 @@ +# Czech translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s otisk" + +#: lib/Horde/Crypt/Pgp.php:1240 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "Pro zašifrování zprávy je nutno použít veřejný PGP klíč." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "Pro verifikaci podepsané zprávy je nutno použít veřejný PGP klíč." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Pro podepsání zprávy je nutno použít veřejný PGP klíč, privátní PGP klíč a " +"heslo." + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Pro zašifrování zprávy je nutno použít veřejný S/MIME klíč." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Pro dešifrování zprávy je nutno použít veřejný S/MIME klíč, privátní S/MIME " +"klíč a heslo." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Pro podepsání zprávy je nutno použít veřejný S/MIME klíč, privátní S/MIME " +"klíč a heslo." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "CRL distribuční body" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Podrobnosti certifikátu" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Vlastník certifikátu" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Podmínky certifikátu" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Poznámka" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "Obecné jméno" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Bylo zamítnuto spojení s veřejným klíčovým serverem." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Bylo zamítnuto spojení s veřejným klíčovým serverem. Důvod : %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "Zprávu nelze šifrovat pomocí PGP: " + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "Zprávu nelze podepsat pomocí PGP: " + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Zprávu nelze šifrovat pomocí S/MIME." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Zprávu nelze podepsat pomocí S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "Nelze dešifrovat PGP data: " + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Nelze dešifrovat S/MIME data." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Nelze zjistit e-mailovou adresu příjemce." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Nelze získat veřejný klíč z klíčového serveru." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Země" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "E-mail" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Emailová adresa" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Datum pro konec platnosti" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Exponent" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "Křestní jméno" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hash-algoritmus" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Poskytovatel" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Vytvoření klíče" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Vytvoření otisku klíče" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Délka klíče" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Typ klíče" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Užití klíče" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Klíč již existuje na veřejném klíčovém serveru." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Místo" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "Zpráva byla ověřena v pořádku, ale nelze ověřit podpisový certifikát." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "Modul" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Jméno" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "Netscape Base URL" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "Netscape CA Revocation URL" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "Netscape CA policy URL" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "Netscape Renewal URL" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "Netscape Revocation URL" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "Jméno Netscape SSL serveru" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Poznámka k certifikátu Netscapu" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Typ certifikátu Netscapu" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Nikdy" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Nebyla poskytnuta cesta k binárnímu souboru OpenSSL. Binární soubor OpenSSL " +"je zapotřebí pro práci s PKCS 12 daty." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Žádný" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "Není po" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "Není před" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "Chyba OpenSSL: Nelze získat data z podepsané části S/MIME." + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Organizace" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Organizační jednotka" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "PGP digitální podpis" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "PGP šifrovaná data" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Veřejný PGP klíč" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "Data podepsaná/šifrovaná pomocí PGP" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Nesprávné heslo" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Privátní klíč" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Veřejný klíč" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Algoritmus pro veřejný klíč" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "Veřejný klíč" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Veřejný/privátní klíčový pár nebyl úspěšně vytvořen." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA veřejný klíč (%d bitů)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Přečtené zprávy" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "Veřejný/privátní klíčový pár nebyl úspěšně vytvořen." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME šifrovaný podpis" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME šifrovaná zpráva" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Sériové číslo" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Podpis" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "Algoritmus pro podpis" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Stát či provincie" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Ulice" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Příjmení" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Telefonní číslo" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "K ověření podepsané zprávy je třeba oddělený blok s PGP podpisem." + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Třída Horde_Crypt_smime:: vyžaduje modul openssl." + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "Nelze zjistit podrobnosti o certifikátu." + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Neznámé" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Nepodporovaná přípona" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "Platnost" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "Nastala neznámá chyba." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Selhala verifikace - tato zpráva mohla být zfalšována." + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Verze" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 základní omezení" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 rozšířené použití klíče" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 alternativní jméno osoby" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 identifikátor klíče" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "X509v3 rozšíření" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "není dosud implementováno" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/da/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/da/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/da/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/da/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/da/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/da/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,360 @@ +# Danish translations for Horde_Crypt package. +# Copyright (C) 2014 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt package. +# Erling Preben Hansen , 2013-2014. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2014-03-16 21:08+0100\n" +"PO-Revision-Date: 2014-03-19 18:07+0100\n" +"Last-Translator: Erling Preben Hansen \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Pgp.php:1086 +msgid "A passphrase is required to decrypt a message." +msgstr "Et løsen kræves for at dekryptere en besked." + +#: lib/Horde/Crypt/Pgp.php:1157 +msgid "A public PGP key is required to verify a signed message." +msgstr "En offentlig PGP-nøgle kræves for at verificere en signeret besked." + +#: lib/Horde/Crypt/Pgp.php:1017 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"En offentlig PGP nøgle, privat PGP nøgle og et løsen kræves for at signere " +"en besked." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "En offentlig S/MIME nøgle kræves for at kryptere en besked." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"En offentlig S/MIME nøgle, privat S/MIME nøgle og et løsen kræves for at " +"dekryptere en besked." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"En offentlig S/MIME nøgle, personlig S/MIME nøgle og løsen kræves for at " +"signere en besked." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "CRL distributionssteder" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "Certifikat detaljer" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "Certifikat ejer" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Certifikat politikker" + +#: lib/Horde/Crypt/Pgp.php:417 +msgid "Comment" +msgstr "Kommentar" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Common Name" + +#: lib/Horde/Crypt/Pgp.php:985 +msgid "Could not PGP encrypt message: " +msgstr "Kunne ikke PGP kryptére besked: " + +#: lib/Horde/Crypt/Pgp.php:1054 +msgid "Could not PGP sign message: " +msgstr "Kunne ikke PGP signére besked: " + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "Kunne ikke S/MIME kryptere besked." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "Kunne ikke S/MIME signére besked." + +#: lib/Horde/Crypt/Pgp.php:1125 +msgid "Could not decrypt PGP data: " +msgstr "Kunne ikke dekryptere PGP-data: " + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "Kunne ikke dekryptere S/MIME data." + +#: lib/Horde/Crypt/Pgp.php:644 +msgid "Could not determine the recipient's e-mail address." +msgstr "Kunne ikke bestemme modtagerens email adresse." + +#: lib/Horde/Crypt/Pgp/Keyserver.php:101 lib/Horde/Crypt/Pgp/Keyserver.php:219 +msgid "Could not obtain public key from the keyserver." +msgstr "Kunne ikke hente offentlig nøgle fra nøgleserver." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "Land" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Beskrivelse" + +#: lib/Horde/Crypt/Pgp.php:418 +msgid "E-Mail" +msgstr "Email" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "email adresse" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Der opstod en fejl under analysen af S/MIME-certificatet: %s" + +#: lib/Horde/Crypt/Pgp.php:1453 lib/Horde/Crypt/Pgp.php:1461 +msgid "Error while talking to pgp binary." +msgstr "Der opstod en fejl under kontakten til pgp programmet." + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "Der opstod en fejl under kontakten til smime programmet." + +#: lib/Horde/Crypt/Pgp.php:415 +msgid "Expiration Date" +msgstr "Forældelsesdato" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "Fornavn" + +#: lib/Horde/Crypt/Pgp.php:419 +msgid "Hash-Algorithm" +msgstr "Hash-algoritme" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "Udsteder" + +#: lib/Horde/Crypt/Pgp.php:414 +msgid "Key Creation" +msgstr "Nøgle skabelse" + +#: lib/Horde/Crypt/Pgp.php:421 +msgid "Key Fingerprint" +msgstr "Nøgle fingeraftryk" + +#: lib/Horde/Crypt/Pgp.php:420 +msgid "Key ID" +msgstr "Nøgle ID" + +#: lib/Horde/Crypt/Pgp.php:416 +msgid "Key Length" +msgstr "Nøglelængde" + +#: lib/Horde/Crypt/Pgp.php:413 +msgid "Key Type" +msgstr "Nøgletype" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "Nøgleanvendelse" + +#: lib/Horde/Crypt/Pgp/Keyserver.php:137 +msgid "Key already exists on the public keyserver." +msgstr "Nøgle eksisterer allerede på den offentlige nøgleserver." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Sted" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Beskeden blev verificeret men underskriverens certifikat kunne ikke " +"verificeres." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "Beskeden er verificeret." + +#: lib/Horde/Crypt/Pgp.php:412 +msgid "Name" +msgstr "Navn" + +#: lib/Horde/Crypt/Pgp.php:444 +msgid "Never" +msgstr "Aldrig" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Sti til OpenSSL programmet mangler. OpenSSL programmet er nødvendigt for at " +"håndtere PKCS 12 data." + +#: lib/Horde/Crypt/Pgp.php:446 lib/Horde/Crypt/Pgp.php:447 +msgid "None" +msgstr "Ingen" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "Ikke senere end" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "Ikke før" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OpenSSL fejl: Data kunne ikke uddrages fra signeret S/MIME-del." + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Organisation" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "Organisatorisk enhed" + +#: lib/Horde/Crypt/Pgp.php:1275 +msgid "PGP Digital Signature" +msgstr "PGP digital signatur" + +#: lib/Horde/Crypt/Pgp.php:1319 +msgid "PGP Encrypted Data" +msgstr "PGP krypteret data" + +#: lib/Horde/Crypt/Pgp.php:1380 +msgid "PGP Public Key" +msgstr "Offentlig PGP nøgle" + +#: lib/Horde/Crypt/Pgp.php:1362 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP signeret/krypteret data" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Forkert kodeord" + +#: lib/Horde/Crypt/Pgp.php:442 +msgid "Private Key" +msgstr "Privat nøgle" + +#: lib/Horde/Crypt/Pgp.php:442 +msgid "Public Key" +msgstr "Offentlige nøgle" + +#: lib/Horde/Crypt/Pgp.php:212 +msgid "Public/Private keypair not generated successfully." +msgstr "Offentlig/privat nøglesæt generering mislykkedes." + +#: lib/Horde/Crypt/Pgp.php:214 +msgid "Returned error message:" +msgstr "Fejl beskeder er:" + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME krypteret besked" + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Signature" +msgstr "S/MIME signatur" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "Serienummer" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "Delstat eller provins" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Vej" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Efternavn" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Telefonnummer" + +#: lib/Horde/Crypt/Pgp.php:1161 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Den frigjorte PGP signatur blok kræves for at kunne verificere den signerede " +"besked." + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Openssl modulet er kræves af Horde_Crypt_Smime:: klassen." + +#: lib/Horde/Crypt/Pgp.php:448 lib/Horde/Crypt/Pgp.php:449 +#: lib/Horde/Crypt/Pgp.php:450 +msgid "Unknown" +msgstr "Ukendt" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "Gyldighed" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "Verifikationen fejlede - Der opstod en ukendt fejl." + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "Verifikationen fejlede - der er blevet pillet ved denne besked." + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Version" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 Grundlæggende begrænsninger" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 Udvidet nøgle anvendelse" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Subject Alternativt navn" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Subject Key Identifier" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "X509v3 udvidelser" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "endnu ikke implementeret" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/de/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/de/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/de/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/de/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/de/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/de/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,354 @@ +# German translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Jan Schneider , 2010-2016. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2016-08-08 15:58+0200\n" +"PO-Revision-Date: 2016-08-08 16:18+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Smime.php:302 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" +"Ein öffentlicher S/MIME-Schlüssel wird für die Verschlüsselung einer " +"Nachricht benötigt." + +#: lib/Horde/Crypt/Smime.php:443 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Ein öffentlicher und ein privater S/MIME-Schlüssel sowie ein Passwort wird " +"für die Entschlüsselung einer Nachricht benötigt." + +#: lib/Horde/Crypt/Smime.php:374 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Ein öffentlicher und ein privater S/MIME-Schlüssel sowie ein Passwort wird " +"für die Unterzeichnung einer Nachricht benötigt." + +#: lib/Horde/Crypt/Smime.php:514 +msgid "CRL Distribution Points" +msgstr "CRL Distributionsstelle" + +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:132 +msgid "Cannot generate PGP keys" +msgstr "PGP-Schlüssel können nicht erzeugt werden" + +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:350 +msgid "Cannot read PGP key ID" +msgstr "PGP-Schlüssel-ID kann nicht gelesen werden" + +#: lib/Horde/Crypt/Smime.php:565 +msgid "Certificate Details" +msgstr "Zertifikatdetails" + +#: lib/Horde/Crypt/Smime.php:523 +msgid "Certificate Owner" +msgstr "Zertifikatbesitzer" + +#: lib/Horde/Crypt/Smime.php:513 +msgid "Certificate Policies" +msgstr "Zertifikatrichtlinien" + +#: lib/Horde/Crypt/Pgp.php:214 +msgid "Comment" +msgstr "Kommentar" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Common Name" +msgstr "Eindeutiger Name" + +#: lib/Horde/Crypt/Pgp.php:559 +msgid "Could not PGP encrypt message." +msgstr "Die Nachricht konnte nicht mit PGP verschlüsselt werden." + +#: lib/Horde/Crypt/Pgp.php:576 +msgid "Could not PGP sign message." +msgstr "Die Nachricht konnte nicht mit PGP unterzeichnet werden." + +#: lib/Horde/Crypt/Smime.php:343 +msgid "Could not S/MIME encrypt message." +msgstr "Die Nachricht konnte nicht mit S/MIME verschlüsselt werden." + +#: lib/Horde/Crypt/Smime.php:405 +msgid "Could not S/MIME sign message." +msgstr "Die Nachricht konnte nicht mit S/MIME unterzeichnet werden." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not decrypt PGP data." +msgstr "PGP-Daten konnten nicht entschlüsselt werden." + +#: lib/Horde/Crypt/Smime.php:461 +msgid "Could not decrypt S/MIME data." +msgstr "S/MIME-Daten konnten nicht entschlüsselt werden." + +#: lib/Horde/Crypt/Pgp.php:431 +msgid "Could not determine the recipient's e-mail address." +msgstr "Die E-Mail-Adresse des Empfängers konnte nicht ermittelt werden." + +#: lib/Horde/Crypt/Pgp/Keyserver.php:110 lib/Horde/Crypt/Pgp/Keyserver.php:186 +#: lib/Horde/Crypt/Pgp/Keyserver.php:243 +msgid "Could not obtain public key from the keyserver." +msgstr "Öffentlicher Schlüssel konnte nicht vom Schlüsselserver geholt werden." + +#: lib/Horde/Crypt/Smime.php:500 +msgid "Country" +msgstr "Land" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Description" +msgstr "Beschreibung" + +#: lib/Horde/Crypt/Pgp.php:215 +msgid "E-Mail" +msgstr "E-Mail-Adresse" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Email Address" +msgstr "E-Mail-Adresse" + +#: lib/Horde/Crypt/Smime.php:600 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Fehler beim Lesen des S/MIME-Zertifikats: %s" + +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:701 +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:711 +msgid "Error while talking to pgp binary." +msgstr "Fehler beim Aufruf des PGP-Programms." + +#: lib/Horde/Crypt/Smime.php:770 lib/Horde/Crypt/Smime.php:788 +#: lib/Horde/Crypt/Smime.php:803 +msgid "Error while talking to smime binary." +msgstr "Fehler beim Aufruf der S/MIME-Bibliothek." + +#: lib/Horde/Crypt/Pgp.php:212 +msgid "Expiration Date" +msgstr "Verfallsdatum" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "Given Name" +msgstr "Vorname" + +#: lib/Horde/Crypt/Pgp.php:216 +msgid "Hash-Algorithm" +msgstr "Hash-Algorithmus" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Aussteller" + +#: lib/Horde/Crypt/Pgp.php:211 +msgid "Key Creation" +msgstr "Schlüsselerzeugung" + +#: lib/Horde/Crypt/Pgp.php:218 +msgid "Key Fingerprint" +msgstr "Fingerabdruck des Schlüssels" + +#: lib/Horde/Crypt/Pgp.php:217 +msgid "Key ID" +msgstr "Schlüssel-Id" + +#: lib/Horde/Crypt/Pgp.php:213 +msgid "Key Length" +msgstr "Schlüssellänge" + +#: lib/Horde/Crypt/Pgp.php:210 +msgid "Key Type" +msgstr "Schlüsseltyp" + +#: lib/Horde/Crypt/Smime.php:515 +msgid "Key Usage" +msgstr "Schlüsselzweck" + +#: lib/Horde/Crypt/Pgp/Keyserver.php:146 +msgid "Key already exists on the public keyserver." +msgstr "" +"Der Schlüssel befindet sich bereits auf dem öffentlichen Schlüsselserver." + +#: lib/Horde/Crypt/Smime.php:502 +msgid "Location" +msgstr "Ort" + +#: lib/Horde/Crypt/Smime.php:154 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Die Nachricht konnte erfolgreich überprüft werden aber nicht das Zertifikat " +"des Unterzeichners." + +#: lib/Horde/Crypt/Smime.php:142 +msgid "Message verified successfully." +msgstr "Nachricht erfolgreich überprüft." + +#: lib/Horde/Crypt/Pgp.php:209 +msgid "Name" +msgstr "Name" + +#: lib/Horde/Crypt/Pgp.php:247 +msgid "Never" +msgstr "Nie" + +#: lib/Horde/Crypt/Smime.php:736 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Kein Pfad zum OpenSSL-Programm angegeben. Das OpenSSL-Programm wird " +"benötigt, um PKCS-12-Daten verarbeiten zu können." + +#: lib/Horde/Crypt/Pgp.php:249 lib/Horde/Crypt/Pgp.php:250 +msgid "None" +msgstr "Keine" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Not After" +msgstr "Gültig bis" + +#: lib/Horde/Crypt/Smime.php:546 +msgid "Not Before" +msgstr "Gültig ab" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"OpenSSL-Fehler: Signierte S/MIME-Daten konnten nicht extrahiert werden." + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Organisation" +msgstr "Organisation" + +#: lib/Horde/Crypt/Smime.php:499 +msgid "Organisational Unit" +msgstr "Organisationsabteilung" + +#: lib/Horde/Crypt/Pgp.php:735 +msgid "PGP Digital Signature" +msgstr "Digitale PGP-Signatur" + +#: lib/Horde/Crypt/Pgp.php:792 +msgid "PGP Encrypted Data" +msgstr "PGP-verschlüsselte Daten" + +#: lib/Horde/Crypt/Pgp.php:866 +msgid "PGP Public Key" +msgstr "Öffentlicher PGP-Schlüssel" + +#: lib/Horde/Crypt/Pgp.php:844 +msgid "PGP Signed/Encrypted Data" +msgstr "Mit PGP unterzeichnete/verschlüsselte Daten" + +#: lib/Horde/Crypt/Smime.php:775 +msgid "Password incorrect" +msgstr "Falsches Passwort" + +#: lib/Horde/Crypt/Pgp.php:245 +msgid "Private Key" +msgstr "Privater Schlüssel" + +#: lib/Horde/Crypt/Pgp.php:245 +msgid "Public Key" +msgstr "Öffentlicher Schlüssel" + +#: lib/Horde/Crypt/Pgp.php:95 +msgid "Public/Private keypair not generated successfully." +msgstr "Das öffentliche/private Schlüsselpaar konnte nicht erstellt werden." + +#: lib/Horde/Crypt/Smime.php:272 +msgid "S/MIME Encrypted Message" +msgstr "Mit S/MIME verschlüsselte Nachricht" + +#: lib/Horde/Crypt/Smime.php:225 +msgid "S/MIME Signature" +msgstr "S/MIME-Signatur" + +#: lib/Horde/Crypt/Smime.php:567 +msgid "Serial Number" +msgstr "Seriennummer" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "State or Province" +msgstr "Bundesstaat oder Provinz" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "Street Address" +msgstr "Straße" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Surname" +msgstr "Nachname" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "Telephone Number" +msgstr "Telefonnummer" + +#: lib/Horde/Crypt/Smime.php:665 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Das OpenSSL-Modul wird für die Horde_Crypt_Smime:: Klasse benötigt." + +#: lib/Horde/Crypt/Pgp.php:685 +msgid "Unable to determine if data was encrypted symmetrically." +msgstr "" +"Es konnte nicht festgestellt werden, ob die Daten symmetrisch verschlüsselt " +"wurden." + +#: lib/Horde/Crypt/Pgp.php:251 lib/Horde/Crypt/Pgp.php:252 +#: lib/Horde/Crypt/Pgp.php:253 +msgid "Unknown" +msgstr "Unbekannt" + +#: lib/Horde/Crypt/Smime.php:545 +msgid "Validity" +msgstr "Gültigkeit" + +#: lib/Horde/Crypt/Smime.php:149 +msgid "Verification failed - an unknown error has occurred." +msgstr "Überprüfung fehlgeschlagen - ein unbekannter Fehler ist aufgetreten." + +#: lib/Horde/Crypt/Smime.php:151 +msgid "Verification failed - this message may have been tampered with." +msgstr "" +"Überprüfung fehlgeschlagen - diese Nachricht könnte manipuliert worden sein." + +#: lib/Horde/Crypt/Smime.php:566 +msgid "Version" +msgstr "Version" + +#: lib/Horde/Crypt/Smime.php:510 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 Generelle Einschränkung" + +#: lib/Horde/Crypt/Smime.php:509 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 Erweiterter Schlüsselzweck" + +#: lib/Horde/Crypt/Smime.php:511 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Alternativer Name des Zertifikatinhabers" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Identität des Zertifikatschlüssels" + +#: lib/Horde/Crypt/Smime.php:552 +msgid "X509v3 extensions" +msgstr "X509v3 Erweiterungen" + +#: lib/Horde/Crypt/Smime.php:654 +msgid "not yet implemented" +msgstr "Noch nicht implementiert" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/el/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/el/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/el/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/el/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/el/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/el/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,440 @@ +# Greek translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2015-10-02 11:47+0200\n" +"Last-Translator: Antonis Limperis \n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: el\n" +"X-Generator: Poedit 1.7.1\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s Δακτυλικό αποτύπωμα" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" +"Για την αποκρυπτογράφηση ενός μηνύματος απαιτείται μια φράση πρόσβασης " +"(passphrase)." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" +"Απαιτείται δημόσιο κλειδί PGP για επιβεβαίωση ενός υπογεγραμμένου μηνύματος." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Απαιτείται δημόσιο, προσωπικό PGP κλειδί και λέξη-κωδικός για να υπογράψετε " +"ψηφιακά ένα μήνυμα." + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Απαιτείται δημόσιο κλειδί S/MIME για την κρυπτογράφηση ενός μηνύματος." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Απαιτείται δημόσιο, προσωπικό S/MIME κλειδί και λέξη-κωδικός για να " +"αποκρυπτογραφήσετε ένα μήνυμα." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Απαιτείται δημόσιο, προσωπικό S/MIME κλειδί και λέξη-κωδικός για να " +"υπογράψετε ψηφιακά ένα μήνυμα." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "Σημεία διανομής CRL" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Λεπτομέρειες Πιστοποιητικού" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Ιδιοκτήτης Πιστοποιητικού" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Πολιτική Πιστοποιητικού" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Σχόλιο" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "Κοινό Όνομα" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Αρνηση σύνδεσης από το δημόσιο εξυπηρετητή κλειδιών." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Αρνηση σύνδεσης από το δημόσιο εξυπηρετητή κλειδιών. Λόγος : %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "Αδύνατη η κρυπτογράφηση του μηνύματος με PGP." + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "Αδύνατη η υπογραφή του μηνύματος με PGP." + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Αδύνατη η κρυπτογράφηση του μηνύματος με S/MIME." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Αδύνατη η υπογραφή του μηνύματος με S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "Αδύνατη η αποκρυπτογράφηση PGP δεδομένων." + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Αδύνατη η αποκρυπτογράφηση S/MIME δεδομένων." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Δε μπορώ να διευκρινήσω τη διεύθυνση του παραλήπτη." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Αδύνατη η ανάκτηση δημόσιου κλειδιού από τον εξυπηρετητή Δημ.Κλειδιών." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Χώρα" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "Αλληλογραφία" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Διεύθυνση Email" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "Σφάλμα, κατά την αλληλεπίδραση με το πρόγραμμα PGP." + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "Σφάλμα, κατά την αλληλεπίδραση με το πρόγραμμα smime." + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Ημερομηνία Λήξης" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Εκθέτης" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "Μικρό Όνομα" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hash-Αλγόριθμος" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Εκδότης" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Δημιουργία Κλειδιού" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Αποτύπωμα Κλειδιού" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Μήκος Κλειδιού" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Τύπος Κλειδιού" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Χρήση Κλειδιού" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Το κλειδί υπάρχει ήδη στον εξυπηρετητή δημόσιων κλειδιών." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Τόποθεσία" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Το μήνυμα επιβεβαιώθηκε επιτυχώς, αλλά το πιστοποιητικό του υπογράφοντα δε " +"μπορεί να επιβεβαιωθεί." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Όνομα" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Ποτέ" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Δεν έχει οριστεί διαδρομή προς το πρόγραμμα OpenSSL. Το πρόγραμμα OpenSSL " +"είναι απαραίτητο για λειτουργίες με δεδομένα PKCS 12." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Καμμία" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "Όχι Μετά" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "Όχι Πριν" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"OpenSSL-Λάθος: Δεν μπορώ να βγάλω δεδομένα από S/MIME υπογεγραμμένο μέρος." + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Οργανισμός" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Τμήμα Οργανισμού" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "Ψηφιακή Υπογραφή PGP" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "Κρυπτογραφημένα δεδομένα PGP" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Δημόσιο Κλειδί PGP" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "Υπογεγραμμένα/Κρυπτογραφημένα PGP δεδομένα" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Λάθος κωδικός" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Προσωπικό Κλειδί" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Δημόσιο Κλειδί" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Αλγόριθμος Δημόσιου Κλειδιού" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "Πληροφορίες Δημόσιου Κλειδιού" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Το ζεύγος Δημόσιου/Προσωπικού κλειδιού δε δημιουργήθηκε επιτυχώς." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "Δημόσιο Κλειδί RSA (%d Bit)" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "Επισττρεφόμενο μήνυμα λάθους:" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "Το κλειδί ανάκλησης δεν δημιουργήθηκε με επιτυχία." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "Υπογραφή Κρυπτογράφησης S/MIME" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "Κρυπτογραφημένο μήνυμα S/MIME" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Σειριακός Αριθμός" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Υπογραφή" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "Αλγόριθμος Υπογραφής" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Πολιτεία ή Επαρχία" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Διεύθυνση-Οδός" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Επίθετο" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Αριθμός Τηλεφώνου" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Το τμήμα PGP που αποσπάσθηκε απαιτείτο για την επαλήθευση του υπογεγραμμένου " +"μηνήματος." + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Η βιβλιοθήκη OpenSSL απαιτείται για την κλάση Horde_Crypt_smime::." + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "Δε μπορώ να εξάγω πληροφορίες πιστοποιητικού" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Αγνωστο" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Μη υποστηριζόμενη επέκταση" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "Εγκυρότητα" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "Η επαλήθευση απέτυχε - Παρουσιάστηκε ένα άγνωστο σφάλμα." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Η επιβεβαίωση απέτυχε - αυτό το μήνυμα μπορεί να άλλαξε με." + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Έκδοση" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 Βασικοί Περιορισμοί" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 Χρήση επεκταμένου κλειδιού" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Εναλακτικό Όνομα Θέματος" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Αναγνωριστικό Κλειδί Θέματος" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "X509v3 Επεκτάσεις" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "δεν έχει εγκατασταθεί ακόμη" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/es/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/es/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/es/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/es/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/es/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/es/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,375 @@ +# Spanish translations for Horde_Crypt package. +# Copyright (C) 2013 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt package. +# Automatically generated, 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt \n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-07-16 21:24+0200\n" +"PO-Revision-Date: 2013-06-11 20:26+0200\n" +"Last-Translator: Manuel P. Ayala , Juan C. Blanco " +"\n" +"Language-Team: i18n@lists.horde.org\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Pgp.php:1275 +msgid "A passphrase is required to decrypt a message." +msgstr "Hace falta una frase clave para descifrar un mensaje." + +#: lib/Horde/Crypt/Pgp.php:1346 +msgid "A public PGP key is required to verify a signed message." +msgstr "Hace falta una clave PGP pública para comprobar un mensaje firmado." + +#: lib/Horde/Crypt/Pgp.php:1206 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Hacen falta una clave PGP pública, una clave PGP privada y una frase clave " +"para firmar un mensaje." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Hace falta una clave S/MIME pública para cifrar un mensaje." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Hacen falta una clave S/MIME pública, una clave S/MIME privada y una frase " +"clave para descifrar un mensaje." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Hacen falta una clave S/MIME pública, una clave S/MIME privada y una frase " +"clave para firmar un mensaje." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "Puntos de distribución CRC" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "Detalles del certificado" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "Propietario del certificado" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Políticas del certificado" + +#: lib/Horde/Crypt/Pgp.php:448 +msgid "Comment" +msgstr "Comentario" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Nombre común" + +#: lib/Horde/Crypt/Pgp.php:980 +msgid "Connection refused to the public keyserver." +msgstr "Se ha rechazado la conexión al servidor de claves público." + +#: lib/Horde/Crypt/Pgp.php:991 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" +"Se ha rechazado la conexión al servidor de claves público. Motivo: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1174 +msgid "Could not PGP encrypt message: " +msgstr "No se pudo cifrar el mensaje mediante PGP: " + +#: lib/Horde/Crypt/Pgp.php:1243 +msgid "Could not PGP sign message: " +msgstr "No se pudo firmar el mensaje mediante PGP: " + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "No se pudo cifrar el mensaje mediante S/MIME." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "No se pudo firmar el mensaje mediante S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1314 +msgid "Could not decrypt PGP data: " +msgstr "No se han podido descifrar los datos PGP: " + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "No se han podido descifrar los datos S/MIME." + +#: lib/Horde/Crypt/Pgp.php:673 +msgid "Could not determine the recipient's e-mail address." +msgstr "No se pudo determinar la dirección de correo del destinatario." + +#: lib/Horde/Crypt/Pgp.php:774 lib/Horde/Crypt/Pgp.php:888 +msgid "Could not obtain public key from the keyserver." +msgstr "No se pudo obtener la clave pública del servidor de claves." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "País" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Descripción" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "E-Mail" +msgstr "Correo" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "Dirección de correo" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Error al analizar el certificado S/MIME: %s" + +#: lib/Horde/Crypt/Pgp.php:1623 lib/Horde/Crypt/Pgp.php:1631 +msgid "Error while talking to pgp binary." +msgstr "Error hablando con el programa pgp." + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "Error hablando con el programa smime." + +#: lib/Horde/Crypt/Pgp.php:446 +msgid "Expiration Date" +msgstr "Fecha de caducidad" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "Nombre indicado" + +#: lib/Horde/Crypt/Pgp.php:450 +msgid "Hash-Algorithm" +msgstr "Algoritmo Hash" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "Emisor" + +#: lib/Horde/Crypt/Pgp.php:445 +msgid "Key Creation" +msgstr "Creación de clave" + +#: lib/Horde/Crypt/Pgp.php:452 +msgid "Key Fingerprint" +msgstr "Huella digital de la clave" + +#: lib/Horde/Crypt/Pgp.php:451 +msgid "Key ID" +msgstr "ID de clave" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Key Length" +msgstr "Tamaño de clave" + +#: lib/Horde/Crypt/Pgp.php:444 +msgid "Key Type" +msgstr "Tipo de clave" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "Uso de la clave:" + +#: lib/Horde/Crypt/Pgp.php:797 +msgid "Key already exists on the public keyserver." +msgstr "La clave ya existe en el servidor de claves público." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Ubicación" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Se ha verificado correctamente el mensaje pero no se puede validar el " +"certificado del firmante." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "Se ha redirigido correctamente el mensaje." + +#: lib/Horde/Crypt/Pgp.php:443 +msgid "Name" +msgstr "Nombre" + +#: lib/Horde/Crypt/Pgp.php:475 +msgid "Never" +msgstr "Nunca" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"No se ha indicado la vía de acceso a los binarios OpenSSL. Para trabajar con " +"datos PKCS 12 hacen falta los binarios OpenSSL." + +#: lib/Horde/Crypt/Pgp.php:477 lib/Horde/Crypt/Pgp.php:478 +msgid "None" +msgstr "Ninguna" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "No después" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "No antes" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"Error OpenSSL: No se han podido extraer datos de la parte S/MIME firmada." + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Organización" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "Unidad organizativa" + +#: lib/Horde/Crypt/Pgp.php:1445 +msgid "PGP Digital Signature" +msgstr "Firma digital PGP" + +#: lib/Horde/Crypt/Pgp.php:1489 +msgid "PGP Encrypted Data" +msgstr "Datos cifrados con PGP" + +#: lib/Horde/Crypt/Pgp.php:1550 +msgid "PGP Public Key" +msgstr "Clave PGP pública" + +#: lib/Horde/Crypt/Pgp.php:1532 +msgid "PGP Signed/Encrypted Data" +msgstr "Datos firmados/cifrados con PGP" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Contraseña incorrecta" + +#: lib/Horde/Crypt/Pgp.php:473 +msgid "Private Key" +msgstr "Clave privada" + +#: lib/Horde/Crypt/Pgp.php:473 +msgid "Public Key" +msgstr "Clave PGP pública" + +#: lib/Horde/Crypt/Pgp.php:243 +msgid "Public/Private keypair not generated successfully." +msgstr "No se generaron correctamente las claves Pública/Privada." + +#: lib/Horde/Crypt/Pgp.php:245 +msgid "Returned error message:" +msgstr "Mensaje de error devuelto:" + +#: lib/Horde/Crypt/Pgp.php:1685 +msgid "Revocation key not generated successfully." +msgstr "No se generó correctamente la clave de anulación." + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "Mensaje cifrado en S/MIME" + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Signature" +msgstr "Firma S/MIME" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "Número de serie" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "Estado o provincia" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Dirección de la calle" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Apellido" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Número de teléfono" + +#: lib/Horde/Crypt/Pgp.php:1350 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Para comprobar el mensaje firmado hace falta el bloque de firma separado." + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Hace falta el módulo openssl para la clase Horde_Crypt_smime::." + +#: lib/Horde/Crypt/Pgp.php:479 lib/Horde/Crypt/Pgp.php:480 +#: lib/Horde/Crypt/Pgp.php:481 +msgid "Unknown" +msgstr "Desconocido" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "Validez" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "Ha fallado la comprobación - se ha producido un error desconocido." + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "Ha fallado la comprobación - este mensaje puede haberse manipulado." + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Versión" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "Limitaciones básicas X509v3" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "Uso de clave extendida X509v3" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "Nombre alternativo de asunto X509v3" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "Identificador de clave de asunto X509v3" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "Extensiones X509v3" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "aún no se ha desarrollado" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/et/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/et/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/et/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/et/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/et/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/et/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,438 @@ +# Estonian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2011-08-02 15:24+0200\n" +"PO-Revision-Date: 2010-11-09 01:27+0200\n" +"Last-Translator: Alar Sing \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Smime.php:632 +#, php-format +msgid "%s Fingerprint" +msgstr "%s sõrmejälg" + +#: lib/Horde/Crypt/Pgp.php:1237 +msgid "A passphrase is required to decrypt a message." +msgstr "Kirja dekrüpteerimiseks on vajalik parool." + +#: lib/Horde/Crypt/Pgp.php:1308 +msgid "A public PGP key is required to verify a signed message." +msgstr "Allkirja kontrollimiseks on vaja avalikku PGP võtit." + +#: lib/Horde/Crypt/Pgp.php:1168 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Kirja allkirjastamiseks on vaja avalikku PGP võtit, salajast PGP võtit ja " +"salasõna." + +#: lib/Horde/Crypt/Smime.php:312 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Kirja krüpteerimiseks on vaja avalikku S/MIME võtit." + +#: lib/Horde/Crypt/Smime.php:440 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Krüpteeritud kirja avamiseks on vaja avalikku S/MIME võtit, salajast S/MIME " +"võtit ja salasõna." + +#: lib/Horde/Crypt/Smime.php:371 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Kirja allkirjastamiseks on vaja avalikku S/MIME võtit, salajast S/MIME võtit " +"ja salasõna." + +#: lib/Horde/Crypt/Smime.php:524 +msgid "CRL Distribution Points" +msgstr "Tühistusnimekirja jaotuspunktid" + +#: lib/Horde/Crypt/Smime.php:627 +msgid "Certificate Details" +msgstr "Sertifikaadi üksikasjad" + +#: lib/Horde/Crypt/Smime.php:538 +msgid "Certificate Owner" +msgstr "Sertifikaadi omanik" + +#: lib/Horde/Crypt/Smime.php:523 +msgid "Certificate Policies" +msgstr "Sertifikaadi poliitikad" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Kommentaar" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Common Name" +msgstr "Lihtnimi" + +#: lib/Horde/Crypt/Pgp.php:943 +msgid "Connection refused to the public keyserver." +msgstr "Avalik võtmeserver ei anna ühendust." + +#: lib/Horde/Crypt/Pgp.php:954 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Avalik võtmeserver ei anna ühendust. Põhjus: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1136 +msgid "Could not PGP encrypt message: " +msgstr "Ei saanud kirja PGPga krüpteerida: " + +#: lib/Horde/Crypt/Pgp.php:1205 +msgid "Could not PGP sign message: " +msgstr "Ei saanud kirja PGPga allkirjastada: " + +#: lib/Horde/Crypt/Smime.php:341 +msgid "Could not S/MIME encrypt message." +msgstr "Ei saanud kirja S/MIMEga krüpteerida." + +#: lib/Horde/Crypt/Smime.php:402 +msgid "Could not S/MIME sign message." +msgstr "Ei saanud kirja S/MIMEga allkirjastada." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "Ei saanud PGP andmeid dekrüpteerida: " + +#: lib/Horde/Crypt/Smime.php:458 +msgid "Could not decrypt S/MIME data." +msgstr "Ei saanud S/MIME andmeid dekrüpteerida." + +#: lib/Horde/Crypt/Pgp.php:657 +msgid "Could not determine the recipient's e-mail address." +msgstr "Ei suutnud välja selgitada adressaadi e-posti aadress." + +#: lib/Horde/Crypt/Pgp.php:758 lib/Horde/Crypt/Pgp.php:851 +msgid "Could not obtain public key from the keyserver." +msgstr "Ei saanud võtmeserverist avalikku võtit kätte." + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Country" +msgstr "Riik" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "E-post" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Email Address" +msgstr "E-posti Aadress" + +#: lib/Horde/Crypt/Pgp.php:1586 lib/Horde/Crypt/Pgp.php:1594 +msgid "Error while talking to pgp binary." +msgstr "Viga pgp programmiga suhtlemisel." + +#: lib/Horde/Crypt/Smime.php:1256 lib/Horde/Crypt/Smime.php:1274 +#: lib/Horde/Crypt/Smime.php:1289 +msgid "Error while talking to smime binary." +msgstr "Viga smime programmiga suhtlemisel." + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Aegumise kuupäev" + +#: lib/Horde/Crypt/Smime.php:604 +msgid "Exponent" +msgstr "Eksponent" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "Given Name" +msgstr "Eesnimi" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Räsialgoritm" + +#: lib/Horde/Crypt/Smime.php:552 +msgid "Issuer" +msgstr "Väljaandja" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Võtme loomine" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Võtme sõrmejälg" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "Võtme ID" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Võtme pikkus" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Võtme tüüp" + +#: lib/Horde/Crypt/Smime.php:525 +msgid "Key Usage" +msgstr "Võtme kasutus" + +#: lib/Horde/Crypt/Pgp.php:781 +msgid "Key already exists on the public keyserver." +msgstr "Võti on avalikus serveris juba olemas." + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Location" +msgstr "Asukoht" + +#: lib/Horde/Crypt/Smime.php:192 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Kiri on edukalt kontrollitud, ent allkirjastaja sertifikaati ei saanud " +"kontrollida." + +#: lib/Horde/Crypt/Smime.php:180 +msgid "Message verified successfully." +msgstr "Kiri edukalt kontrollitud." + +#: lib/Horde/Crypt/Smime.php:601 +msgid "Modulus" +msgstr "Jääk" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nimi" + +#: lib/Horde/Crypt/Smime.php:508 +msgid "Netscape Base URL" +msgstr "Netscape Baas URL" + +#: lib/Horde/Crypt/Smime.php:510 +msgid "Netscape CA Revocation URL" +msgstr "Netscape CA tühistuse URL" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Netscape CA policy URL" +msgstr "Netscape CA poliisi URL" + +#: lib/Horde/Crypt/Smime.php:511 +msgid "Netscape Renewal URL" +msgstr "Netscape uuenduse URL" + +#: lib/Horde/Crypt/Smime.php:509 +msgid "Netscape Revocation URL" +msgstr "Netscape tühistuse URL" + +#: lib/Horde/Crypt/Smime.php:513 +msgid "Netscape SSL server name" +msgstr "Netscape SSL serveri nimi" + +#: lib/Horde/Crypt/Smime.php:514 +msgid "Netscape certificate comment" +msgstr "Netscape sertifikaadi kommentaar" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Netscape certificate type" +msgstr "Netscape sertifikaadi tüüp" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Mitte kunagi" + +#: lib/Horde/Crypt/Smime.php:1222 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"OpenSSL programmi asukoht ei ole määratud. OpenSSL programm on vajalik " +"PKCS#12 andmetega töötamiseks." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Määramata" + +#: lib/Horde/Crypt/Smime.php:567 +msgid "Not After" +msgstr "Mitte hiljem kui" + +#: lib/Horde/Crypt/Smime.php:566 +msgid "Not Before" +msgstr "Mitte varem kui" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OpenSSL viga: Andmete eraldamine allkirjastatud S/MIME osast nurjus." + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Organisation" +msgstr "Organisatsioon" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Organisational Unit" +msgstr "Allüksus" + +#: lib/Horde/Crypt/Pgp.php:1408 +msgid "PGP Digital Signature" +msgstr "PGP digitaalallkiri" + +#: lib/Horde/Crypt/Pgp.php:1452 +msgid "PGP Encrypted Data" +msgstr "PGP krüpteeritud andmed" + +#: lib/Horde/Crypt/Pgp.php:1513 +msgid "PGP Public Key" +msgstr "PGP avalik võti" + +#: lib/Horde/Crypt/Pgp.php:1495 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP allkirjastatud/krüpteeritud andmed" + +#: lib/Horde/Crypt/Smime.php:1261 +msgid "Password incorrect" +msgstr "Vale salasõna" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Salajane võti" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Avalik võti" + +#: lib/Horde/Crypt/Smime.php:572 +msgid "Public Key Algorithm" +msgstr "Avaliku võtme algoritm" + +#: lib/Horde/Crypt/Smime.php:571 +msgid "Public Key Info" +msgstr "Avaliku võtme info" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Võtmepaari genereerimine ei õnnestunud." + +#: lib/Horde/Crypt/Smime.php:590 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA avalik võti (%d bitti)" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "Tagastatud veateade:" + +#: lib/Horde/Crypt/Pgp.php:1646 +msgid "Revocation key not generated successfully." +msgstr "Tühistus võtme genereerimine ei õnnestunud." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME krüptograafiline allkiri" + +#: lib/Horde/Crypt/Smime.php:284 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME krüpteeritud kiri" + +#: lib/Horde/Crypt/Smime.php:629 +msgid "Serial Number" +msgstr "Järjenumber" + +#: lib/Horde/Crypt/Smime.php:636 +msgid "Signature" +msgstr "Allkiri" + +#: lib/Horde/Crypt/Smime.php:635 +msgid "Signature Algorithm" +msgstr "Allkirja algoritm" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "State or Province" +msgstr "Osariik või maakond" + +#: lib/Horde/Crypt/Smime.php:499 +msgid "Street Address" +msgstr "Tänav ja maja" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "Surname" +msgstr "Perekonnanimi" + +#: lib/Horde/Crypt/Smime.php:500 +msgid "Telephone Number" +msgstr "Telefoninumber" + +#: lib/Horde/Crypt/Pgp.php:1312 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Allkirjastatud kirja kontrollimiseks on vaja eraldi PGP allkirjablokki." + +#: lib/Horde/Crypt/Smime.php:1151 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Horde_Crypt_smime:: klass vajab openssl moodulit." + +#: lib/Horde/Crypt/Smime.php:530 +msgid "Unable to extract certificate details" +msgstr "Ei saa kätte sertifikaadi üksikasju" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Tundmatu" + +#: lib/Horde/Crypt/Smime.php:614 lib/Horde/Crypt/Smime.php:858 +#: lib/Horde/Crypt/Smime.php:864 +msgid "Unsupported Extension" +msgstr "Toetamata laiendus" + +#: lib/Horde/Crypt/Smime.php:565 +msgid "Validity" +msgstr "Kehtivus" + +#: lib/Horde/Crypt/Smime.php:187 +msgid "Verification failed - an unknown error has occurred." +msgstr "Kontrollimine ebaõnnestus - juhtus tundmatu viga." + +#: lib/Horde/Crypt/Smime.php:189 +msgid "Verification failed - this message may have been tampered with." +msgstr "Kontrollimine nurjus - see kiri võib olla pahatahtlikult muudetud." + +#: lib/Horde/Crypt/Smime.php:628 +msgid "Version" +msgstr "Järjenumber" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 põhilised piirangud" + +#: lib/Horde/Crypt/Smime.php:519 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 võtme laiendatud kasutus" + +#: lib/Horde/Crypt/Smime.php:521 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 subjekti alternatiivne nimi" + +#: lib/Horde/Crypt/Smime.php:522 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 subjekti võtme identifikaator" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "X509v3 extensions" +msgstr "X509v3 laiendused" + +#: lib/Horde/Crypt/Smime.php:1140 +msgid "not yet implemented" +msgstr "pole veel teostatud" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/eu/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/eu/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/eu/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/eu/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/eu/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/eu/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,386 @@ +# Basque translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2012-11-06 16:40+0100\n" +"PO-Revision-Date: 2013-01-16 09:53+0100\n" +"Last-Translator: Ibon Igartua \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Pgp.php:1262 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "Sartu mezu hau enkriptatzeko erabilitako pasaesaldia." + +#: lib/Horde/Crypt/Pgp.php:1333 +#, fuzzy +msgid "A public PGP key is required to verify a signed message." +msgstr "PGP gako publiko hau erantsi zaio mezuari." + +#: lib/Horde/Crypt/Pgp.php:1193 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:266 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "PGP gako publiko hau erantsi zaio mezuari." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "Ziurtagiriaren xehetasunak" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "Ziurtagiriaren jabea" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Ziurtagiriaren gidalerroak" + +#: lib/Horde/Crypt/Pgp.php:436 +msgid "Comment" +msgstr "Iruzkina" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Izen arrunta" + +#: lib/Horde/Crypt/Pgp.php:968 +#, fuzzy +msgid "Connection refused to the public keyserver." +msgstr "Gakoa behar bezala bidali da gako-zerbitzari publikora." + +#: lib/Horde/Crypt/Pgp.php:979 +#, fuzzy, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Gakoa behar bezala bidali da gako-zerbitzari publikora." + +#: lib/Horde/Crypt/Pgp.php:1161 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "PGP enkriptazioko mezua" + +#: lib/Horde/Crypt/Pgp.php:1230 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "Ezin izan zaio %s erantsi mezuari." + +#: lib/Horde/Crypt/Smime.php:295 +#, fuzzy +msgid "Could not S/MIME encrypt message." +msgstr "S/MIMErekin enkriptatutako mezua" + +#: lib/Horde/Crypt/Smime.php:356 +#, fuzzy +msgid "Could not S/MIME sign message." +msgstr "S/MIMErekin sinatutako mezua" + +#: lib/Horde/Crypt/Pgp.php:1301 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Ezin izan da datu mota automatikoki zehaztu." + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:661 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:762 lib/Horde/Crypt/Pgp.php:876 +#, fuzzy +msgid "Could not obtain public key from the keyserver." +msgstr "Ezin izan da eskuratu %s(r)en gako publikoa." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "Herrialdea" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Azalpena" + +#: lib/Horde/Crypt/Pgp.php:437 +msgid "E-Mail" +msgstr "Posta hel." + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "Helbide elektronikoa" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1610 lib/Horde/Crypt/Pgp.php:1618 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:434 +#, fuzzy +msgid "Expiration Date" +msgstr "Aldatze-data" + +#: lib/Horde/Crypt/Smime.php:457 +#, fuzzy +msgid "Given Name" +msgstr "Fitxategi-izena" + +#: lib/Horde/Crypt/Pgp.php:438 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:433 +msgid "Key Creation" +msgstr "Gakoaren sortzea" + +#: lib/Horde/Crypt/Pgp.php:440 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:439 +msgid "Key ID" +msgstr "Gakoaren IDa" + +#: lib/Horde/Crypt/Pgp.php:435 +msgid "Key Length" +msgstr "Gakoaren luzera" + +#: lib/Horde/Crypt/Pgp.php:432 +msgid "Key Type" +msgstr "Gakoaren mota" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "Gakoaren erabilpena" + +#: lib/Horde/Crypt/Pgp.php:785 +#, fuzzy +msgid "Key already exists on the public keyserver." +msgstr "Gakoa behar bezala bidali da gako-zerbitzari publikora." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Kokalekua" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:131 +#, fuzzy +msgid "Message verified successfully." +msgstr "Mezua behar bezala birbideratu da." + +#: lib/Horde/Crypt/Pgp.php:431 +msgid "Name" +msgstr "Izena" + +#: lib/Horde/Crypt/Pgp.php:463 +msgid "Never" +msgstr "Inoiz ez" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:465 lib/Horde/Crypt/Pgp.php:466 +msgid "None" +msgstr "Bat ere ez" + +#: lib/Horde/Crypt/Smime.php:498 +#, fuzzy +msgid "Not After" +msgstr "Ez-pribatua" + +#: lib/Horde/Crypt/Smime.php:497 +#, fuzzy +msgid "Not Before" +msgstr "Aurreko hilabeteak" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Erakundea" + +#: lib/Horde/Crypt/Smime.php:450 +#, fuzzy +msgid "Organisational Unit" +msgstr "Erakundea" + +#: lib/Horde/Crypt/Pgp.php:1432 +#, fuzzy +msgid "PGP Digital Signature" +msgstr "Ilundu sinadurak?" + +#: lib/Horde/Crypt/Pgp.php:1476 +#, fuzzy +msgid "PGP Encrypted Data" +msgstr "PGP enkriptazioko mezua" + +#: lib/Horde/Crypt/Pgp.php:1537 +msgid "PGP Public Key" +msgstr "PGP gako publikoa" + +#: lib/Horde/Crypt/Pgp.php:1519 +#, fuzzy +msgid "PGP Signed/Encrypted Data" +msgstr "PGP sinaduradun/enkriptatzedun mezua" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Pasahitza ez da zuzena" + +#: lib/Horde/Crypt/Pgp.php:461 +msgid "Private Key" +msgstr "Gako pribatua" + +#: lib/Horde/Crypt/Pgp.php:461 +msgid "Public Key" +msgstr "Gako publikoa" + +#: lib/Horde/Crypt/Pgp.php:231 +#, fuzzy +msgid "Public/Private keypair not generated successfully." +msgstr "PGP gako-bikote pertsonala behar bezala sortu da." + +#: lib/Horde/Crypt/Pgp.php:233 +#, fuzzy +msgid "Returned error message:" +msgstr "Itzuli mezu-ikuspegira" + +#: lib/Horde/Crypt/Pgp.php:1670 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "PGP gako-bikote pertsonala behar bezala sortu da." + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:238 +#, fuzzy +msgid "S/MIME Encrypted Message" +msgstr "S/MIMErekin enkriptatutako mezua" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "Herrialdea edo probintzia" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Kale-helbidea" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Abizena" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Telefono zenbakia" + +#: lib/Horde/Crypt/Pgp.php:1337 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:467 lib/Horde/Crypt/Pgp.php:468 +#: lib/Horde/Crypt/Pgp.php:469 +msgid "Unknown" +msgstr "Ezezaguna" + +#: lib/Horde/Crypt/Smime.php:496 +#, fuzzy +msgid "Validity" +msgstr "Hezetasuna" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Bertsioa" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "ez da inplementatu oraindik" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fa/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fa/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fa/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fa/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fa/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fa/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,439 @@ +# Persian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "اثر انگشت %s" + +#: lib/Horde/Crypt/Pgp.php:1240 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "یک کلید عمومی PGP برای رمزبندی یک پیغام مورد نیاز است" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "یک کلید عمومی PGP برای بازبینی یک پیغام امضاء شده مورد نیاز است" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"یک کلید عمومی، یک کلید خصوصی PGP و یک عبارت گذر برای امضاء یک پیغام مورد " +"نیاز است" + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "یک کلید عمومی S/MIME برای رمزبندی پیغام مورد نیاز است" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"یک کلید عمومی، یک کلید خصوصی S/MIME و یک عبارت گذر برای رمزگشایی پیغام مورد " +"نیاز است" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"یک کلید عمومی، یک کلید خصوصی S/MIME و یک عبارت گذر برای امضاء یک پیغام مورد " +"نیاز است" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "نقاط توزیع CRL" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "جزئیات گواهی " + +#: lib/Horde/Crypt/Smime.php:520 +#, fuzzy +msgid "Certificate Owner" +msgstr "جزئیات گواهی " + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "سیاستهای گواهی" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "توضیح" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "نام عمومی" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "اتصال به کارساز کلید عمومی رد شد" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "اتصال به کارساز کلید عمومی رد شد. دلیل: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "نمی‌تواند پیغام را رمزبندی کند PGP" + +#: lib/Horde/Crypt/Pgp.php:1201 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "نمی‌تواند پیغام را امضاء کند PGP" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "نمی‌تواند پیغام را رمزبندی کند S/MIME" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "نمی‌تواند پیغام را امضاء کند S/MIME" + +# #-#-#-#-# compendium.po (Horde 3) #-#-#-#-# +# +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "نمی‌توان داده PGP را رمزگشایی نمود " + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "نمی‌توان داده S/MIME را رمزگشایی نمود " + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "نمی‌توان آدرس گیرنده نامهٔ الکترونیکی را تشخیص داد" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "نمی‌توان کلید عمومی را از کارساز کلید بدست آورد" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "کشور" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "نامه الکترونیکی" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "آدرس نامهٔ الکترونیکی" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "تاریخ انقضاء" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "نماینده" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "نام داده شده" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "الگوریتم Hash" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "منتشر کننده" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "ایجاد کلید" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "اثر انگشت کلید" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "طول کلید" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "نوع کلید" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "کاربرد کلید" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "کلید قبلاً در کارساز عمومی کلید موجود است" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "موقعیت" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "پیغام با موفّقیّت بازبینی شد اما گواهی امضاء کننده نمی‌تواند بازبینی شود" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "نام" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "URL پایه Netscape" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "Netscape CA Revocation URL" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "Netscape CA policy URL" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "Netscape Renewal URL" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "Netscape Revocation URL" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "توضیح گواهی Netscape" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "نوع گواهی Netscape" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "هرگز" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "هیچ‌کدام" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "نه بعد" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "نه قبل" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "سازمان" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "واحد سازمانی" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "امضاء‌ دیجیتالی PGP" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "پیغام رمزبندی شدهٔ PGP" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr " کلید عمومی PGP" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "پیغام رمزبندی شده/امضاء شده PGP" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "اسم رمز نادرست است" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "کلید شخصی" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "کلید عمومی" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "الگوریتم کلید عمومی" + +#: lib/Horde/Crypt/Smime.php:553 +#, fuzzy +msgid "Public Key Info" +msgstr "کلید عمومی" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "جفت کلید عمومی/خصوصی با موفّقیّت تولید نشد" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr " کلید عمومی RSA (%d بیت)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "خواندن پیغامها " + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "جفت کلید عمومی/خصوصی با موفّقیّت تولید نشد" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "پیغام رمزبندی شدهٔ S/MIME " + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "اعداد ترتیبی" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "امضاء" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "الگوریتم امضاء" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "وضعیت حوزه‌ها" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "آدرس خیابان" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "نام خانوادگی" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "شماره تلفن" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "یک بلوک امضای PGP برای بازبینی یک پیغام امضاء شده مورد نیاز است" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "نمی‌توان جزئیات گواهی را استخراج نمود" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "داده ناشناخته" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "بسط بدون پشتیبانی" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "اعتبار" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "یک خطای جدی رخ داده است" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "نسخه" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "هنوز پیاده سازی نشده است" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fi/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fi/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fi/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fi/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fi/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fi/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,374 @@ +# Finnish translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Leena Heino , 2010-2012. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2012-11-06 16:40+0100\n" +"PO-Revision-Date: 2012-10-28 20:41:43+0200\n" +"Last-Translator: Leena Heino \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Pgp.php:1262 +msgid "A passphrase is required to decrypt a message." +msgstr "Salatun viestin purkamiseen tarvitaan salasanateksti." + +#: lib/Horde/Crypt/Pgp.php:1333 +msgid "A public PGP key is required to verify a signed message." +msgstr "Allekirjoitetun viestin tarkistukseen tarvitaan julkinen PGP-avain." + +#: lib/Horde/Crypt/Pgp.php:1193 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Viestin allekirjoittamiseksi tarvitaan julkinen PGP-avain, salainen PGP-" +"avain ja salasanateksti." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Viestin salaukseen tarvitaan julkinen SMIME-avain." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Viestin avaamiseen tarvitaan julkinen S/MIME-avain, salainen S/MIME-avain ja " +"salasanateksti." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Viestin allekirjoittamiseksi tarvitaan julkinen S/MIME-avain, salainen S/" +"MIME-avain ja salasanateksti." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "CRL-jakeluosoitteet" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "Varmenteen tiedot" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "Varmenteen omistaja" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Varmenteen politiikat" + +#: lib/Horde/Crypt/Pgp.php:436 +msgid "Comment" +msgstr "Kommentti" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Yleinen nimi" + +#: lib/Horde/Crypt/Pgp.php:968 +msgid "Connection refused to the public keyserver." +msgstr "Yhteys julkisten avainten palvelimelle on estetty." + +#: lib/Horde/Crypt/Pgp.php:979 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Yhteys julkisten avainten palvelimelle epäonnistui. Syy: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1161 +msgid "Could not PGP encrypt message: " +msgstr "Viestille ei voitu tehdä PGP-salausta: " + +#: lib/Horde/Crypt/Pgp.php:1230 +msgid "Could not PGP sign message: " +msgstr "Viestille ei voitu tehdä PGP-allekirjoitusta: " + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "Viestille ei voitu tehdä S/MIME-salausta." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "Viestille ei voitu tehdä S/MIME-allekirjoitusta." + +#: lib/Horde/Crypt/Pgp.php:1301 +msgid "Could not decrypt PGP data: " +msgstr "Viestin PGP-salausta ei voitu purkaa: " + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "Viestin S/MIME-salausta ei voitu purkaa." + +#: lib/Horde/Crypt/Pgp.php:661 +msgid "Could not determine the recipient's e-mail address." +msgstr "Viestin vastaanottajan sähköpostiosoitetta ei löytynyt." + +#: lib/Horde/Crypt/Pgp.php:762 lib/Horde/Crypt/Pgp.php:876 +msgid "Could not obtain public key from the keyserver." +msgstr "Avaintietoa ei pystytty hakemaan julkisten avainten palvelimelta." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "Maa" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Kuvaus" + +#: lib/Horde/Crypt/Pgp.php:437 +msgid "E-Mail" +msgstr "Sähköposti" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "Sähköpostiosoite" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Virhe tulkittaessa S/MIME-sertifikaattia: %s" + +#: lib/Horde/Crypt/Pgp.php:1610 lib/Horde/Crypt/Pgp.php:1618 +msgid "Error while talking to pgp binary." +msgstr "Virhe käytettäessä pgp-ohjelmistoa." + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "Virhe käytettäessä smime-ohjelmistoa." + +#: lib/Horde/Crypt/Pgp.php:434 +msgid "Expiration Date" +msgstr "Loppupäivämäärä" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "Etunimi" + +#: lib/Horde/Crypt/Pgp.php:438 +msgid "Hash-Algorithm" +msgstr "Tiivistealgoritmi" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "Liikkeellelaskija" + +#: lib/Horde/Crypt/Pgp.php:433 +msgid "Key Creation" +msgstr "Avaimen luonti" + +#: lib/Horde/Crypt/Pgp.php:440 +msgid "Key Fingerprint" +msgstr "Avaimen tunniste" + +#: lib/Horde/Crypt/Pgp.php:439 +msgid "Key ID" +msgstr "Avaimen ID" + +#: lib/Horde/Crypt/Pgp.php:435 +msgid "Key Length" +msgstr "Avaimen pituus" + +#: lib/Horde/Crypt/Pgp.php:432 +msgid "Key Type" +msgstr "Avaimen tyyppi" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "Avaimen käyttö" + +#: lib/Horde/Crypt/Pgp.php:785 +msgid "Key already exists on the public keyserver." +msgstr "Avain on jo julkisten avainten palvelimella" + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Paikka" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Viestin tarkistus onnistui, mutta allekirjoittajan varmennetta ei voitu " +"tarkistaa." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "Viestin tarkistus epäonnistui." + +#: lib/Horde/Crypt/Pgp.php:431 +msgid "Name" +msgstr "Nimi" + +#: lib/Horde/Crypt/Pgp.php:463 +msgid "Never" +msgstr "Ei koskaan" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Polkua OpenSSL komentoon ei ole määritelty. PKCS 12 tietojen käsittely " +"vaatii, että OpenSSL komentoa on käytettävissä." + +#: lib/Horde/Crypt/Pgp.php:465 lib/Horde/Crypt/Pgp.php:466 +msgid "None" +msgstr "Ei mitään" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "Ei jälkeen" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "Ei ennen" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"OpenSSL virhe: Tietoja ei saatu esille allekirjoitetusta S/MIME-osasta." + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Organisaatio" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "Organisaatioyksikkö" + +#: lib/Horde/Crypt/Pgp.php:1432 +msgid "PGP Digital Signature" +msgstr "Sähköinen PGP-allekirjoitus" + +#: lib/Horde/Crypt/Pgp.php:1476 +msgid "PGP Encrypted Data" +msgstr "PGP-salattua tietoa" + +#: lib/Horde/Crypt/Pgp.php:1537 +msgid "PGP Public Key" +msgstr "Julkinen PGP-avain" + +#: lib/Horde/Crypt/Pgp.php:1519 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP-allekirjoitettua ja salattua tietoa" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Väärä salasana" + +#: lib/Horde/Crypt/Pgp.php:461 +msgid "Private Key" +msgstr "Salainen avain" + +#: lib/Horde/Crypt/Pgp.php:461 +msgid "Public Key" +msgstr "Julkinen avain" + +#: lib/Horde/Crypt/Pgp.php:231 +msgid "Public/Private keypair not generated successfully." +msgstr "Julkisen/salaisen avainparin luonti epäonnistui." + +#: lib/Horde/Crypt/Pgp.php:233 +msgid "Returned error message:" +msgstr "Palautti virheilmoituksen:" + +#: lib/Horde/Crypt/Pgp.php:1670 +msgid "Revocation key not generated successfully." +msgstr "Sulkuavaimen luonti epäonnistui." + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME kryptograafinen allekirjoitus" + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME salattu viesti" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "Sarjanumero" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "Lääni tai alue" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Katuosoite" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Sukunimi" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Puhelinnumero" + +#: lib/Horde/Crypt/Pgp.php:1337 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Viestin allekirjoituksen tarkistamiseen tarvitaan erillinen PGP-" +"allekirjoituslohko." + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Moduuli openssl tarvitaan Horde_Crypt_smime:: -luokan käyttöön." + +#: lib/Horde/Crypt/Pgp.php:467 lib/Horde/Crypt/Pgp.php:468 +#: lib/Horde/Crypt/Pgp.php:469 +msgid "Unknown" +msgstr "Tuntematon" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "Voimassaoloaika" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "Tarkistus epäonnistui - tapahtui tuntematon virhe." + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "Tarkistus epäonnistui - Tätä viestiä on voitu käsitellä." + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Versio" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 perusrajoitteet" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 lisätoiminnot avaimen käytölle" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Kohteen vaihtoehtoinen nimi" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Kohteen avaimen tunniste" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "X509v3 laajennukset" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "ei ole vielä toteutettu" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fr/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fr/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fr/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fr/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/fr/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/fr/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,378 @@ +# French translations for Horde_Crypt package. +# Copyright (C) 2013 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt package. +# +# Automatically generated, 2013. +# Paul De Vlieger , 2013 +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt \n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2012-11-06 16:40+0100\n" +"PO-Revision-Date: 2013-01-14 11:49+0100\n" +"Last-Translator: Paul De Vlieger \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Lokalize 1.4\n" + +#: lib/Horde/Crypt/Pgp.php:1262 +msgid "A passphrase is required to decrypt a message." +msgstr "Une phrase secrète est nécessaire pour déchiffrer un message." + +#: lib/Horde/Crypt/Pgp.php:1333 +msgid "A public PGP key is required to verify a signed message." +msgstr "" +"Une clef publique PGP est nécessaire pour vérifier la signature d'un message." + +#: lib/Horde/Crypt/Pgp.php:1193 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Une clef publique PGP, une clef privée PGP, et une phrase secrète sont " +"nécessaires pour signer un message." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Une clef publique S/MIME est nécessaire pour chiffrer un message." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Une clef publique S/MIME, une clef privée S/MIME, et une phrase secrète sont " +"nécessaires pour déchiffrer un message." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Une clef publique S/MIME, une clef privée S/MIME, et une phrase secrète sont " +"nécessaires pour signer un message." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "Distribution des points LRC (Liste de révocation des certificats)" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "Détails du certificat" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "Propriétaire du certificat" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Politique de certification" + +#: lib/Horde/Crypt/Pgp.php:436 +msgid "Comment" +msgstr "Commentaire" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Nom usuel" + +#: lib/Horde/Crypt/Pgp.php:968 +msgid "Connection refused to the public keyserver." +msgstr "Connexion au serveur de clefs public refusée." + +#: lib/Horde/Crypt/Pgp.php:979 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Connexion au serveur de clefs public refusée. Raison : %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1161 +msgid "Could not PGP encrypt message: " +msgstr "Impossible de chiffrer le message : " + +#: lib/Horde/Crypt/Pgp.php:1230 +msgid "Could not PGP sign message: " +msgstr "Signature PGP du message impossible : " + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "Impossible de chiffrer le message avec S/MIME." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "Signature S/MIME du message impossible." + +#: lib/Horde/Crypt/Pgp.php:1301 +msgid "Could not decrypt PGP data: " +msgstr "Impossible de déchiffrer les données PGP : " + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "Impossible de déchiffrer les données S/MIME." + +#: lib/Horde/Crypt/Pgp.php:661 +msgid "Could not determine the recipient's e-mail address." +msgstr "Détermination de l'adresse du destinataire impossible." + +#: lib/Horde/Crypt/Pgp.php:762 lib/Horde/Crypt/Pgp.php:876 +msgid "Could not obtain public key from the keyserver." +msgstr "Impossible d'obtenir la clef publique à partir du serveur de clefs." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "Pays" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Description" + +#: lib/Horde/Crypt/Pgp.php:437 +msgid "E-Mail" +msgstr "Courrier" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "Adresse électronique" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Erreur de lecture du certificat S/MIME: %s" + +#: lib/Horde/Crypt/Pgp.php:1610 lib/Horde/Crypt/Pgp.php:1618 +msgid "Error while talking to pgp binary." +msgstr "Erreur de communication avec pgp." + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "Erreur de communication avec smime." + +#: lib/Horde/Crypt/Pgp.php:434 +msgid "Expiration Date" +msgstr "Date d'expiration" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "Prénom" + +#: lib/Horde/Crypt/Pgp.php:438 +msgid "Hash-Algorithm" +msgstr "Algorithme de hachage" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "Émetteur" + +#: lib/Horde/Crypt/Pgp.php:433 +msgid "Key Creation" +msgstr "Création de clef" + +#: lib/Horde/Crypt/Pgp.php:440 +msgid "Key Fingerprint" +msgstr "Empreinte de la clef" + +#: lib/Horde/Crypt/Pgp.php:439 +msgid "Key ID" +msgstr "Clé ID" + +#: lib/Horde/Crypt/Pgp.php:435 +msgid "Key Length" +msgstr "Longueur de la clef" + +#: lib/Horde/Crypt/Pgp.php:432 +msgid "Key Type" +msgstr "Type de clef" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "Utilisation de la clef" + +#: lib/Horde/Crypt/Pgp.php:785 +msgid "Key already exists on the public keyserver." +msgstr "La clef se trouve déjà sur le serveur de clefs public." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Lieu" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Vérification du message réussie, mais le certificat du signataire n'a pas pu " +"être vérifié." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "Vérification du message réussie." + +#: lib/Horde/Crypt/Pgp.php:431 +msgid "Name" +msgstr "Nom" + +#: lib/Horde/Crypt/Pgp.php:463 +msgid "Never" +msgstr "Jamais" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Aucun chemin vers le binaire OpenSSL fourni. Le binaire d'OpenSSL est " +"nécessaire pour fonctionner avec des données PKCS 12." + +#: lib/Horde/Crypt/Pgp.php:465 lib/Horde/Crypt/Pgp.php:466 +msgid "None" +msgstr "Aucun" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "Pas après" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "Pas avant" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"Erreur OpenSSL : impossible d'extraire les données de la partie signée S/" +"MIME." + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Organisation" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "Unité organisationnelle" + +#: lib/Horde/Crypt/Pgp.php:1432 +msgid "PGP Digital Signature" +msgstr "Signature numérique PGP" + +#: lib/Horde/Crypt/Pgp.php:1476 +msgid "PGP Encrypted Data" +msgstr "Données PGP chiffrées" + +#: lib/Horde/Crypt/Pgp.php:1537 +msgid "PGP Public Key" +msgstr "Clé publique PGP" + +#: lib/Horde/Crypt/Pgp.php:1519 +msgid "PGP Signed/Encrypted Data" +msgstr "Données PGP signées/chiffrées" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Mot de passe incorrect" + +#: lib/Horde/Crypt/Pgp.php:461 +msgid "Private Key" +msgstr "Clef privée" + +#: lib/Horde/Crypt/Pgp.php:461 +msgid "Public Key" +msgstr "Clef publique" + +#: lib/Horde/Crypt/Pgp.php:231 +msgid "Public/Private keypair not generated successfully." +msgstr "Échec de la génération de la paire de clefs publique/privée." + +#: lib/Horde/Crypt/Pgp.php:233 +msgid "Returned error message:" +msgstr "Message d'erreur retourné:" + +#: lib/Horde/Crypt/Pgp.php:1670 +msgid "Revocation key not generated successfully." +msgstr "Échec de la génération de la clé de révocation." + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Cryptographic Signature" +msgstr "Signature électronique S/MIME" + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "Message chiffré S/MIME" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "Numéro de série" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "État ou province" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Rue" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Nom de famille" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Numéro de téléphone" + +#: lib/Horde/Crypt/Pgp.php:1337 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Le bloc de signature PGP séparé est nécessaire pour vérifier la signature." + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Le module OpenSSL est requis pour la classe Horde_Crypt_smime" + +#: lib/Horde/Crypt/Pgp.php:467 lib/Horde/Crypt/Pgp.php:468 +#: lib/Horde/Crypt/Pgp.php:469 +msgid "Unknown" +msgstr "Inconnu" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "Validité" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "La vérification a échouée, une erreur inconnue s'est produite." + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "Échec de la vérification — ce message a peut-être été falsifié." + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Version" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "Contraintes basiques X509v3" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "Utilisation de clé étendue X509v3" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "Autre nom du sujet X509v3" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "Identifiant de clé du sujet X509v3" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "Extensions X509v3" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "pas encore pris en compte" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/gl/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/gl/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/gl/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/gl/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/gl/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/gl/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,427 @@ +# Galician translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "Correo" + +#: lib/Horde/Crypt/Smime.php:474 +#, fuzzy +msgid "Email Address" +msgstr "Enderezo de correo electrónico:" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Mensaxe" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nome" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Nunca" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Chave de acceso" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "Enderezo particular" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "Usuario" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/he/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/he/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/he/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/he/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/he/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/he/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,427 @@ +# Hebrew translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +#, fuzzy +msgid "Given Name" +msgstr "וייט–נם" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "שם" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "אפגניסתן" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "סיסמא: " + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "סורינם" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +#, fuzzy +msgid "Validity" +msgstr "לחות" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "גירסה" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/Horde_Crypt.pot php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/Horde_Crypt.pot --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/Horde_Crypt.pot 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/Horde_Crypt.pot 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,339 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2016-08-08 15:58+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:302 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:443 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:374 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:514 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:132 +msgid "Cannot generate PGP keys" +msgstr "" + +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:350 +msgid "Cannot read PGP key ID" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:565 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:523 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:513 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:214 +msgid "Comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Common Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:559 +msgid "Could not PGP encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:576 +msgid "Could not PGP sign message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:343 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:405 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not decrypt PGP data." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:431 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp/Keyserver.php:110 lib/Horde/Crypt/Pgp/Keyserver.php:186 +#: lib/Horde/Crypt/Pgp/Keyserver.php:243 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:500 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Description" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:215 +msgid "E-Mail" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Email Address" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:600 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "" + +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:701 +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:711 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:770 lib/Horde/Crypt/Smime.php:788 +#: lib/Horde/Crypt/Smime.php:803 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:212 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "Given Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:216 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:211 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:218 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:217 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:213 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:210 +msgid "Key Type" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:515 +msgid "Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Pgp/Keyserver.php:146 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "Location" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:154 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:142 +msgid "Message verified successfully." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:209 +msgid "Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:247 +msgid "Never" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:736 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:249 lib/Horde/Crypt/Pgp.php:250 +msgid "None" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:546 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Organisation" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:499 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:735 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:792 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:866 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:844 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:775 +msgid "Password incorrect" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:245 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:245 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:95 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:272 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:225 +msgid "S/MIME Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:567 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "Street Address" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Surname" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:665 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:685 +msgid "Unable to determine if data was encrypted symmetrically." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:251 lib/Horde/Crypt/Pgp.php:252 +#: lib/Horde/Crypt/Pgp.php:253 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:545 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:149 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:151 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:566 +msgid "Version" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:510 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:509 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:511 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:552 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:654 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/hr/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/hr/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/hr/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/hr/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/hr/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/hr/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,449 @@ +# Croatian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Valentin Vidic , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2011-08-02 15:24+0200\n" +"PO-Revision-Date: 2011-11-08 16:49+0200\n" +"Last-Translator: Valentin Vidic \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: lib/Horde/Crypt/Smime.php:632 +#, php-format +msgid "%s Fingerprint" +msgstr "%s Otisak prsta" + +#: lib/Horde/Crypt/Pgp.php:1237 +msgid "A passphrase is required to decrypt a message." +msgstr "Za dešifriranje poruke potrebna je lozinka." + +#: lib/Horde/Crypt/Pgp.php:1308 +msgid "A public PGP key is required to verify a signed message." +msgstr "Za verifikaciju napisane poruke potreban je javni PGP ključ." + +#: lib/Horde/Crypt/Pgp.php:1168 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Za potpisivanje poruke potrebni su javni PGP ključ, osobni PGP ključ i " +"lozinka." + +#: lib/Horde/Crypt/Smime.php:312 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Za šifriranje poruke potreban je javni S/MIME ključ." + +#: lib/Horde/Crypt/Smime.php:440 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Za dešifriranje poruke potrebni su javni S/MIME ključ, osobni S/MIME ključ i " +"lozinka." + +#: lib/Horde/Crypt/Smime.php:371 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Za potpisivanje poruke potrebni su javni S/MIME ključ, osobni S/MIME ključ i " +"lozinka." + +#: lib/Horde/Crypt/Smime.php:524 +msgid "CRL Distribution Points" +msgstr "CRL Distribucijske Točke" + +# pojedinosti +#: lib/Horde/Crypt/Smime.php:627 +msgid "Certificate Details" +msgstr "Detalji certifikata" + +# pojedinosti +#: lib/Horde/Crypt/Smime.php:538 +msgid "Certificate Owner" +msgstr "Vlasnik certifikata" + +#: lib/Horde/Crypt/Smime.php:523 +msgid "Certificate Policies" +msgstr "Smjernice certifikata" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Komentar" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Common Name" +msgstr "Zajedničko ime" + +#: lib/Horde/Crypt/Pgp.php:943 +msgid "Connection refused to the public keyserver." +msgstr "Odbijeno povezivanje na poslužitelj javnih ključeva." + +#: lib/Horde/Crypt/Pgp.php:954 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Odbijeno povezivanje na poslužitelj javnih ključeva. Razlog: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1136 +msgid "Could not PGP encrypt message: " +msgstr "PGP šifriranje poruke nije uspjelo: " + +#: lib/Horde/Crypt/Pgp.php:1205 +msgid "Could not PGP sign message: " +msgstr "PGP potpisivanje poruke nije uspjelo: " + +#: lib/Horde/Crypt/Smime.php:341 +msgid "Could not S/MIME encrypt message." +msgstr "S/MIME šifriranje poruke nije uspjelo." + +#: lib/Horde/Crypt/Smime.php:402 +msgid "Could not S/MIME sign message." +msgstr "S/MIME potpisivanje poruke nije uspjelo." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "Dešifriranje PGP podataka nije uspjelo: " + +#: lib/Horde/Crypt/Smime.php:458 +msgid "Could not decrypt S/MIME data." +msgstr "Dešifriranje S/MIME podataka nije uspjelo." + +#: lib/Horde/Crypt/Pgp.php:657 +msgid "Could not determine the recipient's e-mail address." +msgstr "Određivanje primateljeve e-mail adrese nije uspjelo." + +#: lib/Horde/Crypt/Pgp.php:758 lib/Horde/Crypt/Pgp.php:851 +msgid "Could not obtain public key from the keyserver." +msgstr "Primanje javnog ključa sa poslužitelja nije uspjelo." + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Country" +msgstr "Zemlja" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "E-Mail" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Email Address" +msgstr "E-mail adresa" + +#: lib/Horde/Crypt/Pgp.php:1586 lib/Horde/Crypt/Pgp.php:1594 +msgid "Error while talking to pgp binary." +msgstr "Greška prilikom komunikacije s pgp programom." + +#: lib/Horde/Crypt/Smime.php:1256 lib/Horde/Crypt/Smime.php:1274 +#: lib/Horde/Crypt/Smime.php:1289 +msgid "Error while talking to smime binary." +msgstr "Greška prilikom komunikacije s smime programom." + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Datum isteknuća" + +#: lib/Horde/Crypt/Smime.php:604 +msgid "Exponent" +msgstr "Eksponent" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "Given Name" +msgstr "Dodijeljeno ime" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hash algoritam" + +#: lib/Horde/Crypt/Smime.php:552 +msgid "Issuer" +msgstr "Izdavač" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Kreiranje ključa" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Otisak ključa" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "Oznaka ključa" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Duljina ključa" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Vrsta ključa" + +#: lib/Horde/Crypt/Smime.php:525 +msgid "Key Usage" +msgstr "Korištenje ključa" + +#: lib/Horde/Crypt/Pgp.php:781 +msgid "Key already exists on the public keyserver." +msgstr "Ključ već postoji na javnom poslužitelju ključeva." + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Location" +msgstr "Lokacija" + +# provjera +#: lib/Horde/Crypt/Smime.php:192 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Poruka je prošla verifikaciju, ali se certifikat potpisnika ne može " +"verificirati." + +#: lib/Horde/Crypt/Smime.php:180 +msgid "Message verified successfully." +msgstr "Poruka je uspješno verificirana." + +#: lib/Horde/Crypt/Smime.php:601 +msgid "Modulus" +msgstr "Modul" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Ime" + +#: lib/Horde/Crypt/Smime.php:508 +msgid "Netscape Base URL" +msgstr "URL Netscape Baze" + +#: lib/Horde/Crypt/Smime.php:510 +msgid "Netscape CA Revocation URL" +msgstr "URL Netscape CA opoziva" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Netscape CA policy URL" +msgstr "URL Netscape CA smjernice" + +#: lib/Horde/Crypt/Smime.php:511 +msgid "Netscape Renewal URL" +msgstr "URL Netscape obnove" + +#: lib/Horde/Crypt/Smime.php:509 +msgid "Netscape Revocation URL" +msgstr "URL Netscape opoziva" + +#: lib/Horde/Crypt/Smime.php:513 +msgid "Netscape SSL server name" +msgstr "Ime Netscape SSL poslužitelja" + +#: lib/Horde/Crypt/Smime.php:514 +msgid "Netscape certificate comment" +msgstr "Komentar Netscape certifikata" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Netscape certificate type" +msgstr "Vrsta Netscape certifikata" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Nikada" + +#: lib/Horde/Crypt/Smime.php:1222 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Putanja prema OpenSSL binarnoj datoteci nije navedena. OpenSSL binarna " +"datoteka je neophodna za rad s PKCS 12 podacima." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Ništa" + +#: lib/Horde/Crypt/Smime.php:567 +msgid "Not After" +msgstr "Ne poslije" + +#: lib/Horde/Crypt/Smime.php:566 +msgid "Not Before" +msgstr "Ne prije" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"OpenSSL greška: Nije uspjelo izdvajanje podataka iz potpisanog S/MIME dijela." + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Organisation" +msgstr "Organizacija" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Organisational Unit" +msgstr "Organizacijska jedinica" + +#: lib/Horde/Crypt/Pgp.php:1408 +msgid "PGP Digital Signature" +msgstr "PGP digitalni potpis" + +#: lib/Horde/Crypt/Pgp.php:1452 +msgid "PGP Encrypted Data" +msgstr "PGP šifrirani podaci" + +#: lib/Horde/Crypt/Pgp.php:1513 +msgid "PGP Public Key" +msgstr "PGP javni ključ" + +# Potpisani? +#: lib/Horde/Crypt/Pgp.php:1495 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP upisani/šfrirani podaci" + +#: lib/Horde/Crypt/Smime.php:1261 +msgid "Password incorrect" +msgstr "Lozinka je netočna" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Osobni ključ" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Javni ključ" + +#: lib/Horde/Crypt/Smime.php:572 +msgid "Public Key Algorithm" +msgstr "Algoritam javnog ključa" + +#: lib/Horde/Crypt/Smime.php:571 +msgid "Public Key Info" +msgstr "Informacije o javnom ključu" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Javni/osobni par ključeva nije uspješno generiran." + +#: lib/Horde/Crypt/Smime.php:590 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA javni ključ (%d bit)" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "Vraćena poruka o grešci:" + +#: lib/Horde/Crypt/Pgp.php:1646 +msgid "Revocation key not generated successfully." +msgstr "Ključ za opoziv nije uspješno generiran." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME kriptografski potpis" + +#: lib/Horde/Crypt/Smime.php:284 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME šifrirana poruka" + +#: lib/Horde/Crypt/Smime.php:629 +msgid "Serial Number" +msgstr "Serijski broj" + +#: lib/Horde/Crypt/Smime.php:636 +msgid "Signature" +msgstr "Potpis" + +#: lib/Horde/Crypt/Smime.php:635 +msgid "Signature Algorithm" +msgstr "Algoritam potpisa" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "State or Province" +msgstr "Država ili pokrajina" + +# adresa +#: lib/Horde/Crypt/Smime.php:499 +msgid "Street Address" +msgstr "Naziv ulice" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "Surname" +msgstr "Prezime" + +#: lib/Horde/Crypt/Smime.php:500 +msgid "Telephone Number" +msgstr "Telefonski broj" + +#: lib/Horde/Crypt/Pgp.php:1312 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Potreban je odvojeni blok PGP potpisa kako bi se verificirala potpisana " +"poruka." + +#: lib/Horde/Crypt/Smime.php:1151 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Modul openssl je potreban za Horde_Crypt_Smime:: klasu." + +#: lib/Horde/Crypt/Smime.php:530 +msgid "Unable to extract certificate details" +msgstr "Nije uspjelo izdvajanje podataka o certifikatu" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Nepoznato" + +#: lib/Horde/Crypt/Smime.php:614 lib/Horde/Crypt/Smime.php:858 +#: lib/Horde/Crypt/Smime.php:864 +msgid "Unsupported Extension" +msgstr "Nepodržana ekstenzija" + +# Ispravnost +#: lib/Horde/Crypt/Smime.php:565 +msgid "Validity" +msgstr "Valjanost" + +#: lib/Horde/Crypt/Smime.php:187 +msgid "Verification failed - an unknown error has occurred." +msgstr "Provjera nije uspjela - došlo je do nepoznate greške." + +#: lib/Horde/Crypt/Smime.php:189 +msgid "Verification failed - this message may have been tampered with." +msgstr "" +"Nije uspjela provjera podataka - mogućnost neovlaštenog pristupa poruci." + +#: lib/Horde/Crypt/Smime.php:628 +msgid "Version" +msgstr "Verzija" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 Osnovna ograničenja" + +#: lib/Horde/Crypt/Smime.php:519 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 Produljena upotreba ključa" + +# Alternativan naziv +#: lib/Horde/Crypt/Smime.php:521 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Alternativan naslov" + +#: lib/Horde/Crypt/Smime.php:522 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Identifikator naslova" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "X509v3 extensions" +msgstr "X509v3 esktenzije" + +#: lib/Horde/Crypt/Smime.php:1140 +msgid "not yet implemented" +msgstr "još nije implementirano" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/hu/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/hu/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/hu/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/hu/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/hu/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/hu/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,360 @@ +# Hungarian translations for Horde_Crypt module. +# Copyright 2010-2013 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt \n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2014-03-25 18:08+0100\n" +"PO-Revision-Date: 2014-07-14 11:35+0200\n" +"Last-Translator: Andras Galos \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Pgp.php:1086 +msgid "A passphrase is required to decrypt a message." +msgstr "Egy jelmondat szükséges a titkosítás visszafejtéséhez." + +#: lib/Horde/Crypt/Pgp.php:1157 +msgid "A public PGP key is required to verify a signed message." +msgstr "A digitális aláírás ellenőrzéséhez egy nyilvános PGP kulcs szükséges." + +#: lib/Horde/Crypt/Pgp.php:1017 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"A digitális aláíráshoz egy nyilvános PGP kulcs, egy titkos PGP kulcs és egy " +"jelmondat szükséges." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "A titkosításhoz egy nyilvános S/MIME kulcs szükséges." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"A titkosítás dekódolásához egy nyilvános S/MIME kulcs, egy titkos S/MIME " +"kulcs és egy jelmondat szükséges." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"A digitális aláíráshoz egy nyilvános S/MIME kulcs, egy titkos S/MIME kulcs " +"és egy jelmondat szükséges." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "A tanúsítványvisszavonási listák (CRL) címei" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "A tanúsítvány részletei" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "A tanúsítvány tulajdonosa" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Tanúsítványfelhasználási irányelvek" + +#: lib/Horde/Crypt/Pgp.php:417 +msgid "Comment" +msgstr "Megjegyzés" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Név, elnevezés" + +#: lib/Horde/Crypt/Pgp.php:985 +msgid "Could not PGP encrypt message: " +msgstr "Nem sikerült PGP-vel titkosítani a levelet: " + +#: lib/Horde/Crypt/Pgp.php:1054 +msgid "Could not PGP sign message: " +msgstr "A levelet nem sikerült PGP aláírással ellátni: " + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "A levelet nem sikerült az S/MIME szabvány szerint titkosítani." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "A levelet nem sikerült S/MIME aláírással ellátni." + +#: lib/Horde/Crypt/Pgp.php:1125 +msgid "Could not decrypt PGP data: " +msgstr "Az adatok PGP titkosításból történő dekódolása nem sikerült: " + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "Az adatok S/MIME titkosításból történő dekódolása nem sikerült." + +#: lib/Horde/Crypt/Pgp.php:644 +msgid "Could not determine the recipient's e-mail address." +msgstr "Nem sikerült megállapítani a címzett email címét." + +#: lib/Horde/Crypt/Pgp/Keyserver.php:101 lib/Horde/Crypt/Pgp/Keyserver.php:219 +msgid "Could not obtain public key from the keyserver." +msgstr "A nyilvános kulcsot nem sikerült megszerezni a kulcsszerverről." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "Ország" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Leírás" + +#: lib/Horde/Crypt/Pgp.php:418 +msgid "E-Mail" +msgstr "Email" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "Emailcím" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Hiba történt az S/MIME tanúsítvány olvasásakor: %s" + +#: lib/Horde/Crypt/Pgp.php:1453 lib/Horde/Crypt/Pgp.php:1461 +msgid "Error while talking to pgp binary." +msgstr "Hiba történt a pgp program futtatásakor." + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "Hiba történt az smime program futtatásakor." + +#: lib/Horde/Crypt/Pgp.php:415 +msgid "Expiration Date" +msgstr "Az érvényesség lejárata" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "Keresztnév" + +#: lib/Horde/Crypt/Pgp.php:419 +msgid "Hash-Algorithm" +msgstr "Hash algoritmus" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "A tanúsítvány kiadója" + +#: lib/Horde/Crypt/Pgp.php:414 +msgid "Key Creation" +msgstr "Kulcs létrehozása" + +#: lib/Horde/Crypt/Pgp.php:421 +msgid "Key Fingerprint" +msgstr "A kulcs lenyomata" + +#: lib/Horde/Crypt/Pgp.php:420 +msgid "Key ID" +msgstr "Kulcsazonosító" + +#: lib/Horde/Crypt/Pgp.php:416 +msgid "Key Length" +msgstr "Kulcshossz" + +#: lib/Horde/Crypt/Pgp.php:413 +msgid "Key Type" +msgstr "Kulcstípus" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "A kulcs használata" + +#: lib/Horde/Crypt/Pgp/Keyserver.php:137 +msgid "Key already exists on the public keyserver." +msgstr "A kulcs már létezik a nyilvános kulcsszerveren." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Hely" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"A digitálisan aláírt üzenet hiteles, de az aláíró tanúsítványát nem sikerült " +"ellenőrizni." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "A levél digitális aláírása érvényes." + +#: lib/Horde/Crypt/Pgp.php:412 +msgid "Name" +msgstr "Név" + +#: lib/Horde/Crypt/Pgp.php:444 +msgid "Never" +msgstr "Soha" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Nincs megadva az OpenSSL program elérési útvonala. Az OpenSSL program " +"szükséges a PKCS12 adatok kezeléséhez." + +#: lib/Horde/Crypt/Pgp.php:446 lib/Horde/Crypt/Pgp.php:447 +msgid "None" +msgstr "Nincs" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "Nem később" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "Nem korábban" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"OpenSSL hiba: Nem sikerült kinyerni az adatokat az aláírt S/MIME részből" + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Szervezet" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "Szervezeti egység" + +#: lib/Horde/Crypt/Pgp.php:1275 +msgid "PGP Digital Signature" +msgstr "PGP digitális aláírás" + +#: lib/Horde/Crypt/Pgp.php:1319 +msgid "PGP Encrypted Data" +msgstr "PGP-vel titkosított adat" + +#: lib/Horde/Crypt/Pgp.php:1380 +msgid "PGP Public Key" +msgstr "PGP nyilvános kulcs" + +#: lib/Horde/Crypt/Pgp.php:1362 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP-vel aláírt/titkosított adat" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Nem megfelelő jelszó" + +#: lib/Horde/Crypt/Pgp.php:442 +msgid "Private Key" +msgstr "Titkos kulcs" + +#: lib/Horde/Crypt/Pgp.php:442 +msgid "Public Key" +msgstr "Nyilvános kulcs" + +#: lib/Horde/Crypt/Pgp.php:212 +msgid "Public/Private keypair not generated successfully." +msgstr "A nyilvános/titkos kulcspárt nem sikerült létrehozni." + +#: lib/Horde/Crypt/Pgp.php:214 +msgid "Returned error message:" +msgstr "A kapott hibaüzenet:" + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME szabvány szerint titkosított levél" + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Signature" +msgstr "S/MIME digitális aláírás" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "Sorozatszám" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "Állam vagy tartomány" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Utcanév" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Családnév" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Telefonszám" + +#: lib/Horde/Crypt/Pgp.php:1161 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Különálló PGP aláírási blokk szükséges a digitálisan aláírt üzenet " +"hitelességének ellenőrzéséhez." + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Az openssl modul szükséges a Horde_Crypt_smime osztály használatához." + +#: lib/Horde/Crypt/Pgp.php:448 lib/Horde/Crypt/Pgp.php:449 +#: lib/Horde/Crypt/Pgp.php:450 +msgid "Unknown" +msgstr "Ismeretlen" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "Érvényesség" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "Az ellenőrzés sikertelen - ismeretlen hiba történt." + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "Az ellenőrzés sikertelen - lehet, hogy a levél megváltozott." + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Verzió" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 alapvető korlátozások" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 kiterjesztett kulcshasználat" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 tulajdonos alternatív elnevezése" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 tulajdonos kulcsazonosító" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "X509v3 kiterjesztések" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "A programnak ez a része még nincs megvalósítva." Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/id/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/id/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/id/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/id/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/id/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/id/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,436 @@ +# Indonesian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "Comment" +msgstr "Command" + +#: lib/Horde/Crypt/Smime.php:475 +#, fuzzy +msgid "Common Name" +msgstr "Nama Anda" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Tidak dapat terhubung ke server ldap" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +#, fuzzy +msgid "Could not obtain public key from the keyserver." +msgstr "Tidak dapat terikat dengan server ldap" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "Surat" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Alamat Email" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +#, fuzzy +msgid "Key Creation" +msgstr "Pencipta Objek" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Lokasi" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +#, fuzzy +msgid "Name" +msgstr "Nama Lengkap" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Tidak pernah" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Tidak ada" + +#: lib/Horde/Crypt/Smime.php:549 +#, fuzzy +msgid "Not After" +msgstr "Belum diatur" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "Mengatur" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Sandi lama tidak benar." + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +#, fuzzy +msgid "Serial Number" +msgstr "Angka Desimal" + +#: lib/Horde/Crypt/Smime.php:622 +#, fuzzy +msgid "Signature" +msgstr "Daftar Bacaan" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "nama" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +#, fuzzy +msgid "Validity" +msgstr "Kelembaban" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +#, fuzzy +msgid "Version" +msgstr "Versi Kontrol" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/is/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/is/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/is/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/is/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/is/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/is/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,447 @@ +# Icelandic translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:475 +#, fuzzy +msgid "Common Name" +msgstr "Fullt nafn þitt:" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "Þú átt 1 nýtt skeyti." + +#: lib/Horde/Crypt/Pgp.php:1201 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "Þú átt 1 nýtt skeyti." + +#: lib/Horde/Crypt/Smime.php:330 +#, fuzzy +msgid "Could not S/MIME encrypt message." +msgstr "Senda skeyti" + +#: lib/Horde/Crypt/Smime.php:391 +#, fuzzy +msgid "Could not S/MIME sign message." +msgstr "Þú átt 1 nýtt skeyti." + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Gat ekki eytt skeytum frá %s: %s" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +#, fuzzy +msgid "Could not determine the recipient's e-mail address." +msgstr "Gat ekki eytt skeytum frá %s: %s" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "Póstmappa" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Netfang" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +#, fuzzy +msgid "Given Name" +msgstr "Skrárnafn" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Skeyti" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +#, fuzzy +msgid "Location" +msgstr "Aðgerð" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +#, fuzzy +msgid "Modulus" +msgstr "Eining" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nafn" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Aldrei" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Engin" + +#: lib/Horde/Crypt/Smime.php:549 +#, fuzzy +msgid "Not After" +msgstr "Ekki uppkast" + +#: lib/Horde/Crypt/Smime.php:548 +#, fuzzy +msgid "Not Before" +msgstr "Ekki uppkast" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "Valkostir notanda" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +#, fuzzy +msgid "PGP Digital Signature" +msgstr "Hafa undirskriftir með daufum lit?" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Lykilorð" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Ný skeyti" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +#, fuzzy +msgid "S/MIME Encrypted Message" +msgstr "Senda skeyti" + +#: lib/Horde/Crypt/Smime.php:611 +#, fuzzy +msgid "Serial Number" +msgstr "desember" + +#: lib/Horde/Crypt/Smime.php:622 +#, fuzzy +msgid "Signature" +msgstr "Undirskrift þín:" + +#: lib/Horde/Crypt/Smime.php:621 +#, fuzzy +msgid "Signature Algorithm" +msgstr "Undirskrift þín:" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "Sendandanetfang" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "Notandanafn" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +#, fuzzy +msgid "Version" +msgstr "Persónulegt" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +#, fuzzy +msgid "not yet implemented" +msgstr "Ekki eytt" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/it/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/it/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/it/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/it/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/it/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/it/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,437 @@ +# Italian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s Fingerprint" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "E' necessaria una frase di cifratura per decifrare il messaggio." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" +"E' necessaria una chiave PGP pubblica per verificare un messaggio firmato." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Sono necessarie una chiave PGP pubblica, una chiave PGP privata e una frase " +"di cifratura per firmare un messaggio." + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "E' necessaria una chiave SMIME pubblica per cifrare un messaggio." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Sono necessarie una chiave S/MIME pubblica, una chiave S/MIME privata, e una " +"frase di cifratura per decifrare un messaggio." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Sono necessarie una chiave S/MIME pubblica, una chiave S/MIME privata, e una " +"frase di cifratura per decifrare un messaggio." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "CRL Punti di Ditribuzione" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Dettagli del Certificato" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Proprietario del Certificato" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Regole del Certificato" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Commento" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "Il tuo nome" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Connessione al keyserver pubblico rifiutata." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Connessione al keyserver pubblico rifiutata. Ragione: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "Impossibile cifrare il messaggio in modalità PGP: " + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "Impossibile inserire la firma PGP nel messaggio: " + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Impossibile cifrare il messaggio in modalita S/MIME." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Impossible inserire la firma S/MIME nel messaggio." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "Impossibile decifrare i dati PGP: " + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Impossibile decifrare dati S/MIME" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Impossibile determinare il destinatario dell'e-mail." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Impossibile ottenere la chiave pubblica per il keyserver." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Paese" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "Posta" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Indirizzo di Posta" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Data di Scadenza" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Esponente" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "Nome inserito" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Algoritmo Hash" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "emittente" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Creazione chiave" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Chiave impronta digitale" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "ID Chiave" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Lunghezza chiave" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Tipo chiave" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Utilizzo chiave" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Chiave già esistente nel server delle chiavi pubblico." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Luogo" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Messaggio verificato con successo ma il certificato della firma non può " +"essere verificato." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "Modulus" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nome" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "Netscape Base URL" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "Netscape CA Revocation URL" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "Netscape CA policy URL" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "Netscape Renewal URL" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "Netscape Revocation URL" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "Nome server SSL Netscape" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Commento certificato Netscape" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Tipo di certificato Netscape" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Mai" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Manca il percorso a OpenSSL binario. OpenSSL binario è necessario per " +"lavorare con dati PKCS 12." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Nessuno" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "Non dopo" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "Non Prima" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"Errore OpenSSL: impossibile estrarre dati dalla porzione S/MIME firmata." + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Organizzazione" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Unità organizzativa" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "Firma Digitale PGP" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "Dati criptati con PGP" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Chiave pubblica PGP" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "Dati firmati/criptati con PGP" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Password errata" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Chiave privata" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Chiave Pubblica" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Algoritmo di chiave pubblica" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "Informazioni chiave pubblica" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Coppia chiave pubblica/privata non generata." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "Chiave Pubblica RSA (%d bit)" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "Ottenuto messaggio di errore:" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "Chiave di Revoca non generata." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "Firma crittografica S/MIME" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "Messaggio criptato S/MIME" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Numero Seriale" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Firma" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "Algoritmo di cifratura" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Stato o provincia" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Indirizzo" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Cognome" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Numero di telefono" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Il supporto alla cifratura PGP è richiesto per verificare il messaggio " +"firmato." + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Il modulo openssl è necessario per la classe Horde_Crypt_smime::" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "Impossibile estrarre i dettagli del certificato" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Sconosciuto" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Estensione non supportata" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "Validità" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "Verifica fallita - E' avvenuto un errore sconosciuto." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Verifica fallita - Questo messaggio può essere alterato" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Versione" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 Basic Constraints" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 Extended Key Usage" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Subject Alternative Name" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Subject Key Identifier" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "X509v3 extensions" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "non ancora implementato" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ja/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ja/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ja/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ja/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ja/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ja/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,369 @@ +# Japanese translation for Horde. +# Copyright 2004-2013 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde package. +# Hiromi Kimura +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-07-16 21:24+0200\n" +"PO-Revision-Date: 2013-07-17 22:21+0900\n" +"Last-Translator: Hiromi Kimura \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 1.5.4\n" + +#: lib/Horde/Crypt/Pgp.php:1275 +msgid "A passphrase is required to decrypt a message." +msgstr "メッセージを復号するためにパスフレーズが必要です。" + +#: lib/Horde/Crypt/Pgp.php:1346 +msgid "A public PGP key is required to verify a signed message." +msgstr "PGP公開鍵が署名されたメッセージの検証に必要です。" + +#: lib/Horde/Crypt/Pgp.php:1206 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "PGP公開鍵、PGP秘密鍵およびパスフレーズがメッセージの署名に必要です。" + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "S/MIME公開鍵がメッセージの暗号化に必要です。" + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"S/MIME公開鍵、S/MIME秘密鍵およびパスフレーズが暗号化メッセージの復号に必要で" +"す。" + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"S/MIME公開鍵、S/MIME秘密鍵およびパスフレーズがメッセージの署名に必要です。" + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "CRL 配布ポイント" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "証明書の詳細" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "証明書の所有者" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "証明書ポリシー" + +#: lib/Horde/Crypt/Pgp.php:448 +msgid "Comment" +msgstr "コメント" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "一般名" + +#: lib/Horde/Crypt/Pgp.php:980 +msgid "Connection refused to the public keyserver." +msgstr "公開鍵サーバへの接続が拒否されました。" + +#: lib/Horde/Crypt/Pgp.php:991 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "公開鍵サーバへの接続が拒否されました。理由:%s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1174 +msgid "Could not PGP encrypt message: " +msgstr "メッセージの PGP 暗号化ができませんでした:" + +#: lib/Horde/Crypt/Pgp.php:1243 +msgid "Could not PGP sign message: " +msgstr "メッセージの PGP 署名ができませんでした:" + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "メッセージの S/MIME 暗号化ができませんでした。" + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "メッセージの S/MIME 署名ができませんでした。" + +#: lib/Horde/Crypt/Pgp.php:1314 +msgid "Could not decrypt PGP data: " +msgstr "PGP データの復号化ができませんでした:" + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "S/MIME データの復号化ができませんでした。" + +#: lib/Horde/Crypt/Pgp.php:673 +msgid "Could not determine the recipient's e-mail address." +msgstr "受信者の電子メールアドレスが確定できませんでした。" + +#: lib/Horde/Crypt/Pgp.php:774 lib/Horde/Crypt/Pgp.php:888 +msgid "Could not obtain public key from the keyserver." +msgstr "公開鍵を鍵サーバから取得できませんでした。" + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "国" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "説明" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "E-Mail" +msgstr "電子メール" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "電子メールアドレス" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "S/MIME 証明書の解析エラー:%s" + +#: lib/Horde/Crypt/Pgp.php:1623 lib/Horde/Crypt/Pgp.php:1631 +msgid "Error while talking to pgp binary." +msgstr "PGP プログラムとの通信中にエラーが起きました。" + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "SMIME プログラムとの通信中にエラーが起きました。" + +#: lib/Horde/Crypt/Pgp.php:446 +msgid "Expiration Date" +msgstr "有効期限" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "姓" + +#: lib/Horde/Crypt/Pgp.php:450 +msgid "Hash-Algorithm" +msgstr "ハッシュアルゴリズム" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "発行者" + +#: lib/Horde/Crypt/Pgp.php:445 +msgid "Key Creation" +msgstr "鍵作成日" + +#: lib/Horde/Crypt/Pgp.php:452 +msgid "Key Fingerprint" +msgstr "鍵指紋" + +#: lib/Horde/Crypt/Pgp.php:451 +msgid "Key ID" +msgstr "鍵 ID" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Key Length" +msgstr "鍵長" + +#: lib/Horde/Crypt/Pgp.php:444 +msgid "Key Type" +msgstr "鍵種" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "鍵の使用" + +#: lib/Horde/Crypt/Pgp.php:797 +msgid "Key already exists on the public keyserver." +msgstr "電子鍵がすでに公衆鍵サーバに存在します。" + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "場所" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "メッセージは検証できましたが、署名者の証明書は検証できませんでした。" + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "メッセージは正常に検証されました。" + +#: lib/Horde/Crypt/Pgp.php:443 +msgid "Name" +msgstr "名前" + +#: lib/Horde/Crypt/Pgp.php:475 +msgid "Never" +msgstr "なし" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"OpenSSL プログラムのパスが指定されていません。OpenSSL は PKCS 12 のデータを扱" +"うのに必要です。" + +#: lib/Horde/Crypt/Pgp.php:477 lib/Horde/Crypt/Pgp.php:478 +msgid "None" +msgstr "なし" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "これより前" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "これより後" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"OpenSSL エラー:S/MIME 署名されたパートからデータを取り出せませんでした。" + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "組織" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "部署" + +#: lib/Horde/Crypt/Pgp.php:1445 +msgid "PGP Digital Signature" +msgstr "PGP 電子署名" + +#: lib/Horde/Crypt/Pgp.php:1489 +msgid "PGP Encrypted Data" +msgstr "PGP 暗号文" + +#: lib/Horde/Crypt/Pgp.php:1550 +msgid "PGP Public Key" +msgstr "PGP 公開鍵" + +#: lib/Horde/Crypt/Pgp.php:1532 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP 署名済/暗号化データ" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "パスワードが正しくありません" + +#: lib/Horde/Crypt/Pgp.php:473 +msgid "Private Key" +msgstr "秘密鍵" + +#: lib/Horde/Crypt/Pgp.php:473 +msgid "Public Key" +msgstr "公開鍵" + +#: lib/Horde/Crypt/Pgp.php:243 +msgid "Public/Private keypair not generated successfully." +msgstr "公衆鍵/秘密鍵が生成できませんでした。" + +#: lib/Horde/Crypt/Pgp.php:245 +msgid "Returned error message:" +msgstr "返ってきたエラーメッセージ:" + +#: lib/Horde/Crypt/Pgp.php:1685 +msgid "Revocation key not generated successfully." +msgstr "失効鍵は生成できませんでした。" + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME 暗号文" + +#: lib/Horde/Crypt/Smime.php:204 +#, fuzzy +msgid "S/MIME Signature" +msgstr "S/MIME 暗号署名" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "通し番号" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "州または県" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "住所番地" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "姓" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "電話番号" + +#: lib/Horde/Crypt/Pgp.php:1350 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "電子署名されたメッセージを検証するには、PGP 署名が必要です。" + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Horde_Crypt_smime::クラスには openssl モジュールが必要です。" + +#: lib/Horde/Crypt/Pgp.php:479 lib/Horde/Crypt/Pgp.php:480 +#: lib/Horde/Crypt/Pgp.php:481 +msgid "Unknown" +msgstr "不明" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "有効性" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "検証失敗 - 予期しないエラーが発生しました。" + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "検証失敗 - このメッセージは改竄されているようです。" + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "バージョン" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 基本制限" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 鍵使用法" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 主体者の別名" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 主体者の鍵識別子" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "X509v3 拡張機能" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "まだ実装されていません" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/km/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/km/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/km/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/km/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/km/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/km/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,432 @@ +# Khmer translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "សេចក្តី​​អធិប្បាយ" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "ឈ្មោះ​ធម្មតា" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "ប្រទេស" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "អ៊ីមែល" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "អាសយដ្ឋាន​អ៊ីមែល" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "អ៊ិចស្បូណង់សែល" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "នាមខ្លួន" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "អ្នក​ចេញ" + +#: lib/Horde/Crypt/Pgp.php:424 +#, fuzzy +msgid "Key Creation" +msgstr "ចំណងជើង" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "ប្រវែង​កូនសោ" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "ប្រភេទ​គ្រាប់​ចុច" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "សារ" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "ទីតាំង" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "ឈ្មោះ" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "កុំ" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "គ្មាន" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "ការ​គ្រប់​គ្រង" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +#, fuzzy +msgid "PGP Digital Signature" +msgstr "ហត្ថលេខា" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +#, fuzzy +msgid "PGP Public Key" +msgstr "កូនសោ​សាធារណៈ" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "ពាក្យ​សម្ងាត់" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "កូនសោ​សាធារណៈ" + +#: lib/Horde/Crypt/Smime.php:554 +#, fuzzy +msgid "Public Key Algorithm" +msgstr "កូនសោ​សាធារណៈ" + +#: lib/Horde/Crypt/Smime.php:553 +#, fuzzy +msgid "Public Key Info" +msgstr "កូនសោ​សាធារណៈ" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, fuzzy, php-format +msgid "RSA Public Key (%d bit)" +msgstr "កូនសោ​សាធារណៈ" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "លេខ​សម្គាល់" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "ហត្ថលេខា" + +#: lib/Horde/Crypt/Smime.php:621 +#, fuzzy +msgid "Signature Algorithm" +msgstr "ហត្ថលេខា" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "អាសយដ្ឋាន​ផ្ទះ" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "ស៊ូរីណាមី" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "លេខ​ទូរស័ព្ទ" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "មិន​ស្គាល់" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "សុពលភាព" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "កំណែ" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ko/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ko/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ko/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ko/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ko/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ko/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,369 @@ +# Korean translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +# Deokgon Kim , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2014-03-13 11:19+0900\n" +"PO-Revision-Date: 2014-03-13 13:00+0200\n" +"Last-Translator: Deokgon Kim \n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: lib/Horde/Crypt/Pgp.php:1086 +msgid "A passphrase is required to decrypt a message." +msgstr "비밀번호를 입력하여야 복호화할 수 있습니다." + +#: lib/Horde/Crypt/Pgp.php:1157 +msgid "A public PGP key is required to verify a signed message." +msgstr "PGP 공개키를 가지고 있어야 검증할 수 있습니다." + +#: lib/Horde/Crypt/Pgp.php:1017 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "PGP서명을 하기 위해서는 PGP 공개키, 개인키, 비밀번호가 있어야합니다." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "S/MIME 공개 인증서가 있어야 암호화할 수 있습니다." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "S/MIME 공개키, 개인키, 비밀번호가 있어야 복호화할 수 있습니다." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "S/MIME 공개키, 개인키, 비밀번호가 있어야 전자서명할 수 있습니다." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "인증서폐기목록(CRL) 게시위치" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "인증서 정보" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "인증서 소유자" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "인증서 정책" + +#: lib/Horde/Crypt/Pgp.php:417 +msgid "Comment" +msgstr "비고" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "이름(CN)" + +#: lib/Horde/Crypt/Pgp.php:985 +msgid "Could not PGP encrypt message: " +msgstr "PGP 암호화를 실패했습니다." + +#: lib/Horde/Crypt/Pgp.php:1054 +msgid "Could not PGP sign message: " +msgstr "PGP 전자서명을 실패했습니다." + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "S/MIME 암호화를 실패했습니다." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "S/MIME 전자서명을 실패했습니다." + +#: lib/Horde/Crypt/Pgp.php:1125 +msgid "Could not decrypt PGP data: " +msgstr "PGP 복호화를 실패했습니다." + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "S/MIME 복호화를 실패했습니다." + +#: lib/Horde/Crypt/Pgp.php:644 +msgid "Could not determine the recipient's e-mail address." +msgstr "수신자의 이메일 주소를 확인할 수 없습니다." + +#: lib/Horde/Crypt/Pgp/Keyserver.php:101 lib/Horde/Crypt/Pgp/Keyserver.php:219 +msgid "Could not obtain public key from the keyserver." +msgstr "키서버에서 공개키를 받지 못했습니다." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "국가(C)" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "설명" + +#: lib/Horde/Crypt/Pgp.php:418 +msgid "E-Mail" +msgstr "이메일" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "이메일 주소(E)" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "S/MIME 인증서를 분석하지 못했습니다: %s" + +#: lib/Horde/Crypt/Pgp.php:1453 lib/Horde/Crypt/Pgp.php:1461 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:415 +msgid "Expiration Date" +msgstr "만료날짜" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "이름" + +#: lib/Horde/Crypt/Pgp.php:419 +msgid "Hash-Algorithm" +msgstr "해시알고리즘:" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "인증기관" + +#: lib/Horde/Crypt/Pgp.php:414 +#, fuzzy +msgid "Key Creation" +msgstr "%s 유지관리 작업 - 확인" + +#: lib/Horde/Crypt/Pgp.php:421 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:420 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:416 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:413 +#, fuzzy +msgid "Key Type" +msgstr "파일 유형" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "키 사용" + +#: lib/Horde/Crypt/Pgp/Keyserver.php:137 +#, fuzzy +msgid "Key already exists on the public keyserver." +msgstr "ftp 서버 연결 오류." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "위치" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"전자서명이 검증되었습니다. 하지만 서명자 인증서를 검증하지 못하였습니다." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "전자서명과 서명자인증서를 정상적으로 검증하였습니다." + +#: lib/Horde/Crypt/Pgp.php:412 +msgid "Name" +msgstr "이름" + +#: lib/Horde/Crypt/Pgp.php:444 +msgid "Never" +msgstr "사용안함" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:446 lib/Horde/Crypt/Pgp.php:447 +msgid "None" +msgstr "선택하지 않음" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "종료" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "시작" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "단체(O)" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "소속부서(OU)" + +#: lib/Horde/Crypt/Pgp.php:1275 +#, fuzzy +msgid "PGP Digital Signature" +msgstr "서명:" + +#: lib/Horde/Crypt/Pgp.php:1319 +#, fuzzy +msgid "PGP Encrypted Data" +msgstr "편지로 가기" + +#: lib/Horde/Crypt/Pgp.php:1380 +#, fuzzy +msgid "PGP Public Key" +msgstr "전체 이름:" + +#: lib/Horde/Crypt/Pgp.php:1362 +#, fuzzy +msgid "PGP Signed/Encrypted Data" +msgstr "편지 전송" + +#: lib/Horde/Crypt/Smime.php:726 +#, fuzzy +msgid "Password incorrect" +msgstr "암호" + +#: lib/Horde/Crypt/Pgp.php:442 +#, fuzzy +msgid "Private Key" +msgstr "전체 이름:" + +#: lib/Horde/Crypt/Pgp.php:442 +#, fuzzy +msgid "Public Key" +msgstr "전체 이름:" + +#: lib/Horde/Crypt/Pgp.php:212 +#, fuzzy +msgid "Public/Private keypair not generated successfully." +msgstr "편지가 성공적으로 전달되었습니다." + +#: lib/Horde/Crypt/Pgp.php:214 +#, fuzzy +msgid "Returned error message:" +msgstr "새 메일" + +#: lib/Horde/Crypt/Smime.php:238 +#, fuzzy +msgid "S/MIME Encrypted Message" +msgstr "메시지 전송" + +#: lib/Horde/Crypt/Smime.php:204 +#, fuzzy +msgid "S/MIME Signature" +msgstr "S/MIME 전자서명" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "일련번호" + +#: lib/Horde/Crypt/Smime.php:452 +#, fuzzy +msgid "State or Province" +msgstr "시/도" + +#: lib/Horde/Crypt/Smime.php:454 +#, fuzzy +msgid "Street Address" +msgstr "직장 주소" + +#: lib/Horde/Crypt/Smime.php:456 +#, fuzzy +msgid "Surname" +msgstr "이름" + +#: lib/Horde/Crypt/Smime.php:455 +#, fuzzy +msgid "Telephone Number" +msgstr "숫자" + +#: lib/Horde/Crypt/Pgp.php:1161 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:448 lib/Horde/Crypt/Pgp.php:449 +#: lib/Horde/Crypt/Pgp.php:450 +msgid "Unknown" +msgstr "알수 없슴" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "유효기간" + +#: lib/Horde/Crypt/Smime.php:138 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "치명적인 오류 발생:" + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "버전" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 기본 제약사항" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 인증서 주체 대체이름" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 인증서 주체키 식별자" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "X509v3 인증서 확장정보" + +#: lib/Horde/Crypt/Smime.php:605 +#, fuzzy +msgid "not yet implemented" +msgstr "삭제되지 않은 메일" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/lt/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/lt/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/lt/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/lt/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/lt/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/lt/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,437 @@ +# Lithuanian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Vilius Šumskas , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2011-05-28 01:09+0300\n" +"PO-Revision-Date: 2011-06-27 22:57+0300\n" +"Last-Translator: Vilius Šumskas \n" +"Language-Team: Lithuanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#: lib/Horde/Crypt/Smime.php:621 +#, php-format +msgid "%s Fingerprint" +msgstr "%s antspaudas" + +#: lib/Horde/Crypt/Pgp.php:1237 +msgid "A passphrase is required to decrypt a message." +msgstr "Norėdami atkoduoti laišką privalote žinoti slaptąją frazę." + +#: lib/Horde/Crypt/Pgp.php:1304 +msgid "A public PGP key is required to verify a signed message." +msgstr "" +"Norėdami patikrinti pasirašytą laišką privalote turėti viešąjį PGP raktą." + +#: lib/Horde/Crypt/Pgp.php:1168 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Norėdami pasirašyti laišką privalote turėti viešąjį ir slaptąjį PGP raktus, " +"bei žinoti slaptąją frazę." + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Norėdami užkoduoti laišką privalote turėti viešąjį S/MIME raktą." + +#: lib/Horde/Crypt/Smime.php:429 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Norėdami atkoduoti laišką privalote turėti viešąjį ir slaptąjį S/MIME " +"raktus, bei žinoti slaptąją frazę." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Norėdami pasirašyti laišką privalote turėti viešąjį ir slaptąjį S/MIME " +"raktus, bei žinoti slaptąją frazę." + +#: lib/Horde/Crypt/Smime.php:513 +msgid "CRL Distribution Points" +msgstr "CRL paskirstymo punktai" + +#: lib/Horde/Crypt/Smime.php:616 +msgid "Certificate Details" +msgstr "Sertifikato detalės" + +#: lib/Horde/Crypt/Smime.php:527 +msgid "Certificate Owner" +msgstr "Sertifikato savininkas" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Certificate Policies" +msgstr "Sertifikato teisės" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Komentaras" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Common Name" +msgstr "Vardas/pavardė" + +#: lib/Horde/Crypt/Pgp.php:943 +msgid "Connection refused to the public keyserver." +msgstr "Prisijungti prie viešųjų raktų serverio nepavyko." + +#: lib/Horde/Crypt/Pgp.php:954 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Prisijungti prie viešųjų raktų serverio nepavyko, nes: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1136 +msgid "Could not PGP encrypt message: " +msgstr "Nepavyko užkoduoti PGP laiško: " + +#: lib/Horde/Crypt/Pgp.php:1205 +msgid "Could not PGP sign message: " +msgstr "Nepavyko pasirašyti PGP laiško: " + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Nepavyko užkoduoti S/MIME laiško." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Nepavyko pasirašyti S/MIME laiško." + +#: lib/Horde/Crypt/Pgp.php:1273 +msgid "Could not decrypt PGP data: " +msgstr "Nepavyko atkoduoti PGP duomenų: " + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Could not decrypt S/MIME data." +msgstr "Nepavyko atkoduoti S/MIME duomenų." + +#: lib/Horde/Crypt/Pgp.php:657 +msgid "Could not determine the recipient's e-mail address." +msgstr "Nepavyko nustatyti gavėjo el. pašto adreso." + +#: lib/Horde/Crypt/Pgp.php:758 lib/Horde/Crypt/Pgp.php:851 +msgid "Could not obtain public key from the keyserver." +msgstr "Nepavyko gauti viešojo rakto iš raktų serverio." + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Country" +msgstr "Valstybė" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "El. pašto adresas" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Email Address" +msgstr "El. pašto adresas" + +#: lib/Horde/Crypt/Pgp.php:1579 lib/Horde/Crypt/Pgp.php:1587 +msgid "Error while talking to pgp binary." +msgstr "Klaida paleidžiant pgp programa." + +#: lib/Horde/Crypt/Smime.php:1245 lib/Horde/Crypt/Smime.php:1263 +#: lib/Horde/Crypt/Smime.php:1278 +msgid "Error while talking to smime binary." +msgstr "Klaida paleidžiant smime programą." + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Galiojimo data" + +#: lib/Horde/Crypt/Smime.php:593 +msgid "Exponent" +msgstr "Eksponentė" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Given Name" +msgstr "Vardas" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hash-Algoritmas" + +#: lib/Horde/Crypt/Smime.php:541 +msgid "Issuer" +msgstr "Išdavėjas" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Rakto kūrimas" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Rakto atspaudas" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "Rakto ID" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Rakto ilgis" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Rakto tipas" + +#: lib/Horde/Crypt/Smime.php:514 +msgid "Key Usage" +msgstr "Rakto panaudojimas" + +#: lib/Horde/Crypt/Pgp.php:781 +msgid "Key already exists on the public keyserver." +msgstr "Raktas jau yra viešųjų raktų serveryje." + +#: lib/Horde/Crypt/Smime.php:487 +msgid "Location" +msgstr "Vieta" + +#: lib/Horde/Crypt/Smime.php:192 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Laiškas pavirtintas, tačiau nepatvirtintas pasirašiusio asmens sertifikatas." + +#: lib/Horde/Crypt/Smime.php:180 +msgid "Message verified successfully." +msgstr "Laiškas patvirtintas sėkmingai." + +#: lib/Horde/Crypt/Smime.php:590 +msgid "Modulus" +msgstr "Modulis" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Vardas" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Netscape Base URL" +msgstr "Netscpape bazinis URL" + +#: lib/Horde/Crypt/Smime.php:499 +msgid "Netscape CA Revocation URL" +msgstr "Netscpae serifikato atšaukimo URL" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "Netscape CA policy URL" +msgstr "Netscpae sertifikato teisių URL" + +#: lib/Horde/Crypt/Smime.php:500 +msgid "Netscape Renewal URL" +msgstr "Netscape atnaujinomo URL" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Netscape Revocation URL" +msgstr "Netscape atšaukimo URL" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "Netscape SSL server name" +msgstr "Netscape SSL serverio vardas" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "Netscape certificate comment" +msgstr "Netscape sertifikato aprašymas" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate type" +msgstr "Netscape sertifikato tipas" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Niekada" + +#: lib/Horde/Crypt/Smime.php:1211 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Neįvestas kelias iki OpenSSL pagrindinių failų. OpenSSL reikalinga darbui su " +"PKCS 12 duomenimis." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Nenurodyta" + +#: lib/Horde/Crypt/Smime.php:556 +msgid "Not After" +msgstr "Ne po to" + +#: lib/Horde/Crypt/Smime.php:555 +msgid "Not Before" +msgstr "Ne prieš tai" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OpenSSL klaida: nepavyko gauti duomenų iš pasirašytos S/MIME dalies." + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Organisation" +msgstr "Organizacija" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Organisational Unit" +msgstr "Padalinys" + +#: lib/Horde/Crypt/Pgp.php:1401 +msgid "PGP Digital Signature" +msgstr "PGP skaitmeninis parašas" + +#: lib/Horde/Crypt/Pgp.php:1445 +msgid "PGP Encrypted Data" +msgstr "PGP užkoduota informacija" + +#: lib/Horde/Crypt/Pgp.php:1506 +msgid "PGP Public Key" +msgstr "PGP viešasis raktas" + +#: lib/Horde/Crypt/Pgp.php:1488 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP pasirašyti/užkoduoti duomenys" + +#: lib/Horde/Crypt/Smime.php:1250 +msgid "Password incorrect" +msgstr "Slaptažodis neteisingas" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Slaptasis raktas" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Viešasis raktas" + +#: lib/Horde/Crypt/Smime.php:561 +msgid "Public Key Algorithm" +msgstr "Viešojo rakto algoritmas" + +#: lib/Horde/Crypt/Smime.php:560 +msgid "Public Key Info" +msgstr "Informacija apie viešąjį raktą" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Viešojo/slaptojo raktų pora nesugeneruota." + +#: lib/Horde/Crypt/Smime.php:579 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA viešasis raktas (%d bitai)" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "Klaidos pranešimas:" + +#: lib/Horde/Crypt/Pgp.php:1639 +msgid "Revocation key not generated successfully." +msgstr "Atšaukimo raktas nesugeneruotas." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME parašas" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME užkoduotas laiškas" + +#: lib/Horde/Crypt/Smime.php:618 +msgid "Serial Number" +msgstr "Serijos numeris" + +#: lib/Horde/Crypt/Smime.php:625 +msgid "Signature" +msgstr "Parašas" + +#: lib/Horde/Crypt/Smime.php:624 +msgid "Signature Algorithm" +msgstr "Parašo algoritmas" + +#: lib/Horde/Crypt/Smime.php:486 +msgid "State or Province" +msgstr "Rajonas arba provincija" + +#: lib/Horde/Crypt/Smime.php:488 +msgid "Street Address" +msgstr "Gatvės adresas" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Surname" +msgstr "Pavardė" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Telephone Number" +msgstr "Telefono numeris" + +#: lib/Horde/Crypt/Pgp.php:1308 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "Norėdami patikrinti laišką privalote turėti atskirą PGP parašo bloką." + +#: lib/Horde/Crypt/Smime.php:1140 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Horde_Crypt_Smime:: klasei reikalingas openssl modulis." + +#: lib/Horde/Crypt/Smime.php:519 +msgid "Unable to extract certificate details" +msgstr "Nepavyko gauti sertifikato aprašymo" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Nežinomas" + +#: lib/Horde/Crypt/Smime.php:603 lib/Horde/Crypt/Smime.php:847 +#: lib/Horde/Crypt/Smime.php:853 +msgid "Unsupported Extension" +msgstr "Plėtinys nepalaikomas" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Validity" +msgstr "Galiojimas" + +#: lib/Horde/Crypt/Smime.php:187 +msgid "Verification failed - an unknown error has occurred." +msgstr "Patvirtinimas nebaigtas - įvyko nežinoma klaida." + +#: lib/Horde/Crypt/Smime.php:189 +msgid "Verification failed - this message may have been tampered with." +msgstr "Patvirtinimas nebaigtas - šis laiškas sugadintas." + +#: lib/Horde/Crypt/Smime.php:617 +msgid "Version" +msgstr "Versija" + +#: lib/Horde/Crypt/Smime.php:509 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 pagrindiniai nustatymai" + +#: lib/Horde/Crypt/Smime.php:508 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 išplėsto rakto panaudojimas" + +#: lib/Horde/Crypt/Smime.php:510 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 alternatyvus vardas" + +#: lib/Horde/Crypt/Smime.php:511 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 rakto identifikatorius" + +#: lib/Horde/Crypt/Smime.php:599 +msgid "X509v3 extensions" +msgstr "X509v3 moduliai" + +#: lib/Horde/Crypt/Smime.php:1129 +msgid "not yet implemented" +msgstr "dar nerealizuota" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/lv/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/lv/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/lv/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/lv/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/lv/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/lv/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,445 @@ +# Latvian translations for Horde_Crypt package. +# Copyright 2011-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt package. +# Automatically generated, 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2011-03-15 13:27+0100\n" +"PO-Revision-Date: 2011-10-16 15:21+0300\n" +"Last-Translator: Jānis Eisaks \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" +"X-Poedit-Language: Latvian\n" +"X-Poedit-Country: LATVIA\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: lib/Horde/Crypt/Smime.php:621 +#, php-format +msgid "%s Fingerprint" +msgstr "%s Pirkstu nospiedums" + +#: lib/Horde/Crypt/Pgp.php:1237 +msgid "A passphrase is required to decrypt a message." +msgstr "Vēstules atšifrēšanai nepieciešama parole." + +#: lib/Horde/Crypt/Pgp.php:1304 +msgid "A public PGP key is required to verify a signed message." +msgstr "Vēstules verificēšanai nepieciešama publiskā PGP atslēga." + +#: lib/Horde/Crypt/Pgp.php:1168 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Vēstules parakstīšanai nepieciešamas publiskā un privātā PGP atslēgas un " +"parole." + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Vēstules šifrēšanai nepieciešama publiskā S/MIME atslēga." + +#: lib/Horde/Crypt/Smime.php:429 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Vēstules atšifrēšanai nepieciešamas publiskā un privātā S/MIME atslēgas un " +"parole." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Vēstules parakstīšanai nepieciešamas publiskā un privātā S/MIME atslēgas un " +"parole." + +#: lib/Horde/Crypt/Smime.php:513 +msgid "CRL Distribution Points" +msgstr "CLR apmaiņas punkti" + +#: lib/Horde/Crypt/Smime.php:616 +msgid "Certificate Details" +msgstr "Sertifikāta detaļas" + +#: lib/Horde/Crypt/Smime.php:527 +msgid "Certificate Owner" +msgstr "Sertifikāta īpašnieks" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Certificate Policies" +msgstr "Sertifikāta politikas" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Komentārs" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Common Name" +msgstr "Kopējais nosaukums" + +#: lib/Horde/Crypt/Pgp.php:943 +msgid "Connection refused to the public keyserver." +msgstr "Pieslēgums publiskajam atslēgu serverim atteikts." + +#: lib/Horde/Crypt/Pgp.php:954 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Pieslēgums publiskajam atslēgu serverim atteikts. Iemesls: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1136 +msgid "Could not PGP encrypt message: " +msgstr "Nav iespējams šifrēt vēstuli ar PGP:" + +#: lib/Horde/Crypt/Pgp.php:1205 +msgid "Could not PGP sign message: " +msgstr "Nav iespējams parakstīt vēstuli ar PGP:" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Nav iespējams šifrēt vēstuli ar S/MIME." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Nav iespējams parakstīt vēstuli ar S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1273 +msgid "Could not decrypt PGP data: " +msgstr "Nav iespējams atšifrēt PGP datus:" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Could not decrypt S/MIME data." +msgstr "Nav iespējams atšifrēt S/MIME datus." + +#: lib/Horde/Crypt/Pgp.php:657 +msgid "Could not determine the recipient's e-mail address." +msgstr "Nevar noteikt saņēmēja e-pasta adresi." + +#: lib/Horde/Crypt/Pgp.php:758 lib/Horde/Crypt/Pgp.php:851 +msgid "Could not obtain public key from the keyserver." +msgstr "Nav iespējams saņemt publisko atslēgu no atslēgu servera." + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Country" +msgstr "Valsts" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "E-Pasts" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Email Address" +msgstr "E-pasta adrese" + +#: lib/Horde/Crypt/Pgp.php:1579 lib/Horde/Crypt/Pgp.php:1587 +msgid "Error while talking to pgp binary." +msgstr "PGP programmatūras kļūda." + +#: lib/Horde/Crypt/Smime.php:1245 lib/Horde/Crypt/Smime.php:1263 +#: lib/Horde/Crypt/Smime.php:1278 +msgid "Error while talking to smime binary." +msgstr "SMIME programmatūras kļūda." + +# #-#-#-#-# nag.po (Nag 2.1.4) #-#-#-#-# +# +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Beigu datums" + +#: lib/Horde/Crypt/Smime.php:593 +msgid "Exponent" +msgstr "Eksponente" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Given Name" +msgstr "Vārds" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hash-algoritms" + +#: lib/Horde/Crypt/Smime.php:541 +msgid "Issuer" +msgstr "Izsniedzējs" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Atslēgas radīšana" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Atslēgas pirkstu nospiedums" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "Atslēgas ID" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Atslēgas garums" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Atslēgas tips" + +#: lib/Horde/Crypt/Smime.php:514 +msgid "Key Usage" +msgstr "Atslēgas lietošana" + +#: lib/Horde/Crypt/Pgp.php:781 +msgid "Key already exists on the public keyserver." +msgstr "Atslēga jau eksistē uz publiskā atslēgu servera." + +#: lib/Horde/Crypt/Smime.php:487 +msgid "Location" +msgstr "Vieta" + +#: lib/Horde/Crypt/Smime.php:192 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Vēstule veiksmīgi verificēta, taču parakstītāja sertifikāts nav verificējams." + +#: lib/Horde/Crypt/Smime.php:180 +msgid "Message verified successfully." +msgstr "Vēstule veiksmīgi verificēta." + +#: lib/Horde/Crypt/Smime.php:590 +msgid "Modulus" +msgstr "Modulis" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nosaukums" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Netscape Base URL" +msgstr "Netscape bāzes URL" + +#: lib/Horde/Crypt/Smime.php:499 +msgid "Netscape CA Revocation URL" +msgstr "Netscape CA atsaukšanas URL" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "Netscape CA policy URL" +msgstr "Netscape CA politikas URL" + +#: lib/Horde/Crypt/Smime.php:500 +msgid "Netscape Renewal URL" +msgstr "Netscape atjaunošanas URL" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Netscape Revocation URL" +msgstr "Netscape atsaukšanas URL" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "Netscape SSL server name" +msgstr "Netscape SSL servera vārds" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "Netscape certificate comment" +msgstr "Netscape sertifikāta komentārs" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate type" +msgstr "Netscape sertifikāta tips" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Nekad" + +#: lib/Horde/Crypt/Smime.php:1211 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Nav norādīts ceļš līdz OpenSSL programmai. Tā ir nepieciešama darbībām ar " +"PKCS 12 datiem." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Nekas" + +#: lib/Horde/Crypt/Smime.php:556 +msgid "Not After" +msgstr "Ne vēlāk ka" + +#: lib/Horde/Crypt/Smime.php:555 +msgid "Not Before" +msgstr "Ne agrāk kā" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OpenSSL kļūda: nav iespējams ekstraģēt datus no S/MIME daļa." + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Organisation" +msgstr "Organizācija" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Organisational Unit" +msgstr "Organizācija vienība" + +#: lib/Horde/Crypt/Pgp.php:1401 +msgid "PGP Digital Signature" +msgstr "PGP digitālais paraksts" + +#: lib/Horde/Crypt/Pgp.php:1445 +msgid "PGP Encrypted Data" +msgstr "PGP šifrēti dati" + +#: lib/Horde/Crypt/Pgp.php:1506 +msgid "PGP Public Key" +msgstr "PGP publiskā atslēga" + +#: lib/Horde/Crypt/Pgp.php:1488 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP šifrēti/parakstīti dati" + +#: lib/Horde/Crypt/Smime.php:1250 +msgid "Password incorrect" +msgstr "Nepareiza parole" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Privātā atslēga" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Publiskā atslēga" + +#: lib/Horde/Crypt/Smime.php:561 +msgid "Public Key Algorithm" +msgstr "Publiskās atslēgas algoritms" + +#: lib/Horde/Crypt/Smime.php:560 +msgid "Public Key Info" +msgstr "Publiskā atslēgas informācija" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Publiskās/privātās atslēgu pāra ģenerēšana nav izdevusies." + +#: lib/Horde/Crypt/Smime.php:579 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA publiskā atslēga (%d biti)" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "Saņemtais kļūdas paziņojums:" + +#: lib/Horde/Crypt/Pgp.php:1639 +msgid "Revocation key not generated successfully." +msgstr "Atsaukšanas atslēgas ģenerēšana nav izdevusies." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME kriptogrāfiskais paraksts" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME šifrēta vēstule" + +#: lib/Horde/Crypt/Smime.php:618 +msgid "Serial Number" +msgstr "Sērijas numurs" + +#: lib/Horde/Crypt/Smime.php:625 +msgid "Signature" +msgstr "Paraksts" + +#: lib/Horde/Crypt/Smime.php:624 +msgid "Signature Algorithm" +msgstr "Paraksta algoritms" + +#: lib/Horde/Crypt/Smime.php:486 +msgid "State or Province" +msgstr "Valsts vai province" + +#: lib/Horde/Crypt/Smime.php:488 +msgid "Street Address" +msgstr "Iela" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Surname" +msgstr "Uzvārds" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Telephone Number" +msgstr "Tālruņa numurs" + +#: lib/Horde/Crypt/Pgp.php:1308 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Lai verificētu parakstīto vēstuli, ir nepieciešams nodalīts PGP paraksta " +"bloks." + +#: lib/Horde/Crypt/Smime.php:1140 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Horde_Crypt_Smime:: class ir nepieciešams openssl modulis." + +#: lib/Horde/Crypt/Smime.php:519 +msgid "Unable to extract certificate details" +msgstr "Nevar ekstraģēt sertifikāta detaļas" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Nezināms" + +#: lib/Horde/Crypt/Smime.php:603 lib/Horde/Crypt/Smime.php:847 +#: lib/Horde/Crypt/Smime.php:853 +msgid "Unsupported Extension" +msgstr "Neatbalstīts paplašinājums" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Validity" +msgstr "Derīgums" + +#: lib/Horde/Crypt/Smime.php:187 +msgid "Verification failed - an unknown error has occurred." +msgstr "Verifikācija kļūme - nezināma kļūda." + +#: lib/Horde/Crypt/Smime.php:189 +msgid "Verification failed - this message may have been tampered with." +msgstr "" +"Verifikācija neveiksmīga - iespējama ārēja iejaukšanās vēstules tekstā." + +#: lib/Horde/Crypt/Smime.php:617 +msgid "Version" +msgstr "Versija" + +#: lib/Horde/Crypt/Smime.php:509 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 Pamatierobežojumi" + +#: lib/Horde/Crypt/Smime.php:508 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 Extended Key lietojums" + +#: lib/Horde/Crypt/Smime.php:510 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Subject alternatīvais vārds" + +#: lib/Horde/Crypt/Smime.php:511 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Subject Key identifikators" + +#: lib/Horde/Crypt/Smime.php:599 +msgid "X509v3 extensions" +msgstr "X509v3 paplašinājumi" + +#: lib/Horde/Crypt/Smime.php:1129 +msgid "not yet implemented" +msgstr "vēl nav ieviests" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/mk/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/mk/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/mk/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/mk/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/mk/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/mk/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,428 @@ +# Macedonian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "Пошта" + +#: lib/Horde/Crypt/Smime.php:474 +#, fuzzy +msgid "Email Address" +msgstr "Ваша Email адреса:" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Порака" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Име" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "Администрација" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Лозинка" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "Домашна адреса:" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "Корисничко име" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nb/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nb/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nb/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nb/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nb/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nb/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,445 @@ +# Norwegian Bokmal translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s fingeravtrykk" + +#: lib/Horde/Crypt/Pgp.php:1240 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "En offentlig PGP-nøkkel er påkrevd for å kryptere meldingen." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" +"En offentlig PGP-nøkkel er påkrevd for å verifisere en signert melding." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"En offentlig PGP-nøkkel, privat PGP-nøkkel og passord er påkrevd for å " +"signere en melding." + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "En offentlig S/MIME-nøkkel er påkrevd for å kryptere en melding." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"En offentlig S/MIME-nøkkel, privat S/MIME-nøkkel, og passord er påkrevd for " +"å dekryptere en melding." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"En offentlig S/MIME-nøkkel, privat S/MIME-nøkkel, og passord er påkrevd for " +"å signere en melding." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "CRL-distribusjonspunkter" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Detaljer for sertifikatet" + +#: lib/Horde/Crypt/Smime.php:520 +#, fuzzy +msgid "Certificate Owner" +msgstr "Detaljer for sertifikatet" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Rettningslinjer for sertifikatet" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Kommentar" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "Navn" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Koblingen til offentlig nøkkeltjeneren feilet." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Koblingen til offentlig nøkkeltjeneren feilet. Årsak: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "Kunne ikke kryptere melding med PGP" + +#: lib/Horde/Crypt/Pgp.php:1201 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "Kunne ikke signere melding med PGP" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Kunne ikke kryptere meldingen med S/MIME." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Kunne ikke signere meldingen med S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Kunne ikke dekryptere PGP-melding." + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Kunne ikke dekryptere S/MIME melding." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Kunne ikke finne mottakers e-postadresse." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Kunne ikke hente ut offentlig nøkkel fra nøkkeltjeneren." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Land" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "E-post" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "E-postadresse" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Utløpsdato" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Eksponent" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "Gitt navn" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hash-algoritme" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Utgiver" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Nøkkelgenerering" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Nøkkelfingeravtrykk" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Nøkkellengde" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Nøkkeltype" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Nøkkelbruk" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Nøkkel eksisterer allerede på offentlig nøkkeltjeneren." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Lokasjon" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Meldingen ble verifisert, men sertifikatet til den som signerte ble ikke " +"verifisert." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "Modulus" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Navn" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Aldri" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Ingen" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "Ikke etter" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "Ikke før" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Organisasjon" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Organisasjonsenhet" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "PGP digital signatur" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "PGP-krypter melding" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "PGP offentlig nøkkel" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP signert/kryptert data" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Feil passord" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Privat nøkkel" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Offentlig nøkkel" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Offentlig nøkkelalgoritme" + +#: lib/Horde/Crypt/Smime.php:553 +#, fuzzy +msgid "Public Key Info" +msgstr "Offentlig nøkkel" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Offentlig/privat nøkkelpar ble ikke generert." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA offentlig nøkkel (%d bit)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Les meldinger" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "Offentlig/privat nøkkelpar ble ikke generert." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME-kryptert melding" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Serienummer" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Signatur" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "Signaturalgoritme" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Stat eller provins" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Gateadresse" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Etternavn" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Telefonnummer" + +#: lib/Horde/Crypt/Pgp.php:1311 +#, fuzzy +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"En offentlig PGP-nøkkel er påkrevd for å verifisere en signert melding." + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +#, fuzzy +msgid "Unable to extract certificate details" +msgstr "Detaljer for sertifikatet" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Ukjent" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +#, fuzzy +msgid "Validity" +msgstr "Fuktighet" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "En fatal feil har oppstått" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Versjon" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "ikke enda implementert" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nl/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nl/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nl/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nl/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nl/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nl/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,378 @@ +# Dutch translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# +# Arjen de Korte , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2012-10-26 23:07+0200\n" +"PO-Revision-Date: 2012-11-30 09:53+0100\n" +"Last-Translator: Arjen de Korte \n" +"Language-Team: American English \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: en_US\n" +"X-Generator: Lokalize 1.4\n" + +#: lib/Horde/Crypt/Pgp.php:1272 +msgid "A passphrase is required to decrypt a message." +msgstr "Een wachtwoord is nodig om een bericht te ontcijferen." + +#: lib/Horde/Crypt/Pgp.php:1343 +msgid "A public PGP key is required to verify a signed message." +msgstr "" +"Een openbare PGP sleutel is benodigd om een ondertekend bericht te " +"verifieren." + +#: lib/Horde/Crypt/Pgp.php:1203 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Een openbare PGP sleutel, privé PGP sleutel en wachtwoord zijn nodig om een " +"bericht te ondertekenen." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" +"Een openbare S/MIME sleutel is benodigd om een bericht te versleutelen." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Een openbare S/MIME sleutel, privé S/MIME sleutel en wachtwoord zijn nodig " +"om een bericht te ontcijferen." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Een openbare S/MIME sleutel, privé S/MIME sleutel en wachtwoord zijn nodig " +"om een bericht te ondertekenen." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "CRL distributie punten" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "Certificaat gegevens" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "Certificaat eigenaar" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Certificaat richtlijnen" + +#: lib/Horde/Crypt/Pgp.php:436 +msgid "Comment" +msgstr "Opmerking" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Algemene naam" + +#: lib/Horde/Crypt/Pgp.php:978 +msgid "Connection refused to the public keyserver." +msgstr "Verbinding met openbare sleutel server geweigerd." + +#: lib/Horde/Crypt/Pgp.php:989 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Verbinding met openbare sleutel server geweigerd. Reden: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1171 +msgid "Could not PGP encrypt message: " +msgstr "Kon bericht niet versleutelen met PGP." + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "Could not PGP sign message: " +msgstr "Kon bericht niet ondertekenen met PGP." + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "Kon bericht niet versleutelen met S/MIME." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "Kon bericht niet ondertekenen met S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "Could not decrypt PGP data: " +msgstr "Kon PGP gegevens niet ontcijferen:" + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "Kon de S/MIME gegevens niet ontcijferen." + +#: lib/Horde/Crypt/Pgp.php:671 +msgid "Could not determine the recipient's e-mail address." +msgstr "Kon het e-mailadres van de ontvanger niet bepalen." + +#: lib/Horde/Crypt/Pgp.php:772 lib/Horde/Crypt/Pgp.php:886 +msgid "Could not obtain public key from the keyserver." +msgstr "Kon de openbare sleutel niet ophalen van sleutel server." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "Land" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Omschrijving" + +#: lib/Horde/Crypt/Pgp.php:437 +msgid "E-Mail" +msgstr "E-mail" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "E-mailadres" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "" +"Er is een fout opgetreden bij het ontleden van het S/MIME certificaat: %s" + +#: lib/Horde/Crypt/Pgp.php:1620 lib/Horde/Crypt/Pgp.php:1628 +msgid "Error while talking to pgp binary." +msgstr "Er is een fout opgetreden bij het aanroepen van het pgp programma." + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "Er is een fout opgetreden bij het aanroepen van het smime programma." + +#: lib/Horde/Crypt/Pgp.php:434 +msgid "Expiration Date" +msgstr "Vervaldatum" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "Voornaam" + +#: lib/Horde/Crypt/Pgp.php:438 +msgid "Hash-Algorithm" +msgstr "Hash-algorithme" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "UItgever" + +#: lib/Horde/Crypt/Pgp.php:433 +msgid "Key Creation" +msgstr "Sleutel gemaakt op" + +#: lib/Horde/Crypt/Pgp.php:440 +msgid "Key Fingerprint" +msgstr "Sleutel vingerafdruk" + +#: lib/Horde/Crypt/Pgp.php:439 +msgid "Key ID" +msgstr "Sleutel ID" + +#: lib/Horde/Crypt/Pgp.php:435 +msgid "Key Length" +msgstr "Sleutellengte" + +#: lib/Horde/Crypt/Pgp.php:432 +msgid "Key Type" +msgstr "Sleutel type" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "Sleutel gebruik" + +#: lib/Horde/Crypt/Pgp.php:795 +msgid "Key already exists on the public keyserver." +msgstr "Sleutel bestaat al op de openbare sleutel server." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Locatie" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Bericht succesvol geverifieerd maar het certificaat van de ondertekenaar kon " +"niet worden geverifieerd." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "Bericht met succes geverifieerd." + +#: lib/Horde/Crypt/Pgp.php:431 +msgid "Name" +msgstr "Naam" + +#: lib/Horde/Crypt/Pgp.php:463 +msgid "Never" +msgstr "Nooit" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Geen pad naar het OpenSSL programma opgegeven. Het OpenSSL programma is " +"nodig om PKCS 12 gegevens te verwerken." + +#: lib/Horde/Crypt/Pgp.php:465 lib/Horde/Crypt/Pgp.php:466 +msgid "None" +msgstr "Geen" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "Niet na" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "Niet voor" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"OpenSSL fout: kon geen gegevens halen uit het ondertekende S/MIME deel." + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Organisatie" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "Afdeling" + +#: lib/Horde/Crypt/Pgp.php:1442 +msgid "PGP Digital Signature" +msgstr "PGP digitale ondertekening" + +#: lib/Horde/Crypt/Pgp.php:1486 +msgid "PGP Encrypted Data" +msgstr "PGP versleutelde gegevens" + +#: lib/Horde/Crypt/Pgp.php:1547 +msgid "PGP Public Key" +msgstr "Openbare PGP sleutel" + +#: lib/Horde/Crypt/Pgp.php:1529 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP ondertekende/versleutelde gegevens" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Wachtwoord onjuist" + +#: lib/Horde/Crypt/Pgp.php:461 +msgid "Private Key" +msgstr "Privé sleutel" + +#: lib/Horde/Crypt/Pgp.php:461 +msgid "Public Key" +msgstr "Openbare sleutel" + +#: lib/Horde/Crypt/Pgp.php:231 +msgid "Public/Private keypair not generated successfully." +msgstr "Openbaar/privé sleutelpaar niet met succes gegenereerd." + +#: lib/Horde/Crypt/Pgp.php:233 +msgid "Returned error message:" +msgstr "Geretourneerd fout bericht:" + +#: lib/Horde/Crypt/Pgp.php:1680 +msgid "Revocation key not generated successfully." +msgstr "Intrekkings sleutel niet succesvol gemaakt." + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME cryptografische ondertekening" + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME versleuteld bericht" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "Serienummer" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "Staat of provincie" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Straat" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Achternaam" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Telefoonnummer" + +#: lib/Horde/Crypt/Pgp.php:1347 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"De losgekoppelde PGP ondertekening is benodigd om het ondertekende bericht " +"te verifieren." + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "De openssl module is vereist voor de Horde_Crypt_Smime::class." + +#: lib/Horde/Crypt/Pgp.php:467 lib/Horde/Crypt/Pgp.php:468 +#: lib/Horde/Crypt/Pgp.php:469 +msgid "Unknown" +msgstr "Onbekend" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "Geldigheid" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "Verificatie mislukt - er is een onbekende fout opgetreden." + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "Verificatie mislukt - dit bericht is mogelijk niet authentiek." + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Versie" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 elementaire beperkingen" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 uitgebreid sleutelgebruik" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 onderwerp alternatieve naam" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 onderwerp sleutel identificatie" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "X509v3 uitbreidingen" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "niet geïmplementeerd" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nn/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nn/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nn/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nn/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/nn/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/nn/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,439 @@ +# Norwegian Nynorsk translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Oppkopling mot offentleg nøkkeltenar nekta." + +#: lib/Horde/Crypt/Pgp.php:950 +#, fuzzy, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Oppkopling mot offentleg nøkkeltenar nekta." + +#: lib/Horde/Crypt/Pgp.php:1132 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "Kunne ikkje PGP-kode melding." + +#: lib/Horde/Crypt/Pgp.php:1201 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "Kunne ikkje PGP-signere melding." + +#: lib/Horde/Crypt/Smime.php:330 +#, fuzzy +msgid "Could not S/MIME encrypt message." +msgstr "Kunne ikkje PGP-kode melding." + +#: lib/Horde/Crypt/Smime.php:391 +#, fuzzy +msgid "Could not S/MIME sign message." +msgstr "Kunne ikkje PGP-signere melding." + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Kunne ikkje dekode PGP-data." + +#: lib/Horde/Crypt/Smime.php:440 +#, fuzzy +msgid "Could not decrypt S/MIME data." +msgstr "Kunne ikkje dekode PGP-data." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Kunne ikkje avgjere mottakaren si e-postadresse." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Kunne ikkje skaffe offentleg nøkkel frå nøkkeltenaren." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "E-post" + +#: lib/Horde/Crypt/Smime.php:474 +#, fuzzy +msgid "Email Address" +msgstr "Di e-postadresse:" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +#, fuzzy +msgid "Key Type" +msgstr "MIME-type" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Melding" + +#: lib/Horde/Crypt/Pgp.php:782 +#, fuzzy +msgid "Key already exists on the public keyserver." +msgstr "Oppkopling mot offentleg nøkkeltenar nekta." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Namn" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Aldri" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "Administrering" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Passord" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Offentleg/privat nøkkelpar vart ikkje generert." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "Offentleg/privat nøkkelpar vart ikkje generert." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "Adresse, privat" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "Brukarnamn" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +#, fuzzy +msgid "Version" +msgstr "Tilgang" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pl/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pl/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pl/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pl/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pl/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pl/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,450 @@ +# Polish translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s odcisk palca" + +#: lib/Horde/Crypt/Pgp.php:1240 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "Potrzebny jest klucz publiczny PGP do zaszyfrowania wiadomości." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" +"Potrzebny jest klucz publiczny PGP do sprawdzenia podpisanej wiadomości." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Potrzebne są klucz publiczny PGP, klucz prywatny PGP oraz hasło do " +"podpisania wiadomości." + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Potrzebny jest klucz publiczny SMIME do zaszyfrowania wiadomości." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Potrzebne są klucz publiczny S/MIME, klucz prywatny S/MIME oraz hasło do " +"odszyfrowania wiadomości." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Potrzebne są klucz publiczny S/MIME, klucz prywatny S/MIME oraz hasło do " +"podpisania wiadomości." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Szczegóły certyfikatu" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Właściciel certyfikatu" + +#: lib/Horde/Crypt/Smime.php:505 +#, fuzzy +msgid "Certificate Policies" +msgstr "Szczegóły certyfikatu" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Komentarz" + +#: lib/Horde/Crypt/Smime.php:475 +#, fuzzy +msgid "Common Name" +msgstr "Twoje imię" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Odmówiono połączenia do publicznego serwera." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Odmówiono połączenia do publicznego serwera. Powód: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "Nie udało się zaszyfrować (PGP) wiadomości." + +#: lib/Horde/Crypt/Pgp.php:1201 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "Nie udało się podpisać (PGP) wiadomości." + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Nie udało się zaszyfrować (S/MIME) wiadomości." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Nie udało się podpisać (S/MIME) wiadomości." + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Nie udało się odszyfrować danych PGP." + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Nie udało się odszyfrować danych S/MIME." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Nie udało się ustalić adresu e-mail odbiorcy." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Nie udało się uzyskać z serwera klucza pbulicznego." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Kraj" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "E-mail" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Adres email" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Data ekspiracji" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +#, fuzzy +msgid "Given Name" +msgstr "Nazwisko" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "Hash-Algorithm" +msgstr "Algorytm podpisu" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Wydawca" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Tworzenie klucza" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Odcisk klucza" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Długość klucza" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Typ klucza" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Wiadomość" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Klucz już istnieje na publicznym serwerze kluczy." + +#: lib/Horde/Crypt/Smime.php:480 +#, fuzzy +msgid "Location" +msgstr "Opcje" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nazwisko" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Nigdy" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Żadna" + +#: lib/Horde/Crypt/Smime.php:549 +#, fuzzy +msgid "Not After" +msgstr "Nieustawione" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Organizacja" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Jednostka organizacyjna" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "Cyfrowy podpis PGP" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "Wiadomość zaszyfrowana PGP" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Klucz publiczny PGP" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "Wiadomość zaszyfrowana/podpisana kluczem PGP" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Hasło nieprawidłowe" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Klucz prywatny" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Klucz publiczny" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Algorytm klucza publicznego" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "Informacje o kluczu publicznym" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Para kluczy osobistych nie została wygenerowana pomyślnie." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "Klucz publiczny RSA (%d bitów)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Nowe wiadomości" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "Para kluczy osobistych nie została wygenerowana pomyślnie." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "Wiadomość zaszyfrowana S/MIME" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Numer seryjny" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Podpis" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "Algorytm podpisu" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Wojewódźtwo lub stan" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Adres domowy" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "Nazwisko" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Numer telefonu" + +#: lib/Horde/Crypt/Pgp.php:1311 +#, fuzzy +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Potrzebny jest klucz publiczny PGP do sprawdzenia podpisanej wiadomości." + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +#, fuzzy +msgid "Unable to extract certificate details" +msgstr "Błąd przy pobieraniu detali certyfikatu" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Nieznane" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Nieobsługiwane rozszerzenie" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "Pojawił się nieznany błąd." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Weryfikacja zawiodła - wiadomość mogła być zmieniana." + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Wersja" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +#, fuzzy +msgid "not yet implemented" +msgstr "Ta opcja nie jest jeszcze załączona." Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pt/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pt/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pt/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pt/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pt/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pt/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,448 @@ +# Portuguese translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s Impressão Digital" + +#: lib/Horde/Crypt/Pgp.php:1240 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "É necessária uma chave pública PGP para encriptar a mensagem." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" +"É necessária uma chave pública PGP para verificar a assinatura de uma " +"mensagem" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Para assinar uma mensagem são necessárias uma chave pública PGP, uma chave " +"privada PGP e uma frase-passe." + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "É necessária uma chave pública S/MIME para encriptar uma mensagem." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Para decifrar uma mensagem são necessárias uma chave pública S/MIME, uma " +"chave privada S/MIME e uma frase-passe." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Para assinar uma mensagem são necessárias uma chave pública S/MIME, uma " +"chave privada S/MIME e uma frase-passe." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "Pontos de Distribuição CRL" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Pormenores do Certificado" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Dono do Certificado" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Políticas de Certificado" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Comentário" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "Nome Comum" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Conexão ao servidor de chaves públicas recusada." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Conexão ao servidor de chaves públicas recusada. Razão: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "Não foi possível cifrar com PGP a mensagem:" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "Não foi possível assinar com PGP a mensagem:" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Não foi possível encripar a mensagem com S/MIME." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Não foi possível assinar a mensagem com S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "Não foi possível decifrar com PGP a mensagem:" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Não foi possível desencriptar os dados com S/MIME." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "" +"Não foi possível determinar o endereço de correio electrónico do " +"destinatário." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" +"Não foi possível obter a chave pública a partir do servidor de chaves " +"públicas." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "País" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "Correio electrónico" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Endereço de Correio Electrónico" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Data de Expiração" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Expoente" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "Nome Próprio" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Algoritmo de \"Hash\"" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Emissor" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Criação da Chave" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Impressão digital da chave" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Comprimento da chave" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Tipo da Chave" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Utilização da Chave" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "A chave já existe no servidor de chaves públicas." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Localização" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Mensagen Verificada com Sucesso, mas o certificado do subscritor não pôde " +"ser verificado." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "Módulo" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nome" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "URL de Base Netscape" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "URL de Revogação CA Netscape" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "URL com a política de CA Netscape" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "URL de Renovação Netscape" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "URL de Revogação Netscape" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "Nome do servidor SSL Netscape" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Comentário de certificado Netscape" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Tipo de certificado Netscape" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Nunca" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Não foi indicado caminho para o binário OpenSSL. O binário OpenSSL é " +"necessário para trabalhar com dados PKCS 12." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Nenhuma" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "Nunca Depois de" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "Nunca Antes de" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" +"Erro OpenSSL: Não foi possível extrair dados de uma parte assinada com S/" +"MIME." + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Organização" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Unidade Organizacional" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "Assinatura Digital PGP" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "Dados encriptados PGP" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Chave Pública PGP" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "Dados Assinados/Encriptados com PGP" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Palavra-Passe incorrecta" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Chave Privada" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Chave Pública" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Algoritmo de Chave Pública" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "Informação Sobre a Chave" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "O par de chaves Publica/Privada não foi gerada com sucesso." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "Chave Pública RSA (%d bit)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Ler mensagens" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "O par de chaves Publica/Privada não foi gerada com sucesso." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "Assinatura Criptográfica S/MIME" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "Mensagem Encriptada com S/MIME" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Número de Série" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Assinatura" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "Algoritmo de Assinatura" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Estado ou Província" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Endereço de Rua" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Apelido" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Número de Telefone" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"O bloco de assinatura PGP destacado é necessário para verificar uma mensagem " +"assinada." + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "O módulo openssl é necessário para a classe Horde_Crypt_smime::." + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "Não foi possível extrair os pormenores do certificado" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Desconhecido" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Extensão não Suportada" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "Validade." + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "Ocorreu um erro desconhecido." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Verificação falhou - esta mensagem pode ter sido adulterada." + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Versão" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "Restrições Básicas X509v3" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "Utilização de Chave Extendida X509v3" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "Nome Alternativo de Sujeito X509v3" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "Identificador Chave de Sujeito X509v3" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "Extensões X509v3" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "ainda por implementar" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pt_BR/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pt_BR/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/pt_BR/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,361 @@ +# Portuguese translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2014-03-25 18:08+0100\n" +"PO-Revision-Date: 2013-11-21 22:57-0300\n" +"Last-Translator: Luis Felipe Marzagao \n" +"Language-Team: i18n@lists.horde.org\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 1.5.4\n" + +#: lib/Horde/Crypt/Pgp.php:1086 +msgid "A passphrase is required to decrypt a message." +msgstr "Uma palavra-chave é necessária para descriptografar uma mensagem." + +#: lib/Horde/Crypt/Pgp.php:1157 +msgid "A public PGP key is required to verify a signed message." +msgstr "Uma chave pública PGP é necessária para validar uma mensagem assinada." + +#: lib/Horde/Crypt/Pgp.php:1017 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Uma chave pública PGP, uma chave privada PGP, e uma palavra-chave são " +"necessários para assinar uma mensagem." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Uma chave pública S/MIME é necessáira para criptografar uma mensagem." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Uma chave pública S/MIME , uma chave privada S/MIME, e uma palavra-chave são " +"necessários para descriptografar uma mensagem." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Uma chave pública S/MIME, uma chave privada S/MIME, e uma palavra-chave são " +"necessários para assinar uma mensagem." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "Pontos de Distribuição CRL" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "Detalhes do Certificado" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "Proprietário do Certificado" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Política do Certificado" + +#: lib/Horde/Crypt/Pgp.php:417 +msgid "Comment" +msgstr "Comentário" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Nome Comum" + +#: lib/Horde/Crypt/Pgp.php:985 +msgid "Could not PGP encrypt message: " +msgstr "Não foi possível criptografar a mensagem com PGP:" + +#: lib/Horde/Crypt/Pgp.php:1054 +msgid "Could not PGP sign message: " +msgstr "Não foi possível assinar a mensagem com PGP: " + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "Não foi possível criptografar a mensagem com S/MIME." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "Não foi possível assinar a mensagem com S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1125 +msgid "Could not decrypt PGP data: " +msgstr "Não foi possível descriptografar dados PGP: " + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "Não foi possível descriptografar dados S/MIME." + +#: lib/Horde/Crypt/Pgp.php:644 +msgid "Could not determine the recipient's e-mail address." +msgstr "Não foi possível determinar o endereço de e-mail do destinatário." + +#: lib/Horde/Crypt/Pgp/Keyserver.php:101 lib/Horde/Crypt/Pgp/Keyserver.php:219 +msgid "Could not obtain public key from the keyserver." +msgstr "Não foi possível obter a chave pública do servidor de chaves." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "País" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Descrição" + +#: lib/Horde/Crypt/Pgp.php:418 +msgid "E-Mail" +msgstr "Correio" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "Endereço de E-Mail" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Erro ao processar certificado S/MIME: %s" + +#: lib/Horde/Crypt/Pgp.php:1453 lib/Horde/Crypt/Pgp.php:1461 +msgid "Error while talking to pgp binary." +msgstr "Erro ao comunicar com o binário pgp." + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "Erro ao comunicar com o binário smime." + +#: lib/Horde/Crypt/Pgp.php:415 +msgid "Expiration Date" +msgstr "Data de Expiração" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "Primeiro Nome" + +#: lib/Horde/Crypt/Pgp.php:419 +msgid "Hash-Algorithm" +msgstr "Algorítimo Hash" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "Emissor" + +#: lib/Horde/Crypt/Pgp.php:414 +msgid "Key Creation" +msgstr "Criação de Chave" + +#: lib/Horde/Crypt/Pgp.php:421 +msgid "Key Fingerprint" +msgstr "Impressão Digital da Chave" + +#: lib/Horde/Crypt/Pgp.php:420 +msgid "Key ID" +msgstr "Chave ID" + +#: lib/Horde/Crypt/Pgp.php:416 +msgid "Key Length" +msgstr "Tamanho da Chave" + +#: lib/Horde/Crypt/Pgp.php:413 +msgid "Key Type" +msgstr "Tipo da Chave" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "Uso da Chave" + +#: lib/Horde/Crypt/Pgp/Keyserver.php:137 +msgid "Key already exists on the public keyserver." +msgstr "Chave já existe no servidor de chaves públicas." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Localidade" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Mesnagem verificada com sucesso mas o certificado do assinante não pôde ser " +"verificado." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "Mensagem verificada com sucesso." + +#: lib/Horde/Crypt/Pgp.php:412 +msgid "Name" +msgstr "Nome" + +#: lib/Horde/Crypt/Pgp.php:444 +msgid "Never" +msgstr "Nunca" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Nenhum path para o binário do OpenSSL foi fornecido. O binário do OpenSSL é " +"necessário para manipular os dados PKCS 12." + +#: lib/Horde/Crypt/Pgp.php:446 lib/Horde/Crypt/Pgp.php:447 +msgid "None" +msgstr "Nenhuma" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "Não Após" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "Não Antes" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "Erro do OpenSSL: Não pude extrair dados da parte assinada S/MIME." + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Organização" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "Unidade Organizacional" + +#: lib/Horde/Crypt/Pgp.php:1275 +msgid "PGP Digital Signature" +msgstr "Assinatura Digital PGP" + +#: lib/Horde/Crypt/Pgp.php:1319 +msgid "PGP Encrypted Data" +msgstr "Dados Criptografados com PGP" + +#: lib/Horde/Crypt/Pgp.php:1380 +msgid "PGP Public Key" +msgstr "Chave Pública PGP" + +#: lib/Horde/Crypt/Pgp.php:1362 +msgid "PGP Signed/Encrypted Data" +msgstr "Dados Assinados/Criptografados com PGP" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Senha incorreta" + +#: lib/Horde/Crypt/Pgp.php:442 +msgid "Private Key" +msgstr "Chave Privada" + +#: lib/Horde/Crypt/Pgp.php:442 +msgid "Public Key" +msgstr "Chave Pública" + +#: lib/Horde/Crypt/Pgp.php:212 +msgid "Public/Private keypair not generated successfully." +msgstr "Par de chaves Pública/Privada não foram gerados com sucesso." + +#: lib/Horde/Crypt/Pgp.php:214 +msgid "Returned error message:" +msgstr "Mensagem de erro retornada:" + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "Mensagem Criptografada com S/MIME" + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Signature" +msgstr "Assinatura S/MIME" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "Número de Série" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "Estado ou Província" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Nome da Rua" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Sobrenome" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Número de Telefone" + +#: lib/Horde/Crypt/Pgp.php:1161 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Para verificar a mensagem assinada é necessário um bloco separado da " +"assinatura PGP." + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "O módulo openssl é requerido para Horde_Crypt_Smime:: class." + +#: lib/Horde/Crypt/Pgp.php:448 lib/Horde/Crypt/Pgp.php:449 +#: lib/Horde/Crypt/Pgp.php:450 +msgid "Unknown" +msgstr "Desconhecido" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "Validade" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "Verificação falhou - um erro desconhecido ocorreu." + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "Falha na verificação - esta mensagem pode ter sido adulterada." + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Versão" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "Restrições Básicas X509v3" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "Utilização de Chave Extendida X509v3" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "Nome Alternativo de Assunto X509v3" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "Identificador da Chave de Assunto X509v3" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "Extensões X509v3" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "não implementado ainda" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ro/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ro/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ro/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ro/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ro/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ro/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,429 @@ +# Romanian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "Corespondenta" + +#: lib/Horde/Crypt/Smime.php:474 +#, fuzzy +msgid "Email Address" +msgstr "Adresa ta de Email:" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Mesaj" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Nume" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Niciodata" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Parola" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "Adresa de acasa" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "Utilizator" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ru/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ru/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ru/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ru/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/ru/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/ru/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,492 @@ +# Russian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "Для расшифровки сообщения требуется пароль" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "Для проверки подписанного сообщения требуется публичный ключ PGP" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Для подписи сообщения требуется публичный ключ PGP, приватный ключ PGP и " +"пароль" + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Для шифрования сообщения требуется публичный ключ S/MIME" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Для расшифровки сообщения требуется публичный ключ S/MIME, приватный ключ S/" +"MIME и пароль" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Для подписи сообщения требуется публичный ключ S/MIME, приватный ключ S/MIME " +"и пароль" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "Точки Распространения СRL" + +# fuzzy, php-format +# fuzzy +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Подробности Сертификата" + +# fuzzy, php-format +# fuzzy +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Владелец Сертификата" + +# fuzzy, php-format +# fuzzy +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Политики Сертификата" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Комментарий" + +# fuzzy +#: lib/Horde/Crypt/Smime.php:475 +#, fuzzy +msgid "Common Name" +msgstr "Ваше имя:" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Публичный сервер ключей отказал в соединении" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Публичный сервер ключей отказал в соединении. Причина: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "PGP-шифрование данного сообщения невозможно:" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "PGP-подпись данного сообщения невозможна:" + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "S/MIME шифрование данного сообщения невозможно." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "S/MIME подпись данного сообщения невозможна." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "Невозможно расшифровать данные PGP:" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Невозможно расшифровать данные S/MIME." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Невозможно определить E-Mail получателя." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Невозможно получить публичный ключ с сервера ключей" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Страна" + +# fuzzy +#: lib/Horde/Crypt/Pgp.php:426 +#, fuzzy +msgid "E-Mail" +msgstr "Почта" + +#: lib/Horde/Crypt/Smime.php:474 +#, fuzzy +msgid "Email Address" +msgstr "Ваш Email:" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Дата окончания срока годности" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Экспонента" + +#: lib/Horde/Crypt/Smime.php:484 +#, fuzzy +msgid "Given Name" +msgstr "Имя" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:534 +#, fuzzy +msgid "Issuer" +msgstr "Инвертировать" + +#: lib/Horde/Crypt/Pgp.php:424 +#, fuzzy +msgid "Key Creation" +msgstr "Настройки" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Длина ключа" + +#: lib/Horde/Crypt/Pgp.php:424 +#, fuzzy +msgid "Key Type" +msgstr "Тип" + +#: lib/Horde/Crypt/Smime.php:507 +#, fuzzy +msgid "Key Usage" +msgstr "Сообщение" + +#: lib/Horde/Crypt/Pgp.php:782 +#, fuzzy +msgid "Key already exists on the public keyserver." +msgstr "Ключ успешно послан на публичный сервер" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Расположение" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:583 +#, fuzzy +msgid "Modulus" +msgstr "Сценарий" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Имя" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +#, fuzzy +msgid "Netscape certificate comment" +msgstr "Нет персональных сертификатов" + +# fuzzy, php-format +# fuzzy +#: lib/Horde/Crypt/Smime.php:489 +#, fuzzy +msgid "Netscape certificate type" +msgstr "Искать в Ответственных" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Никогда" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +# fuzzy +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "-не выбран-" + +#: lib/Horde/Crypt/Smime.php:549 +#, fuzzy +msgid "Not After" +msgstr "Заметки" + +#: lib/Horde/Crypt/Smime.php:548 +#, fuzzy +msgid "Not Before" +msgstr "Заметки" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +#, fuzzy +msgid "Organisation" +msgstr "Настройки пользователя" + +#: lib/Horde/Crypt/Smime.php:477 +#, fuzzy +msgid "Organisational Unit" +msgstr "Настройки пользователя" + +#: lib/Horde/Crypt/Pgp.php:1406 +#, fuzzy +msgid "PGP Digital Signature" +msgstr "Оттенять подписи?" + +# fuzzy +#: lib/Horde/Crypt/Pgp.php:1450 +#, fuzzy +msgid "PGP Encrypted Data" +msgstr "Шифрованние PGP" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Публичный ключ PGP" + +# fuzzy +#: lib/Horde/Crypt/Pgp.php:1493 +#, fuzzy +msgid "PGP Signed/Encrypted Data" +msgstr "Подпись и шифрование PGP" + +#: lib/Horde/Crypt/Smime.php:1256 +#, fuzzy +msgid "Password incorrect" +msgstr "Пароль" + +# fuzzy +#: lib/Horde/Crypt/Pgp.php:447 +#, fuzzy +msgid "Private Key" +msgstr "Ваш секретный ключ:" + +#: lib/Horde/Crypt/Pgp.php:447 +#, fuzzy +msgid "Public Key" +msgstr "Публичный ключ PGP" + +#: lib/Horde/Crypt/Smime.php:554 +#, fuzzy +msgid "Public Key Algorithm" +msgstr "Ваше полное имя:" + +#: lib/Horde/Crypt/Smime.php:553 +#, fuzzy +msgid "Public Key Info" +msgstr "Ваше полное имя:" + +# fuzzy +#: lib/Horde/Crypt/Pgp.php:225 +#, fuzzy +msgid "Public/Private keypair not generated successfully." +msgstr "Персональная пара PGP ключей была успешно сгенерирована." + +# fuzzy +#: lib/Horde/Crypt/Smime.php:572 +#, fuzzy, php-format +msgid "RSA Public Key (%d bit)" +msgstr "Публичных ключей не найдено" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Удаленные сообщения" + +# fuzzy +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "Персональная пара PGP ключей была успешно сгенерирована." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:283 +#, fuzzy +msgid "S/MIME Encrypted Message" +msgstr "Не могу открыть модуль Maintenance_Task %s" + +#: lib/Horde/Crypt/Smime.php:611 +#, fuzzy +msgid "Serial Number" +msgstr "Имя" + +#: lib/Horde/Crypt/Smime.php:622 +#, fuzzy +msgid "Signature" +msgstr "Перед подписью" + +#: lib/Horde/Crypt/Smime.php:621 +#, fuzzy +msgid "Signature Algorithm" +msgstr "Перед подписью" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +#, fuzzy +msgid "Street Address" +msgstr "Рабочий адрес" + +#: lib/Horde/Crypt/Smime.php:483 +#, fuzzy +msgid "Surname" +msgstr "Имя пользователя" + +#: lib/Horde/Crypt/Smime.php:482 +#, fuzzy +msgid "Telephone Number" +msgstr "Имя" + +#: lib/Horde/Crypt/Pgp.php:1311 +#, fuzzy +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "Для проверки подписанного сообщения требуется публичный ключ PGP" + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "" + +# fuzzy, php-format +# fuzzy +#: lib/Horde/Crypt/Smime.php:512 +#, fuzzy +msgid "Unable to extract certificate details" +msgstr "Подробности Сертификата" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Неизвесно" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +#, fuzzy +msgid "Unsupported Extension" +msgstr "Некорректное имя." + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "Произошла критическая ошибка:" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:610 +#, fuzzy +msgid "Version" +msgstr "Внимание" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +#, fuzzy +msgid "not yet implemented" +msgstr "" +"#-#-#-#-# ru_RU.po (Horde v2.1) #-#-#-#-#\n" +"#-#-#-#-# ru_RU.po (IMP v3.1) #-#-#-#-#\n" +"Новое сообщение" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sk/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sk/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sk/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sk/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sk/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sk/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,372 @@ +# Slovak translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# Martin Matuška , 2008 +# Jozef Sudolský , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2013-07-16 21:24+0200\n" +"PO-Revision-Date: 2013-08-26 12:42+0100\n" +"Last-Translator: Jozef Sudolsky \n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Poedit 1.5.4\n" + +#: lib/Horde/Crypt/Pgp.php:1275 +msgid "A passphrase is required to decrypt a message." +msgstr "Na dešifrovanie správy je potrebné heslo." + +#: lib/Horde/Crypt/Pgp.php:1346 +msgid "A public PGP key is required to verify a signed message." +msgstr "Na overenie podpísanej správy je potrebný verejný PGP kľúč." + +#: lib/Horde/Crypt/Pgp.php:1206 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Na podpísanie správy sú potrebné: vrejný PGP kľúč, privátny PGP kľúč a heslo." + +#: lib/Horde/Crypt/Smime.php:266 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Na zašifrovanie správy je potrebný verejný SMIME kľúč." + +#: lib/Horde/Crypt/Smime.php:394 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Na dešifrovanie správy sú potrebné: verejný S/MIME kľúč, privátny S/MIME " +"kľúč a heslo." + +#: lib/Horde/Crypt/Smime.php:325 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Na podpísanie správy sú potrebné: verejný S/MIME kľúč, privátny S/MIME kľúč " +"a heslo." + +#: lib/Horde/Crypt/Smime.php:465 +msgid "CRL Distribution Points" +msgstr "Distribučné body CRL" + +#: lib/Horde/Crypt/Smime.php:516 +msgid "Certificate Details" +msgstr "Podrobné informácie o certifikáte" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Certificate Owner" +msgstr "Vlastník certifikátu" + +#: lib/Horde/Crypt/Smime.php:464 +msgid "Certificate Policies" +msgstr "Pravidlá pre certifikáty" + +#: lib/Horde/Crypt/Pgp.php:448 +msgid "Comment" +msgstr "Komentár" + +#: lib/Horde/Crypt/Smime.php:448 +msgid "Common Name" +msgstr "Bežné meno" + +#: lib/Horde/Crypt/Pgp.php:980 +msgid "Connection refused to the public keyserver." +msgstr "Kľúč bol zamietnutý serverom verejných kľúčov." + +#: lib/Horde/Crypt/Pgp.php:991 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Kľúč bol zamietnutý serverom verejných kľúčov. Dôvod: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1174 +msgid "Could not PGP encrypt message: " +msgstr "Nepodarilo sa zašifrovať správu pomocou PGP: " + +#: lib/Horde/Crypt/Pgp.php:1243 +msgid "Could not PGP sign message: " +msgstr "Nepodarilo sa podpísať správu pomocou PGP: " + +#: lib/Horde/Crypt/Smime.php:295 +msgid "Could not S/MIME encrypt message." +msgstr "Nepodarilo sa zašifrovať správu pomocou S/MIME." + +#: lib/Horde/Crypt/Smime.php:356 +msgid "Could not S/MIME sign message." +msgstr "Nepodarilo sa podpísať správu pomocou S/MIME." + +#: lib/Horde/Crypt/Pgp.php:1314 +msgid "Could not decrypt PGP data: " +msgstr "Nepodarilo sa dešifrovať údaje pomocou PGP: " + +#: lib/Horde/Crypt/Smime.php:412 +msgid "Could not decrypt S/MIME data." +msgstr "Nepodarilo sa dešifrovať S/MIME údaje." + +#: lib/Horde/Crypt/Pgp.php:673 +msgid "Could not determine the recipient's e-mail address." +msgstr "Nepodarilo sa určiť e-mailovú adresu príjemcu." + +#: lib/Horde/Crypt/Pgp.php:774 lib/Horde/Crypt/Pgp.php:888 +msgid "Could not obtain public key from the keyserver." +msgstr "Nepodarilo sa získať verejný kľúč zo servera kľúčov." + +#: lib/Horde/Crypt/Smime.php:451 +msgid "Country" +msgstr "Krajina" + +#: lib/Horde/Crypt/Smime.php:446 +msgid "Description" +msgstr "Popis" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "E-Mail" +msgstr "E-mail" + +#: lib/Horde/Crypt/Smime.php:447 +msgid "Email Address" +msgstr "Emailová adresa:" + +#: lib/Horde/Crypt/Smime.php:551 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Chyba pri spracovaní S/MIME certifikátu: %s" + +#: lib/Horde/Crypt/Pgp.php:1623 lib/Horde/Crypt/Pgp.php:1631 +msgid "Error while talking to pgp binary." +msgstr "Chyba pri komunikácii s pgp." + +#: lib/Horde/Crypt/Smime.php:721 lib/Horde/Crypt/Smime.php:739 +#: lib/Horde/Crypt/Smime.php:754 +msgid "Error while talking to smime binary." +msgstr "Chyba pri komunikácii s smime." + +#: lib/Horde/Crypt/Pgp.php:446 +msgid "Expiration Date" +msgstr "Dátum expirácie" + +#: lib/Horde/Crypt/Smime.php:457 +msgid "Given Name" +msgstr "Krstné meno" + +#: lib/Horde/Crypt/Pgp.php:450 +msgid "Hash-Algorithm" +msgstr "Algoritmus hashovacej funkcie" + +#: lib/Horde/Crypt/Smime.php:485 +msgid "Issuer" +msgstr "Vydavateľ" + +#: lib/Horde/Crypt/Pgp.php:445 +msgid "Key Creation" +msgstr "Vytvorenie kľúča" + +#: lib/Horde/Crypt/Pgp.php:452 +msgid "Key Fingerprint" +msgstr "Digitálny odtlačok kľúča" + +#: lib/Horde/Crypt/Pgp.php:451 +msgid "Key ID" +msgstr "ID kľúča" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Key Length" +msgstr "Dĺžka kľúča" + +#: lib/Horde/Crypt/Pgp.php:444 +msgid "Key Type" +msgstr "Typ kľúča" + +#: lib/Horde/Crypt/Smime.php:466 +msgid "Key Usage" +msgstr "Použitie kľúča" + +#: lib/Horde/Crypt/Pgp.php:797 +msgid "Key already exists on the public keyserver." +msgstr "Kľúč už existuje na serveri verejných kľúčov." + +#: lib/Horde/Crypt/Smime.php:453 +msgid "Location" +msgstr "Lokalita" + +#: lib/Horde/Crypt/Smime.php:143 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Správa bola úspešne overená, ale certifikát podpisu sa nepodarilo overiť." + +#: lib/Horde/Crypt/Smime.php:131 +msgid "Message verified successfully." +msgstr "Správa bola úspešne overená." + +#: lib/Horde/Crypt/Pgp.php:443 +msgid "Name" +msgstr "Meno" + +#: lib/Horde/Crypt/Pgp.php:475 +msgid "Never" +msgstr "Nikdy" + +#: lib/Horde/Crypt/Smime.php:687 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Nebola zadaná cesta k programu OpenSSL. Program OpenSSL je potrebný na prácu " +"s údajmi PKCS 12." + +#: lib/Horde/Crypt/Pgp.php:477 lib/Horde/Crypt/Pgp.php:478 +msgid "None" +msgstr "Žiaden" + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Not After" +msgstr "Neplatí po" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Not Before" +msgstr "Neplatí pred" + +#: lib/Horde/Crypt/Smime.php:182 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "Chyba OpenSSL: nepodarilo sa získať údaje z podpísanej časti S/MIME." + +#: lib/Horde/Crypt/Smime.php:449 +msgid "Organisation" +msgstr "Organizácia" + +#: lib/Horde/Crypt/Smime.php:450 +msgid "Organisational Unit" +msgstr "Organizačná jednotka" + +#: lib/Horde/Crypt/Pgp.php:1445 +msgid "PGP Digital Signature" +msgstr "Digitálny podpis PGP" + +#: lib/Horde/Crypt/Pgp.php:1489 +msgid "PGP Encrypted Data" +msgstr "Údaje zašifrované pomocou PGP" + +#: lib/Horde/Crypt/Pgp.php:1550 +msgid "PGP Public Key" +msgstr "PGP verejný kľúč" + +#: lib/Horde/Crypt/Pgp.php:1532 +msgid "PGP Signed/Encrypted Data" +msgstr "Údaje podpísané/zašifrované pomocou PGP" + +#: lib/Horde/Crypt/Smime.php:726 +msgid "Password incorrect" +msgstr "Nesprávne heslo" + +#: lib/Horde/Crypt/Pgp.php:473 +msgid "Private Key" +msgstr "Privátny kľúč" + +#: lib/Horde/Crypt/Pgp.php:473 +msgid "Public Key" +msgstr "Verejný kľúč" + +#: lib/Horde/Crypt/Pgp.php:243 +msgid "Public/Private keypair not generated successfully." +msgstr "Verejný/privátny kľúčový pár nebol úspešne vygenerovaný." + +#: lib/Horde/Crypt/Pgp.php:245 +msgid "Returned error message:" +msgstr "Navrátené chybové hlásenie:" + +#: lib/Horde/Crypt/Pgp.php:1685 +msgid "Revocation key not generated successfully." +msgstr "Revokačný kľúč nebol úspešne vytvorený." + +#: lib/Horde/Crypt/Smime.php:238 +msgid "S/MIME Encrypted Message" +msgstr "Správa zašifrovaná pomocou S/MIME" + +#: lib/Horde/Crypt/Smime.php:204 +msgid "S/MIME Signature" +msgstr "S/MIME podpis" + +#: lib/Horde/Crypt/Smime.php:518 +msgid "Serial Number" +msgstr "Sériové číslo" + +#: lib/Horde/Crypt/Smime.php:452 +msgid "State or Province" +msgstr "Štát alebo provincia" + +#: lib/Horde/Crypt/Smime.php:454 +msgid "Street Address" +msgstr "Bydlisko" + +#: lib/Horde/Crypt/Smime.php:456 +msgid "Surname" +msgstr "Priezvisko" + +#: lib/Horde/Crypt/Smime.php:455 +msgid "Telephone Number" +msgstr "Telefónne číslo" + +#: lib/Horde/Crypt/Pgp.php:1350 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Na overenie podpísanej správy je požadovaný oddelený blok s PGP podpisom." + +#: lib/Horde/Crypt/Smime.php:616 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Trieda Horde_Crypt_smime:: vyžaduje modul openssl." + +#: lib/Horde/Crypt/Pgp.php:479 lib/Horde/Crypt/Pgp.php:480 +#: lib/Horde/Crypt/Pgp.php:481 +msgid "Unknown" +msgstr "Neznáme" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Validity" +msgstr "Platnosť" + +#: lib/Horde/Crypt/Smime.php:138 +msgid "Verification failed - an unknown error has occurred." +msgstr "Overenie zlyhalo - nastala neznáma chyba." + +#: lib/Horde/Crypt/Smime.php:140 +msgid "Verification failed - this message may have been tampered with." +msgstr "Overenie zlyhalo - táto správa mohla byť sfalšovaná." + +#: lib/Horde/Crypt/Smime.php:517 +msgid "Version" +msgstr "Verzia" + +#: lib/Horde/Crypt/Smime.php:461 +msgid "X509v3 Basic Constraints" +msgstr "Základné obmedzenia X509v3" + +#: lib/Horde/Crypt/Smime.php:460 +msgid "X509v3 Extended Key Usage" +msgstr "Použitie rozšíreného kľúča X509v3" + +#: lib/Horde/Crypt/Smime.php:462 +msgid "X509v3 Subject Alternative Name" +msgstr "Alternatívne meno subjektu X509v3" + +#: lib/Horde/Crypt/Smime.php:463 +msgid "X509v3 Subject Key Identifier" +msgstr "Identifikátor kľúča subjektu X509v3" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 extensions" +msgstr "X509v3 rozšírenia" + +#: lib/Horde/Crypt/Smime.php:605 +msgid "not yet implemented" +msgstr "zatiaľ neimplementované" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sl/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sl/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sl/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sl/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sl/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sl/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,438 @@ +# Slovenian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s Odtis" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "Za dešifriranje sporočila je potrebno geslo." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "Javni PGP ključ je potreben za preverjanje podpisanega sporočila." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"Javni PGP ključ, zasebni PGP ključ in geslo so potrebni za podpis sporočila." + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr " Javni SMIME klju je potreben za odklepanje sporočila " + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Javni S/MIME ključ, zasebni S/MIME ključ in geslo so potrebni za podpis " +"sporočila." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Javni S/MIME ključ, zasebni S/MIME ključ in geslo so potrebni za podpis " +"sporočila." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr " CRL razdelitvene točke " + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Podrobnosti potrdila" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Lastnik potrdila" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Pravila potrdila" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Komentar" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "Skupno ime" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Zavrnjena povezava z javnim ključnim strežnikom." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Zavrnjena povezava z javnim ključnim strežnikom. Razlog: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "PGP ne more šifrirati sporočila:" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "Ni mogoč PGP podpis sporočila." + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Ni mogoče S/MIME šifrirati sporočila." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Ni mogoče S/MIME podpis sporočila." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "Ni mogoče dešifrirati PGP podatkov:" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Ni mogoče dešifrirati S/MIME podatke." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Ni mogoče določiti elektronskega naslova prejemnika." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Ni mogoče dobiti javnega ključa od ključnega strežnika." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Država" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "Elektronski naslov" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Elektronski naslov" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Datum zapadlosti" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Zastopnik" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "Dano ime" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hash Algoritem" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Izdajatelj" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Ustvari Ključ " + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Odtis Ključa" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Dolžina Ključa" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Tip Ključa " + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Uporaba Ključa " + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Ključ že obstaja na javnem ključnem strežniku." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Mesto" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Sporočilo je bilo uspešno preverjeno, toda podpisnikovega potrdila ni bilo " +"mogoče preveriti." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "Moduli" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Ime" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "Netscape osnovni URL" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr " Netscape CA URL za preklic" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "Naslov Netscape certifikata" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr " Netscape obnovitveni URL" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr " Netscape URL za preklic" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "Netscape SSL ime strežnika" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Netscape uradni komentar" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Tip Netscape certifikata" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Nikoli" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Pot do binarne datoteke OpenSSL ni bila nastavljena. OpenSSL binarna " +"datoteka je potrebna za delo s PKCS 12 podatki." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Nobeden" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "Ne kasneje" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "Ne prej" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OdprtaSSL napaka: Ne morem povzeti datuma iz označenega S/MIM dela." + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Organizacija" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Organizacijska enota" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "Digitalen podpis PGP" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "Kodirani PGP podatki" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Javni ključ PGP" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "Podpisani/kodirani PGP podatki" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Nepravilno geslo" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Zaseben ključ" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Javni ključ" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Algoritem javnega ključa" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "Informacije javnega ključa" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Javni/zasebni par ključev ni bil uspešno generiran." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA javni ključ (%d bitov)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Beri sporočila" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "Javni/zasebni par ključev ni bil uspešno generiran." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr " S/MIME kriptografski podpis" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME kodirano sporočilo" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Serijska številka" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Podpis" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "Algoritmičen podpis" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Država ali provinca" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Naslov ulice" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Priimek" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Telefonska številka" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Potrebujem ločeno PGP podpisano beležnico, da previrim podpisano sporočilo." + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Potrebujem openssl modul za Horde_Crypt_smime:: razred." + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "Ne morem izpisati potrjenih podrobnosti." + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Neznano" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Nepodprta razširitev" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "Veljavnost" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "Pojavila se je neznana napaka." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Preverjanje neuspešno - mogoče je bilo sporočilo spremenjeno." + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Različica" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 osnovna omejitev" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 Razširjena uporaba ključa" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Zadeva alternativno ime" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Kjue za doloeiti zadevo" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "X509v3 razširitev" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "še ni podprta" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sv/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sv/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sv/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sv/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/sv/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/sv/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,446 @@ +# Swedish translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "Fingerprint för %s" + +#: lib/Horde/Crypt/Pgp.php:1240 +#, fuzzy +msgid "A passphrase is required to decrypt a message." +msgstr "En publik PGP-nyckel krävs för att kryptera ett meddelande." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "En publik PGP-nyckel krävs för att verifiera ett signerat meddelande." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"En publik och privat PGP-nyckel samt lösenord krävs för att signera ett " +"meddelande." + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "En publik S/MIME-nyckel krävs för att kryptera ett meddelande." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"En publik och privat S/MIME-nyckel samt lösenord krävs för att dekryptera " +"ett meddelande." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"En publik och privat S/MIME-nyckel samt lösenord krävs för att signera ett " +"meddelande." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "CRL Distribution Points" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Certifikatsdetaljer" + +#: lib/Horde/Crypt/Smime.php:520 +#, fuzzy +msgid "Certificate Owner" +msgstr "Certifikatsdetaljer" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Certifikatpolicies" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Kommentar" + +#: lib/Horde/Crypt/Smime.php:475 +#, fuzzy +msgid "Common Name" +msgstr "Ditt namn" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Förbindelse med publik nyckelserver nekades." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Förbindelse med publik nyckelserver nekades: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +#, fuzzy +msgid "Could not PGP encrypt message: " +msgstr "Kan inte PGP-kryptera meddelande." + +#: lib/Horde/Crypt/Pgp.php:1201 +#, fuzzy +msgid "Could not PGP sign message: " +msgstr "Kan inte PGP-signera meddelande." + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "Kan inte S/MIME-kryptera meddelande." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "Kan inte S/MIME-signera meddelande." + +#: lib/Horde/Crypt/Pgp.php:1276 +#, fuzzy +msgid "Could not decrypt PGP data: " +msgstr "Kan inte dekryptera PGP-data." + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "Kan inte dekryptera S/MIME-data." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Kan inte bestämma mottagarens ePost-adress." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Kan inte hämta publik nyckel från nyckelservern." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Land" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "E-post" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "E-post adress" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Förfallodatum" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Exponent" + +#: lib/Horde/Crypt/Smime.php:484 +#, fuzzy +msgid "Given Name" +msgstr "Filnamn" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hashalgoritm" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Nyckel skapad" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Fingerprint" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Nyckellängd" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Nyckeltyp" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Nyckelanvändande" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Nyckel finns redan på den publika nyckelservern." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Plats" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Meddelandet verifierades men den signerades certifikat kunde inte verifieras." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Namn" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Netsape certifikatskommentar" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Netsape certifikatstyp" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Aldrig" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Ingen" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "Inte efter" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "Inte före" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Organisation" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Organisation avdelning" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "PGP Digital Signature" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "PGP Encrypted Data" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "Publik PGP-nyckel" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP Signed/Encrypted Data" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Lösenord felaktigt" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Privata nyckel" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Publik nyckel" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Publik nyckel algoritm" + +#: lib/Horde/Crypt/Smime.php:553 +#, fuzzy +msgid "Public Key Info" +msgstr "Publik nyckel" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Fel vid generering av publikt/privat nyckelpar." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "Publik RSA-nyckel (%d bitar)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "Läs meddelanden" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "Fel vid generering av publikt/privat nyckelpar." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME signatur" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME-krypterat meddelande" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Serienummer" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "Signatur" + +#: lib/Horde/Crypt/Smime.php:621 +#, fuzzy +msgid "Signature Algorithm" +msgstr "Signatur" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Gatuadress" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Efternamn" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Telefonnummer" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Den lösgjorda PGP-signaturen krävs för att verifiera det signerade " +"meddelandet." + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Modulen openssl krävs av klassen Horde_Crypt_smime::." + +#: lib/Horde/Crypt/Smime.php:512 +#, fuzzy +msgid "Unable to extract certificate details" +msgstr "Certifikatsdetaljer" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Okänd" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Extension stöds inte" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "Ett fatalt fel har inträffat" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Verifiering misslyckades - meddelandet kan ha manipulerats." + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Version" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "inte implementerad" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/tr/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/tr/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/tr/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/tr/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/tr/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/tr/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,435 @@ +# Turkish translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2017-06-09 16:16+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: İTÜ BİDB \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: tr\n" +"X-Generator: Poedit 1.8.12\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s Parmak İzi" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "Bir mesajın şifresini açmak için geçiş tümceciği gerekmektedir." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "İmzalanmış iletiyi doğrulamak için PGP açık anahtarı gerekmektedir." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "" +"İletiyi imzalamak için açık PGP anahtarı,özel PGP anahtarı ve geçiş " +"tümceciği gerekmektedir." + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Bir mesajı şifrelemek için S/MIME açık anahtarı gereklidir." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"İletinin şifresini çözmek için açık S/MIME anahtarı, özel S/MIME anahtarı ve " +"geçiş tümceciği gerekmektedir." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"İletiyi imzalamak için açık S/MIME anahtarı, özel S/MIME anahtarı ve geçiş " +"tümceciği gerekmektedir." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "CRL Dağıtım Noktaları" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "Onay Belgesi Ayrıntıları" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "Onay Belgesi Sahibi" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "Onay Belgesi Kuralları" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "Açıklama" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "Ortak Adı" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "Açık anahtar sunucusuna bağlantı reddedildi." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "Açık anahtar sunucusuna bağlantı reddedildi. Sebeb: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "İleti PGP ile şifrelenemedi: " + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "İleti PGP ile imzalanamadı: " + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "İleti S/MIME ile sifrelenemedi." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "İleti S/MIME ile imzalanamadı." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "PGP verisinin şifresi açılamadı: " + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "S/MIME verisinin şifresi çözülemedi." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "Alıcının elektronik posta adresi belirlenemedi." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "Anahtar sunucusundan açık anahtar edinilemedi." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "Ülke" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "E-Posta" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "Elektronik Posta Adresi" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "Pgp binary ile konuşurken hata oluştu." + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "Smime binary ile konuşurken hata oluştu." + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "Geçerlilik Son Tarihi" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "Üst" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "Verilen Ad" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "Hash Algoritması" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Çıkaran" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "Anahtar Yarat" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "Anahtar Parmakizi" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "Anahtar Kimliği" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "Anahtar Uzunluğu" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "Anahtar Tipi" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "Anahtar Kullanımı" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "Açık anahtar sunucusunda anahtar zaten var." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "Yer" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "" +"İleri başarıyla doğrulandı ama imzalayıcının onay belgesi doğrulanamadı." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "Mod Tabanı" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "Ad" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "Netscape Taban URL" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "Netscape CA İptal URL" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "Netscape CA kural URL" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "Netscape Yenileme RL" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "Netscape İptal URL" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "Netscape SSL sunucu adı" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Netscape onay belgesi açıklaması" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Netscape onay belgesi türü" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "Asla" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"OpenSSL ikilisine hiçbir yol bulunamadı.OpenSSL ikilisi PKCS 12 verisiyle " +"calışmak için gerekli." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "Hiçbiri" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "Sonrasında Değil" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "Öncesinde Değil" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OpenSSL hatası:İmzalanmış S/MIME parçasından veri seçip çıkatılamadı." + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "Kuruluş" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "Kurumsal Birim" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "PGP Sayısal İmza" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "PGP Şifrelenmiş Veri" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "PGP Açık Anahtarı" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP ile İmzalanmış/Şifrelenmiş Veri" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "Yanlış şifre" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "Özel Anahtar" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "Açık Anahtar" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "Açık Anahtar algoritması" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "Açık Anahtar Bilgisi" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "Açık/Özel anahtar ikilisi başarıyla yaratılamadı." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA Açık Anahtarı (%d bit)" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "Dönen hata mesajı:" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "İptal anahtarı başarıyla oluşturulamadı." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME Şifreleme İmzası" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME ile Şifrelenmiş İleti" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "Seri Numarası" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "İmza" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "İmza Algoritması" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "Eyalet veya İl" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "Sokak Adresi" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "Soyadı" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "Telefon Numarası" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "" +"Çıkartılmış PGP imza öbeği imzalanmış iletinin doğruluğunun sağlanması için " +"gerekmektedir." + +#: lib/Horde/Crypt/Smime.php:1146 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Horde_Crypt_sime:: sınıfı openssl modülü için gerekmektedir." + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "Onay belgesi ayrıntıları çıkartılamıyor" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "Bilinmeyen" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "Desteklenmeyen Uzantı" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "Geçerlilik" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "Doğrulama başarısız oldu - bilinmeyen bir hata oluştu." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "Doğrulama başarısız oldu - bu ileti kurcalanmış olabilir. " + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "Sürüm" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 Temel Kısıtlamaları" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 Genişletilmiş Anahtar Kullanımı" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Öteki Konu Adı" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Konu Anahtar Tanıtıcısı" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "X509v3 uzantıları" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "henüz gerçekleştirilmedi" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/uk/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/uk/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/uk/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/uk/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/uk/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/uk/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,339 @@ +# Ukrainian translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2015-05-28 17:03+0300\n" +"PO-Revision-Date: 2015-06-01 01:27+0200\n" +"Last-Translator: Andriy Kopystyansky \n" +"Language-Team: Ukrainian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: lib/Horde/Crypt/Smime.php:302 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "Публічний ключ S/MIME необхідний щоб декриптувати лист." + +#: lib/Horde/Crypt/Smime.php:443 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "" +"Публічний і приватний ключі S/MIME, а також пароль необхідні для " +"декриптування листа." + +#: lib/Horde/Crypt/Smime.php:374 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"Публічний і приватний ключі S/MIME, а також пароль необхідні для підпису " +"листа." + +#: lib/Horde/Crypt/Smime.php:514 +msgid "CRL Distribution Points" +msgstr "CRL Distribution Points" + +#: lib/Horde/Crypt/Smime.php:565 +msgid "Certificate Details" +msgstr "Деталі Сертифікату" + +#: lib/Horde/Crypt/Smime.php:523 +msgid "Certificate Owner" +msgstr "Власник сертифікату" + +#: lib/Horde/Crypt/Smime.php:513 +msgid "Certificate Policies" +msgstr "Правила Сертифікату" + +#: lib/Horde/Crypt/Pgp.php:183 +msgid "Comment" +msgstr "Коментар" + +#: lib/Horde/Crypt/Smime.php:497 +msgid "Common Name" +msgstr "Власне ім'я" + +#: lib/Horde/Crypt/Pgp.php:528 +msgid "Could not PGP encrypt message." +msgstr "PGP не може закриптувати листа." + +#: lib/Horde/Crypt/Pgp.php:545 +msgid "Could not PGP sign message." +msgstr "PGP не може підписати листа." + +#: lib/Horde/Crypt/Smime.php:343 +msgid "Could not S/MIME encrypt message." +msgstr "S/MIME не може закриптувати листа." + +#: lib/Horde/Crypt/Smime.php:405 +msgid "Could not S/MIME sign message." +msgstr "S/MIME не може підписати листа." + +#: lib/Horde/Crypt/Pgp.php:628 +msgid "Could not decrypt PGP data." +msgstr "Не можу розкодувати PGP дані." + +#: lib/Horde/Crypt/Smime.php:461 +msgid "Could not decrypt S/MIME data." +msgstr "Не можу розкодувати S/MIME дані." + +#: lib/Horde/Crypt/Pgp.php:400 +msgid "Could not determine the recipient's e-mail address." +msgstr "Не можу визначити адресу e-пошти отримувача." + +#: lib/Horde/Crypt/Pgp/Keyserver.php:101 +#: lib/Horde/Crypt/Pgp/Keyserver.php:219 +msgid "Could not obtain public key from the keyserver." +msgstr "Не можу отримати відкритий ключ з сервера ключів." + +#: lib/Horde/Crypt/Smime.php:500 +msgid "Country" +msgstr "Країна" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Description" +msgstr "Опис" + +#: lib/Horde/Crypt/Pgp.php:184 +msgid "E-Mail" +msgstr "E-пошта" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Email Address" +msgstr "Адреса e-пошти" + +#: lib/Horde/Crypt/Smime.php:600 +#, php-format +msgid "Error parsing S/MIME certficate: %s" +msgstr "Помилка розбору сертифіката S/MIME: %s" + +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:678 +#: lib/Horde/Crypt/Pgp/Backend/Binary.php:688 +msgid "Error while talking to pgp binary." +msgstr "Помилка роботи з виконавчим модулем pgp." + +#: lib/Horde/Crypt/Smime.php:770 lib/Horde/Crypt/Smime.php:788 +#: lib/Horde/Crypt/Smime.php:803 +msgid "Error while talking to smime binary." +msgstr "Помилка роботи з виконавчим модулем smime." + +#: lib/Horde/Crypt/Pgp.php:181 +msgid "Expiration Date" +msgstr "Дата закінчення" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "Given Name" +msgstr "Назва" + +#: lib/Horde/Crypt/Pgp.php:185 +msgid "Hash-Algorithm" +msgstr "Хеш-алгоритм" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "Емітент" + +#: lib/Horde/Crypt/Pgp.php:180 +msgid "Key Creation" +msgstr "Створення ключа" + +#: lib/Horde/Crypt/Pgp.php:187 +msgid "Key Fingerprint" +msgstr "Штамп ключа" + +#: lib/Horde/Crypt/Pgp.php:186 +msgid "Key ID" +msgstr "ID ключа" + +#: lib/Horde/Crypt/Pgp.php:182 +msgid "Key Length" +msgstr "Довжина ключа" + +#: lib/Horde/Crypt/Pgp.php:179 +msgid "Key Type" +msgstr "Тип ключа" + +#: lib/Horde/Crypt/Smime.php:515 +msgid "Key Usage" +msgstr "Використання ключа" + +#: lib/Horde/Crypt/Pgp/Keyserver.php:137 +msgid "Key already exists on the public keyserver." +msgstr "Ключ вже існує на відкритому сервері ключів." + +#: lib/Horde/Crypt/Smime.php:502 +msgid "Location" +msgstr "Місце перебування" + +#: lib/Horde/Crypt/Smime.php:154 +msgid "" +"Message verified successfully but the signer's certificate could not be " +"verified." +msgstr "" +"Лист перевірений успішно, але сертифікат підписувача не може бути " +"перевірений." + +#: lib/Horde/Crypt/Smime.php:142 +msgid "Message verified successfully." +msgstr "Лист успішно перевірено." + +#: lib/Horde/Crypt/Pgp.php:178 +msgid "Name" +msgstr "Ім'я" + +#: lib/Horde/Crypt/Pgp.php:216 +msgid "Never" +msgstr "Ніколи" + +#: lib/Horde/Crypt/Smime.php:736 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"Не надано шлях до OpenSSL. Бінарник OpenSSL необхідний для роботи з даними " +"PKCS 12." + +#: lib/Horde/Crypt/Pgp.php:218 lib/Horde/Crypt/Pgp.php:219 +msgid "None" +msgstr "Жодна" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Not After" +msgstr "Не після" + +#: lib/Horde/Crypt/Smime.php:546 +msgid "Not Before" +msgstr "Не перед" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OpenSSL помилка: Не можу витягнути дані з підписаної частини S/MIME." + +#: lib/Horde/Crypt/Smime.php:498 +msgid "Organisation" +msgstr "Організація" + +#: lib/Horde/Crypt/Smime.php:499 +msgid "Organisational Unit" +msgstr "Підрозділ" + +#: lib/Horde/Crypt/Pgp.php:704 +msgid "PGP Digital Signature" +msgstr "Цифровий підпис PGP" + +#: lib/Horde/Crypt/Pgp.php:761 +msgid "PGP Encrypted Data" +msgstr "Закриптовані дані PGP" + +#: lib/Horde/Crypt/Pgp.php:835 +msgid "PGP Public Key" +msgstr "Відкритий ключ PGP" + +#: lib/Horde/Crypt/Pgp.php:813 +msgid "PGP Signed/Encrypted Data" +msgstr "Дані Підписані/Закодовані PGP" + +#: lib/Horde/Crypt/Smime.php:775 +msgid "Password incorrect" +msgstr "Пароль невірний" + +#: lib/Horde/Crypt/Pgp.php:214 +msgid "Private Key" +msgstr "Приватний ключ" + +#: lib/Horde/Crypt/Pgp.php:214 +msgid "Public Key" +msgstr "Відкритий ключ" + +#: lib/Horde/Crypt/Pgp.php:95 +msgid "Public/Private keypair not generated successfully." +msgstr "Відкритий/Закритий ключі не згенеровані успішно." + +#: lib/Horde/Crypt/Smime.php:272 +msgid "S/MIME Encrypted Message" +msgstr "S/MIME закодований лист" + +#: lib/Horde/Crypt/Smime.php:225 +msgid "S/MIME Signature" +msgstr "Підпис S/MIME" + +#: lib/Horde/Crypt/Smime.php:567 +msgid "Serial Number" +msgstr "Серійний номер" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "State or Province" +msgstr "Область або Регіон" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "Street Address" +msgstr "Вулиця (адреса)" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Surname" +msgstr "Прізвище" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "Telephone Number" +msgstr "Номер телефону" + +#: lib/Horde/Crypt/Smime.php:665 +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Модуль openssl необхідний для класу Horde_Crypt_Smime:: ." + +#: lib/Horde/Crypt/Pgp.php:654 +msgid "Unable to determine if data was encrypted symmetrically." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:220 lib/Horde/Crypt/Pgp.php:221 +#: lib/Horde/Crypt/Pgp.php:222 +msgid "Unknown" +msgstr "Невідомий" + +#: lib/Horde/Crypt/Smime.php:545 +msgid "Validity" +msgstr "Дійсність" + +#: lib/Horde/Crypt/Smime.php:149 +msgid "Verification failed - an unknown error has occurred." +msgstr "Перевірка невдала - трапилась невідома помилка." + +#: lib/Horde/Crypt/Smime.php:151 +msgid "Verification failed - this message may have been tampered with." +msgstr "Перевірка невдала - цей лист може бути підробкою." + +#: lib/Horde/Crypt/Smime.php:566 +msgid "Version" +msgstr "Версія" + +#: lib/Horde/Crypt/Smime.php:510 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 Базові обмеження" + +#: lib/Horde/Crypt/Smime.php:509 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 розширенне використання ключа" + +#: lib/Horde/Crypt/Smime.php:511 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 Інше ім'я теми" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 Ідентифікатор ключа Об'єкта" + +#: lib/Horde/Crypt/Smime.php:552 +msgid "X509v3 extensions" +msgstr "Розширення X509v3" + +#: lib/Horde/Crypt/Smime.php:654 +msgid "not yet implemented" +msgstr "наразі не реалізовано" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/zh_CN/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/zh_CN/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/zh_CN/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,427 @@ +# Chinese translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s 指纹" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "需要密码才可以解密邮件。" + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "需要 PGP 公钥来验证签名邮件。" + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "需要 PGP 公钥、私钥和密码来签署邮件。" + +#: lib/Horde/Crypt/Smime.php:311 +#, fuzzy +msgid "A public S/MIME key is required to encrypt a message." +msgstr "需要 S/MIME 公钥来加密邮件。" + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "需要 S/MIME 公钥、S/MIME 私钥和密码来解密邮件。" + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "需要 S/MIME 公钥、S/MIME 私钥和密码来签署邮件。" + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "CRL 分发点" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "证书详情" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "证书所有者" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "证书政策" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "注释" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "常用名" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "连接公钥服务器被拒。" + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "连接公钥服务器被拒。原因:%s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "无法使用 PGP 加密邮件:" + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "无法使用 PGP 签署邮件: " + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "无法使用 S/MIME 加密邮件。" + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "无法使用 S/MIME 签署邮件。" + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "无法解密 PGP 数据:" + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "无法解密 S/MIME 数据。" + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "无法确定收件人电子邮件地址。" + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "无法从证书服务器获取公钥。" + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "国家" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "电子邮件" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "电子邮件地址" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "过期日" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "说明" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "名字" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "哈希算法" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "发行者" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "创建密钥" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "密钥特征" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "密钥长度" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "密钥类型" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "密钥语法" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "密钥已在公钥服务器中。" + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "地区" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "邮件验证成功,但签名者的证书验证失败。" + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "模数" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "姓名" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "Netscape Base URL" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "Netscape CA 证书撤销 URL" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "Netscape CA 策略 URL" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "Netscape 续订 URL" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "Netscape 证书撤销 URL" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "Netscape SSL服务器名称" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Netscape 证书注释" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Netscape 证书类型" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "永不" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"未提供 OpenSSL 二进制库路径。OpenSSL 二进制库需要和 PKCS 12 数据搭配工作。" + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "无" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "不在此之后" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "不在此之前" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OpenSSL 错误:无法从已签名的 S/MIME 部分抽取数据。" + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "组织" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "组织单位" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "PGP 数字签名" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "PGP 加密数据" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "PGP 公钥" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP 已签名/已加密数据" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "密码错误" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "私钥" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "公钥" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "公钥算法" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "公钥信息" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "未成功生成公钥/私钥对。" + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA 公钥 (%d 位)" + +#: lib/Horde/Crypt/Pgp.php:227 +#, fuzzy +msgid "Returned error message:" +msgstr "阅读邮件" + +#: lib/Horde/Crypt/Pgp.php:1644 +#, fuzzy +msgid "Revocation key not generated successfully." +msgstr "未成功生成公钥/私钥对。" + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME 加密签名" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "使用 S/MIME 加密的邮件" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "序列号" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "签名" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "签名算法" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "地区或省" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "街道地址" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "别名" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "电话号码" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "验证签名邮件需要有已解开的 PGP 区。" + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Horde_Crypt_smime:: 类需要 openssl 模块。" + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "无法获取证书详情" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "未知" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "不支持的扩展" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "有效性" + +#: lib/Horde/Crypt/Smime.php:191 +#, fuzzy +msgid "Verification failed - an unknown error has occurred." +msgstr "出现未知错误。" + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "验证失败 - 此邮件可能已被他人篡改。" + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "版本" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 基本限制" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 密钥扩展用途" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 用户备用名" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 用户的公钥标识" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "X509v3 扩展项" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "仍未实现" Binary files /tmp/tmpNwixZI/xdqO5f81ZG/php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/zh_TW/LC_MESSAGES/Horde_Crypt.mo and /tmp/tmpNwixZI/JhCdlgjoEX/php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/zh_TW/LC_MESSAGES/Horde_Crypt.mo differ diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/locale/zh_TW/LC_MESSAGES/Horde_Crypt.po 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,424 @@ +# Chinese translations for Horde_Crypt module. +# Copyright 2010-2017 Horde LLC (http://www.horde.org/) +# This file is distributed under the same license as the Horde_Crypt module. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: Horde_Crypt\n" +"Report-Msgid-Bugs-To: dev@lists.horde.org\n" +"POT-Creation-Date: 2010-10-13 01:27+0200\n" +"PO-Revision-Date: 2010-10-13 01:27+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: i18n@lists.horde.org\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: lib/Horde/Crypt/Smime.php:614 +#, php-format +msgid "%s Fingerprint" +msgstr "%s 指紋" + +#: lib/Horde/Crypt/Pgp.php:1240 +msgid "A passphrase is required to decrypt a message." +msgstr "欲加密郵件,還需要有一組密碼." + +#: lib/Horde/Crypt/Pgp.php:1307 +msgid "A public PGP key is required to verify a signed message." +msgstr "欲驗證已簽章的郵件,還需要有一個 PGP 公開金鑰." + +#: lib/Horde/Crypt/Pgp.php:1164 +msgid "" +"A public PGP key, private PGP key, and passphrase are required to sign a " +"message." +msgstr "欲執行郵件簽章,還需要有一個公開 PGP 金鑰,私密 PGP 金鑰,以及通關口令." + +#: lib/Horde/Crypt/Smime.php:311 +msgid "A public S/MIME key is required to encrypt a message." +msgstr "欲加密郵件,還需要有一個 SMIME 公開金鑰." + +#: lib/Horde/Crypt/Smime.php:422 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to " +"decrypt a message." +msgstr "欲解密郵件,還需要有一個公開 SMIME 金鑰,私密 SMIME 金鑰,以及通關口令." + +#: lib/Horde/Crypt/Smime.php:360 +msgid "" +"A public S/MIME key, private S/MIME key, and passphrase are required to sign " +"a message." +msgstr "" +"欲執行郵件簽章,還需要有一個公開 S/MIME 金鑰,私密 S/MIME 金鑰,以及通關口令." + +#: lib/Horde/Crypt/Smime.php:506 +msgid "CRL Distribution Points" +msgstr "CRL 分部點" + +#: lib/Horde/Crypt/Smime.php:609 +msgid "Certificate Details" +msgstr "憑證細節" + +#: lib/Horde/Crypt/Smime.php:520 +msgid "Certificate Owner" +msgstr "憑證擁有者" + +#: lib/Horde/Crypt/Smime.php:505 +msgid "Certificate Policies" +msgstr "憑證政策" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Comment" +msgstr "評論" + +#: lib/Horde/Crypt/Smime.php:475 +msgid "Common Name" +msgstr "稱呼" + +#: lib/Horde/Crypt/Pgp.php:939 +msgid "Connection refused to the public keyserver." +msgstr "連結至公開金鑰伺服器時遭拒." + +#: lib/Horde/Crypt/Pgp.php:950 +#, php-format +msgid "Connection refused to the public keyserver. Reason: %s (%s)" +msgstr "連結至公開金鑰伺服器時遭拒. 原因: %s (%s)" + +#: lib/Horde/Crypt/Pgp.php:1132 +msgid "Could not PGP encrypt message: " +msgstr "無法以 PGP 加密郵件: " + +#: lib/Horde/Crypt/Pgp.php:1201 +msgid "Could not PGP sign message: " +msgstr "無法以 PGP 執行郵件簽章: " + +#: lib/Horde/Crypt/Smime.php:330 +msgid "Could not S/MIME encrypt message." +msgstr "無法以 S/MIME 加密郵件." + +#: lib/Horde/Crypt/Smime.php:391 +msgid "Could not S/MIME sign message." +msgstr "無法為 S/MIME 郵件簽章." + +#: lib/Horde/Crypt/Pgp.php:1276 +msgid "Could not decrypt PGP data: " +msgstr "無法解密 PGP 資料: " + +#: lib/Horde/Crypt/Smime.php:440 +msgid "Could not decrypt S/MIME data." +msgstr "無法解密 S/MIME 資料." + +#: lib/Horde/Crypt/Pgp.php:659 +msgid "Could not determine the recipient's e-mail address." +msgstr "無法決定收件人的電子郵件位址." + +#: lib/Horde/Crypt/Pgp.php:759 lib/Horde/Crypt/Pgp.php:848 +msgid "Could not obtain public key from the keyserver." +msgstr "無法自金鑰伺服器取得公開金鑰." + +#: lib/Horde/Crypt/Smime.php:478 +msgid "Country" +msgstr "國家" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "E-Mail" +msgstr "電子郵件" + +#: lib/Horde/Crypt/Smime.php:474 +msgid "Email Address" +msgstr "電子郵件住址" + +#: lib/Horde/Crypt/Pgp.php:1584 lib/Horde/Crypt/Pgp.php:1592 +msgid "Error while talking to pgp binary." +msgstr "" + +#: lib/Horde/Crypt/Smime.php:1251 lib/Horde/Crypt/Smime.php:1269 +#: lib/Horde/Crypt/Smime.php:1284 +msgid "Error while talking to smime binary." +msgstr "" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Expiration Date" +msgstr "到期日" + +#: lib/Horde/Crypt/Smime.php:586 +msgid "Exponent" +msgstr "解說員" + +#: lib/Horde/Crypt/Smime.php:484 +msgid "Given Name" +msgstr "名稱" + +#: lib/Horde/Crypt/Pgp.php:426 +msgid "Hash-Algorithm" +msgstr "雜湊-演算" + +#: lib/Horde/Crypt/Smime.php:534 +msgid "Issuer" +msgstr "簽發者" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Creation" +msgstr "金鑰建立" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key Fingerprint" +msgstr "金鑰特徵" + +#: lib/Horde/Crypt/Pgp.php:427 +msgid "Key ID" +msgstr "金鑰識別號碼" + +#: lib/Horde/Crypt/Pgp.php:425 +msgid "Key Length" +msgstr "金鑰長度" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Key Type" +msgstr "金鑰型態" + +#: lib/Horde/Crypt/Smime.php:507 +msgid "Key Usage" +msgstr "金鑰語法" + +#: lib/Horde/Crypt/Pgp.php:782 +msgid "Key already exists on the public keyserver." +msgstr "目前的公開金鑰伺服器中,已經存在你的金鑰." + +#: lib/Horde/Crypt/Smime.php:480 +msgid "Location" +msgstr "地區" + +#: lib/Horde/Crypt/Smime.php:189 +msgid "" +"Message Verified Successfully but the signer's certificate could not be " +"verified." +msgstr "郵件驗證已完成,但是使用者的簽章卻無法通過驗證." + +#: lib/Horde/Crypt/Smime.php:583 +msgid "Modulus" +msgstr "模組" + +#: lib/Horde/Crypt/Pgp.php:424 +msgid "Name" +msgstr "名稱" + +#: lib/Horde/Crypt/Smime.php:490 +msgid "Netscape Base URL" +msgstr "Netscape 為基礎的網址" + +#: lib/Horde/Crypt/Smime.php:492 +msgid "Netscape CA Revocation URL" +msgstr "Netscape 憑證作廢網址" + +#: lib/Horde/Crypt/Smime.php:494 +msgid "Netscape CA policy URL" +msgstr "Netscape 憑證政策網址" + +#: lib/Horde/Crypt/Smime.php:493 +msgid "Netscape Renewal URL" +msgstr "Netscape 更新網址" + +#: lib/Horde/Crypt/Smime.php:491 +msgid "Netscape Revocation URL" +msgstr "Netscape 作廢網址" + +#: lib/Horde/Crypt/Smime.php:495 +msgid "Netscape SSL server name" +msgstr "Netscape SSL 伺服器名稱" + +#: lib/Horde/Crypt/Smime.php:496 +msgid "Netscape certificate comment" +msgstr "Netscape 憑證的註解" + +#: lib/Horde/Crypt/Smime.php:489 +msgid "Netscape certificate type" +msgstr "Netscape 憑證型態" + +#: lib/Horde/Crypt/Pgp.php:449 +msgid "Never" +msgstr "從未" + +#: lib/Horde/Crypt/Smime.php:1217 +msgid "" +"No path to the OpenSSL binary provided. The OpenSSL binary is necessary to " +"work with PKCS 12 data." +msgstr "" +"未輸入 OpenSSL 二元執行檔的全路徑. PKCS 12 規格的加密資料需要用到該程式." + +#: lib/Horde/Crypt/Pgp.php:451 lib/Horde/Crypt/Pgp.php:452 +msgid "None" +msgstr "無" + +#: lib/Horde/Crypt/Smime.php:549 +msgid "Not After" +msgstr "非之後" + +#: lib/Horde/Crypt/Smime.php:548 +msgid "Not Before" +msgstr "非之前" + +#: lib/Horde/Crypt/Smime.php:231 +msgid "OpenSSL error: Could not extract data from signed S/MIME part." +msgstr "OpenSSL 錯誤: 無法從 S/MIME 簽章附件解開資料." + +#: lib/Horde/Crypt/Smime.php:476 +msgid "Organisation" +msgstr "組織" + +#: lib/Horde/Crypt/Smime.php:477 +msgid "Organisational Unit" +msgstr "組織單位" + +#: lib/Horde/Crypt/Pgp.php:1406 +msgid "PGP Digital Signature" +msgstr "PGP 數位簽章" + +#: lib/Horde/Crypt/Pgp.php:1450 +msgid "PGP Encrypted Data" +msgstr "PGP 加密資料" + +#: lib/Horde/Crypt/Pgp.php:1511 +msgid "PGP Public Key" +msgstr "PGP 公開金鑰" + +#: lib/Horde/Crypt/Pgp.php:1493 +msgid "PGP Signed/Encrypted Data" +msgstr "PGP 已簽章/已加密 資料" + +#: lib/Horde/Crypt/Smime.php:1256 +msgid "Password incorrect" +msgstr "密碼不正確" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Private Key" +msgstr "私密金鑰" + +#: lib/Horde/Crypt/Pgp.php:447 +msgid "Public Key" +msgstr "公開金鑰" + +#: lib/Horde/Crypt/Smime.php:554 +msgid "Public Key Algorithm" +msgstr "公開金鑰演算" + +#: lib/Horde/Crypt/Smime.php:553 +msgid "Public Key Info" +msgstr "公開金鑰資訊" + +#: lib/Horde/Crypt/Pgp.php:225 +msgid "Public/Private keypair not generated successfully." +msgstr "公開/私密金鑰對並未被產生." + +#: lib/Horde/Crypt/Smime.php:572 +#, php-format +msgid "RSA Public Key (%d bit)" +msgstr "RSA 公開金鑰 (%d 位元)" + +#: lib/Horde/Crypt/Pgp.php:227 +msgid "Returned error message:" +msgstr "已回傳的錯誤訊息:" + +#: lib/Horde/Crypt/Pgp.php:1644 +msgid "Revocation key not generated successfully." +msgstr "撤銷金鑰對並未被產生." + +#: lib/Horde/Crypt/Smime.php:252 +msgid "S/MIME Cryptographic Signature" +msgstr "S/MIME 加密簽章" + +#: lib/Horde/Crypt/Smime.php:283 +msgid "S/MIME Encrypted Message" +msgstr "郵件已使用 S/MIME 加密" + +#: lib/Horde/Crypt/Smime.php:611 +msgid "Serial Number" +msgstr "序號" + +#: lib/Horde/Crypt/Smime.php:622 +msgid "Signature" +msgstr "簽章" + +#: lib/Horde/Crypt/Smime.php:621 +msgid "Signature Algorithm" +msgstr "簽章演算" + +#: lib/Horde/Crypt/Smime.php:479 +msgid "State or Province" +msgstr "省" + +#: lib/Horde/Crypt/Smime.php:481 +msgid "Street Address" +msgstr "街道" + +#: lib/Horde/Crypt/Smime.php:483 +msgid "Surname" +msgstr "綽號" + +#: lib/Horde/Crypt/Smime.php:482 +msgid "Telephone Number" +msgstr "電話號碼" + +#: lib/Horde/Crypt/Pgp.php:1311 +msgid "" +"The detached PGP signature block is required to verify the signed message." +msgstr "驗證郵件簽章需要有一個已解開的 PGP 區塊." + +#: lib/Horde/Crypt/Smime.php:1146 +#, fuzzy +msgid "The openssl module is required for the Horde_Crypt_Smime:: class." +msgstr "Horde_Crypt_smime:: 類別,必需要有 openssl 模組." + +#: lib/Horde/Crypt/Smime.php:512 +msgid "Unable to extract certificate details" +msgstr "無法解開憑證細節" + +#: lib/Horde/Crypt/Pgp.php:453 lib/Horde/Crypt/Pgp.php:454 +#: lib/Horde/Crypt/Pgp.php:455 +msgid "Unknown" +msgstr "未知的" + +#: lib/Horde/Crypt/Smime.php:596 lib/Horde/Crypt/Smime.php:844 +#: lib/Horde/Crypt/Smime.php:850 +msgid "Unsupported Extension" +msgstr "未支援的副檔名" + +#: lib/Horde/Crypt/Smime.php:547 +msgid "Validity" +msgstr "有效性" + +#: lib/Horde/Crypt/Smime.php:191 +msgid "Verification failed - an unknown error has occurred." +msgstr "驗證失敗 - 發生了一個未知的錯誤." + +#: lib/Horde/Crypt/Smime.php:193 +msgid "Verification failed - this message may have been tampered with." +msgstr "驗證失敗 - 此郵件可能已遭人擅自篡改." + +#: lib/Horde/Crypt/Smime.php:610 +msgid "Version" +msgstr "版本" + +#: lib/Horde/Crypt/Smime.php:502 +msgid "X509v3 Basic Constraints" +msgstr "X509v3 基本限制" + +#: lib/Horde/Crypt/Smime.php:501 +msgid "X509v3 Extended Key Usage" +msgstr "X509v3 延伸金鑰語法" + +#: lib/Horde/Crypt/Smime.php:503 +msgid "X509v3 Subject Alternative Name" +msgstr "X509v3 主旨替代名稱" + +#: lib/Horde/Crypt/Smime.php:504 +msgid "X509v3 Subject Key Identifier" +msgstr "X509v3 主旨金鑰識別者" + +#: lib/Horde/Crypt/Smime.php:592 +msgid "X509v3 extensions" +msgstr "X509v3 副檔名" + +#: lib/Horde/Crypt/Smime.php:1135 +msgid "not yet implemented" +msgstr "尚未實作." diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/AllTests.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/AllTests.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/AllTests.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/AllTests.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,3 @@ +run(); diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/bootstrap.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/bootstrap.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/bootstrap.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/bootstrap.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,3 @@ +|~\{[]} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_encrypted_symmetric.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_encrypted_symmetric.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_encrypted_symmetric.txt 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_encrypted_symmetric.txt 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,9 @@ +-----BEGIN PGP MESSAGE----- +Version: GnuPG v1.4.5 (GNU/Linux) + +jA0EAwMC8w6TJuJ4zhBgyYdWhfV8CJIOWg2IHcVVngMH5xHp7eiESg753YuwYaCJ +bYR4pItctfQbRDVhlQXqveO6SZCv9WJVrtiUBIo0N4r3p2Hsx0gL34MgLW02xpTc +4CfPwB+3VNeSTym5unWvVsB4VAuW78Xvc8fw6tjZnTPNUqA2IfH30gkpfnzBwcno +lNMhxacLMXE= +=N1Bk +-----END PGP MESSAGE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_encrypted.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_encrypted.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_encrypted.txt 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_encrypted.txt 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,15 @@ +-----BEGIN PGP MESSAGE----- +Version: GnuPG v1.4.5 (GNU/Linux) + +hQEOAyTtKXee8HSpEAP6Aj5+9VlYxyMQepJxeejXHePK58xs6jSv1oUn/I4zjdW3 +XKvXAGy/2dQdYLOFHCfMqzLx2cKPh/UL5+M89p/oSIXpeWz2anxrt/1JxnQHSIaD +n88jQ/H6Es07wGbJ41RvM8n4aobdVXVk9ujLi1nk4/2Pi2Ped22I6aAi3eO+dRED +/An4L6SCmFFdqTphEjIHRSeqf6QVp/tjdnYXMkMrqVJGtFSsvfrbhF7RGyWVQra3 +rEZdnJaPPF6CwtG99akP38I6iQ0c9GqWX8/VfAYaQyeqKkDJpdzfN8Pe9Z8Q9XVs +/qQXaIM2QxSen7K8qEC5WBah/ZOWpSrWSlk+fM65AXaS0qUBwvQoHi2/tjijfGZD +uKt4cYNal3aZLeDNWry+nGO2mckjCYsOiyerPOYPU84OvygndcOR8Y8r8+/No8IA +vCzvSVygJ0MCvq0QtIXRF8XDVQJt5eSAo18Tb4yfc6cU/NKWApY0/92OPAiRu3sA +NdxJM6Whb1cDsfAIOPT9sX4yM2K7JmnoxP8owOtu/ViwvIkWiJ55+dPNUVFG3cAf +KUjSRnwgJrg= +=RtGk +-----END PGP MESSAGE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_private.asc php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_private.asc --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_private.asc 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_private.asc 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,27 @@ +-----BEGIN PGP PRIVATE KEY BLOCK----- +Version: GnuPG v1.4.5 (GNU/Linux) + +lQHhBETcWvARBADNitbvsWy5/hhV+WcU2ttmtXkAj2DqJVgJdGS2RH8msO0roG5j +CQK/e0iMJki5lfdgxvxxWgStYMnfF5ftgWA7JV+BZUzJt12Lobm0zdENv2TqL2vc +xlPTmEGsvfPDTbY+Gr3jvuODboXat7bUn2E723WXPdh2A7KNNnLou7JF2wCgiKs/ +RqNKM/Zm01PxLbQ+rs9ghd0D/jLUfJeYWySoDsvfO8e4UyDxDVTBLkkdw3XzLx1F +4SS/Cc2Z9yJuXiepzSH/G/vhdN5ROv12kJwA4FbwsFv5C1uCQleWiPngFixca9Nw +lAd2X2Cp0/4D2XRq1M9dEbcYdrgAuyzt2ZToj3aFaYNGwjfHoLqSngOu6/d3KD1d +i0b2A/9wnXo41kPwS73gU1Un2KKMkKqnczCQHdpopO6NjKaLhNcouRauLrgbrS5y +A1CW+nxjkKVvWrP/VFBmapUpjE1C51J9P0/ub8tRr7H0xHdTQyufv01lmfkjUpVF +n3GVf95l4seBFzD7r580aTx+dJztoHEGWrsWZTNJwo6IIlFOIf4DAwKhFBeOUwqs +hWA4x/9ffd4UC9JengF978ktHEm4RtB+5QS2angOVMG4mHqkeQobo2qEta2lciQQ +aqeJ5rQlTXkgTmFtZSAoTXkgQ29tbWVudCkgPG1lQGV4YW1wbGUuY29tPohgBBMR +AgAgBQJE3FrwAhsjBgsJCAcDAgQVAggDBBYCAwECHgECF4AACgkQfKdEJrreq9fi +vACeLBcWErSQU4ZGQsjedhwfdst9cLQAnRETpwmqt/XvcGFVsOE28MUrUzOGnQFX +BETcWvAQBADNgIJ4nDlfgBOI/iqyNy08C9+MjxrqMylrj4TPn3rRk8wySr2myX+j +9CML5EHOtsxANYeI9u7hOF11n5Z8fDht/WGJrNR7EtRhNN6mkKsPaEuO3fhz6Egw +JYReUVzDJbvnV2fRCvQoEGaSntZGQaQzIzIL+/gMEFpEVRK1P2I3VwADBQP+K2Rm +mkm3DonXFlUUDWWdhEF4b7fy5/IPj41PSSOdo0IP4dprFoe15Vs9gWOYvzcnjy+B +bOwhVwsjE3F36hf04od3uTSM0dLS/xmpSvgbBh181T5c3W5aKT/daVhyxXJ4csxE ++JCVKbaBubne0DPEuyZjrYlL5Lm0z3VhNCcR0Lz+AwMCoRQXjlMKrIVgzwaI65oM +T4XCFhFGk67RoJ4D1I4R/7pXZffFhdCHsPzZBHqsadyC0chmu2ZoYtIcOxxSQmzc +4swO7XC5lohJBBgRAgAJBQJE3FrwAhsMAAoJEHynRCa63qvXpjcAoIeCpIKzYgIj +AfGSLg/OfLBCU3xMAJ9V3CCBw+tP458WDRprIE+SbhUY8Q== +=41gN +-----END PGP PRIVATE KEY BLOCK----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_public.asc php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_public.asc --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_public.asc 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_public.asc 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,24 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG v1.4.5 (GNU/Linux) + +mQGiBETcWvARBADNitbvsWy5/hhV+WcU2ttmtXkAj2DqJVgJdGS2RH8msO0roG5j +CQK/e0iMJki5lfdgxvxxWgStYMnfF5ftgWA7JV+BZUzJt12Lobm0zdENv2TqL2vc +xlPTmEGsvfPDTbY+Gr3jvuODboXat7bUn2E723WXPdh2A7KNNnLou7JF2wCgiKs/ +RqNKM/Zm01PxLbQ+rs9ghd0D/jLUfJeYWySoDsvfO8e4UyDxDVTBLkkdw3XzLx1F +4SS/Cc2Z9yJuXiepzSH/G/vhdN5ROv12kJwA4FbwsFv5C1uCQleWiPngFixca9Nw +lAd2X2Cp0/4D2XRq1M9dEbcYdrgAuyzt2ZToj3aFaYNGwjfHoLqSngOu6/d3KD1d +i0b2A/9wnXo41kPwS73gU1Un2KKMkKqnczCQHdpopO6NjKaLhNcouRauLrgbrS5y +A1CW+nxjkKVvWrP/VFBmapUpjE1C51J9P0/ub8tRr7H0xHdTQyufv01lmfkjUpVF +n3GVf95l4seBFzD7r580aTx+dJztoHEGWrsWZTNJwo6IIlFOIbQlTXkgTmFtZSAo +TXkgQ29tbWVudCkgPG1lQGV4YW1wbGUuY29tPohgBBMRAgAgBQJE3FrwAhsjBgsJ +CAcDAgQVAggDBBYCAwECHgECF4AACgkQfKdEJrreq9fivACeLBcWErSQU4ZGQsje +dhwfdst9cLQAnRETpwmqt/XvcGFVsOE28MUrUzOGuQENBETcWvAQBADNgIJ4nDlf +gBOI/iqyNy08C9+MjxrqMylrj4TPn3rRk8wySr2myX+j9CML5EHOtsxANYeI9u7h +OF11n5Z8fDht/WGJrNR7EtRhNN6mkKsPaEuO3fhz6EgwJYReUVzDJbvnV2fRCvQo +EGaSntZGQaQzIzIL+/gMEFpEVRK1P2I3VwADBQP+K2Rmmkm3DonXFlUUDWWdhEF4 +b7fy5/IPj41PSSOdo0IP4dprFoe15Vs9gWOYvzcnjy+BbOwhVwsjE3F36hf04od3 +uTSM0dLS/xmpSvgbBh181T5c3W5aKT/daVhyxXJ4csxE+JCVKbaBubne0DPEuyZj +rYlL5Lm0z3VhNCcR0LyISQQYEQIACQUCRNxa8AIbDAAKCRB8p0Qmut6r16Y3AJ9h +umO5uT5yDcir3zwqUAxzBAkE4ACcCtGfb6usaTKnNXo+ZuLoHiOwIE4= +=GCjU +-----END PGP PUBLIC KEY BLOCK----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signature.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signature.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signature.txt 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signature.txt 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.5 (GNU/Linux) + +iD8DBQBE3JdufKdEJrreq9cRAhQ2AJ44XNI1uKRJB2KR3EvhUCcIKQwJ0wCfRsjv +5pAbY1qypr+8m0ZHJJcpubE= +=F0tK +-----END PGP SIGNATURE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signed2.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signed2.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signed2.txt 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signed2.txt 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,9 @@ +-----BEGIN PGP MESSAGE----- +Version: GnuPG v1.4.5 (GNU/Linux) + +owGbwMvMwCRYs9xFbde91dcZT79MYnC5M0XBwNDI2MTUzNzCEj+LKyQjVaGwNDM5 +WyGpKL88TyEtv0IhqzS3oFghvyy1SKEEKJ2TWFWpkJKfrjeqmD6KFSgxeRoVHU10 +KlJUUlmuqqahaWsft2VDgrayrp6Olnq8lbWNXU1dTHV0bC1Xhx0zKzhlwpKqIFPg +ZIYZfd+39c/3v2Hbbi9tZT5P+o/7eyOGuVJ6rUZsLHVikwvyfuc/2lPb3Cv/CwA= +=Cw7w +-----END PGP MESSAGE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signed.txt php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signed.txt --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signed.txt 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/pgp_signed.txt 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,24 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +0123456789012345678901234567890123456789 +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +0123456789012345678901234567890123456789 +!"$%&()=?^`+#-.,*'_:;<>|~\{[]} +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.5 (GNU/Linux) + +iD8DBQFE3JNgfKdEJrreq9cRAm4lAJ48IbiwbO4ToXa2BrJaAZAFt43AiACZATs+ +gnfrwrK41BzMWmVRhtjB1Po= +=5HXb +-----END PGP SIGNATURE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/smime_signed_opaque.eml php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/smime_signed_opaque.eml --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/smime_signed_opaque.eml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/smime_signed_opaque.eml 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,54 @@ +To: jan@localhost +From: jan@horde.org +Subject: S/MIME +MIME-Version: 1.0 +Content-Disposition: attachment; filename="smime.p7m" +Content-Type: application/x-pkcs7-mime; smime-type=signed-data; name="smime.p7m" +Content-Transfer-Encoding: base64 + +MIIIUgYJKoZIhvcNAQcCoIIIQzCCCD8CAQExDzANBglghkgBZQMEAgEFADA5Bgkq +hkiG9w0BBwGgLAQqQ29udGVudC1UeXBlOiB0ZXh0L3BsYWluDQoNCkhlbGxvIFdv +cmxkIQ0KoIIFKTCCBSUwggQNoAMCAQICECWU1/RaHnK3/iKc6aWtz+swDQYJKoZI +hvcNAQELBQAwgZcxCzAJBgNVBAYTAkdCMRswGQYDVQQIExJHcmVhdGVyIE1hbmNo +ZXN0ZXIxEDAOBgNVBAcTB1NhbGZvcmQxGjAYBgNVBAoTEUNPTU9ETyBDQSBMaW1p +dGVkMT0wOwYDVQQDEzRDT01PRE8gUlNBIENsaWVudCBBdXRoZW50aWNhdGlvbiBh +bmQgU2VjdXJlIEVtYWlsIENBMB4XDTE3MDYxMjAwMDAwMFoXDTE4MDYxMjIzNTk1 +OVowHjEcMBoGCSqGSIb3DQEJARYNamFuQGhvcmRlLm9yZzCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAPfk9XkfTOkpG4n0jCjq1msraAB2iiXmCrHA5m4U +VlpRn7pGo7GzGQIOCKvnKgm8qTjDMUcOqD78iiz0ZrMvaoVVxCOyZ6kcCSAcSTHz +j1RoSlYvCfqj3/hb6PbyZ4m60yXC+7bQmFQBPf70FEHyo3GJa7qn4Y8dl1okiCCX +G8YVdbmjwMDa3ZPq1rzbsUMOe9Z9fXjqsSx/adSThSiCiNc7AJ7VUBKOuX5wCIOp +5WUBEsLxKD11EJ8j23sTWUJQ1whXMoANmmwtRelF/vcxevQlRHPvXiqbfdpwg+dG +WDUqAtTZbENqBZbyk7w+6u+vndqbB4qJyFrkUYzV9sUApksCAwEAAaOCAeMwggHf +MB8GA1UdIwQYMBaAFIKvbIz4xf6WYXzoHz0rcUhexIvAMB0GA1UdDgQWBBRdd+zL +t7VCxFsSZxA9DLTggILmszAOBgNVHQ8BAf8EBAMCBaAwDAYDVR0TAQH/BAIwADAg +BgNVHSUEGTAXBggrBgEFBQcDBAYLKwYBBAGyMQEDBQIwEQYJYIZIAYb4QgEBBAQD +AgUgMEYGA1UdIAQ/MD0wOwYMKwYBBAGyMQECAQEBMCswKQYIKwYBBQUHAgEWHWh0 +dHBzOi8vc2VjdXJlLmNvbW9kby5uZXQvQ1BTMFoGA1UdHwRTMFEwT6BNoEuGSWh0 +dHA6Ly9jcmwuY29tb2RvY2EuY29tL0NPTU9ET1JTQUNsaWVudEF1dGhlbnRpY2F0 +aW9uYW5kU2VjdXJlRW1haWxDQS5jcmwwgYsGCCsGAQUFBwEBBH8wfTBVBggrBgEF +BQcwAoZJaHR0cDovL2NydC5jb21vZG9jYS5jb20vQ09NT0RPUlNBQ2xpZW50QXV0 +aGVudGljYXRpb25hbmRTZWN1cmVFbWFpbENBLmNydDAkBggrBgEFBQcwAYYYaHR0 +cDovL29jc3AuY29tb2RvY2EuY29tMBgGA1UdEQQRMA+BDWphbkBob3JkZS5vcmcw +DQYJKoZIhvcNAQELBQADggEBADiLVGDbTRmEJz4G3QLvhG0YsQoKX/zgJPiZd+6A +pXvp8mrXRlVW+N8f5OOp4LaYc0DWH8EQb68HOPcl+AiWT7RhMDcv7/9biiJHmA7A +o/oVV95Sr0pp4Mfy49jltgv64LznDwUQWCWs/L+8HAER9Bx8Umh8MfEW8zbSnOIW +iRX9IPwPmJP1VhQTqpqNkhpmPmWD0df/xd9jLZtTMT+b9HOBTJNwHLLG/4ly9L8H +V3WQULH7exJb0C8R1y0II+a46tFSq52aoSctzWA1VspR/gKXPdzekIrw9uSagDNH +TR35nQ7uGigW8ybeqcmn/2VMHNVUUHJkIBS7axUvXRqnoRkxggK/MIICuwIBATCB +rDCBlzELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQ +MA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxPTA7 +BgNVBAMTNENPTU9ETyBSU0EgQ2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBTZWN1 +cmUgRW1haWwgQ0ECECWU1/RaHnK3/iKc6aWtz+swDQYJYIZIAWUDBAIBBQCggeQw +GAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcwNjEy +MTMyNTM1WjAvBgkqhkiG9w0BCQQxIgQg4UCUjOK03HC5PDc5IAISYnZpWwkgylHy ++phYulwu/j8weQYJKoZIhvcNAQkPMWwwajALBglghkgBZQMEASowCwYJYIZIAWUD +BAEWMAsGCWCGSAFlAwQBAjAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwDQYI +KoZIhvcNAwICAUAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEB +BQAEggEAsekP7B55x3fiB80p6FJJOcSv2B+hmyMnzuNhrDtLJqSAiH5yI4wCKaiQ +q73ihwYG/w4F8wGAmuHO2+0SAxg1YwXfRImiLK63o2adCZAOzyqeIoaY6xw+9N+k +USx4doISJsjzT3L9b1VJokhaQRTPoAerq4CTm0IWAh9elzsjBuTqvVJFKtxVXQ8f +chfy5kmLj6y5mTVksiKIqxmo0jcyeJEaeRHmoCTKb0uMgJFWV/BuZluNpylg8uzw +bqSJl5oRnF1O02gZG8MU1HOaKG/4LAX6XxQS6/TMQXUZpaSpW7yhBGdqil7/pueK +1BBBy62KQVunLRJehCpP6aI9B0rw1A== + diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/smime_subjectAltName.pem php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/smime_subjectAltName.pem --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/smime_subjectAltName.pem 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/fixtures/smime_subjectAltName.pem 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDGzCCAoSgAwIBAgIJAO0Hyim1pgtmMA0GCSqGSIb3DQEBBQUAMFIxCzAJBgNV +BAYTAlVTMRYwFAYDVQQIEw1NYXNzYWNodXNldHRzMQ8wDQYDVQQHEwZCb3N0b24x +GjAYBgNVBAoTEVRoZSBIb3JkZSBQcm9qZWN0MB4XDTA3MTIyODIyMDQwN1oXDTA4 +MDEyNzIyMDQwN1owUjELMAkGA1UEBhMCVVMxFjAUBgNVBAgTDU1hc3NhY2h1c2V0 +dHMxDzANBgNVBAcTBkJvc3RvbjEaMBgGA1UEChMRVGhlIEhvcmRlIFByb2plY3Qw +gZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAOKFM64qxeVqHmfxxhBzE/zCgqzA +8c5JxJc2YYfKPCkQWGozRfUq45YDV4CsfJNgGMbjYdOe2cQOMpofdWgobD1xnKid +mmwRvxTuqjOhjx020VFOMuq0t8tl7dYPrsQcNl+9g7Pg2mG2oC768NQHgP6GnZgH +LPxkfEaDDVrqjSyFAgMBAAGjgfgwgfUwQQYDVR0RBDowOIERdGVzdDFAZXhhbXBs +ZS5jb22BEXRlc3QyQGV4YW1wbGUuY29tgRB0ZXN0QGV4YW1wbGUuY29tMB0GA1Ud +DgQWBBReeRq4wDuMdSnGMChBJCSzXmGxTTCBggYDVR0jBHsweYAUXnkauMA7jHUp +xjAoQSQks15hsU2hVqRUMFIxCzAJBgNVBAYTAlVTMRYwFAYDVQQIEw1NYXNzYWNo +dXNldHRzMQ8wDQYDVQQHEwZCb3N0b24xGjAYBgNVBAoTEVRoZSBIb3JkZSBQcm9q +ZWN0ggkA7QfKKbWmC2YwDAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQUFAAOBgQDN +ZR6muF28V3EdsUAwIw7JuZSGMnmZJdKz+b/aNGbK40iZY29OGmEnhy3qBFQHTQY3 +jSpLszDH3l9ZSLNjhoOmnm1TydCMAW4/7dQny7ONx/CFS3r9vHxBNreNk+ZmJgDJ +ASZwyX6IszJ1a3k4t+N3KY9+ZzSISIHJTPZZPzJiRA== +-----END CERTIFICATE----- diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/Pgp/BinaryTest.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/Pgp/BinaryTest.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/Pgp/BinaryTest.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/Pgp/BinaryTest.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,38 @@ + + * @category Horde + * @copyright 2015-2016 Horde LLC + * @ignore + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @subpackage UnitTests + */ +class Horde_Crypt_Pgp_BinaryTest +extends Horde_Crypt_Pgp_TestBase +{ + protected function _setUp() + { + $c = self::getConfig('CRYPT_TEST_CONFIG', __DIR__ . '/../'); + $gnupg = isset($c['gnupg']) + ? $c['gnupg'] + : '/usr/bin/gpg'; + + if (!is_executable($gnupg)) { + $this->markTestSkipped(sprintf( + 'GPG binary not found at %s.', + $gnupg + )); + } + + $backends = array(new Horde_Crypt_Pgp_Backend_Binary($gnupg)); + if (!empty($c['gnupg2'])) { + $backends[] = new Horde_Crypt_Pgp_Backend_Binary($c['gnupg2']); + } + + return $backends; + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/Pgp/TestBase.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/Pgp/TestBase.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/Pgp/TestBase.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/Pgp/TestBase.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,623 @@ + + * @category Horde + * @copyright 2015-2016 Horde LLC + * @ignore + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @subpackage UnitTests + */ +abstract class Horde_Crypt_Pgp_TestBase +extends Horde_Test_Case +{ + private $_language; + + /* Returns the list of backends to test. */ + abstract protected function _setUp(); + + protected function setUp() + { + @date_default_timezone_set('GMT'); + $this->_language = getenv('LANGUAGE'); + } + + protected function tearDown() + { + putenv('LANGUAGE=' . $this->_language); + } + + public function backendProvider() + { + $pgp = array(); + foreach ($this->_setUp() as $backend) { + $pgp[] = array(Horde_Crypt::factory('Pgp', array( + 'backends' => array($backend) + ))); + } + return $pgp; + } + + /** + * @dataProvider backendProvider + */ + public function testBug6601($pgp) + { + $data = $this->_getFixture('bug_6601.asc'); + + putenv('LANGUAGE=C'); + $this->assertEquals( +'Name: Richard Selsky +Key Type: Public Key +Key Creation: 04/11/08 +Expiration Date: 04/11/13 +Key Length: 1024 Bytes +Comment: [None] +E-Mail: rselsky@bu.edu +Hash-Algorithm: pgp-sha1 +Key ID: 0xF3C01D42 +Key Fingerprint: 5912D91D4C79C6701FFF148604A67B37F3C01D42 + +', + $pgp->pgpPrettyKey($data) + ); + } + + /** + * decrypt() message + * + * @dataProvider backendProvider + */ + public function testPgpDecrypt($pgp) + { + // Encrypted data is in ISO-8859-1 format + $crypt = $this->_getFixture('pgp_encrypted.txt'); + + $decrypt = $pgp->decrypt($crypt, array( + 'passphrase' => 'Secret', + 'privkey' => $this->_getPrivateKey(), + 'pubkey' => $this->_getPublicKey(), + 'type' => 'message' + )); + + $this->assertEquals( +'0123456789012345678901234567890123456789 +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +0123456789012345678901234567890123456789 +!"$§%&()=?^´°`+#-.,*\'_:;<>|~\{[]} + +', + Horde_String::convertCharset($decrypt->message, 'ISO-8859-1', 'UTF-8') + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpDecryptSymmetric($pgp) + { + // Encrypted data is in ISO-8859-1 format + $crypt = $this->_getFixture('pgp_encrypted_symmetric.txt'); + + $decrypt = $pgp->decrypt($crypt, array( + 'passphrase' => 'Secret', + 'type' => 'message' + )); + + $this->assertEquals( +'0123456789012345678901234567890123456789 +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +0123456789012345678901234567890123456789 +!"$§%&()=?^´°`+#-.,*\'_:;<>|~\{[]} +', + Horde_String::convertCharset($decrypt->message, 'ISO-8859-1', 'UTF-8') + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpEncrypt($pgp) + { + $clear = $this->_getFixture('clear.txt'); + + $out = $pgp->encrypt($clear, array( + 'recips' => array('me@example.com' => $this->_getPublicKey()), + 'type' => 'message' + )); + + $this->assertStringMatchesFormat( +'-----BEGIN PGP MESSAGE----- +Version: GnuPG %s + +%s +%s +%s +%s +%s +%s +%s +%s +%s +%s +=%s +-----END PGP MESSAGE-----', + $out + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpEncryptSymmetric($pgp) + { + $clear = $this->_getFixture('clear.txt'); + + $out = $pgp->encrypt($clear, array( + 'passphrase' => 'Secret', + 'symmetric' => true, + 'type' => 'message' + )); + + $this->assertStringMatchesFormat( +'-----BEGIN PGP MESSAGE----- +Version: GnuPG %s + +%s +%s +%s +%s +=%s +-----END PGP MESSAGE-----', + $out + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpEncryptedSymmetrically($pgp) + { + $this->assertFalse( + $pgp->encryptedSymmetrically( + $this->_getFixture('pgp_encrypted.txt') + ) + ); + $this->assertTrue( + $pgp->encryptedSymmetrically( + $this->_getFixture('pgp_encrypted_symmetric.txt') + ) + ); + } + + /** + * @dataProvider backendProvider + */ + public function testGetSignersKeyID($pgp) + { + $this->assertEquals( + 'BADEABD7', + $pgp->getSignersKeyID($this->_getFixture('pgp_signed.txt')) + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpPacketInformation($pgp) + { + $out = $pgp->pgpPacketInformation($this->_getPublicKey()); + + $this->assertArrayHasKey( + 'public_key', + $out + ); + $this->assertArrayNotHasKey( + 'secret_key', + $out + ); + $this->assertEquals( + '1155291888', + $out['public_key']['created'] + ); + $this->assertEquals( + 2, + count($out['signature']) + ); + $this->assertEquals( + '7CA74426BADEABD7', + $out['keyid'] + ); + + $out = $pgp->pgpPacketInformation($this->_getPrivateKey()); + + $this->assertArrayHasKey( + 'secret_key', + $out + ); + $this->assertArrayNotHasKey( + 'public_key', + $out + ); + $this->assertEquals( + '1155291888', + $out['secret_key']['created'] + ); + $this->assertEquals( + 2, + count($out['signature']) + ); + $this->assertEquals( + '7CA74426BADEABD7', + $out['keyid'] + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpPacketSignature($pgp) + { + $out = $pgp->pgpPacketSignature( + $this->_getPublicKey(), + 'me@example.com' + ); + + $this->assertEquals( + '7CA74426BADEABD7', + $out['keyid'] + ); + + $out = $pgp->pgpPacketSignature( + $this->_getPrivateKey(), + 'me@example.com' + ); + + $this->assertEquals( + '7CA74426BADEABD7', + $out['keyid'] + ); + + $out = $pgp->pgpPacketSignature( + $this->_getPrivateKey(), + 'foo@example.com' + ); + + $this->assertArrayNotHasKey( + 'keyid', + $out + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpPacketSignatureByUidIndex($pgp) + { + $out = $pgp->pgpPacketSignatureByUidIndex( + $this->_getPublicKey(), + 'id1' + ); + + $this->assertEquals( + '7CA74426BADEABD7', + $out['keyid'] + ); + + $out = $pgp->pgpPacketSignatureByUidIndex( + $this->_getPrivateKey(), + 'id1' + ); + + $this->assertEquals( + '7CA74426BADEABD7', + $out['keyid'] + ); + + $out = $pgp->pgpPacketSignatureByUidIndex( + $this->_getPrivateKey(), + 'id2' + ); + + $this->assertArrayNotHasKey( + 'keyid', + $out + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpPrettyKey($pgp) + { + putenv('LANGUAGE=C'); + + $this->assertEquals( +'Name: My Name +Key Type: Public Key +Key Creation: 08/11/06 +Expiration Date: [Never] +Key Length: 1024 Bytes +Comment: My Comment +E-Mail: me@example.com +Hash-Algorithm: pgp-sha1 +Key ID: 0xBADEABD7 +Key Fingerprint: 966F4BA9569DE6F65E8253977CA74426BADEABD7 + +', + $pgp->pgpPrettyKey($this->_getPublicKey()) + ); + + $this->assertEquals( +'Name: My Name +Key Type: Private Key +Key Creation: 08/11/06 +Expiration Date: [Never] +Key Length: 1024 Bytes +Comment: My Comment +E-Mail: me@example.com +Hash-Algorithm: pgp-sha1 +Key ID: 0xBADEABD7 +Key Fingerprint: 966F4BA9569DE6F65E8253977CA74426BADEABD7 + +', + $pgp->pgpPrettyKey($this->_getPrivateKey()) + ); + } + + /** + * @dataProvider pgpGetFingerprintsFromKeyProvider + */ + public function testPgpGetFingerprintsFromKey($pgp, $expected, $key) + { + $this->assertEquals( + $expected, + $pgp->getFingerprintsFromKey($key) + ); + } + + public function pgpGetFingerprintsFromKeyProvider() + { + $fingerprints = array( + array( + array( + '0xBADEABD7' => '966F4BA9569DE6F65E8253977CA74426BADEABD7' + ), + $this->_getPublicKey() + ), + array( + array( + '0xBADEABD7' => '966F4BA9569DE6F65E8253977CA74426BADEABD7' + ), + $this->_getPrivateKey() + ) + ); + $args = $this->backendProvider(); + foreach ($args as &$arg) { + foreach ($fingerprints as $fingerprint) { + $arg = array_merge($arg, $fingerprint); + } + } + return $args; + } + + /** + * @dataProvider backendProvider + */ + public function pgpPublicKeyMIMEPart($pgp) + { + $mime_part = $pgp->publicKeyMIMEPart($this->_getPublicKey()); + + $this->assertEquals( + 'application/pgp-keys', + $mime_part->getType() + ); + + $this->assertEquals( +'-----BEGIN PGP PUBLIC KEY BLOCK----- +Version: GnuPG %s + +mQGiBETcWvARBADNitbvsWy5/hhV+WcU2ttmtXkAj2DqJVgJdGS2RH8msO0roG5j +CQK/e0iMJki5lfdgxvxxWgStYMnfF5ftgWA7JV+BZUzJt12Lobm0zdENv2TqL2vc +xlPTmEGsvfPDTbY+Gr3jvuODboXat7bUn2E723WXPdh2A7KNNnLou7JF2wCgiKs/ +RqNKM/Zm01PxLbQ+rs9ghd0D/jLUfJeYWySoDsvfO8e4UyDxDVTBLkkdw3XzLx1F +4SS/Cc2Z9yJuXiepzSH/G/vhdN5ROv12kJwA4FbwsFv5C1uCQleWiPngFixca9Nw +lAd2X2Cp0/4D2XRq1M9dEbcYdrgAuyzt2ZToj3aFaYNGwjfHoLqSngOu6/d3KD1d +i0b2A/9wnXo41kPwS73gU1Un2KKMkKqnczCQHdpopO6NjKaLhNcouRauLrgbrS5y +A1CW+nxjkKVvWrP/VFBmapUpjE1C51J9P0/ub8tRr7H0xHdTQyufv01lmfkjUpVF +n3GVf95l4seBFzD7r580aTx+dJztoHEGWrsWZTNJwo6IIlFOIbQlTXkgTmFtZSAo +TXkgQ29tbWVudCkgPG1lQGV4YW1wbGUuY29tPohgBBMRAgAgBQJE3FrwAhsjBgsJ +CAcDAgQVAggDBBYCAwECHgECF4AACgkQfKdEJrreq9fivACeLBcWErSQU4ZGQsje +dhwfdst9cLQAnRETpwmqt/XvcGFVsOE28MUrUzOGuQENBETcWvAQBADNgIJ4nDlf +gBOI/iqyNy08C9+MjxrqMylrj4TPn3rRk8wySr2myX+j9CML5EHOtsxANYeI9u7h +OF11n5Z8fDht/WGJrNR7EtRhNN6mkKsPaEuO3fhz6EgwJYReUVzDJbvnV2fRCvQo +EGaSntZGQaQzIzIL+/gMEFpEVRK1P2I3VwADBQP+K2Rmmkm3DonXFlUUDWWdhEF4 +b7fy5/IPj41PSSOdo0IP4dprFoe15Vs9gWOYvzcnjy+BbOwhVwsjE3F36hf04od3 +uTSM0dLS/xmpSvgbBh181T5c3W5aKT/daVhyxXJ4csxE+JCVKbaBubne0DPEuyZj +rYlL5Lm0z3VhNCcR0LyISQQYEQIACQUCRNxa8AIbDAAKCRB8p0Qmut6r16Y3AJ9h +umO5uT5yDcir3zwqUAxzBAkE4ACcCtGfb6usaTKnNXo+ZuLoHiOwIE4= +=GCjU +-----END PGP PUBLIC KEY BLOCK-----', + $mime_part->getContents() + ); + } + + /** + * @dataProvider backendProvider + */ + public function testPgpSign($pgp) + { + $clear = $this->_getFixture('clear.txt'); + + $out = $pgp->encrypt($clear, array( + 'passphrase' => 'Secret', + 'privkey' => $this->_getPrivateKey(), + 'pubkey' => $this->_getPublicKey(), + 'type' => 'signature' + )); + + $this->assertStringMatchesFormat( +'-----BEGIN PGP SIGNATURE----- +Version: GnuPG %s + +%s +%s +=%s +-----END PGP SIGNATURE-----', + $out + ); + + $out = $pgp->encrypt($clear, array( + 'passphrase' => 'Secret', + 'privkey' => $this->_getPrivateKey(), + 'pubkey' => $this->_getPublicKey(), + 'sigtype' => 'cleartext', + 'type' => 'signature' + )); + + $this->assertStringMatchesFormat( +'-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +0123456789012345678901234567890123456789 +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +The quick brown fox jumps over the lazy dog. +0123456789012345678901234567890123456789 +!"$§%&()=?^´°`+#-.,*\'_:;<>|~\{[]} +-----BEGIN PGP SIGNATURE----- +Version: GnuPG %s + +%s +%s +=%s +-----END PGP SIGNATURE-----', + Horde_String::convertCharset($out, 'ISO-8859-1', 'UTF-8') + ); + } + + /** + * @dataProvider backendProvider + */ + public function testDecryptSignature($pgp) + { + date_default_timezone_set('GMT'); + + $out = $pgp->decrypt( + $this->_getFixture('clear.txt'), + array( + 'pubkey' => $this->_getPublicKey(), + 'signature' => $this->_getFixture('pgp_signature.txt'), + 'type' => 'detached-signature' + ) + ); + + $this->assertNotEmpty($out->result); + + $out = $pgp->decrypt( + $this->_getFixture('pgp_signed.txt'), + array( + 'pubkey' => $this->_getPublicKey(), + 'type' => 'signature' + ) + ); + + $this->assertNotEmpty($out->result); + + $out = $pgp->decrypt( + $this->_getFixture('pgp_signed2.txt'), + array( + 'pubkey' => $this->_getPublicKey(), + 'type' => 'signature' + ) + ); + + $this->assertNotEmpty($out->result); + } + + /** + * @dataProvider backendProvider + */ + public function testVerifyPassphraseCorrect($pgp) + { + $this->assertTrue( + $pgp->verifyPassphrase( + $this->_getPublicKey(), + $this->_getPrivateKey(), + 'Secret' + ) + ); + } + + /** + * @dataProvider backendProvider + */ + public function testVerifyPassphraseIncorrect($pgp) + { + $this->assertFalse( + $pgp->verifyPassphrase( + $this->_getPublicKey(), + $this->_getPrivateKey(), + 'Wrong' + ) + ); + } + + /** + * @dataProvider backendProvider + */ + public function testGetPublicKeyFromPrivateKey($pgp) + { + $this->assertNotNull( + $pgp->getPublicKeyFromPrivateKey($this->_getPrivateKey()) + ); + } + + /* Helper methods. */ + + protected function _getFixture($file) + { + return file_get_contents(dirname(__DIR__) . '/fixtures/' . $file); + } + + protected function _getPrivateKey() + { + return $this->_getFixture('pgp_private.asc'); + } + + protected function _getPublicKey() + { + return $this->_getFixture('pgp_public.asc'); + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/PgpKeyserverTest.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/PgpKeyserverTest.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/PgpKeyserverTest.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/PgpKeyserverTest.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,88 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @subpackage UnitTests + */ + +class Horde_Crypt_PgpKeyserverTest extends Horde_Test_Case +{ + protected $_ks; + protected $_gnupg; + + protected function setUp() + { + $c = self::getConfig('CRYPT_TEST_CONFIG', __DIR__); + $this->_gnupg = isset($c['gnupg']) + ? $c['gnupg'] + : '/usr/bin/gpg'; + + if (!is_executable($this->_gnupg)) { + $this->markTestSkipped(sprintf( + 'GPG binary not found at %s.', + $this->_gnupg + )); + } + + $this->_ks = new Horde_Crypt_Pgp_Keyserver( + Horde_Crypt::factory('Pgp', array( + 'program' => $this->_gnupg + )) + ); + } + + public function testKeyserverRetrieve() + { + try { + $this->_ks->get('4DE5B969'); + } catch (Horde_Crypt_Exception $e) { + if ($e->getPrevious() instanceof Horde_Http_Exception) { + $this->markTestSkipped($e->getMessage()); + } else { + throw $e; + } + } + } + + public function testKeyserverRetrieveByEmail() + { + try { + $this->assertEquals( + '4DE5B969', + $this->_ks->getKeyID('jan@horde.org') + ); + } catch (Horde_Crypt_Exception $e) { + if ($e->getPrevious() instanceof Horde_Http_Exception) { + $this->markTestSkipped($e->getMessage()); + } else { + throw $e; + } + } + } + + public function testBrokenKeyserver() + { + $ks = new Horde_Crypt_Pgp_Keyserver( + Horde_Crypt::factory('Pgp', array( + 'program' => $this->_gnupg + )), + array('keyserver' => 'http://pgp.key-server.io') + ); + try { + $this->assertEquals( + '4DE5B969', + $ks->getKeyID('jan@horde.org') + ); + } catch (Horde_Crypt_Exception $e) { + if ($e->getPrevious() instanceof Horde_Http_Exception) { + $this->markTestSkipped($e->getMessage()); + } else { + throw $e; + } + } + } +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/PgpParseTest.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/PgpParseTest.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/PgpParseTest.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/PgpParseTest.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,64 @@ + + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @subpackage UnitTests + */ +class Horde_Crypt_PgpParseTest extends Horde_Test_Case +{ + protected $_pgp; + + protected function setUp() + { + $this->_pgp = new Horde_Crypt_Pgp(); + } + + /** + * @dataProvider parsePgpDataProvider + */ + public function testParsePgpData($data) + { + $out = $this->_pgp->parsePGPData($data); + + $this->assertEquals( + 2, + count($out) + ); + + $this->assertEquals( + Horde_Crypt_Pgp::ARMOR_SIGNED_MESSAGE, + $out[0]['type'] + ); + $this->assertEquals( + 17, + count($out[0]['data']) + ); + + $this->assertEquals( + Horde_Crypt_Pgp::ARMOR_SIGNATURE, + $out[1]['type'] + ); + $this->assertEquals( + 7, + count($out[1]['data']) + ); + } + + public function parsePgpDataProvider() + { + $data = file_get_contents(__DIR__ . '/fixtures/pgp_signed.txt'); + + $stream = new Horde_Stream_Temp(); + $stream->add($data, true); + + return array( + array($data), + array($stream) + ); + } + +} diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/phpunit.xml php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/phpunit.xml --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/phpunit.xml 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/phpunit.xml 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1 @@ + diff -Nru php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/SmimeTest.php php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/SmimeTest.php --- php-horde-crypt-2.7.8/Horde_Crypt-2.7.9/test/Horde/Crypt/SmimeTest.php 1970-01-01 00:00:00.000000000 +0000 +++ php-horde-crypt-2.7.9/Horde_Crypt-2.7.9/test/Horde/Crypt/SmimeTest.php 2017-06-22 13:53:44.000000000 +0000 @@ -0,0 +1,52 @@ + + * @author Jan Schneider + * @category Horde + * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 + * @package Crypt + * @subpackage UnitTests + */ + +class Horde_Crypt_SmimeTest extends Horde_Test_Case +{ + protected function setUp() + { + if (!extension_loaded('openssl')) { + $this->markTestSkipped('No openssl support in PHP.'); + } + } + + public function testSubjectAltName() + { + $smime = Horde_Crypt::factory('Smime', array( + 'temp' => sys_get_temp_dir() + )); + + $key = file_get_contents( + __DIR__ . '/fixtures/smime_subjectAltName.pem' + ); + + $this->assertEquals( + 'test1@example.com', + $smime->getEmailFromKey($key) + ); + } + + public function testExtractSignedContent() + { + $smime = Horde_Crypt::factory('Smime', array( + 'temp' => sys_get_temp_dir() + )); + $message = file_get_contents( + __DIR__ . '/fixtures/smime_signed_opaque.eml' + ); + $expected = "Content-Type: text/plain\r\n\r\nHello World!\r\n"; + $this->assertEquals( + $expected, + $smime->extractSignedContents($message) + ); + } +} diff -Nru php-horde-crypt-2.7.8/package.xml php-horde-crypt-2.7.9/package.xml --- php-horde-crypt-2.7.8/package.xml 2017-05-03 13:32:12.000000000 +0000 +++ php-horde-crypt-2.7.9/package.xml 2017-06-22 13:53:44.000000000 +0000 @@ -1,5 +1,5 @@ - + Horde_Crypt pear.horde.org Horde Cryptography API @@ -16,10 +16,10 @@ jan@horde.org yes - 2017-05-03 - + 2017-06-22 + - 2.7.8 + 2.7.9 2.7.0 @@ -28,19 +28,19 @@ LGPL-2.1 -* [jan] Detect unsupported GnuPG versions. -* [jan] Fix detection of new GnuPG API (Remi Collet <remi@remirepo.net>, PR #220). +* [jan] More fixes for GnuPG 2 (Mathieu Parent <math.parent@gmail.com>). +* [jan] Remove dependency on openssl executable (Hadi Nategh <hnategh@gmail.com>). - + - + @@ -121,8 +121,8 @@ - - + + @@ -139,16 +139,17 @@ + - + - + - + @@ -347,6 +348,7 @@ + @@ -1121,5 +1123,21 @@ * [jan] Fix detection of new GnuPG API (Remi Collet <remi@remirepo.net>, PR #220). + + + 2.7.9 + 2.7.0 + + + stable + stable + + 2017-06-22 + LGPL-2.1 + +* [jan] More fixes for GnuPG 2 (Mathieu Parent <math.parent@gmail.com>). +* [jan] Remove dependency on openssl executable (Hadi Nategh <hnategh@gmail.com>). + +