Subscribe To Comments Reloaded - Version 160106

Version Description

Download this release

Release Info

Developer reedyseth
Plugin Icon 128x128 Subscribe To Comments Reloaded
Version 160106
Comparing to
See all releases

Code changes from version 150611 to 160106

Files changed (43) hide show
  1. includes/css/stcr-admin-style.css +51 -0
  2. includes/css/stcr-plugin-style.css +9 -0
  3. includes/js/stcr-admin.js +43 -0
  4. includes/js/stcr-plugin.js +24 -0
  5. includes/js/stcr-tinyMCE.js +13 -0
  6. includes/js/tinymce-lite/jquery.tinymce.min.js +1 -0
  7. includes/js/tinymce-lite/langs/readme.md +3 -0
  8. includes/js/tinymce-lite/license.txt +504 -0
  9. includes/js/tinymce-lite/plugins/anchor/plugin.min.js +1 -0
  10. includes/js/tinymce-lite/plugins/hr/plugin.min.js +1 -0
  11. includes/js/tinymce-lite/plugins/link/plugin.min.js +1 -0
  12. includes/js/tinymce-lite/skins/lightgray/content.inline.min.css +1 -0
  13. includes/js/tinymce-lite/skins/lightgray/content.min.css +1 -0
  14. includes/js/tinymce-lite/skins/lightgray/fonts/tinymce-small.eot +0 -0
  15. includes/js/tinymce-lite/skins/lightgray/fonts/tinymce-small.svg +62 -0
  16. includes/js/tinymce-lite/skins/lightgray/fonts/tinymce-small.ttf +0 -0
  17. includes/js/tinymce-lite/skins/lightgray/fonts/tinymce-small.woff +0 -0
  18. includes/js/tinymce-lite/skins/lightgray/fonts/tinymce.eot +0 -0
  19. includes/js/tinymce-lite/skins/lightgray/fonts/tinymce.svg +83 -0
  20. includes/js/tinymce-lite/skins/lightgray/fonts/tinymce.ttf +0 -0
  21. includes/js/tinymce-lite/skins/lightgray/fonts/tinymce.woff +0 -0
  22. includes/js/tinymce-lite/skins/lightgray/img/anchor.gif +0 -0
  23. includes/js/tinymce-lite/skins/lightgray/img/loader.gif +0 -0
  24. includes/js/tinymce-lite/skins/lightgray/img/object.gif +0 -0
  25. includes/js/tinymce-lite/skins/lightgray/img/trans.gif +0 -0
  26. includes/js/tinymce-lite/skins/lightgray/skin.ie7.min.css +1 -0
  27. includes/js/tinymce-lite/skins/lightgray/skin.min.css +1 -0
  28. includes/js/tinymce-lite/themes/modern/theme.min.js +1 -0
  29. includes/js/tinymce-lite/tinymce.min.js +11 -0
  30. langs/subscribe-reloaded-be_BY.mo +0 -0
  31. langs/subscribe-reloaded-be_BY.po +1960 -1824
  32. langs/subscribe-reloaded-cs_CZ.mo +0 -0
  33. langs/subscribe-reloaded-cs_CZ.po +1203 -1203
  34. langs/subscribe-reloaded-da_DK.mo +0 -0
  35. langs/subscribe-reloaded-da_DK.po +1500 -1364
  36. langs/subscribe-reloaded-de_DE.mo +0 -0
  37. langs/subscribe-reloaded-de_DE.po +1436 -1820
  38. langs/subscribe-reloaded-es_ES.mo +0 -0
  39. langs/subscribe-reloaded-es_ES.po +1607 -1406
  40. langs/subscribe-reloaded-fa_IR.mo +0 -0
  41. langs/subscribe-reloaded-fa_IR.po +1414 -0
  42. langs/subscribe-reloaded-fr_FR.mo +0 -0
  43. langs/subscribe-reloaded-fr_FR.po +0 -978
includes/css/stcr-admin-style.css ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Admin styles for StCR.
3
+
4
+ @author reedyseth
5
+ @since 21-Sep-2015
6
+ */
7
+ .stcr-loading-animation {
8
+ display: none;
9
+ }
10
+
11
+ .dismiss {
12
+ background: #00a0d2;
13
+ border-color: #0073aa;
14
+ -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);
15
+ box-shadow: inset 0 1px 0 rgba(120,200,230,.5),0 1px 0 rgba(0,0,0,.15);
16
+ color: #fff;
17
+ text-decoration: none;
18
+ display: inline-block;
19
+ text-decoration: none;
20
+ font-size: 13px;
21
+ line-height: 26px;
22
+ height: 28px;
23
+ margin: 0 0 0 10px;
24
+ padding: 0 10px 1px;
25
+ cursor: pointer;
26
+ border-width: 1px;
27
+ border-style: solid;
28
+ -webkit-appearance: none;
29
+ -webkit-border-radius: 3px;
30
+ border-radius: 3px;
31
+ white-space: nowrap;
32
+ -webkit-box-sizing: border-box;
33
+ -moz-box-sizing: border-box;
34
+ box-sizing: border-box;
35
+ }
36
+
37
+ .dismiss:hover {
38
+ background: #0091cd;
39
+ border-color: #0073aa;
40
+ -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
41
+ box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
42
+ color: #fff;
43
+ }
44
+
45
+ .clearFix {
46
+ clear: both;
47
+ }
48
+
49
+ .hidden {
50
+ display: none;
51
+ }
includes/css/stcr-plugin-style.css ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Styles for the StCR plugin
3
+ * @since 23-Sep-2015
4
+ * @author reedyseth
5
+ */
6
+
7
+ .hidden {
8
+ display: none !important;
9
+ }
includes/js/stcr-admin.js ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Script to handle all the Admin actions.
3
+ */
4
+ ( function($){
5
+ $(document).ready(function() {
6
+ /**
7
+ * Handle the notification dismiss action
8
+ * @author reedyseth
9
+ * @since 25-August-2015
10
+ */
11
+ $('.stcr-dismiss-notice').on('click','a.dismiss', function() {
12
+ var spinner = $( '' );
13
+ var nonce = $(this).parent().parent().data('nonce');
14
+ nonce = nonce.split('|');
15
+ var data = {
16
+ action: nonce[1],
17
+ security: nonce[0]
18
+ };
19
+ _this = $( this ).parent().parent();
20
+ // Make the Ajax request.
21
+ $.ajax({
22
+ type: "post",
23
+ url: ajaxurl,
24
+ data: data,
25
+ beforeSend: function() {
26
+ _this.find(".stcr-loading-animation").removeClass("stcr-loading-information").show();
27
+ },
28
+ success: function ( response ){
29
+ if ( response.success === true ) {
30
+ _this.slideUp( 'fast' );
31
+ }
32
+ //console.debug('Notice dismissed, server response >> ' + response );
33
+ },
34
+ error: function( error ) {
35
+ //console.debug( error );
36
+ },
37
+ complete: function() {
38
+ _this.find(".stcr-loading-animation").hide();
39
+ }
40
+ }); //close jQuery.ajax
41
+ });
42
+ });
43
+ } )( jQuery );
includes/js/stcr-plugin.js ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Scripts to handle the plugin behavior.
3
+ *
4
+ * @since 22-Sep-2015
5
+ * @author reedyseth
6
+ */
7
+ ( function( $ ) {
8
+
9
+ sort_subscription_box();
10
+
11
+ /**
12
+ * Move the Subscription box above the submit button
13
+ * @since 23-Sept-2015
14
+ * @author reedyseth
15
+ */
16
+ function sort_subscription_box() {
17
+ var submit_button = $('form input.Cbutton');
18
+ var stcr_form = $('div.stcr-form');
19
+ var stcr_form_html = stcr_form.html();
20
+ stcr_form.remove();
21
+ $( stcr_form_html ).insertBefore( submit_button );
22
+ $('div.stcr-form').removeClass( 'hidden' );
23
+ }
24
+ } )( jQuery );
includes/js/stcr-tinyMCE.js ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Initialize all the tinyMCE code.
3
+ * @since 03-Aug-2015
4
+ * @author reedyseth
5
+ */
6
+ jQuery(document).ready(function() {
7
+ tinymce.init({
8
+ selector: "textarea.rte",
9
+ plugins: [
10
+ "link hr anchor"
11
+ ]
12
+ });
13
+ });
includes/js/tinymce-lite/jquery.tinymce.min.js ADDED
@@ -0,0 +1 @@
 
1
+ !function(a){function b(){function b(a){"remove"===a&&this.each(function(a,b){var c=e(b);c&&c.remove()}),this.find("span.mceEditor,div.mceEditor").each(function(a,b){var c=tinymce.get(b.id.replace(/_parent$/,""));c&&c.remove()})}function d(a){var c,d=this;if(null!=a)b.call(d),d.each(function(b,c){var d;(d=tinymce.get(c.id))&&d.setContent(a)});else if(d.length>0&&(c=tinymce.get(d[0].id)))return c.getContent()}function e(a){var b=null;return a&&a.id&&g.tinymce&&(b=tinymce.get(a.id)),b}function f(a){return!!(a&&a.length&&g.tinymce&&a.is(":tinymce"))}var h={};a.each(["text","html","val"],function(b,g){var i=h[g]=a.fn[g],j="text"===g;a.fn[g]=function(b){var g=this;if(!f(g))return i.apply(g,arguments);if(b!==c)return d.call(g.filter(":tinymce"),b),i.apply(g.not(":tinymce"),arguments),g;var h="",k=arguments;return(j?g:g.eq(0)).each(function(b,c){var d=e(c);h+=d?j?d.getContent().replace(/<(?:"[^"]*"|'[^']*'|[^'">])*>/g,""):d.getContent({save:!0}):i.apply(a(c),k)}),h}}),a.each(["append","prepend"],function(b,d){var g=h[d]=a.fn[d],i="prepend"===d;a.fn[d]=function(a){var b=this;return f(b)?a!==c?("string"==typeof a&&b.filter(":tinymce").each(function(b,c){var d=e(c);d&&d.setContent(i?a+d.getContent():d.getContent()+a)}),g.apply(b.not(":tinymce"),arguments),b):void 0:g.apply(b,arguments)}}),a.each(["remove","replaceWith","replaceAll","empty"],function(c,d){var e=h[d]=a.fn[d];a.fn[d]=function(){return b.call(this,d),e.apply(this,arguments)}}),h.attr=a.fn.attr,a.fn.attr=function(b,g){var i=this,j=arguments;if(!b||"value"!==b||!f(i))return g!==c?h.attr.apply(i,j):h.attr.apply(i,j);if(g!==c)return d.call(i.filter(":tinymce"),g),h.attr.apply(i.not(":tinymce"),j),i;var k=i[0],l=e(k);return l?l.getContent({save:!0}):h.attr.apply(a(k),j)}}var c,d,e,f=[],g=window;a.fn.tinymce=function(c){function h(){var d=[],f=0;e||(b(),e=!0),l.each(function(a,b){var e,g=b.id,h=c.oninit;g||(b.id=g=tinymce.DOM.uniqueId()),tinymce.get(g)||(e=new tinymce.Editor(g,c,tinymce.EditorManager),d.push(e),e.on("init",function(){var a,b=h;l.css("visibility",""),h&&++f==d.length&&("string"==typeof b&&(a=-1===b.indexOf(".")?null:tinymce.resolve(b.replace(/\.\w+$/,"")),b=tinymce.resolve(b)),b.apply(a||tinymce,d))}))}),a.each(d,function(a,b){b.render()})}var i,j,k,l=this,m="";if(!l.length)return l;if(!c)return window.tinymce?tinymce.get(l[0].id):null;if(l.css("visibility","hidden"),g.tinymce||d||!(i=c.script_url))1===d?f.push(h):h();else{d=1,j=i.substring(0,i.lastIndexOf("/")),-1!=i.indexOf(".min")&&(m=".min"),g.tinymce=g.tinyMCEPreInit||{base:j,suffix:m},-1!=i.indexOf("gzip")&&(k=c.language||"en",i=i+(/\?/.test(i)?"&":"?")+"js=true&core=true&suffix="+escape(m)+"&themes="+escape(c.theme||"modern")+"&plugins="+escape(c.plugins||"")+"&languages="+(k||""),g.tinyMCE_GZ||(g.tinyMCE_GZ={start:function(){function b(a){tinymce.ScriptLoader.markDone(tinymce.baseURI.toAbsolute(a))}b("langs/"+k+".js"),b("themes/"+c.theme+"/theme"+m+".js"),b("themes/"+c.theme+"/langs/"+k+".js"),a.each(c.plugins.split(","),function(a,c){c&&(b("plugins/"+c+"/plugin"+m+".js"),b("plugins/"+c+"/langs/"+k+".js"))})},end:function(){}}));var n=document.createElement("script");n.type="text/javascript",n.onload=n.onreadystatechange=function(b){b=b||window.event,2===d||"load"!=b.type&&!/complete|loaded/.test(n.readyState)||(tinymce.dom.Event.domLoaded=1,d=2,c.script_loaded&&c.script_loaded(),h(),a.each(f,function(a,b){b()}))},n.src=i,document.body.appendChild(n)}return l},a.extend(a.expr[":"],{tinymce:function(a){var b;return a.id&&"tinymce"in window&&(b=tinymce.get(a.id),b&&b.editorManager===tinymce)?!0:!1}})}(jQuery);
includes/js/tinymce-lite/langs/readme.md ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ This is where language files should be placed.
2
+
3
+ Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/
includes/js/tinymce-lite/license.txt ADDED
@@ -0,0 +1,504 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 2.1, February 1999
3
+
4
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
5
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ [This is the first released version of the Lesser GPL. It also counts
10
+ as the successor of the GNU Library Public License, version 2, hence
11
+ the version number 2.1.]
12
+
13
+ Preamble
14
+
15
+ The licenses for most software are designed to take away your
16
+ freedom to share and change it. By contrast, the GNU General Public
17
+ Licenses are intended to guarantee your freedom to share and change
18
+ free software--to make sure the software is free for all its users.
19
+
20
+ This license, the Lesser General Public License, applies to some
21
+ specially designated software packages--typically libraries--of the
22
+ Free Software Foundation and other authors who decide to use it. You
23
+ can use it too, but we suggest you first think carefully about whether
24
+ this license or the ordinary General Public License is the better
25
+ strategy to use in any particular case, based on the explanations below.
26
+
27
+ When we speak of free software, we are referring to freedom of use,
28
+ not price. Our General Public Licenses are designed to make sure that
29
+ you have the freedom to distribute copies of free software (and charge
30
+ for this service if you wish); that you receive source code or can get
31
+ it if you want it; that you can change the software and use pieces of
32
+ it in new free programs; and that you are informed that you can do
33
+ these things.
34
+
35
+ To protect your rights, we need to make restrictions that forbid
36
+ distributors to deny you these rights or to ask you to surrender these
37
+ rights. These restrictions translate to certain responsibilities for
38
+ you if you distribute copies of the library or if you modify it.
39
+
40
+ For example, if you distribute copies of the library, whether gratis
41
+ or for a fee, you must give the recipients all the rights that we gave
42
+ you. You must make sure that they, too, receive or can get the source
43
+ code. If you link other code with the library, you must provide
44
+ complete object files to the recipients, so that they can relink them
45
+ with the library after making changes to the library and recompiling
46
+ it. And you must show them these terms so they know their rights.
47
+
48
+ We protect your rights with a two-step method: (1) we copyright the
49
+ library, and (2) we offer you this license, which gives you legal
50
+ permission to copy, distribute and/or modify the library.
51
+
52
+ To protect each distributor, we want to make it very clear that
53
+ there is no warranty for the free library. Also, if the library is
54
+ modified by someone else and passed on, the recipients should know
55
+ that what they have is not the original version, so that the original
56
+ author's reputation will not be affected by problems that might be
57
+ introduced by others.
58
+
59
+ Finally, software patents pose a constant threat to the existence of
60
+ any free program. We wish to make sure that a company cannot
61
+ effectively restrict the users of a free program by obtaining a
62
+ restrictive license from a patent holder. Therefore, we insist that
63
+ any patent license obtained for a version of the library must be
64
+ consistent with the full freedom of use specified in this license.
65
+
66
+ Most GNU software, including some libraries, is covered by the
67
+ ordinary GNU General Public License. This license, the GNU Lesser
68
+ General Public License, applies to certain designated libraries, and
69
+ is quite different from the ordinary General Public License. We use
70
+ this license for certain libraries in order to permit linking those
71
+ libraries into non-free programs.
72
+
73
+ When a program is linked with a library, whether statically or using
74
+ a shared library, the combination of the two is legally speaking a
75
+ combined work, a derivative of the original library. The ordinary
76
+ General Public License therefore permits such linking only if the
77
+ entire combination fits its criteria of freedom. The Lesser General
78
+ Public License permits more lax criteria for linking other code with
79
+ the library.
80
+
81
+ We call this license the "Lesser" General Public License because it
82
+ does Less to protect the user's freedom than the ordinary General
83
+ Public License. It also provides other free software developers Less
84
+ of an advantage over competing non-free programs. These disadvantages
85
+ are the reason we use the ordinary General Public License for many
86
+ libraries. However, the Lesser license provides advantages in certain
87
+ special circumstances.
88
+
89
+ For example, on rare occasions, there may be a special need to
90
+ encourage the widest possible use of a certain library, so that it becomes
91
+ a de-facto standard. To achieve this, non-free programs must be
92
+ allowed to use the library. A more frequent case is that a free
93
+ library does the same job as widely used non-free libraries. In this
94
+ case, there is little to gain by limiting the free library to free
95
+ software only, so we use the Lesser General Public License.
96
+
97
+ In other cases, permission to use a particular library in non-free
98
+ programs enables a greater number of people to use a large body of
99
+ free software. For example, permission to use the GNU C Library in
100
+ non-free programs enables many more people to use the whole GNU
101
+ operating system, as well as its variant, the GNU/Linux operating
102
+ system.
103
+
104
+ Although the Lesser General Public License is Less protective of the
105
+ users' freedom, it does ensure that the user of a program that is
106
+ linked with the Library has the freedom and the wherewithal to run
107
+ that program using a modified version of the Library.
108
+
109
+ The precise terms and conditions for copying, distribution and
110
+ modification follow. Pay close attention to the difference between a
111
+ "work based on the library" and a "work that uses the library". The
112
+ former contains code derived from the library, whereas the latter must
113
+ be combined with the library in order to run.
114
+
115
+ GNU LESSER GENERAL PUBLIC LICENSE
116
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
117
+
118
+ 0. This License Agreement applies to any software library or other
119
+ program which contains a notice placed by the copyright holder or
120
+ other authorized party saying it may be distributed under the terms of
121
+ this Lesser General Public License (also called "this License").
122
+ Each licensee is addressed as "you".
123
+
124
+ A "library" means a collection of software functions and/or data
125
+ prepared so as to be conveniently linked with application programs
126
+ (which use some of those functions and data) to form executables.
127
+
128
+ The "Library", below, refers to any such software library or work
129
+ which has been distributed under these terms. A "work based on the
130
+ Library" means either the Library or any derivative work under
131
+ copyright law: that is to say, a work containing the Library or a
132
+ portion of it, either verbatim or with modifications and/or translated
133
+ straightforwardly into another language. (Hereinafter, translation is
134
+ included without limitation in the term "modification".)
135
+
136
+ "Source code" for a work means the preferred form of the work for
137
+ making modifications to it. For a library, complete source code means
138
+ all the source code for all modules it contains, plus any associated
139
+ interface definition files, plus the scripts used to control compilation
140
+ and installation of the library.
141
+
142
+ Activities other than copying, distribution and modification are not
143
+ covered by this License; they are outside its scope. The act of
144
+ running a program using the Library is not restricted, and output from
145
+ such a program is covered only if its contents constitute a work based
146
+ on the Library (independent of the use of the Library in a tool for
147
+ writing it). Whether that is true depends on what the Library does
148
+ and what the program that uses the Library does.
149
+
150
+ 1. You may copy and distribute verbatim copies of the Library's
151
+ complete source code as you receive it, in any medium, provided that
152
+ you conspicuously and appropriately publish on each copy an
153
+ appropriate copyright notice and disclaimer of warranty; keep intact
154
+ all the notices that refer to this License and to the absence of any
155
+ warranty; and distribute a copy of this License along with the
156
+ Library.
157
+
158
+ You may charge a fee for the physical act of transferring a copy,
159
+ and you may at your option offer warranty protection in exchange for a
160
+ fee.
161
+
162
+ 2. You may modify your copy or copies of the Library or any portion
163
+ of it, thus forming a work based on the Library, and copy and
164
+ distribute such modifications or work under the terms of Section 1
165
+ above, provided that you also meet all of these conditions:
166
+
167
+ a) The modified work must itself be a software library.
168
+
169
+ b) You must cause the files modified to carry prominent notices
170
+ stating that you changed the files and the date of any change.
171
+
172
+ c) You must cause the whole of the work to be licensed at no
173
+ charge to all third parties under the terms of this License.
174
+
175
+ d) If a facility in the modified Library refers to a function or a
176
+ table of data to be supplied by an application program that uses
177
+ the facility, other than as an argument passed when the facility
178
+ is invoked, then you must make a good faith effort to ensure that,
179
+ in the event an application does not supply such function or
180
+ table, the facility still operates, and performs whatever part of
181
+ its purpose remains meaningful.
182
+
183
+ (For example, a function in a library to compute square roots has
184
+ a purpose that is entirely well-defined independent of the
185
+ application. Therefore, Subsection 2d requires that any
186
+ application-supplied function or table used by this function must
187
+ be optional: if the application does not supply it, the square
188
+ root function must still compute square roots.)
189
+
190
+ These requirements apply to the modified work as a whole. If
191
+ identifiable sections of that work are not derived from the Library,
192
+ and can be reasonably considered independent and separate works in
193
+ themselves, then this License, and its terms, do not apply to those
194
+ sections when you distribute them as separate works. But when you
195
+ distribute the same sections as part of a whole which is a work based
196
+ on the Library, the distribution of the whole must be on the terms of
197
+ this License, whose permissions for other licensees extend to the
198
+ entire whole, and thus to each and every part regardless of who wrote
199
+ it.
200
+
201
+ Thus, it is not the intent of this section to claim rights or contest
202
+ your rights to work written entirely by you; rather, the intent is to
203
+ exercise the right to control the distribution of derivative or
204
+ collective works based on the Library.
205
+
206
+ In addition, mere aggregation of another work not based on the Library
207
+ with the Library (or with a work based on the Library) on a volume of
208
+ a storage or distribution medium does not bring the other work under
209
+ the scope of this License.
210
+
211
+ 3. You may opt to apply the terms of the ordinary GNU General Public
212
+ License instead of this License to a given copy of the Library. To do
213
+ this, you must alter all the notices that refer to this License, so
214
+ that they refer to the ordinary GNU General Public License, version 2,
215
+ instead of to this License. (If a newer version than version 2 of the
216
+ ordinary GNU General Public License has appeared, then you can specify
217
+ that version instead if you wish.) Do not make any other change in
218
+ these notices.
219
+
220
+ Once this change is made in a given copy, it is irreversible for
221
+ that copy, so the ordinary GNU General Public License applies to all
222
+ subsequent copies and derivative works made from that copy.
223
+
224
+ This option is useful when you wish to copy part of the code of
225
+ the Library into a program that is not a library.
226
+
227
+ 4. You may copy and distribute the Library (or a portion or
228
+ derivative of it, under Section 2) in object code or executable form
229
+ under the terms of Sections 1 and 2 above provided that you accompany
230
+ it with the complete corresponding machine-readable source code, which
231
+ must be distributed under the terms of Sections 1 and 2 above on a
232
+ medium customarily used for software interchange.
233
+
234
+ If distribution of object code is made by offering access to copy
235
+ from a designated place, then offering equivalent access to copy the
236
+ source code from the same place satisfies the requirement to
237
+ distribute the source code, even though third parties are not
238
+ compelled to copy the source along with the object code.
239
+
240
+ 5. A program that contains no derivative of any portion of the
241
+ Library, but is designed to work with the Library by being compiled or
242
+ linked with it, is called a "work that uses the Library". Such a
243
+ work, in isolation, is not a derivative work of the Library, and
244
+ therefore falls outside the scope of this License.
245
+
246
+ However, linking a "work that uses the Library" with the Library
247
+ creates an executable that is a derivative of the Library (because it
248
+ contains portions of the Library), rather than a "work that uses the
249
+ library". The executable is therefore covered by this License.
250
+ Section 6 states terms for distribution of such executables.
251
+
252
+ When a "work that uses the Library" uses material from a header file
253
+ that is part of the Library, the object code for the work may be a
254
+ derivative work of the Library even though the source code is not.
255
+ Whether this is true is especially significant if the work can be
256
+ linked without the Library, or if the work is itself a library. The
257
+ threshold for this to be true is not precisely defined by law.
258
+
259
+ If such an object file uses only numerical parameters, data
260
+ structure layouts and accessors, and small macros and small inline
261
+ functions (ten lines or less in length), then the use of the object
262
+ file is unrestricted, regardless of whether it is legally a derivative
263
+ work. (Executables containing this object code plus portions of the
264
+ Library will still fall under Section 6.)
265
+
266
+ Otherwise, if the work is a derivative of the Library, you may
267
+ distribute the object code for the work under the terms of Section 6.
268
+ Any executables containing that work also fall under Section 6,
269
+ whether or not they are linked directly with the Library itself.
270
+
271
+ 6. As an exception to the Sections above, you may also combine or
272
+ link a "work that uses the Library" with the Library to produce a
273
+ work containing portions of the Library, and distribute that work
274
+ under terms of your choice, provided that the terms permit
275
+ modification of the work for the customer's own use and reverse
276
+ engineering for debugging such modifications.
277
+
278
+ You must give prominent notice with each copy of the work that the
279
+ Library is used in it and that the Library and its use are covered by
280
+ this License. You must supply a copy of this License. If the work
281
+ during execution displays copyright notices, you must include the
282
+ copyright notice for the Library among them, as well as a reference
283
+ directing the user to the copy of this License. Also, you must do one
284
+ of these things:
285
+
286
+ a) Accompany the work with the complete corresponding
287
+ machine-readable source code for the Library including whatever
288
+ changes were used in the work (which must be distributed under
289
+ Sections 1 and 2 above); and, if the work is an executable linked
290
+ with the Library, with the complete machine-readable "work that
291
+ uses the Library", as object code and/or source code, so that the
292
+ user can modify the Library and then relink to produce a modified
293
+ executable containing the modified Library. (It is understood
294
+ that the user who changes the contents of definitions files in the
295
+ Library will not necessarily be able to recompile the application
296
+ to use the modified definitions.)
297
+
298
+ b) Use a suitable shared library mechanism for linking with the
299
+ Library. A suitable mechanism is one that (1) uses at run time a
300
+ copy of the library already present on the user's computer system,
301
+ rather than copying library functions into the executable, and (2)
302
+ will operate properly with a modified version of the library, if
303
+ the user installs one, as long as the modified version is
304
+ interface-compatible with the version that the work was made with.
305
+
306
+ c) Accompany the work with a written offer, valid for at
307
+ least three years, to give the same user the materials
308
+ specified in Subsection 6a, above, for a charge no more
309
+ than the cost of performing this distribution.
310
+
311
+ d) If distribution of the work is made by offering access to copy
312
+ from a designated place, offer equivalent access to copy the above
313
+ specified materials from the same place.
314
+
315
+ e) Verify that the user has already received a copy of these
316
+ materials or that you have already sent this user a copy.
317
+
318
+ For an executable, the required form of the "work that uses the
319
+ Library" must include any data and utility programs needed for
320
+ reproducing the executable from it. However, as a special exception,
321
+ the materials to be distributed need not include anything that is
322
+ normally distributed (in either source or binary form) with the major
323
+ components (compiler, kernel, and so on) of the operating system on
324
+ which the executable runs, unless that component itself accompanies
325
+ the executable.
326
+
327
+ It may happen that this requirement contradicts the license
328
+ restrictions of other proprietary libraries that do not normally
329
+ accompany the operating system. Such a contradiction means you cannot
330
+ use both them and the Library together in an executable that you
331
+ distribute.
332
+
333
+ 7. You may place library facilities that are a work based on the
334
+ Library side-by-side in a single library together with other library
335
+ facilities not covered by this License, and distribute such a combined
336
+ library, provided that the separate distribution of the work based on
337
+ the Library and of the other library facilities is otherwise
338
+ permitted, and provided that you do these two things:
339
+
340
+ a) Accompany the combined library with a copy of the same work
341
+ based on the Library, uncombined with any other library
342
+ facilities. This must be distributed under the terms of the
343
+ Sections above.
344
+
345
+ b) Give prominent notice with the combined library of the fact
346
+ that part of it is a work based on the Library, and explaining
347
+ where to find the accompanying uncombined form of the same work.
348
+
349
+ 8. You may not copy, modify, sublicense, link with, or distribute
350
+ the Library except as expressly provided under this License. Any
351
+ attempt otherwise to copy, modify, sublicense, link with, or
352
+ distribute the Library is void, and will automatically terminate your
353
+ rights under this License. However, parties who have received copies,
354
+ or rights, from you under this License will not have their licenses
355
+ terminated so long as such parties remain in full compliance.
356
+
357
+ 9. You are not required to accept this License, since you have not
358
+ signed it. However, nothing else grants you permission to modify or
359
+ distribute the Library or its derivative works. These actions are
360
+ prohibited by law if you do not accept this License. Therefore, by
361
+ modifying or distributing the Library (or any work based on the
362
+ Library), you indicate your acceptance of this License to do so, and
363
+ all its terms and conditions for copying, distributing or modifying
364
+ the Library or works based on it.
365
+
366
+ 10. Each time you redistribute the Library (or any work based on the
367
+ Library), the recipient automatically receives a license from the
368
+ original licensor to copy, distribute, link with or modify the Library
369
+ subject to these terms and conditions. You may not impose any further
370
+ restrictions on the recipients' exercise of the rights granted herein.
371
+ You are not responsible for enforcing compliance by third parties with
372
+ this License.
373
+
374
+ 11. If, as a consequence of a court judgment or allegation of patent
375
+ infringement or for any other reason (not limited to patent issues),
376
+ conditions are imposed on you (whether by court order, agreement or
377
+ otherwise) that contradict the conditions of this License, they do not
378
+ excuse you from the conditions of this License. If you cannot
379
+ distribute so as to satisfy simultaneously your obligations under this
380
+ License and any other pertinent obligations, then as a consequence you
381
+ may not distribute the Library at all. For example, if a patent
382
+ license would not permit royalty-free redistribution of the Library by
383
+ all those who receive copies directly or indirectly through you, then
384
+ the only way you could satisfy both it and this License would be to
385
+ refrain entirely from distribution of the Library.
386
+
387
+ If any portion of this section is held invalid or unenforceable under any
388
+ particular circumstance, the balance of the section is intended to apply,
389
+ and the section as a whole is intended to apply in other circumstances.
390
+
391
+ It is not the purpose of this section to induce you to infringe any
392
+ patents or other property right claims or to contest validity of any
393
+ such claims; this section has the sole purpose of protecting the
394
+ integrity of the free software distribution system which is
395
+ implemented by public license practices. Many people have made
396
+ generous contributions to the wide range of software distributed
397
+ through that system in reliance on consistent application of that
398
+ system; it is up to the author/donor to decide if he or she is willing
399
+ to distribute software through any other system and a licensee cannot
400
+ impose that choice.
401
+
402
+ This section is intended to make thoroughly clear what is believed to
403
+ be a consequence of the rest of this License.
404
+
405
+ 12. If the distribution and/or use of the Library is restricted in
406
+ certain countries either by patents or by copyrighted interfaces, the
407
+ original copyright holder who places the Library under this License may add
408
+ an explicit geographical distribution limitation excluding those countries,
409
+ so that distribution is permitted only in or among countries not thus
410
+ excluded. In such case, this License incorporates the limitation as if
411
+ written in the body of this License.
412
+
413
+ 13. The Free Software Foundation may publish revised and/or new
414
+ versions of the Lesser General Public License from time to time.
415
+ Such new versions will be similar in spirit to the present version,
416
+ but may differ in detail to address new problems or concerns.
417
+
418
+ Each version is given a distinguishing version number. If the Library
419
+ specifies a version number of this License which applies to it and
420
+ "any later version", you have the option of following the terms and
421
+ conditions either of that version or of any later version published by
422
+ the Free Software Foundation. If the Library does not specify a
423
+ license version number, you may choose any version ever published by
424
+ the Free Software Foundation.
425
+
426
+ 14. If you wish to incorporate parts of the Library into other free
427
+ programs whose distribution conditions are incompatible with these,
428
+ write to the author to ask for permission. For software which is
429
+ copyrighted by the Free Software Foundation, write to the Free
430
+ Software Foundation; we sometimes make exceptions for this. Our
431
+ decision will be guided by the two goals of preserving the free status
432
+ of all derivatives of our free software and of promoting the sharing
433
+ and reuse of software generally.
434
+
435
+ NO WARRANTY
436
+
437
+ 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
438
+ WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
439
+ EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
440
+ OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
441
+ KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
442
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
443
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
444
+ LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
445
+ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
446
+
447
+ 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
448
+ WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
449
+ AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
450
+ FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
451
+ CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
452
+ LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
453
+ RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
454
+ FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
455
+ SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
456
+ DAMAGES.
457
+
458
+ END OF TERMS AND CONDITIONS
459
+
460
+ How to Apply These Terms to Your New Libraries
461
+
462
+ If you develop a new library, and you want it to be of the greatest
463
+ possible use to the public, we recommend making it free software that
464
+ everyone can redistribute and change. You can do so by permitting
465
+ redistribution under these terms (or, alternatively, under the terms of the
466
+ ordinary General Public License).
467
+
468
+ To apply these terms, attach the following notices to the library. It is
469
+ safest to attach them to the start of each source file to most effectively
470
+ convey the exclusion of warranty; and each file should have at least the
471
+ "copyright" line and a pointer to where the full notice is found.
472
+
473
+ <one line to give the library's name and a brief idea of what it does.>
474
+ Copyright (C) <year> <name of author>
475
+
476
+ This library is free software; you can redistribute it and/or
477
+ modify it under the terms of the GNU Lesser General Public
478
+ License as published by the Free Software Foundation; either
479
+ version 2.1 of the License, or (at your option) any later version.
480
+
481
+ This library is distributed in the hope that it will be useful,
482
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
483
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
484
+ Lesser General Public License for more details.
485
+
486
+ You should have received a copy of the GNU Lesser General Public
487
+ License along with this library; if not, write to the Free Software
488
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
489
+
490
+ Also add information on how to contact you by electronic and paper mail.
491
+
492
+ You should also get your employer (if you work as a programmer) or your
493
+ school, if any, to sign a "copyright disclaimer" for the library, if
494
+ necessary. Here is a sample; alter the names:
495
+
496
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the
497
+ library `Frob' (a library for tweaking knobs) written by James Random Hacker.
498
+
499
+ <signature of Ty Coon>, 1 April 1990
500
+ Ty Coon, President of Vice
501
+
502
+ That's all there is to it!
503
+
504
+
includes/js/tinymce-lite/plugins/anchor/plugin.min.js ADDED
@@ -0,0 +1 @@
 
1
+ tinymce.PluginManager.add("anchor",function(a){function b(){var b=a.selection.getNode(),c="";"A"==b.tagName&&(c=b.name||b.id||""),a.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:c},onsubmit:function(b){a.execCommand("mceInsertContent",!1,a.dom.createHTML("a",{id:b.data.name}))}})}a.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:b,stateSelector:"a:not([href])"}),a.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:b})});
includes/js/tinymce-lite/plugins/hr/plugin.min.js ADDED
@@ -0,0 +1 @@
 
1
+ tinymce.PluginManager.add("hr",function(a){a.addCommand("InsertHorizontalRule",function(){a.execCommand("mceInsertContent",!1,"<hr />")}),a.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),a.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})});
includes/js/tinymce-lite/plugins/link/plugin.min.js ADDED
@@ -0,0 +1 @@
 
1
+ tinymce.PluginManager.add("link",function(a){function b(b){return function(){var c=a.settings.link_list;"string"==typeof c?tinymce.util.XHR.send({url:c,success:function(a){b(tinymce.util.JSON.parse(a))}}):"function"==typeof c?c(b):b(c)}}function c(a,b,c){function d(a,c){return c=c||[],tinymce.each(a,function(a){var e={text:a.text||a.title};a.menu?e.menu=d(a.menu):(e.value=a.value,b&&b(e)),c.push(e)}),c}return d(a,c||[])}function d(b){function d(a){var b=l.find("#text");(!b.value()||a.lastControl&&b.value()==a.lastControl.text())&&b.value(a.control.text()),l.find("#href").value(a.control.value())}function e(b){var c=[];return tinymce.each(a.dom.select("a:not([href])"),function(a){var d=a.name||a.id;d&&c.push({text:d,value:"#"+d,selected:-1!=b.indexOf("#"+d)})}),c.length?(c.unshift({text:"None",value:""}),{name:"anchor",type:"listbox",label:"Anchors",values:c,onselect:d}):void 0}function f(){!k&&0===u.text.length&&m&&this.parent().parent().find("#text")[0].value(this.value())}function g(b){var c=b.meta||{};o&&o.value(a.convertURL(this.value(),"href")),tinymce.each(b.meta,function(a,b){l.find("#"+b).value(a)}),c.text||f.call(this)}function h(a){var b=v.getContent();if(/</.test(b)&&(!/^<a [^>]+>[^<]+<\/a>$/.test(b)||-1==b.indexOf("href=")))return!1;if(a){var c,d=a.childNodes;if(0===d.length)return!1;for(c=d.length-1;c>=0;c--)if(3!=d[c].nodeType)return!1}return!0}var i,j,k,l,m,n,o,p,q,r,s,t,u={},v=a.selection,w=a.dom;i=v.getNode(),j=w.getParent(i,"a[href]"),m=h(),u.text=k=j?j.innerText||j.textContent:v.getContent({format:"text"}),u.href=j?w.getAttrib(j,"href"):"",j?u.target=w.getAttrib(j,"target"):a.settings.default_link_target&&(u.target=a.settings.default_link_target),(t=w.getAttrib(j,"rel"))&&(u.rel=t),(t=w.getAttrib(j,"class"))&&(u["class"]=t),(t=w.getAttrib(j,"title"))&&(u.title=t),m&&(n={name:"text",type:"textbox",size:40,label:"Text to display",onchange:function(){u.text=this.value()}}),b&&(o={type:"listbox",label:"Link list",values:c(b,function(b){b.value=a.convertURL(b.value||b.url,"href")},[{text:"None",value:""}]),onselect:d,value:a.convertURL(u.href,"href"),onPostRender:function(){o=this}}),a.settings.target_list!==!1&&(a.settings.target_list||(a.settings.target_list=[{text:"None",value:""},{text:"New window",value:"_blank"}]),q={name:"target",type:"listbox",label:"Target",values:c(a.settings.target_list)}),a.settings.rel_list&&(p={name:"rel",type:"listbox",label:"Rel",values:c(a.settings.rel_list)}),a.settings.link_class_list&&(r={name:"class",type:"listbox",label:"Class",values:c(a.settings.link_class_list,function(b){b.value&&(b.textStyle=function(){return a.formatter.getCssText({inline:"a",classes:[b.value]})})})}),a.settings.link_title!==!1&&(s={name:"title",type:"textbox",label:"Title",value:u.title}),l=a.windowManager.open({title:"Insert link",data:u,body:[{name:"href",type:"filepicker",filetype:"file",size:40,autofocus:!0,label:"Url",onchange:g,onkeyup:f},n,s,e(u.href),o,p,q,r],onSubmit:function(b){function c(b,c){var d=a.selection.getRng();window.setTimeout(function(){a.windowManager.confirm(b,function(b){a.selection.setRng(d),c(b)})},0)}function d(){var b={href:e,target:u.target?u.target:null,rel:u.rel?u.rel:null,"class":u["class"]?u["class"]:null,title:u.title?u.title:null};j?(a.focus(),m&&u.text!=k&&("innerText"in j?j.innerText=u.text:j.textContent=u.text),w.setAttribs(j,b),v.select(j),a.undoManager.add()):m?a.insertContent(w.createHTML("a",b,w.encode(u.text))):a.execCommand("mceInsertLink",!1,b)}var e;return u=tinymce.extend(u,b.data),(e=u.href)?e.indexOf("@")>0&&-1==e.indexOf("//")&&-1==e.indexOf("mailto:")?void c("The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?",function(a){a&&(e="mailto:"+e),d()}):a.settings.link_assume_external_targets&&!/^\w+:/i.test(e)||!a.settings.link_assume_external_targets&&/^\s*www\./i.test(e)?void c("The URL you entered seems to be an external link. Do you want to add the required http:// prefix?",function(a){a&&(e="http://"+e),d()}):void d():void a.execCommand("unlink")}})}a.addButton("link",{icon:"link",tooltip:"Insert/edit link",shortcut:"Meta+K",onclick:b(d),stateSelector:"a[href]"}),a.addButton("unlink",{icon:"unlink",tooltip:"Remove link",cmd:"unlink",stateSelector:"a[href]"}),a.addShortcut("Meta+K","",b(d)),a.addCommand("mceLink",b(d)),this.showDialog=d,a.addMenuItem("link",{icon:"link",text:"Insert/edit link",shortcut:"Meta+K",onclick:b(d),stateSelector:"a[href]",context:"insert",prependToContext:!0})});
includes/js/tinymce-lite/skins/lightgray/content.inline.min.css ADDED
@@ -0,0 +1 @@
 
1
+ .mce-object{border:1px dotted #3A3A3A;background:#d5d5d5 url(img/object.gif) no-repeat center}.mce-pagebreak{cursor:default;display:block;border:0;width:100%;height:5px;border:1px dashed #666;margin-top:15px;page-break-before:always}@media print{.mce-pagebreak{border:0}}.mce-item-anchor{cursor:default;display:inline-block;-webkit-user-select:all;-webkit-user-modify:read-only;-moz-user-select:all;-moz-user-modify:read-only;user-select:all;user-modify:read-only;width:9px!important;height:9px!important;border:1px dotted #3A3A3A;background:#d5d5d5 url(img/anchor.gif) no-repeat center}.mce-nbsp,.mce-shy{background:#AAA}.mce-shy::after{content:'-'}hr{cursor:default}.mce-match-marker{background:#AAA;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-spellchecker-word{border-bottom:2px solid red;cursor:default}.mce-spellchecker-grammar{border-bottom:2px solid green;cursor:default}.mce-item-table,.mce-item-table td,.mce-item-table th,.mce-item-table caption{border:1px dashed #BBB}td.mce-item-selected,th.mce-item-selected{background-color:#39f!important}.mce-edit-focus{outline:1px dotted #333}
includes/js/tinymce-lite/skins/lightgray/content.min.css ADDED
@@ -0,0 +1 @@
 
1
+ body{background-color:#FFF;color:#000;font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px;scrollbar-3dlight-color:#F0F0EE;scrollbar-arrow-color:#676662;scrollbar-base-color:#F0F0EE;scrollbar-darkshadow-color:#DDD;scrollbar-face-color:#E0E0DD;scrollbar-highlight-color:#F0F0EE;scrollbar-shadow-color:#F0F0EE;scrollbar-track-color:#F5F5F5}td,th{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:11px}.mce-object{border:1px dotted #3A3A3A;background:#d5d5d5 url(img/object.gif) no-repeat center}.mce-pagebreak{cursor:default;display:block;border:0;width:100%;height:5px;border:1px dashed #666;margin-top:15px;page-break-before:always}@media print{.mce-pagebreak{border:0}}.mce-item-anchor{cursor:default;display:inline-block;-webkit-user-select:all;-webkit-user-modify:read-only;-moz-user-select:all;-moz-user-modify:read-only;user-select:all;user-modify:read-only;width:9px!important;height:9px!important;border:1px dotted #3A3A3A;background:#d5d5d5 url(img/anchor.gif) no-repeat center}.mce-nbsp,.mce-shy{background:#AAA}.mce-shy::after{content:'-'}hr{cursor:default}.mce-match-marker{background:#AAA;color:#fff}.mce-match-marker-selected{background:#39f;color:#fff}.mce-spellchecker-word{border-bottom:2px solid red;cursor:default}.mce-spellchecker-grammar{border-bottom:2px solid green;cursor:default}.mce-item-table,.mce-item-table td,.mce-item-table th,.mce-item-table caption{border:1px dashed #BBB}td.mce-item-selected,th.mce-item-selected{background-color:#39f!important}.mce-edit-focus{outline:1px dotted #333}
includes/js/tinymce-lite/skins/lightgray/fonts/tinymce-small.eot ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/fonts/tinymce-small.svg ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="tinymce-small" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" d="" horiz-adv-x="512" />
10
+ <glyph unicode="&#xe000;" d="M960 80v591.938l-223.938 224.062h-592.062c-44.182 0-80-35.816-80-80v-736c0-44.184 35.818-80 80-80h736c44.184 0 80 35.816 80 80zM576 768h64v-192h-64v192zM704 128h-384v255.882c0.034 0.042 0.076 0.082 0.116 0.118h383.77c0.040-0.036 0.082-0.076 0.116-0.118l-0.002-255.882zM832 128h-64v256c0 35.2-28.8 64-64 64h-384c-35.2 0-64-28.8-64-64v-256h-64v640h64v-192c0-35.2 28.8-64 64-64h320c35.2 0 64 28.8 64 64v171.010l128-128.072v-490.938z" />
11
+ <glyph unicode="&#xe001;" d="M850.746 717.254l-133.492 133.49c-24.888 24.892-74.054 45.256-109.254 45.256h-416c-35.2 0-64-28.8-64-64v-768c0-35.2 28.8-64 64-64h640c35.2 0 64 28.8 64 64v544c0 35.2-20.366 84.364-45.254 109.254zM805.49 672.002c6.792-6.796 13.792-19.162 18.894-32.002h-184.384v184.386c12.84-5.1 25.204-12.1 32-18.896l133.49-133.488zM831.884 64h-639.77c-0.040 0.034-0.082 0.076-0.114 0.116v767.77c0.034 0.040 0.076 0.082 0.114 0.114h383.886v-256h256v-511.884c-0.034-0.040-0.076-0.082-0.116-0.116z" />
12
+ <glyph unicode="&#xe002;" d="M1024 367.542v160.916l-159.144 15.914c-8.186 30.042-20.088 58.548-35.21 84.98l104.596 127.838-113.052 113.050-127.836-104.596c-26.434 15.124-54.942 27.026-84.982 35.208l-15.914 159.148h-160.916l-15.914-159.146c-30.042-8.186-58.548-20.086-84.98-35.208l-127.838 104.594-113.050-113.050 104.596-127.836c-15.124-26.432-27.026-54.94-35.21-84.98l-159.146-15.916v-160.916l159.146-15.914c8.186-30.042 20.086-58.548 35.21-84.982l-104.596-127.836 113.048-113.048 127.838 104.596c26.432-15.124 54.94-27.028 84.98-35.21l15.916-159.148h160.916l15.914 159.144c30.042 8.186 58.548 20.088 84.982 35.21l127.836-104.596 113.048 113.048-104.596 127.836c15.124 26.434 27.028 54.942 35.21 84.98l159.148 15.92zM704 384l-128-128h-128l-128 128v128l128 128h128l128-128v-128z" />
13
+ <glyph unicode="&#xe003;" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM64 576h576v-128h-576zM64 192h576v-128h-576z" />
14
+ <glyph unicode="&#xe004;" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM256 576h512v-128h-512zM256 192h512v-128h-512z" />
15
+ <glyph unicode="&#xe005;" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM384 576h576v-128h-576zM384 192h576v-128h-576z" />
16
+ <glyph unicode="&#xe006;" d="M64 768h896v-128h-896zM64 384h896v-128h-896zM64 576h896v-128h-896zM64 192h896v-128h-896z" />
17
+ <glyph unicode="&#xe007;" d="M864.408 289.868c-46.47 46.47-106.938 68.004-161.082 62.806l-63.326 63.326 192 192c0 0 128 128 0 256l-320-320-320 320c-128-128 0-256 0-256l192-192-63.326-63.326c-54.144 5.198-114.61-16.338-161.080-62.806-74.98-74.98-85.112-186.418-22.626-248.9 62.482-62.482 173.92-52.354 248.9 22.626 46.47 46.468 68.002 106.938 62.806 161.080l63.326 63.326 63.328-63.328c-5.196-54.144 16.336-114.61 62.806-161.078 74.978-74.98 186.418-85.112 248.898-22.626 62.488 62.482 52.356 173.918-22.624 248.9zM353.124 201.422c-2.212-24.332-15.020-49.826-35.14-69.946-22.212-22.214-51.080-35.476-77.218-35.476-10.524 0-25.298 2.228-35.916 12.848-21.406 21.404-17.376 73.132 22.626 113.136 22.212 22.214 51.080 35.476 77.218 35.476 10.524 0 25.298-2.228 35.916-12.848 13.112-13.11 13.47-32.688 12.514-43.19zM512 352c-35.346 0-64 28.654-64 64s28.654 64 64 64 64-28.654 64-64-28.654-64-64-64zM819.152 108.848c-10.62-10.62-25.392-12.848-35.916-12.848-26.138 0-55.006 13.262-77.218 35.476-20.122 20.12-32.928 45.614-35.138 69.946-0.958 10.502-0.6 30.080 12.514 43.192 10.618 10.622 25.39 12.848 35.916 12.848 26.136 0 55.006-13.262 77.216-35.474 40.004-40.008 44.032-91.736 22.626-113.14z" />
18
+ <glyph unicode="&#xe008;" d="M704 576v160c0 17.6-14.4 32-32 32h-160v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-160c-17.602 0-32-14.4-32-32v-512c0-17.6 14.398-32 32-32h224v-192h384l192 192v384h-192zM320 831.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 640v64h384v-64h-384zM704 90.51v101.49h101.49l-101.49-101.49zM832 256h-192v-192h-256v448h448v-256z" />
19
+ <glyph unicode="&#xe009;" d="M888 576h-56v256h64v64h-320v-64h64v-256h-256v256h64v64h-320v-64h64v-256h-56c-39.6 0-72-32.4-72-72v-432c0-39.6 32.4-72 72-72h240c39.6 0 72 32.4 72 72v312h128v-312c0-39.6 32.4-72 72-72h240c39.6 0 72 32.4 72 72v432c0 39.6-32.4 72-72 72zM348 64h-184c-19.8 0-36 14.4-36 32s16.2 32 36 32h184c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM860 64h-184c-19.8 0-36 14.4-36 32s16.2 32 36 32h184c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
20
+ <glyph unicode="&#xe00a;" d="M384 832h576v-128h-576zM384 512h576v-128h-576zM384 192h576v-128h-576zM128 768c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM128 448c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM128 128c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64z" />
21
+ <glyph unicode="&#xe00b;" d="M384 832h576v-128h-576zM384 512h576v-128h-576zM384 192h576v-128h-576zM320 430v146h-64v320h-128v-64h64v-256h-64v-64h128v-50l-128-60v-146h128v-64h-128v-64h128v-64h-128v-64h192v320h-128v50z" />
22
+ <glyph unicode="&#xe00c;" d="M64 768h896v-128h-896zM384 384h576v-128h-576zM384 576h576v-128h-576zM64 192h896v-128h-896zM64 576l224-160-224-160z" />
23
+ <glyph unicode="&#xe00d;" d="M64 768h896v-128h-896zM64 384h576v-128h-576zM64 576h576v-128h-576zM64 192h896v-128h-896zM960 576l-224-160 224-160z" />
24
+ <glyph unicode="&#xe00e;" d="M256.428 535.274c105.8 0 191.572-91.17 191.572-203.638 0-112.464-85.772-203.636-191.572-203.636-105.802 0-191.572 91.17-191.572 203.636l-0.856 29.092c0 224.93 171.54 407.272 383.144 407.272v-116.364c-73.1 0-141.826-30.26-193.516-85.204-9.954-10.578-19.034-21.834-27.224-33.656 9.784 1.64 19.806 2.498 30.024 2.498zM768.428 535.274c105.8 0 191.572-91.17 191.572-203.638 0-112.464-85.772-203.636-191.572-203.636-105.802 0-191.572 91.17-191.572 203.636l-0.856 29.092c0 224.93 171.54 407.272 383.144 407.272v-116.364c-73.1 0-141.826-30.26-193.516-85.204-9.956-10.578-19.036-21.834-27.224-33.656 9.784 1.64 19.806 2.498 30.024 2.498z" />
25
+ <glyph unicode="&#xe00f;" d="M704 0c59 199 134.906 455.266-256 446.096v-222.096l-336.002 336 336.002 336v-217.326c468.092 12.2 544-358.674 256-678.674z" />
26
+ <glyph unicode="&#xe010;" d="M576 678.674v217.326l336.002-336-336.002-336v222.096c-390.906 9.17-315-247.096-256-446.096-288 320-212.092 690.874 256 678.674z" />
27
+ <glyph unicode="&#xe011;" d="M927.274 729.784l-133.49 133.488c-21.104 21.104-49.232 32.728-79.198 32.728s-58.094-11.624-79.196-32.726l-165.492-165.49c-43.668-43.668-43.668-114.724 0-158.392l2.746-2.746 67.882 67.882-2.746 2.746c-6.132 6.132-6.132 16.494 0 22.626l165.492 165.492c4.010 4.008 8.808 4.608 11.312 4.608s7.302-0.598 11.312-4.61l133.49-133.488c6.132-6.134 6.132-16.498 0.002-22.628l-165.494-165.494c-4.008-4.008-8.806-4.608-11.31-4.608s-7.302 0.6-11.312 4.612l-2.746 2.746-67.88-67.884 2.742-2.742c21.106-21.108 49.23-32.728 79.2-32.728s58.094 11.624 79.196 32.726l165.494 165.492c43.662 43.666 43.662 114.72-0.004 158.39zM551.356 359.356l-67.882-67.882 2.746-2.746c4.008-4.008 4.61-8.806 4.61-11.31 0-2.506-0.598-7.302-4.606-11.314l-165.494-165.49c-4.010-4.010-8.81-4.61-11.314-4.61s-7.304 0.6-11.314 4.61l-133.492 133.486c-4.010 4.010-4.61 8.81-4.61 11.314s0.598 7.3 4.61 11.312l165.49 165.488c4.010 4.012 8.81 4.612 11.314 4.612s7.304-0.6 11.314-4.612l2.746-2.742 67.882 67.88-2.746 2.746c-21.104 21.104-49.23 32.726-79.196 32.726s-58.092-11.624-79.196-32.726l-165.488-165.486c-21.106-21.104-32.73-49.234-32.73-79.198s11.624-58.094 32.726-79.198l133.49-133.49c21.106-21.102 49.232-32.726 79.198-32.726s58.092 11.624 79.196 32.726l165.494 165.492c21.104 21.104 32.722 49.23 32.722 79.196s-11.624 58.094-32.726 79.196l-2.744 2.746zM352 250c-9.724 0-19.45 3.71-26.87 11.128-14.84 14.84-14.84 38.898 0 53.738l320 320c14.84 14.84 38.896 14.84 53.736 0 14.844-14.84 14.844-38.9 0-53.74l-320-320c-7.416-7.416-17.142-11.126-26.866-11.126z" />
28
+ <glyph unicode="&#xe012;" d="M927.274 729.784l-133.49 133.488c-21.104 21.104-49.232 32.728-79.198 32.728s-58.094-11.624-79.196-32.726l-165.492-165.49c-43.668-43.668-43.668-114.724 0-158.392l2.746-2.746 67.882 67.882-2.746 2.746c-6.132 6.132-6.132 16.494 0 22.626l165.492 165.492c4.010 4.008 8.808 4.608 11.312 4.608s7.302-0.598 11.312-4.61l133.49-133.488c6.132-6.134 6.132-16.498 0.002-22.628l-165.494-165.494c-4.008-4.008-8.806-4.608-11.31-4.608s-7.302 0.6-11.312 4.612l-2.746 2.746-67.88-67.884 2.742-2.742c21.106-21.108 49.23-32.728 79.2-32.728s58.094 11.624 79.196 32.726l165.494 165.492c43.662 43.666 43.662 114.72-0.004 158.39zM551.356 359.356l-67.882-67.882 2.746-2.746c4.008-4.008 4.61-8.806 4.61-11.31 0-2.506-0.598-7.302-4.606-11.314l-165.494-165.49c-4.010-4.010-8.81-4.61-11.314-4.61s-7.304 0.6-11.314 4.61l-133.492 133.486c-4.010 4.010-4.61 8.81-4.61 11.314s0.598 7.3 4.61 11.312l165.49 165.488c4.010 4.012 8.81 4.612 11.314 4.612s7.304-0.6 11.314-4.612l2.746-2.742 67.882 67.88-2.746 2.746c-21.104 21.104-49.23 32.726-79.196 32.726s-58.092-11.624-79.196-32.726l-165.488-165.486c-21.106-21.104-32.73-49.234-32.73-79.198s11.624-58.094 32.726-79.198l133.49-133.49c21.106-21.102 49.232-32.726 79.198-32.726s58.092 11.624 79.196 32.726l165.494 165.492c21.104 21.104 32.722 49.23 32.722 79.196s-11.624 58.094-32.726 79.196l-2.744 2.746zM800 122c-9.724 0-19.45 3.708-26.87 11.13l-128 127.998c-14.844 14.84-14.844 38.898 0 53.738 14.84 14.844 38.896 14.844 53.736 0l128-128c14.844-14.84 14.844-38.896 0-53.736-7.416-7.422-17.142-11.13-26.866-11.13zM608 0c-17.674 0-32 14.326-32 32v128c0 17.674 14.326 32 32 32s32-14.326 32-32v-128c0-17.674-14.326-32-32-32zM928 320h-128c-17.674 0-32 14.326-32 32s14.326 32 32 32h128c17.674 0 32-14.326 32-32s-14.326-32-32-32zM224 774c9.724 0 19.45-3.708 26.87-11.13l128-128c14.842-14.84 14.842-38.898 0-53.738-14.84-14.844-38.898-14.844-53.738 0l-128 128c-14.842 14.84-14.842 38.898 0 53.738 7.418 7.422 17.144 11.13 26.868 11.13zM416 896c17.674 0 32-14.326 32-32v-128c0-17.674-14.326-32-32-32s-32 14.326-32 32v128c0 17.674 14.326 32 32 32zM96 576h128c17.674 0 32-14.326 32-32s-14.326-32-32-32h-128c-17.674 0-32 14.326-32 32s14.326 32 32 32z" />
29
+ <glyph unicode="&#xe013;" d="M256 896v-896l256 256 256-256v896h-512zM704 170.51l-192 192-192-192v661.49h384v-661.49z" />
30
+ <glyph unicode="&#xe014;" d="M896 832h-768c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h768c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM896 128.116c-0.012-0.014-0.030-0.028-0.042-0.042l-191.958 319.926-160-128-224 288-191.968-479.916c-0.010 0.010-0.022 0.022-0.032 0.032v639.77c0.034 0.040 0.076 0.082 0.114 0.114h767.77c0.040-0.034 0.082-0.076 0.116-0.116v-639.768zM640 608c0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96s-96-42.981-96-96z" />
31
+ <glyph unicode="&#xe015;" d="M896 832h-768c-35.2 0-64-28.8-64-64v-640c0-35.2 28.8-64 64-64h768c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64zM256 128h-128v128h128v-128zM256 384h-128v128h128v-128zM256 640h-128v128h128v-128zM704 128h-384v640h384v-640zM896 128h-128v128h128v-128zM896 384h-128v128h128v-128zM896 640h-128v128h128v-128zM384 640v-384l288 192z" />
32
+ <glyph unicode="&#xe016;" d="M448 256h128v-128h-128v128zM704 704c35.346 0 64-28.654 64-64v-166l-228-154h-92v64l192 128v64h-320v128h384zM512 896c-119.666 0-232.166-46.6-316.784-131.216-84.614-84.618-131.216-197.118-131.216-316.784 0-119.664 46.602-232.168 131.216-316.784 84.618-84.616 197.118-131.216 316.784-131.216 119.664 0 232.168 46.6 316.784 131.216s131.216 197.12 131.216 316.784c0 119.666-46.6 232.166-131.216 316.784-84.616 84.616-197.12 131.216-316.784 131.216z" />
33
+ <glyph unicode="&#xe017;" d="M416 256l-192 192 192 192-64 64-256-256 256-256zM672 704l-64-64 192-192-192-192 64-64 256 256z" />
34
+ <glyph unicode="&#xe018;" d="M77.798 655.376l81.414-50.882c50.802 81.114 128.788 143.454 221.208 174.246l-30.366 91.094c-113.748-37.898-209.728-114.626-272.256-214.458zM673.946 869.834l-30.366-91.094c92.422-30.792 170.404-93.132 221.208-174.248l81.412 50.882c-62.526 99.834-158.506 176.562-272.254 214.46zM607.974 255.992c-4.808 0-9.692 1.090-14.286 3.386l-145.688 72.844v211.778c0 17.672 14.328 32 32 32s32-14.328 32-32v-172.222l110.31-55.156c15.806-7.902 22.214-27.124 14.31-42.932-5.604-11.214-16.908-17.696-28.646-17.698zM512 768c-212.078 0-384-171.922-384-384s171.922-384 384-384c212.078 0 384 171.922 384 384s-171.922 384-384 384zM512 96c-159.058 0-288 128.942-288 288s128.942 288 288 288c159.058 0 288-128.942 288-288s-128.942-288-288-288z" />
35
+ <glyph unicode="&#xe019;" d="M64 504.254c45.318 49.92 97.162 92.36 153.272 125.124 90.332 52.744 192.246 80.622 294.728 80.622 102.48 0 204.396-27.878 294.726-80.624 56.112-32.764 107.956-75.204 153.274-125.124v117.432c-33.010 28.118-68.124 53.14-104.868 74.594-105.006 61.314-223.658 93.722-343.132 93.722s-238.128-32.408-343.134-93.72c-36.742-21.454-71.856-46.478-104.866-74.596v-117.43zM512 640c-183.196 0-345.838-100.556-448-256 102.162-155.448 264.804-256 448-256s345.838 100.552 448 256c-102.162 155.444-264.804 256-448 256zM512 448c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.348 28.654 64 64 64s64-28.652 64-64zM728.066 263.338c-67.434-39.374-140.128-59.338-216.066-59.338s-148.632 19.964-216.066 59.338c-51.554 30.104-98.616 71.31-138.114 120.662 39.498 49.35 86.56 90.558 138.116 120.66 13.276 7.752 26.758 14.74 40.426 20.982-10.512-23.742-16.362-50.008-16.362-77.642 0-106.040 85.962-192 192-192 106.040 0 192 85.96 192 192 0 27.634-5.85 53.9-16.36 77.642 13.668-6.244 27.15-13.23 40.426-20.982 51.554-30.102 98.616-71.31 138.116-120.66-39.498-49.352-86.56-90.558-138.116-120.662z" />
36
+ <glyph unicode="&#xe01a;" d="M651.168 676.166c-24.612 81.962-28.876 91.834-107.168 91.834h-64c-79.618 0-82.664-10.152-108.418-96 0-0.002 0-0.002-0.002-0.004l-143.998-479.996h113.636l57.6 192h226.366l57.6-192h113.63l-145.246 484.166zM437.218 512l38.4 136c10.086 33.618 36.38 30 36.38 30s26.294 3.618 36.38-30h0.004l38.4-136h-149.564z" />
37
+ <glyph unicode="&#xe01b;" d="M64 768v-704h896v704h-896zM384 320v128h256v-128h-256zM640 256v-128h-256v128h256zM640 640v-128h-256v128h256zM320 640v-128h-192v128h192zM128 448h192v-128h-192v128zM704 448h192v-128h-192v128zM704 512v128h192v-128h-192zM128 256h192v-128h-192v128zM704 128v128h192v-128h-192z" />
38
+ <glyph unicode="&#xe01c;" d="M64 512h896v-128h-896z" />
39
+ <glyph unicode="&#xe01d;" d="M64 192h512v-128h-512v128zM768 768h-220.558l-183.766-512h-132.288l183.762 512h-223.15v128h576v-128zM929.774 64l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774-62.226-62.226z" />
40
+ <glyph unicode="&#xe01e;" d="M768 50v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
41
+ <glyph unicode="&#xe01f;" d="M768 754v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
42
+ <glyph unicode="&#xe020;" d="M704 128v37.004c151.348 61.628 256 193.82 256 346.996 0 212.078-200.576 384-448 384s-448-171.922-448-384c0-153.176 104.654-285.368 256-346.996v-37.004h-192l-64 96v-224h320v222.812c-100.9 51.362-170.666 161.54-170.666 289.188 0 176.732 133.718 320 298.666 320s298.666-143.268 298.666-320c0-127.648-69.766-237.826-170.666-289.188v-222.812h320v224l-64-96h-192z" />
43
+ <glyph unicode="&#xe021;" d="M512 820c99.366 0 192.782-38.694 263.042-108.956s108.958-163.678 108.958-263.044-38.696-192.782-108.958-263.042-163.676-108.958-263.042-108.958-192.782 38.696-263.044 108.958-108.956 163.676-108.956 263.042 38.694 192.782 108.956 263.044 163.678 108.956 263.044 108.956zM512 896c-247.424 0-448-200.576-448-448s200.576-448 448-448 448 200.576 448 448-200.576 448-448 448v0zM320 576c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM576 576c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64zM512 304c-101.84 0-192.56 36.874-251.166 94.328 23.126-117.608 126.778-206.328 251.166-206.328s228.040 88.72 251.168 206.328c-58.608-57.454-149.328-94.328-251.168-94.328z" />
44
+ <glyph unicode="&#xe022;" d="M256 832h512v-128h-512v128zM896 640h-768c-35.2 0-64-28.8-64-64v-256c0-35.2 28.796-64 64-64h128v-192h512v192h128c35.2 0 64 28.8 64 64v256c0 35.2-28.8 64-64 64zM704 128h-384v256h384v-256zM910.4 544c0-25.626-20.774-46.4-46.398-46.4s-46.402 20.774-46.402 46.4 20.778 46.4 46.402 46.4c25.626 0 46.398-20.774 46.398-46.4z" />
45
+ <glyph unicode="&#xe023;" d="M480 576l-192 192 128 128h-352v-352l128 128 192-192zM640 480l192 192 128-128v352h-352l128-128-192-192zM544 320l192-192-128-128h352v352l-128-128-192 192zM384 416l-192-192-128 128v-352h352l-128 128 192 192z" />
46
+ <glyph unicode="&#xe024;" d="M960 832v64h-192c-35.202 0-64-28.8-64-64v-320c0-15.856 5.858-30.402 15.496-41.614l-303.496-260.386-142 148-82-70 224-288 416 448h128v64h-192v320h192zM256 448h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192h128v-192zM128 704v128h128v-128h-128zM640 512v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64zM448 832h128v-128h-128v128zM448 640h128v-128h-128v128z" />
47
+ <glyph unicode="&#xe025;" d="M448 448h-128v128h128v128h128v-128h128v-128h-128v-128h-128v128zM960 384v-320h-896v320h128v-192h640v192h128z" />
48
+ <glyph unicode="&#xe026;" d="M512 576h128v-64h-128zM512 192h128v-64h-128zM576 384h128v-64h-128zM768 384v-192h-64v-64h128v256zM384 384h128v-64h-128zM320 192h128v-64h-128zM320 576h128v-64h-128zM192 768v-256h64v192h64v64zM704 512h128v256h-64v-192h-64zM64 896v-896h896v896h-896zM896 64h-768v768h768v-768zM192 384v-256h64v192h64v64zM576 768h128v-64h-128zM384 768h128v-64h-128z" />
49
+ <glyph unicode="&#xe027;" d="M816 896l16-384h-640l16 384h32l16-320h512l16 320h32zM208 0l-16 320h640l-16-320h-32l-16 256h-512l-16-256h-32zM64 448h128v-64h-128zM256 448h128v-64h-128zM448 448h128v-64h-128zM640 448h128v-64h-128zM832 448h128v-64h-128z" />
50
+ <glyph unicode="&#xe028;" d="M576 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098s103.098 154.878 103.098 248.902c0 94.022-36.614 182.418-103.098 248.902s-154.878 103.098-248.902 103.098c-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM768 512v-128h-256v320h128v-192z" />
51
+ <glyph unicode="&#xe02a;" d="M625.442 465.818c48.074 38.15 78.558 94.856 78.558 158.182 0 114.876-100.29 208-224 208h-224v-768h288c123.712 0 224 93.124 224 208 0 88.196-59.118 163.562-142.558 193.818zM384 656c0 26.51 21.49 48 48 48h67.204c42.414 0 76.796-42.98 76.796-96s-34.382-96-76.796-96h-115.204v144zM547.2 192h-115.2c-26.51 0-48 21.49-48 48v144h163.2c42.418 0 76.8-42.98 76.8-96s-34.382-96-76.8-96z" />
52
+ <glyph unicode="&#xe02b;" d="M832 832v-64h-144l-256-640h144v-64h-448v64h144l256 640h-144v64h448z" />
53
+ <glyph unicode="&#xe02c;" d="M192 128h576v-64h-576v64zM640 832v-384c0-31.312-14.7-61.624-41.39-85.352-30.942-27.502-73.068-42.648-118.61-42.648-45.544 0-87.668 15.146-118.608 42.648-26.692 23.728-41.392 54.040-41.392 85.352v384h-128v-384c0-141.382 128.942-256 288-256s288 114.618 288 256v384h-128z" />
54
+ <glyph unicode="&#xe02d;" d="M960 448h-265.876c-50.078 35.42-114.43 54.86-182.124 54.86-89.206 0-164.572 50.242-164.572 109.712s75.366 109.714 164.572 109.714c75.058 0 140.308-35.576 159.12-82.286h113.016c-7.93 50.644-37.58 97.968-84.058 132.826-50.88 38.16-117.676 59.174-188.078 59.174-70.404 0-137.196-21.014-188.074-59.174-54.788-41.090-86.212-99.502-86.212-160.254s31.424-119.164 86.212-160.254c1.956-1.466 3.942-2.898 5.946-4.316h-265.872v-64h512.532c58.208-17.106 100.042-56.27 100.042-100.572 0-59.468-75.368-109.71-164.572-109.71-75.060 0-140.308 35.574-159.118 82.286h-113.016c7.93-50.64 37.582-97.968 84.060-132.826 50.876-38.164 117.668-59.18 188.072-59.18 70.402 0 137.198 21.016 188.074 59.174 54.79 41.090 86.208 99.502 86.208 160.254 0 35.298-10.654 69.792-30.294 100.572h204.012v64z" />
55
+ <glyph unicode="&#xe02e;" d="M384 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448z" />
56
+ <glyph unicode="&#xe02f;" d="M448 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448zM64 64l224 192-224 192z" />
57
+ <glyph unicode="&#xe030;" d="M320 832c-123.712 0-224-100.288-224-224s100.288-224 224-224v-320h128v640h64v-640h128v640h128v128h-448zM960 448l-224-192 224-192z" />
58
+ <glyph unicode="&#xe031;" d="M832 640h-192v64l-192 192h-384v-704h384v-192h576v448l-192 192zM832 549.49l101.49-101.49h-101.49v101.49zM448 805.49l101.49-101.49h-101.49v101.49zM128 832h256v-192h192v-384h-448v576zM960 64h-448v128h128v384h128v-192h192v-320z" />
59
+ <glyph unicode="&#xe032;" d="M768 704h64v-64h-64zM640 576h64v-64h-64zM640 448h64v-64h-64zM640 320h64v-64h-64zM512 448h64v-64h-64zM512 320h64v-64h-64zM384 320h64v-64h-64zM768 576h64v-64h-64zM768 448h64v-64h-64zM768 320h64v-64h-64zM768 192h64v-64h-64zM640 192h64v-64h-64zM512 192h64v-64h-64zM384 192h64v-64h-64zM256 192h64v-64h-64z" />
60
+ <glyph unicode="&#xe034;" d="M928 832h-416l-32 64h-352l-64-128h896zM840.34 256h87.66l32 448h-896l64-640h356.080c-104.882 37.776-180.080 138.266-180.080 256 0 149.982 122.018 272 272 272 149.98 0 272-122.018 272-272 0-21.678-2.622-43.15-7.66-64zM874.996 110.25l-134.496 110.692c17.454 28.922 27.5 62.814 27.5 99.058 0 106.040-85.96 192-192 192s-192-85.96-192-192 85.96-192 192-192c36.244 0 70.138 10.046 99.058 27.5l110.692-134.496c22.962-26.678 62.118-28.14 87.006-3.252l5.492 5.492c24.888 24.888 23.426 64.044-3.252 87.006zM576 196c-68.484 0-124 55.516-124 124s55.516 124 124 124 124-55.516 124-124-55.516-124-124-124z" />
61
+ <glyph unicode="&#xe035;" d="M704 576v160c0 17.6-14.4 32-32 32h-160v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-160c-17.602 0-32-14.4-32-32v-512c0-17.6 14.398-32 32-32h224v-192h576v576h-192zM320 831.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 640v64h384v-64h-384zM832 64h-448v448h448v-448zM448 448v-128h32l32 64h64v-192h-48v-64h160v64h-48v192h64l32-64h32v128z" />
62
+ </font></defs></svg>
includes/js/tinymce-lite/skins/lightgray/fonts/tinymce-small.ttf ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/fonts/tinymce-small.woff ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/fonts/tinymce.eot ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/fonts/tinymce.svg ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="tinymce" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" d="" horiz-adv-x="512" />
10
+ <glyph unicode="&#xe000;" d="M896 960h-896v-1024h1024v896l-128 128zM512 832h128v-256h-128v256zM896 64h-768v768h64v-320h576v320h74.978l53.022-53.018v-714.982z" />
11
+ <glyph unicode="&#xe001;" d="M903.432 760.57l-142.864 142.862c-31.112 31.112-92.568 56.568-136.568 56.568h-480c-44 0-80-36-80-80v-864c0-44 36-80 80-80h736c44 0 80 36 80 80v608c0 44-25.456 105.458-56.568 136.57zM858.178 715.314c3.13-3.13 6.25-6.974 9.28-11.314h-163.458v163.456c4.34-3.030 8.184-6.15 11.314-9.28l142.864-142.862zM896 16c0-8.672-7.328-16-16-16h-736c-8.672 0-16 7.328-16 16v864c0 8.672 7.328 16 16 16h480c4.832 0 10.254-0.61 16-1.704v-254.296h254.296c1.094-5.746 1.704-11.166 1.704-16v-608z" />
12
+ <glyph unicode="&#xe002;" d="M1024 367.542v160.916l-159.144 15.914c-8.186 30.042-20.088 58.548-35.21 84.98l104.596 127.838-113.052 113.050-127.836-104.596c-26.434 15.124-54.942 27.026-84.982 35.208l-15.914 159.148h-160.916l-15.914-159.146c-30.042-8.186-58.548-20.086-84.98-35.208l-127.838 104.594-113.050-113.050 104.596-127.836c-15.124-26.432-27.026-54.94-35.21-84.98l-159.146-15.916v-160.916l159.146-15.914c8.186-30.042 20.086-58.548 35.21-84.982l-104.596-127.836 113.048-113.048 127.838 104.596c26.432-15.124 54.94-27.028 84.98-35.21l15.916-159.148h160.916l15.914 159.144c30.042 8.186 58.548 20.088 84.982 35.21l127.836-104.596 113.048 113.048-104.596 127.836c15.124 26.434 27.028 54.942 35.21 84.98l159.148 15.92zM704 384l-128-128h-128l-128 128v128l128 128h128l128-128v-128z" />
13
+ <glyph unicode="&#xe003;" d="M0 896h1024v-128h-1024zM0 704h640v-128h-640zM0 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
14
+ <glyph unicode="&#xe004;" d="M0 896h1024v-128h-1024zM192 704h640v-128h-640zM192 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
15
+ <glyph unicode="&#xe005;" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 320h640v-128h-640zM0 512h1024v-128h-1024zM0 128h1024v-128h-1024z" />
16
+ <glyph unicode="&#xe006;" d="M0 896h1024v-128h-1024zM0 704h1024v-128h-1024zM0 512h1024v-128h-1024zM0 320h1024v-128h-1024zM0 128h1024v-128h-1024z" />
17
+ <glyph unicode="&#xe007;" d="M890.774 250.846c-45.654 45.556-103.728 69.072-157.946 69.072h-29.112l-63.904 64.008 255.62 256.038c63.904 64.010 63.904 192.028 0 256.038l-383.43-384.056-383.432 384.054c-63.904-64.008-63.904-192.028 0-256.038l255.622-256.034-63.906-64.008h-29.114c-54.22 0-112.292-23.518-157.948-69.076-81.622-81.442-92.65-202.484-24.63-270.35 29.97-29.902 70.288-44.494 112.996-44.494 54.216 0 112.29 23.514 157.946 69.072 53.584 53.464 76.742 124 67.084 185.348l65.384 65.488 65.376-65.488c-9.656-61.348 13.506-131.882 67.084-185.348 45.662-45.558 103.732-69.072 157.948-69.072 42.708 0 83.024 14.592 112.994 44.496 68.020 67.866 56.988 188.908-24.632 270.35zM353.024 114.462c-7.698-17.882-19.010-34.346-33.626-48.926-14.636-14.604-31.172-25.918-49.148-33.624-16.132-6.916-32.96-10.568-48.662-10.568-15.146 0-36.612 3.402-52.862 19.612-16.136 16.104-19.52 37.318-19.52 52.288 0 15.542 3.642 32.21 10.526 48.212 7.7 17.884 19.014 34.346 33.626 48.926 14.634 14.606 31.172 25.914 49.15 33.624 16.134 6.914 32.96 10.568 48.664 10.568 15.146 0 36.612-3.4 52.858-19.614 16.134-16.098 19.522-37.316 19.522-52.284 0.002-15.542-3.638-32.216-10.528-48.214zM512.004 293.404c-49.914 0-90.376 40.532-90.376 90.526 0 49.992 40.462 90.52 90.376 90.52s90.372-40.528 90.372-90.52c0-49.998-40.46-90.526-90.372-90.526zM855.272 40.958c-16.248-16.208-37.712-19.612-52.86-19.612-15.704 0-32.53 3.652-48.666 10.568-17.972 7.706-34.508 19.020-49.142 33.624-14.614 14.58-25.926 31.042-33.626 48.926-6.886 15.998-10.526 32.672-10.526 48.212 0 14.966 3.384 36.188 19.52 52.286 16.246 16.208 37.712 19.614 52.86 19.614 15.7 0 32.53-3.654 48.66-10.568 17.978-7.708 34.516-19.018 49.15-33.624 14.61-14.58 25.924-31.042 33.626-48.926 6.884-15.998 10.526-32.67 10.526-48.212-0.002-14.97-3.39-36.186-19.522-52.288z" />
18
+ <glyph unicode="&#xe008;" d="M832 640v160c0 17.6-14.4 32-32 32h-224v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-224c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h448l192 192v512h-192zM384 895.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 704v64h512v-64h-512zM832 26.51v101.49h101.49l-101.49-101.49zM960 192h-192v-192h-320v576h512v-384z" />
19
+ <glyph unicode="&#xe009;" d="M64 960h384v-64h-384zM576 960h384v-64h-384zM952 640h-56v256h-256v-256h-256v256h-256v-256h-56c-39.6 0-72-32.4-72-72v-560c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v376h128v-376c0-39.6 32.4-72 72-72h304c39.6 0 72 32.4 72 72v560c0 39.6-32.4 72-72 72zM348 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32zM544 448h-64c-17.6 0-32 14.4-32 32s14.4 32 32 32h64c17.6 0 32-14.4 32-32s-14.4-32-32-32zM924 0h-248c-19.8 0-36 14.4-36 32s16.2 32 36 32h248c19.8 0 36-14.4 36-32s-16.2-32-36-32z" />
20
+ <glyph unicode="&#xe00a;" d="M384 896h640v-128h-640v128zM384 512h640v-128h-640v128zM384 128h640v-128h-640v128zM0 832c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 448c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128zM0 64c0 70.692 57.308 128 128 128s128-57.308 128-128c0-70.692-57.308-128-128-128s-128 57.308-128 128z" />
21
+ <glyph unicode="&#xe00b;" d="M384 128h640v-128h-640zM384 512h640v-128h-640zM384 896h640v-128h-640zM192 960v-256h-64v192h-64v64zM128 434v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM256 256v-320h-192v64h128v64h-128v64h128v64h-128v64z" />
22
+ <glyph unicode="&#xe00c;" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM0 256v384l256-192z" />
23
+ <glyph unicode="&#xe00d;" d="M0 896h1024v-128h-1024zM384 704h640v-128h-640zM384 512h640v-128h-640zM384 320h640v-128h-640zM0 128h1024v-128h-1024zM256 640v-384l-256 192z" />
24
+ <glyph unicode="&#xe00e;" d="M225 512c123.712 0 224-100.29 224-224 0-123.712-100.288-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.634-11.636-22.252-24.016-31.83-37.020 11.438 1.8 23.16 2.746 35.104 2.746zM801 512c123.71 0 224-100.29 224-224 0-123.712-100.29-224-224-224s-224 100.288-224 224l-1 32c0 247.424 200.576 448 448 448v-128c-85.474 0-165.834-33.286-226.274-93.726-11.636-11.636-22.254-24.016-31.832-37.020 11.44 1.8 23.16 2.746 35.106 2.746z" />
25
+ <glyph unicode="&#xe00f;" d="M761.862-64c113.726 206.032 132.888 520.306-313.862 509.824v-253.824l-384 384 384 384v-248.372c534.962 13.942 594.57-472.214 313.862-775.628z" />
26
+ <glyph unicode="&#xe010;" d="M576 711.628v248.372l384-384-384-384v253.824c-446.75 10.482-427.588-303.792-313.86-509.824-280.712 303.414-221.1 789.57 313.86 775.628z" />
27
+ <glyph unicode="&#xe011;" d="M320 256c17.6-17.6 47.274-16.726 65.942 1.942l316.118 316.116c18.668 18.668 19.54 48.342 1.94 65.942s-47.274 16.726-65.942-1.942l-316.116-316.116c-18.668-18.668-19.542-48.342-1.942-65.942zM476.888 284.888c4.56-9.050 6.99-19.16 6.99-29.696 0-17.616-6.744-34.060-18.992-46.308l-163.382-163.382c-12.248-12.248-28.694-18.992-46.308-18.992s-34.060 6.744-46.308 18.992l-99.382 99.382c-12.248 12.248-18.992 28.694-18.992 46.308s6.744 34.060 18.992 46.308l163.382 163.382c12.248 12.248 28.694 18.994 46.308 18.994 10.536 0 20.644-2.43 29.696-6.99l65.338 65.338c-27.87 21.41-61.44 32.16-95.034 32.16-39.986 0-79.972-15.166-110.308-45.502l-163.382-163.382c-60.67-60.67-60.67-159.948 0-220.618l99.382-99.382c30.334-30.332 70.32-45.5 110.306-45.5 39.988 0 79.974 15.168 110.308 45.502l163.382 163.382c55.82 55.82 60.238 144.298 13.344 205.344l-65.34-65.34zM978.498 815.116l-99.382 99.382c-30.334 30.336-70.32 45.502-110.308 45.502-39.986 0-79.972-15.166-110.308-45.502l-163.382-163.382c-55.82-55.82-60.238-144.298-13.342-205.342l65.338 65.34c-4.558 9.050-6.988 19.16-6.988 29.694 0 17.616 6.744 34.060 18.992 46.308l163.382 163.382c12.248 12.248 28.694 18.994 46.308 18.994s34.060-6.746 46.308-18.994l99.382-99.382c12.248-12.248 18.992-28.694 18.992-46.308s-6.744-34.060-18.992-46.308l-163.382-163.382c-12.248-12.248-28.694-18.992-46.308-18.992-10.536 0-20.644 2.43-29.696 6.99l-65.338-65.338c27.872-21.41 61.44-32.16 95.034-32.16 39.988 0 79.974 15.168 110.308 45.502l163.382 163.382c60.67 60.666 60.67 159.944 0 220.614z" />
28
+ <glyph unicode="&#xe012;" d="M476.888 284.886c4.56-9.048 6.99-19.158 6.99-29.696 0-17.616-6.744-34.058-18.992-46.308l-163.38-163.38c-12.248-12.248-28.696-18.992-46.308-18.992s-34.060 6.744-46.308 18.992l-99.38 99.38c-12.248 12.25-18.992 28.696-18.992 46.308s6.744 34.060 18.992 46.308l163.38 163.382c12.248 12.246 28.696 18.992 46.308 18.992 10.538 0 20.644-2.43 29.696-6.988l65.338 65.336c-27.87 21.41-61.44 32.16-95.034 32.16-39.986 0-79.972-15.166-110.308-45.502l-163.38-163.382c-60.67-60.67-60.67-159.95 0-220.618l99.38-99.382c30.334-30.332 70.32-45.5 110.306-45.5 39.988 0 79.974 15.168 110.308 45.502l163.38 163.38c55.82 55.82 60.238 144.298 13.344 205.346l-65.34-65.338zM978.496 815.116l-99.38 99.382c-30.334 30.336-70.32 45.502-110.308 45.502-39.986 0-79.97-15.166-110.306-45.502l-163.382-163.382c-55.82-55.82-60.238-144.298-13.342-205.342l65.338 65.34c-4.558 9.050-6.988 19.16-6.988 29.694 0 17.616 6.744 34.060 18.992 46.308l163.382 163.382c12.246 12.248 28.694 18.994 46.306 18.994 17.616 0 34.060-6.746 46.308-18.994l99.38-99.382c12.248-12.248 18.992-28.694 18.992-46.308s-6.744-34.060-18.992-46.308l-163.38-163.382c-12.248-12.248-28.694-18.992-46.308-18.992-10.536 0-20.644 2.43-29.696 6.99l-65.338-65.338c27.872-21.41 61.44-32.16 95.034-32.16 39.988 0 79.974 15.168 110.308 45.504l163.38 163.38c60.672 60.666 60.672 159.944 0 220.614zM233.368 681.376l-191.994 191.994 45.256 45.256 191.994-191.994zM384 960h64v-192h-64zM0 576h192v-64h-192zM790.632 214.624l191.996-191.996-45.256-45.256-191.996 191.996zM576 128h64v-192h-64zM832 384h192v-64h-192z" />
29
+ <glyph unicode="&#xe013;" d="M192 960v-1024l320 320 320-320v1024h-640zM768 90.51l-256 256-256-256v805.49h512v-805.49z" />
30
+ <glyph unicode="&#xe014;" d="M0 832v-832h1024v832h-1024zM960 64h-896v704h896v-704zM704 608c0 53.019 42.981 96 96 96s96-42.981 96-96c0-53.019-42.981-96-96-96s-96 42.981-96 96zM896 128h-768l192 512 256-320 128 96z" />
31
+ <glyph unicode="&#xe015;" d="M0 832v-768h1024v768h-1024zM192 128h-128v128h128v-128zM192 384h-128v128h128v-128zM192 640h-128v128h128v-128zM768 128h-512v640h512v-640zM960 128h-128v128h128v-128zM960 384h-128v128h128v-128zM960 640h-128v128h128v-128zM384 640v-384l256 192z" />
32
+ <glyph unicode="&#xe016;" d="M448 256h128v-128h-128zM704 704c35.346 0 64-28.654 64-64v-192l-192-128h-128v64l192 128v64h-320v128h384zM512 864c-111.118 0-215.584-43.272-294.156-121.844s-121.844-183.038-121.844-294.156c0-111.118 43.272-215.584 121.844-294.156s183.038-121.844 294.156-121.844c111.118 0 215.584 43.272 294.156 121.844s121.844 183.038 121.844 294.156c0 111.118-43.272 215.584-121.844 294.156s-183.038 121.844-294.156 121.844zM512 960v0c282.77 0 512-229.23 512-512s-229.23-512-512-512c-282.77 0-512 229.23-512 512s229.23 512 512 512z" />
33
+ <glyph unicode="&#xe017;" d="M320 704l-256-256 256-256h128l-256 256 256 256zM704 704h-128l256-256-256-256h128l256 256z" />
34
+ <glyph unicode="&#xe018;" d="M512 768c-212.076 0-384-171.922-384-384s171.922-384 384-384c212.074 0 384 171.922 384 384s-171.926 384-384 384zM715.644 180.354c-54.392-54.396-126.716-84.354-203.644-84.354s-149.25 29.958-203.646 84.354c-54.396 54.394-84.354 126.718-84.354 203.646s29.958 149.25 84.354 203.646c54.396 54.396 126.718 84.354 203.646 84.354s149.252-29.958 203.642-84.354c54.402-54.396 84.358-126.718 84.358-203.646s-29.958-149.252-84.356-203.646zM325.93 756.138l-42.94 85.878c-98.874-49.536-179.47-130.132-229.006-229.008l85.876-42.94c40.248 80.336 105.732 145.822 186.070 186.070zM884.134 570.070l85.878 42.938c-49.532 98.876-130.126 179.472-229.004 229.008l-42.944-85.878c80.338-40.248 145.824-105.732 186.070-186.068zM512 576h-64v-192c0-10.11 4.7-19.11 12.022-24.972l-0.012-0.016 160-128 39.976 49.976-147.986 118.39v176.622z" />
35
+ <glyph unicode="&#xe019;" d="M512 640c-209.368 0-395.244-100.556-512-256 116.756-155.446 302.632-256 512-256s395.244 100.554 512 256c-116.756 155.444-302.632 256-512 256zM448 512c35.346 0 64-28.654 64-64s-28.654-64-64-64-64 28.654-64 64 28.654 64 64 64zM773.616 254.704c-39.648-20.258-81.652-35.862-124.846-46.376-44.488-10.836-90.502-16.328-136.77-16.328-46.266 0-92.282 5.492-136.768 16.324-43.194 10.518-85.198 26.122-124.846 46.376-63.020 32.202-120.222 76.41-167.64 129.298 47.418 52.888 104.62 97.1 167.64 129.298 32.336 16.522 66.242 29.946 101.082 40.040-19.888-30.242-31.468-66.434-31.468-105.336 0-106.040 85.962-192 192-192s192 85.96 192 192c0 38.902-11.582 75.094-31.466 105.34 34.838-10.096 68.744-23.52 101.082-40.042 63.022-32.198 120.218-76.408 167.638-129.298-47.42-52.886-104.618-97.1-167.638-129.296zM860.918 716.278c-108.72 55.554-226.112 83.722-348.918 83.722s-240.198-28.168-348.918-83.722c-58.772-30.032-113.732-67.904-163.082-112.076v-109.206c55.338 58.566 120.694 107.754 192.194 144.29 99.62 50.904 207.218 76.714 319.806 76.714s220.186-25.81 319.804-76.716c71.502-36.536 136.858-85.724 192.196-144.29v109.206c-49.35 44.174-104.308 82.046-163.082 112.078z" />
36
+ <glyph unicode="&#xe01a;" d="M322.018 128l57.6 192h264.764l57.6-192h113.632l-191.996 640h-223.236l-192-640h113.636zM475.618 640h72.764l57.6-192h-187.964l57.6 192z" />
37
+ <glyph unicode="&#xe01b;" d="M0 896v-896h1024v896h-1024zM384 320v192h256v-192h-256zM640 256v-192h-256v192h256zM640 768v-192h-256v192h256zM320 768v-192h-256v192h256zM64 512h256v-192h-256v192zM704 512h256v-192h-256v192zM704 576v192h256v-192h-256zM64 256h256v-192h-256v192zM704 64v192h256v-192h-256z" />
38
+ <glyph unicode="&#xe01c;" d="M0 512h1024v-128h-1024z" />
39
+ <glyph unicode="&#xe01d;" d="M0 64h576v-128h-576zM192 960h704v-128h-704zM277.388 128l204.688 784.164 123.85-32.328-196.25-751.836zM929.774-64l-129.774 129.774-129.774-129.774-62.226 62.226 129.774 129.774-129.774 129.774 62.226 62.226 129.774-129.774 129.774 129.774 62.226-62.226-129.774-129.774 129.774-129.774z" />
40
+ <glyph unicode="&#xe01e;" d="M768 50v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
41
+ <glyph unicode="&#xe01f;" d="M768 754v-50h128v-64h-192v146l128 60v50h-128v64h192v-146zM676 704h-136l-188-188-188 188h-136l256-256-256-256h136l188 188 188-188h136l-256 256z" />
42
+ <glyph unicode="&#xe020;" d="M704 64h256l64 128v-256h-384v214.214c131.112 56.484 224 197.162 224 361.786 0 214.432-157.598 382.266-352 382.266-194.406 0-352-167.832-352-382.266 0-164.624 92.886-305.302 224-361.786v-214.214h-384v256l64-128h256v32.59c-187.63 66.46-320 227.402-320 415.41 0 247.424 229.23 448 512 448s512-200.576 512-448c0-188.008-132.37-348.95-320-415.41v-32.59z" />
43
+ <glyph unicode="&#xe021;" d="M512 960c-282.77 0-512-229.228-512-512 0-282.77 229.228-512 512-512 282.77 0 512 229.23 512 512 0 282.772-229.23 512-512 512zM512 16c-238.586 0-432 193.412-432 432 0 238.586 193.414 432 432 432 238.59 0 432-193.414 432-432 0-238.588-193.41-432-432-432zM384 640c0-35.346-28.654-64-64-64s-64 28.654-64 64 28.654 64 64 64 64-28.654 64-64zM768 640c0-35.346-28.652-64-64-64s-64 28.654-64 64 28.652 64 64 64 64-28.654 64-64zM512 308c141.074 0 262.688 57.532 318.462 123.192-20.872-171.22-156.288-303.192-318.462-303.192-162.118 0-297.498 132.026-318.444 303.168 55.786-65.646 177.386-123.168 318.444-123.168z" />
44
+ <glyph unicode="&#xe022;" d="M256 896h512v-128h-512zM960 704h-896c-35.2 0-64-28.8-64-64v-320c0-35.2 28.796-64 64-64h192v-256h512v256h192c35.2 0 64 28.8 64 64v320c0 35.2-28.8 64-64 64zM704 64h-384v320h384v-320zM974.4 608c0-25.626-20.774-46.4-46.398-46.4-25.626 0-46.402 20.774-46.402 46.4s20.776 46.4 46.402 46.4c25.626 0 46.398-20.774 46.398-46.4z" />
45
+ <glyph unicode="&#xe023;" d="M1024 960v-384l-138.26 138.26-212-212-107.48 107.48 212 212-138.26 138.26zM245.74 821.74l212-212-107.48-107.48-212 212-138.26-138.26v384h384zM885.74 181.74l138.26 138.26v-384h-384l138.26 138.26-212 212 107.48 107.48zM457.74 286.26l-212-212 138.26-138.26h-384v384l138.26-138.26 212 212z" />
46
+ <glyph unicode="&#xe024;" d="M128 704h128v-192h64v384c0 35.2-28.8 64-64 64h-128c-35.2 0-64-28.8-64-64v-384h64v192zM128 896h128v-128h-128v128zM960 896v64h-192c-35.202 0-64-28.8-64-64v-320c0-35.2 28.798-64 64-64h192v64h-192v320h192zM640 800v96c0 35.2-28.8 64-64 64h-192v-448h192c35.2 0 64 28.8 64 64v96c0 35.2-8.8 64-44 64 35.2 0 44 28.8 44 64zM576 576h-128v128h128v-128zM576 768h-128v128h128v-128zM832 384l-416-448-224 288 82 70 142-148 352 302z" />
47
+ <glyph unicode="&#xe025;" d="M448 384h-192v128h192v192h128v-192h192v-128h-192v-192h-128zM1024 320v-384h-1024v384h128v-256h768v256z" />
48
+ <glyph unicode="&#xe026;" d="M384 768h128v-64h-128zM576 768h128v-64h-128zM896 768v-256h-192v64h128v128h-64v64zM320 576h128v-64h-128zM512 576h128v-64h-128zM192 704v-128h64v-64h-128v256h192v-64zM384 384h128v-64h-128zM576 384h128v-64h-128zM896 384v-256h-192v64h128v128h-64v64zM320 192h128v-64h-128zM512 192h128v-64h-128zM192 320v-128h64v-64h-128v256h192v-64zM960 896h-896v-896h896v896zM1024 960v0-1024h-1024v1024h1024z" />
49
+ <glyph unicode="&#xe027;" d="M0 448h128v-64h-128zM192 448h192v-64h-192zM448 448h128v-64h-128zM640 448h192v-64h-192zM896 448h128v-64h-128zM880 960l16-448h-768l16 448h32l16-384h640l16 384zM144-64l-16 384h768l-16-384h-32l-16 320h-640l-16-320z" />
50
+ <glyph unicode="&#xe028;" d="M576 896c247.424 0 448-200.576 448-448s-200.576-448-448-448v96c94.024 0 182.418 36.614 248.902 103.098s103.098 154.878 103.098 248.902c0 94.022-36.614 182.418-103.098 248.902s-154.878 103.098-248.902 103.098c-94.022 0-182.418-36.614-248.902-103.098-51.14-51.138-84.582-115.246-97.306-184.902h186.208l-224-256-224 256h164.57c31.060 217.102 217.738 384 443.43 384zM768 512v-128h-256v320h128v-192z" />
51
+ <glyph unicode="&#xe02a;" d="M707.88 475.348c37.498 44.542 60.12 102.008 60.12 164.652 0 141.16-114.842 256-256 256h-320v-896h384c141.158 0 256 114.842 256 256 0 92.956-49.798 174.496-124.12 219.348zM384 768h101.5c55.968 0 101.5-57.42 101.5-128s-45.532-128-101.5-128h-101.5v256zM543 128h-159v256h159c58.45 0 106-57.42 106-128s-47.55-128-106-128z" />
52
+ <glyph unicode="&#xe02b;" d="M896 896v-64h-128l-320-768h128v-64h-448v64h128l320 768h-128v64z" />
53
+ <glyph unicode="&#xe02c;" d="M704 896h128v-416c0-159.058-143.268-288-320-288-176.73 0-320 128.942-320 288v416h128v-416c0-40.166 18.238-78.704 51.354-108.506 36.896-33.204 86.846-51.494 140.646-51.494s103.75 18.29 140.646 51.494c33.116 29.802 51.354 68.34 51.354 108.506v416zM192 128h640v-128h-640z" />
54
+ <glyph unicode="&#xe02d;" d="M731.42 442.964c63.92-47.938 100.58-116.086 100.58-186.964s-36.66-139.026-100.58-186.964c-59.358-44.518-137.284-69.036-219.42-69.036-82.138 0-160.062 24.518-219.42 69.036-63.92 47.938-100.58 116.086-100.58 186.964h128c0-69.382 87.926-128 192-128s192 58.618 192 128c0 69.382-87.926 128-192 128-82.138 0-160.062 24.518-219.42 69.036-63.92 47.94-100.58 116.086-100.58 186.964s36.66 139.024 100.58 186.964c59.358 44.518 137.282 69.036 219.42 69.036 82.136 0 160.062-24.518 219.42-69.036 63.92-47.94 100.58-116.086 100.58-186.964h-128c0 69.382-87.926 128-192 128s-192-58.618-192-128c0-69.382 87.926-128 192-128 82.136 0 160.062-24.518 219.42-69.036zM0 448h1024v-64h-1024z" />
55
+ <glyph unicode="&#xe02e;" d="M384 896h512v-128h-128v-768h-128v768h-128v-768h-128v448c-123.712 0-224 100.288-224 224s100.288 224 224 224z" />
56
+ <glyph unicode="&#xe02f;" d="M448 896h512v-128h-128v-768h-128v768h-128v-768h-128v448c-123.712 0-224 100.288-224 224s100.288 224 224 224zM64 512l256-224-256-224z" />
57
+ <glyph unicode="&#xe030;" d="M256 896h512v-128h-128v-768h-128v768h-128v-768h-128v448c-123.712 0-224 100.288-224 224s100.288 224 224 224zM960 64l-256 224 256 224z" />
58
+ <glyph unicode="&#xe031;" d="M832 704h-192v64l-192 192h-448v-768h384v-256h640v576l-192 192zM832 613.49l101.49-101.49h-101.49v101.49zM448 869.49l101.49-101.49h-101.49v101.49zM64 896h320v-192h192v-448h-512v640zM960 0h-512v192h192v448h128v-192h192v-448z" />
59
+ <glyph unicode="&#xe032;" d="M768 704h64v-64h-64zM640 576h64v-64h-64zM640 448h64v-64h-64zM640 320h64v-64h-64zM512 448h64v-64h-64zM512 320h64v-64h-64zM384 320h64v-64h-64zM768 576h64v-64h-64zM768 448h64v-64h-64zM768 320h64v-64h-64zM768 192h64v-64h-64zM640 192h64v-64h-64zM512 192h64v-64h-64zM384 192h64v-64h-64zM256 192h64v-64h-64z" />
60
+ <glyph unicode="&#xe033;" d="M128 416l288-288 480 480-128 128-352-352-160 160z" />
61
+ <glyph unicode="&#xe034;" d="M928 832h-416l-32 64h-352l-64-128h896zM904.34 256h74.86l44.8 448h-1024l64-640h484.080c-104.882 37.776-180.080 138.266-180.080 256 0 149.982 122.018 272 272 272 149.98 0 272-122.018 272-272 0-21.678-2.622-43.15-7.66-64zM1002.996 46.25l-198.496 174.692c17.454 28.92 27.5 62.814 27.5 99.058 0 106.040-85.96 192-192 192s-192-85.96-192-192 85.96-192 192-192c36.244 0 70.138 10.046 99.058 27.5l174.692-198.496c22.962-26.678 62.118-28.14 87.006-3.252l5.492 5.492c24.888 24.888 23.426 64.044-3.252 87.006zM640 196c-68.484 0-124 55.516-124 124s55.516 124 124 124 124-55.516 124-124-55.516-124-124-124z" />
62
+ <glyph unicode="&#xe035;" d="M512 448v-128h32l32 64h64v-256h-48v-64h224v64h-48v256h64l32-64h32v128zM832 640v160c0 17.6-14.4 32-32 32h-224v64c0 35.2-28.8 64-64 64h-128c-35.204 0-64-28.8-64-64v-64h-224c-17.602 0-32-14.4-32-32v-640c0-17.6 14.398-32 32-32h288v-192h640v704h-192zM384 895.886c0.034 0.038 0.072 0.078 0.114 0.114h127.768c0.042-0.036 0.082-0.076 0.118-0.114v-63.886h-128v63.886zM192 704v64h512v-64h-512zM960 0h-512v576h512v-576z" />
63
+ <glyph unicode="&#xe600;" d="M483.2 320l-147.2 336c-9.6 25.6-19.2 44.8-25.6 54.4s-16 12.8-25.6 12.8c-16 0-25.6-3.2-28.8-3.2v70.4c9.6 6.4 25.6 6.4 38.4 9.6 32 0 57.6-6.4 73.6-22.4 6.4-6.4 12.8-16 19.2-25.6 6.4-12.8 12.8-25.6 16-41.6l121.6-291.2 150.4 371.2h92.8l-198.4-470.4v-224h-86.4v224zM0 960v-1024h1024v1024h-1024zM960 0h-896v896h896v-896z" />
64
+ <glyph unicode="&#xe601;" d="M627.2 80h-579.2v396.8h579.2v-396.8zM553.6 406.4h-435.2v-256h435.2v256zM259.2 732.8c176 176 457.6 176 633.6 0s176-457.6 0-633.6c-121.6-121.6-297.6-160-454.4-108.8 121.6-28.8 262.4 9.6 361.6 108.8 150.4 150.4 160 384 22.4 521.6-121.6 121.6-320 128-470.4 19.2l86.4-86.4-294.4-22.4 22.4 294.4 92.8-92.8z" />
65
+ <glyph unicode="&#xe602;" d="M892.8-22.4l-89.6 89.6c-70.4-80-172.8-131.2-288-131.2-208 0-380.8 166.4-384 377.6 0 0 0 0 0 0 0 3.2 0 3.2 0 6.4s0 3.2 0 6.4v0c0 0 0 0 0 3.2 0 0 0 3.2 0 3.2 3.2 105.6 48 211.2 105.6 304l-192 192 44.8 44.8 182.4-182.4c0 0 0 0 0 0l569.6-569.6c0 0 0 0 0 0l99.2-99.2-48-44.8zM896 326.4c0 0 0 0 0 0 0 3.2 0 6.4 0 6.4-9.6 316.8-384 627.2-384 627.2s-108.8-89.6-208-220.8l70.4-70.4c6.4 9.6 16 22.4 22.4 32 41.6 51.2 83.2 96 115.2 128v0c32-32 73.6-76.8 115.2-128 108.8-137.6 169.6-265.6 172.8-371.2 0 0 0-3.2 0-3.2v0 0c0-3.2 0-3.2 0-6.4s0-3.2 0-3.2v0 0c0-22.4-3.2-41.6-9.6-64l76.8-76.8c16 41.6 28.8 89.6 28.8 137.6 0 0 0 0 0 0 0 3.2 0 3.2 0 6.4s0 3.2 0 6.4z" />
66
+ <glyph unicode="&#xe914;" d="M768 416v-352h-640v640h352l128 128h-512c-52.8 0-96-43.2-96-96v-704c0-52.8 43.2-96 96-96h704c52.798 0 96 43.2 96 96v512l-128-128zM864 960l-608-608v-160h160l608 608c0 96-64 160-160 160zM416 320l-48 48 480 480 48-48-480-480z" />
67
+ <glyph unicode="&#xe934;" d="M864.626 486.838c-65.754 183.44-205.11 348.15-352.626 473.162-147.516-125.012-286.87-289.722-352.626-473.162-40.664-113.436-44.682-236.562 12.584-345.4 65.846-125.14 198.632-205.438 340.042-205.438s274.196 80.298 340.040 205.44c57.27 108.838 53.25 231.962 12.586 345.398zM738.764 201.044c-43.802-83.252-132.812-137.044-226.764-137.044-55.12 0-108.524 18.536-152.112 50.652 13.242-1.724 26.632-2.652 40.112-2.652 117.426 0 228.668 67.214 283.402 171.242 44.878 85.292 40.978 173.848 23.882 244.338 14.558-28.15 26.906-56.198 36.848-83.932 22.606-63.062 40.024-156.34-5.368-242.604z" />
68
+ <glyph unicode="&#xeaa8;" d="M704 896c-247.424 0-448-200.576-448-448h-224l288-288 288 288h-224c0 176.73 143.27 320 320 320 176.732 0 320-143.27 320-320 0-176.732-143.268-320-320-320v-128c247.424 0 448 200.576 448 448s-200.576 448-448 448z" horiz-adv-x="1152" />
69
+ <glyph unicode="&#xeaa9;" d="M448 896c247.424 0 448-200.576 448-448h224l-288-288-288 288h224c0 176.73-143.27 320-320 320-176.732 0-320-143.27-320-320 0-176.732 143.268-320 320-320v-128c-247.424 0-448 200.576-448 448s200.576 448 448 448z" horiz-adv-x="1152" />
70
+ <glyph unicode="&#xeaaa;" d="M0 576h1024v384zM1024 0v384h-1024z" />
71
+ <glyph unicode="&#xeaac;" d="M576 960v-1024h384zM0-64h384v1024z" />
72
+ <glyph unicode="&#xeb35;" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM448 768h-128v-128h-128v-128h128v-128h128v128h128v128h-128z" />
73
+ <glyph unicode="&#xeb36;" d="M992.262 88.604l-242.552 206.294c-25.074 22.566-51.89 32.926-73.552 31.926 57.256 67.068 91.842 154.078 91.842 249.176 0 212.078-171.922 384-384 384-212.076 0-384-171.922-384-384s171.922-384 384-384c95.098 0 182.108 34.586 249.176 91.844-1-21.662 9.36-48.478 31.926-73.552l206.294-242.552c35.322-39.246 93.022-42.554 128.22-7.356s31.892 92.898-7.354 128.22zM384 320c-141.384 0-256 114.616-256 256s114.616 256 256 256 256-114.616 256-256-114.614-256-256-256zM192 640h384v-128h-384z" />
74
+ <glyph unicode="&#xeba7;" d="M768 832h-512l-256-256 512-576 512 576-256 256zM512 181.334v2.666h-2.37l-14.222 16h16.592v16h-30.814l-14.222 16h45.036v16h-59.258l-14.222 16h73.48v16h-87.704l-14.222 16h101.926v16h-116.148l-14.222 16h130.37v16h-144.592l-14.222 16h158.814v16h-173.038l-14.222 16h187.26v16h-201.482l-14.222 16h215.704v16h-229.926l-14.222 16h244.148v16h-258.372l-14.222 16h272.594v16h-286.816l-14.222 16h301.038v16h-315.26l-14.222 16h329.482v16h-343.706l-7.344 8.262 139.072 139.072h211.978v-3.334h215.314l16-16h-231.314v-16h247.314l16-16h-263.314v-16h279.314l16-16h-295.314v-16h311.314l16-16h-327.314v-16h343.312l7.738-7.738-351.050-394.928z" />
75
+ <glyph unicode="&#xec6a;" d="M64 768h896v-192h-896zM64 512h896v-192h-896zM64 256h896v-192h-896z" />
76
+ <glyph unicode="&#xeccc;" d="M512 128c35.346 0 64-28.654 64-64v-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v64c0 35.346 28.654 64 64 64zM512 768c-35.346 0-64 28.654-64 64v64c0 35.346 28.654 64 64 64s64-28.654 64-64v-64c0-35.346-28.654-64-64-64zM960 512c35.346 0 64-28.654 64-64s-28.654-64-64-64h-64c-35.348 0-64 28.654-64 64s28.652 64 64 64h64zM192 448c0-35.346-28.654-64-64-64h-64c-35.346 0-64 28.654-64 64s28.654 64 64 64h64c35.346 0 64-28.654 64-64zM828.784 221.726l45.256-45.258c24.992-24.99 24.992-65.516 0-90.508-24.994-24.992-65.518-24.992-90.51 0l-45.256 45.256c-24.992 24.99-24.992 65.516 0 90.51 24.994 24.992 65.518 24.992 90.51 0zM195.216 674.274l-45.256 45.256c-24.994 24.994-24.994 65.516 0 90.51s65.516 24.994 90.51 0l45.256-45.256c24.994-24.994 24.994-65.516 0-90.51s-65.516-24.994-90.51 0zM828.784 674.274c-24.992-24.992-65.516-24.992-90.51 0-24.992 24.994-24.992 65.516 0 90.51l45.256 45.254c24.992 24.994 65.516 24.994 90.51 0 24.992-24.994 24.992-65.516 0-90.51l-45.256-45.254zM195.216 221.726c24.992 24.992 65.518 24.992 90.508 0 24.994-24.994 24.994-65.52 0-90.51l-45.254-45.256c-24.994-24.992-65.516-24.992-90.51 0s-24.994 65.518 0 90.508l45.256 45.258zM512 704c-141.384 0-256-114.616-256-256 0-141.382 114.616-256 256-256 141.382 0 256 114.618 256 256 0 141.384-114.616 256-256 256zM512 288c-88.366 0-160 71.634-160 160s71.634 160 160 160 160-71.634 160-160-71.634-160-160-160z" />
77
+ <glyph unicode="&#xeccd;" d="M715.812 895.52c-60.25 34.784-124.618 55.904-189.572 64.48 122.936-160.082 144.768-384.762 37.574-570.42-107.2-185.67-312.688-279.112-512.788-252.68 39.898-51.958 90.376-97.146 150.628-131.934 245.908-141.974 560.37-57.72 702.344 188.198 141.988 245.924 57.732 560.372-188.186 702.356z" />
78
+ <glyph unicode="&#xecd4;" d="M512 960c-282.77 0-512-229.23-512-512s229.23-512 512-512 512 229.23 512 512-229.23 512-512 512zM128 448c0 212.078 171.922 384 384 384v-768c-212.078 0-384 171.922-384 384z" />
79
+ <glyph unicode="&#xed6a;" d="M893.254 738.746l-90.508 90.508-290.746-290.744-290.746 290.744-90.508-90.506 290.746-290.748-290.746-290.746 90.508-90.508 290.746 290.746 290.746-290.746 90.508 90.51-290.744 290.744z" />
80
+ <glyph unicode="&#xedc0;" d="M672-64l192 192-320 320 320 320-192 192-512-512z" />
81
+ <glyph unicode="&#xedf9;" d="M0 896v-384c0-35.346 28.654-64 64-64s64 28.654 64 64v229.488l677.488-677.488h-229.488c-35.346 0-64-28.652-64-64 0-35.346 28.654-64 64-64h384c35.346 0 64 28.654 64 64v384c0 35.348-28.654 64-64 64s-64-28.652-64-64v-229.488l-677.488 677.488h229.488c35.346 0 64 28.654 64 64s-28.652 64-64 64h-384c-35.346 0-64-28.654-64-64z" />
82
+ <glyph unicode="&#xee78;" d="M832 704l192 192-64 64-192-192h-448v192h-128v-192h-192v-128h192v-512h512v-192h128v192h192v128h-192v448zM320 640h320l-320-320v320zM384 256l320 320v-320h-320z" />
83
+ </font></defs></svg>
includes/js/tinymce-lite/skins/lightgray/fonts/tinymce.ttf ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/fonts/tinymce.woff ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/img/anchor.gif ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/img/loader.gif ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/img/object.gif ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/img/trans.gif ADDED
Binary file
includes/js/tinymce-lite/skins/lightgray/skin.ie7.min.css ADDED
@@ -0,0 +1 @@
 
1
+ .mce-container,.mce-container *,.mce-widget,.mce-widget *,.mce-reset{margin:0;padding:0;border:0;outline:0;vertical-align:top;background:transparent;text-decoration:none;color:#333;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;text-shadow:none;float:none;position:static;width:auto;height:auto;white-space:nowrap;cursor:inherit;-webkit-tap-highlight-color:transparent;line-height:normal;font-weight:normal;text-align:left;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;direction:ltr;max-width:none}.mce-widget button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.mce-container *[unselectable]{-moz-user-select:none;-webkit-user-select:none;-o-user-select:none;user-select:none}.mce-fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.mce-fade.mce-in{opacity:1}.mce-tinymce{visibility:inherit !important;position:relative}.mce-fullscreen{border:0;padding:0;margin:0;overflow:hidden;height:100%;z-index:100}div.mce-fullscreen{position:fixed;top:0;left:0;width:100%;height:auto}.mce-tinymce{display:block}.mce-wordcount{position:absolute;top:0;right:0;padding:8px}div.mce-edit-area{background:#FFF;filter:none}.mce-statusbar{position:relative}.mce-statusbar .mce-container-body{position:relative}.mce-fullscreen .mce-resizehandle{display:none}.mce-charmap{border-collapse:collapse}.mce-charmap td{cursor:default;border:1px solid rgba(0,0,0,0.2);width:20px;height:20px;line-height:20px;text-align:center;vertical-align:middle;padding:2px}.mce-charmap td div{text-align:center}.mce-charmap td:hover{background:#d9d9d9}.mce-grid td.mce-grid-cell div{border:1px solid #d6d6d6;width:15px;height:15px;margin:0px;cursor:pointer}.mce-grid td.mce-grid-cell div:focus{border-color:#3498db}.mce-grid td.mce-grid-cell div[disabled]{cursor:not-allowed}.mce-grid{border-spacing:2px;border-collapse:separate}.mce-grid a{display:block;border:1px solid transparent}.mce-grid a:hover,.mce-grid a:focus{border-color:#3498db}.mce-grid-border{margin:0 4px 0 4px}.mce-grid-border a{border-color:#d6d6d6;width:13px;height:13px}.mce-grid-border a:hover,.mce-grid-border a.mce-active{border-color:#3498db;background:#3498db}.mce-text-center{text-align:center}div.mce-tinymce-inline{width:100%}.mce-colorbtn-trans div{text-align:center;vertical-align:middle;font-weight:bold;font-size:20px;line-height:16px;color:#707070}.mce-toolbar-grp{padding:2px 0}.mce-toolbar-grp .mce-flow-layout-item{margin-bottom:0}.mce-rtl .mce-wordcount{left:0;right:auto}.mce-croprect-container{position:absolute;top:0;left:0}.mce-croprect-handle{position:absolute;top:0;left:0;width:20px;height:20px;border:2px solid white}.mce-croprect-handle-nw{border-width:2px 0 0 2px;margin:-2px 0 0 -2px;cursor:nw-resize;top:100px;left:100px}.mce-croprect-handle-ne{border-width:2px 2px 0 0;margin:-2px 0 0 -20px;cursor:ne-resize;top:100px;left:200px}.mce-croprect-handle-sw{border-width:0 0 2px 2px;margin:-20px 2px 0 -2px;cursor:sw-resize;top:200px;left:100px}.mce-croprect-handle-se{border-width:0 2px 2px 0;margin:-20px 0 0 -20px;cursor:se-resize;top:200px;left:200px}.mce-croprect-handle-move{position:absolute;cursor:move;border:0}.mce-croprect-block{opacity:.3;filter:alpha(opacity=30);zoom:1;position:absolute;background:black}.mce-imagepanel{overflow:auto;background:black}.mce-imagepanel img{position:absolute}.mce-imagetool.mce-btn .mce-ico{display:block;width:20px;height:20px;text-align:center;line-height:20px;font-size:20px;padding:5px}.mce-container,.mce-container-body{display:block}.mce-autoscroll{overflow:hidden}.mce-scrollbar{position:absolute;width:7px;height:100%;top:2px;right:2px;opacity:.4;filter:alpha(opacity=40);zoom:1}.mce-scrollbar-h{top:auto;right:auto;left:2px;bottom:2px;width:100%;height:7px}.mce-scrollbar-thumb{position:absolute;background-color:#000;border:1px solid #888;border-color:rgba(85,85,85,0.6);width:5px;height:100%}.mce-scrollbar-h .mce-scrollbar-thumb{width:100%;height:5px}.mce-scrollbar:hover,.mce-scrollbar.mce-active{background-color:#AAA;opacity:.6;filter:alpha(opacity=60);zoom:1}.mce-scroll{position:relative}.mce-panel{border:0 solid #cacaca;border:0 solid rgba(0,0,0,0.2);background-color:#f0f0f0}.mce-floatpanel{position:absolute}.mce-floatpanel.mce-fixed{position:fixed}.mce-floatpanel .mce-arrow,.mce-floatpanel .mce-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.mce-floatpanel .mce-arrow{border-width:11px}.mce-floatpanel .mce-arrow:after{border-width:10px;content:""}.mce-floatpanel.mce-popover{filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background:transparent;top:0;left:0;background:#fff;border:1px solid rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.25)}.mce-floatpanel.mce-popover.mce-bottom{margin-top:10px;*margin-top:0}.mce-floatpanel.mce-popover.mce-bottom>.mce-arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,0.2);border-bottom-color:rgba(0,0,0,0.25);top:-11px}.mce-floatpanel.mce-popover.mce-bottom>.mce-arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.mce-floatpanel.mce-popover.mce-bottom.mce-start{margin-left:-22px}.mce-floatpanel.mce-popover.mce-bottom.mce-start>.mce-arrow{left:20px}.mce-floatpanel.mce-popover.mce-bottom.mce-end{margin-left:22px}.mce-floatpanel.mce-popover.mce-bottom.mce-end>.mce-arrow{right:10px;left:auto}.mce-fullscreen{border:0;padding:0;margin:0;overflow:hidden;height:100%}div.mce-fullscreen{position:fixed;top:0;left:0}#mce-modal-block{opacity:0;filter:alpha(opacity=0);zoom:1;position:fixed;left:0;top:0;width:100%;height:100%;background:#000}#mce-modal-block.mce-in{opacity:.3;filter:alpha(opacity=30);zoom:1}.mce-window-move{cursor:move}.mce-window{filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background:transparent;background:#fff;position:fixed;top:0;left:0;opacity:0;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.mce-window.mce-in{opacity:1}.mce-window-head{padding:9px 15px;border-bottom:1px solid #c5c5c5;position:relative}.mce-window-head .mce-close{position:absolute;right:15px;top:9px;font-size:20px;font-weight:bold;line-height:20px;color:#858585;cursor:pointer;height:20px;overflow:hidden}.mce-close:hover{color:#adadad}.mce-window-head .mce-title{line-height:20px;font-size:20px;font-weight:bold;text-rendering:optimizelegibility;padding-right:10px}.mce-window .mce-container-body{display:block}.mce-foot{display:block;background-color:#fff;border-top:1px solid #c5c5c5}.mce-window-head .mce-dragh{position:absolute;top:0;left:0;cursor:move;width:90%;height:100%}.mce-window iframe{width:100%;height:100%}.mce-window-body .mce-listbox{border-color:#ccc}.mce-rtl .mce-window-head .mce-close{position:absolute;right:auto;left:15px}.mce-rtl .mce-window-head .mce-dragh{left:auto;right:0}.mce-rtl .mce-window-head .mce-title{direction:rtl;text-align:right}.mce-abs-layout{position:relative}body .mce-abs-layout-item,.mce-abs-end{position:absolute}.mce-abs-end{width:1px;height:1px}.mce-container-body.mce-abs-layout{overflow:hidden}.mce-tooltip{position:absolute;padding:5px;opacity:.8;filter:alpha(opacity=80);zoom:1}.mce-tooltip-inner{font-size:11px;background-color:#000;color:#fff;max-width:200px;padding:5px 8px 4px 8px;text-align:center;white-space:normal}.mce-tooltip-arrow{position:absolute;width:0;height:0;line-height:0;border:5px dashed #000}.mce-tooltip-arrow-n{border-bottom-color:#000}.mce-tooltip-arrow-s{border-top-color:#000}.mce-tooltip-arrow-e{border-left-color:#000}.mce-tooltip-arrow-w{border-right-color:#000}.mce-tooltip-nw,.mce-tooltip-sw{margin-left:-14px}.mce-tooltip-n .mce-tooltip-arrow{top:0px;left:50%;margin-left:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-nw .mce-tooltip-arrow{top:0;left:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-ne .mce-tooltip-arrow{top:0;right:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-s .mce-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-sw .mce-tooltip-arrow{bottom:0;left:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-se .mce-tooltip-arrow{bottom:0;right:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-e .mce-tooltip-arrow{right:0;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent}.mce-tooltip-w .mce-tooltip-arrow{left:0;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent}.mce-btn{border:1px solid #b1b1b1;border-color:transparent transparent transparent transparent;position:relative;text-shadow:0 1px 1px rgba(255,255,255,0.75);display:inline-block;*display:inline;*zoom:1;background-color:#f0f0f0}.mce-btn:hover,.mce-btn:focus{color:#333;background-color:#e3e3e3;border-color:#ccc}.mce-btn.mce-disabled button,.mce-btn.mce-disabled:hover button{cursor:default;opacity:.4;filter:alpha(opacity=40);zoom:1}.mce-btn.mce-active,.mce-btn.mce-active:hover{background-color:#dbdbdb;border-color:#ccc}.mce-btn:active{background-color:#e0e0e0;border-color:#ccc}.mce-btn button{padding:4px 8px;font-size:14px;line-height:20px;*line-height:16px;cursor:pointer;color:#333;text-align:center;overflow:visible;-webkit-appearance:none}.mce-btn button::-moz-focus-inner{border:0;padding:0}.mce-btn i{text-shadow:1px 1px none}.mce-primary{min-width:50px;color:#fff;border:1px solid transparent;border-color:transparent;background-color:#2d8ac7}.mce-primary:hover,.mce-primary:focus{background-color:#257cb6;border-color:transparent}.mce-primary.mce-disabled button,.mce-primary.mce-disabled:hover button{cursor:default;opacity:.4;filter:alpha(opacity=40);zoom:1}.mce-primary.mce-active,.mce-primary.mce-active:hover,.mce-primary:not(.mce-disabled):active{background-color:#206ea1}.mce-primary button,.mce-primary button i{color:#fff;text-shadow:1px 1px none}.mce-btn-large button{padding:9px 14px;font-size:16px;line-height:normal}.mce-btn-large i{margin-top:2px}.mce-btn-small button{padding:1px 5px;font-size:12px;*padding-bottom:2px}.mce-btn-small i{line-height:20px;vertical-align:top;*line-height:18px}.mce-btn .mce-caret{margin-top:8px;margin-left:0}.mce-btn-small .mce-caret{margin-top:8px;margin-left:0}.mce-caret{display:inline-block;*display:inline;*zoom:1;width:0;height:0;vertical-align:top;border-top:4px solid #333;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.mce-disabled .mce-caret{border-top-color:#aaa}.mce-caret.mce-up{border-bottom:4px solid #333;border-top:0}.mce-btn-flat{border:0;background:transparent;filter:none}.mce-btn-flat:hover,.mce-btn-flat.mce-active,.mce-btn-flat:focus,.mce-btn-flat:active{border:0;background:#e6e6e6;filter:none}.mce-btn-has-text .mce-ico{padding-right:5px}.mce-rtl .mce-btn button{direction:rtl}.mce-btn-group .mce-btn{border-width:1px;margin:0;margin-left:2px}.mce-btn-group:not(:first-child){border-left:1px solid #d9d9d9;padding-left:3px;margin-left:3px}.mce-btn-group .mce-first{margin-left:0}.mce-btn-group .mce-btn.mce-flow-layout-item{margin:0}.mce-rtl .mce-btn-group .mce-btn{margin-left:0;margin-right:2px}.mce-rtl .mce-btn-group .mce-first{margin-right:0}.mce-rtl .mce-btn-group:not(:first-child){border-left:none;border-right:1px solid #d9d9d9;padding-right:4px;margin-right:4px}.mce-checkbox{cursor:pointer}i.mce-i-checkbox{margin:0 3px 0 0;border:1px solid #c5c5c5;background-color:#f0f0f0;text-indent:-10em;*font-size:0;*line-height:0;*text-indent:0;overflow:hidden}.mce-checked i.mce-i-checkbox{color:#333;font-size:16px;line-height:16px;text-indent:0}.mce-checkbox:focus i.mce-i-checkbox,.mce-checkbox.mce-focus i.mce-i-checkbox{border:1px solid rgba(82,168,236,0.8)}.mce-checkbox.mce-disabled .mce-label,.mce-checkbox.mce-disabled i.mce-i-checkbox{color:#acacac}.mce-checkbox .mce-label{vertical-align:middle}.mce-rtl .mce-checkbox{direction:rtl;text-align:right}.mce-rtl i.mce-i-checkbox{margin:0 0 0 3px}.mce-combobox{display:inline-block;*display:inline;*zoom:1;*height:32px}.mce-combobox input{border:1px solid #c5c5c5;border-right-color:#c5c5c5;height:28px}.mce-combobox.mce-disabled input{color:#adadad}.mce-combobox .mce-btn{border:1px solid #c5c5c5;border-left:0}.mce-combobox button{padding-right:8px;padding-left:8px}.mce-combobox.mce-disabled .mce-btn button{cursor:default;opacity:.4;filter:alpha(opacity=40);zoom:1}.mce-colorbox i{border:1px solid #c5c5c5;width:14px;height:14px}.mce-colorbutton .mce-ico{position:relative}.mce-colorbutton-grid{margin:4px}.mce-colorbutton button{padding-right:6px;padding-left:6px}.mce-colorbutton .mce-preview{padding-right:3px;display:block;position:absolute;left:50%;top:50%;margin-left:-17px;margin-top:7px;background:gray;width:13px;height:2px;overflow:hidden}.mce-colorbutton.mce-btn-small .mce-preview{margin-left:-16px;padding-right:0;width:16px}.mce-colorbutton .mce-open{padding-left:4px;padding-right:4px;border-left:1px solid transparent}.mce-colorbutton:hover .mce-open{border-color:#ccc}.mce-colorbutton.mce-btn-small .mce-open{padding:0 3px 0 3px}.mce-rtl .mce-colorbutton{direction:rtl}.mce-rtl .mce-colorbutton .mce-preview{margin-left:0;padding-right:0;padding-left:3px}.mce-rtl .mce-colorbutton.mce-btn-small .mce-preview{margin-left:0;padding-right:0;padding-left:2px}.mce-rtl .mce-colorbutton .mce-open{padding-left:4px;padding-right:4px;border-left:0}.mce-colorpicker{position:relative;width:250px;height:220px}.mce-colorpicker-sv{position:absolute;top:0;left:0;width:90%;height:100%;border:1px solid #c5c5c5;cursor:crosshair;overflow:hidden}.mce-colorpicker-h-chunk{width:100%}.mce-colorpicker-overlay1,.mce-colorpicker-overlay2{width:100%;height:100%;position:absolute;top:0;left:0}.mce-colorpicker-overlay1{filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#ffffff', endColorstr='#00ffffff');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff')";background:linear-gradient(to right, #fff, rgba(255,255,255,0))}.mce-colorpicker-overlay2{filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#00000000', endColorstr='#000000');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#000000')";background:linear-gradient(to bottom, rgba(0,0,0,0), #000)}.mce-colorpicker-selector1{background:none;position:absolute;width:12px;height:12px;margin:-8px 0 0 -8px;border:1px solid black;border-radius:50%}.mce-colorpicker-selector2{position:absolute;width:10px;height:10px;border:1px solid white;border-radius:50%}.mce-colorpicker-h{position:absolute;top:0;right:0;width:6.5%;height:100%;border:1px solid #c5c5c5;cursor:crosshair}.mce-colorpicker-h-marker{margin-top:-4px;position:absolute;top:0;left:-1px;width:100%;border:1px solid #333;background:#fff;height:4px;z-index:100}.mce-path{display:inline-block;*display:inline;*zoom:1;padding:8px;white-space:normal}.mce-path .mce-txt{display:inline-block;padding-right:3px}.mce-path .mce-path-body{display:inline-block}.mce-path-item{display:inline-block;*display:inline;*zoom:1;cursor:pointer;color:#333}.mce-path-item:hover{text-decoration:underline}.mce-path-item:focus{background:#666;color:#fff}.mce-path .mce-divider{display:inline}.mce-disabled .mce-path-item{color:#aaa}.mce-rtl .mce-path{direction:rtl}.mce-fieldset{border:0 solid #9E9E9E}.mce-fieldset>.mce-container-body{margin-top:-15px}.mce-fieldset-title{margin-left:5px;padding:0 5px 0 5px}.mce-fit-layout{display:inline-block;*display:inline;*zoom:1}.mce-fit-layout-item{position:absolute}.mce-flow-layout-item{display:inline-block;*display:inline;*zoom:1}.mce-flow-layout-item{margin:2px 0 2px 2px}.mce-flow-layout-item.mce-last{margin-right:2px}.mce-flow-layout{white-space:normal}.mce-tinymce-inline .mce-flow-layout{white-space:nowrap}.mce-rtl .mce-flow-layout{text-align:right;direction:rtl}.mce-rtl .mce-flow-layout-item{margin:2px 2px 2px 0}.mce-rtl .mce-flow-layout-item.mce-last{margin-left:2px}.mce-iframe{border:0 solid rgba(0,0,0,0.2);width:100%;height:100%}.mce-label{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 1px rgba(255,255,255,0.75);overflow:hidden}.mce-label.mce-autoscroll{overflow:auto}.mce-label.mce-disabled{color:#aaa}.mce-label.mce-multiline{white-space:pre-wrap}.mce-label.mce-error{color:#a00}.mce-rtl .mce-label{text-align:right;direction:rtl}.mce-menubar .mce-menubtn{border-color:transparent;background:transparent;filter:none}.mce-menubar{border:1px solid rgba(217,217,217,0.52)}.mce-menubar .mce-menubtn button span{color:#333}.mce-menubar .mce-caret{border-top-color:#333}.mce-menubar .mce-menubtn:hover,.mce-menubar .mce-menubtn.mce-active,.mce-menubar .mce-menubtn:focus{border-color:#ccc;background:#fff;filter:none}.mce-menubtn span{color:#333;margin-right:2px;line-height:20px;*line-height:16px}.mce-menubtn.mce-btn-small span{font-size:12px}.mce-menubtn.mce-fixed-width span{display:inline-block;overflow-x:hidden;text-overflow:ellipsis;width:90px}.mce-menubtn.mce-fixed-width.mce-btn-small span{width:70px}.mce-menubtn .mce-caret{*margin-top:6px}.mce-rtl .mce-menubtn button{direction:rtl;text-align:right}.mce-menu-item{display:block;padding:6px 15px 6px 12px;clear:both;font-weight:normal;line-height:20px;color:#333;white-space:nowrap;cursor:pointer;line-height:normal;border-left:4px solid transparent;margin-bottom:1px}.mce-menu-item .mce-ico,.mce-menu-item .mce-text{color:#333}.mce-menu-item.mce-disabled .mce-text,.mce-menu-item.mce-disabled .mce-ico{color:#adadad}.mce-menu-item:hover .mce-text,.mce-menu-item.mce-selected .mce-text,.mce-menu-item:focus .mce-text{color:#fff}.mce-menu-item:hover .mce-ico,.mce-menu-item.mce-selected .mce-ico,.mce-menu-item:focus .mce-ico{color:#fff}.mce-menu-item.mce-disabled:hover{background:#ccc}.mce-menu-shortcut{display:inline-block;color:#adadad}.mce-menu-shortcut{display:inline-block;*display:inline;*zoom:1;padding:0 15px 0 20px}.mce-menu-item:hover .mce-menu-shortcut,.mce-menu-item.mce-selected .mce-menu-shortcut,.mce-menu-item:focus .mce-menu-shortcut{color:#fff}.mce-menu-item .mce-caret{margin-top:4px;*margin-top:3px;margin-right:6px;border-top:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid #333}.mce-menu-item.mce-selected .mce-caret,.mce-menu-item:focus .mce-caret,.mce-menu-item:hover .mce-caret{border-left-color:#fff}.mce-menu-align .mce-menu-shortcut{*margin-top:-2px}.mce-menu-align .mce-menu-shortcut,.mce-menu-align .mce-caret{position:absolute;right:0}.mce-menu-item.mce-active i{visibility:visible}.mce-menu-item-normal.mce-active{background-color:#3498db}.mce-menu-item-preview.mce-active{border-left:5px solid #aaa}.mce-menu-item-normal.mce-active .mce-text{color:#fff}.mce-menu-item-normal.mce-active:hover .mce-text,.mce-menu-item-normal.mce-active:hover .mce-ico{color:#fff}.mce-menu-item-normal.mce-active:focus .mce-text,.mce-menu-item-normal.mce-active:focus .mce-ico{color:#fff}.mce-menu-item:hover,.mce-menu-item.mce-selected,.mce-menu-item:focus{text-decoration:none;color:#fff;background-color:#2d8ac7}div.mce-menu .mce-menu-item-sep,.mce-menu-item-sep:hover{border:0;padding:0;height:1px;margin:9px 1px;overflow:hidden;background:transparent;border-bottom:1px solid rgba(0,0,0,0.1);cursor:default;filter:none}.mce-menu.mce-rtl{direction:rtl}.mce-rtl .mce-menu-item{text-align:right;direction:rtl;padding:6px 12px 6px 15px}.mce-menu-align.mce-rtl .mce-menu-shortcut,.mce-menu-align.mce-rtl .mce-caret{right:auto;left:0}.mce-rtl .mce-menu-item .mce-caret{margin-left:6px;margin-right:0;border-right:4px solid #333;border-left:0}.mce-rtl .mce-menu-item.mce-selected .mce-caret,.mce-rtl .mce-menu-item:focus .mce-caret,.mce-rtl .mce-menu-item:hover .mce-caret{border-left-color:transparent;border-right-color:#fff}.mce-menu{position:absolute;left:0;top:0;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background:transparent;z-index:1000;padding:5px 0 5px 0;margin:-1px 0 0;min-width:160px;background:#fff;border:1px solid #989898;border:1px solid rgba(0,0,0,0.2);z-index:1002;max-height:400px;overflow:auto;overflow-x:hidden}.mce-menu i{display:none}.mce-menu-has-icons i{display:inline-block;*display:inline}.mce-menu-sub-tr-tl{margin:-6px 0 0 -1px}.mce-menu-sub-br-bl{margin:6px 0 0 -1px}.mce-menu-sub-tl-tr{margin:-6px 0 0 1px}.mce-menu-sub-bl-br{margin:6px 0 0 1px}.mce-listbox button{text-align:left;padding-right:20px;position:relative}.mce-listbox .mce-caret{position:absolute;margin-top:-2px;right:8px;top:50%}.mce-rtl .mce-listbox .mce-caret{right:auto;left:8px}.mce-rtl .mce-listbox button{padding-right:10px;padding-left:20px}.mce-container-body .mce-resizehandle{position:absolute;right:0;bottom:0;width:16px;height:16px;visibility:visible;cursor:s-resize;margin:0}.mce-container-body .mce-resizehandle-both{cursor:se-resize}i.mce-i-resize{color:#333}.mce-slider{border:1px solid #aaa;background:#eee;width:100px;height:10px;position:relative;display:block}.mce-slider.mce-vertical{width:10px;height:100px}.mce-slider-handle{border:1px solid #bbb;background:#ddd;display:block;width:13px;height:13px;position:absolute;top:0;left:0;margin-left:-1px;margin-top:-2px}.mce-spacer{visibility:hidden}.mce-splitbtn .mce-open{border-left:1px solid transparent}.mce-splitbtn:hover .mce-open{border-left-color:#ccc}.mce-splitbtn button{padding-right:6px;padding-left:6px}.mce-splitbtn .mce-open{padding-right:4px;padding-left:4px}.mce-splitbtn .mce-open.mce-active{background-color:#dbdbdb;outline:1px solid #ccc}.mce-splitbtn.mce-btn-small .mce-open{padding:0 3px 0 3px}.mce-rtl .mce-splitbtn{direction:rtl;text-align:right}.mce-rtl .mce-splitbtn button{padding-right:4px;padding-left:4px}.mce-rtl .mce-splitbtn .mce-open{border-left:0}.mce-stack-layout-item{display:block}.mce-tabs{display:block;border-bottom:1px solid #c5c5c5}.mce-tabs,.mce-tabs+.mce-container-body{background:#fff}.mce-tab{display:inline-block;*display:inline;*zoom:1;border:1px solid #c5c5c5;border-width:0 1px 0 0;background:#e3e3e3;padding:8px;text-shadow:0 1px 1px rgba(255,255,255,0.75);height:13px;cursor:pointer}.mce-tab:hover{background:#fdfdfd}.mce-tab.mce-active{background:#fdfdfd;border-bottom-color:transparent;margin-bottom:-1px;height:14px}.mce-rtl .mce-tabs{text-align:right;direction:rtl}.mce-rtl .mce-tab{border-width:0 0 0 1px}.mce-textbox{background:#fff;border:1px solid #c5c5c5;display:inline-block;-webkit-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;height:28px;resize:none;padding:0 4px 0 4px;white-space:pre-wrap;*white-space:pre;color:#333}.mce-textbox:focus,.mce-textbox.mce-focus{border-color:#3498db}.mce-placeholder .mce-textbox{color:#aaa}.mce-textbox.mce-multiline{padding:4px}.mce-textbox.mce-disabled{color:#adadad}.mce-rtl .mce-textbox{text-align:right;direction:rtl}.mce-throbber{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.6;filter:alpha(opacity=60);zoom:1;background:#fff url('img/loader.gif') no-repeat center center}.mce-throbber-inline{position:static;height:50px}@font-face{font-family:'tinymce';src:url('fonts/tinymce.eot');src:url('fonts/tinymce.eot?#iefix') format('embedded-opentype'),url('fonts/tinymce.woff') format('woff'),url('fonts/tinymce.ttf') format('truetype'),url('fonts/tinymce.svg#tinymce') format('svg');font-weight:normal;font-style:normal}@font-face{font-family:'tinymce-small';src:url('fonts/tinymce-small.eot');src:url('fonts/tinymce-small.eot?#iefix') format('embedded-opentype'),url('fonts/tinymce-small.woff') format('woff'),url('fonts/tinymce-small.ttf') format('truetype'),url('fonts/tinymce-small.svg#tinymce') format('svg');font-weight:normal;font-style:normal}.mce-ico{font-family:'tinymce';font-style:normal;font-weight:normal;font-size:16px;line-height:16px;vertical-align:text-top;-webkit-font-smoothing:antialiased;display:inline-block;background:transparent center center;width:16px;height:16px;color:#333;-ie7-icon:' '}.mce-btn-small .mce-ico{font-family:'tinymce-small'}.mce-ico,i.mce-i-checkbox{zoom:expression(this.runtimeStyle['zoom'] = '1', this.innerHTML = this.currentStyle['-ie7-icon'].substr(1, 1) + '&nbsp;')}.mce-i-save{-ie7-icon:"\e000"}.mce-i-newdocument{-ie7-icon:"\e001"}.mce-i-fullpage{-ie7-icon:"\e002"}.mce-i-alignleft{-ie7-icon:"\e003"}.mce-i-aligncenter{-ie7-icon:"\e004"}.mce-i-alignright{-ie7-icon:"\e005"}.mce-i-alignjustify{-ie7-icon:"\e006"}.mce-i-alignnone{-ie7-icon:"\e003"}.mce-i-cut{-ie7-icon:"\e007"}.mce-i-paste{-ie7-icon:"\e008"}.mce-i-searchreplace{-ie7-icon:"\e009"}.mce-i-bullist{-ie7-icon:"\e00a"}.mce-i-numlist{-ie7-icon:"\e00b"}.mce-i-indent{-ie7-icon:"\e00c"}.mce-i-outdent{-ie7-icon:"\e00d"}.mce-i-blockquote{-ie7-icon:"\e00e"}.mce-i-undo{-ie7-icon:"\e00f"}.mce-i-redo{-ie7-icon:"\e010"}.mce-i-link{-ie7-icon:"\e011"}.mce-i-unlink{-ie7-icon:"\e012"}.mce-i-anchor{-ie7-icon:"\e013"}.mce-i-image{-ie7-icon:"\e014"}.mce-i-media{-ie7-icon:"\e015"}.mce-i-help{-ie7-icon:"\e016"}.mce-i-code{-ie7-icon:"\e017"}.mce-i-insertdatetime{-ie7-icon:"\e018"}.mce-i-preview{-ie7-icon:"\e019"}.mce-i-forecolor{-ie7-icon:"\e01a"}.mce-i-backcolor{-ie7-icon:"\e01a"}.mce-i-table{-ie7-icon:"\e01b"}.mce-i-hr{-ie7-icon:"\e01c"}.mce-i-removeformat{-ie7-icon:"\e01d"}.mce-i-subscript{-ie7-icon:"\e01e"}.mce-i-superscript{-ie7-icon:"\e01f"}.mce-i-charmap{-ie7-icon:"\e020"}.mce-i-emoticons{-ie7-icon:"\e021"}.mce-i-print{-ie7-icon:"\e022"}.mce-i-fullscreen{-ie7-icon:"\e023"}.mce-i-spellchecker{-ie7-icon:"\e024"}.mce-i-nonbreaking{-ie7-icon:"\e025"}.mce-i-template{-ie7-icon:"\e026"}.mce-i-pagebreak{-ie7-icon:"\e027"}.mce-i-restoredraft{-ie7-icon:"\e028"}.mce-i-untitled{-ie7-icon:"\e029"}.mce-i-bold{-ie7-icon:"\e02a"}.mce-i-italic{-ie7-icon:"\e02b"}.mce-i-underline{-ie7-icon:"\e02c"}.mce-i-strikethrough{-ie7-icon:"\e02d"}.mce-i-visualchars{-ie7-icon:"\e02e"}.mce-i-ltr{-ie7-icon:"\e02f"}.mce-i-rtl{-ie7-icon:"\e030"}.mce-i-copy{-ie7-icon:"\e031"}.mce-i-resize{-ie7-icon:"\e032"}.mce-i-browse{-ie7-icon:"\e034"}.mce-i-pastetext{-ie7-icon:"\e035"}.mce-i-rotateleft{-ie7-icon:"\eaa8"}.mce-i-rotateright{-ie7-icon:"\eaa9"}.mce-i-crop{-ie7-icon:"\ee78"}.mce-i-editimage{-ie7-icon:"\e914"}.mce-i-options{-ie7-icon:"\ec6a"}.mce-i-flipv{-ie7-icon:"\eaaa"}.mce-i-fliph{-ie7-icon:"\eaac"}.mce-i-zoomin{-ie7-icon:"\eb35"}.mce-i-zoomout{-ie7-icon:"\eb36"}.mce-i-sun{-ie7-icon:"\eccc"}.mce-i-moon{-ie7-icon:"\eccd"}.mce-i-arrowleft{-ie7-icon:"\edc0"}.mce-i-arrowright{-ie7-icon:"\edb8"}.mce-i-drop{-ie7-icon:"\e934"}.mce-i-contrast{-ie7-icon:"\ecd4"}.mce-i-sharpen{-ie7-icon:"\eba7"}.mce-i-palette{-ie7-icon:"\e92a"}.mce-i-resize2{-ie7-icon:"\edf9"}.mce-i-orientation{-ie7-icon:"\e601"}.mce-i-invert{-ie7-icon:"\e602"}.mce-i-gamma{-ie7-icon:"\e600"}.mce-i-remove{-ie7-icon:"\ed6a"}.mce-i-checkbox,.mce-i-selected{-ie7-icon:"\e033"}.mce-i-selected{visibility:hidden}.mce-i-backcolor{background:#BBB}
includes/js/tinymce-lite/skins/lightgray/skin.min.css ADDED
@@ -0,0 +1 @@
 
1
+ .mce-container,.mce-container *,.mce-widget,.mce-widget *,.mce-reset{margin:0;padding:0;border:0;outline:0;vertical-align:top;background:0 0;text-decoration:none;color:#333;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;text-shadow:none;float:none;position:static;width:auto;height:auto;white-space:nowrap;cursor:inherit;-webkit-tap-highlight-color:transparent;line-height:normal;font-weight:400;text-align:left;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;direction:ltr;max-width:none}.mce-widget button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.mce-container [unselectable]{-moz-user-select:none;-webkit-user-select:none;-o-user-select:none;user-select:none}.mce-fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.mce-fade.mce-in{opacity:1}.mce-tinymce{visibility:inherit!important;position:relative}.mce-fullscreen{border:0;padding:0;margin:0;overflow:hidden;height:100%;z-index:100}div.mce-fullscreen{position:fixed;top:0;left:0;width:100%;height:auto}.mce-tinymce{display:block}.mce-wordcount{position:absolute;top:0;right:0;padding:8px}div.mce-edit-area{background:#FFF;filter:none}.mce-statusbar{position:relative}.mce-statusbar .mce-container-body{position:relative}.mce-fullscreen .mce-resizehandle{display:none}.mce-charmap{border-collapse:collapse}.mce-charmap td{cursor:default;border:1px solid rgba(0,0,0,.2);width:20px;height:20px;line-height:20px;text-align:center;vertical-align:middle;padding:2px}.mce-charmap td div{text-align:center}.mce-charmap td:hover{background:#d9d9d9}.mce-grid td.mce-grid-cell div{border:1px solid #d6d6d6;width:15px;height:15px;margin:0;cursor:pointer}.mce-grid td.mce-grid-cell div:focus{border-color:#3498db}.mce-grid td.mce-grid-cell div[disabled]{cursor:not-allowed}.mce-grid{border-spacing:2px;border-collapse:separate}.mce-grid a{display:block;border:1px solid transparent}.mce-grid a:hover,.mce-grid a:focus{border-color:#3498db}.mce-grid-border{margin:0 4px}.mce-grid-border a{border-color:#d6d6d6;width:13px;height:13px}.mce-grid-border a:hover,.mce-grid-border a.mce-active{border-color:#3498db;background:#3498db}.mce-text-center{text-align:center}div.mce-tinymce-inline{width:100%}.mce-colorbtn-trans div{text-align:center;vertical-align:middle;font-weight:700;font-size:20px;line-height:16px;color:#707070}.mce-toolbar-grp{padding:2px 0}.mce-toolbar-grp .mce-flow-layout-item{margin-bottom:0}.mce-rtl .mce-wordcount{left:0;right:auto}.mce-croprect-container{position:absolute;top:0;left:0}.mce-croprect-handle{position:absolute;top:0;left:0;width:20px;height:20px;border:2px solid #fff}.mce-croprect-handle-nw{border-width:2px 0 0 2px;margin:-2px 0 0 -2px;cursor:nw-resize;top:100px;left:100px}.mce-croprect-handle-ne{border-width:2px 2px 0 0;margin:-2px 0 0 -20px;cursor:ne-resize;top:100px;left:200px}.mce-croprect-handle-sw{border-width:0 0 2px 2px;margin:-20px 2px 0 -2px;cursor:sw-resize;top:200px;left:100px}.mce-croprect-handle-se{border-width:0 2px 2px 0;margin:-20px 0 0 -20px;cursor:se-resize;top:200px;left:200px}.mce-croprect-handle-move{position:absolute;cursor:move;border:0}.mce-croprect-block{opacity:.3;filter:alpha(opacity=30);zoom:1;position:absolute;background:#000}.mce-imagepanel{overflow:auto;background:#000}.mce-imagepanel img{position:absolute}.mce-imagetool.mce-btn .mce-ico{display:block;width:20px;height:20px;text-align:center;line-height:20px;font-size:20px;padding:5px}.mce-container,.mce-container-body{display:block}.mce-autoscroll{overflow:hidden}.mce-scrollbar{position:absolute;width:7px;height:100%;top:2px;right:2px;opacity:.4;filter:alpha(opacity=40);zoom:1}.mce-scrollbar-h{top:auto;right:auto;left:2px;bottom:2px;width:100%;height:7px}.mce-scrollbar-thumb{position:absolute;background-color:#000;border:1px solid #888;border-color:rgba(85,85,85,.6);width:5px;height:100%}.mce-scrollbar-h .mce-scrollbar-thumb{width:100%;height:5px}.mce-scrollbar:hover,.mce-scrollbar.mce-active{background-color:#AAA;opacity:.6;filter:alpha(opacity=60);zoom:1}.mce-scroll{position:relative}.mce-panel{border:0 solid #cacaca;border:0 solid rgba(0,0,0,.2);background-color:#f0f0f0}.mce-floatpanel{position:absolute}.mce-floatpanel.mce-fixed{position:fixed}.mce-floatpanel .mce-arrow,.mce-floatpanel .mce-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.mce-floatpanel .mce-arrow{border-width:11px}.mce-floatpanel .mce-arrow:after{border-width:10px;content:""}.mce-floatpanel.mce-popover{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background:0 0;top:0;left:0;background:#fff;border:1px solid rgba(0,0,0,.2);border:1px solid rgba(0,0,0,.25)}.mce-floatpanel.mce-popover.mce-bottom{margin-top:10px;*margin-top:0}.mce-floatpanel.mce-popover.mce-bottom>.mce-arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:rgba(0,0,0,.2);border-bottom-color:rgba(0,0,0,.25);top:-11px}.mce-floatpanel.mce-popover.mce-bottom>.mce-arrow:after{top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.mce-floatpanel.mce-popover.mce-bottom.mce-start{margin-left:-22px}.mce-floatpanel.mce-popover.mce-bottom.mce-start>.mce-arrow{left:20px}.mce-floatpanel.mce-popover.mce-bottom.mce-end{margin-left:22px}.mce-floatpanel.mce-popover.mce-bottom.mce-end>.mce-arrow{right:10px;left:auto}.mce-fullscreen{border:0;padding:0;margin:0;overflow:hidden;height:100%}div.mce-fullscreen{position:fixed;top:0;left:0}#mce-modal-block{opacity:0;filter:alpha(opacity=0);zoom:1;position:fixed;left:0;top:0;width:100%;height:100%;background:#000}#mce-modal-block.mce-in{opacity:.3;filter:alpha(opacity=30);zoom:1}.mce-window-move{cursor:move}.mce-window{filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background:0 0;background:#fff;position:fixed;top:0;left:0;opacity:0;-webkit-transition:opacity 150ms ease-in;transition:opacity 150ms ease-in}.mce-window.mce-in{opacity:1}.mce-window-head{padding:9px 15px;border-bottom:1px solid #c5c5c5;position:relative}.mce-window-head .mce-close{position:absolute;right:15px;top:9px;font-size:20px;font-weight:700;line-height:20px;color:#858585;cursor:pointer;height:20px;overflow:hidden}.mce-close:hover{color:#adadad}.mce-window-head .mce-title{line-height:20px;font-size:20px;font-weight:700;text-rendering:optimizelegibility;padding-right:10px}.mce-window .mce-container-body{display:block}.mce-foot{display:block;background-color:#fff;border-top:1px solid #c5c5c5}.mce-window-head .mce-dragh{position:absolute;top:0;left:0;cursor:move;width:90%;height:100%}.mce-window iframe{width:100%;height:100%}.mce-window-body .mce-listbox{border-color:#ccc}.mce-rtl .mce-window-head .mce-close{position:absolute;right:auto;left:15px}.mce-rtl .mce-window-head .mce-dragh{left:auto;right:0}.mce-rtl .mce-window-head .mce-title{direction:rtl;text-align:right}.mce-abs-layout{position:relative}body .mce-abs-layout-item,.mce-abs-end{position:absolute}.mce-abs-end{width:1px;height:1px}.mce-container-body.mce-abs-layout{overflow:hidden}.mce-tooltip{position:absolute;padding:5px;opacity:.8;filter:alpha(opacity=80);zoom:1}.mce-tooltip-inner{font-size:11px;background-color:#000;color:#fff;max-width:200px;padding:5px 8px 4px;text-align:center;white-space:normal}.mce-tooltip-arrow{position:absolute;width:0;height:0;line-height:0;border:5px dashed #000}.mce-tooltip-arrow-n{border-bottom-color:#000}.mce-tooltip-arrow-s{border-top-color:#000}.mce-tooltip-arrow-e{border-left-color:#000}.mce-tooltip-arrow-w{border-right-color:#000}.mce-tooltip-nw,.mce-tooltip-sw{margin-left:-14px}.mce-tooltip-n .mce-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-nw .mce-tooltip-arrow{top:0;left:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-ne .mce-tooltip-arrow{top:0;right:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-s .mce-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-sw .mce-tooltip-arrow{bottom:0;left:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-se .mce-tooltip-arrow{bottom:0;right:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.mce-tooltip-e .mce-tooltip-arrow{right:0;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent}.mce-tooltip-w .mce-tooltip-arrow{left:0;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent}.mce-btn{border:1px solid #b1b1b1;border-color:transparent;position:relative;text-shadow:0 1px 1px rgba(255,255,255,.75);display:inline-block;*display:inline;*zoom:1;background-color:#f0f0f0}.mce-btn:hover,.mce-btn:focus{color:#333;background-color:#e3e3e3;border-color:#ccc}.mce-btn.mce-disabled button,.mce-btn.mce-disabled:hover button{cursor:default;opacity:.4;filter:alpha(opacity=40);zoom:1}.mce-btn.mce-active,.mce-btn.mce-active:hover{background-color:#dbdbdb;border-color:#ccc}.mce-btn:active{background-color:#e0e0e0;border-color:#ccc}.mce-btn button{padding:4px 8px;font-size:14px;line-height:20px;*line-height:16px;cursor:pointer;color:#333;text-align:center;overflow:visible;-webkit-appearance:none}.mce-btn button::-moz-focus-inner{border:0;padding:0}.mce-btn i{text-shadow:1px 1px none}.mce-primary{min-width:50px;color:#fff;border:1px solid transparent;border-color:transparent;background-color:#2d8ac7}.mce-primary:hover,.mce-primary:focus{background-color:#257cb6;border-color:transparent}.mce-primary.mce-disabled button,.mce-primary.mce-disabled:hover button{cursor:default;opacity:.4;filter:alpha(opacity=40);zoom:1}.mce-primary.mce-active,.mce-primary.mce-active:hover,.mce-primary:not(.mce-disabled):active{background-color:#206ea1}.mce-primary button,.mce-primary button i{color:#fff;text-shadow:1px 1px none}.mce-btn-large button{padding:9px 14px;font-size:16px;line-height:normal}.mce-btn-large i{margin-top:2px}.mce-btn-small button{padding:1px 5px;font-size:12px;*padding-bottom:2px}.mce-btn-small i{line-height:20px;vertical-align:top;*line-height:18px}.mce-btn .mce-caret{margin-top:8px;margin-left:0}.mce-btn-small .mce-caret{margin-top:8px;margin-left:0}.mce-caret{display:inline-block;*display:inline;*zoom:1;width:0;height:0;vertical-align:top;border-top:4px solid #333;border-right:4px solid transparent;border-left:4px solid transparent;content:""}.mce-disabled .mce-caret{border-top-color:#aaa}.mce-caret.mce-up{border-bottom:4px solid #333;border-top:0}.mce-btn-flat{border:0;background:0 0;filter:none}.mce-btn-flat:hover,.mce-btn-flat.mce-active,.mce-btn-flat:focus,.mce-btn-flat:active{border:0;background:#e6e6e6;filter:none}.mce-btn-has-text .mce-ico{padding-right:5px}.mce-rtl .mce-btn button{direction:rtl}.mce-btn-group .mce-btn{border-width:1px;margin:0;margin-left:2px}.mce-btn-group:not(:first-child){border-left:1px solid #d9d9d9;padding-left:3px;margin-left:3px}.mce-btn-group .mce-first{margin-left:0}.mce-btn-group .mce-btn.mce-flow-layout-item{margin:0}.mce-rtl .mce-btn-group .mce-btn{margin-left:0;margin-right:2px}.mce-rtl .mce-btn-group .mce-first{margin-right:0}.mce-rtl .mce-btn-group:not(:first-child){border-left:none;border-right:1px solid #d9d9d9;padding-right:4px;margin-right:4px}.mce-checkbox{cursor:pointer}i.mce-i-checkbox{margin:0 3px 0 0;border:1px solid #c5c5c5;background-color:#f0f0f0;text-indent:-10em;*font-size:0;*line-height:0;*text-indent:0;overflow:hidden}.mce-checked i.mce-i-checkbox{color:#333;font-size:16px;line-height:16px;text-indent:0}.mce-checkbox:focus i.mce-i-checkbox,.mce-checkbox.mce-focus i.mce-i-checkbox{border:1px solid rgba(82,168,236,.8)}.mce-checkbox.mce-disabled .mce-label,.mce-checkbox.mce-disabled i.mce-i-checkbox{color:#acacac}.mce-checkbox .mce-label{vertical-align:middle}.mce-rtl .mce-checkbox{direction:rtl;text-align:right}.mce-rtl i.mce-i-checkbox{margin:0 0 0 3px}.mce-combobox{display:inline-block;*display:inline;*zoom:1;*height:32px}.mce-combobox input{border:1px solid #c5c5c5;border-right-color:#c5c5c5;height:28px}.mce-combobox.mce-disabled input{color:#adadad}.mce-combobox .mce-btn{border:1px solid #c5c5c5;border-left:0}.mce-combobox button{padding-right:8px;padding-left:8px}.mce-combobox.mce-disabled .mce-btn button{cursor:default;opacity:.4;filter:alpha(opacity=40);zoom:1}.mce-colorbox i{border:1px solid #c5c5c5;width:14px;height:14px}.mce-colorbutton .mce-ico{position:relative}.mce-colorbutton-grid{margin:4px}.mce-colorbutton button{padding-right:6px;padding-left:6px}.mce-colorbutton .mce-preview{padding-right:3px;display:block;position:absolute;left:50%;top:50%;margin-left:-17px;margin-top:7px;background:gray;width:13px;height:2px;overflow:hidden}.mce-colorbutton.mce-btn-small .mce-preview{margin-left:-16px;padding-right:0;width:16px}.mce-colorbutton .mce-open{padding-left:4px;padding-right:4px;border-left:1px solid transparent}.mce-colorbutton:hover .mce-open{border-color:#ccc}.mce-colorbutton.mce-btn-small .mce-open{padding:0 3px}.mce-rtl .mce-colorbutton{direction:rtl}.mce-rtl .mce-colorbutton .mce-preview{margin-left:0;padding-right:0;padding-left:3px}.mce-rtl .mce-colorbutton.mce-btn-small .mce-preview{margin-left:0;padding-right:0;padding-left:2px}.mce-rtl .mce-colorbutton .mce-open{padding-left:4px;padding-right:4px;border-left:0}.mce-colorpicker{position:relative;width:250px;height:220px}.mce-colorpicker-sv{position:absolute;top:0;left:0;width:90%;height:100%;border:1px solid #c5c5c5;cursor:crosshair;overflow:hidden}.mce-colorpicker-h-chunk{width:100%}.mce-colorpicker-overlay1,.mce-colorpicker-overlay2{width:100%;height:100%;position:absolute;top:0;left:0}.mce-colorpicker-overlay1{filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr='#ffffff', endColorstr='#00ffffff');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr='#ffffff', endColorstr='#00ffffff')";background:linear-gradient(to right,#fff,rgba(255,255,255,0))}.mce-colorpicker-overlay2{filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#00000000', endColorstr='#000000');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#00000000', endColorstr='#000000')";background:linear-gradient(to bottom,rgba(0,0,0,0),#000)}.mce-colorpicker-selector1{background:0 0;position:absolute;width:12px;height:12px;margin:-8px 0 0 -8px;border:1px solid #000;border-radius:50%}.mce-colorpicker-selector2{position:absolute;width:10px;height:10px;border:1px solid #fff;border-radius:50%}.mce-colorpicker-h{position:absolute;top:0;right:0;width:6.5%;height:100%;border:1px solid #c5c5c5;cursor:crosshair}.mce-colorpicker-h-marker{margin-top:-4px;position:absolute;top:0;left:-1px;width:100%;border:1px solid #333;background:#fff;height:4px;z-index:100}.mce-path{display:inline-block;*display:inline;*zoom:1;padding:8px;white-space:normal}.mce-path .mce-txt{display:inline-block;padding-right:3px}.mce-path .mce-path-body{display:inline-block}.mce-path-item{display:inline-block;*display:inline;*zoom:1;cursor:pointer;color:#333}.mce-path-item:hover{text-decoration:underline}.mce-path-item:focus{background:#666;color:#fff}.mce-path .mce-divider{display:inline}.mce-disabled .mce-path-item{color:#aaa}.mce-rtl .mce-path{direction:rtl}.mce-fieldset{border:0 solid #9E9E9E}.mce-fieldset>.mce-container-body{margin-top:-15px}.mce-fieldset-title{margin-left:5px;padding:0 5px}.mce-fit-layout{display:inline-block;*display:inline;*zoom:1}.mce-fit-layout-item{position:absolute}.mce-flow-layout-item{display:inline-block;*display:inline;*zoom:1}.mce-flow-layout-item{margin:2px 0 2px 2px}.mce-flow-layout-item.mce-last{margin-right:2px}.mce-flow-layout{white-space:normal}.mce-tinymce-inline .mce-flow-layout{white-space:nowrap}.mce-rtl .mce-flow-layout{text-align:right;direction:rtl}.mce-rtl .mce-flow-layout-item{margin:2px 2px 2px 0}.mce-rtl .mce-flow-layout-item.mce-last{margin-left:2px}.mce-iframe{border:0 solid rgba(0,0,0,.2);width:100%;height:100%}.mce-label{display:inline-block;*display:inline;*zoom:1;text-shadow:0 1px 1px rgba(255,255,255,.75);overflow:hidden}.mce-label.mce-autoscroll{overflow:auto}.mce-label.mce-disabled{color:#aaa}.mce-label.mce-multiline{white-space:pre-wrap}.mce-label.mce-error{color:#a00}.mce-rtl .mce-label{text-align:right;direction:rtl}.mce-menubar .mce-menubtn{border-color:transparent;background:0 0;filter:none}.mce-menubar{border:1px solid rgba(217,217,217,.52)}.mce-menubar .mce-menubtn button span{color:#333}.mce-menubar .mce-caret{border-top-color:#333}.mce-menubar .mce-menubtn:hover,.mce-menubar .mce-menubtn.mce-active,.mce-menubar .mce-menubtn:focus{border-color:#ccc;background:#fff;filter:none}.mce-menubtn span{color:#333;margin-right:2px;line-height:20px;*line-height:16px}.mce-menubtn.mce-btn-small span{font-size:12px}.mce-menubtn.mce-fixed-width span{display:inline-block;overflow-x:hidden;text-overflow:ellipsis;width:90px}.mce-menubtn.mce-fixed-width.mce-btn-small span{width:70px}.mce-menubtn .mce-caret{*margin-top:6px}.mce-rtl .mce-menubtn button{direction:rtl;text-align:right}.mce-menu-item{display:block;padding:6px 15px 6px 12px;clear:both;font-weight:400;line-height:20px;color:#333;white-space:nowrap;cursor:pointer;line-height:normal;border-left:4px solid transparent;margin-bottom:1px}.mce-menu-item .mce-ico,.mce-menu-item .mce-text{color:#333}.mce-menu-item.mce-disabled .mce-text,.mce-menu-item.mce-disabled .mce-ico{color:#adadad}.mce-menu-item:hover .mce-text,.mce-menu-item.mce-selected .mce-text,.mce-menu-item:focus .mce-text{color:#fff}.mce-menu-item:hover .mce-ico,.mce-menu-item.mce-selected .mce-ico,.mce-menu-item:focus .mce-ico{color:#fff}.mce-menu-item.mce-disabled:hover{background:#ccc}.mce-menu-shortcut{display:inline-block;color:#adadad}.mce-menu-shortcut{display:inline-block;*display:inline;*zoom:1;padding:0 15px 0 20px}.mce-menu-item:hover .mce-menu-shortcut,.mce-menu-item.mce-selected .mce-menu-shortcut,.mce-menu-item:focus .mce-menu-shortcut{color:#fff}.mce-menu-item .mce-caret{margin-top:4px;*margin-top:3px;margin-right:6px;border-top:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid #333}.mce-menu-item.mce-selected .mce-caret,.mce-menu-item:focus .mce-caret,.mce-menu-item:hover .mce-caret{border-left-color:#fff}.mce-menu-align .mce-menu-shortcut{*margin-top:-2px}.mce-menu-align .mce-menu-shortcut,.mce-menu-align .mce-caret{position:absolute;right:0}.mce-menu-item.mce-active i{visibility:visible}.mce-menu-item-normal.mce-active{background-color:#3498db}.mce-menu-item-preview.mce-active{border-left:5px solid #aaa}.mce-menu-item-normal.mce-active .mce-text{color:#fff}.mce-menu-item-normal.mce-active:hover .mce-text,.mce-menu-item-normal.mce-active:hover .mce-ico{color:#fff}.mce-menu-item-normal.mce-active:focus .mce-text,.mce-menu-item-normal.mce-active:focus .mce-ico{color:#fff}.mce-menu-item:hover,.mce-menu-item.mce-selected,.mce-menu-item:focus{text-decoration:none;color:#fff;background-color:#2d8ac7}div.mce-menu .mce-menu-item-sep,.mce-menu-item-sep:hover{border:0;padding:0;height:1px;margin:9px 1px;overflow:hidden;background:0 0;border-bottom:1px solid rgba(0,0,0,.1);cursor:default;filter:none}.mce-menu.mce-rtl{direction:rtl}.mce-rtl .mce-menu-item{text-align:right;direction:rtl;padding:6px 12px 6px 15px}.mce-menu-align.mce-rtl .mce-menu-shortcut,.mce-menu-align.mce-rtl .mce-caret{right:auto;left:0}.mce-rtl .mce-menu-item .mce-caret{margin-left:6px;margin-right:0;border-right:4px solid #333;border-left:0}.mce-rtl .mce-menu-item.mce-selected .mce-caret,.mce-rtl .mce-menu-item:focus .mce-caret,.mce-rtl .mce-menu-item:hover .mce-caret{border-left-color:transparent;border-right-color:#fff}.mce-menu{position:absolute;left:0;top:0;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background:0 0;z-index:1000;padding:5px 0;margin:-1px 0 0;min-width:160px;background:#fff;border:1px solid #989898;border:1px solid rgba(0,0,0,.2);z-index:1002;max-height:400px;overflow:auto;overflow-x:hidden}.mce-menu i{display:none}.mce-menu-has-icons i{display:inline-block;*display:inline}.mce-menu-sub-tr-tl{margin:-6px 0 0 -1px}.mce-menu-sub-br-bl{margin:6px 0 0 -1px}.mce-menu-sub-tl-tr{margin:-6px 0 0 1px}.mce-menu-sub-bl-br{margin:6px 0 0 1px}.mce-listbox button{text-align:left;padding-right:20px;position:relative}.mce-listbox .mce-caret{position:absolute;margin-top:-2px;right:8px;top:50%}.mce-rtl .mce-listbox .mce-caret{right:auto;left:8px}.mce-rtl .mce-listbox button{padding-right:10px;padding-left:20px}.mce-container-body .mce-resizehandle{position:absolute;right:0;bottom:0;width:16px;height:16px;visibility:visible;cursor:s-resize;margin:0}.mce-container-body .mce-resizehandle-both{cursor:se-resize}i.mce-i-resize{color:#333}.mce-slider{border:1px solid #aaa;background:#eee;width:100px;height:10px;position:relative;display:block}.mce-slider.mce-vertical{width:10px;height:100px}.mce-slider-handle{border:1px solid #bbb;background:#ddd;display:block;width:13px;height:13px;position:absolute;top:0;left:0;margin-left:-1px;margin-top:-2px}.mce-spacer{visibility:hidden}.mce-splitbtn .mce-open{border-left:1px solid transparent}.mce-splitbtn:hover .mce-open{border-left-color:#ccc}.mce-splitbtn button{padding-right:6px;padding-left:6px}.mce-splitbtn .mce-open{padding-right:4px;padding-left:4px}.mce-splitbtn .mce-open.mce-active{background-color:#dbdbdb;outline:1px solid #ccc}.mce-splitbtn.mce-btn-small .mce-open{padding:0 3px}.mce-rtl .mce-splitbtn{direction:rtl;text-align:right}.mce-rtl .mce-splitbtn button{padding-right:4px;padding-left:4px}.mce-rtl .mce-splitbtn .mce-open{border-left:0}.mce-stack-layout-item{display:block}.mce-tabs{display:block;border-bottom:1px solid #c5c5c5}.mce-tabs,.mce-tabs+.mce-container-body{background:#fff}.mce-tab{display:inline-block;*display:inline;*zoom:1;border:1px solid #c5c5c5;border-width:0 1px 0 0;background:#e3e3e3;padding:8px;text-shadow:0 1px 1px rgba(255,255,255,.75);height:13px;cursor:pointer}.mce-tab:hover{background:#fdfdfd}.mce-tab.mce-active{background:#fdfdfd;border-bottom-color:transparent;margin-bottom:-1px;height:14px}.mce-rtl .mce-tabs{text-align:right;direction:rtl}.mce-rtl .mce-tab{border-width:0 0 0 1px}.mce-textbox{background:#fff;border:1px solid #c5c5c5;display:inline-block;-webkit-transition:border linear .2s,box-shadow linear .2s;transition:border linear .2s,box-shadow linear .2s;height:28px;resize:none;padding:0 4px;white-space:pre-wrap;*white-space:pre;color:#333}.mce-textbox:focus,.mce-textbox.mce-focus{border-color:#3498db}.mce-placeholder .mce-textbox{color:#aaa}.mce-textbox.mce-multiline{padding:4px}.mce-textbox.mce-disabled{color:#adadad}.mce-rtl .mce-textbox{text-align:right;direction:rtl}.mce-throbber{position:absolute;top:0;left:0;width:100%;height:100%;opacity:.6;filter:alpha(opacity=60);zoom:1;background:#fff url(img/loader.gif) no-repeat center center}.mce-throbber-inline{position:static;height:50px}@font-face{font-family:tinymce;src:url(fonts/tinymce.eot);src:url(fonts/tinymce.eot?#iefix) format('embedded-opentype'),url(fonts/tinymce.woff) format('woff'),url(fonts/tinymce.ttf) format('truetype'),url(fonts/tinymce.svg#tinymce) format('svg');font-weight:400;font-style:normal}@font-face{font-family:tinymce-small;src:url(fonts/tinymce-small.eot);src:url(fonts/tinymce-small.eot?#iefix) format('embedded-opentype'),url(fonts/tinymce-small.woff) format('woff'),url(fonts/tinymce-small.ttf) format('truetype'),url(fonts/tinymce-small.svg#tinymce) format('svg');font-weight:400;font-style:normal}.mce-ico{font-family:tinymce,Arial;font-style:normal;font-weight:400;font-variant:normal;font-size:16px;line-height:16px;speak:none;vertical-align:text-top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;background:transparent center center;background-size:cover;width:16px;height:16px;color:#333}.mce-btn-small .mce-ico{font-family:tinymce-small,Arial}.mce-i-save:before{content:"\e000"}.mce-i-newdocument:before{content:"\e001"}.mce-i-fullpage:before{content:"\e002"}.mce-i-alignleft:before{content:"\e003"}.mce-i-aligncenter:before{content:"\e004"}.mce-i-alignright:before{content:"\e005"}.mce-i-alignjustify:before{content:"\e006"}.mce-i-alignnone:before{content:"\e003"}.mce-i-cut:before{content:"\e007"}.mce-i-paste:before{content:"\e008"}.mce-i-searchreplace:before{content:"\e009"}.mce-i-bullist:before{content:"\e00a"}.mce-i-numlist:before{content:"\e00b"}.mce-i-indent:before{content:"\e00c"}.mce-i-outdent:before{content:"\e00d"}.mce-i-blockquote:before{content:"\e00e"}.mce-i-undo:before{content:"\e00f"}.mce-i-redo:before{content:"\e010"}.mce-i-link:before{content:"\e011"}.mce-i-unlink:before{content:"\e012"}.mce-i-anchor:before{content:"\e013"}.mce-i-image:before{content:"\e014"}.mce-i-media:before{content:"\e015"}.mce-i-help:before{content:"\e016"}.mce-i-code:before{content:"\e017"}.mce-i-insertdatetime:before{content:"\e018"}.mce-i-preview:before{content:"\e019"}.mce-i-forecolor:before{content:"\e01a"}.mce-i-backcolor:before{content:"\e01a"}.mce-i-table:before{content:"\e01b"}.mce-i-hr:before{content:"\e01c"}.mce-i-removeformat:before{content:"\e01d"}.mce-i-subscript:before{content:"\e01e"}.mce-i-superscript:before{content:"\e01f"}.mce-i-charmap:before{content:"\e020"}.mce-i-emoticons:before{content:"\e021"}.mce-i-print:before{content:"\e022"}.mce-i-fullscreen:before{content:"\e023"}.mce-i-spellchecker:before{content:"\e024"}.mce-i-nonbreaking:before{content:"\e025"}.mce-i-template:before{content:"\e026"}.mce-i-pagebreak:before{content:"\e027"}.mce-i-restoredraft:before{content:"\e028"}.mce-i-untitled:before{content:"\e029"}.mce-i-bold:before{content:"\e02a"}.mce-i-italic:before{content:"\e02b"}.mce-i-underline:before{content:"\e02c"}.mce-i-strikethrough:before{content:"\e02d"}.mce-i-visualchars:before{content:"\e02e"}.mce-i-visualblocks:before{content:"\e02e"}.mce-i-ltr:before{content:"\e02f"}.mce-i-rtl:before{content:"\e030"}.mce-i-copy:before{content:"\e031"}.mce-i-resize:before{content:"\e032"}.mce-i-browse:before{content:"\e034"}.mce-i-pastetext:before{content:"\e035"}.mce-i-rotateleft:before{content:"\eaa8"}.mce-i-rotateright:before{content:"\eaa9"}.mce-i-crop:before{content:"\ee78"}.mce-i-editimage:before{content:"\e914"}.mce-i-options:before{content:"\ec6a"}.mce-i-flipv:before{content:"\eaaa"}.mce-i-fliph:before{content:"\eaac"}.mce-i-zoomin:before{content:"\eb35"}.mce-i-zoomout:before{content:"\eb36"}.mce-i-sun:before{content:"\eccc"}.mce-i-moon:before{content:"\eccd"}.mce-i-arrowleft:before{content:"\edc0"}.mce-i-arrowright:before{content:"\edb8"}.mce-i-drop:before{content:"\e934"}.mce-i-contrast:before{content:"\ecd4"}.mce-i-sharpen:before{content:"\eba7"}.mce-i-palette:before{content:"\e92a"}.mce-i-resize2:before{content:"\edf9"}.mce-i-orientation:before{content:"\e601"}.mce-i-invert:before{content:"\e602"}.mce-i-gamma:before{content:"\e600"}.mce-i-remove:before{content:"\ed6a"}.mce-i-checkbox:before,.mce-i-selected:before{content:"\e033"}.mce-i-selected{visibility:hidden}i.mce-i-backcolor{text-shadow:none;background:#bbb}
includes/js/tinymce-lite/themes/modern/theme.min.js ADDED
@@ -0,0 +1 @@
 
1
+ tinymce.ThemeManager.add("modern",function(a){function b(b){var c,d=[];if(b)return n(b.split(/[ ,]/),function(b){function e(){var c=a.selection;"bullist"==f&&c.selectorChanged("ul > li",function(a,c){for(var d,e=c.parents.length;e--&&(d=c.parents[e].nodeName,"OL"!=d&&"UL"!=d););b.active(a&&"UL"==d)}),"numlist"==f&&c.selectorChanged("ol > li",function(a,c){for(var d,e=c.parents.length;e--&&(d=c.parents[e].nodeName,"OL"!=d&&"UL"!=d););b.active(a&&"OL"==d)}),b.settings.stateSelector&&c.selectorChanged(b.settings.stateSelector,function(a){b.active(a)},!0),b.settings.disabledStateSelector&&c.selectorChanged(b.settings.disabledStateSelector,function(a){b.disabled(a)})}var f;"|"==b?c=null:m.has(b)?(b={type:b},l.toolbar_items_size&&(b.size=l.toolbar_items_size),d.push(b),c=null):(c||(c={type:"buttongroup",items:[]},d.push(c)),a.buttons[b]&&(f=b,b=a.buttons[f],"function"==typeof b&&(b=b()),b.type=b.type||"button",l.toolbar_items_size&&(b.size=l.toolbar_items_size),b=m.create(b),c.items.push(b),a.initialized?e():a.on("init",e)))}),{type:"toolbar",layout:"flow",items:d}}function c(){function a(a){return a?(c.push(b(a)),!0):void 0}var c=[];if(tinymce.isArray(l.toolbar)){if(0===l.toolbar.length)return;tinymce.each(l.toolbar,function(a,b){l["toolbar"+(b+1)]=a}),delete l.toolbar}for(var d=1;10>d&&a(l["toolbar"+d]);d++);return c.length||l.toolbar===!1||a(l.toolbar||s),c.length?{type:"panel",layout:"stack",classes:"toolbar-grp",ariaRoot:!0,ariaRemember:!0,items:c}:void 0}function d(){function b(b){var c;return"|"==b?{text:"|"}:c=a.menuItems[b]}function c(c){var d,e,f,g,h;if(h=tinymce.makeMap((l.removed_menuitems||"").split(/[ ,]/)),l.menu?(e=l.menu[c],g=!0):e=r[c],e){d={text:e.title},f=[],n((e.items||"").split(/[ ,]/),function(a){var c=b(a);c&&!h[a]&&f.push(b(a))}),g||n(a.menuItems,function(a){a.context==c&&("before"==a.separator&&f.push({text:"|"}),a.prependToContext?f.unshift(a):f.push(a),"after"==a.separator&&f.push({text:"|"}))});for(var i=0;i<f.length;i++)"|"==f[i].text&&(0===i||i==f.length-1)&&f.splice(i,1);if(d.menu=f,!d.menu.length)return null}return d}var d,e=[],f=[];if(l.menu)for(d in l.menu)f.push(d);else for(d in r)f.push(d);for(var g="string"==typeof l.menubar?l.menubar.split(/[ ,]/):f,h=0;h<g.length;h++){var i=g[h];i=c(i),i&&e.push(i)}return e}function e(b){function c(a){var c=b.find(a)[0];c&&c.focus(!0)}a.shortcuts.add("Alt+F9","",function(){c("menubar")}),a.shortcuts.add("Alt+F10","",function(){c("toolbar")}),a.shortcuts.add("Alt+F11","",function(){c("elementpath")}),b.on("cancel",function(){a.focus()})}function f(b,c){function d(a){return{width:a.clientWidth,height:a.clientHeight}}var e,f,g,h;e=a.getContainer(),f=a.getContentAreaContainer().firstChild,g=d(e),h=d(f),null!==b&&(b=Math.max(l.min_width||100,b),b=Math.min(l.max_width||65535,b),o.setStyle(e,"width",b+(g.width-h.width)),o.setStyle(f,"width",b)),c=Math.max(l.min_height||100,c),c=Math.min(l.max_height||65535,c),o.setStyle(f,"height",c),a.fire("ResizeEditor")}function g(b,c){var d=a.getContentAreaContainer();k.resizeTo(d.clientWidth+b,d.clientHeight+c)}function h(){function c(){return a.contextToolbars||[]}function d(b){var c,d,e;return c=tinymce.DOM.getPos(a.getContentAreaContainer()),d=a.dom.getRect(b),e=a.dom.getRoot(),"BODY"==e.nodeName&&(d.x-=e.ownerDocument.documentElement.scrollLeft||e.scrollLeft,d.y-=e.ownerDocument.documentElement.scrollTop||e.scrollTop),d.x+=c.x,d.y+=c.y,d}function e(){n(a.contextToolbars,function(a){a.panel&&a.panel.hide()})}function f(b){var c,f,g,h,i,j,k;if(!a.removed){if(!b||!b.toolbar.panel)return void e();k=["tc-bc","bc-tc","tl-bl","bl-tl","tr-br","br-tr"],i=b.toolbar.panel,i.show(),g=d(b.element),f=tinymce.DOM.getRect(i.getEl()),h=tinymce.DOM.getRect(a.getContentAreaContainer()||a.getBody()),a.inline||(h.w=a.getDoc().documentElement.offsetWidth),a.selection.controlSelection.isResizable(b.element)&&(g=p.inflate(g,0,7)),c=p.findBestRelativePosition(f,g,h,k),c?(n(k.concat("inside"),function(a){i.classes.toggle("tinymce-inline-"+a,a==c)}),j=p.relativePosition(f,g,c),i.moveTo(j.x,j.y)):(n(k,function(a){i.classes.toggle("tinymce-inline-"+a,!1)}),i.classes.toggle("tinymce-inline-inside",!0),g=p.intersect(h,g),g?(c=p.findBestRelativePosition(f,g,h,["tc-tc","tl-tl","tr-tr"]),c?(j=p.relativePosition(f,g,c),i.moveTo(j.x,j.y)):i.moveTo(g.x,g.y)):i.hide())}}function g(){function b(){a.selection&&f(k(a.selection.getNode()))}window.requestAnimationFrame?window.requestAnimationFrame(b):b()}function h(){l||(l=a.selection.getScrollContainer()||a.getWin(),tinymce.$(l).on("scroll",g),a.on("remove",function(){tinymce.$(l).off("scroll")}))}function i(a){var c;return a.toolbar.panel?(a.toolbar.panel.show(),void f(a)):(h(),c=m.create({type:"floatpanel",role:"application",classes:"tinymce tinymce-inline",layout:"flex",direction:"column",align:"stretch",autohide:!1,autofix:!0,fixed:!0,border:1,items:b(a.toolbar.items)}),a.toolbar.panel=c,c.renderTo(document.body).reflow(),void f(a))}function j(){tinymce.each(c(),function(a){a.panel&&a.panel.hide()})}function k(b){var d,e,f,g=c();for(f=a.$(b).parents().add(b),d=f.length-1;d>=0;d--)for(e=g.length-1;e>=0;e--)if(g[e].predicate(f[d]))return{toolbar:g[e],element:f[d]};return null}var l;a.on("click keyup blur",function(){window.setTimeout(function(){var b;a.removed||(b=k(a.selection.getNode()),b?i(b):j())},0)}),a.on("ObjectResizeStart",function(){var b=k(a.selection.getNode());b&&b.toolbar.panel&&b.toolbar.panel.hide()}),a.on("nodeChange ResizeEditor ResizeWindow",g),a.on("remove",function(){tinymce.each(c(),function(a){a.panel&&a.panel.remove()}),a.contextToolbars={}})}function i(b){function f(){if(n&&n.moveRel&&n.visible()&&!n._fixed){var b=a.selection.getScrollContainer(),c=a.getBody(),d=0,e=0;if(b){var f=o.getPos(c),g=o.getPos(b);d=Math.max(0,g.x-f.x),e=Math.max(0,g.y-f.y)}n.fixed(!1).moveRel(c,a.rtl?["tr-br","br-tr"]:["tl-bl","bl-tl","tr-br"]).moveBy(d,e)}}function g(){n&&(n.show(),f(),o.addClass(a.getBody(),"mce-edit-focus"))}function i(){n&&(n.hide(),q.hideAll(),o.removeClass(a.getBody(),"mce-edit-focus"))}function j(){return n?void(n.visible()||g()):(n=k.panel=m.create({type:p?"panel":"floatpanel",role:"application",classes:"tinymce tinymce-inline",layout:"flex",direction:"column",align:"stretch",autohide:!1,autofix:!0,fixed:!!p,border:1,items:[l.menubar===!1?null:{type:"menubar",border:"0 0 1 0",items:d()},c()]}),a.fire("BeforeRenderUI"),n.renderTo(p||document.body).reflow(),e(n),g(),h(),a.on("nodeChange",f),a.on("activate",g),a.on("deactivate",i),void a.nodeChanged())}var n,p;return l.fixed_toolbar_container&&(p=o.select(l.fixed_toolbar_container)[0]),l.content_editable=!0,a.on("focus",function(){b.skinUiCss?tinymce.DOM.styleSheetLoader.load(b.skinUiCss,j,j):j()}),a.on("blur hide",i),a.on("remove",function(){n&&(n.remove(),n=null)}),b.skinUiCss&&tinymce.DOM.styleSheetLoader.load(b.skinUiCss),{}}function j(b){var g,i,j;return b.skinUiCss&&tinymce.DOM.loadCSS(b.skinUiCss),g=k.panel=m.create({type:"panel",role:"application",classes:"tinymce",style:"visibility: hidden",layout:"stack",border:1,items:[l.menubar===!1?null:{type:"menubar",border:"0 0 1 0",items:d()},c(),{type:"panel",name:"iframe",layout:"stack",classes:"edit-area",html:"",border:"1 0 0 0"}]}),l.resize!==!1&&(i={type:"resizehandle",direction:l.resize,onResizeStart:function(){var b=a.getContentAreaContainer().firstChild;j={width:b.clientWidth,height:b.clientHeight}},onResize:function(a){"both"==l.resize?f(j.width+a.deltaX,j.height+a.deltaY):f(null,j.height+a.deltaY)}}),l.statusbar!==!1&&g.add({type:"panel",name:"statusbar",classes:"statusbar",layout:"flow",border:"1 0 0 0",ariaRoot:!0,items:[{type:"elementpath"},i]}),l.readonly&&g.find("*").disabled(!0),a.fire("BeforeRenderUI"),g.renderBefore(b.targetNode).reflow(),l.width&&tinymce.DOM.setStyle(g.getEl(),"width",l.width),a.on("remove",function(){g.remove(),g=null}),e(g),h(),{iframeContainer:g.find("#iframe")[0].getEl(),editorContainer:g.getEl()}}var k=this,l=a.settings,m=tinymce.ui.Factory,n=tinymce.each,o=tinymce.DOM,p=tinymce.ui.Rect,q=tinymce.ui.FloatPanel,r={file:{title:"File",items:"newdocument"},edit:{title:"Edit",items:"undo redo | cut copy paste pastetext | selectall"},insert:{title:"Insert",items:"|"},view:{title:"View",items:"visualaid |"},format:{title:"Format",items:"bold italic underline strikethrough superscript subscript | formats | removeformat"},table:{title:"Table"},tools:{title:"Tools"}},s="undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image";k.renderUI=function(b){var c=l.skin!==!1?l.skin||"lightgray":!1;if(c){var d=l.skin_url;d=d?a.documentBaseURI.toAbsolute(d):tinymce.baseURL+"/skins/"+c,b.skinUiCss=tinymce.Env.documentMode<=7?d+"/skin.ie7.min.css":d+"/skin.min.css",a.contentCSS.push(d+"/content"+(a.inline?".inline":"")+".min.css")}return a.on("ProgressState",function(a){k.throbber=k.throbber||new tinymce.ui.Throbber(k.panel.getEl("body")),a.state?k.throbber.show(a.time):k.throbber.hide()}),l.inline?i(b):j(b)},k.resizeTo=f,k.resizeBy=g});
includes/js/tinymce-lite/tinymce.min.js ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ // 4.2.3 (2015-07-30)
2
+ !function(e,t){"use strict";function n(e,t){for(var n,r=[],i=0;i<e.length;++i){if(n=s[e[i]]||o(e[i]),!n)throw"module definition dependecy not found: "+e[i];r.push(n)}t.apply(null,r)}function r(e,r,i){if("string"!=typeof e)throw"invalid module definition, module id must be defined and be a string";if(r===t)throw"invalid module definition, dependencies must be specified";if(i===t)throw"invalid module definition, definition function must be specified";n(r,function(){s[e]=i.apply(null,arguments)})}function i(e){return!!s[e]}function o(t){for(var n=e,r=t.split(/[.\/]/),i=0;i<r.length;++i){if(!n[r[i]])return;n=n[r[i]]}return n}function a(n){for(var r=0;r<n.length;r++){for(var i=e,o=n[r],a=o.split(/[.\/]/),l=0;l<a.length-1;++l)i[a[l]]===t&&(i[a[l]]={}),i=i[a[l]];i[a[a.length-1]]=s[o]}}var s={},l="tinymce/dom/EventUtils",c="tinymce/dom/Sizzle",u="tinymce/Env",d="tinymce/util/Tools",f="tinymce/dom/DomQuery",h="tinymce/html/Styles",p="tinymce/dom/TreeWalker",m="tinymce/dom/Range",g="tinymce/html/Entities",v="tinymce/dom/StyleSheetLoader",y="tinymce/dom/DOMUtils",b="tinymce/dom/ScriptLoader",x="tinymce/AddOnManager",C="tinymce/dom/RangeUtils",w="tinymce/NodeChange",_="tinymce/html/Node",E="tinymce/html/Schema",N="tinymce/html/SaxParser",k="tinymce/html/DomParser",S="tinymce/html/Writer",T="tinymce/html/Serializer",R="tinymce/dom/Serializer",A="tinymce/dom/TridentSelection",B="tinymce/util/VK",D="tinymce/dom/ControlSelection",M="tinymce/dom/BookmarkManager",H="tinymce/dom/Selection",L="tinymce/dom/ElementUtils",P="tinymce/fmt/Preview",O="tinymce/Formatter",I="tinymce/UndoManager",F="tinymce/EnterKey",z="tinymce/ForceBlocks",W="tinymce/EditorCommands",V="tinymce/util/URI",U="tinymce/util/Class",$="tinymce/util/EventDispatcher",q="tinymce/data/Binding",j="tinymce/util/Observable",K="tinymce/data/ObservableObject",Y="tinymce/ui/Selector",G="tinymce/ui/Collection",X="tinymce/ui/DomUtils",J="tinymce/ui/BoxUtils",Q="tinymce/ui/ClassList",Z="tinymce/ui/ReflowQueue",ee="tinymce/ui/Control",te="tinymce/ui/Factory",ne="tinymce/ui/KeyboardNavigation",re="tinymce/ui/Container",ie="tinymce/ui/DragHelper",oe="tinymce/ui/Scrollable",ae="tinymce/ui/Panel",se="tinymce/ui/Movable",le="tinymce/ui/Resizable",ce="tinymce/ui/FloatPanel",ue="tinymce/ui/Window",de="tinymce/ui/MessageBox",fe="tinymce/WindowManager",he="tinymce/util/Quirks",pe="tinymce/EditorObservable",me="tinymce/Shortcuts",ge="tinymce/util/Promise",ve="tinymce/file/Uploader",ye="tinymce/file/Conversions",be="tinymce/file/ImageScanner",xe="tinymce/file/BlobCache",Ce="tinymce/EditorUpload",we="tinymce/Editor",_e="tinymce/util/I18n",Ee="tinymce/FocusManager",Ne="tinymce/EditorManager",ke="tinymce/LegacyInput",Se="tinymce/util/XHR",Te="tinymce/util/JSON",Re="tinymce/util/JSONRequest",Ae="tinymce/util/JSONP",Be="tinymce/util/LocalStorage",De="tinymce/Compat",Me="tinymce/ui/Layout",He="tinymce/ui/AbsoluteLayout",Le="tinymce/ui/Tooltip",Pe="tinymce/ui/Widget",Oe="tinymce/ui/Button",Ie="tinymce/ui/ButtonGroup",Fe="tinymce/ui/Checkbox",ze="tinymce/ui/ComboBox",We="tinymce/ui/ColorBox",Ve="tinymce/ui/PanelButton",Ue="tinymce/ui/ColorButton",$e="tinymce/util/Color",qe="tinymce/ui/ColorPicker",je="tinymce/ui/Path",Ke="tinymce/ui/ElementPath",Ye="tinymce/ui/FormItem",Ge="tinymce/ui/Form",Xe="tinymce/ui/FieldSet",Je="tinymce/ui/FilePicker",Qe="tinymce/ui/FitLayout",Ze="tinymce/ui/FlexLayout",et="tinymce/ui/FlowLayout",tt="tinymce/ui/FormatControls",nt="tinymce/ui/GridLayout",rt="tinymce/ui/Iframe",it="tinymce/ui/Label",ot="tinymce/ui/Toolbar",at="tinymce/ui/MenuBar",st="tinymce/ui/MenuButton",lt="tinymce/ui/MenuItem",ct="tinymce/ui/Menu",ut="tinymce/ui/ListBox",dt="tinymce/ui/Radio",ft="tinymce/ui/Rect",ht="tinymce/ui/ResizeHandle",pt="tinymce/ui/Slider",mt="tinymce/ui/Spacer",gt="tinymce/ui/SplitButton",vt="tinymce/ui/StackLayout",yt="tinymce/ui/TabPanel",bt="tinymce/ui/TextBox",xt="tinymce/ui/Throbber";r(l,[],function(){function e(e,t,n,r){e.addEventListener?e.addEventListener(t,n,r||!1):e.attachEvent&&e.attachEvent("on"+t,n)}function t(e,t,n,r){e.removeEventListener?e.removeEventListener(t,n,r||!1):e.detachEvent&&e.detachEvent("on"+t,n)}function n(e,t){function n(){return!1}function r(){return!0}var i,o=t||{},l;for(i in e)s[i]||(o[i]=e[i]);if(o.target||(o.target=o.srcElement||document),e&&a.test(e.type)&&e.pageX===l&&e.clientX!==l){var c=o.target.ownerDocument||document,u=c.documentElement,d=c.body;o.pageX=e.clientX+(u&&u.scrollLeft||d&&d.scrollLeft||0)-(u&&u.clientLeft||d&&d.clientLeft||0),o.pageY=e.clientY+(u&&u.scrollTop||d&&d.scrollTop||0)-(u&&u.clientTop||d&&d.clientTop||0)}return o.preventDefault=function(){o.isDefaultPrevented=r,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},o.stopPropagation=function(){o.isPropagationStopped=r,e&&(e.stopPropagation?e.stopPropagation():e.cancelBubble=!0)},o.stopImmediatePropagation=function(){o.isImmediatePropagationStopped=r,o.stopPropagation()},o.isDefaultPrevented||(o.isDefaultPrevented=n,o.isPropagationStopped=n,o.isImmediatePropagationStopped=n),"undefined"==typeof o.metaKey&&(o.metaKey=!1),o}function r(n,r,i){function o(){i.domLoaded||(i.domLoaded=!0,r(c))}function a(){("complete"===l.readyState||"interactive"===l.readyState&&l.body)&&(t(l,"readystatechange",a),o())}function s(){try{l.documentElement.doScroll("left")}catch(e){return void setTimeout(s,0)}o()}var l=n.document,c={type:"ready"};return i.domLoaded?void r(c):(l.addEventListener?"complete"===l.readyState?o():e(n,"DOMContentLoaded",o):(e(l,"readystatechange",a),l.documentElement.doScroll&&n.self===n.top&&s()),void e(n,"load",o))}function i(){function i(e,t){var n,r,i,o,a=s[t];if(n=a&&a[e.type])for(r=0,i=n.length;i>r;r++)if(o=n[r],o&&o.func.call(o.scope,e)===!1&&e.preventDefault(),e.isImmediatePropagationStopped())return}var a=this,s={},l,c,u,d,f;c=o+(+new Date).toString(32),d="onmouseenter"in document.documentElement,u="onfocusin"in document.documentElement,f={mouseenter:"mouseover",mouseleave:"mouseout"},l=1,a.domLoaded=!1,a.events=s,a.bind=function(t,o,h,p){function m(e){i(n(e||_.event),g)}var g,v,y,b,x,C,w,_=window;if(t&&3!==t.nodeType&&8!==t.nodeType){for(t[c]?g=t[c]:(g=l++,t[c]=g,s[g]={}),p=p||t,o=o.split(" "),y=o.length;y--;)b=o[y],C=m,x=w=!1,"DOMContentLoaded"===b&&(b="ready"),a.domLoaded&&"ready"===b&&"complete"==t.readyState?h.call(p,n({type:b})):(d||(x=f[b],x&&(C=function(e){var t,r;if(t=e.currentTarget,r=e.relatedTarget,r&&t.contains)r=t.contains(r);else for(;r&&r!==t;)r=r.parentNode;r||(e=n(e||_.event),e.type="mouseout"===e.type?"mouseleave":"mouseenter",e.target=t,i(e,g))})),u||"focusin"!==b&&"focusout"!==b||(w=!0,x="focusin"===b?"focus":"blur",C=function(e){e=n(e||_.event),e.type="focus"===e.type?"focusin":"focusout",i(e,g)}),v=s[g][b],v?"ready"===b&&a.domLoaded?h({type:b}):v.push({func:h,scope:p}):(s[g][b]=v=[{func:h,scope:p}],v.fakeName=x,v.capture=w,v.nativeHandler=C,"ready"===b?r(t,C,a):e(t,x||b,C,w)));return t=v=0,h}},a.unbind=function(e,n,r){var i,o,l,u,d,f;if(!e||3===e.nodeType||8===e.nodeType)return a;if(i=e[c]){if(f=s[i],n){for(n=n.split(" "),l=n.length;l--;)if(d=n[l],o=f[d]){if(r)for(u=o.length;u--;)if(o[u].func===r){var h=o.nativeHandler,p=o.fakeName,m=o.capture;o=o.slice(0,u).concat(o.slice(u+1)),o.nativeHandler=h,o.fakeName=p,o.capture=m,f[d]=o}r&&0!==o.length||(delete f[d],t(e,o.fakeName||d,o.nativeHandler,o.capture))}}else{for(d in f)o=f[d],t(e,o.fakeName||d,o.nativeHandler,o.capture);f={}}for(d in f)return a;delete s[i];try{delete e[c]}catch(g){e[c]=null}}return a},a.fire=function(e,t,r){var o;if(!e||3===e.nodeType||8===e.nodeType)return a;r=n(null,r),r.type=t,r.target=e;do o=e[c],o&&i(r,o),e=e.parentNode||e.ownerDocument||e.defaultView||e.parentWindow;while(e&&!r.isPropagationStopped());return a},a.clean=function(e){var t,n,r=a.unbind;if(!e||3===e.nodeType||8===e.nodeType)return a;if(e[c]&&r(e),e.getElementsByTagName||(e=e.document),e&&e.getElementsByTagName)for(r(e),n=e.getElementsByTagName("*"),t=n.length;t--;)e=n[t],e[c]&&r(e);return a},a.destroy=function(){s={}},a.cancel=function(e){return e&&(e.preventDefault(),e.stopImmediatePropagation()),!1}}var o="mce-data-",a=/^(?:mouse|contextmenu)|click/,s={keyLocation:1,layerX:1,layerY:1,returnValue:1,webkitMovementX:1,webkitMovementY:1};return i.Event=new i,i.Event.bind(window,"ready",function(){}),i}),r(c,[],function(){if(!window.jQuery)throw new Error("Load jQuery first");return jQuery.find}),r(u,[],function(){var e=navigator,t=e.userAgent,n,r,i,o,a,s,l,c,u,d;n=window.opera&&window.opera.buildNumber,u=/Android/.test(t),r=/WebKit/.test(t),i=!r&&!n&&/MSIE/gi.test(t)&&/Explorer/gi.test(e.appName),i=i&&/MSIE (\w+)\./.exec(t)[1],o=-1==t.indexOf("Trident/")||-1==t.indexOf("rv:")&&-1==e.appName.indexOf("Netscape")?!1:11,a=!document.msElementsFromPoint||i||o?!1:12,i=i||o||a,s=!r&&!o&&/Gecko/.test(t),l=-1!=t.indexOf("Mac"),c=/(iPad|iPhone)/.test(t),d="FormData"in window&&"FileReader"in window&&"URL"in window&&!!URL.createObjectURL,a&&(r=!1);var f=!c||d||t.match(/AppleWebKit\/(\d*)/)[1]>=534;return{opera:n,webkit:r,ie:i,gecko:s,mac:l,iOS:c,android:u,contentEditable:f,transparentSrc:"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",caretAfter:8!=i,range:window.getSelection&&"Range"in window,documentMode:i&&!a?document.documentMode||7:10,fileApi:d}}),r(d,[u],function(e){function n(e){return null===e||e===t?"":(""+e).replace(y,"")}function r(e,n){return n?"array"==n&&b(e)?!0:typeof e==n:e!==t}function i(e){var t=e,n,r;if(!b(e))for(t=[],n=0,r=e.length;r>n;n++)t[n]=e[n];return t}function o(e,t,n){var r;for(e=e||[],t=t||",","string"==typeof e&&(e=e.split(t)),n=n||{},r=e.length;r--;)n[e[r]]={};return n}function a(e,n,r){var i,o;if(!e)return 0;if(r=r||e,e.length!==t){for(i=0,o=e.length;o>i;i++)if(n.call(r,e[i],i,e)===!1)return 0}else for(i in e)if(e.hasOwnProperty(i)&&n.call(r,e[i],i,e)===!1)return 0;return 1}function s(e,t){var n=[];return a(e,function(e){n.push(t(e))}),n}function l(e,t){var n=[];return a(e,function(e){(!t||t(e))&&n.push(e)}),n}function c(e,t,n){var r=this,i,o,a,s,l,c=0;if(e=/^((static) )?([\w.]+)(:([\w.]+))?/.exec(e),a=e[3].match(/(^|\.)(\w+)$/i)[2],o=r.createNS(e[3].replace(/\.\w+$/,""),n),!o[a]){if("static"==e[2])return o[a]=t,void(this.onCreate&&this.onCreate(e[2],e[3],o[a]));t[a]||(t[a]=function(){},c=1),o[a]=t[a],r.extend(o[a].prototype,t),e[5]&&(i=r.resolve(e[5]).prototype,s=e[5].match(/\.(\w+)$/i)[1],l=o[a],c?o[a]=function(){return i[s].apply(this,arguments)}:o[a]=function(){return this.parent=i[s],l.apply(this,arguments)},o[a].prototype[a]=o[a],r.each(i,function(e,t){o[a].prototype[t]=i[t]}),r.each(t,function(e,t){i[t]?o[a].prototype[t]=function(){return this.parent=i[t],e.apply(this,arguments)}:t!=a&&(o[a].prototype[t]=e)})),r.each(t["static"],function(e,t){o[a][t]=e})}}function u(e,t){var n,r;if(e)for(n=0,r=e.length;r>n;n++)if(e[n]===t)return n;return-1}function d(e,n){var r,i,o,a=arguments,s;for(r=1,i=a.length;i>r;r++){n=a[r];for(o in n)n.hasOwnProperty(o)&&(s=n[o],s!==t&&(e[o]=s))}return e}function f(e,t,n,r){r=r||this,e&&(n&&(e=e[n]),a(e,function(e,i){return t.call(r,e,i,n)===!1?!1:void f(e,t,n,r)}))}function h(e,t){var n,r;for(t=t||window,e=e.split("."),n=0;n<e.length;n++)r=e[n],t[r]||(t[r]={}),t=t[r];return t}function p(e,t){var n,r;for(t=t||window,e=e.split("."),n=0,r=e.length;r>n&&(t=t[e[n]],t);n++);return t}function m(e,t){return!e||r(e,"array")?e:s(e.split(t||","),n)}function g(e){return function(){return e}}function v(t){var n=e.cacheSuffix;return n&&(t+=(-1===t.indexOf("?")?"?":"&")+n),t}var y=/^\s*|\s*$/g,b=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)};return{trim:n,isArray:b,is:r,toArray:i,makeMap:o,each:a,map:s,grep:l,filter:l,inArray:u,extend:d,create:c,walk:f,createNS:h,resolve:p,explode:m,constant:g,_addCacheSuffix:v}}),r(f,[l,c,d,u],function(e,n,r,i){function o(e){return"undefined"!=typeof e}function a(e){return"string"==typeof e}function s(e){return e&&e==e.window}function l(e,t){var n,r,i;for(t=t||w,i=t.createElement("div"),n=t.createDocumentFragment(),i.innerHTML=e;r=i.firstChild;)n.appendChild(r);return n}function c(e,t,n,r){var i;if(a(t))t=l(t,v(e[0]));else if(t.length&&!t.nodeType){if(t=f.makeArray(t),r)for(i=t.length-1;i>=0;i--)c(e,t[i],n,r);else for(i=0;i<t.length;i++)c(e,t[i],n,r);return e}if(t.nodeType)for(i=e.length;i--;)n.call(e[i],t);return e}function u(e,t){return e&&t&&-1!==(" "+e.className+" ").indexOf(" "+t+" ")}function d(e,t,n){var r,i;return t=f(t)[0],e.each(function(){var e=this;n&&r==e.parentNode?i.appendChild(e):(r=e.parentNode,i=t.cloneNode(!1),e.parentNode.insertBefore(i,e),i.appendChild(e))}),e}function f(e,t){return new f.fn.init(e,t)}function h(e,t){var n;if(t.indexOf)return t.indexOf(e);for(n=t.length;n--;)if(t[n]===e)return n;return-1}function p(e){return null===e||e===S?"":(""+e).replace(H,"")}function m(e,t){var n,r,i,o,a;if(e)if(n=e.length,n===o){for(r in e)if(e.hasOwnProperty(r)&&(a=e[r],t.call(a,r,a)===!1))break}else for(i=0;n>i&&(a=e[i],t.call(a,i,a)!==!1);i++);return e}function g(e,t){var n=[];return m(e,function(e,r){t(r,e)&&n.push(r)}),n}function v(e){return e?9==e.nodeType?e:e.ownerDocument:w}function y(e,n,r){var i=[],o=e[n];for("string"!=typeof r&&r instanceof f&&(r=r[0]);o&&9!==o.nodeType;){if(r!==t){if(o===r)break;if("string"==typeof r&&f(o).is(r))break}1===o.nodeType&&i.push(o),o=o[n]}return i}function b(e,n,r,i){var o=[];for(i instanceof f&&(i=i[0]);e;e=e[n])if(!r||e.nodeType===r){if(i!==t){if(e===i)break;if("string"==typeof i&&f(e).is(i))break}o.push(e)}return o}function x(e,t,n){for(e=e[t];e;e=e[t])if(e.nodeType==n)return e;return null}function C(e,t,n){m(n,function(n,r){e[n]=e[n]||{},e[n][t]=r})}var w=document,_=Array.prototype.push,E=Array.prototype.slice,N=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,k=e.Event,S,T=r.makeMap("fillOpacity fontWeight lineHeight opacity orphans widows zIndex zoom"," "),R=r.makeMap("checked compact declare defer disabled ismap multiple nohref noshade nowrap readonly selected"," "),A={"for":"htmlFor","class":"className",readonly:"readOnly"},B={"float":"cssFloat"},D={},M={},H=/^\s*|\s*$/g;return f.fn=f.prototype={constructor:f,selector:"",context:null,length:0,init:function(e,t){var n=this,r,i;if(!e)return n;if(e.nodeType)return n.context=n[0]=e,n.length=1,n;if(t&&t.nodeType)n.context=t;else{if(t)return f(e).attr(t);n.context=t=document}if(a(e)){if(n.selector=e,r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!r)return f(t).find(e);if(r[1])for(i=l(e,v(t)).firstChild;i;)_.call(n,i),i=i.nextSibling;else{if(i=v(t).getElementById(r[2]),!i)return n;if(i.id!==r[2])return n.find(e);n.length=1,n[0]=i}}else this.add(e,!1);return n},toArray:function(){return r.toArray(this)},add:function(e,t){var n=this,r,i;if(a(e))return n.add(f(e));if(t!==!1)for(r=f.unique(n.toArray().concat(f.makeArray(e))),n.length=r.length,i=0;i<r.length;i++)n[i]=r[i];else _.apply(n,f.makeArray(e));return n},attr:function(e,t){var n=this,r;if("object"==typeof e)m(e,function(e,t){n.attr(e,t)});else{if(!o(t)){if(n[0]&&1===n[0].nodeType){if(r=D[e],r&&r.get)return r.get(n[0],e);if(R[e])return n.prop(e)?e:S;t=n[0].getAttribute(e,2),null===t&&(t=S)}return t}this.each(function(){var n;if(1===this.nodeType){if(n=D[e],n&&n.set)return void n.set(this,t);null===t?this.removeAttribute(e,2):this.setAttribute(e,t,2)}})}return n},removeAttr:function(e){return this.attr(e,null)},prop:function(e,t){var n=this;if(e=A[e]||e,"object"==typeof e)m(e,function(e,t){n.prop(e,t)});else{if(!o(t))return n[0]&&n[0].nodeType&&e in n[0]?n[0][e]:t;this.each(function(){1==this.nodeType&&(this[e]=t)})}return n},css:function(e,t){function n(e){return e.replace(/-(\D)/g,function(e,t){return t.toUpperCase()})}function r(e){return e.replace(/[A-Z]/g,function(e){return"-"+e})}var i=this,a,s;if("object"==typeof e)m(e,function(e,t){i.css(e,t)});else if(o(t))e=n(e),"number"!=typeof t||T[e]||(t+="px"),i.each(function(){var n=this.style;if(s=M[e],s&&s.set)return void s.set(this,t);try{this.style[B[e]||e]=t}catch(i){}(null===t||""===t)&&(n.removeProperty?n.removeProperty(r(e)):n.removeAttribute(e))});else{if(a=i[0],s=M[e],s&&s.get)return s.get(a);if(a.ownerDocument.defaultView)try{return a.ownerDocument.defaultView.getComputedStyle(a,null).getPropertyValue(r(e))}catch(l){return S}else if(a.currentStyle)return a.currentStyle[n(e)]}return i},remove:function(){for(var e=this,t,n=this.length;n--;)t=e[n],k.clean(t),t.parentNode&&t.parentNode.removeChild(t);return this},empty:function(){for(var e=this,t,n=this.length;n--;)for(t=e[n];t.firstChild;)t.removeChild(t.firstChild);return this},html:function(e){var t=this,n;if(o(e)){n=t.length;try{for(;n--;)t[n].innerHTML=e}catch(r){f(t[n]).empty().append(e)}return t}return t[0]?t[0].innerHTML:""},text:function(e){var t=this,n;if(o(e)){for(n=t.length;n--;)"innerText"in t[n]?t[n].innerText=e:t[0].textContent=e;return t}return t[0]?t[0].innerText||t[0].textContent:""},append:function(){return c(this,arguments,function(e){1===this.nodeType&&this.appendChild(e)})},prepend:function(){return c(this,arguments,function(e){1===this.nodeType&&this.insertBefore(e,this.firstChild)},!0)},before:function(){var e=this;return e[0]&&e[0].parentNode?c(e,arguments,function(e){this.parentNode.insertBefore(e,this)}):e},after:function(){var e=this;return e[0]&&e[0].parentNode?c(e,arguments,function(e){this.parentNode.insertBefore(e,this.nextSibling)},!0):e},appendTo:function(e){return f(e).append(this),this},prependTo:function(e){return f(e).prepend(this),this},replaceWith:function(e){return this.before(e).remove()},wrap:function(e){return d(this,e)},wrapAll:function(e){return d(this,e,!0)},wrapInner:function(e){return this.each(function(){f(this).contents().wrapAll(e)}),this},unwrap:function(){return this.parent().each(function(){f(this).replaceWith(this.childNodes)})},clone:function(){var e=[];return this.each(function(){e.push(this.cloneNode(!0))}),f(e)},addClass:function(e){return this.toggleClass(e,!0)},removeClass:function(e){return this.toggleClass(e,!1)},toggleClass:function(e,t){var n=this;return"string"!=typeof e?n:(-1!==e.indexOf(" ")?m(e.split(" "),function(){n.toggleClass(this,t)}):n.each(function(n,r){var i,o;o=u(r,e),o!==t&&(i=r.className,o?r.className=p((" "+i+" ").replace(" "+e+" "," ")):r.className+=i?" "+e:e)}),n)},hasClass:function(e){return u(this[0],e)},each:function(e){return m(this,e)},on:function(e,t){return this.each(function(){k.bind(this,e,t)})},off:function(e,t){return this.each(function(){k.unbind(this,e,t)})},trigger:function(e){return this.each(function(){"object"==typeof e?k.fire(this,e.type,e):k.fire(this,e)})},show:function(){return this.css("display","")},hide:function(){return this.css("display","none")},slice:function(){return new f(E.apply(this,arguments))},eq:function(e){return-1===e?this.slice(e):this.slice(e,+e+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},find:function(e){var t,n,r=[];for(t=0,n=this.length;n>t;t++)f.find(e,this[t],r);return f(r)},filter:function(e){return f("function"==typeof e?g(this.toArray(),function(t,n){return e(n,t)}):f.filter(e,this.toArray()))},closest:function(e){var t=[];return e instanceof f&&(e=e[0]),this.each(function(n,r){for(;r;){if("string"==typeof e&&f(r).is(e)){t.push(r);break}if(r==e){t.push(r);break}r=r.parentNode}}),f(t)},offset:function(e){var t,n,r,i=0,o=0,a;return e?this.css(e):(t=this[0],t&&(n=t.ownerDocument,r=n.documentElement,t.getBoundingClientRect&&(a=t.getBoundingClientRect(),i=a.left+(r.scrollLeft||n.body.scrollLeft)-r.clientLeft,o=a.top+(r.scrollTop||n.body.scrollTop)-r.clientTop)),{left:i,top:o})},push:_,sort:[].sort,splice:[].splice},r.extend(f,{extend:r.extend,makeArray:function(e){return s(e)||e.nodeType?[e]:r.toArray(e)},inArray:h,isArray:r.isArray,each:m,trim:p,grep:g,find:n,expr:n.selectors,unique:n.uniqueSort,text:n.getText,contains:n.contains,filter:function(e,t,n){var r=t.length;for(n&&(e=":not("+e+")");r--;)1!=t[r].nodeType&&t.splice(r,1);return t=1===t.length?f.find.matchesSelector(t[0],e)?[t[0]]:[]:f.find.matches(e,t)}}),m({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return y(e,"parentNode")},next:function(e){return x(e,"nextSibling",1)},prev:function(e){return x(e,"previousSibling",1)},children:function(e){return b(e.firstChild,"nextSibling",1)},contents:function(e){return r.toArray(("iframe"===e.nodeName?e.contentDocument||e.contentWindow.document:e).childNodes)}},function(e,t){f.fn[e]=function(n){var r=this,i=[];return r.each(function(){var e=t.call(i,this,n,i);e&&(f.isArray(e)?i.push.apply(i,e):i.push(e))}),this.length>1&&(i=f.unique(i),0===e.indexOf("parents")&&(i=i.reverse())),i=f(i),n?i.filter(n):i}}),m({parentsUntil:function(e,t){return y(e,"parentNode",t)},nextUntil:function(e,t){return b(e,"nextSibling",1,t).slice(1)},prevUntil:function(e,t){return b(e,"previousSibling",1,t).slice(1)}},function(e,t){f.fn[e]=function(n,r){var i=this,o=[];return i.each(function(){var e=t.call(o,this,n,o);e&&(f.isArray(e)?o.push.apply(o,e):o.push(e))}),this.length>1&&(o=f.unique(o),(0===e.indexOf("parents")||"prevUntil"===e)&&(o=o.reverse())),o=f(o),r?o.filter(r):o}}),f.fn.is=function(e){return!!e&&this.filter(e).length>0},f.fn.init.prototype=f.fn,f.overrideDefaults=function(e){function t(r,i){return n=n||e(),0===arguments.length&&(r=n.element),i||(i=n.context),new t.fn.init(r,i)}var n;return f.extend(t,this),t},i.ie&&i.ie<8&&(C(D,"get",{maxlength:function(e){var t=e.maxLength;return 2147483647===t?S:t},size:function(e){var t=e.size;return 20===t?S:t},"class":function(e){return e.className},style:function(e){var t=e.style.cssText;return 0===t.length?S:t}}),C(D,"set",{"class":function(e,t){e.className=t},style:function(e,t){e.style.cssText=t}})),i.ie&&i.ie<9&&(B["float"]="styleFloat",C(M,"set",{opacity:function(e,t){var n=e.style;null===t||""===t?n.removeAttribute("filter"):(n.zoom=1,n.filter="alpha(opacity="+100*t+")")}})),f.attrHooks=D,f.cssHooks=M,f}),r(h,[],function(){return function(e,t){function n(e,t,n,r){function i(e){return e=parseInt(e,10).toString(16),e.length>1?e:"0"+e}return"#"+i(t)+i(n)+i(r)}var r=/rgb\s*\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\s*\)/gi,i=/(?:url(?:(?:\(\s*\"([^\"]+)\"\s*\))|(?:\(\s*\'([^\']+)\'\s*\))|(?:\(\s*([^)\s]+)\s*\))))|(?:\'([^\']+)\')|(?:\"([^\"]+)\")/gi,o=/\s*([^:]+):\s*([^;]+);?/g,a=/\s+$/,s,l,c={},u,d,f,h="\ufeff";for(e=e||{},t&&(d=t.getValidStyles(),f=t.getInvalidStyles()),u=("\\\" \\' \\; \\: ; : "+h).split(" "),l=0;l<u.length;l++)c[u[l]]=h+l,c[h+l]=u[l];return{toHex:function(e){return e.replace(r,n)},parse:function(t){function s(e,t,n){var r,i,o,a;if(r=m[e+"-top"+t],r&&(i=m[e+"-right"+t],i&&(o=m[e+"-bottom"+t],o&&(a=m[e+"-left"+t])))){var s=[r,i,o,a];for(l=s.length-1;l--&&s[l]===s[l+1];);l>-1&&n||(m[e+t]=-1==l?s[0]:s.join(" "),delete m[e+"-top"+t],delete m[e+"-right"+t],delete m[e+"-bottom"+t],delete m[e+"-left"+t])}}function u(e){var t=m[e],n;if(t){for(t=t.split(" "),n=t.length;n--;)if(t[n]!==t[0])return!1;return m[e]=t[0],!0}}function d(e,t,n,r){u(t)&&u(n)&&u(r)&&(m[e]=m[t]+" "+m[n]+" "+m[r],delete m[t],delete m[n],delete m[r])}function f(e){return b=!0,c[e]}function h(e,t){return b&&(e=e.replace(/\uFEFF[0-9]/g,function(e){return c[e]})),t||(e=e.replace(/\\([\'\";:])/g,"$1")),e}function p(t,n,r,i,o,a){if(o=o||a)return o=h(o),"'"+o.replace(/\'/g,"\\'")+"'";if(n=h(n||r||i),!e.allow_script_urls){var s=n.replace(/[\s\r\n]+/,"");if(/(java|vb)script:/i.test(s))return"";if(!e.allow_svg_data_urls&&/^data:image\/svg/i.test(s))return""}return x&&(n=x.call(C,n,"style")),"url('"+n.replace(/\'/g,"\\'")+"')"}var m={},g,v,y,b,x=e.url_converter,C=e.url_converter_scope||this;if(t){for(t=t.replace(/[\u0000-\u001F]/g,""),t=t.replace(/\\[\"\';:\uFEFF]/g,f).replace(/\"[^\"]+\"|\'[^\']+\'/g,function(e){return e.replace(/[;:]/g,f)});g=o.exec(t);){if(v=g[1].replace(a,"").toLowerCase(),y=g[2].replace(a,""),y=y.replace(/\\[0-9a-f]+/g,function(e){return String.fromCharCode(parseInt(e.substr(1),16))}),v&&y.length>0){if(!e.allow_script_urls&&("behavior"==v||/expression\s*\(|\/\*|\*\//.test(y)))continue;"font-weight"===v&&"700"===y?y="bold":("color"===v||"background-color"===v)&&(y=y.toLowerCase()),y=y.replace(r,n),y=y.replace(i,p),m[v]=b?h(y,!0):y}o.lastIndex=g.index+g[0].length}s("border","",!0),s("border","-width"),s("border","-color"),s("border","-style"),s("padding",""),s("margin",""),d("border","border-width","border-style","border-color"),"medium none"===m.border&&delete m.border,"none"===m["border-image"]&&delete m["border-image"]}return m},serialize:function(e,t){function n(t){var n,r,o,a;if(n=d[t])for(r=0,o=n.length;o>r;r++)t=n[r],a=e[t],a!==s&&a.length>0&&(i+=(i.length>0?" ":"")+t+": "+a+";")}function r(e,t){var n;return n=f["*"],n&&n[e]?!1:(n=f[t],n&&n[e]?!1:!0)}var i="",o,a;if(t&&d)n("*"),n(t);else for(o in e)a=e[o],a!==s&&a.length>0&&(!f||r(o,t))&&(i+=(i.length>0?" ":"")+o+": "+a+";");return i}}}}),r(p,[],function(){return function(e,t){function n(e,n,r,i){var o,a;if(e){if(!i&&e[n])return e[n];if(e!=t){if(o=e[r])return o;for(a=e.parentNode;a&&a!=t;a=a.parentNode)if(o=a[r])return o}}}var r=e;this.current=function(){return r},this.next=function(e){return r=n(r,"firstChild","nextSibling",e)},this.prev=function(e){return r=n(r,"lastChild","previousSibling",e)}}}),r(m,[d],function(e){function t(n){function r(){return L.createDocumentFragment()}function i(e,t){_(F,e,t)}function o(e,t){_(z,e,t)}function a(e){i(e.parentNode,j(e))}function s(e){i(e.parentNode,j(e)+1)}function l(e){o(e.parentNode,j(e))}function c(e){o(e.parentNode,j(e)+1)}function u(e){e?(H[U]=H[V],H[$]=H[W]):(H[V]=H[U],H[W]=H[$]),H.collapsed=F}function d(e){a(e),c(e)}function f(e){i(e,0),o(e,1===e.nodeType?e.childNodes.length:e.nodeValue.length)}function h(e,t){var n=H[V],r=H[W],i=H[U],o=H[$],a=t.startContainer,s=t.startOffset,l=t.endContainer,c=t.endOffset;return 0===e?w(n,r,a,s):1===e?w(i,o,a,s):2===e?w(i,o,l,c):3===e?w(n,r,l,c):void 0}function p(){E(I)}function m(){return E(P)}function g(){return E(O)}function v(e){var t=this[V],r=this[W],i,o;3!==t.nodeType&&4!==t.nodeType||!t.nodeValue?(t.childNodes.length>0&&(o=t.childNodes[r]),o?t.insertBefore(e,o):3==t.nodeType?n.insertAfter(e,t):t.appendChild(e)):r?r>=t.nodeValue.length?n.insertAfter(e,t):(i=t.splitText(r),t.parentNode.insertBefore(e,i)):t.parentNode.insertBefore(e,t)}function y(e){var t=H.extractContents();H.insertNode(e),e.appendChild(t),H.selectNode(e)}function b(){return q(new t(n),{startContainer:H[V],startOffset:H[W],endContainer:H[U],endOffset:H[$],collapsed:H.collapsed,commonAncestorContainer:H.commonAncestorContainer})}function x(e,t){var n;if(3==e.nodeType)return e;if(0>t)return e;for(n=e.firstChild;n&&t>0;)--t,n=n.nextSibling;return n?n:e}function C(){return H[V]==H[U]&&H[W]==H[$]}function w(e,t,r,i){var o,a,s,l,c,u;if(e==r)return t==i?0:i>t?-1:1;for(o=r;o&&o.parentNode!=e;)o=o.parentNode;if(o){for(a=0,s=e.firstChild;s!=o&&t>a;)a++,s=s.nextSibling;return a>=t?-1:1}for(o=e;o&&o.parentNode!=r;)o=o.parentNode;if(o){for(a=0,s=r.firstChild;s!=o&&i>a;)a++,s=s.nextSibling;return i>a?-1:1}for(l=n.findCommonAncestor(e,r),c=e;c&&c.parentNode!=l;)c=c.parentNode;for(c||(c=l),u=r;u&&u.parentNode!=l;)u=u.parentNode;if(u||(u=l),c==u)return 0;for(s=l.firstChild;s;){if(s==c)return-1;if(s==u)return 1;s=s.nextSibling}}function _(e,t,r){var i,o;for(e?(H[V]=t,H[W]=r):(H[U]=t,H[$]=r),i=H[U];i.parentNode;)i=i.parentNode;for(o=H[V];o.parentNode;)o=o.parentNode;o==i?w(H[V],H[W],H[U],H[$])>0&&H.collapse(e):H.collapse(e),H.collapsed=C(),H.commonAncestorContainer=n.findCommonAncestor(H[V],H[U])}function E(e){var t,n=0,r=0,i,o,a,s,l,c;if(H[V]==H[U])return N(e);for(t=H[U],i=t.parentNode;i;t=i,i=i.parentNode){if(i==H[V])return k(t,e);++n}for(t=H[V],i=t.parentNode;i;t=i,i=i.parentNode){if(i==H[U])return S(t,e);++r}for(o=r-n,a=H[V];o>0;)a=a.parentNode,o--;for(s=H[U];0>o;)s=s.parentNode,o++;for(l=a.parentNode,c=s.parentNode;l!=c;l=l.parentNode,c=c.parentNode)a=l,s=c;return T(a,s,e)}function N(e){var t,n,i,o,a,s,l,c,u;if(e!=I&&(t=r()),H[W]==H[$])return t;if(3==H[V].nodeType){if(n=H[V].nodeValue,i=n.substring(H[W],H[$]),e!=O&&(o=H[V],c=H[W],u=H[$]-H[W],0===c&&u>=o.nodeValue.length-1?o.parentNode.removeChild(o):o.deleteData(c,u),H.collapse(F)),e==I)return;return i.length>0&&t.appendChild(L.createTextNode(i)),t}for(o=x(H[V],H[W]),a=H[$]-H[W];o&&a>0;)s=o.nextSibling,l=D(o,e),t&&t.appendChild(l),--a,o=s;return e!=O&&H.collapse(F),t}function k(e,t){var n,i,o,a,s,l;if(t!=I&&(n=r()),i=R(e,t),n&&n.appendChild(i),o=j(e),a=o-H[W],0>=a)return t!=O&&(H.setEndBefore(e),H.collapse(z)),n;for(i=e.previousSibling;a>0;)s=i.previousSibling,l=D(i,t),n&&n.insertBefore(l,n.firstChild),--a,i=s;return t!=O&&(H.setEndBefore(e),H.collapse(z)),n}function S(e,t){var n,i,o,a,s,l;for(t!=I&&(n=r()),o=A(e,t),n&&n.appendChild(o),i=j(e),++i,a=H[$]-i,o=e.nextSibling;o&&a>0;)s=o.nextSibling,l=D(o,t),n&&n.appendChild(l),--a,o=s;return t!=O&&(H.setStartAfter(e),H.collapse(F)),n}function T(e,t,n){var i,o,a,s,l,c,u;for(n!=I&&(o=r()),i=A(e,n),o&&o.appendChild(i),a=j(e),s=j(t),++a,l=s-a,c=e.nextSibling;l>0;)u=c.nextSibling,i=D(c,n),o&&o.appendChild(i),c=u,--l;return i=R(t,n),o&&o.appendChild(i),n!=O&&(H.setStartAfter(e),H.collapse(F)),o}function R(e,t){var n=x(H[U],H[$]-1),r,i,o,a,s,l=n!=H[U];if(n==e)return B(n,l,z,t);for(r=n.parentNode,i=B(r,z,z,t);r;){for(;n;)o=n.previousSibling,a=B(n,l,z,t),t!=I&&i.insertBefore(a,i.firstChild),l=F,n=o;if(r==e)return i;n=r.previousSibling,r=r.parentNode,s=B(r,z,z,t),t!=I&&s.appendChild(i),i=s}}function A(e,t){var n=x(H[V],H[W]),r=n!=H[V],i,o,a,s,l;if(n==e)return B(n,r,F,t);for(i=n.parentNode,o=B(i,z,F,t);i;){for(;n;)a=n.nextSibling,s=B(n,r,F,t),t!=I&&o.appendChild(s),r=F,n=a;if(i==e)return o;n=i.nextSibling,i=i.parentNode,l=B(i,z,F,t),t!=I&&l.appendChild(o),o=l}}function B(e,t,r,i){var o,a,s,l,c;if(t)return D(e,i);if(3==e.nodeType){if(o=e.nodeValue,r?(l=H[W],a=o.substring(l),s=o.substring(0,l)):(l=H[$],a=o.substring(0,l),s=o.substring(l)),i!=O&&(e.nodeValue=s),i==I)return;return c=n.clone(e,z),c.nodeValue=a,c}if(i!=I)return n.clone(e,z)}function D(e,t){return t!=I?t==O?n.clone(e,F):e:void e.parentNode.removeChild(e)}function M(){return n.create("body",null,g()).outerText}var H=this,L=n.doc,P=0,O=1,I=2,F=!0,z=!1,W="startOffset",V="startContainer",U="endContainer",$="endOffset",q=e.extend,j=n.nodeIndex;return q(H,{startContainer:L,startOffset:0,endContainer:L,endOffset:0,collapsed:F,commonAncestorContainer:L,START_TO_START:0,START_TO_END:1,END_TO_END:2,END_TO_START:3,setStart:i,setEnd:o,setStartBefore:a,setStartAfter:s,setEndBefore:l,setEndAfter:c,collapse:u,selectNode:d,selectNodeContents:f,compareBoundaryPoints:h,deleteContents:p,extractContents:m,cloneContents:g,insertNode:v,surroundContents:y,cloneRange:b,toStringIE:M}),H}return t.prototype.toString=function(){return this.toStringIE()},t}),r(g,[d],function(e){function t(e){var t;return t=document.createElement("div"),t.innerHTML=e,t.textContent||t.innerText||e}function n(e,t){var n,r,i,a={};if(e){for(e=e.split(","),t=t||10,n=0;n<e.length;n+=2)r=String.fromCharCode(parseInt(e[n],t)),o[r]||(i="&"+e[n+1]+";",a[r]=i,a[i]=r);return a}}var r=e.makeMap,i,o,a,s=/[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,l=/[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,c=/[<>&\"\']/g,u=/&#([a-z0-9]+);?|&([a-z0-9]+);/gi,d={128:"\u20ac",130:"\u201a",131:"\u0192",132:"\u201e",133:"\u2026",134:"\u2020",135:"\u2021",136:"\u02c6",137:"\u2030",138:"\u0160",139:"\u2039",140:"\u0152",142:"\u017d",145:"\u2018",146:"\u2019",147:"\u201c",148:"\u201d",149:"\u2022",150:"\u2013",151:"\u2014",152:"\u02dc",153:"\u2122",154:"\u0161",155:"\u203a",156:"\u0153",158:"\u017e",159:"\u0178"};o={'"':"&quot;","'":"&#39;","<":"&lt;",">":"&gt;","&":"&amp;","`":"&#96;"},a={"&lt;":"<","&gt;":">","&amp;":"&","&quot;":'"',"&apos;":"'"},i=n("50,nbsp,51,iexcl,52,cent,53,pound,54,curren,55,yen,56,brvbar,57,sect,58,uml,59,copy,5a,ordf,5b,laquo,5c,not,5d,shy,5e,reg,5f,macr,5g,deg,5h,plusmn,5i,sup2,5j,sup3,5k,acute,5l,micro,5m,para,5n,middot,5o,cedil,5p,sup1,5q,ordm,5r,raquo,5s,frac14,5t,frac12,5u,frac34,5v,iquest,60,Agrave,61,Aacute,62,Acirc,63,Atilde,64,Auml,65,Aring,66,AElig,67,Ccedil,68,Egrave,69,Eacute,6a,Ecirc,6b,Euml,6c,Igrave,6d,Iacute,6e,Icirc,6f,Iuml,6g,ETH,6h,Ntilde,6i,Ograve,6j,Oacute,6k,Ocirc,6l,Otilde,6m,Ouml,6n,times,6o,Oslash,6p,Ugrave,6q,Uacute,6r,Ucirc,6s,Uuml,6t,Yacute,6u,THORN,6v,szlig,70,agrave,71,aacute,72,acirc,73,atilde,74,auml,75,aring,76,aelig,77,ccedil,78,egrave,79,eacute,7a,ecirc,7b,euml,7c,igrave,7d,iacute,7e,icirc,7f,iuml,7g,eth,7h,ntilde,7i,ograve,7j,oacute,7k,ocirc,7l,otilde,7m,ouml,7n,divide,7o,oslash,7p,ugrave,7q,uacute,7r,ucirc,7s,uuml,7t,yacute,7u,thorn,7v,yuml,ci,fnof,sh,Alpha,si,Beta,sj,Gamma,sk,Delta,sl,Epsilon,sm,Zeta,sn,Eta,so,Theta,sp,Iota,sq,Kappa,sr,Lambda,ss,Mu,st,Nu,su,Xi,sv,Omicron,t0,Pi,t1,Rho,t3,Sigma,t4,Tau,t5,Upsilon,t6,Phi,t7,Chi,t8,Psi,t9,Omega,th,alpha,ti,beta,tj,gamma,tk,delta,tl,epsilon,tm,zeta,tn,eta,to,theta,tp,iota,tq,kappa,tr,lambda,ts,mu,tt,nu,tu,xi,tv,omicron,u0,pi,u1,rho,u2,sigmaf,u3,sigma,u4,tau,u5,upsilon,u6,phi,u7,chi,u8,psi,u9,omega,uh,thetasym,ui,upsih,um,piv,812,bull,816,hellip,81i,prime,81j,Prime,81u,oline,824,frasl,88o,weierp,88h,image,88s,real,892,trade,89l,alefsym,8cg,larr,8ch,uarr,8ci,rarr,8cj,darr,8ck,harr,8dl,crarr,8eg,lArr,8eh,uArr,8ei,rArr,8ej,dArr,8ek,hArr,8g0,forall,8g2,part,8g3,exist,8g5,empty,8g7,nabla,8g8,isin,8g9,notin,8gb,ni,8gf,prod,8gh,sum,8gi,minus,8gn,lowast,8gq,radic,8gt,prop,8gu,infin,8h0,ang,8h7,and,8h8,or,8h9,cap,8ha,cup,8hb,int,8hk,there4,8hs,sim,8i5,cong,8i8,asymp,8j0,ne,8j1,equiv,8j4,le,8j5,ge,8k2,sub,8k3,sup,8k4,nsub,8k6,sube,8k7,supe,8kl,oplus,8kn,otimes,8l5,perp,8m5,sdot,8o8,lceil,8o9,rceil,8oa,lfloor,8ob,rfloor,8p9,lang,8pa,rang,9ea,loz,9j0,spades,9j3,clubs,9j5,hearts,9j6,diams,ai,OElig,aj,oelig,b0,Scaron,b1,scaron,bo,Yuml,m6,circ,ms,tilde,802,ensp,803,emsp,809,thinsp,80c,zwnj,80d,zwj,80e,lrm,80f,rlm,80j,ndash,80k,mdash,80o,lsquo,80p,rsquo,80q,sbquo,80s,ldquo,80t,rdquo,80u,bdquo,810,dagger,811,Dagger,81g,permil,81p,lsaquo,81q,rsaquo,85c,euro",32);
3
+ var f={encodeRaw:function(e,t){return e.replace(t?s:l,function(e){return o[e]||e})},encodeAllRaw:function(e){return(""+e).replace(c,function(e){return o[e]||e})},encodeNumeric:function(e,t){return e.replace(t?s:l,function(e){return e.length>1?"&#"+(1024*(e.charCodeAt(0)-55296)+(e.charCodeAt(1)-56320)+65536)+";":o[e]||"&#"+e.charCodeAt(0)+";"})},encodeNamed:function(e,t,n){return n=n||i,e.replace(t?s:l,function(e){return o[e]||n[e]||e})},getEncodeFunc:function(e,t){function a(e,n){return e.replace(n?s:l,function(e){return o[e]||t[e]||"&#"+e.charCodeAt(0)+";"||e})}function c(e,n){return f.encodeNamed(e,n,t)}return t=n(t)||i,e=r(e.replace(/\+/g,",")),e.named&&e.numeric?a:e.named?t?c:f.encodeNamed:e.numeric?f.encodeNumeric:f.encodeRaw},decode:function(e){return e.replace(u,function(e,n){return n?(n="x"===n.charAt(0).toLowerCase()?parseInt(n.substr(1),16):parseInt(n,10),n>65535?(n-=65536,String.fromCharCode(55296+(n>>10),56320+(1023&n))):d[n]||String.fromCharCode(n)):a[e]||i[e]||t(e)})}};return f}),r(v,[d],function(e){return function(t,n){function r(e){t.getElementsByTagName("head")[0].appendChild(e)}function i(n,i,l){function c(){for(var e=y.passed,t=e.length;t--;)e[t]();y.status=2,y.passed=[],y.failed=[]}function u(){for(var e=y.failed,t=e.length;t--;)e[t]();y.status=3,y.passed=[],y.failed=[]}function d(){var e=navigator.userAgent.match(/WebKit\/(\d*)/);return!!(e&&e[1]<536)}function f(e,t){e()||((new Date).getTime()-v<s?window.setTimeout(t,0):u())}function h(){f(function(){for(var e=t.styleSheets,n,r=e.length,i;r--;)if(n=e[r],i=n.ownerNode?n.ownerNode:n.owningElement,i&&i.id===m.id)return c(),!0},h)}function p(){f(function(){try{var e=g.sheet.cssRules;return c(),!!e}catch(t){}},p)}var m,g,v,y;if(n=e._addCacheSuffix(n),a[n]?y=a[n]:(y={passed:[],failed:[]},a[n]=y),i&&y.passed.push(i),l&&y.failed.push(l),1!=y.status){if(2==y.status)return void c();if(3==y.status)return void u();if(y.status=1,m=t.createElement("link"),m.rel="stylesheet",m.type="text/css",m.id="u"+o++,m.async=!1,m.defer=!1,v=(new Date).getTime(),"onload"in m&&!d())m.onload=h,m.onerror=u;else{if(navigator.userAgent.indexOf("Firefox")>0)return g=t.createElement("style"),g.textContent='@import "'+n+'"',p(),void r(g);h()}r(m),m.href=n}}var o=0,a={},s;n=n||{},s=n.maxLoadTime||5e3,this.load=i}}),r(y,[c,f,h,l,p,m,g,u,d,v],function(e,n,r,i,o,a,s,l,c,u){function d(e,t){var n={},r=t.keep_values,i;return i={set:function(n,r,i){t.url_converter&&(r=t.url_converter.call(t.url_converter_scope||e,r,i,n[0])),n.attr("data-mce-"+i,r).attr(i,r)},get:function(e,t){return e.attr("data-mce-"+t)||e.attr(t)}},n={style:{set:function(e,t){return null!==t&&"object"==typeof t?void e.css(t):(r&&e.attr("data-mce-style",t),void e.attr("style",t))},get:function(t){var n=t.attr("data-mce-style")||t.attr("style");return n=e.serializeStyle(e.parseStyle(n),t[0].nodeName)}}},r&&(n.href=n.src=i),n}function f(e,t){var o=this,a;o.doc=e,o.win=window,o.files={},o.counter=0,o.stdMode=!v||e.documentMode>=8,o.boxModel=!v||"CSS1Compat"==e.compatMode||o.stdMode,o.styleSheetLoader=new u(e),o.boundEvents=[],o.settings=t=t||{},o.schema=t.schema,o.styles=new r({url_converter:t.url_converter,url_converter_scope:t.url_converter_scope},t.schema),o.fixDoc(e),o.events=t.ownEvents?new i(t.proxy):i.Event,o.attrHooks=d(o,t),a=t.schema?t.schema.getBlockElements():{},o.$=n.overrideDefaults(function(){return{context:e,element:o.getRoot()}}),o.isBlock=function(e){if(!e)return!1;var t=e.nodeType;return t?!(1!==t||!a[e.nodeName]):!!a[e]}}var h=c.each,p=c.is,m=c.grep,g=c.trim,v=l.ie,y=/^([a-z0-9],?)+$/i,b=/^[ \t\r\n]*$/;return f.prototype={$$:function(e){return"string"==typeof e&&(e=this.get(e)),this.$(e)},root:null,fixDoc:function(e){var t=this.settings,n;if(v&&t.schema){"abbr article aside audio canvas details figcaption figure footer header hgroup mark menu meter nav output progress section summary time video".replace(/\w+/g,function(t){e.createElement(t)});for(n in t.schema.getCustomElements())e.createElement(n)}},clone:function(e,t){var n=this,r,i;return!v||1!==e.nodeType||t?e.cloneNode(t):(i=n.doc,t?r.firstChild:(r=i.createElement(e.nodeName),h(n.getAttribs(e),function(t){n.setAttrib(r,t.nodeName,n.getAttrib(e,t.nodeName))}),r))},getRoot:function(){var e=this;return e.settings.root_element||e.doc.body},getViewPort:function(e){var t,n;return e=e?e:this.win,t=e.document,n=this.boxModel?t.documentElement:t.body,{x:e.pageXOffset||n.scrollLeft,y:e.pageYOffset||n.scrollTop,w:e.innerWidth||n.clientWidth,h:e.innerHeight||n.clientHeight}},getRect:function(e){var t=this,n,r;return e=t.get(e),n=t.getPos(e),r=t.getSize(e),{x:n.x,y:n.y,w:r.w,h:r.h}},getSize:function(e){var t=this,n,r;return e=t.get(e),n=t.getStyle(e,"width"),r=t.getStyle(e,"height"),-1===n.indexOf("px")&&(n=0),-1===r.indexOf("px")&&(r=0),{w:parseInt(n,10)||e.offsetWidth||e.clientWidth,h:parseInt(r,10)||e.offsetHeight||e.clientHeight}},getParent:function(e,t,n){return this.getParents(e,t,n,!1)},getParents:function(e,n,r,i){var o=this,a,s=[];for(e=o.get(e),i=i===t,r=r||("BODY"!=o.getRoot().nodeName?o.getRoot().parentNode:null),p(n,"string")&&(a=n,n="*"===n?function(e){return 1==e.nodeType}:function(e){return o.is(e,a)});e&&e!=r&&e.nodeType&&9!==e.nodeType;){if(!n||n(e)){if(!i)return e;s.push(e)}e=e.parentNode}return i?s:null},get:function(e){var t;return e&&this.doc&&"string"==typeof e&&(t=e,e=this.doc.getElementById(e),e&&e.id!==t)?this.doc.getElementsByName(t)[1]:e},getNext:function(e,t){return this._findSib(e,t,"nextSibling")},getPrev:function(e,t){return this._findSib(e,t,"previousSibling")},select:function(t,n){var r=this;return e(t,r.get(n)||r.settings.root_element||r.doc,[])},is:function(n,r){var i;if(n.length===t){if("*"===r)return 1==n.nodeType;if(y.test(r)){for(r=r.toLowerCase().split(/,/),n=n.nodeName.toLowerCase(),i=r.length-1;i>=0;i--)if(r[i]==n)return!0;return!1}}if(n.nodeType&&1!=n.nodeType)return!1;var o=n.nodeType?[n]:n;return e(r,o[0].ownerDocument||o[0],null,o).length>0},add:function(e,t,n,r,i){var o=this;return this.run(e,function(e){var a;return a=p(t,"string")?o.doc.createElement(t):t,o.setAttribs(a,n),r&&(r.nodeType?a.appendChild(r):o.setHTML(a,r)),i?a:e.appendChild(a)})},create:function(e,t,n){return this.add(this.doc.createElement(e),e,t,n,1)},createHTML:function(e,t,n){var r="",i;r+="<"+e;for(i in t)t.hasOwnProperty(i)&&null!==t[i]&&"undefined"!=typeof t[i]&&(r+=" "+i+'="'+this.encode(t[i])+'"');return"undefined"!=typeof n?r+">"+n+"</"+e+">":r+" />"},createFragment:function(e){var t,n,r=this.doc,i;for(i=r.createElement("div"),t=r.createDocumentFragment(),e&&(i.innerHTML=e);n=i.firstChild;)t.appendChild(n);return t},remove:function(e,t){return e=this.$$(e),t?e.each(function(){for(var e;e=this.firstChild;)3==e.nodeType&&0===e.data.length?this.removeChild(e):this.parentNode.insertBefore(e,this)}).remove():e.remove(),e.length>1?e.toArray():e[0]},setStyle:function(e,t,n){e=this.$$(e).css(t,n),this.settings.update_styles&&e.attr("data-mce-style",null)},getStyle:function(e,n,r){return e=this.$$(e),r?e.css(n):(n=n.replace(/-(\D)/g,function(e,t){return t.toUpperCase()}),"float"==n&&(n=v?"styleFloat":"cssFloat"),e[0]&&e[0].style?e[0].style[n]:t)},setStyles:function(e,t){e=this.$$(e).css(t),this.settings.update_styles&&e.attr("data-mce-style",null)},removeAllAttribs:function(e){return this.run(e,function(e){var t,n=e.attributes;for(t=n.length-1;t>=0;t--)e.removeAttributeNode(n.item(t))})},setAttrib:function(e,t,n){var r=this,i,o,a=r.settings;""===n&&(n=null),e=r.$$(e),i=e.attr(t),e.length&&(o=r.attrHooks[t],o&&o.set?o.set(e,n,t):e.attr(t,n),i!=n&&a.onSetAttrib&&a.onSetAttrib({attrElm:e,attrName:t,attrValue:n}))},setAttribs:function(e,t){var n=this;n.$$(e).each(function(e,r){h(t,function(e,t){n.setAttrib(r,t,e)})})},getAttrib:function(e,t,n){var r=this,i,o;return e=r.$$(e),e.length&&(i=r.attrHooks[t],o=i&&i.get?i.get(e,t):e.attr(t)),"undefined"==typeof o&&(o=n||""),o},getPos:function(e,t){var r=this,i=0,o=0,a,s=r.doc,l=s.body,c;if(e=r.get(e),t=t||l,e){if(t===l&&e.getBoundingClientRect&&"static"===n(l).css("position"))return c=e.getBoundingClientRect(),t=r.boxModel?s.documentElement:l,i=c.left+(s.documentElement.scrollLeft||l.scrollLeft)-t.clientLeft,o=c.top+(s.documentElement.scrollTop||l.scrollTop)-t.clientTop,{x:i,y:o};for(a=e;a&&a!=t&&a.nodeType;)i+=a.offsetLeft||0,o+=a.offsetTop||0,a=a.offsetParent;for(a=e.parentNode;a&&a!=t&&a.nodeType;)i-=a.scrollLeft||0,o-=a.scrollTop||0,a=a.parentNode}return{x:i,y:o}},parseStyle:function(e){return this.styles.parse(e)},serializeStyle:function(e,t){return this.styles.serialize(e,t)},addStyle:function(e){var t=this,n=t.doc,r,i;if(t!==f.DOM&&n===document){var o=f.DOM.addedStyles;if(o=o||[],o[e])return;o[e]=!0,f.DOM.addedStyles=o}i=n.getElementById("mceDefaultStyles"),i||(i=n.createElement("style"),i.id="mceDefaultStyles",i.type="text/css",r=n.getElementsByTagName("head")[0],r.firstChild?r.insertBefore(i,r.firstChild):r.appendChild(i)),i.styleSheet?i.styleSheet.cssText+=e:i.appendChild(n.createTextNode(e))},loadCSS:function(e){var t=this,n=t.doc,r;return t!==f.DOM&&n===document?void f.DOM.loadCSS(e):(e||(e=""),r=n.getElementsByTagName("head")[0],void h(e.split(","),function(e){var i;e=c._addCacheSuffix(e),t.files[e]||(t.files[e]=!0,i=t.create("link",{rel:"stylesheet",href:e}),v&&n.documentMode&&n.recalc&&(i.onload=function(){n.recalc&&n.recalc(),i.onload=null}),r.appendChild(i))}))},addClass:function(e,t){this.$$(e).addClass(t)},removeClass:function(e,t){this.toggleClass(e,t,!1)},hasClass:function(e,t){return this.$$(e).hasClass(t)},toggleClass:function(e,t,r){this.$$(e).toggleClass(t,r).each(function(){""===this.className&&n(this).attr("class",null)})},show:function(e){this.$$(e).show()},hide:function(e){this.$$(e).hide()},isHidden:function(e){return"none"==this.$$(e).css("display")},uniqueId:function(e){return(e?e:"mce_")+this.counter++},setHTML:function(e,t){e=this.$$(e),v?e.each(function(e,r){if(r.canHaveHTML!==!1){for(;r.firstChild;)r.removeChild(r.firstChild);try{r.innerHTML="<br>"+t,r.removeChild(r.firstChild)}catch(i){n("<div>").html("<br>"+t).contents().slice(1).appendTo(r)}return t}}):e.html(t)},getOuterHTML:function(e){return e=this.get(e),1==e.nodeType&&"outerHTML"in e?e.outerHTML:n("<div>").append(n(e).clone()).html()},setOuterHTML:function(e,t){var r=this;r.$$(e).each(function(){try{if("outerHTML"in this)return void(this.outerHTML=t)}catch(e){}r.remove(n(this).html(t),!0)})},decode:s.decode,encode:s.encodeAllRaw,insertAfter:function(e,t){return t=this.get(t),this.run(e,function(e){var n,r;return n=t.parentNode,r=t.nextSibling,r?n.insertBefore(e,r):n.appendChild(e),e})},replace:function(e,t,n){var r=this;return r.run(t,function(t){return p(t,"array")&&(e=e.cloneNode(!0)),n&&h(m(t.childNodes),function(t){e.appendChild(t)}),t.parentNode.replaceChild(e,t)})},rename:function(e,t){var n=this,r;return e.nodeName!=t.toUpperCase()&&(r=n.create(t),h(n.getAttribs(e),function(t){n.setAttrib(r,t.nodeName,n.getAttrib(e,t.nodeName))}),n.replace(r,e,1)),r||e},findCommonAncestor:function(e,t){for(var n=e,r;n;){for(r=t;r&&n!=r;)r=r.parentNode;if(n==r)break;n=n.parentNode}return!n&&e.ownerDocument?e.ownerDocument.documentElement:n},toHex:function(e){return this.styles.toHex(c.trim(e))},run:function(e,t,n){var r=this,i;return"string"==typeof e&&(e=r.get(e)),e?(n=n||this,e.nodeType||!e.length&&0!==e.length?t.call(n,e):(i=[],h(e,function(e,o){e&&("string"==typeof e&&(e=r.get(e)),i.push(t.call(n,e,o)))}),i)):!1},getAttribs:function(e){var t;if(e=this.get(e),!e)return[];if(v){if(t=[],"OBJECT"==e.nodeName)return e.attributes;"OPTION"===e.nodeName&&this.getAttrib(e,"selected")&&t.push({specified:1,nodeName:"selected"});var n=/<\/?[\w:\-]+ ?|=[\"][^\"]+\"|=\'[^\']+\'|=[\w\-]+|>/gi;return e.cloneNode(!1).outerHTML.replace(n,"").replace(/[\w:\-]+/gi,function(e){t.push({specified:1,nodeName:e})}),t}return e.attributes},isEmpty:function(e,t){var n=this,r,i,a,s,l,c=0;if(e=e.firstChild){s=new o(e,e.parentNode),t=t||(n.schema?n.schema.getNonEmptyElements():null);do{if(a=e.nodeType,1===a){if(e.getAttribute("data-mce-bogus"))continue;if(l=e.nodeName.toLowerCase(),t&&t[l]){if("br"===l){c++;continue}return!1}for(i=n.getAttribs(e),r=i.length;r--;)if(l=i[r].nodeName,"name"===l||"data-mce-bookmark"===l)return!1}if(8==a)return!1;if(3===a&&!b.test(e.nodeValue))return!1}while(e=s.next())}return 1>=c},createRng:function(){var e=this.doc;return e.createRange?e.createRange():new a(this)},nodeIndex:function(e,t){var n=0,r,i;if(e)for(r=e.nodeType,e=e.previousSibling;e;e=e.previousSibling)i=e.nodeType,(!t||3!=i||i!=r&&e.nodeValue.length)&&(n++,r=i);return n},split:function(e,t,n){function r(e){function t(e){var t=e.previousSibling&&"SPAN"==e.previousSibling.nodeName,n=e.nextSibling&&"SPAN"==e.nextSibling.nodeName;return t&&n}var n,o=e.childNodes,a=e.nodeType;if(1!=a||"bookmark"!=e.getAttribute("data-mce-type")){for(n=o.length-1;n>=0;n--)r(o[n]);if(9!=a){if(3==a&&e.nodeValue.length>0){var s=g(e.nodeValue).length;if(!i.isBlock(e.parentNode)||s>0||0===s&&t(e))return}else if(1==a&&(o=e.childNodes,1==o.length&&o[0]&&1==o[0].nodeType&&"bookmark"==o[0].getAttribute("data-mce-type")&&e.parentNode.insertBefore(o[0],e),o.length||/^(br|hr|input|img)$/i.test(e.nodeName)))return;i.remove(e)}return e}}var i=this,o=i.createRng(),a,s,l;return e&&t?(o.setStart(e.parentNode,i.nodeIndex(e)),o.setEnd(t.parentNode,i.nodeIndex(t)),a=o.extractContents(),o=i.createRng(),o.setStart(t.parentNode,i.nodeIndex(t)+1),o.setEnd(e.parentNode,i.nodeIndex(e)+1),s=o.extractContents(),l=e.parentNode,l.insertBefore(r(a),e),n?l.replaceChild(n,t):l.insertBefore(t,e),l.insertBefore(r(s),e),i.remove(e),n||t):void 0},bind:function(e,t,n,r){var i=this;if(c.isArray(e)){for(var o=e.length;o--;)e[o]=i.bind(e[o],t,n,r);return e}return!i.settings.collect||e!==i.doc&&e!==i.win||i.boundEvents.push([e,t,n,r]),i.events.bind(e,t,n,r||i)},unbind:function(e,t,n){var r=this,i;if(c.isArray(e)){for(i=e.length;i--;)e[i]=r.unbind(e[i],t,n);return e}if(r.boundEvents&&(e===r.doc||e===r.win))for(i=r.boundEvents.length;i--;){var o=r.boundEvents[i];e!=o[0]||t&&t!=o[1]||n&&n!=o[2]||this.events.unbind(o[0],o[1],o[2])}return this.events.unbind(e,t,n)},fire:function(e,t,n){return this.events.fire(e,t,n)},getContentEditable:function(e){var t;return e&&1==e.nodeType?(t=e.getAttribute("data-mce-contenteditable"),t&&"inherit"!==t?t:"inherit"!==e.contentEditable?e.contentEditable:null):null},getContentEditableParent:function(e){for(var t=this.getRoot(),n=null;e&&e!==t&&(n=this.getContentEditable(e),null===n);e=e.parentNode);return n},destroy:function(){var t=this;if(t.boundEvents){for(var n=t.boundEvents.length;n--;){var r=t.boundEvents[n];this.events.unbind(r[0],r[1],r[2])}t.boundEvents=null}e.setDocument&&e.setDocument(),t.win=t.doc=t.root=t.events=t.frag=null},isChildOf:function(e,t){for(;e;){if(t===e)return!0;e=e.parentNode}return!1},dumpRng:function(e){return"startContainer: "+e.startContainer.nodeName+", startOffset: "+e.startOffset+", endContainer: "+e.endContainer.nodeName+", endOffset: "+e.endOffset},_findSib:function(e,t,n){var r=this,i=t;if(e)for("string"==typeof i&&(i=function(e){return r.is(e,t)}),e=e[n];e;e=e[n])if(i(e))return e;return null}},f.DOM=new f(document),f}),r(b,[y,d],function(e,t){function n(){function e(e,n){function i(){a.remove(l),s&&(s.onreadystatechange=s.onload=s=null),n()}function o(){"undefined"!=typeof console&&console.log&&console.log("Failed to load: "+e)}var a=r,s,l;l=a.uniqueId(),s=document.createElement("script"),s.id=l,s.type="text/javascript",s.src=t._addCacheSuffix(e),"onreadystatechange"in s?s.onreadystatechange=function(){/loaded|complete/.test(s.readyState)&&i()}:s.onload=i,s.onerror=o,(document.getElementsByTagName("head")[0]||document.body).appendChild(s)}var n=0,a=1,s=2,l={},c=[],u={},d=[],f=0,h;this.isDone=function(e){return l[e]==s},this.markDone=function(e){l[e]=s},this.add=this.load=function(e,t,r){var i=l[e];i==h&&(c.push(e),l[e]=n),t&&(u[e]||(u[e]=[]),u[e].push({func:t,scope:r||this}))},this.loadQueue=function(e,t){this.loadScripts(c,e,t)},this.loadScripts=function(t,n,r){function c(e){i(u[e],function(e){e.func.call(e.scope)}),u[e]=h}var p;d.push({func:n,scope:r||this}),(p=function(){var n=o(t);t.length=0,i(n,function(t){return l[t]==s?void c(t):void(l[t]!=a&&(l[t]=a,f++,e(t,function(){l[t]=s,f--,c(t),p()})))}),f||(i(d,function(e){e.func.call(e.scope)}),d.length=0)})()}}var r=e.DOM,i=t.each,o=t.grep;return n.ScriptLoader=new n,n}),r(x,[b,d],function(e,n){function r(){var e=this;e.items=[],e.urls={},e.lookup={}}var i=n.each;return r.prototype={get:function(e){return this.lookup[e]?this.lookup[e].instance:t},dependencies:function(e){var t;return this.lookup[e]&&(t=this.lookup[e].dependencies),t||[]},requireLangPack:function(t,n){var i=r.language;if(i&&r.languageLoad!==!1){if(n)if(n=","+n+",",-1!=n.indexOf(","+i.substr(0,2)+","))i=i.substr(0,2);else if(-1==n.indexOf(","+i+","))return;e.ScriptLoader.add(this.urls[t]+"/langs/"+i+".js")}},add:function(e,t,n){return this.items.push(t),this.lookup[e]={instance:t,dependencies:n},t},createUrl:function(e,t){return"object"==typeof t?t:{prefix:e.prefix,resource:t,suffix:e.suffix}},addComponents:function(t,n){var r=this.urls[t];i(n,function(t){e.ScriptLoader.add(r+"/"+t)})},load:function(n,o,a,s){function l(){var r=c.dependencies(n);i(r,function(e){var n=c.createUrl(o,e);c.load(n.resource,n,t,t)}),a&&(s?a.call(s):a.call(e))}var c=this,u=o;c.urls[n]||("object"==typeof o&&(u=o.prefix+o.resource+o.suffix),0!==u.indexOf("/")&&-1==u.indexOf("://")&&(u=r.baseURL+"/"+u),c.urls[n]=u.substring(0,u.lastIndexOf("/")),c.lookup[n]?l():e.ScriptLoader.add(u,l,s))}},r.PluginManager=new r,r.ThemeManager=new r,r}),r(C,[d,p],function(e,t){function n(e,t){var n=e.childNodes;return t--,t>n.length-1?t=n.length-1:0>t&&(t=0),n[t]||e}function r(e){this.walk=function(t,r){function o(e){var t;return t=e[0],3===t.nodeType&&t===c&&u>=t.nodeValue.length&&e.splice(0,1),t=e[e.length-1],0===f&&e.length>0&&t===d&&3===t.nodeType&&e.splice(e.length-1,1),e}function a(e,t,n){for(var r=[];e&&e!=n;e=e[t])r.push(e);return r}function s(e,t){do{if(e.parentNode==t)return e;e=e.parentNode}while(e)}function l(e,t,n){var i=n?"nextSibling":"previousSibling";for(g=e,v=g.parentNode;g&&g!=t;g=v)v=g.parentNode,y=a(g==e?g:g[i],i),y.length&&(n||y.reverse(),r(o(y)))}var c=t.startContainer,u=t.startOffset,d=t.endContainer,f=t.endOffset,h,p,m,g,v,y,b;if(b=e.select("td.mce-item-selected,th.mce-item-selected"),b.length>0)return void i(b,function(e){r([e])});if(1==c.nodeType&&c.hasChildNodes()&&(c=c.childNodes[u]),1==d.nodeType&&d.hasChildNodes()&&(d=n(d,f)),c==d)return r(o([c]));for(h=e.findCommonAncestor(c,d),g=c;g;g=g.parentNode){if(g===d)return l(c,h,!0);if(g===h)break}for(g=d;g;g=g.parentNode){if(g===c)return l(d,h);if(g===h)break}p=s(c,h)||c,m=s(d,h)||d,l(c,p,!0),y=a(p==c?p:p.nextSibling,"nextSibling",m==d?m.nextSibling:m),y.length&&r(o(y)),l(d,m)},this.split=function(e){function t(e,t){return e.splitText(t)}var n=e.startContainer,r=e.startOffset,i=e.endContainer,o=e.endOffset;return n==i&&3==n.nodeType?r>0&&r<n.nodeValue.length&&(i=t(n,r),n=i.previousSibling,o>r?(o-=r,n=i=t(i,o).previousSibling,o=i.nodeValue.length,r=0):o=0):(3==n.nodeType&&r>0&&r<n.nodeValue.length&&(n=t(n,r),r=0),3==i.nodeType&&o>0&&o<i.nodeValue.length&&(i=t(i,o).previousSibling,o=i.nodeValue.length)),{startContainer:n,startOffset:r,endContainer:i,endOffset:o}},this.normalize=function(n){function r(r){function a(n,r){for(var i=new t(n,e.getParent(n.parentNode,e.isBlock)||f);n=i[r?"prev":"next"]();)if("BR"===n.nodeName)return!0}function s(e,t){return e.previousSibling&&e.previousSibling.nodeName==t}function l(n,r){var a,s,l;if(r=r||c,l=e.getParent(r.parentNode,e.isBlock)||f,n&&"BR"==r.nodeName&&g&&e.isEmpty(l))return c=r.parentNode,u=e.nodeIndex(r),void(i=!0);for(a=new t(r,l);h=a[n?"prev":"next"]();){if("false"===e.getContentEditableParent(h))return;if(3===h.nodeType&&h.nodeValue.length>0)return c=h,u=n?h.nodeValue.length:0,void(i=!0);if(e.isBlock(h)||p[h.nodeName.toLowerCase()])return;s=h}o&&s&&(c=s,i=!0,u=0)}var c,u,d,f=e.getRoot(),h,p,m,g;if(c=n[(r?"start":"end")+"Container"],u=n[(r?"start":"end")+"Offset"],g=1==c.nodeType&&u===c.childNodes.length,p=e.schema.getNonEmptyElements(),m=r,1==c.nodeType&&u>c.childNodes.length-1&&(m=!1),9===c.nodeType&&(c=e.getRoot(),u=0),c===f){if(m&&(h=c.childNodes[u>0?u-1:0],h&&(p[h.nodeName]||"TABLE"==h.nodeName)))return;if(c.hasChildNodes()&&(u=Math.min(!m&&u>0?u-1:u,c.childNodes.length-1),c=c.childNodes[u],u=0,c.hasChildNodes()&&!/TABLE/.test(c.nodeName))){h=c,d=new t(c,f);do{if(3===h.nodeType&&h.nodeValue.length>0){u=m?0:h.nodeValue.length,c=h,i=!0;break}if(p[h.nodeName.toLowerCase()]){u=e.nodeIndex(h),c=h.parentNode,"IMG"!=h.nodeName||m||u++,i=!0;break}}while(h=m?d.next():d.prev())}}o&&(3===c.nodeType&&0===u&&l(!0),1===c.nodeType&&(h=c.childNodes[u],h||(h=c.childNodes[u-1]),!h||"BR"!==h.nodeName||s(h,"A")||a(h)||a(h,!0)||l(!0,h))),m&&!o&&3===c.nodeType&&u===c.nodeValue.length&&l(!1),i&&n["set"+(r?"Start":"End")](c,u)}var i,o;return o=n.collapsed,r(!0),o||r(),i&&o&&n.collapse(!0),i}}var i=e.each;return r.compareRanges=function(e,t){if(e&&t){if(!e.item&&!e.duplicate)return e.startContainer==t.startContainer&&e.startOffset==t.startOffset;if(e.item&&t.item&&e.item(0)===t.item(0))return!0;if(e.isEqual&&t.isEqual&&t.isEqual(e))return!0}return!1},r.getCaretRangeFromPoint=function(e,t,n){var r,i;if(n.caretPositionFromPoint)i=n.caretPositionFromPoint(e,t),r=n.createRange(),r.setStart(i.offsetNode,i.offset),r.collapse(!0);else if(n.caretRangeFromPoint)r=n.caretRangeFromPoint(e,t);else if(n.body.createTextRange){r=n.body.createTextRange();try{r.moveToPoint(e,t),r.collapse(!0)}catch(o){r.collapse(t<n.body.clientHeight)}}return r},r.getNode=function(e,t){return 1==e.nodeType&&e.hasChildNodes()&&(t>=e.childNodes.length&&(t=e.childNodes.length-1),e=e.childNodes[t]),e},r}),r(w,[C,u],function(e,t){return function(n){function r(e){var t,r;if(r=n.$(e).parentsUntil(n.getBody()).add(e),r.length===o.length){for(t=r.length;t>=0&&r[t]===o[t];t--);if(-1===t)return o=r,!0}return o=r,!1}var i,o=[];"onselectionchange"in n.getDoc()||n.on("NodeChange Click MouseUp KeyUp Focus",function(t){var r,o;r=n.selection.getRng(),o={startContainer:r.startContainer,startOffset:r.startOffset,endContainer:r.endContainer,endOffset:r.endOffset},"nodechange"!=t.type&&e.compareRanges(o,i)||n.fire("SelectionChange"),i=o}),n.on("contextmenu",function(){n.fire("SelectionChange")}),n.on("SelectionChange",function(){var e=n.selection.getStart(!0);(t.range||!n.selection.isCollapsed())&&!r(e)&&n.dom.isChildOf(e,n.getBody())&&n.nodeChanged({selectionChange:!0})}),n.on("MouseUp",function(e){e.isDefaultPrevented()||("IMG"==n.selection.getNode().nodeName?setTimeout(function(){n.nodeChanged()},0):n.nodeChanged())}),this.nodeChanged=function(e){var t=n.selection,r,i,o;n.initialized&&t&&!n.settings.disable_nodechange&&!n.settings.readonly&&(o=n.getBody(),r=t.getStart()||o,r=r.ownerDocument!=n.getDoc()?n.getBody():r,"IMG"==r.nodeName&&t.isCollapsed()&&(r=r.parentNode),i=[],n.dom.getParent(r,function(e){return e===o?!0:void i.push(e)}),e=e||{},e.element=r,e.parents=i,n.fire("NodeChange",e))}}}),r(_,[],function(){function e(e,t,n){var r,i,o=n?"lastChild":"firstChild",a=n?"prev":"next";if(e[o])return e[o];if(e!==t){if(r=e[a])return r;for(i=e.parent;i&&i!==t;i=i.parent)if(r=i[a])return r}}function t(e,t){this.name=e,this.type=t,1===t&&(this.attributes=[],this.attributes.map={})}var n=/^[ \t\r\n]*$/,r={"#text":3,"#comment":8,"#cdata":4,"#pi":7,"#doctype":10,"#document-fragment":11};return t.prototype={replace:function(e){var t=this;return e.parent&&e.remove(),t.insert(e,t),t.remove(),t},attr:function(e,t){var n=this,r,i,o;if("string"!=typeof e){for(i in e)n.attr(i,e[i]);return n}if(r=n.attributes){if(t!==o){if(null===t){if(e in r.map)for(delete r.map[e],i=r.length;i--;)if(r[i].name===e)return r=r.splice(i,1),n;return n}if(e in r.map){for(i=r.length;i--;)if(r[i].name===e){r[i].value=t;break}}else r.push({name:e,value:t});return r.map[e]=t,n}return r.map[e]}},clone:function(){var e=this,n=new t(e.name,e.type),r,i,o,a,s;if(o=e.attributes){for(s=[],s.map={},r=0,i=o.length;i>r;r++)a=o[r],"id"!==a.name&&(s[s.length]={name:a.name,value:a.value},s.map[a.name]=a.value);n.attributes=s}return n.value=e.value,n.shortEnded=e.shortEnded,n},wrap:function(e){var t=this;return t.parent.insert(e,t),e.append(t),t},unwrap:function(){var e=this,t,n;for(t=e.firstChild;t;)n=t.next,e.insert(t,e,!0),t=n;e.remove()},remove:function(){var e=this,t=e.parent,n=e.next,r=e.prev;return t&&(t.firstChild===e?(t.firstChild=n,n&&(n.prev=null)):r.next=n,t.lastChild===e?(t.lastChild=r,r&&(r.next=null)):n.prev=r,e.parent=e.next=e.prev=null),e},append:function(e){var t=this,n;return e.parent&&e.remove(),n=t.lastChild,n?(n.next=e,e.prev=n,t.lastChild=e):t.lastChild=t.firstChild=e,e.parent=t,e},insert:function(e,t,n){var r;return e.parent&&e.remove(),r=t.parent||this,n?(t===r.firstChild?r.firstChild=e:t.prev.next=e,e.prev=t.prev,e.next=t,t.prev=e):(t===r.lastChild?r.lastChild=e:t.next.prev=e,e.next=t.next,e.prev=t,t.next=e),e.parent=r,e},getAll:function(t){var n=this,r,i=[];for(r=n.firstChild;r;r=e(r,n))r.name===t&&i.push(r);return i},empty:function(){var t=this,n,r,i;if(t.firstChild){for(n=[],i=t.firstChild;i;i=e(i,t))n.push(i);for(r=n.length;r--;)i=n[r],i.parent=i.firstChild=i.lastChild=i.next=i.prev=null}return t.firstChild=t.lastChild=null,t},isEmpty:function(t){var r=this,i=r.firstChild,o,a;if(i)do{if(1===i.type){if(i.attributes.map["data-mce-bogus"])continue;if(t[i.name])return!1;for(o=i.attributes.length;o--;)if(a=i.attributes[o].name,"name"===a||0===a.indexOf("data-mce-bookmark"))return!1}if(8===i.type)return!1;if(3===i.type&&!n.test(i.value))return!1}while(i=e(i,r));return!0},walk:function(t){return e(this,null,t)}},t.create=function(e,n){var i,o;if(i=new t(e,r[e]||1),n)for(o in n)i.attr(o,n[o]);return i},t}),r(E,[d],function(e){function t(e,t){return e?e.split(t||" "):[]}function n(e){function n(e,n,r){function i(e,t){var n={},r,i;for(r=0,i=e.length;i>r;r++)n[e[r]]=t||{};return n}var s,c,u,d=arguments;for(r=r||[],n=n||"","string"==typeof r&&(r=t(r)),c=3;c<d.length;c++)"string"==typeof d[c]&&(d[c]=t(d[c])),r.push.apply(r,d[c]);for(e=t(e),s=e.length;s--;)u=[].concat(l,t(n)),a[e[s]]={attributes:i(u),attributesOrder:u,children:i(r,o)}}function r(e,n){var r,i,o,s;for(e=t(e),r=e.length,n=t(n);r--;)for(i=a[e[r]],o=0,s=n.length;s>o;o++)i.attributes[n[o]]={},i.attributesOrder.push(n[o])}var a={},l,c,u,d,f,h;return i[e]?i[e]:(l=t("id accesskey class dir lang style tabindex title"),c=t("address blockquote div dl fieldset form h1 h2 h3 h4 h5 h6 hr menu ol p pre table ul"),u=t("a abbr b bdo br button cite code del dfn em embed i iframe img input ins kbd label map noscript object q s samp script select small span strong sub sup textarea u var #text #comment"),"html4"!=e&&(l.push.apply(l,t("contenteditable contextmenu draggable dropzone hidden spellcheck translate")),c.push.apply(c,t("article aside details dialog figure header footer hgroup section nav")),u.push.apply(u,t("audio canvas command datalist mark meter output progress time wbr video ruby bdi keygen"))),"html5-strict"!=e&&(l.push("xml:lang"),h=t("acronym applet basefont big font strike tt"),u.push.apply(u,h),s(h,function(e){n(e,"",u)}),f=t("center dir isindex noframes"),c.push.apply(c,f),d=[].concat(c,u),s(f,function(e){n(e,"",d)})),d=d||[].concat(c,u),n("html","manifest","head body"),n("head","","base command link meta noscript script style title"),n("title hr noscript br"),n("base","href target"),n("link","href rel media hreflang type sizes hreflang"),n("meta","name http-equiv content charset"),n("style","media type scoped"),n("script","src async defer type charset"),n("body","onafterprint onbeforeprint onbeforeunload onblur onerror onfocus onhashchange onload onmessage onoffline ononline onpagehide onpageshow onpopstate onresize onscroll onstorage onunload",d),n("address dt dd div caption","",d),n("h1 h2 h3 h4 h5 h6 pre p abbr code var samp kbd sub sup i b u bdo span legend em strong small s cite dfn","",u),n("blockquote","cite",d),n("ol","reversed start type","li"),n("ul","","li"),n("li","value",d),n("dl","","dt dd"),n("a","href target rel media hreflang type",u),n("q","cite",u),n("ins del","cite datetime",d),n("img","src sizes srcset alt usemap ismap width height"),n("iframe","src name width height",d),n("embed","src type width height"),n("object","data type typemustmatch name usemap form width height",d,"param"),n("param","name value"),n("map","name",d,"area"),n("area","alt coords shape href target rel media hreflang type"),n("table","border","caption colgroup thead tfoot tbody tr"+("html4"==e?" col":"")),n("colgroup","span","col"),n("col","span"),n("tbody thead tfoot","","tr"),n("tr","","td th"),n("td","colspan rowspan headers",d),n("th","colspan rowspan headers scope abbr",d),n("form","accept-charset action autocomplete enctype method name novalidate target",d),n("fieldset","disabled form name",d,"legend"),n("label","form for",u),n("input","accept alt autocomplete checked dirname disabled form formaction formenctype formmethod formnovalidate formtarget height list max maxlength min multiple name pattern readonly required size src step type value width"),n("button","disabled form formaction formenctype formmethod formnovalidate formtarget name type value","html4"==e?d:u),n("select","disabled form multiple name required size","option optgroup"),n("optgroup","disabled label","option"),n("option","disabled label selected value"),n("textarea","cols dirname disabled form maxlength name readonly required rows wrap"),n("menu","type label",d,"li"),n("noscript","",d),"html4"!=e&&(n("wbr"),n("ruby","",u,"rt rp"),n("figcaption","",d),n("mark rt rp summary bdi","",u),n("canvas","width height",d),n("video","src crossorigin poster preload autoplay mediagroup loop muted controls width height buffered",d,"track source"),n("audio","src crossorigin preload autoplay mediagroup loop muted controls buffered volume",d,"track source"),n("picture","","img source"),n("source","src srcset type media sizes"),n("track","kind src srclang label default"),n("datalist","",u,"option"),n("article section nav aside header footer","",d),n("hgroup","","h1 h2 h3 h4 h5 h6"),n("figure","",d,"figcaption"),n("time","datetime",u),n("dialog","open",d),n("command","type label icon disabled checked radiogroup command"),n("output","for form name",u),n("progress","value max",u),n("meter","value min max low high optimum",u),n("details","open",d,"summary"),n("keygen","autofocus challenge disabled form keytype name")),"html5-strict"!=e&&(r("script","language xml:space"),r("style","xml:space"),r("object","declare classid code codebase codetype archive standby align border hspace vspace"),r("embed","align name hspace vspace"),r("param","valuetype type"),r("a","charset name rev shape coords"),r("br","clear"),r("applet","codebase archive code object alt name width height align hspace vspace"),r("img","name longdesc align border hspace vspace"),r("iframe","longdesc frameborder marginwidth marginheight scrolling align"),r("font basefont","size color face"),r("input","usemap align"),r("select","onchange"),r("textarea"),r("h1 h2 h3 h4 h5 h6 div p legend caption","align"),r("ul","type compact"),r("li","type"),r("ol dl menu dir","compact"),r("pre","width xml:space"),r("hr","align noshade size width"),r("isindex","prompt"),r("table","summary width frame rules cellspacing cellpadding align bgcolor"),r("col","width align char charoff valign"),r("colgroup","width align char charoff valign"),r("thead","align char charoff valign"),r("tr","align char charoff valign bgcolor"),r("th","axis align char charoff valign nowrap bgcolor width height"),r("form","accept"),r("td","abbr axis scope align char charoff valign nowrap bgcolor width height"),r("tfoot","align char charoff valign"),r("tbody","align char charoff valign"),r("area","nohref"),r("body","background bgcolor text link vlink alink")),"html4"!=e&&(r("input button select textarea","autofocus"),r("input textarea","placeholder"),
4
+ r("a","download"),r("link script img","crossorigin"),r("iframe","sandbox seamless allowfullscreen")),s(t("a form meter progress dfn"),function(e){a[e]&&delete a[e].children[e]}),delete a.caption.children.table,delete a.script,i[e]=a,a)}function r(e,t){var n;return e&&(n={},"string"==typeof e&&(e={"*":e}),s(e,function(e,r){n[r]=n[r.toUpperCase()]="map"==t?a(e,/[, ]/):c(e,/[, ]/)})),n}var i={},o={},a=e.makeMap,s=e.each,l=e.extend,c=e.explode,u=e.inArray;return function(e){function o(t,n,r){var o=e[t];return o?o=a(o,/[, ]/,a(o.toUpperCase(),/[, ]/)):(o=i[t],o||(o=a(n," ",a(n.toUpperCase()," ")),o=l(o,r),i[t]=o)),o}function d(e){return new RegExp("^"+e.replace(/([?+*])/g,".$1")+"$")}function f(e){var n,r,i,o,s,l,c,f,h,p,m,g,v,b,C,w,_,E,N,k=/^([#+\-])?([^\[!\/]+)(?:\/([^\[!]+))?(?:(!?)\[([^\]]+)\])?$/,S=/^([!\-])?(\w+::\w+|[^=:<]+)?(?:([=:<])(.*))?$/,T=/[*?+]/;if(e)for(e=t(e,","),y["@"]&&(w=y["@"].attributes,_=y["@"].attributesOrder),n=0,r=e.length;r>n;n++)if(s=k.exec(e[n])){if(b=s[1],h=s[2],C=s[3],f=s[5],g={},v=[],l={attributes:g,attributesOrder:v},"#"===b&&(l.paddEmpty=!0),"-"===b&&(l.removeEmpty=!0),"!"===s[4]&&(l.removeEmptyAttrs=!0),w){for(E in w)g[E]=w[E];v.push.apply(v,_)}if(f)for(f=t(f,"|"),i=0,o=f.length;o>i;i++)if(s=S.exec(f[i])){if(c={},m=s[1],p=s[2].replace(/::/g,":"),b=s[3],N=s[4],"!"===m&&(l.attributesRequired=l.attributesRequired||[],l.attributesRequired.push(p),c.required=!0),"-"===m){delete g[p],v.splice(u(v,p),1);continue}b&&("="===b&&(l.attributesDefault=l.attributesDefault||[],l.attributesDefault.push({name:p,value:N}),c.defaultValue=N),":"===b&&(l.attributesForced=l.attributesForced||[],l.attributesForced.push({name:p,value:N}),c.forcedValue=N),"<"===b&&(c.validValues=a(N,"?"))),T.test(p)?(l.attributePatterns=l.attributePatterns||[],c.pattern=d(p),l.attributePatterns.push(c)):(g[p]||v.push(p),g[p]=c)}w||"@"!=h||(w=g,_=v),C&&(l.outputName=h,y[C]=l),T.test(h)?(l.pattern=d(h),x.push(l)):y[h]=l}}function h(e){y={},x=[],f(e),s(_,function(e,t){b[t]=e.children})}function p(e){var n=/^(~)?(.+)$/;e&&(i.text_block_elements=i.block_elements=null,s(t(e,","),function(e){var t=n.exec(e),r="~"===t[1],i=r?"span":"div",o=t[2];if(b[o]=b[i],H[o]=i,r||(R[o.toUpperCase()]={},R[o]={}),!y[o]){var a=y[i];a=l({},a),delete a.removeEmptyAttrs,delete a.removeEmpty,y[o]=a}s(b,function(e,t){e[i]&&(b[t]=e=l({},b[t]),e[o]=e[i])})}))}function m(e){var n=/^([+\-]?)(\w+)\[([^\]]+)\]$/;e&&s(t(e,","),function(e){var r=n.exec(e),i,o;r&&(o=r[1],i=o?b[r[2]]:b[r[2]]={"#comment":{}},i=b[r[2]],s(t(r[3],"|"),function(e){"-"===o?(b[r[2]]=i=l({},b[r[2]]),delete i[e]):i[e]={}}))})}function g(e){var t=y[e],n;if(t)return t;for(n=x.length;n--;)if(t=x[n],t.pattern.test(e))return t}var v=this,y={},b={},x=[],C,w,_,E,N,k,S,T,R,A,B,D,M,H={},L={};e=e||{},_=n(e.schema),e.verify_html===!1&&(e.valid_elements="*[*]"),C=r(e.valid_styles),w=r(e.invalid_styles,"map"),T=r(e.valid_classes,"map"),E=o("whitespace_elements","pre script noscript style textarea video audio iframe object"),N=o("self_closing_elements","colgroup dd dt li option p td tfoot th thead tr"),k=o("short_ended_elements","area base basefont br col frame hr img input isindex link meta param embed source wbr track"),S=o("boolean_attributes","checked compact declare defer disabled ismap multiple nohref noresize noshade nowrap readonly selected autoplay loop controls"),A=o("non_empty_elements","td th iframe video audio object script",k),B=o("move_caret_before_on_enter_elements","table",A),D=o("text_block_elements","h1 h2 h3 h4 h5 h6 p div address pre form blockquote center dir fieldset header footer article section hgroup aside nav figure"),R=o("block_elements","hr table tbody thead tfoot th tr td li ol ul caption dl dt dd noscript menu isindex option datalist select optgroup",D),M=o("text_inline_elements","span strong b em i font strike u var cite dfn code mark q sup sub samp"),s((e.special||"script noscript style textarea").split(" "),function(e){L[e]=new RegExp("</"+e+"[^>]*>","gi")}),e.valid_elements?h(e.valid_elements):(s(_,function(e,t){y[t]={attributes:e.attributes,attributesOrder:e.attributesOrder},b[t]=e.children}),"html5"!=e.schema&&s(t("strong/b em/i"),function(e){e=t(e,"/"),y[e[1]].outputName=e[0]}),y.img.attributesDefault=[{name:"alt",value:""}],s(t("ol ul sub sup blockquote span font a table tbody tr strong em b i"),function(e){y[e]&&(y[e].removeEmpty=!0)}),s(t("p h1 h2 h3 h4 h5 h6 th td pre div address caption"),function(e){y[e].paddEmpty=!0}),s(t("span"),function(e){y[e].removeEmptyAttrs=!0})),p(e.custom_elements),m(e.valid_children),f(e.extended_valid_elements),m("+ol[ul|ol],+ul[ul|ol]"),e.invalid_elements&&s(c(e.invalid_elements),function(e){y[e]&&delete y[e]}),g("span")||f("span[!data-mce-type|*]"),v.children=b,v.getValidStyles=function(){return C},v.getInvalidStyles=function(){return w},v.getValidClasses=function(){return T},v.getBoolAttrs=function(){return S},v.getBlockElements=function(){return R},v.getTextBlockElements=function(){return D},v.getTextInlineElements=function(){return M},v.getShortEndedElements=function(){return k},v.getSelfClosingElements=function(){return N},v.getNonEmptyElements=function(){return A},v.getMoveCaretBeforeOnEnterElements=function(){return B},v.getWhiteSpaceElements=function(){return E},v.getSpecialElements=function(){return L},v.isValidChild=function(e,t){var n=b[e];return!(!n||!n[t])},v.isValid=function(e,t){var n,r,i=g(e);if(i){if(!t)return!0;if(i.attributes[t])return!0;if(n=i.attributePatterns)for(r=n.length;r--;)if(n[r].pattern.test(e))return!0}return!1},v.getElementRule=g,v.getCustomElements=function(){return H},v.addValidElements=f,v.setValidElements=h,v.addCustomElements=p,v.addValidChildren=m,v.elements=y}}),r(N,[E,g,d],function(e,t,n){function r(e,t,n){var r=1,i,o,a,s;for(s=e.getShortEndedElements(),a=/<([!?\/])?([A-Za-z0-9\-_\:\.]+)((?:\s+[^"\'>]+(?:(?:"[^"]*")|(?:\'[^\']*\')|[^>]*))*|\/|\s+)>/g,a.lastIndex=i=n;o=a.exec(t);){if(i=a.lastIndex,"/"===o[1])r--;else if(!o[1]){if(o[2]in s)continue;r++}if(0===r)break}return i}function i(i,a){function s(){}var l=this;i=i||{},l.schema=a=a||new e,i.fix_self_closing!==!1&&(i.fix_self_closing=!0),o("comment cdata text start end pi doctype".split(" "),function(e){e&&(l[e]=i[e]||s)}),l.parse=function(e){function o(e){var t,n;for(t=h.length;t--&&h[t].name!==e;);if(t>=0){for(n=h.length-1;n>=t;n--)e=h[n],e.valid&&l.end(e.name);h.length=t}}function s(e,t,n,r,o){var a,s,l=/[\s\u0000-\u001F]+/g;if(t=t.toLowerCase(),n=t in C?t:z(n||r||o||""),_&&!y&&0!==t.indexOf("data-")){if(a=T[t],!a&&R){for(s=R.length;s--&&(a=R[s],!a.pattern.test(t)););-1===s&&(a=null)}if(!a)return;if(a.validValues&&!(n in a.validValues))return}if(V[t]&&!i.allow_script_urls){var c=n.replace(l,"");try{c=decodeURIComponent(c)}catch(u){c=unescape(c)}if(U.test(c))return;if(!i.allow_html_data_urls&&$.test(c)&&!/^data:image\//i.test(c))return}p.map[t]=n,p.push({name:t,value:n})}var l=this,c,u=0,d,f,h=[],p,m,g,v,y,b,x,C,w,_,E,N,k,S,T,R,A,B,D,M,H,L,P,O,I,F=0,z=t.decode,W,V=n.makeMap("src,href,data,background,formaction,poster"),U=/((java|vb)script|mhtml):/i,$=/^data:/i;for(L=new RegExp("<(?:(?:!--([\\w\\W]*?)-->)|(?:!\\[CDATA\\[([\\w\\W]*?)\\]\\]>)|(?:!DOCTYPE([\\w\\W]*?)>)|(?:\\?([^\\s\\/<>]+) ?([\\w\\W]*?)[?/]>)|(?:\\/([^>]+)>)|(?:([A-Za-z0-9\\-_\\:\\.]+)((?:\\s+[^\"'>]+(?:(?:\"[^\"]*\")|(?:'[^']*')|[^>]*))*|\\/|\\s+)>))","g"),P=/([\w:\-]+)(?:\s*=\s*(?:(?:\"((?:[^\"])*)\")|(?:\'((?:[^\'])*)\')|([^>\s]+)))?/g,x=a.getShortEndedElements(),H=i.self_closing_elements||a.getSelfClosingElements(),C=a.getBoolAttrs(),_=i.validate,b=i.remove_internals,W=i.fix_self_closing,O=a.getSpecialElements();c=L.exec(e);){if(u<c.index&&l.text(z(e.substr(u,c.index-u))),d=c[6])d=d.toLowerCase(),":"===d.charAt(0)&&(d=d.substr(1)),o(d);else if(d=c[7]){if(d=d.toLowerCase(),":"===d.charAt(0)&&(d=d.substr(1)),w=d in x,W&&H[d]&&h.length>0&&h[h.length-1].name===d&&o(d),!_||(E=a.getElementRule(d))){if(N=!0,_&&(T=E.attributes,R=E.attributePatterns),(S=c[8])?(y=-1!==S.indexOf("data-mce-type"),y&&b&&(N=!1),p=[],p.map={},S.replace(P,s)):(p=[],p.map={}),_&&!y){if(A=E.attributesRequired,B=E.attributesDefault,D=E.attributesForced,M=E.removeEmptyAttrs,M&&!p.length&&(N=!1),D)for(m=D.length;m--;)k=D[m],v=k.name,I=k.value,"{$uid}"===I&&(I="mce_"+F++),p.map[v]=I,p.push({name:v,value:I});if(B)for(m=B.length;m--;)k=B[m],v=k.name,v in p.map||(I=k.value,"{$uid}"===I&&(I="mce_"+F++),p.map[v]=I,p.push({name:v,value:I}));if(A){for(m=A.length;m--&&!(A[m]in p.map););-1===m&&(N=!1)}if(k=p.map["data-mce-bogus"]){if("all"===k){u=r(a,e,L.lastIndex),L.lastIndex=u;continue}N=!1}}N&&l.start(d,p,w)}else N=!1;if(f=O[d]){f.lastIndex=u=c.index+c[0].length,(c=f.exec(e))?(N&&(g=e.substr(u,c.index-u)),u=c.index+c[0].length):(g=e.substr(u),u=e.length),N&&(g.length>0&&l.text(g,!0),l.end(d)),L.lastIndex=u;continue}w||(S&&S.indexOf("/")==S.length-1?N&&l.end(d):h.push({name:d,valid:N}))}else(d=c[1])?(">"===d.charAt(0)&&(d=" "+d),i.allow_conditional_comments||"[if"!==d.substr(0,3)||(d=" "+d),l.comment(d)):(d=c[2])?l.cdata(d):(d=c[3])?l.doctype(d):(d=c[4])&&l.pi(d,c[5]);u=c.index+c[0].length}for(u<e.length&&l.text(z(e.substr(u))),m=h.length-1;m>=0;m--)d=h[m],d.valid&&l.end(d.name)}}var o=n.each;return i.findEndTag=r,i}),r(k,[_,E,N,d],function(e,t,n,r){var i=r.makeMap,o=r.each,a=r.explode,s=r.extend;return function(r,l){function c(t){var n,r,o,a,s,c,d,f,h,p,m,g,v,y;for(m=i("tr,td,th,tbody,thead,tfoot,table"),p=l.getNonEmptyElements(),g=l.getTextBlockElements(),n=0;n<t.length;n++)if(r=t[n],r.parent&&!r.fixed)if(g[r.name]&&"li"==r.parent.name){for(v=r.next;v&&g[v.name];)v.name="li",v.fixed=!0,r.parent.insert(v,r.parent),v=v.next;r.unwrap(r)}else{for(a=[r],o=r.parent;o&&!l.isValidChild(o.name,r.name)&&!m[o.name];o=o.parent)a.push(o);if(o&&a.length>1){for(a.reverse(),s=c=u.filterNode(a[0].clone()),h=0;h<a.length-1;h++){for(l.isValidChild(c.name,a[h].name)?(d=u.filterNode(a[h].clone()),c.append(d)):d=c,f=a[h].firstChild;f&&f!=a[h+1];)y=f.next,d.append(f),f=y;c=d}s.isEmpty(p)?o.insert(r,a[0],!0):(o.insert(s,a[0],!0),o.insert(r,s)),o=a[0],(o.isEmpty(p)||o.firstChild===o.lastChild&&"br"===o.firstChild.name)&&o.empty().remove()}else if(r.parent){if("li"===r.name){if(v=r.prev,v&&("ul"===v.name||"ul"===v.name)){v.append(r);continue}if(v=r.next,v&&("ul"===v.name||"ul"===v.name)){v.insert(r,v.firstChild,!0);continue}r.wrap(u.filterNode(new e("ul",1)));continue}l.isValidChild(r.parent.name,"div")&&l.isValidChild("div",r.name)?r.wrap(u.filterNode(new e("div",1))):"style"===r.name||"script"===r.name?r.empty().remove():r.unwrap()}}}var u=this,d={},f=[],h={},p={};r=r||{},r.validate="validate"in r?r.validate:!0,r.root_name=r.root_name||"body",u.schema=l=l||new t,u.filterNode=function(e){var t,n,r;n in d&&(r=h[n],r?r.push(e):h[n]=[e]),t=f.length;for(;t--;)n=f[t].name,n in e.attributes.map&&(r=p[n],r?r.push(e):p[n]=[e]);return e},u.addNodeFilter=function(e,t){o(a(e),function(e){var n=d[e];n||(d[e]=n=[]),n.push(t)})},u.addAttributeFilter=function(e,t){o(a(e),function(e){var n;for(n=0;n<f.length;n++)if(f[n].name===e)return void f[n].callbacks.push(t);f.push({name:e,callbacks:[t]})})},u.parse=function(t,o){function a(){function e(e){e&&(t=e.firstChild,t&&3==t.type&&(t.value=t.value.replace(R,"")),t=e.lastChild,t&&3==t.type&&(t.value=t.value.replace(D,"")))}var t=y.firstChild,n,i;if(l.isValidChild(y.name,I.toLowerCase())){for(;t;)n=t.next,3==t.type||1==t.type&&"p"!==t.name&&!T[t.name]&&!t.attr("data-mce-type")?i?i.append(t):(i=u(I,1),i.attr(r.forced_root_block_attrs),y.insert(i,t),i.append(t)):(e(i),i=null),t=n;e(i)}}function u(t,n){var r=new e(t,n),i;return t in d&&(i=h[t],i?i.push(r):h[t]=[r]),r}function m(e){var t,n,r,i,o=l.getBlockElements();for(t=e.prev;t&&3===t.type;){if(r=t.value.replace(D,""),r.length>0)return void(t.value=r);if(n=t.next){if(3==n.type&&n.value.length){t=t.prev;continue}if(!o[n.name]&&"script"!=n.name&&"style"!=n.name){t=t.prev;continue}}i=t.prev,t.remove(),t=i}}function g(e){var t,n={};for(t in e)"li"!==t&&"p"!=t&&(n[t]=e[t]);return n}var v,y,b,x,C,w,_,E,N,k,S,T,R,A=[],B,D,M,H,L,P,O,I;if(o=o||{},h={},p={},T=s(i("script,style,head,html,body,title,meta,param"),l.getBlockElements()),O=l.getNonEmptyElements(),P=l.children,S=r.validate,I="forced_root_block"in o?o.forced_root_block:r.forced_root_block,L=l.getWhiteSpaceElements(),R=/^[ \t\r\n]+/,D=/[ \t\r\n]+$/,M=/[ \t\r\n]+/g,H=/^[ \t\r\n]+$/,v=new n({validate:S,allow_script_urls:r.allow_script_urls,allow_conditional_comments:r.allow_conditional_comments,self_closing_elements:g(l.getSelfClosingElements()),cdata:function(e){b.append(u("#cdata",4)).value=e},text:function(e,t){var n;B||(e=e.replace(M," "),b.lastChild&&T[b.lastChild.name]&&(e=e.replace(R,""))),0!==e.length&&(n=u("#text",3),n.raw=!!t,b.append(n).value=e)},comment:function(e){b.append(u("#comment",8)).value=e},pi:function(e,t){b.append(u(e,7)).value=t,m(b)},doctype:function(e){var t;t=b.append(u("#doctype",10)),t.value=e,m(b)},start:function(e,t,n){var r,i,o,a,s;if(o=S?l.getElementRule(e):{}){for(r=u(o.outputName||e,1),r.attributes=t,r.shortEnded=n,b.append(r),s=P[b.name],s&&P[r.name]&&!s[r.name]&&A.push(r),i=f.length;i--;)a=f[i].name,a in t.map&&(N=p[a],N?N.push(r):p[a]=[r]);T[e]&&m(r),n||(b=r),!B&&L[e]&&(B=!0)}},end:function(t){var n,r,i,o,a;if(r=S?l.getElementRule(t):{}){if(T[t]&&!B){if(n=b.firstChild,n&&3===n.type)if(i=n.value.replace(R,""),i.length>0)n.value=i,n=n.next;else for(o=n.next,n.remove(),n=o;n&&3===n.type;)i=n.value,o=n.next,(0===i.length||H.test(i))&&(n.remove(),n=o),n=o;if(n=b.lastChild,n&&3===n.type)if(i=n.value.replace(D,""),i.length>0)n.value=i,n=n.prev;else for(o=n.prev,n.remove(),n=o;n&&3===n.type;)i=n.value,o=n.prev,(0===i.length||H.test(i))&&(n.remove(),n=o),n=o}if(B&&L[t]&&(B=!1),(r.removeEmpty||r.paddEmpty)&&b.isEmpty(O))if(r.paddEmpty)b.empty().append(new e("#text","3")).value="\xa0";else if(!b.attributes.map.name&&!b.attributes.map.id)return a=b.parent,T[b.name]?b.empty().remove():b.unwrap(),void(b=a);b=b.parent}}},l),y=b=new e(o.context||r.root_name,11),v.parse(t),S&&A.length&&(o.context?o.invalid=!0:c(A)),I&&("body"==y.name||o.isRootContent)&&a(),!o.invalid){for(k in h){for(N=d[k],x=h[k],_=x.length;_--;)x[_].parent||x.splice(_,1);for(C=0,w=N.length;w>C;C++)N[C](x,k,o)}for(C=0,w=f.length;w>C;C++)if(N=f[C],N.name in p){for(x=p[N.name],_=x.length;_--;)x[_].parent||x.splice(_,1);for(_=0,E=N.callbacks.length;E>_;_++)N.callbacks[_](x,N.name,o)}}return y},r.remove_trailing_brs&&u.addNodeFilter("br",function(t){var n,r=t.length,i,o=s({},l.getBlockElements()),a=l.getNonEmptyElements(),c,u,d,f,h,p;for(o.body=1,n=0;r>n;n++)if(i=t[n],c=i.parent,o[i.parent.name]&&i===c.lastChild){for(d=i.prev;d;){if(f=d.name,"span"!==f||"bookmark"!==d.attr("data-mce-type")){if("br"!==f)break;if("br"===f){i=null;break}}d=d.prev}i&&(i.remove(),c.isEmpty(a)&&(h=l.getElementRule(c.name),h&&(h.removeEmpty?c.remove():h.paddEmpty&&(c.empty().append(new e("#text",3)).value="\xa0"))))}else{for(u=i;c&&c.firstChild===u&&c.lastChild===u&&(u=c,!o[c.name]);)c=c.parent;u===c&&(p=new e("#text",3),p.value="\xa0",i.replace(p))}}),r.allow_html_in_named_anchor||u.addAttributeFilter("id,name",function(e){for(var t=e.length,n,r,i,o;t--;)if(o=e[t],"a"===o.name&&o.firstChild&&!o.attr("href")){i=o.parent,n=o.lastChild;do r=n.prev,i.insert(n,o),n=r;while(n)}}),r.validate&&l.getValidClasses()&&u.addAttributeFilter("class",function(e){for(var t=e.length,n,r,i,o,a,s=l.getValidClasses(),c,u;t--;){for(n=e[t],r=n.attr("class").split(" "),a="",i=0;i<r.length;i++)o=r[i],u=!1,c=s["*"],c&&c[o]&&(u=!0),c=s[n.name],!u&&c&&c[o]&&(u=!0),u&&(a&&(a+=" "),a+=o);a.length||(a=null),n.attr("class",a)}})}}),r(S,[g,d],function(e,t){var n=t.makeMap;return function(t){var r=[],i,o,a,s,l;return t=t||{},i=t.indent,o=n(t.indent_before||""),a=n(t.indent_after||""),s=e.getEncodeFunc(t.entity_encoding||"raw",t.entities),l="html"==t.element_format,{start:function(e,t,n){var c,u,d,f;if(i&&o[e]&&r.length>0&&(f=r[r.length-1],f.length>0&&"\n"!==f&&r.push("\n")),r.push("<",e),t)for(c=0,u=t.length;u>c;c++)d=t[c],r.push(" ",d.name,'="',s(d.value,!0),'"');!n||l?r[r.length]=">":r[r.length]=" />",n&&i&&a[e]&&r.length>0&&(f=r[r.length-1],f.length>0&&"\n"!==f&&r.push("\n"))},end:function(e){var t;r.push("</",e,">"),i&&a[e]&&r.length>0&&(t=r[r.length-1],t.length>0&&"\n"!==t&&r.push("\n"))},text:function(e,t){e.length>0&&(r[r.length]=t?e:s(e))},cdata:function(e){r.push("<![CDATA[",e,"]]>")},comment:function(e){r.push("<!--",e,"-->")},pi:function(e,t){t?r.push("<?",e," ",s(t),"?>"):r.push("<?",e,"?>"),i&&r.push("\n")},doctype:function(e){r.push("<!DOCTYPE",e,">",i?"\n":"")},reset:function(){r.length=0},getContent:function(){return r.join("").replace(/\n$/,"")}}}}),r(T,[S,E],function(e,t){return function(n,r){var i=this,o=new e(n);n=n||{},n.validate="validate"in n?n.validate:!0,i.schema=r=r||new t,i.writer=o,i.serialize=function(e){function t(e){var n=i[e.type],s,l,c,u,d,f,h,p,m;if(n)n(e);else{if(s=e.name,l=e.shortEnded,c=e.attributes,a&&c&&c.length>1){for(f=[],f.map={},m=r.getElementRule(e.name),h=0,p=m.attributesOrder.length;p>h;h++)u=m.attributesOrder[h],u in c.map&&(d=c.map[u],f.map[u]=d,f.push({name:u,value:d}));for(h=0,p=c.length;p>h;h++)u=c[h].name,u in f.map||(d=c.map[u],f.map[u]=d,f.push({name:u,value:d}));c=f}if(o.start(e.name,c,l),!l){if(e=e.firstChild)do t(e);while(e=e.next);o.end(s)}}}var i,a;return a=n.validate,i={3:function(e){o.text(e.value,e.raw)},8:function(e){o.comment(e.value)},7:function(e){o.pi(e.name,e.value)},10:function(e){o.doctype(e.value)},4:function(e){o.cdata(e.value)},11:function(e){if(e=e.firstChild)do t(e);while(e=e.next)}},o.reset(),1!=e.type||n.inner?i[11](e):t(e),o.getContent()}}}),r(R,[y,k,g,T,_,E,u,d],function(e,t,n,r,i,o,a,s){var l=s.each,c=s.trim,u=e.DOM;return function(e,i){var s,d,f;return i&&(s=i.dom,d=i.schema),s=s||u,d=d||new o(e),e.entity_encoding=e.entity_encoding||"named",e.remove_trailing_brs="remove_trailing_brs"in e?e.remove_trailing_brs:!0,f=new t(e,d),f.addAttributeFilter("data-mce-tabindex",function(e,t){for(var n=e.length,r;n--;)r=e[n],r.attr("tabindex",r.attributes.map["data-mce-tabindex"]),r.attr(t,null)}),f.addAttributeFilter("src,href,style",function(t,n){for(var r=t.length,i,o,a="data-mce-"+n,l=e.url_converter,c=e.url_converter_scope,u;r--;)i=t[r],o=i.attributes.map[a],o!==u?(i.attr(n,o.length>0?o:null),i.attr(a,null)):(o=i.attributes.map[n],"style"===n?o=s.serializeStyle(s.parseStyle(o),i.name):l&&(o=l.call(c,o,n,i.name)),i.attr(n,o.length>0?o:null))}),f.addAttributeFilter("class",function(e){for(var t=e.length,n,r;t--;)n=e[t],r=n.attr("class"),r&&(r=n.attr("class").replace(/(?:^|\s)mce-item-\w+(?!\S)/g,""),n.attr("class",r.length>0?r:null))}),f.addAttributeFilter("data-mce-type",function(e,t,n){for(var r=e.length,i;r--;)i=e[r],"bookmark"!==i.attributes.map["data-mce-type"]||n.cleanup||i.remove()}),f.addNodeFilter("noscript",function(e){for(var t=e.length,r;t--;)r=e[t].firstChild,r&&(r.value=n.decode(r.value))}),f.addNodeFilter("script,style",function(e,t){function n(e){return e.replace(/(<!--\[CDATA\[|\]\]-->)/g,"\n").replace(/^[\r\n]*|[\r\n]*$/g,"").replace(/^\s*((<!--)?(\s*\/\/)?\s*<!\[CDATA\[|(<!--\s*)?\/\*\s*<!\[CDATA\[\s*\*\/|(\/\/)?\s*<!--|\/\*\s*<!--\s*\*\/)\s*[\r\n]*/gi,"").replace(/\s*(\/\*\s*\]\]>\s*\*\/(-->)?|\s*\/\/\s*\]\]>(-->)?|\/\/\s*(-->)?|\]\]>|\/\*\s*-->\s*\*\/|\s*-->\s*)\s*$/g,"")}for(var r=e.length,i,o,a;r--;)i=e[r],o=i.firstChild?i.firstChild.value:"","script"===t?(a=i.attr("type"),a&&i.attr("type","mce-no/type"==a?null:a.replace(/^mce\-/,"")),o.length>0&&(i.firstChild.value="// <![CDATA[\n"+n(o)+"\n// ]]>")):o.length>0&&(i.firstChild.value="<!--\n"+n(o)+"\n-->")}),f.addNodeFilter("#comment",function(e){for(var t=e.length,n;t--;)n=e[t],0===n.value.indexOf("[CDATA[")?(n.name="#cdata",n.type=4,n.value=n.value.replace(/^\[CDATA\[|\]\]$/g,"")):0===n.value.indexOf("mce:protected ")&&(n.name="#text",n.type=3,n.raw=!0,n.value=unescape(n.value).substr(14))}),f.addNodeFilter("xml:namespace,input",function(e,t){for(var n=e.length,r;n--;)r=e[n],7===r.type?r.remove():1===r.type&&("input"!==t||"type"in r.attributes.map||r.attr("type","text"))}),e.fix_list_elements&&f.addNodeFilter("ul,ol",function(e){for(var t=e.length,n,r;t--;)n=e[t],r=n.parent,("ul"===r.name||"ol"===r.name)&&n.prev&&"li"===n.prev.name&&n.prev.append(n)}),f.addAttributeFilter("data-mce-src,data-mce-href,data-mce-style,data-mce-selected,data-mce-expando,data-mce-type,data-mce-resize",function(e,t){for(var n=e.length;n--;)e[n].attr(t,null)}),{schema:d,addNodeFilter:f.addNodeFilter,addAttributeFilter:f.addAttributeFilter,serialize:function(t,n){var i=this,o,u,h,p,m;return a.ie&&s.select("script,style,select,map").length>0?(m=t.innerHTML,t=t.cloneNode(!1),s.setHTML(t,m)):t=t.cloneNode(!0),o=t.ownerDocument.implementation,o.createHTMLDocument&&(u=o.createHTMLDocument(""),l("BODY"==t.nodeName?t.childNodes:[t],function(e){u.body.appendChild(u.importNode(e,!0))}),t="BODY"!=t.nodeName?u.body.firstChild:u.body,h=s.doc,s.doc=u),n=n||{},n.format=n.format||"html",n.selection&&(n.forced_root_block=""),n.no_events||(n.node=t,i.onPreProcess(n)),p=new r(e,d),n.content=p.serialize(f.parse(c(n.getInner?t.innerHTML:s.getOuterHTML(t)),n)),n.cleanup||(n.content=n.content.replace(/\uFEFF/g,"")),n.no_events||i.onPostProcess(n),h&&(s.doc=h),n.node=null,n.content},addRules:function(e){d.addValidElements(e)},setRules:function(e){d.setValidElements(e)},onPreProcess:function(e){i&&i.fire("PreProcess",e)},onPostProcess:function(e){i&&i.fire("PostProcess",e)}}}}),r(A,[],function(){function e(e){function t(t,n){var r,i=0,o,a,s,l,c,u,d=-1,f;if(r=t.duplicate(),r.collapse(n),f=r.parentElement(),f.ownerDocument===e.dom.doc){for(;"false"===f.contentEditable;)f=f.parentNode;if(!f.hasChildNodes())return{node:f,inside:1};for(s=f.children,o=s.length-1;o>=i;)if(u=Math.floor((i+o)/2),l=s[u],r.moveToElementText(l),d=r.compareEndPoints(n?"StartToStart":"EndToEnd",t),d>0)o=u-1;else{if(!(0>d))return{node:l};i=u+1}if(0>d)for(l?r.collapse(!1):(r.moveToElementText(f),r.collapse(!0),l=f,a=!0),c=0;0!==r.compareEndPoints(n?"StartToStart":"StartToEnd",t)&&0!==r.move("character",1)&&f==r.parentElement();)c++;else for(r.collapse(!0),c=0;0!==r.compareEndPoints(n?"StartToStart":"StartToEnd",t)&&0!==r.move("character",-1)&&f==r.parentElement();)c++;return{node:l,position:d,offset:c,inside:a}}}function n(){function n(e){var n=t(o,e),r,i,s=0,l,c,u;if(r=n.node,i=n.offset,n.inside&&!r.hasChildNodes())return void a[e?"setStart":"setEnd"](r,0);if(i===c)return void a[e?"setStartBefore":"setEndAfter"](r);if(n.position<0){if(l=n.inside?r.firstChild:r.nextSibling,!l)return void a[e?"setStartAfter":"setEndAfter"](r);if(!i)return void(3==l.nodeType?a[e?"setStart":"setEnd"](l,0):a[e?"setStartBefore":"setEndBefore"](l));for(;l;){if(3==l.nodeType&&(u=l.nodeValue,s+=u.length,s>=i)){r=l,s-=i,s=u.length-s;break}l=l.nextSibling}}else{if(l=r.previousSibling,!l)return a[e?"setStartBefore":"setEndBefore"](r);if(!i)return void(3==r.nodeType?a[e?"setStart":"setEnd"](l,r.nodeValue.length):a[e?"setStartAfter":"setEndAfter"](l));for(;l;){if(3==l.nodeType&&(s+=l.nodeValue.length,s>=i)){r=l,s-=i;break}l=l.previousSibling}}a[e?"setStart":"setEnd"](r,s)}var o=e.getRng(),a=i.createRng(),s,l,c,u,d;if(s=o.item?o.item(0):o.parentElement(),s.ownerDocument!=i.doc)return a;if(l=e.isCollapsed(),o.item)return a.setStart(s.parentNode,i.nodeIndex(s)),a.setEnd(a.startContainer,a.startOffset+1),a;try{n(!0),l||n()}catch(f){if(-2147024809!=f.number)throw f;d=r.getBookmark(2),c=o.duplicate(),c.collapse(!0),s=c.parentElement(),l||(c=o.duplicate(),c.collapse(!1),u=c.parentElement(),u.innerHTML=u.innerHTML),s.innerHTML=s.innerHTML,r.moveToBookmark(d),o=e.getRng(),n(!0),l||n()}return a}var r=this,i=e.dom,o=!1;this.getBookmark=function(n){function r(e){var t,n,r,o,a=[];for(t=e.parentNode,n=i.getRoot().parentNode;t!=n&&9!==t.nodeType;){for(r=t.children,o=r.length;o--;)if(e===r[o]){a.push(o);break}e=t,t=t.parentNode}return a}function o(e){var n;return n=t(a,e),n?{position:n.position,offset:n.offset,indexes:r(n.node),inside:n.inside}:void 0}var a=e.getRng(),s={};return 2===n&&(a.item?s.start={ctrl:!0,indexes:r(a.item(0))}:(s.start=o(!0),e.isCollapsed()||(s.end=o()))),s},this.moveToBookmark=function(e){function t(e){var t,n,r,o;for(t=i.getRoot(),n=e.length-1;n>=0;n--)o=t.children,r=e[n],r<=o.length-1&&(t=o[r]);return t}function n(n){var i=e[n?"start":"end"],a,s,l,c;i&&(a=i.position>0,s=o.createTextRange(),s.moveToElementText(t(i.indexes)),c=i.offset,c!==l?(s.collapse(i.inside||a),s.moveStart("character",a?-c:c)):s.collapse(n),r.setEndPoint(n?"StartToStart":"EndToStart",s),n&&r.collapse(!0))}var r,o=i.doc.body;e.start&&(e.start.ctrl?(r=o.createControlRange(),r.addElement(t(e.start.indexes)),r.select()):(r=o.createTextRange(),n(!0),n(),r.select()))},this.addRange=function(t){function n(e){var t,n,a,d,p;a=i.create("a"),t=e?s:c,n=e?l:u,d=r.duplicate(),(t==f||t==f.documentElement)&&(t=h,n=0),3==t.nodeType?(t.parentNode.insertBefore(a,t),d.moveToElementText(a),d.moveStart("character",n),i.remove(a),r.setEndPoint(e?"StartToStart":"EndToEnd",d)):(p=t.childNodes,p.length?(n>=p.length?i.insertAfter(a,p[p.length-1]):t.insertBefore(a,p[n]),d.moveToElementText(a)):t.canHaveHTML&&(t.innerHTML="<span>&#xFEFF;</span>",a=t.firstChild,d.moveToElementText(a),d.collapse(o)),r.setEndPoint(e?"StartToStart":"EndToEnd",d),i.remove(a))}var r,a,s,l,c,u,d,f=e.dom.doc,h=f.body,p,m;if(s=t.startContainer,l=t.startOffset,c=t.endContainer,u=t.endOffset,r=h.createTextRange(),s==c&&1==s.nodeType){if(l==u&&!s.hasChildNodes()){if(s.canHaveHTML)return d=s.previousSibling,d&&!d.hasChildNodes()&&i.isBlock(d)?d.innerHTML="&#xFEFF;":d=null,s.innerHTML="<span>&#xFEFF;</span><span>&#xFEFF;</span>",r.moveToElementText(s.lastChild),r.select(),i.doc.selection.clear(),s.innerHTML="",void(d&&(d.innerHTML=""));l=i.nodeIndex(s),s=s.parentNode}if(l==u-1)try{if(m=s.childNodes[l],a=h.createControlRange(),a.addElement(m),a.select(),p=e.getRng(),p.item&&m===p.item(0))return}catch(g){}}n(!0),n(),r.select()},this.getRangeAt=n}return e}),r(B,[u],function(e){return{BACKSPACE:8,DELETE:46,DOWN:40,ENTER:13,LEFT:37,RIGHT:39,SPACEBAR:32,TAB:9,UP:38,modifierPressed:function(e){return e.shiftKey||e.ctrlKey||e.altKey||this.metaKeyPressed(e)},metaKeyPressed:function(t){return e.mac?t.metaKey:t.ctrlKey&&!t.altKey}}}),r(D,[B,d,u],function(e,t,n){return function(r,i){function o(e){var t=i.settings.object_resizing;return t===!1||n.iOS?!1:("string"!=typeof t&&(t="table,img,div"),"false"===e.getAttribute("data-mce-resize")?!1:i.dom.is(e,t))}function a(t){var n,r,o,a,s;n=t.screenX-T,r=t.screenY-R,P=n*k[2]+D,O=r*k[3]+M,P=5>P?5:P,O=5>O?5:O,o="IMG"==w.nodeName&&i.settings.resize_img_proportional!==!1?!e.modifierPressed(t):e.modifierPressed(t)||"IMG"==w.nodeName&&k[2]*k[3]!==0,o&&(W(n)>W(r)?(O=V(P*H),P=V(O/H)):(P=V(O/H),O=V(P*H))),x.setStyles(_,{width:P,height:O}),a=k.startPos.x+n,s=k.startPos.y+r,a=a>0?a:0,s=s>0?s:0,x.setStyles(E,{left:a,top:s,display:"block"}),E.innerHTML=P+" &times; "+O,k[2]<0&&_.clientWidth<=P&&x.setStyle(_,"left",A+(D-P)),k[3]<0&&_.clientHeight<=O&&x.setStyle(_,"top",B+(M-O)),n=U.scrollWidth-$,r=U.scrollHeight-q,n+r!==0&&x.setStyles(E,{left:a-n,top:s-r}),L||(i.fire("ObjectResizeStart",{target:w,width:D,height:M}),L=!0)}function s(){function e(e,t){t&&(w.style[e]||!i.schema.isValid(w.nodeName.toLowerCase(),e)?x.setStyle(w,e,t):x.setAttrib(w,e,t))}L=!1,e("width",P),e("height",O),x.unbind(I,"mousemove",a),x.unbind(I,"mouseup",s),F!=I&&(x.unbind(F,"mousemove",a),x.unbind(F,"mouseup",s)),x.remove(_),x.remove(E),z&&"TABLE"!=w.nodeName||l(w),i.fire("ObjectResized",{target:w,width:P,height:O}),x.setAttrib(w,"style",x.getAttrib(w,"style")),i.nodeChanged()}function l(e,t,r){var l,u,d,f,h;g(),l=x.getPos(e,U),A=l.x,B=l.y,h=e.getBoundingClientRect(),u=h.width||h.right-h.left,d=h.height||h.bottom-h.top,w!=e&&(m(),w=e,P=O=0),f=i.fire("ObjectSelected",{target:e}),o(e)&&!f.isDefaultPrevented()?C(N,function(e,i){function o(t){T=t.screenX,R=t.screenY,D=w.clientWidth,M=w.clientHeight,H=M/D,k=e,e.startPos={x:u*e[0]+A,y:d*e[1]+B},$=U.scrollWidth,q=U.scrollHeight,_=w.cloneNode(!0),x.addClass(_,"mce-clonedresizable"),x.setAttrib(_,"data-mce-bogus","all"),_.contentEditable=!1,_.unSelectabe=!0,x.setStyles(_,{left:A,top:B,margin:0}),_.removeAttribute("data-mce-selected"),U.appendChild(_),x.bind(I,"mousemove",a),x.bind(I,"mouseup",s),F!=I&&(x.bind(F,"mousemove",a),x.bind(F,"mouseup",s)),E=x.add(U,"div",{"class":"mce-resize-helper","data-mce-bogus":"all"},D+" &times; "+M)}var l;return t?void(i==t&&o(r)):(l=x.get("mceResizeHandle"+i),l&&x.remove(l),l=x.add(U,"div",{id:"mceResizeHandle"+i,"data-mce-bogus":"all","class":"mce-resizehandle",unselectable:!0,style:"cursor:"+i+"-resize; margin:0; padding:0"}),n.ie&&(l.contentEditable=!1),x.bind(l,"mousedown",function(e){e.stopImmediatePropagation(),e.preventDefault(),o(e)}),e.elm=l,void x.setStyles(l,{left:u*e[0]+A-l.offsetWidth/2,top:d*e[1]+B-l.offsetHeight/2}))}):c(),w.setAttribute("data-mce-selected","1")}function c(){var e,t;g(),w&&w.removeAttribute("data-mce-selected");for(e in N)t=x.get("mceResizeHandle"+e),t&&(x.unbind(t),x.remove(t))}function u(e){function t(e,t){if(e)do if(e===t)return!0;while(e=e.parentNode)}var n,o;if(!L&&!i.removed)return C(x.select("img[data-mce-selected],hr[data-mce-selected]"),function(e){e.removeAttribute("data-mce-selected")}),o="mousedown"==e.type?e.target:r.getNode(),o=x.$(o).closest(z?"table":"table,img,hr")[0],t(o,U)&&(v(),n=r.getStart(!0),t(n,o)&&t(r.getEnd(!0),o)&&(!z||o!=n&&"IMG"!==n.nodeName))?void l(o):void c()}function d(e,t,n){e&&e.attachEvent&&e.attachEvent("on"+t,n)}function f(e,t,n){e&&e.detachEvent&&e.detachEvent("on"+t,n)}function h(e){var t=e.srcElement,n,r,o,a,s,c,u;n=t.getBoundingClientRect(),c=S.clientX-n.left,u=S.clientY-n.top;for(r in N)if(o=N[r],a=t.offsetWidth*o[0],s=t.offsetHeight*o[1],W(a-c)<8&&W(s-u)<8){k=o;break}L=!0,i.fire("ObjectResizeStart",{target:w,width:w.clientWidth,height:w.clientHeight}),i.getDoc().selection.empty(),l(t,r,S)}function p(e){var t=e.srcElement;if(t!=w){if(i.fire("ObjectSelected",{target:t}),m(),0===t.id.indexOf("mceResizeHandle"))return void(e.returnValue=!1);("IMG"==t.nodeName||"TABLE"==t.nodeName)&&(c(),w=t,d(t,"resizestart",h))}}function m(){f(w,"resizestart",h)}function g(){for(var e in N){var t=N[e];t.elm&&(x.unbind(t.elm),delete t.elm)}}function v(){try{i.getDoc().execCommand("enableObjectResizing",!1,!1)}catch(e){}}function y(e){var t;if(z){t=I.body.createControlRange();try{return t.addElement(e),t.select(),!0}catch(n){}}}function b(){w=_=null,z&&(m(),f(U,"controlselect",p))}var x=i.dom,C=t.each,w,_,E,N,k,S,T,R,A,B,D,M,H,L,P,O,I=i.getDoc(),F=document,z=n.ie&&n.ie<11,W=Math.abs,V=Math.round,U=i.getBody(),$,q;N={nw:[0,0,-1,-1],ne:[1,0,1,-1],se:[1,1,1,1],sw:[0,1,-1,1]};var j=".mce-content-body";return i.contentStyles.push(j+" div.mce-resizehandle {position: absolute;border: 1px solid black;background: #FFF;width: 7px;height: 7px;z-index: 10000}"+j+" .mce-resizehandle:hover {background: #000}"+j+" img[data-mce-selected], hr[data-mce-selected] {outline: 1px solid black;resize: none}"+j+" .mce-clonedresizable {position: absolute;"+(n.gecko?"":"outline: 1px dashed black;")+"opacity: .5;filter: alpha(opacity=50);z-index: 10000}"+j+" .mce-resize-helper {background: #555;background: rgba(0,0,0,0.75);border-radius: 3px;border: 1px;color: white;display: none;font-family: sans-serif;font-size: 12px;white-space: nowrap;line-height: 14px;margin: 5px 10px;padding: 5px;position: absolute;z-index: 10001}"),i.on("init",function(){z?(i.on("ObjectResized",function(e){"TABLE"!=e.target.nodeName&&(c(),y(e.target))}),d(U,"controlselect",p),i.on("mousedown",function(e){S=e})):(v(),n.ie>=11&&(i.on("mouseup",function(e){var t=e.target.nodeName;!L&&/^(TABLE|IMG|HR)$/.test(t)&&(i.selection.select(e.target,"TABLE"==t),i.nodeChanged())}),i.dom.bind(U,"mscontrolselect",function(e){/^(TABLE|IMG|HR)$/.test(e.target.nodeName)&&(e.preventDefault(),"IMG"==e.target.tagName&&window.setTimeout(function(){i.selection.select(e.target)},0))}))),i.on("nodechange ResizeEditor ResizeWindow",function(e){window.requestAnimationFrame?window.requestAnimationFrame(function(){
5
+ u(e)}):u(e)}),i.on("keydown keyup",function(e){w&&"TABLE"==w.nodeName&&u(e)}),i.on("hide",c)}),i.on("remove",g),{isResizable:o,showResizeRect:l,hideResizeRect:c,updateResizeRect:u,controlSelect:y,destroy:b}}}),r(M,[u,d],function(e,t){function n(n){var r=n.dom;this.getBookmark=function(e,i){function o(e,n){var i=0;return t.each(r.select(e),function(e,t){e==n&&(i=t)}),i}function a(e){function t(t){var n,r,i,o=t?"start":"end";n=e[o+"Container"],r=e[o+"Offset"],1==n.nodeType&&"TR"==n.nodeName&&(i=n.childNodes,n=i[Math.min(t?r:r-1,i.length-1)],n&&(r=t?0:n.childNodes.length,e["set"+(t?"Start":"End")](n,r)))}return t(!0),t(),e}function s(){function e(e,t){var n=e[t?"startContainer":"endContainer"],a=e[t?"startOffset":"endOffset"],s=[],l,c,u=0;if(3==n.nodeType){if(i)for(l=n.previousSibling;l&&3==l.nodeType;l=l.previousSibling)a+=l.nodeValue.length;s.push(a)}else c=n.childNodes,a>=c.length&&c.length&&(u=1,a=Math.max(0,c.length-1)),s.push(r.nodeIndex(c[a],i)+u);for(;n&&n!=o;n=n.parentNode)s.push(r.nodeIndex(n,i));return s}var t=n.getRng(!0),o=r.getRoot(),a={};return a.start=e(t,!0),n.isCollapsed()||(a.end=e(t)),a}var l,c,u,d,f,h,p="&#xFEFF;",m;if(2==e)return h=n.getNode(),f=h?h.nodeName:null,"IMG"==f?{name:f,index:o(f,h)}:n.tridentSel?n.tridentSel.getBookmark(e):s();if(e)return{rng:n.getRng()};if(l=n.getRng(),u=r.uniqueId(),d=n.isCollapsed(),m="overflow:hidden;line-height:0px",l.duplicate||l.item){if(l.item)return h=l.item(0),f=h.nodeName,{name:f,index:o(f,h)};c=l.duplicate();try{l.collapse(),l.pasteHTML('<span data-mce-type="bookmark" id="'+u+'_start" style="'+m+'">'+p+"</span>"),d||(c.collapse(!1),l.moveToElementText(c.parentElement()),0===l.compareEndPoints("StartToEnd",c)&&c.move("character",-1),c.pasteHTML('<span data-mce-type="bookmark" id="'+u+'_end" style="'+m+'">'+p+"</span>"))}catch(g){return null}}else{if(h=n.getNode(),f=h.nodeName,"IMG"==f)return{name:f,index:o(f,h)};c=a(l.cloneRange()),d||(c.collapse(!1),c.insertNode(r.create("span",{"data-mce-type":"bookmark",id:u+"_end",style:m},p))),l=a(l),l.collapse(!0),l.insertNode(r.create("span",{"data-mce-type":"bookmark",id:u+"_start",style:m},p))}return n.moveToBookmark({id:u,keep:1}),{id:u}},this.moveToBookmark=function(i){function o(e){var t=i[e?"start":"end"],n,r,o,a;if(t){for(o=t[0],r=c,n=t.length-1;n>=1;n--){if(a=r.childNodes,t[n]>a.length-1)return;r=a[t[n]]}3===r.nodeType&&(o=Math.min(t[0],r.nodeValue.length)),1===r.nodeType&&(o=Math.min(t[0],r.childNodes.length)),e?l.setStart(r,o):l.setEnd(r,o)}return!0}function a(n){var o=r.get(i.id+"_"+n),a,s,l,c,p=i.keep;if(o&&(a=o.parentNode,"start"==n?(p?(a=o.firstChild,s=1):s=r.nodeIndex(o),u=d=a,f=h=s):(p?(a=o.firstChild,s=1):s=r.nodeIndex(o),d=a,h=s),!p)){for(c=o.previousSibling,l=o.nextSibling,t.each(t.grep(o.childNodes),function(e){3==e.nodeType&&(e.nodeValue=e.nodeValue.replace(/\uFEFF/g,""))});o=r.get(i.id+"_"+n);)r.remove(o,1);c&&l&&c.nodeType==l.nodeType&&3==c.nodeType&&!e.opera&&(s=c.nodeValue.length,c.appendData(l.nodeValue),r.remove(l),"start"==n?(u=d=c,f=h=s):(d=c,h=s))}}function s(t){return!r.isBlock(t)||t.innerHTML||e.ie||(t.innerHTML='<br data-mce-bogus="1" />'),t}var l,c,u,d,f,h;if(i)if(i.start){if(l=r.createRng(),c=r.getRoot(),n.tridentSel)return n.tridentSel.moveToBookmark(i);o(!0)&&o()&&n.setRng(l)}else i.id?(a("start"),a("end"),u&&(l=r.createRng(),l.setStart(s(u),f),l.setEnd(s(d),h),n.setRng(l))):i.name?n.select(r.select(i.name)[i.index]):i.rng&&n.setRng(i.rng)}}return n.isBookmarkNode=function(e){return e&&"SPAN"===e.tagName&&"bookmark"===e.getAttribute("data-mce-type")},n}),r(H,[p,A,D,C,M,u,d],function(e,n,r,i,o,a,s){function l(e,t,i,a){var s=this;s.dom=e,s.win=t,s.serializer=i,s.editor=a,s.bookmarkManager=new o(s),s.controlSelection=new r(s,a),s.win.getSelection||(s.tridentSel=new n(s))}var c=s.each,u=s.trim,d=a.ie;return l.prototype={setCursorLocation:function(e,t){var n=this,r=n.dom.createRng();e?(r.setStart(e,t),r.setEnd(e,t),n.setRng(r),n.collapse(!1)):(n._moveEndPoint(r,n.editor.getBody(),!0),n.setRng(r))},getContent:function(e){var n=this,r=n.getRng(),i=n.dom.create("body"),o=n.getSel(),a,s,l;return e=e||{},a=s="",e.get=!0,e.format=e.format||"html",e.selection=!0,n.editor.fire("BeforeGetContent",e),"text"==e.format?n.isCollapsed()?"":r.text||(o.toString?o.toString():""):(r.cloneContents?(l=r.cloneContents(),l&&i.appendChild(l)):r.item!==t||r.htmlText!==t?(i.innerHTML="<br>"+(r.item?r.item(0).outerHTML:r.htmlText),i.removeChild(i.firstChild)):i.innerHTML=r.toString(),/^\s/.test(i.innerHTML)&&(a=" "),/\s+$/.test(i.innerHTML)&&(s=" "),e.getInner=!0,e.content=n.isCollapsed()?"":a+n.serializer.serialize(i,e)+s,n.editor.fire("GetContent",e),e.content)},setContent:function(e,t){var n=this,r=n.getRng(),i,o=n.win.document,a,s;if(t=t||{format:"html"},t.set=!0,t.selection=!0,e=t.content=e,t.no_events||n.editor.fire("BeforeSetContent",t),e=t.content,r.insertNode){e+='<span id="__caret">_</span>',r.startContainer==o&&r.endContainer==o?o.body.innerHTML=e:(r.deleteContents(),0===o.body.childNodes.length?o.body.innerHTML=e:r.createContextualFragment?r.insertNode(r.createContextualFragment(e)):(a=o.createDocumentFragment(),s=o.createElement("div"),a.appendChild(s),s.outerHTML=e,r.insertNode(a))),i=n.dom.get("__caret"),r=o.createRange(),r.setStartBefore(i),r.setEndBefore(i),n.setRng(r),n.dom.remove("__caret");try{n.setRng(r)}catch(l){}}else r.item&&(o.execCommand("Delete",!1,null),r=n.getRng()),/^\s+/.test(e)?(r.pasteHTML('<span id="__mce_tmp">_</span>'+e),n.dom.remove("__mce_tmp")):r.pasteHTML(e);t.no_events||n.editor.fire("SetContent",t)},getStart:function(e){var t=this,n=t.getRng(),r,i,o,a;if(n.duplicate||n.item){if(n.item)return n.item(0);for(o=n.duplicate(),o.collapse(1),r=o.parentElement(),r.ownerDocument!==t.dom.doc&&(r=t.dom.getRoot()),i=a=n.parentElement();a=a.parentNode;)if(a==r){r=i;break}return r}return r=n.startContainer,1==r.nodeType&&r.hasChildNodes()&&(e&&n.collapsed||(r=r.childNodes[Math.min(r.childNodes.length-1,n.startOffset)])),r&&3==r.nodeType?r.parentNode:r},getEnd:function(e){var t=this,n=t.getRng(),r,i;return n.duplicate||n.item?n.item?n.item(0):(n=n.duplicate(),n.collapse(0),r=n.parentElement(),r.ownerDocument!==t.dom.doc&&(r=t.dom.getRoot()),r&&"BODY"==r.nodeName?r.lastChild||r:r):(r=n.endContainer,i=n.endOffset,1==r.nodeType&&r.hasChildNodes()&&(e&&n.collapsed||(r=r.childNodes[i>0?i-1:i])),r&&3==r.nodeType?r.parentNode:r)},getBookmark:function(e,t){return this.bookmarkManager.getBookmark(e,t)},moveToBookmark:function(e){return this.bookmarkManager.moveToBookmark(e)},select:function(e,t){var n=this,r=n.dom,i=r.createRng(),o;if(n.lastFocusBookmark=null,e){if(!t&&n.controlSelection.controlSelect(e))return;o=r.nodeIndex(e),i.setStart(e.parentNode,o),i.setEnd(e.parentNode,o+1),t&&(n._moveEndPoint(i,e,!0),n._moveEndPoint(i,e)),n.setRng(i)}return e},isCollapsed:function(){var e=this,t=e.getRng(),n=e.getSel();return!t||t.item?!1:t.compareEndPoints?0===t.compareEndPoints("StartToEnd",t):!n||t.collapsed},collapse:function(e){var t=this,n=t.getRng(),r;n.item&&(r=n.item(0),n=t.win.document.body.createTextRange(),n.moveToElementText(r)),n.collapse(!!e),t.setRng(n)},getSel:function(){var e=this.win;return e.getSelection?e.getSelection():e.document.selection},getRng:function(e){function t(e,t,n){try{return t.compareBoundaryPoints(e,n)}catch(r){return-1}}var n=this,r,i,o,a=n.win.document,s;if(!e&&n.lastFocusBookmark){var l=n.lastFocusBookmark;return l.startContainer?(i=a.createRange(),i.setStart(l.startContainer,l.startOffset),i.setEnd(l.endContainer,l.endOffset)):i=l,i}if(e&&n.tridentSel)return n.tridentSel.getRangeAt(0);try{(r=n.getSel())&&(i=r.rangeCount>0?r.getRangeAt(0):r.createRange?r.createRange():a.createRange())}catch(c){}if(d&&i&&i.setStart&&a.selection){try{s=a.selection.createRange()}catch(c){}s&&s.item&&(o=s.item(0),i=a.createRange(),i.setStartBefore(o),i.setEndAfter(o))}return i||(i=a.createRange?a.createRange():a.body.createTextRange()),i.setStart&&9===i.startContainer.nodeType&&i.collapsed&&(o=n.dom.getRoot(),i.setStart(o,0),i.setEnd(o,0)),n.selectedRange&&n.explicitRange&&(0===t(i.START_TO_START,i,n.selectedRange)&&0===t(i.END_TO_END,i,n.selectedRange)?i=n.explicitRange:(n.selectedRange=null,n.explicitRange=null)),i},setRng:function(e,t){var n=this,r,i;if(e)if(e.select)try{e.select()}catch(o){}else if(n.tridentSel){if(e.cloneRange)try{return void n.tridentSel.addRange(e)}catch(o){}}else{if(r=n.getSel()){n.explicitRange=e;try{r.removeAllRanges(),r.addRange(e)}catch(o){}t===!1&&r.extend&&(r.collapse(e.endContainer,e.endOffset),r.extend(e.startContainer,e.startOffset)),n.selectedRange=r.rangeCount>0?r.getRangeAt(0):null}e.collapsed||e.startContainer!=e.endContainer||!r.setBaseAndExtent||a.ie||e.endOffset-e.startOffset<2&&e.startContainer.hasChildNodes()&&(i=e.startContainer.childNodes[e.startOffset],i&&"IMG"==i.tagName&&n.getSel().setBaseAndExtent(i,0,i,1))}},setNode:function(e){var t=this;return t.setContent(t.dom.getOuterHTML(e)),e},getNode:function(){function e(e,t){for(var n=e;e&&3===e.nodeType&&0===e.length;)e=t?e.nextSibling:e.previousSibling;return e||n}var t=this,n=t.getRng(),r,i=n.startContainer,o=n.endContainer,a=n.startOffset,s=n.endOffset,l=t.dom.getRoot();return n?n.setStart?(r=n.commonAncestorContainer,!n.collapsed&&(i==o&&2>s-a&&i.hasChildNodes()&&(r=i.childNodes[a]),3===i.nodeType&&3===o.nodeType&&(i=i.length===a?e(i.nextSibling,!0):i.parentNode,o=0===s?e(o.previousSibling,!1):o.parentNode,i&&i===o))?i:r&&3==r.nodeType?r.parentNode:r):(r=n.item?n.item(0):n.parentElement(),r.ownerDocument!==t.win.document&&(r=l),r):l},getSelectedBlocks:function(t,n){var r=this,i=r.dom,o,a,s=[];if(a=i.getRoot(),t=i.getParent(t||r.getStart(),i.isBlock),n=i.getParent(n||r.getEnd(),i.isBlock),t&&t!=a&&s.push(t),t&&n&&t!=n){o=t;for(var l=new e(t,a);(o=l.next())&&o!=n;)i.isBlock(o)&&s.push(o)}return n&&t!=n&&n!=a&&s.push(n),s},isForward:function(){var e=this.dom,t=this.getSel(),n,r;return t&&t.anchorNode&&t.focusNode?(n=e.createRng(),n.setStart(t.anchorNode,t.anchorOffset),n.collapse(!0),r=e.createRng(),r.setStart(t.focusNode,t.focusOffset),r.collapse(!0),n.compareBoundaryPoints(n.START_TO_START,r)<=0):!0},normalize:function(){var e=this,t=e.getRng();return a.range&&new i(e.dom).normalize(t)&&e.setRng(t,e.isForward()),t},selectorChanged:function(e,t){var n=this,r;return n.selectorChangedData||(n.selectorChangedData={},r={},n.editor.on("NodeChange",function(e){var t=e.element,i=n.dom,o=i.getParents(t,null,i.getRoot()),a={};c(n.selectorChangedData,function(e,t){c(o,function(n){return i.is(n,t)?(r[t]||(c(e,function(e){e(!0,{node:n,selector:t,parents:o})}),r[t]=e),a[t]=e,!1):void 0})}),c(r,function(e,n){a[n]||(delete r[n],c(e,function(e){e(!1,{node:t,selector:n,parents:o})}))})})),n.selectorChangedData[e]||(n.selectorChangedData[e]=[]),n.selectorChangedData[e].push(t),n},getScrollContainer:function(){for(var e,t=this.dom.getRoot();t&&"BODY"!=t.nodeName;){if(t.scrollHeight>t.clientHeight){e=t;break}t=t.parentNode}return e},scrollIntoView:function(e){function t(e){for(var t=0,n=0,r=e;r&&r.nodeType;)t+=r.offsetLeft||0,n+=r.offsetTop||0,r=r.offsetParent;return{x:t,y:n}}var n,r,i=this,o=i.dom,a=o.getRoot(),s,l;if("BODY"!=a.nodeName){var c=i.getScrollContainer();if(c)return n=t(e).y-t(c).y,l=c.clientHeight,s=c.scrollTop,void((s>n||n+25>s+l)&&(c.scrollTop=s>n?n:n-l+25))}r=o.getViewPort(i.editor.getWin()),n=o.getPos(e).y,s=r.y,l=r.h,(n<r.y||n+25>s+l)&&i.editor.getWin().scrollTo(0,s>n?n:n-l+25)},placeCaretAt:function(e,t){var n=this.editor.getDoc(),r,i;if(n.caretPositionFromPoint)i=n.caretPositionFromPoint(e,t),r=n.createRange(),r.setStart(i.offsetNode,i.offset),r.collapse(!0);else if(n.caretRangeFromPoint)r=n.caretRangeFromPoint(e,t);else if(n.body.createTextRange){r=n.body.createTextRange();try{r.moveToPoint(e,t),r.collapse(!0)}catch(o){r.collapse(t<n.body.clientHeight)}}this.setRng(r)},_moveEndPoint:function(t,n,r){var i=n,o=new e(n,i),s=this.dom.schema.getNonEmptyElements();do{if(3==n.nodeType&&0!==u(n.nodeValue).length)return void(r?t.setStart(n,0):t.setEnd(n,n.nodeValue.length));if(s[n.nodeName]&&!/^(TD|TH)$/.test(n.nodeName))return void(r?t.setStartBefore(n):"BR"==n.nodeName?t.setEndBefore(n):t.setEndAfter(n));if(a.ie&&a.ie<11&&this.dom.isBlock(n)&&this.dom.isEmpty(n))return void(r?t.setStart(n,0):t.setEnd(n,0))}while(n=r?o.next():o.prev());"BODY"==i.nodeName&&(r?t.setStart(i,0):t.setEnd(i,i.childNodes.length))},destroy:function(){this.win=null,this.controlSelection.destroy()}},l}),r(L,[M,d],function(e,t){function n(t){this.compare=function(n,i){function o(e){var n={};return r(t.getAttribs(e),function(r){var i=r.nodeName.toLowerCase();0!==i.indexOf("_")&&"style"!==i&&"data-mce-style"!==i&&(n[i]=t.getAttrib(e,i))}),n}function a(e,t){var n,r;for(r in e)if(e.hasOwnProperty(r)){if(n=t[r],"undefined"==typeof n)return!1;if(e[r]!=n)return!1;delete t[r]}for(r in t)if(t.hasOwnProperty(r))return!1;return!0}return n.nodeName!=i.nodeName?!1:a(o(n),o(i))&&a(t.parseStyle(t.getAttrib(n,"style")),t.parseStyle(t.getAttrib(i,"style")))?!e.isBookmarkNode(n)&&!e.isBookmarkNode(i):!1}}var r=t.each;return n}),r(P,[d],function(e){function t(e,t){function r(e){return e.replace(/%(\w+)/g,"")}var i,o,a=e.dom,s="",l,c;if(c=e.settings.preview_styles,c===!1)return"";if(c||(c="font-family font-size font-weight font-style text-decoration text-transform color background-color border border-radius outline text-shadow"),"string"==typeof t){if(t=e.formatter.get(t),!t)return;t=t[0]}return i=t.block||t.inline||"span",o=a.create(i),n(t.styles,function(e,t){e=r(e),e&&a.setStyle(o,t,e)}),n(t.attributes,function(e,t){e=r(e),e&&a.setAttrib(o,t,e)}),n(t.classes,function(e){e=r(e),a.hasClass(o,e)||a.addClass(o,e)}),e.fire("PreviewFormats"),a.setStyles(o,{position:"absolute",left:-65535}),e.getBody().appendChild(o),l=a.getStyle(e.getBody(),"fontSize",!0),l=/px$/.test(l)?parseInt(l,10):0,n(c.split(" "),function(t){var n=a.getStyle(o,t,!0);if(!("background-color"==t&&/transparent|rgba\s*\([^)]+,\s*0\)/.test(n)&&(n=a.getStyle(e.getBody(),t,!0),"#ffffff"==a.toHex(n).toLowerCase())||"color"==t&&"#000000"==a.toHex(n).toLowerCase())){if("font-size"==t&&/em|%$/.test(n)){if(0===l)return;n=parseFloat(n,10)/(/%$/.test(n)?100:1),n=n*l+"px"}"border"==t&&n&&(s+="padding:0 2px;"),s+=t+":"+n+";"}}),e.fire("AfterPreviewFormats"),a.remove(o),s}var n=e.each;return{getCssText:t}}),r(O,[p,C,M,L,d,P],function(e,t,n,r,i,o){return function(a){function s(e){return e.nodeType&&(e=e.nodeName),!!a.schema.getTextBlockElements()[e.toLowerCase()]}function l(e){return/^(TH|TD)$/.test(e.nodeName)}function c(e){return e&&/^(IMG)$/.test(e.nodeName)}function u(e,t){return q.getParents(e,t,q.getRoot())}function d(e){return 1===e.nodeType&&"_mce_caret"===e.id}function f(){m({valigntop:[{selector:"td,th",styles:{verticalAlign:"top"}}],valignmiddle:[{selector:"td,th",styles:{verticalAlign:"middle"}}],valignbottom:[{selector:"td,th",styles:{verticalAlign:"bottom"}}],alignleft:[{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li",styles:{textAlign:"left"},defaultBlock:"div"},{selector:"img,table",collapsed:!1,styles:{"float":"left"}}],aligncenter:[{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li",styles:{textAlign:"center"},defaultBlock:"div"},{selector:"img",collapsed:!1,styles:{display:"block",marginLeft:"auto",marginRight:"auto"}},{selector:"table",collapsed:!1,styles:{marginLeft:"auto",marginRight:"auto"}}],alignright:[{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li",styles:{textAlign:"right"},defaultBlock:"div"},{selector:"img,table",collapsed:!1,styles:{"float":"right"}}],alignjustify:[{selector:"figure,p,h1,h2,h3,h4,h5,h6,td,th,tr,div,ul,ol,li",styles:{textAlign:"justify"},defaultBlock:"div"}],bold:[{inline:"strong",remove:"all"},{inline:"span",styles:{fontWeight:"bold"}},{inline:"b",remove:"all"}],italic:[{inline:"em",remove:"all"},{inline:"span",styles:{fontStyle:"italic"}},{inline:"i",remove:"all"}],underline:[{inline:"span",styles:{textDecoration:"underline"},exact:!0},{inline:"u",remove:"all"}],strikethrough:[{inline:"span",styles:{textDecoration:"line-through"},exact:!0},{inline:"strike",remove:"all"}],forecolor:{inline:"span",styles:{color:"%value"},links:!0,remove_similar:!0},hilitecolor:{inline:"span",styles:{backgroundColor:"%value"},links:!0,remove_similar:!0},fontname:{inline:"span",styles:{fontFamily:"%value"}},fontsize:{inline:"span",styles:{fontSize:"%value"}},fontsize_class:{inline:"span",attributes:{"class":"%value"}},blockquote:{block:"blockquote",wrapper:1,remove:"all"},subscript:{inline:"sub"},superscript:{inline:"sup"},code:{inline:"code"},link:{inline:"a",selector:"a",remove:"all",split:!0,deep:!0,onmatch:function(){return!0},onformat:function(e,t,n){le(n,function(t,n){q.setAttrib(e,n,t)})}},removeformat:[{selector:"b,strong,em,i,font,u,strike,sub,sup,dfn,code,samp,kbd,var,cite,mark,q,del,ins",remove:"all",split:!0,expand:!1,block_expand:!0,deep:!0},{selector:"span",attributes:["style","class"],remove:"empty",split:!0,expand:!1,deep:!0},{selector:"*",attributes:["style","class"],split:!1,expand:!1,deep:!0}]}),le("p h1 h2 h3 h4 h5 h6 div address pre div dt dd samp".split(/\s/),function(e){m(e,{block:e,remove:"all"})}),m(a.settings.formats)}function h(){a.addShortcut("meta+b","bold_desc","Bold"),a.addShortcut("meta+i","italic_desc","Italic"),a.addShortcut("meta+u","underline_desc","Underline");for(var e=1;6>=e;e++)a.addShortcut("access+"+e,"",["FormatBlock",!1,"h"+e]);a.addShortcut("access+7","",["FormatBlock",!1,"p"]),a.addShortcut("access+8","",["FormatBlock",!1,"div"]),a.addShortcut("access+9","",["FormatBlock",!1,"address"])}function p(e){return e?$[e]:$}function m(e,t){e&&("string"!=typeof e?le(e,function(e,t){m(t,e)}):(t=t.length?t:[t],le(t,function(e){e.deep===re&&(e.deep=!e.selector),e.split===re&&(e.split=!e.selector||e.inline),e.remove===re&&e.selector&&!e.inline&&(e.remove="none"),e.selector&&e.inline&&(e.mixed=!0,e.block_expand=!0),"string"==typeof e.classes&&(e.classes=e.classes.split(/\s+/))}),$[e]=t))}function g(e){return e&&$[e]&&delete $[e],$}function v(e){var t;return a.dom.getParent(e,function(e){return t=a.dom.getStyle(e,"text-decoration"),t&&"none"!==t}),t}function y(e){var t;1===e.nodeType&&e.parentNode&&1===e.parentNode.nodeType&&(t=v(e.parentNode),a.dom.getStyle(e,"color")&&t?a.dom.setStyle(e,"text-decoration",t):a.dom.getStyle(e,"text-decoration")===t&&a.dom.setStyle(e,"text-decoration",null))}function b(t,n,r){function i(e,t){if(t=t||u,e){if(t.onformat&&t.onformat(e,t,n,r),le(t.styles,function(t,r){q.setStyle(e,r,D(t,n))}),t.styles){var i=q.getAttrib(e,"style");i&&e.setAttribute("data-mce-style",i)}le(t.attributes,function(t,r){q.setAttrib(e,r,D(t,n))}),le(t.classes,function(t){t=D(t,n),q.hasClass(e,t)||q.addClass(e,t)})}}function o(){function t(t,n){var i=new e(n);for(r=i.current();r;r=i.prev())if(r.childNodes.length>1||r==t||"BR"==r.tagName)return r}var n=a.selection.getRng(),i=n.startContainer,o=n.endContainer;if(i!=o&&0===n.endOffset){var s=t(i,o),l=3==s.nodeType?s.length:s.childNodes.length;n.setEnd(s,l)}return n}function l(e,r,o){var a=[],l,f,h=!0;l=u.inline||u.block,f=q.create(l),i(f),K.walk(e,function(e){function r(e){var g,v,y,b,x;return x=h,g=e.nodeName.toLowerCase(),v=e.parentNode.nodeName.toLowerCase(),1===e.nodeType&&ie(e)&&(x=h,h="true"===ie(e),b=!0),R(g,"br")?(p=0,void(u.block&&q.remove(e))):u.wrapper&&w(e,t,n)?void(p=0):h&&!b&&u.block&&!u.wrapper&&s(g)&&Y(v,l)?(e=q.rename(e,l),i(e),a.push(e),void(p=0)):u.selector&&(le(c,function(t){"collapsed"in t&&t.collapsed!==m||q.is(e,t.selector)&&!d(e)&&(i(e,t),y=!0)}),!u.inline||y)?void(p=0):void(!h||b||!Y(l,g)||!Y(v,l)||!o&&3===e.nodeType&&1===e.nodeValue.length&&65279===e.nodeValue.charCodeAt(0)||d(e)||u.inline&&G(e)?(p=0,le(ce(e.childNodes),r),b&&(h=x),p=0):(p||(p=q.clone(f,ee),e.parentNode.insertBefore(p,e),a.push(p)),p.appendChild(e)))}var p;le(e,r)}),u.links===!0&&le(a,function(e){function t(e){"A"===e.nodeName&&i(e,u),le(ce(e.childNodes),t)}t(e)}),le(a,function(e){function r(e){var t=0;return le(e.childNodes,function(e){M(e)||se(e)||t++}),t}function o(e){var t,n;return le(e.childNodes,function(e){return 1!=e.nodeType||se(e)||d(e)?void 0:(t=e,ee)}),t&&!se(t)&&T(t,u)&&(n=q.clone(t,ee),i(n),q.replace(n,e,te),q.remove(t,1)),n||e}var s;if(s=r(e),(a.length>1||!G(e))&&0===s)return void q.remove(e,1);if(u.inline||u.wrapper){if(u.exact||1!==s||(e=o(e)),le(c,function(t){le(q.select(t.inline,e),function(e){se(e)||O(t,n,e,t.exact?e:null)})}),w(e.parentNode,t,n))return q.remove(e,1),e=0,te;u.merge_with_parents&&q.getParent(e.parentNode,function(r){return w(r,t,n)?(q.remove(e,1),e=0,te):void 0}),e&&u.merge_siblings!==!1&&(e=z(F(e),e),e=z(e,F(e,te)))}})}var c=p(t),u=c[0],f,h,m=!r&&j.isCollapsed();if(u)if(r)r.nodeType?(h=q.createRng(),h.setStartBefore(r),h.setEndAfter(r),l(L(h,c),null,!0)):l(r,null,!0);else if(m&&u.inline&&!q.select("td.mce-item-selected,th.mce-item-selected").length)V("apply",t,n);else{var g=a.selection.getNode();X||!c[0].defaultBlock||q.getParent(g,q.isBlock)||b(c[0].defaultBlock),a.selection.setRng(o()),f=j.getBookmark(),l(L(j.getRng(te),c),f),u.styles&&(u.styles.color||u.styles.textDecoration)&&(ue(g,y,"childNodes"),y(g)),j.moveToBookmark(f),U(j.getRng(te)),a.nodeChanged()}}function x(e,t,n,r){function i(e){var n,r,o,a,s;if(1===e.nodeType&&ie(e)&&(a=b,b="true"===ie(e),s=!0),n=ce(e.childNodes),b&&!s)for(r=0,o=h.length;o>r&&!O(h[r],t,e,e);r++);if(m.deep&&n.length){for(r=0,o=n.length;o>r;r++)i(n[r]);s&&(b=a)}}function o(n){var i;return le(u(n.parentNode).reverse(),function(n){var o;i||"_start"==n.id||"_end"==n.id||(o=w(n,e,t,r),o&&o.split!==!1&&(i=n))}),i}function s(e,n,r,i){var o,a,s,l,c,u;if(e){for(u=e.parentNode,o=n.parentNode;o&&o!=u;o=o.parentNode){for(a=q.clone(o,ee),c=0;c<h.length;c++)if(O(h[c],t,a,a)){a=0;break}a&&(s&&a.appendChild(s),l||(l=a),s=a)}!i||m.mixed&&G(e)||(n=q.split(e,n)),s&&(r.parentNode.insertBefore(s,r),l.appendChild(r))}return n}function c(e){return s(o(e),e,e,!0)}function d(e){var t=q.get(e?"_start":"_end"),n=t[e?"firstChild":"lastChild"];return se(n)&&(n=n[e?"firstChild":"lastChild"]),3==n.nodeType&&0===n.data.length&&(n=e?t.previousSibling||t.nextSibling:t.nextSibling||t.previousSibling),q.remove(t,!0),n}function f(e){var t,n,r=e.commonAncestorContainer;if(e=L(e,h,te),m.split){if(t=W(e,te),n=W(e),t!=n){if(/^(TR|TH|TD)$/.test(t.nodeName)&&t.firstChild&&(t="TR"==t.nodeName?t.firstChild.firstChild||t:t.firstChild||t),r&&/^T(HEAD|BODY|FOOT|R)$/.test(r.nodeName)&&l(n)&&n.firstChild&&(n=n.firstChild||n),q.isChildOf(t,n)&&!G(n)&&!l(t)&&!l(n))return t=H(t,"span",{id:"_start","data-mce-type":"bookmark"}),c(t),void(t=d(te));t=H(t,"span",{id:"_start","data-mce-type":"bookmark"}),n=H(n,"span",{id:"_end","data-mce-type":"bookmark"}),c(t),c(n),t=d(te),n=d()}else t=n=c(t);e.startContainer=t.parentNode?t.parentNode:t,e.startOffset=J(t),e.endContainer=n.parentNode?n.parentNode:n,e.endOffset=J(n)+1}K.walk(e,function(e){le(e,function(e){i(e),1===e.nodeType&&"underline"===a.dom.getStyle(e,"text-decoration")&&e.parentNode&&"underline"===v(e.parentNode)&&O({deep:!1,exact:!0,inline:"span",styles:{textDecoration:"underline"}},null,e)})})}var h=p(e),m=h[0],g,y,b=!0;return n?void(n.nodeType?(y=q.createRng(),y.setStartBefore(n),y.setEndAfter(n),f(y)):f(n)):void(j.isCollapsed()&&m.inline&&!q.select("td.mce-item-selected,th.mce-item-selected").length?V("remove",e,t,r):(g=j.getBookmark(),f(j.getRng(te)),j.moveToBookmark(g),m.inline&&_(e,t,j.getStart())&&U(j.getRng(!0)),a.nodeChanged()))}function C(e,t,n){var r=p(e);!_(e,t,n)||"toggle"in r[0]&&!r[0].toggle?b(e,t,n):x(e,t,n)}function w(e,t,n,r){function i(e,t,i){var o,a,s=t[i],l;if(t.onmatch)return t.onmatch(e,t,i);if(s)if(s.length===re){for(o in s)if(s.hasOwnProperty(o)){if(a="attributes"===i?q.getAttrib(e,o):A(e,o),r&&!a&&!t.exact)return;if((!r||t.exact)&&!R(a,B(D(s[o],n),o)))return}}else for(l=0;l<s.length;l++)if("attributes"===i?q.getAttrib(e,s[l]):A(e,s[l]))return t;return t}var o=p(t),a,s,l;if(o&&e)for(s=0;s<o.length;s++)if(a=o[s],T(e,a)&&i(e,a,"attributes")&&i(e,a,"styles")){if(l=a.classes)for(s=0;s<l.length;s++)if(!q.hasClass(e,l[s]))return;return a}}function _(e,t,n){function r(n){var r=q.getRoot();return n===r?!1:(n=q.getParent(n,function(n){return n.parentNode===r||!!w(n,e,t,!0)}),w(n,e,t))}var i;return n?r(n):(n=j.getNode(),r(n)?te:(i=j.getStart(),i!=n&&r(i)?te:ee))}function E(e,t){var n,r=[],i={};return n=j.getStart(),q.getParent(n,function(n){var o,a;for(o=0;o<e.length;o++)a=e[o],!i[a]&&w(n,a,t)&&(i[a]=!0,r.push(a))},q.getRoot()),r}function N(e){var t=p(e),n,r,i,o,a;if(t)for(n=j.getStart(),r=u(n),o=t.length-1;o>=0;o--){if(a=t[o].selector,!a||t[o].defaultBlock)return te;for(i=r.length-1;i>=0;i--)if(q.is(r[i],a))return te}return ee}function k(e,t,n){var r;return ne||(ne={},r={},a.on("NodeChange",function(e){var t=u(e.element),n={};t=i.grep(t,function(e){return 1==e.nodeType&&!e.getAttribute("data-mce-bogus")}),le(ne,function(e,i){le(t,function(o){return w(o,i,{},e.similar)?(r[i]||(le(e,function(e){e(!0,{node:o,format:i,parents:t})}),r[i]=e),n[i]=e,!1):void 0})}),le(r,function(i,o){n[o]||(delete r[o],le(i,function(n){n(!1,{node:e.element,format:o,parents:t})}))})})),le(e.split(","),function(e){ne[e]||(ne[e]=[],ne[e].similar=n),ne[e].push(t)}),this}function S(e){return o.getCssText(a,e)}function T(e,t){return R(e,t.inline)?te:R(e,t.block)?te:t.selector?1==e.nodeType&&q.is(e,t.selector):void 0}function R(e,t){return e=e||"",t=t||"",e=""+(e.nodeName||e),t=""+(t.nodeName||t),e.toLowerCase()==t.toLowerCase()}function A(e,t){return B(q.getStyle(e,t),t)}function B(e,t){return("color"==t||"backgroundColor"==t)&&(e=q.toHex(e)),"fontWeight"==t&&700==e&&(e="bold"),"fontFamily"==t&&(e=e.replace(/[\'\"]/g,"").replace(/,\s+/g,",")),""+e}function D(e,t){return"string"!=typeof e?e=e(t):t&&(e=e.replace(/%(\w+)/g,function(e,n){return t[n]||e})),e}function M(e){return e&&3===e.nodeType&&/^([\t \r\n]+|)$/.test(e.nodeValue)}function H(e,t,n){var r=q.create(t,n);return e.parentNode.insertBefore(r,e),r.appendChild(e),r}function L(t,n,r){function i(e){function t(e){return"BR"==e.nodeName&&e.getAttribute("data-mce-bogus")&&!e.nextSibling}var r,i,o,a,s;if(r=i=e?g:y,a=e?"previousSibling":"nextSibling",s=q.getRoot(),3==r.nodeType&&!M(r)&&(e?v>0:b<r.nodeValue.length))return r;for(;;){if(!n[0].block_expand&&G(i))return i;for(o=i[a];o;o=o[a])if(!se(o)&&!M(o)&&!t(o))return i;if(i.parentNode==s){r=i;break}i=i.parentNode}return r}function o(e,t){for(t===re&&(t=3===e.nodeType?e.length:e.childNodes.length);e&&e.hasChildNodes();)e=e.childNodes[t],e&&(t=3===e.nodeType?e.length:e.childNodes.length);return{node:e,offset:t}}function l(e){for(var t=e;t;){if(1===t.nodeType&&ie(t))return"false"===ie(t)?t:e;t=t.parentNode}return e}function c(t,n,i){function o(e,t){var n,o,a=e.nodeValue;return"undefined"==typeof t&&(t=i?a.length:0),i?(n=a.lastIndexOf(" ",t),o=a.lastIndexOf("\xa0",t),n=n>o?n:o,-1===n||r||n++):(n=a.indexOf(" ",t),o=a.indexOf("\xa0",t),n=-1!==n&&(-1===o||o>n)?n:o),n}var s,l,c,u;if(3===t.nodeType){if(c=o(t,n),-1!==c)return{container:t,offset:c};u=t}for(s=new e(t,q.getParent(t,G)||a.getBody());l=s[i?"prev":"next"]();)if(3===l.nodeType){if(u=l,c=o(l),-1!==c)return{container:l,offset:c}}else if(G(l))break;return u?(n=i?0:u.length,{container:u,offset:n}):void 0}function d(e,r){var i,o,a,s;for(3==e.nodeType&&0===e.nodeValue.length&&e[r]&&(e=e[r]),i=u(e),o=0;o<i.length;o++)for(a=0;a<n.length;a++)if(s=n[a],!("collapsed"in s&&s.collapsed!==t.collapsed)&&q.is(i[o],s.selector))return i[o];return e}function f(e,t){var r,i=q.getRoot();if(n[0].wrapper||(r=q.getParent(e,n[0].block,i)),r||(r=q.getParent(3==e.nodeType?e.parentNode:e,function(e){return e!=i&&s(e)})),r&&n[0].wrapper&&(r=u(r,"ul,ol").reverse()[0]||r),!r)for(r=e;r[t]&&!G(r[t])&&(r=r[t],!R(r,"br")););return r||e}var h,p,m,g=t.startContainer,v=t.startOffset,y=t.endContainer,b=t.endOffset;if(1==g.nodeType&&g.hasChildNodes()&&(h=g.childNodes.length-1,g=g.childNodes[v>h?h:v],3==g.nodeType&&(v=0)),1==y.nodeType&&y.hasChildNodes()&&(h=y.childNodes.length-1,y=y.childNodes[b>h?h:b-1],3==y.nodeType&&(b=y.nodeValue.length)),g=l(g),y=l(y),(se(g.parentNode)||se(g))&&(g=se(g)?g:g.parentNode,g=g.nextSibling||g,3==g.nodeType&&(v=0)),(se(y.parentNode)||se(y))&&(y=se(y)?y:y.parentNode,y=y.previousSibling||y,3==y.nodeType&&(b=y.length)),n[0].inline&&(t.collapsed&&(m=c(g,v,!0),m&&(g=m.container,v=m.offset),m=c(y,b),m&&(y=m.container,b=m.offset)),p=o(y,b),p.node)){for(;p.node&&0===p.offset&&p.node.previousSibling;)p=o(p.node.previousSibling);p.node&&p.offset>0&&3===p.node.nodeType&&" "===p.node.nodeValue.charAt(p.offset-1)&&p.offset>1&&(y=p.node,y.splitText(p.offset-1))}return(n[0].inline||n[0].block_expand)&&(n[0].inline&&3==g.nodeType&&0!==v||(g=i(!0)),n[0].inline&&3==y.nodeType&&b!==y.nodeValue.length||(y=i())),n[0].selector&&n[0].expand!==ee&&!n[0].inline&&(g=d(g,"previousSibling"),y=d(y,"nextSibling")),(n[0].block||n[0].selector)&&(g=f(g,"previousSibling"),y=f(y,"nextSibling"),n[0].block&&(G(g)||(g=i(!0)),G(y)||(y=i()))),1==g.nodeType&&(v=J(g),g=g.parentNode),1==y.nodeType&&(b=J(y)+1,y=y.parentNode),{startContainer:g,startOffset:v,endContainer:y,endOffset:b}}function P(e,t){return t.links&&"A"==e.tagName}function O(e,t,n,r){var i,o,a;if(!T(n,e)&&!P(n,e))return ee;if("all"!=e.remove)for(le(e.styles,function(i,o){i=B(D(i,t),o),"number"==typeof o&&(o=i,r=0),(e.remove_similar||!r||R(A(r,o),i))&&q.setStyle(n,o,""),a=1}),a&&""===q.getAttrib(n,"style")&&(n.removeAttribute("style"),n.removeAttribute("data-mce-style")),le(e.attributes,function(e,i){var o;if(e=D(e,t),"number"==typeof i&&(i=e,r=0),!r||R(q.getAttrib(r,i),e)){if("class"==i&&(e=q.getAttrib(n,i),e&&(o="",le(e.split(/\s+/),function(e){/mce\-\w+/.test(e)&&(o+=(o?" ":"")+e)}),o)))return void q.setAttrib(n,i,o);"class"==i&&n.removeAttribute("className"),Z.test(i)&&n.removeAttribute("data-mce-"+i),n.removeAttribute(i)}}),le(e.classes,function(e){e=D(e,t),(!r||q.hasClass(r,e))&&q.removeClass(n,e)}),o=q.getAttribs(n),i=0;i<o.length;i++)if(0!==o[i].nodeName.indexOf("_"))return ee;return"none"!=e.remove?(I(n,e),te):void 0}function I(e,t){function n(e,t,n){return e=F(e,t,n),!e||"BR"==e.nodeName||G(e)}var r=e.parentNode,i;t.block&&(X?r==q.getRoot()&&(t.list_block&&R(e,t.list_block)||le(ce(e.childNodes),function(e){Y(X,e.nodeName.toLowerCase())?i?i.appendChild(e):(i=H(e,X),q.setAttribs(i,a.settings.forced_root_block_attrs)):i=0})):G(e)&&!G(r)&&(n(e,ee)||n(e.firstChild,te,1)||e.insertBefore(q.create("br"),e.firstChild),n(e,te)||n(e.lastChild,ee,1)||e.appendChild(q.create("br")))),t.selector&&t.inline&&!R(t.inline,e)||q.remove(e,1)}function F(e,t,n){if(e)for(t=t?"nextSibling":"previousSibling",e=n?e:e[t];e;e=e[t])if(1==e.nodeType||!M(e))return e}function z(e,t){function n(e,t){for(i=e;i;i=i[t]){if(3==i.nodeType&&0!==i.nodeValue.length)return e;if(1==i.nodeType&&!se(i))return i}return e}var i,o,a=new r(q);if(e&&t&&(e=n(e,"previousSibling"),t=n(t,"nextSibling"),a.compare(e,t))){for(i=e.nextSibling;i&&i!=t;)o=i,i=i.nextSibling,e.appendChild(o);return q.remove(t),le(ce(t.childNodes),function(t){e.appendChild(t)}),e}return t}function W(t,n){var r,i,o;return r=t[n?"startContainer":"endContainer"],i=t[n?"startOffset":"endOffset"],1==r.nodeType&&(o=r.childNodes.length-1,!n&&i&&i--,r=r.childNodes[i>o?o:i]),3===r.nodeType&&n&&i>=r.nodeValue.length&&(r=new e(r,a.getBody()).next()||r),3!==r.nodeType||n||0!==i||(r=new e(r,a.getBody()).prev()||r),r}function V(t,n,r,i){function o(e){var t=q.create("span",{id:g,"data-mce-bogus":!0,style:v?"color:red":""});return e&&t.appendChild(a.getDoc().createTextNode(Q)),t}function l(e,t){for(;e;){if(3===e.nodeType&&e.nodeValue!==Q||e.childNodes.length>1)return!1;t&&1===e.nodeType&&t.push(e),e=e.firstChild}return!0}function c(e){for(;e;){if(e.id===g)return e;e=e.parentNode}}function u(t){var n;if(t)for(n=new e(t,t),t=n.current();t;t=n.next())if(3===t.nodeType)return t}function d(e,t){var n,r;if(e)r=j.getRng(!0),l(e)?(t!==!1&&(r.setStartBefore(e),r.setEndBefore(e)),q.remove(e)):(n=u(e),n.nodeValue.charAt(0)===Q&&(n.deleteData(0,1),r.startContainer==n&&r.startOffset>0&&r.setStart(n,r.startOffset-1),
6
+ r.endContainer==n&&r.endOffset>0&&r.setEnd(n,r.endOffset-1)),q.remove(e,1)),j.setRng(r);else if(e=c(j.getStart()),!e)for(;e=q.get(g);)d(e,!1)}function f(){var e,t,i,a,s,l,d;e=j.getRng(!0),a=e.startOffset,l=e.startContainer,d=l.nodeValue,t=c(j.getStart()),t&&(i=u(t)),d&&a>0&&a<d.length&&/\w/.test(d.charAt(a))&&/\w/.test(d.charAt(a-1))?(s=j.getBookmark(),e.collapse(!0),e=L(e,p(n)),e=K.split(e),b(n,r,e),j.moveToBookmark(s)):(t&&i.nodeValue===Q?b(n,r,t):(t=o(!0),i=t.firstChild,e.insertNode(t),a=1,b(n,r,t)),j.setCursorLocation(i,a))}function h(){var e=j.getRng(!0),t,a,l,c,u,d,f=[],h,m;for(t=e.startContainer,a=e.startOffset,u=t,3==t.nodeType&&(a!=t.nodeValue.length&&(c=!0),u=u.parentNode);u;){if(w(u,n,r,i)){d=u;break}u.nextSibling&&(c=!0),f.push(u),u=u.parentNode}if(d)if(c)l=j.getBookmark(),e.collapse(!0),e=L(e,p(n),!0),e=K.split(e),x(n,r,e),j.moveToBookmark(l);else{for(m=o(),u=m,h=f.length-1;h>=0;h--)u.appendChild(q.clone(f[h],!1)),u=u.firstChild;u.appendChild(q.doc.createTextNode(Q)),u=u.firstChild;var g=q.getParent(d,s);g&&q.isEmpty(g)?d.parentNode.replaceChild(m,d):q.insertAfter(m,d),j.setCursorLocation(u,1),q.isEmpty(d)&&q.remove(d)}}function m(){var e;e=c(j.getStart()),e&&!q.isEmpty(e)&&ue(e,function(e){1!=e.nodeType||e.id===g||q.isEmpty(e)||q.setAttrib(e,"data-mce-bogus",null)},"childNodes")}var g="_mce_caret",v=a.settings.caret_debug;a._hasCaretEvents||(ae=function(){var e=[],t;if(l(c(j.getStart()),e))for(t=e.length;t--;)q.setAttrib(e[t],"data-mce-bogus","1")},oe=function(e){var t=e.keyCode;d(),(8==t&&j.isCollapsed()||37==t||39==t)&&d(c(j.getStart())),m()},a.on("SetContent",function(e){e.selection&&m()}),a._hasCaretEvents=!0),"apply"==t?f():h()}function U(t){var n=t.startContainer,r=t.startOffset,i,o,a,s,l;if((t.startContainer!=t.endContainer||!c(t.startContainer.childNodes[t.startOffset]))&&(3==n.nodeType&&r>=n.nodeValue.length&&(r=J(n),n=n.parentNode,i=!0),1==n.nodeType))for(s=n.childNodes,n=s[Math.min(r,s.length-1)],o=new e(n,q.getParent(n,q.isBlock)),(r>s.length-1||i)&&o.next(),a=o.current();a;a=o.next())if(3==a.nodeType&&!M(a))return l=q.create("a",{"data-mce-bogus":"all"},Q),a.parentNode.insertBefore(l,a),t.setStart(a,0),j.setRng(t),void q.remove(l)}var $={},q=a.dom,j=a.selection,K=new t(q),Y=a.schema.isValidChild,G=q.isBlock,X=a.settings.forced_root_block,J=q.nodeIndex,Q="\ufeff",Z=/^(src|href|style)$/,ee=!1,te=!0,ne,re,ie=q.getContentEditable,oe,ae,se=n.isBookmarkNode,le=i.each,ce=i.grep,ue=i.walk,de=i.extend;de(this,{get:p,register:m,unregister:g,apply:b,remove:x,toggle:C,match:_,matchAll:E,matchNode:w,canApply:N,formatChanged:k,getCssText:S}),f(),h(),a.on("BeforeGetContent",function(e){ae&&"raw"!=e.format&&ae()}),a.on("mouseup keydown",function(e){oe&&oe(e)})}}),r(I,[B,u,d,N],function(e,t,n,r){var i=n.trim,o;return o=new RegExp(["<span[^>]+data-mce-bogus[^>]+>[\u200b\ufeff]+<\\/span>",'\\s?data-mce-selected="[^"]+"'].join("|"),"gi"),function(e){function n(){var t=e.getContent({format:"raw",no_events:1}),n=/<(\w+) [^>]*data-mce-bogus="all"[^>]*>/g,a,s,l,c,u,d=e.schema;for(t=t.replace(o,""),u=d.getShortEndedElements();c=n.exec(t);)s=n.lastIndex,l=c[0].length,a=u[c[1]]?s:r.findEndTag(d,t,s),t=t.substring(0,s-l)+t.substring(a),n.lastIndex=s-l;return i(t)}function a(t){e.isNotDirty=!t}function s(e){l.typing=!1,l.add({},e)}var l=this,c=0,u=[],d,f,h=0;return e.on("init",function(){l.add()}),e.on("BeforeExecCommand",function(e){var t=e.command;"Undo"!=t&&"Redo"!=t&&"mceRepaint"!=t&&l.beforeChange()}),e.on("ExecCommand",function(e){var t=e.command;"Undo"!=t&&"Redo"!=t&&"mceRepaint"!=t&&s(e)}),e.on("ObjectResizeStart",function(){l.beforeChange()}),e.on("SaveContent ObjectResized blur",s),e.on("DragEnd",s),e.on("KeyUp",function(r){var i=r.keyCode;(i>=33&&36>=i||i>=37&&40>=i||45==i||13==i||r.ctrlKey)&&(s(),e.nodeChanged()),(46==i||8==i||t.mac&&(91==i||93==i))&&e.nodeChanged(),f&&l.typing&&(e.isDirty()||(a(u[0]&&n()!=u[0].content),e.isNotDirty||e.fire("change",{level:u[0],lastLevel:null})),e.fire("TypingUndo"),f=!1,e.nodeChanged())}),e.on("KeyDown",function(e){var t=e.keyCode;if(t>=33&&36>=t||t>=37&&40>=t||45==t)return void(l.typing&&s(e));var n=e.ctrlKey&&!e.altKey||e.metaKey;!(16>t||t>20)||224==t||91==t||l.typing||n||(l.beforeChange(),l.typing=!0,l.add({},e),f=!0)}),e.on("MouseDown",function(e){l.typing&&s(e)}),e.addShortcut("meta+z","","Undo"),e.addShortcut("meta+y,meta+shift+z","","Redo"),e.on("AddUndo Undo Redo ClearUndos",function(t){t.isDefaultPrevented()||e.nodeChanged()}),l={data:u,typing:!1,beforeChange:function(){h||(d=e.selection.getBookmark(2,!0))},add:function(t,r){var i,o=e.settings,s;if(t=t||{},t.content=n(),h||e.removed)return null;if(s=u[c],e.fire("BeforeAddUndo",{level:t,lastLevel:s,originalEvent:r}).isDefaultPrevented())return null;if(s&&s.content==t.content)return null;if(u[c]&&(u[c].beforeBookmark=d),o.custom_undo_redo_levels&&u.length>o.custom_undo_redo_levels){for(i=0;i<u.length-1;i++)u[i]=u[i+1];u.length--,c=u.length}t.bookmark=e.selection.getBookmark(2,!0),c<u.length-1&&(u.length=c+1),u.push(t),c=u.length-1;var l={level:t,lastLevel:s,originalEvent:r};return e.fire("AddUndo",l),c>0&&(a(!0),e.fire("change",l)),t},undo:function(){var t;return l.typing&&(l.add(),l.typing=!1),c>0&&(t=u[--c],0===c&&a(!1),e.setContent(t.content,{format:"raw"}),e.selection.moveToBookmark(t.beforeBookmark),e.fire("undo",{level:t})),t},redo:function(){var t;return c<u.length-1&&(t=u[++c],e.setContent(t.content,{format:"raw"}),e.selection.moveToBookmark(t.bookmark),a(!0),e.fire("redo",{level:t})),t},clear:function(){u=[],c=0,l.typing=!1,e.fire("ClearUndos")},hasUndo:function(){return c>0||l.typing&&u[0]&&n()!=u[0].content},hasRedo:function(){return c<u.length-1&&!this.typing},transact:function(e){l.beforeChange();try{h++,e()}finally{h--}l.add()}}}}),r(F,[p,C,u],function(e,t,n){var r=n.ie&&n.ie<11;return function(i){function o(o){function h(e){return e&&a.isBlock(e)&&!/^(TD|TH|CAPTION|FORM)$/.test(e.nodeName)&&!/^(fixed|absolute)/i.test(e.style.position)&&"true"!==a.getContentEditable(e)}function p(e){var t;a.isBlock(e)&&(t=s.getRng(),e.appendChild(a.create("span",null,"\xa0")),s.select(e),e.lastChild.outerHTML="",s.setRng(t))}function m(e){var t=e,n=[],r;if(t){for(;t=t.firstChild;){if(a.isBlock(t))return;1!=t.nodeType||d[t.nodeName.toLowerCase()]||n.push(t)}for(r=n.length;r--;)t=n[r],!t.hasChildNodes()||t.firstChild==t.lastChild&&""===t.firstChild.nodeValue?a.remove(t):"A"==t.nodeName&&" "===(t.innerText||t.textContent)&&a.remove(t)}}function g(t){function r(e){for(;e;){if(1==e.nodeType||3==e.nodeType&&e.data&&/[\r\n\s]/.test(e.data))return e;e=e.nextSibling}}var i,o,l,c=t,u;if(t){if(n.ie&&n.ie<9&&B&&B.firstChild&&B.firstChild==B.lastChild&&"BR"==B.firstChild.tagName&&a.remove(B.firstChild),/^(LI|DT|DD)$/.test(t.nodeName)){var d=r(t.firstChild);d&&/^(UL|OL|DL)$/.test(d.nodeName)&&t.insertBefore(a.doc.createTextNode("\xa0"),t.firstChild)}if(l=a.createRng(),n.ie||t.normalize(),t.hasChildNodes()){for(i=new e(t,t);o=i.current();){if(3==o.nodeType){l.setStart(o,0),l.setEnd(o,0);break}if(f[o.nodeName.toLowerCase()]){l.setStartBefore(o),l.setEndBefore(o);break}c=o,o=i.next()}o||(l.setStart(c,0),l.setEnd(c,0))}else"BR"==t.nodeName?t.nextSibling&&a.isBlock(t.nextSibling)?((!D||9>D)&&(u=a.create("br"),t.parentNode.insertBefore(u,t)),l.setStartBefore(t),l.setEndBefore(t)):(l.setStartAfter(t),l.setEndAfter(t)):(l.setStart(t,0),l.setEnd(t,0));s.setRng(l),a.remove(u),s.scrollIntoView(t)}}function v(e){var t=l.forced_root_block;t&&t.toLowerCase()===e.tagName.toLowerCase()&&a.setAttribs(e,l.forced_root_block_attrs)}function y(e){var t=R,n,i,o,s=u.getTextInlineElements();if(e||"TABLE"==O?(n=a.create(e||F),v(n)):n=B.cloneNode(!1),o=n,l.keep_styles!==!1)do if(s[t.nodeName]){if("_mce_caret"==t.id)continue;i=t.cloneNode(!1),a.setAttrib(i,"id",""),n.hasChildNodes()?(i.appendChild(n.firstChild),n.appendChild(i)):(o=i,n.appendChild(i))}while(t=t.parentNode);return r||(o.innerHTML='<br data-mce-bogus="1">'),n}function b(t){var n,r,i;if(3==R.nodeType&&(t?A>0:A<R.nodeValue.length))return!1;if(R.parentNode==B&&z&&!t)return!0;if(t&&1==R.nodeType&&R==B.firstChild)return!0;if("TABLE"===R.nodeName||R.previousSibling&&"TABLE"==R.previousSibling.nodeName)return z&&!t||!z&&t;for(n=new e(R,B),3==R.nodeType&&(t&&0===A?n.prev():t||A!=R.nodeValue.length||n.next());r=n.current();){if(1===r.nodeType){if(!r.getAttribute("data-mce-bogus")&&(i=r.nodeName.toLowerCase(),d[i]&&"br"!==i))return!1}else if(3===r.nodeType&&!/^[ \t\r\n]*$/.test(r.nodeValue))return!1;t?n.prev():n.next()}return!0}function x(e,t){var n,r,o,s,l,c,d=F||"P";if(r=a.getParent(e,a.isBlock),c=i.getBody().nodeName.toLowerCase(),!r||!h(r)){if(r=r||T,!r.hasChildNodes())return n=a.create(d),v(n),r.appendChild(n),k.setStart(n,0),k.setEnd(n,0),n;for(s=e;s.parentNode!=r;)s=s.parentNode;for(;s&&!a.isBlock(s);)o=s,s=s.previousSibling;if(o&&u.isValidChild(c,d.toLowerCase())){for(n=a.create(d),v(n),o.parentNode.insertBefore(n,o),s=o;s&&!a.isBlock(s);)l=s.nextSibling,n.appendChild(s),s=l;k.setStart(e,t),k.setEnd(e,t)}}return e}function C(){function e(e){for(var t=P[e?"firstChild":"lastChild"];t&&1!=t.nodeType;)t=t[e?"nextSibling":"previousSibling"];return t===B}function t(){var e=P.parentNode;return/^(LI|DT|DD)$/.test(e.nodeName)?e:P}var n=P.parentNode.nodeName;/^(OL|UL|LI)$/.test(n)&&(F="LI"),H=F?y(F):a.create("BR"),e(!0)&&e()?"LI"==n?a.insertAfter(H,t()):a.replace(H,P):e(!0)?"LI"==n?(a.insertAfter(H,t()),H.appendChild(a.doc.createTextNode(" ")),H.appendChild(P)):P.parentNode.insertBefore(H,P):e()?(a.insertAfter(H,t()),p(H)):(P=t(),S=k.cloneRange(),S.setStartAfter(B),S.setEndAfter(P),L=S.extractContents(),"LI"==F&&"LI"==L.firstChild.nodeName?(H=L.firstChild,a.insertAfter(L,P)):(a.insertAfter(L,P),a.insertAfter(H,P))),a.remove(B),g(H),c.add()}function w(){i.execCommand("InsertLineBreak",!1,o)}function _(e){do 3===e.nodeType&&(e.nodeValue=e.nodeValue.replace(/^[\r\n]+/,"")),e=e.firstChild;while(e)}function E(e){var t=a.getRoot(),n,r;for(n=e;n!==t&&"false"!==a.getContentEditable(n);)"true"===a.getContentEditable(n)&&(r=n),n=n.parentNode;return n!==t?r:t}function N(e){var t;r||(e.normalize(),t=e.lastChild,(!t||/^(left|right)$/gi.test(a.getStyle(t,"float",!0)))&&a.add(e,"br"))}var k,S,T,R,A,B,D,M,H,L,P,O,I,F,z;if(k=s.getRng(!0),!o.isDefaultPrevented()){if(!k.collapsed)return void i.execCommand("Delete");if(new t(a).normalize(k),R=k.startContainer,A=k.startOffset,F=(l.force_p_newlines?"p":"")||l.forced_root_block,F=F?F.toUpperCase():"",D=a.doc.documentMode,M=o.shiftKey,1==R.nodeType&&R.hasChildNodes()&&(z=A>R.childNodes.length-1,R=R.childNodes[Math.min(A,R.childNodes.length-1)]||R,A=z&&3==R.nodeType?R.nodeValue.length:0),T=E(R)){if(c.beforeChange(),!a.isBlock(T)&&T!=a.getRoot())return void((!F||M)&&w());if((F&&!M||!F&&M)&&(R=x(R,A)),B=a.getParent(R,a.isBlock),P=B?a.getParent(B.parentNode,a.isBlock):null,O=B?B.nodeName.toUpperCase():"",I=P?P.nodeName.toUpperCase():"","LI"!=I||o.ctrlKey||(B=P,O=I),/^(LI|DT|DD)$/.test(O)){if(!F&&M)return void w();if(a.isEmpty(B))return void C()}if("PRE"==O&&l.br_in_pre!==!1){if(!M)return void w()}else if(!F&&!M&&"LI"!=O||F&&M)return void w();F&&B===i.getBody()||(F=F||"P",b()?(H=/^(H[1-6]|PRE|FIGURE)$/.test(O)&&"HGROUP"!=I?y(F):y(),l.end_container_on_empty_block&&h(P)&&a.isEmpty(B)?H=a.split(P,B):a.insertAfter(H,B),g(H)):b(!0)?(H=B.parentNode.insertBefore(y(),B),p(H),g(B)):(S=k.cloneRange(),S.setEndAfter(B),L=S.extractContents(),_(L),H=L.firstChild,a.insertAfter(L,B),m(H),N(B),g(H)),a.setAttrib(H,"id",""),i.fire("NewBlock",{newBlock:H}),c.add())}}}var a=i.dom,s=i.selection,l=i.settings,c=i.undoManager,u=i.schema,d=u.getNonEmptyElements(),f=u.getMoveCaretBeforeOnEnterElements();i.on("keydown",function(e){13==e.keyCode&&o(e)!==!1&&e.preventDefault()})}}),r(z,[],function(){return function(e){function t(){var t=i.getStart(),s=e.getBody(),l,c,u,d,f,h,p,m=-16777215,g,v,y,b,x;if(x=n.forced_root_block,t&&1===t.nodeType&&x){for(;t&&t!=s;){if(a[t.nodeName])return;t=t.parentNode}if(l=i.getRng(),l.setStart){c=l.startContainer,u=l.startOffset,d=l.endContainer,f=l.endOffset;try{v=e.getDoc().activeElement===s}catch(C){}}else l.item&&(t=l.item(0),l=e.getDoc().body.createTextRange(),l.moveToElementText(t)),v=l.parentElement().ownerDocument===e.getDoc(),y=l.duplicate(),y.collapse(!0),u=-1*y.move("character",m),y.collapsed||(y=l.duplicate(),y.collapse(!1),f=-1*y.move("character",m)-u);for(t=s.firstChild,b=s.nodeName.toLowerCase();t;)if((3===t.nodeType||1==t.nodeType&&!a[t.nodeName])&&o.isValidChild(b,x.toLowerCase())){if(3===t.nodeType&&0===t.nodeValue.length){p=t,t=t.nextSibling,r.remove(p);continue}h||(h=r.create(x,e.settings.forced_root_block_attrs),t.parentNode.insertBefore(h,t),g=!0),p=t,t=t.nextSibling,h.appendChild(p)}else h=null,t=t.nextSibling;if(g&&v){if(l.setStart)l.setStart(c,u),l.setEnd(d,f),i.setRng(l);else try{l=e.getDoc().body.createTextRange(),l.moveToElementText(s),l.collapse(!0),l.moveStart("character",u),f>0&&l.moveEnd("character",f),l.select()}catch(C){}e.nodeChanged()}}}var n=e.settings,r=e.dom,i=e.selection,o=e.schema,a=o.getBlockElements();n.forced_root_block&&e.on("NodeChange",t)}}),r(W,[T,u,d,L,C,p],function(e,n,r,i,o,a){var s=r.each,l=r.extend,c=r.map,u=r.inArray,d=r.explode,f=n.gecko,h=n.ie,p=n.ie&&n.ie<11,m=!0,g=!1;return function(r){function v(e,t,n,i){var o,a,c=0;if(/^(mceAddUndoLevel|mceEndUndoLevel|mceBeginUndoLevel|mceRepaint)$/.test(e)||i&&i.skip_focus||r.focus(),i=l({},i),i=r.fire("BeforeExecCommand",{command:e,ui:t,value:n}),i.isDefaultPrevented())return!1;if(a=e.toLowerCase(),o=H.exec[a])return o(a,t,n),r.fire("ExecCommand",{command:e,ui:t,value:n}),!0;if(s(r.plugins,function(i){return i.execCommand&&i.execCommand(e,t,n)?(r.fire("ExecCommand",{command:e,ui:t,value:n}),c=!0,!1):void 0}),c)return c;if(r.theme&&r.theme.execCommand&&r.theme.execCommand(e,t,n))return r.fire("ExecCommand",{command:e,ui:t,value:n}),!0;try{c=r.getDoc().execCommand(e,t,n)}catch(u){}return c?(r.fire("ExecCommand",{command:e,ui:t,value:n}),!0):!1}function y(e){var t;if(!r._isHidden()){if(e=e.toLowerCase(),t=H.state[e])return t(e);try{return r.getDoc().queryCommandState(e)}catch(n){}return!1}}function b(e){var t;if(!r._isHidden()){if(e=e.toLowerCase(),t=H.value[e])return t(e);try{return r.getDoc().queryCommandValue(e)}catch(n){}}}function x(e,t){t=t||"exec",s(e,function(e,n){s(n.toLowerCase().split(","),function(n){H[t][n]=e})})}function C(e,t,n){e=e.toLowerCase(),H.exec[e]=function(e,i,o,a){return t.call(n||r,i,o,a)}}function w(e){if(e=e.toLowerCase(),H.exec[e])return!0;try{return r.getDoc().queryCommandSupported(e)}catch(t){}return!1}function _(e,t,n){e=e.toLowerCase(),H.state[e]=function(){return t.call(n||r)}}function E(e,t,n){e=e.toLowerCase(),H.value[e]=function(){return t.call(n||r)}}function N(e){return e=e.toLowerCase(),!!H.exec[e]}function k(e,n,i){return n===t&&(n=g),i===t&&(i=null),r.getDoc().execCommand(e,n,i)}function S(e){return M.match(e)}function T(e,n){M.toggle(e,n?{value:n}:t),r.nodeChanged()}function R(e){P=D.getBookmark(e)}function A(){D.moveToBookmark(P)}var B,D,M,H={state:{},exec:{},value:{}},L=r.settings,P;r.on("PreInit",function(){B=r.dom,D=r.selection,L=r.settings,M=r.formatter}),l(this,{execCommand:v,queryCommandState:y,queryCommandValue:b,queryCommandSupported:w,addCommands:x,addCommand:C,addQueryStateHandler:_,addQueryValueHandler:E,hasCustomCommand:N}),x({"mceResetDesignMode,mceBeginUndoLevel":function(){},"mceEndUndoLevel,mceAddUndoLevel":function(){r.undoManager.add()},"Cut,Copy,Paste":function(e){var t=r.getDoc(),i;try{k(e)}catch(o){i=m}if(i||!t.queryCommandSupported(e)){var a=r.translate("Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.");n.mac&&(a=a.replace(/Ctrl\+/g,"\u2318+")),r.windowManager.alert(a)}},unlink:function(){if(D.isCollapsed()){var e=D.getNode();return void("A"==e.tagName&&r.dom.remove(e,!0))}M.remove("link")},"JustifyLeft,JustifyCenter,JustifyRight,JustifyFull,JustifyNone":function(e){var t=e.substring(7);"full"==t&&(t="justify"),s("left,center,right,justify".split(","),function(e){t!=e&&M.remove("align"+e)}),"none"!=t&&(T("align"+t),v("mceRepaint"))},"InsertUnorderedList,InsertOrderedList":function(e){var t,n;k(e),t=B.getParent(D.getNode(),"ol,ul"),t&&(n=t.parentNode,/^(H[1-6]|P|ADDRESS|PRE)$/.test(n.nodeName)&&(R(),B.split(n,t),A()))},"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":function(e){T(e)},"ForeColor,HiliteColor,FontName":function(e,t,n){T(e,n)},FontSize:function(e,t,n){var r,i;n>=1&&7>=n&&(i=d(L.font_size_style_values),r=d(L.font_size_classes),n=r?r[n-1]||n:i[n-1]||n),T(e,n)},RemoveFormat:function(e){M.remove(e)},mceBlockQuote:function(){T("blockquote")},FormatBlock:function(e,t,n){return T(n||"p")},mceCleanup:function(){var e=D.getBookmark();r.setContent(r.getContent({cleanup:m}),{cleanup:m}),D.moveToBookmark(e)},mceRemoveNode:function(e,t,n){var i=n||D.getNode();i!=r.getBody()&&(R(),r.dom.remove(i,m),A())},mceSelectNodeDepth:function(e,t,n){var i=0;B.getParent(D.getNode(),function(e){return 1==e.nodeType&&i++==n?(D.select(e),g):void 0},r.getBody())},mceSelectNode:function(e,t,n){D.select(n)},mceInsertContent:function(t,n,o){function a(e){function t(e){return r[e]&&3==r[e].nodeType}var n,r,i;return n=D.getRng(!0),r=n.startContainer,i=n.startOffset,3==r.nodeType&&(i>0?e=e.replace(/^&nbsp;/," "):t("previousSibling")||(e=e.replace(/^ /,"&nbsp;")),i<r.length?e=e.replace(/&nbsp;(<br>|)$/," "):t("nextSibling")||(e=e.replace(/(&nbsp;| )(<br>|)$/,"&nbsp;"))),e}function l(){var e,t,n;e=D.getRng(!0),t=e.startContainer,n=e.startOffset,3==t.nodeType&&e.collapsed&&("\xa0"===t.data[n]?(t.deleteData(n,1),/[\u00a0| ]$/.test(o)||(o+=" ")):"\xa0"===t.data[n-1]&&(t.deleteData(n-1,1),/[\u00a0| ]$/.test(o)||(o=" "+o)))}function c(e){if(_)for(x=e.firstChild;x;x=x.walk(!0))N[x.name]&&x.attr("data-mce-new","true")}function u(){if(_){var e=r.getBody(),t=new i(B);s(B.select("*[data-mce-new]"),function(n){n.removeAttribute("data-mce-new");for(var r=n.parentNode;r&&r!=e;r=r.parentNode)t.compare(r,n)&&B.remove(n,!0)})}}var d,f,p,m,g,v,y,b,x,C,w,_,E,N=r.schema.getTextInlineElements();"string"!=typeof o&&(_=o.merge,E=o.data,o=o.content),/^ | $/.test(o)&&(o=a(o)),d=r.parser,f=new e({},r.schema),w='<span id="mce_marker" data-mce-type="bookmark">&#xFEFF;&#x200B;</span>',v={content:o,format:"html",selection:!0},r.fire("BeforeSetContent",v),o=v.content,-1==o.indexOf("{$caret}")&&(o+="{$caret}"),o=o.replace(/\{\$caret\}/,w),b=D.getRng();var k=b.startContainer||(b.parentElement?b.parentElement():null),S=r.getBody();k===S&&D.isCollapsed()&&B.isBlock(S.firstChild)&&B.isEmpty(S.firstChild)&&(b=B.createRng(),b.setStart(S.firstChild,0),b.setEnd(S.firstChild,0),D.setRng(b)),D.isCollapsed()||(r.getDoc().execCommand("Delete",!1,null),l()),p=D.getNode();var T={context:p.nodeName.toLowerCase(),data:E};if(g=d.parse(o,T),c(g),x=g.lastChild,"mce_marker"==x.attr("id"))for(y=x,x=x.prev;x;x=x.walk(!0))if(3==x.type||!B.isBlock(x.name)){r.schema.isValidChild(x.parent.name,"span")&&x.parent.insert(y,x,"br"===x.name);break}if(T.invalid){for(D.setContent(w),p=D.getNode(),m=r.getBody(),9==p.nodeType?p=x=m:x=p;x!==m;)p=x,x=x.parentNode;o=p==m?m.innerHTML:B.getOuterHTML(p),o=f.serialize(d.parse(o.replace(/<span (id="mce_marker"|id=mce_marker).+?<\/span>/i,function(){return f.serialize(g)}))),p==m?B.setHTML(m,o):B.setOuterHTML(p,o)}else o=f.serialize(g),x=p.firstChild,C=p.lastChild,!x||x===C&&"BR"===x.nodeName?B.setHTML(p,o):D.setContent(o);u(),y=B.get("mce_marker"),D.scrollIntoView(y),b=B.createRng(),x=y.previousSibling,x&&3==x.nodeType?(b.setStart(x,x.nodeValue.length),h||(C=y.nextSibling,C&&3==C.nodeType&&(x.appendData(C.data),C.parentNode.removeChild(C)))):(b.setStartBefore(y),b.setEndBefore(y)),B.remove(y),D.setRng(b),r.fire("SetContent",v),r.addVisual()},mceInsertRawHTML:function(e,t,n){D.setContent("tiny_mce_marker"),r.setContent(r.getContent().replace(/tiny_mce_marker/g,function(){return n}))},mceToggleFormat:function(e,t,n){T(n)},mceSetContent:function(e,t,n){r.setContent(n)},"Indent,Outdent":function(e){var t,n,i;t=L.indentation,n=/[a-z%]+$/i.exec(t),t=parseInt(t,10),y("InsertUnorderedList")||y("InsertOrderedList")?k(e):(L.forced_root_block||B.getParent(D.getNode(),B.isBlock)||M.apply("div"),s(D.getSelectedBlocks(),function(o){if("LI"!=o.nodeName){var a=r.getParam("indent_use_margin",!1)?"margin":"padding";a+="rtl"==B.getStyle(o,"direction",!0)?"Right":"Left","outdent"==e?(i=Math.max(0,parseInt(o.style[a]||0,10)-t),B.setStyle(o,a,i?i+n:"")):(i=parseInt(o.style[a]||0,10)+t+n,B.setStyle(o,a,i))}}))},mceRepaint:function(){if(f)try{R(m),D.getSel()&&D.getSel().selectAllChildren(r.getBody()),D.collapse(m),A()}catch(e){}},InsertHorizontalRule:function(){r.execCommand("mceInsertContent",!1,"<hr />")},mceToggleVisualAid:function(){r.hasVisual=!r.hasVisual,r.addVisual()},mceReplaceContent:function(e,t,n){r.execCommand("mceInsertContent",!1,n.replace(/\{\$selection\}/g,D.getContent({format:"text"})))},mceInsertLink:function(e,t,n){var r;"string"==typeof n&&(n={href:n}),r=B.getParent(D.getNode(),"a"),n.href=n.href.replace(" ","%20"),r&&n.href||M.remove("link"),n.href&&M.apply("link",n,r)},selectAll:function(){var e=B.getRoot(),t;D.getRng().setStart?(t=B.createRng(),t.setStart(e,0),t.setEnd(e,e.childNodes.length),D.setRng(t)):(t=D.getRng(),t.item||(t.moveToElementText(e),t.select()))},"delete":function(){k("Delete");var e=r.getBody();B.isEmpty(e)&&(r.setContent(""),e.firstChild&&B.isBlock(e.firstChild)?r.selection.setCursorLocation(e.firstChild,0):r.selection.setCursorLocation(e,0))},mceNewDocument:function(){r.setContent("")},InsertLineBreak:function(e,t,n){function i(){for(var e=new a(h,v),t,n=r.schema.getNonEmptyElements();t=e.next();)if(n[t.nodeName.toLowerCase()]||t.length>0)return!0}var s=n,l,c,u,d=D.getRng(!0);new o(B).normalize(d);var f=d.startOffset,h=d.startContainer;if(1==h.nodeType&&h.hasChildNodes()){var g=f>h.childNodes.length-1;h=h.childNodes[Math.min(f,h.childNodes.length-1)]||h,f=g&&3==h.nodeType?h.nodeValue.length:0}var v=B.getParent(h,B.isBlock),y=v?v.nodeName.toUpperCase():"",b=v?B.getParent(v.parentNode,B.isBlock):null,x=b?b.nodeName.toUpperCase():"",C=s&&s.ctrlKey;"LI"!=x||C||(v=b,y=x),h&&3==h.nodeType&&f>=h.nodeValue.length&&(p||i()||(l=B.create("br"),d.insertNode(l),d.setStartAfter(l),d.setEndAfter(l),c=!0)),l=B.create("br"),d.insertNode(l);var w=B.doc.documentMode;return p&&"PRE"==y&&(!w||8>w)&&l.parentNode.insertBefore(B.doc.createTextNode("\r"),l),u=B.create("span",{},"&nbsp;"),l.parentNode.insertBefore(u,l),D.scrollIntoView(u),B.remove(u),c?(d.setStartBefore(l),d.setEndBefore(l)):(d.setStartAfter(l),d.setEndAfter(l)),D.setRng(d),r.undoManager.add(),m}}),x({"JustifyLeft,JustifyCenter,JustifyRight,JustifyFull":function(e){var t="align"+e.substring(7),n=D.isCollapsed()?[B.getParent(D.getNode(),B.isBlock)]:D.getSelectedBlocks(),r=c(n,function(e){return!!M.matchNode(e,t)});return-1!==u(r,m)},"Bold,Italic,Underline,Strikethrough,Superscript,Subscript":function(e){return S(e)},mceBlockQuote:function(){return S("blockquote")},Outdent:function(){var e;if(L.inline_styles){if((e=B.getParent(D.getStart(),B.isBlock))&&parseInt(e.style.paddingLeft,10)>0)return m;if((e=B.getParent(D.getEnd(),B.isBlock))&&parseInt(e.style.paddingLeft,10)>0)return m}return y("InsertUnorderedList")||y("InsertOrderedList")||!L.inline_styles&&!!B.getParent(D.getNode(),"BLOCKQUOTE")},"InsertUnorderedList,InsertOrderedList":function(e){var t=B.getParent(D.getNode(),"ul,ol");return t&&("insertunorderedlist"===e&&"UL"===t.tagName||"insertorderedlist"===e&&"OL"===t.tagName)}},"state"),x({"FontSize,FontName":function(e){var t=0,n;return(n=B.getParent(D.getNode(),"span"))&&(t="fontsize"==e?n.style.fontSize:n.style.fontFamily.replace(/, /g,",").replace(/[\'\"]/g,"").toLowerCase()),t}},"value"),x({Undo:function(){r.undoManager.undo()},Redo:function(){r.undoManager.redo()}})}}),r(V,[d],function(e){function t(e,o){var a=this,s,l;if(e=r(e),o=a.settings=o||{},s=o.base_uri,/^([\w\-]+):([^\/]{2})/i.test(e)||/^\s*#/.test(e))return void(a.source=e);var c=0===e.indexOf("//");0!==e.indexOf("/")||c||(e=(s?s.protocol||"http":"http")+"://mce_host"+e),/^[\w\-]*:?\/\//.test(e)||(l=o.base_uri?o.base_uri.path:new t(location.href).directory,""===o.base_uri.protocol?e="//mce_host"+a.toAbsPath(l,e):(e=/([^#?]*)([#?]?.*)/.exec(e),e=(s&&s.protocol||"http")+"://mce_host"+a.toAbsPath(l,e[1])+e[2])),e=e.replace(/@@/g,"(mce_at)"),e=/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@\/]*):?([^:@\/]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/.exec(e),n(i,function(t,n){var r=e[n];r&&(r=r.replace(/\(mce_at\)/g,"@@")),a[t]=r}),s&&(a.protocol||(a.protocol=s.protocol),a.userInfo||(a.userInfo=s.userInfo),a.port||"mce_host"!==a.host||(a.port=s.port),a.host&&"mce_host"!==a.host||(a.host=s.host),a.source=""),c&&(a.protocol="")}var n=e.each,r=e.trim,i="source protocol authority userInfo user password host port relative path directory file query anchor".split(" "),o={ftp:21,http:80,https:443,mailto:25};return t.prototype={setPath:function(e){var t=this;e=/^(.*?)\/?(\w+)?$/.exec(e),t.path=e[0],t.directory=e[1],t.file=e[2],t.source="",t.getURI()},toRelative:function(e){var n=this,r;if("./"===e)return e;if(e=new t(e,{base_uri:n}),"mce_host"!=e.host&&n.host!=e.host&&e.host||n.port!=e.port||n.protocol!=e.protocol&&""!==e.protocol)return e.getURI();var i=n.getURI(),o=e.getURI();return i==o||"/"==i.charAt(i.length-1)&&i.substr(0,i.length-1)==o?i:(r=n.toRelPath(n.path,e.path),e.query&&(r+="?"+e.query),e.anchor&&(r+="#"+e.anchor),r)},toAbsolute:function(e,n){return e=new t(e,{base_uri:this}),e.getURI(n&&this.isSameOrigin(e))},isSameOrigin:function(e){if(this.host==e.host&&this.protocol==e.protocol){if(this.port==e.port)return!0;var t=o[this.protocol];if(t&&(this.port||t)==(e.port||t))return!0}return!1},toRelPath:function(e,t){var n,r=0,i="",o,a;if(e=e.substring(0,e.lastIndexOf("/")),e=e.split("/"),n=t.split("/"),e.length>=n.length)for(o=0,a=e.length;a>o;o++)if(o>=n.length||e[o]!=n[o]){r=o+1;break}if(e.length<n.length)for(o=0,a=n.length;a>o;o++)if(o>=e.length||e[o]!=n[o]){r=o+1;break}if(1===r)return t;for(o=0,a=e.length-(r-1);a>o;o++)i+="../";for(o=r-1,a=n.length;a>o;o++)i+=o!=r-1?"/"+n[o]:n[o];return i},toAbsPath:function(e,t){var r,i=0,o=[],a,s;for(a=/\/$/.test(t)?"/":"",e=e.split("/"),t=t.split("/"),n(e,function(e){e&&o.push(e)}),e=o,r=t.length-1,o=[];r>=0;r--)0!==t[r].length&&"."!==t[r]&&(".."!==t[r]?i>0?i--:o.push(t[r]):i++);return r=e.length-i,s=0>=r?o.reverse().join("/"):e.slice(0,r).join("/")+"/"+o.reverse().join("/"),0!==s.indexOf("/")&&(s="/"+s),a&&s.lastIndexOf("/")!==s.length-1&&(s+=a),s},getURI:function(e){var t,n=this;return(!n.source||e)&&(t="",e||(t+=n.protocol?n.protocol+"://":"//",n.userInfo&&(t+=n.userInfo+"@"),n.host&&(t+=n.host),n.port&&(t+=":"+n.port)),n.path&&(t+=n.path),n.query&&(t+="?"+n.query),n.anchor&&(t+="#"+n.anchor),n.source=t),n.source}},t.parseDataUri=function(e){var t,n;return e=decodeURIComponent(e).split(","),n=/data:([^;]+)/.exec(e[0]),n&&(t=n[1]),{type:t,data:e[1]}},t}),r(U,[d],function(e){function t(){}var n=e.each,r=e.extend,i,o;return t.extend=i=function(e){function t(){var e,t,n,r=this;if(!o&&(r.init&&r.init.apply(r,arguments),t=r.Mixins))for(e=t.length;e--;)n=t[e],n.init&&n.init.apply(r,arguments)}function a(){return this}function s(e,t){return function(){var n=this,r=n._super,i;return n._super=c[e],i=t.apply(n,arguments),n._super=r,i}}var l=this,c=l.prototype,u,d,f;o=!0,u=new l,o=!1,e.Mixins&&(n(e.Mixins,function(t){t=t;for(var n in t)"init"!==n&&(e[n]=t[n])}),c.Mixins&&(e.Mixins=c.Mixins.concat(e.Mixins))),e.Methods&&n(e.Methods.split(","),function(t){e[t]=a}),e.Properties&&n(e.Properties.split(","),function(t){var n="_"+t;e[t]=function(e){var t=this,r;return e!==r?(t[n]=e,t):t[n]}}),e.Statics&&n(e.Statics,function(e,n){t[n]=e}),e.Defaults&&c.Defaults&&(e.Defaults=r({},c.Defaults,e.Defaults));for(d in e)f=e[d],"function"==typeof f&&c[d]?u[d]=s(d,f):u[d]=f;return t.prototype=u,t.constructor=t,t.extend=i,t},t}),r($,[d],function(e){function t(t){function n(){return!1}function r(){return!0}function i(e,i){var o,s,l,c;if(e=e.toLowerCase(),i=i||{},i.type=e,i.target||(i.target=u),i.preventDefault||(i.preventDefault=function(){i.isDefaultPrevented=r},i.stopPropagation=function(){i.isPropagationStopped=r},i.stopImmediatePropagation=function(){i.isImmediatePropagationStopped=r},i.isDefaultPrevented=n,i.isPropagationStopped=n,i.isImmediatePropagationStopped=n),t.beforeFire&&t.beforeFire(i),o=d[e])for(s=0,l=o.length;l>s;s++){if(c=o[s],c.once&&a(e,c.func),i.isImmediatePropagationStopped())return i.stopPropagation(),i;if(c.func.call(u,i)===!1)return i.preventDefault(),i}return i}function o(t,r,i,o){var a,s,l;if(r===!1&&(r=n),r)for(r={func:r},o&&e.extend(r,o),s=t.toLowerCase().split(" "),l=s.length;l--;)t=s[l],a=d[t],a||(a=d[t]=[],f(t,!0)),i?a.unshift(r):a.push(r);return c}function a(e,t){var n,r,i,o,a;if(e)for(o=e.toLowerCase().split(" "),n=o.length;n--;){if(e=o[n],r=d[e],!e){for(i in d)f(i,!1),delete d[i];return c}if(r){if(t)for(a=r.length;a--;)r[a].func===t&&(r=r.slice(0,a).concat(r.slice(a+1)),d[e]=r);else r.length=0;r.length||(f(e,!1),delete d[e])}}else{for(e in d)f(e,!1);d={}}return c}function s(e,t,n){return o(e,t,n,{once:!0})}function l(e){return e=e.toLowerCase(),!(!d[e]||0===d[e].length)}var c=this,u,d={},f;t=t||{},u=t.scope||c,f=t.toggleEvent||n,c.fire=i,c.on=o,c.off=a,c.once=s,c.has=l}var n=e.makeMap("focus blur focusin focusout click dblclick mousedown mouseup mousemove mouseover beforepaste paste cut copy selectionchange mouseout mouseenter mouseleave wheel keydown keypress keyup input contextmenu dragstart dragend dragover draggesture dragdrop drop drag submit compositionstart compositionend compositionupdate touchstart touchend"," ");return t.isNative=function(e){return!!n[e.toLowerCase()]},t}),r(q,[],function(){function e(e){this.create=e.create}return e.create=function(t,n){return new e({create:function(e,r){function i(t){e.set(r,t.value)}function o(e){t.set(n,e.value)}var a;return e.on("change:"+r,o),t.on("change:"+n,i),a=e._bindings,a||(a=e._bindings=[],e.on("destroy",function(){for(var e=a.length;e--;)a[e]()})),a.push(function(){t.off("change:"+n,i)}),t.get(n)}})},e}),r(j,[$],function(e){function t(t){return t._eventDispatcher||(t._eventDispatcher=new e({scope:t,toggleEvent:function(n,r){e.isNative(n)&&t.toggleNativeEvent&&t.toggleNativeEvent(n,r)}})),t._eventDispatcher}return{fire:function(e,n,r){var i=this;if(i.removed&&"remove"!==e)return n;if(n=t(i).fire(e,n,r),r!==!1&&i.parent)for(var o=i.parent();o&&!n.isPropagationStopped();)o.fire(e,n,!1),o=o.parent();return n},on:function(e,n,r){return t(this).on(e,n,r)},off:function(e,n){return t(this).off(e,n)},once:function(e,n){return t(this).once(e,n)},hasEventListeners:function(e){return t(this).has(e)}}}),r(K,[q,j,U,d],function(e,t,n,r){function i(e,t){var n,o;if(e===t)return!0;if(null===e||null===t)return e===t;if("object"!=typeof e||"object"!=typeof t)return e===t;if(r.isArray(t)){if(e.length!==t.length)return!1;for(n=e.length;n--;)if(!i(e[n],t[n]))return!1}o={};for(n in t){if(!i(e[n],t[n]))return!1;o[n]=!0}for(n in e)if(!o[n]&&!i(e[n],t[n]))return!1;return!0}return n.extend({Mixins:[t],init:function(t){var n,r;t=t||{};for(n in t)r=t[n],r instanceof e&&(t[n]=r.create(this,n));this.data=t},set:function(t,n){var r,o,a=this.data[t];if(n instanceof e&&(n=n.create(this,t)),"object"==typeof t){for(r in t)this.set(r,t[r]);return this}return i(a,n)||(this.data[t]=n,o={target:this,name:t,value:n,oldValue:a},this.fire("change:"+t,o),this.fire("change",o)),this},get:function(e){return this.data[e]},has:function(e){return e in this.data},bind:function(t){return e.create(this,t)},destroy:function(){this.fire("destroy")}})}),r(Y,[U],function(e){function t(e){for(var t=[],n=e.length,r;n--;)r=e[n],r.__checked||(t.push(r),r.__checked=1);for(n=t.length;n--;)delete t[n].__checked;return t}var n=/^([\w\\*]+)?(?:#([\w\\]+))?(?:\.([\w\\\.]+))?(?:\[\@?([\w\\]+)([\^\$\*!~]?=)([\w\\]+)\])?(?:\:(.+))?/i,r=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,i=/^\s*|\s*$/g,o,a=e.extend({
7
+ init:function(e){function t(e){return e?(e=e.toLowerCase(),function(t){return"*"===e||t.type===e}):void 0}function o(e){return e?function(t){return t._name===e}:void 0}function a(e){return e?(e=e.split("."),function(t){for(var n=e.length;n--;)if(!t.classes.contains(e[n]))return!1;return!0}):void 0}function s(e,t,n){return e?function(r){var i=r[e]?r[e]():"";return t?"="===t?i===n:"*="===t?i.indexOf(n)>=0:"~="===t?(" "+i+" ").indexOf(" "+n+" ")>=0:"!="===t?i!=n:"^="===t?0===i.indexOf(n):"$="===t?i.substr(i.length-n.length)===n:!1:!!n}:void 0}function l(e){var t;return e?(e=/(?:not\((.+)\))|(.+)/i.exec(e),e[1]?(t=u(e[1],[]),function(e){return!d(e,t)}):(e=e[2],function(t,n,r){return"first"===e?0===n:"last"===e?n===r-1:"even"===e?n%2===0:"odd"===e?n%2===1:t[e]?t[e]():!1})):void 0}function c(e,r,c){function u(e){e&&r.push(e)}var d;return d=n.exec(e.replace(i,"")),u(t(d[1])),u(o(d[2])),u(a(d[3])),u(s(d[4],d[5],d[6])),u(l(d[7])),r.psuedo=!!d[7],r.direct=c,r}function u(e,t){var n=[],i,o,a;do if(r.exec(""),o=r.exec(e),o&&(e=o[3],n.push(o[1]),o[2])){i=o[3];break}while(o);for(i&&u(i,t),e=[],a=0;a<n.length;a++)">"!=n[a]&&e.push(c(n[a],[],">"===n[a-1]));return t.push(e),t}var d=this.match;this._selectors=u(e,[])},match:function(e,t){var n,r,i,o,a,s,l,c,u,d,f,h,p;for(t=t||this._selectors,n=0,r=t.length;r>n;n++){for(a=t[n],o=a.length,p=e,h=0,i=o-1;i>=0;i--)for(c=a[i];p;){if(c.psuedo)for(f=p.parent().items(),u=d=f.length;u--&&f[u]!==p;);for(s=0,l=c.length;l>s;s++)if(!c[s](p,u,d)){s=l+1;break}if(s===l){h++;break}if(i===o-1)break;p=p.parent()}if(h===o)return!0}return!1},find:function(e){function n(e,t,i){var o,a,s,l,c,u=t[i];for(o=0,a=e.length;a>o;o++){for(c=e[o],s=0,l=u.length;l>s;s++)if(!u[s](c,o,a)){s=l+1;break}if(s===l)i==t.length-1?r.push(c):c.items&&n(c.items(),t,i+1);else if(u.direct)return;c.items&&n(c.items(),t,i)}}var r=[],i,s,l=this._selectors;if(e.items){for(i=0,s=l.length;s>i;i++)n(e.items(),l[i],0);s>1&&(r=t(r))}return o||(o=a.Collection),new o(r)}});return a}),r(G,[d,Y,U],function(e,t,n){var r,i,o=Array.prototype.push,a=Array.prototype.slice;return i={length:0,init:function(e){e&&this.add(e)},add:function(t){var n=this;return e.isArray(t)?o.apply(n,t):t instanceof r?n.add(t.toArray()):o.call(n,t),n},set:function(e){var t=this,n=t.length,r;for(t.length=0,t.add(e),r=t.length;n>r;r++)delete t[r];return t},filter:function(e){var n=this,i,o,a=[],s,l;for("string"==typeof e?(e=new t(e),l=function(t){return e.match(t)}):l=e,i=0,o=n.length;o>i;i++)s=n[i],l(s)&&a.push(s);return new r(a)},slice:function(){return new r(a.apply(this,arguments))},eq:function(e){return-1===e?this.slice(e):this.slice(e,+e+1)},each:function(t){return e.each(this,t),this},toArray:function(){return e.toArray(this)},indexOf:function(e){for(var t=this,n=t.length;n--&&t[n]!==e;);return n},reverse:function(){return new r(e.toArray(this).reverse())},hasClass:function(e){return this[0]?this[0].classes.contains(e):!1},prop:function(e,t){var n=this,r,i;return t!==r?(n.each(function(n){n[e]&&n[e](t)}),n):(i=n[0],i&&i[e]?i[e]():void 0)},exec:function(t){var n=this,r=e.toArray(arguments).slice(1);return n.each(function(e){e[t]&&e[t].apply(e,r)}),n},remove:function(){for(var e=this.length;e--;)this[e].remove();return this},addClass:function(e){return this.each(function(t){t.classes.add(e)})},removeClass:function(e){return this.each(function(t){t.classes.remove(e)})}},e.each("fire on off show hide append prepend before after reflow".split(" "),function(t){i[t]=function(){var n=e.toArray(arguments);return this.each(function(e){t in e&&e[t].apply(e,n)}),this}}),e.each("text name disabled active selected checked visible parent value data".split(" "),function(e){i[e]=function(t){return this.prop(e,t)}}),r=n.extend(i),t.Collection=r,r}),r(X,[d,y],function(e,t){var n=0;return{id:function(){return"mceu_"+n++},createFragment:function(e){return t.DOM.createFragment(e)},getWindowSize:function(){return t.DOM.getViewPort()},getSize:function(e){var t,n;if(e.getBoundingClientRect){var r=e.getBoundingClientRect();t=Math.max(r.width||r.right-r.left,e.offsetWidth),n=Math.max(r.height||r.bottom-r.bottom,e.offsetHeight)}else t=e.offsetWidth,n=e.offsetHeight;return{width:t,height:n}},getPos:function(e,n){return t.DOM.getPos(e,n)},getViewPort:function(e){return t.DOM.getViewPort(e)},get:function(e){return document.getElementById(e)},addClass:function(e,n){return t.DOM.addClass(e,n)},removeClass:function(e,n){return t.DOM.removeClass(e,n)},hasClass:function(e,n){return t.DOM.hasClass(e,n)},toggleClass:function(e,n,r){return t.DOM.toggleClass(e,n,r)},css:function(e,n,r){return t.DOM.setStyle(e,n,r)},getRuntimeStyle:function(e,n){return t.DOM.getStyle(e,n,!0)},on:function(e,n,r,i){return t.DOM.bind(e,n,r,i)},off:function(e,n,r){return t.DOM.unbind(e,n,r)},fire:function(e,n,r){return t.DOM.fire(e,n,r)},innerHtml:function(e,n){t.DOM.setHTML(e,n)}}}),r(J,[],function(){return{parseBox:function(e){var t,n=10;if(e)return"number"==typeof e?(e=e||0,{top:e,left:e,bottom:e,right:e}):(e=e.split(" "),t=e.length,1===t?e[1]=e[2]=e[3]=e[0]:2===t?(e[2]=e[0],e[3]=e[1]):3===t&&(e[3]=e[1]),{top:parseInt(e[0],n)||0,right:parseInt(e[1],n)||0,bottom:parseInt(e[2],n)||0,left:parseInt(e[3],n)||0})},measureBox:function(e,t){function n(t){var n=document.defaultView;return n?(t=t.replace(/[A-Z]/g,function(e){return"-"+e}),n.getComputedStyle(e,null).getPropertyValue(t)):e.currentStyle[t]}function r(e){var t=parseFloat(n(e),10);return isNaN(t)?0:t}return{top:r(t+"TopWidth"),right:r(t+"RightWidth"),bottom:r(t+"BottomWidth"),left:r(t+"LeftWidth")}}}}),r(Q,[d],function(e){function t(){}function n(e){this.cls=[],this.cls._map={},this.onchange=e||t,this.prefix=""}return e.extend(n.prototype,{add:function(e){return e&&!this.contains(e)&&(this.cls._map[e]=!0,this.cls.push(e),this._change()),this},remove:function(e){if(this.contains(e)){for(var t=0;t<this.cls.length&&this.cls[t]!==e;t++);this.cls.splice(t,1),delete this.cls._map[e],this._change()}return this},toggle:function(e,t){var n=this.contains(e);return n!==t&&(n?this.remove(e):this.add(e),this._change()),this},contains:function(e){return!!this.cls._map[e]},_change:function(){delete this.clsValue,this.onchange.call(this)}}),n.prototype.toString=function(){var e;if(this.clsValue)return this.clsValue;e="";for(var t=0;t<this.cls.length;t++)t>0&&(e+=" "),e+=this.prefix+this.cls[t];return e},n}),r(Z,[],function(){function e(e,t){function n(e){window.setTimeout(e,0)}var r,i=window.requestAnimationFrame,o=["ms","moz","webkit"];for(r=0;r<o.length&&!i;r++)i=window[o[r]+"RequestAnimationFrame"];i||(i=n),i(e,t)}var t={},n;return{add:function(r){var i=r.parent();if(i){if(!i._layout||i._layout.isNative())return;t[i._id]||(t[i._id]=i),n||(n=!0,e(function(){var e,r;n=!1;for(e in t)r=t[e],r.state.get("rendered")&&r.reflow();t={}},document.body))}},remove:function(e){t[e._id]&&delete t[e._id]}}}),r(ee,[U,d,$,K,G,X,f,J,Q,Z],function(e,t,n,r,i,o,a,s,l,c){function u(e){return e._eventDispatcher||(e._eventDispatcher=new n({scope:e,toggleEvent:function(t,r){r&&n.isNative(t)&&(e._nativeEvents||(e._nativeEvents={}),e._nativeEvents[t]=!0,e.state.get("rendered")&&d(e))}})),e._eventDispatcher}function d(e){function t(t){var n=e.getParentCtrl(t.target);n&&n.fire(t.type,t)}function n(){var e=c._lastHoverCtrl;e&&(e.fire("mouseleave",{target:e.getEl()}),e.parents().each(function(e){e.fire("mouseleave",{target:e.getEl()})}),c._lastHoverCtrl=null)}function r(t){var n=e.getParentCtrl(t.target),r=c._lastHoverCtrl,i=0,o,a,s;if(n!==r){if(c._lastHoverCtrl=n,a=n.parents().toArray().reverse(),a.push(n),r){for(s=r.parents().toArray().reverse(),s.push(r),i=0;i<s.length&&a[i]===s[i];i++);for(o=s.length-1;o>=i;o--)r=s[o],r.fire("mouseleave",{target:r.getEl()})}for(o=i;o<a.length;o++)n=a[o],n.fire("mouseenter",{target:n.getEl()})}}function i(t){t.preventDefault(),"mousewheel"==t.type?(t.deltaY=-1/40*t.wheelDelta,t.wheelDeltaX&&(t.deltaX=-1/40*t.wheelDeltaX)):(t.deltaX=0,t.deltaY=t.detail),t=e.fire("wheel",t)}var o,s,l,c,u,d;if(u=e._nativeEvents){for(l=e.parents().toArray(),l.unshift(e),o=0,s=l.length;!c&&s>o;o++)c=l[o]._eventsRoot;for(c||(c=l[l.length-1]||e),e._eventsRoot=c,s=o,o=0;s>o;o++)l[o]._eventsRoot=c;var p=c._delegates;p||(p=c._delegates={});for(d in u){if(!u)return!1;"wheel"!==d||h?("mouseenter"===d||"mouseleave"===d?c._hasMouseEnter||(a(c.getEl()).on("mouseleave",n).on("mouseover",r),c._hasMouseEnter=1):p[d]||(a(c.getEl()).on(d,t),p[d]=!0),u[d]=!1):f?a(e.getEl()).on("mousewheel",i):a(e.getEl()).on("DOMMouseScroll",i)}}}var f="onmousewheel"in document,h=!1,p="mce-",m,g=0,v={Statics:{classPrefix:p},isRtl:function(){return m.rtl},classPrefix:p,init:function(e){function n(e){var t;for(e=e.split(" "),t=0;t<e.length;t++)i.classes.add(e[t])}var i=this,o,c;i.settings=e=t.extend({},i.Defaults,e),i._id=e.id||"mceu_"+g++,i._aria={role:e.role},i._elmCache={},i.$=a,i.state=new r({visible:!0,active:!1,disabled:!1,value:""}),i.data=new r(e.data),i.classes=new l(function(){i.state.get("rendered")&&(i.getEl().className=this.toString())}),i.classes.prefix=i.classPrefix,o=e.classes,o&&(i.Defaults&&(c=i.Defaults.classes,c&&o!=c&&n(c)),n(o)),t.each("title text name visible disabled active value".split(" "),function(t){t in e&&i[t](e[t])}),i.on("click",function(){return i.disabled()?!1:void 0}),i.settings=e,i.borderBox=s.parseBox(e.border),i.paddingBox=s.parseBox(e.padding),i.marginBox=s.parseBox(e.margin),e.hidden&&i.hide()},Properties:"parent,name",getContainerElm:function(){return document.body},getParentCtrl:function(e){for(var t,n=this.getRoot().controlIdLookup;e&&n&&!(t=n[e.id]);)e=e.parentNode;return t},initLayoutRect:function(){var e=this,t=e.settings,n,r,i=e.getEl(),a,l,c,u,d,f,h,p;n=e.borderBox=e.borderBox||s.measureBox(i,"border"),e.paddingBox=e.paddingBox||s.measureBox(i,"padding"),e.marginBox=e.marginBox||s.measureBox(i,"margin"),p=o.getSize(i),f=t.minWidth,h=t.minHeight,c=f||p.width,u=h||p.height,a=t.width,l=t.height,d=t.autoResize,d="undefined"!=typeof d?d:!a&&!l,a=a||c,l=l||u;var m=n.left+n.right,g=n.top+n.bottom,v=t.maxWidth||65535,y=t.maxHeight||65535;return e._layoutRect=r={x:t.x||0,y:t.y||0,w:a,h:l,deltaW:m,deltaH:g,contentW:a-m,contentH:l-g,innerW:a-m,innerH:l-g,startMinWidth:f||0,startMinHeight:h||0,minW:Math.min(c,v),minH:Math.min(u,y),maxW:v,maxH:y,autoResize:d,scrollW:0},e._lastLayoutRect={},r},layoutRect:function(e){var t=this,n=t._layoutRect,r,i,o,a,s,l;return n||(n=t.initLayoutRect()),e?(o=n.deltaW,a=n.deltaH,e.x!==s&&(n.x=e.x),e.y!==s&&(n.y=e.y),e.minW!==s&&(n.minW=e.minW),e.minH!==s&&(n.minH=e.minH),i=e.w,i!==s&&(i=i<n.minW?n.minW:i,i=i>n.maxW?n.maxW:i,n.w=i,n.innerW=i-o),i=e.h,i!==s&&(i=i<n.minH?n.minH:i,i=i>n.maxH?n.maxH:i,n.h=i,n.innerH=i-a),i=e.innerW,i!==s&&(i=i<n.minW-o?n.minW-o:i,i=i>n.maxW-o?n.maxW-o:i,n.innerW=i,n.w=i+o),i=e.innerH,i!==s&&(i=i<n.minH-a?n.minH-a:i,i=i>n.maxH-a?n.maxH-a:i,n.innerH=i,n.h=i+a),e.contentW!==s&&(n.contentW=e.contentW),e.contentH!==s&&(n.contentH=e.contentH),r=t._lastLayoutRect,(r.x!==n.x||r.y!==n.y||r.w!==n.w||r.h!==n.h)&&(l=m.repaintControls,l&&l.map&&!l.map[t._id]&&(l.push(t),l.map[t._id]=!0),r.x=n.x,r.y=n.y,r.w=n.w,r.h=n.h),t):n},repaint:function(){var e=this,t,n,r,i,o,a=0,s=0,l,c,u;c=document.createRange?function(e){return e}:Math.round,t=e.getEl().style,i=e._layoutRect,l=e._lastRepaintRect||{},o=e.borderBox,a=o.left+o.right,s=o.top+o.bottom,i.x!==l.x&&(t.left=c(i.x)+"px",l.x=i.x),i.y!==l.y&&(t.top=c(i.y)+"px",l.y=i.y),i.w!==l.w&&(u=c(i.w-a),t.width=(u>=0?u:0)+"px",l.w=i.w),i.h!==l.h&&(u=c(i.h-s),t.height=(u>=0?u:0)+"px",l.h=i.h),e._hasBody&&i.innerW!==l.innerW&&(u=c(i.innerW),r=e.getEl("body"),r&&(n=r.style,n.width=(u>=0?u:0)+"px"),l.innerW=i.innerW),e._hasBody&&i.innerH!==l.innerH&&(u=c(i.innerH),r=r||e.getEl("body"),r&&(n=n||r.style,n.height=(u>=0?u:0)+"px"),l.innerH=i.innerH),e._lastRepaintRect=l,e.fire("repaint",{},!1)},on:function(e,t){function n(e){var t,n;return"string"!=typeof e?e:function(i){return t||r.parentsAndSelf().each(function(r){var i=r.settings.callbacks;return i&&(t=i[e])?(n=r,!1):void 0}),t?t.call(n,i):(i.action=e,void this.fire("execute",i))}}var r=this;return u(r).on(e,n(t)),r},off:function(e,t){return u(this).off(e,t),this},fire:function(e,t,n){var r=this;if(t=t||{},t.control||(t.control=r),t=u(r).fire(e,t),n!==!1&&r.parent)for(var i=r.parent();i&&!t.isPropagationStopped();)i.fire(e,t,!1),i=i.parent();return t},hasEventListeners:function(e){return u(this).has(e)},parents:function(e){var t=this,n,r=new i;for(n=t.parent();n;n=n.parent())r.add(n);return e&&(r=r.filter(e)),r},parentsAndSelf:function(e){return new i(this).add(this.parents(e))},next:function(){var e=this.parent().items();return e[e.indexOf(this)+1]},prev:function(){var e=this.parent().items();return e[e.indexOf(this)-1]},innerHtml:function(e){return this.$el.html(e),this},getEl:function(e){var t=e?this._id+"-"+e:this._id;return this._elmCache[t]||(this._elmCache[t]=a("#"+t)[0]),this._elmCache[t]},show:function(){return this.visible(!0)},hide:function(){return this.visible(!1)},focus:function(){try{this.getEl().focus()}catch(e){}return this},blur:function(){return this.getEl().blur(),this},aria:function(e,t){var n=this,r=n.getEl(n.ariaTarget);return"undefined"==typeof t?n._aria[e]:(n._aria[e]=t,n.state.get("rendered")&&r.setAttribute("role"==e?e:"aria-"+e,t),n)},encode:function(e,t){return t!==!1&&(e=this.translate(e)),(e||"").replace(/[&<>"]/g,function(e){return"&#"+e.charCodeAt(0)+";"})},translate:function(e){return m.translate?m.translate(e):e},before:function(e){var t=this,n=t.parent();return n&&n.insert(e,n.items().indexOf(t),!0),t},after:function(e){var t=this,n=t.parent();return n&&n.insert(e,n.items().indexOf(t)),t},remove:function(){var e=this,t=e.getEl(),n=e.parent(),r,i;if(e.items){var o=e.items().toArray();for(i=o.length;i--;)o[i].remove()}n&&n.items&&(r=[],n.items().each(function(t){t!==e&&r.push(t)}),n.items().set(r),n._lastRect=null),e._eventsRoot&&e._eventsRoot==e&&a(t).off();var s=e.getRoot().controlIdLookup;return s&&delete s[e._id],t&&t.parentNode&&t.parentNode.removeChild(t),e.state.set("rendered",!1),e.state.destroy(),e.fire("remove"),e},renderBefore:function(e){return a(e).before(this.renderHtml()),this.postRender(),this},renderTo:function(e){return a(e||this.getContainerElm()).append(this.renderHtml()),this.postRender(),this},preRender:function(){},render:function(){},renderHtml:function(){return'<div id="'+this._id+'" class="'+this.classes+'"></div>'},postRender:function(){var e=this,t=e.settings,n,r,i,o,s;e.$el=a(e.getEl()),e.state.set("rendered",!0);for(o in t)0===o.indexOf("on")&&e.on(o.substr(2),t[o]);if(e._eventsRoot){for(i=e.parent();!s&&i;i=i.parent())s=i._eventsRoot;if(s)for(o in s._nativeEvents)e._nativeEvents[o]=!0}d(e),t.style&&(n=e.getEl(),n&&(n.setAttribute("style",t.style),n.style.cssText=t.style)),e.settings.border&&(r=e.borderBox,e.$el.css({"border-top-width":r.top,"border-right-width":r.right,"border-bottom-width":r.bottom,"border-left-width":r.left}));var l=e.getRoot();l.controlIdLookup||(l.controlIdLookup={}),l.controlIdLookup[e._id]=e;for(var u in e._aria)e.aria(u,e._aria[u]);e.state.get("visible")===!1&&(e.getEl().style.display="none"),e.bindStates(),e.state.on("change:visible",function(t){var n=t.value,r;e.state.get("rendered")&&(e.getEl().style.display=n===!1?"none":"",e.getEl().getBoundingClientRect()),r=e.parent(),r&&(r._lastRect=null),e.fire(n?"show":"hide"),c.add(e)}),e.fire("postrender",{},!1)},bindStates:function(){},scrollIntoView:function(e){function t(e,t){var n,r,i=e;for(n=r=0;i&&i!=t&&i.nodeType;)n+=i.offsetLeft||0,r+=i.offsetTop||0,i=i.offsetParent;return{x:n,y:r}}var n=this.getEl(),r=n.parentNode,i,o,a,s,l,c,u=t(n,r);return i=u.x,o=u.y,a=n.offsetWidth,s=n.offsetHeight,l=r.clientWidth,c=r.clientHeight,"end"==e?(i-=l-a,o-=c-s):"center"==e&&(i-=l/2-a/2,o-=c/2-s/2),r.scrollLeft=i,r.scrollTop=o,this},getRoot:function(){for(var e=this,t,n=[];e;){if(e.rootControl){t=e.rootControl;break}n.push(e),t=e,e=e.parent()}t||(t=this);for(var r=n.length;r--;)n[r].rootControl=t;return t},reflow:function(){c.remove(this);var e=this.parent();return e._layout&&!e._layout.isNative()&&e.reflow(),this}};return t.each("text title visible disabled active value".split(" "),function(e){v[e]=function(t){return 0===arguments.length?this.state.get(e):("undefined"!=typeof t&&this.state.set(e,t),this)}}),m=e.extend(v)}),r(te,[],function(){var e={},t;return{add:function(t,n){e[t.toLowerCase()]=n},has:function(t){return!!e[t.toLowerCase()]},create:function(n,r){var i,o,a;if(!t){a=tinymce.ui;for(o in a)e[o.toLowerCase()]=a[o];t=!0}if("string"==typeof n?(r=r||{},r.type=n):(r=n,n=r.type),n=n.toLowerCase(),i=e[n],!i)throw new Error("Could not find control by type: "+n);return i=new i(r),i.type=n,i}}}),r(ne,[],function(){return function(e){function t(e){return e&&1===e.nodeType}function n(e){return e=e||x,t(e)?e.getAttribute("role"):null}function r(e){for(var t,r=e||x;r=r.parentNode;)if(t=n(r))return t}function i(e){var n=x;return t(n)?n.getAttribute("aria-"+e):void 0}function o(e){var t=e.tagName.toUpperCase();return"INPUT"==t||"TEXTAREA"==t}function a(e){return o(e)&&!e.hidden?!0:/^(button|menuitem|checkbox|tab|menuitemcheckbox|option|gridcell)$/.test(n(e))?!0:!1}function s(e){function t(e){if(1==e.nodeType&&"none"!=e.style.display){a(e)&&n.push(e);for(var r=0;r<e.childNodes.length;r++)t(e.childNodes[r])}}var n=[];return t(e||b.getEl()),n}function l(e){var t,n;e=e||C,n=e.parents().toArray(),n.unshift(e);for(var r=0;r<n.length&&(t=n[r],!t.settings.ariaRoot);r++);return t}function c(e){var t=l(e),n=s(t.getEl());t.settings.ariaRemember&&"lastAriaIndex"in t?u(t.lastAriaIndex,n):u(0,n)}function u(e,t){return 0>e?e=t.length-1:e>=t.length&&(e=0),t[e]&&t[e].focus(),e}function d(e,t){var n=-1,r=l();t=t||s(r.getEl());for(var i=0;i<t.length;i++)t[i]===x&&(n=i);n+=e,r.lastAriaIndex=u(n,t)}function f(){var e=r();"tablist"==e?d(-1,s(x.parentNode)):C.parent().submenu?v():d(-1)}function h(){var e=n(),t=r();"tablist"==t?d(1,s(x.parentNode)):"menuitem"==e&&"menu"==t&&i("haspopup")?y():d(1)}function p(){d(-1)}function m(){var e=n(),t=r();"menuitem"==e&&"menubar"==t?y():"button"==e&&i("haspopup")?y({key:"down"}):d(1)}function g(e){var t=r();if("tablist"==t){var n=s(C.getEl("body"))[0];n&&n.focus()}else d(e.shiftKey?-1:1)}function v(){C.fire("cancel")}function y(e){e=e||{},C.fire("click",{target:x,aria:e})}var b=e.root,x,C;try{x=document.activeElement}catch(w){x=document.body}return C=b.getParentCtrl(x),b.on("keydown",function(e){function t(e,t){o(x)||t(e)!==!1&&e.preventDefault()}if(!e.isDefaultPrevented())switch(e.keyCode){case 37:t(e,f);break;case 39:t(e,h);break;case 38:t(e,p);break;case 40:t(e,m);break;case 27:v();break;case 14:case 13:case 32:t(e,y);break;case 9:g(e)!==!1&&e.preventDefault()}}),b.on("focusin",function(e){x=e.target,C=e.control}),{focusFirst:c}}}),r(re,[ee,G,Y,te,ne,d,f,Q,Z],function(e,t,n,r,i,o,a,s,l){var c={};return e.extend({init:function(e){var n=this;n._super(e),e=n.settings,e.fixed&&n.state.set("fixed",!0),n._items=new t,n.isRtl()&&n.classes.add("rtl"),n.bodyClasses=new s(function(){n.state.get("rendered")&&(n.getEl("body").className=this.toString())}),n.bodyClasses.prefix=n.classPrefix,n.classes.add("container"),n.bodyClasses.add("container-body"),e.containerCls&&n.classes.add(e.containerCls),n._layout=r.create((e.layout||"")+"layout"),n.settings.items?n.add(n.settings.items):n.add(n.render()),n._hasBody=!0},items:function(){return this._items},find:function(e){return e=c[e]=c[e]||new n(e),e.find(this)},add:function(e){var t=this;return t.items().add(t.create(e)).parent(t),t},focus:function(e){var t=this,n,r,i;return e&&(r=t.keyboardNav||t.parents().eq(-1)[0].keyboardNav)?void r.focusFirst(t):(i=t.find("*"),t.statusbar&&i.add(t.statusbar.items()),i.each(function(e){return e.settings.autofocus?(n=null,!1):void(e.canFocus&&(n=n||e))}),n&&n.focus(),t)},replace:function(e,t){for(var n,r=this.items(),i=r.length;i--;)if(r[i]===e){r[i]=t;break}i>=0&&(n=t.getEl(),n&&n.parentNode.removeChild(n),n=e.getEl(),n&&n.parentNode.removeChild(n)),t.parent(this)},create:function(t){var n=this,i,a=[];return o.isArray(t)||(t=[t]),o.each(t,function(t){t&&(t instanceof e||("string"==typeof t&&(t={type:t}),i=o.extend({},n.settings.defaults,t),t.type=i.type=i.type||t.type||n.settings.defaultType||(i.defaults?i.defaults.type:null),t=r.create(i)),a.push(t))}),a},renderNew:function(){var e=this;return e.items().each(function(t,n){var r;t.parent(e),t.state.get("rendered")||(r=e.getEl("body"),r.hasChildNodes()&&n<=r.childNodes.length-1?a(r.childNodes[n]).before(t.renderHtml()):a(r).append(t.renderHtml()),t.postRender(),l.add(t))}),e._layout.applyClasses(e.items().filter(":visible")),e._lastRect=null,e},append:function(e){return this.add(e).renderNew()},prepend:function(e){var t=this;return t.items().set(t.create(e).concat(t.items().toArray())),t.renderNew()},insert:function(e,t,n){var r=this,i,o,a;return e=r.create(e),i=r.items(),!n&&t<i.length-1&&(t+=1),t>=0&&t<i.length&&(o=i.slice(0,t).toArray(),a=i.slice(t).toArray(),i.set(o.concat(e,a))),r.renderNew()},fromJSON:function(e){var t=this;for(var n in e)t.find("#"+n).value(e[n]);return t},toJSON:function(){var e=this,t={};return e.find("*").each(function(e){var n=e.name(),r=e.value();n&&"undefined"!=typeof r&&(t[n]=r)}),t},renderHtml:function(){var e=this,t=e._layout,n=this.settings.role;return e.preRender(),t.preRender(e),'<div id="'+e._id+'" class="'+e.classes+'"'+(n?' role="'+this.settings.role+'"':"")+'><div id="'+e._id+'-body" class="'+e.bodyClasses+'">'+(e.settings.html||"")+t.renderHtml(e)+"</div></div>"},postRender:function(){var e=this,t;return e.items().exec("postRender"),e._super(),e._layout.postRender(e),e.state.set("rendered",!0),e.settings.style&&e.$el.css(e.settings.style),e.settings.border&&(t=e.borderBox,e.$el.css({"border-top-width":t.top,"border-right-width":t.right,"border-bottom-width":t.bottom,"border-left-width":t.left})),e.parent()||(e.keyboardNav=new i({root:e})),e},initLayoutRect:function(){var e=this,t=e._super();return e._layout.recalc(e),t},recalc:function(){var e=this,t=e._layoutRect,n=e._lastRect;return n&&n.w==t.w&&n.h==t.h?void 0:(e._layout.recalc(e),t=e.layoutRect(),e._lastRect={x:t.x,y:t.y,w:t.w,h:t.h},!0)},reflow:function(){var t;if(l.remove(this),this.visible()){for(e.repaintControls=[],e.repaintControls.map={},this.recalc(),t=e.repaintControls.length;t--;)e.repaintControls[t].repaint();"flow"!==this.settings.layout&&"stack"!==this.settings.layout&&this.repaint(),e.repaintControls=[]}return this}})}),r(ie,[f],function(e){function t(e){var t,n,r,i,o,a,s,l,c=Math.max;return t=e.documentElement,n=e.body,r=c(t.scrollWidth,n.scrollWidth),i=c(t.clientWidth,n.clientWidth),o=c(t.offsetWidth,n.offsetWidth),a=c(t.scrollHeight,n.scrollHeight),s=c(t.clientHeight,n.clientHeight),l=c(t.offsetHeight,n.offsetHeight),{width:o>r?i:r,height:l>a?s:a}}function n(e){var t,n;if(e.changedTouches)for(t="screenX screenY pageX pageY clientX clientY".split(" "),n=0;n<t.length;n++)e[t[n]]=e.changedTouches[0][t[n]]}return function(r,i){function o(){return s.getElementById(i.handle||r)}var a,s=i.document||document,l,c,u,d,f,h;i=i||{},c=function(r){var c=t(s),p,m;n(r),r.preventDefault(),l=r.button,p=o(),f=r.screenX,h=r.screenY,m=window.getComputedStyle?window.getComputedStyle(p,null).getPropertyValue("cursor"):p.runtimeStyle.cursor,a=e("<div>").css({position:"absolute",top:0,left:0,width:c.width,height:c.height,zIndex:2147483647,opacity:1e-4,cursor:m}).appendTo(s.body),e(s).on("mousemove touchmove",d).on("mouseup touchend",u),i.start(r)},d=function(e){return n(e),e.button!==l?u(e):(e.deltaX=e.screenX-f,e.deltaY=e.screenY-h,e.preventDefault(),void i.drag(e))},u=function(t){n(t),e(s).off("mousemove touchmove",d).off("mouseup touchend",u),a.remove(),i.stop&&i.stop(t)},this.destroy=function(){e(o()).off()},e(o()).on("mousedown touchstart",c)}}),r(oe,[f,ie],function(e,t){return{init:function(){var e=this;e.on("repaint",e.renderScroll)},renderScroll:function(){function n(){function t(t,a,s,l,c,u){var d,f,h,p,m,g,v,y,b;if(f=i.getEl("scroll"+t)){if(y=a.toLowerCase(),b=s.toLowerCase(),e(i.getEl("absend")).css(y,i.layoutRect()[l]-1),!c)return void e(f).css("display","none");e(f).css("display","block"),d=i.getEl("body"),h=i.getEl("scroll"+t+"t"),p=d["client"+s]-2*o,p-=n&&r?f["client"+u]:0,m=d["scroll"+s],g=p/m,v={},v[y]=d["offset"+a]+o,v[b]=p,e(f).css(v),v={},v[y]=d["scroll"+a]*g,v[b]=p*g,e(h).css(v)}}var n,r,a;a=i.getEl("body"),n=a.scrollWidth>a.clientWidth,r=a.scrollHeight>a.clientHeight,t("h","Left","Width","contentW",n,"Height"),t("v","Top","Height","contentH",r,"Width")}function r(){function n(n,r,a,s,l){var c,u=i._id+"-scroll"+n,d=i.classPrefix;e(i.getEl()).append('<div id="'+u+'" class="'+d+"scrollbar "+d+"scrollbar-"+n+'"><div id="'+u+'t" class="'+d+'scrollbar-thumb"></div></div>'),i.draghelper=new t(u+"t",{start:function(){c=i.getEl("body")["scroll"+r],e("#"+u).addClass(d+"active")},drag:function(e){var t,u,d,f,h=i.layoutRect();u=h.contentW>h.innerW,d=h.contentH>h.innerH,f=i.getEl("body")["client"+a]-2*o,f-=u&&d?i.getEl("scroll"+n)["client"+l]:0,t=f/i.getEl("body")["scroll"+a],i.getEl("body")["scroll"+r]=c+e["delta"+s]/t},stop:function(){e("#"+u).removeClass(d+"active")}})}i.classes.add("scroll"),n("v","Top","Height","Y","Width"),n("h","Left","Width","X","Height")}var i=this,o=2;i.settings.autoScroll&&(i._hasScroll||(i._hasScroll=!0,r(),i.on("wheel",function(e){var t=i.getEl("body");t.scrollLeft+=10*(e.deltaX||0),t.scrollTop+=10*e.deltaY,n()}),e(i.getEl("body")).on("scroll",n)),n())}}}),r(ae,[re,oe],function(e,t){return e.extend({Defaults:{layout:"fit",containerCls:"panel"},Mixins:[t],renderHtml:function(){var e=this,t=e._layout,n=e.settings.html;return e.preRender(),t.preRender(e),"undefined"==typeof n?n='<div id="'+e._id+'-body" class="'+e.bodyClasses+'">'+t.renderHtml(e)+"</div>":("function"==typeof n&&(n=n.call(e)),e._hasBody=!1),'<div id="'+e._id+'" class="'+e.classes+'" hidefocus="1" tabindex="-1" role="group">'+(e._preBodyHtml||"")+n+"</div>"}})}),r(se,[X],function(e){function t(t,n,r){var i,o,a,s,l,c,u,d,f,h;return f=e.getViewPort(),o=e.getPos(n),a=o.x,s=o.y,t.state.get("fixed")&&"static"==e.getRuntimeStyle(document.body,"position")&&(a-=f.x,s-=f.y),i=t.getEl(),h=e.getSize(i),l=h.width,c=h.height,h=e.getSize(n),u=h.width,d=h.height,r=(r||"").split(""),"b"===r[0]&&(s+=d),"r"===r[1]&&(a+=u),"c"===r[0]&&(s+=Math.round(d/2)),"c"===r[1]&&(a+=Math.round(u/2)),"b"===r[3]&&(s-=c),"r"===r[4]&&(a-=l),"c"===r[3]&&(s-=Math.round(c/2)),"c"===r[4]&&(a-=Math.round(l/2)),{x:a,y:s,w:l,h:c}}return{testMoveRel:function(n,r){for(var i=e.getViewPort(),o=0;o<r.length;o++){var a=t(this,n,r[o]);if(this.state.get("fixed")){if(a.x>0&&a.x+a.w<i.w&&a.y>0&&a.y+a.h<i.h)return r[o]}else if(a.x>i.x&&a.x+a.w<i.w+i.x&&a.y>i.y&&a.y+a.h<i.h+i.y)return r[o]}return r[0]},moveRel:function(e,n){"string"!=typeof n&&(n=this.testMoveRel(e,n));var r=t(this,e,n);return this.moveTo(r.x,r.y)},moveBy:function(e,t){var n=this,r=n.layoutRect();return n.moveTo(r.x+e,r.y+t),n},moveTo:function(t,n){function r(e,t,n){return 0>e?0:e+n>t?(e=t-n,0>e?0:e):e}var i=this;if(i.settings.constrainToViewport){var o=e.getViewPort(window),a=i.layoutRect();t=r(t,o.w+o.x,a.w),n=r(n,o.h+o.y,a.h)}return i.state.get("rendered")?i.layoutRect({x:t,y:n}).repaint():(i.settings.x=t,i.settings.y=n),i.fire("move",{x:t,y:n}),i}}}),r(le,[X],function(e){return{resizeToContent:function(){this._layoutRect.autoResize=!0,this._lastRect=null,this.reflow()},resizeTo:function(t,n){if(1>=t||1>=n){var r=e.getWindowSize();t=1>=t?t*r.w:t,n=1>=n?n*r.h:n}return this._layoutRect.autoResize=!1,this.layoutRect({minW:t,minH:n,w:t,h:n}).reflow()},resizeBy:function(e,t){var n=this,r=n.layoutRect();return n.resizeTo(r.w+e,r.h+t)}}}),r(ce,[ae,se,le,X,f],function(e,t,n,r,i){function o(e,t){for(;e;){if(e==t)return!0;e=e.parent()}}function a(e){for(var t=g.length;t--;){var n=g[t],r=n.getParentCtrl(e.target);if(n.settings.autohide){if(r&&(o(r,n)||n.parent()===r))continue;e=n.fire("autohide",{target:e.target}),e.isDefaultPrevented()||n.hide()}}}function s(){h||(h=function(e){2!=e.button&&a(e)},i(document).on("click touchstart",h))}function l(){p||(p=function(){var e;for(e=g.length;e--;)u(g[e])},i(window).on("scroll",p))}function c(){if(!m){var e=document.documentElement,t=e.clientWidth,n=e.clientHeight;m=function(){document.all&&t==e.clientWidth&&n==e.clientHeight||(t=e.clientWidth,n=e.clientHeight,b.hideAll())},i(window).on("resize",m)}}function u(e){function t(t,n){for(var r,i=0;i<g.length;i++)if(g[i]!=e)for(r=g[i].parent();r&&(r=r.parent());)r==e&&g[i].fixed(t).moveBy(0,n).repaint()}var n=r.getViewPort().y;e.settings.autofix&&(e.state.get("fixed")?e._autoFixY>n&&(e.fixed(!1).layoutRect({y:e._autoFixY}).repaint(),t(!1,e._autoFixY-n)):(e._autoFixY=e.layoutRect().y,e._autoFixY<n&&(e.fixed(!0).layoutRect({y:0}).repaint(),t(!0,n-e._autoFixY))))}function d(e,t){var n,r=b.zIndex||65535,o;if(e)v.push(t);else for(n=v.length;n--;)v[n]===t&&v.splice(n,1);if(v.length)for(n=0;n<v.length;n++)v[n].modal&&(r++,o=v[n]),v[n].getEl().style.zIndex=r,v[n].zIndex=r,r++;var a=document.getElementById(t.classPrefix+"modal-block");o?i(a).css("z-index",o.zIndex-1):a&&(a.parentNode.removeChild(a),y=!1),b.currentZIndex=r}function f(e){var t;for(t=g.length;t--;)g[t]===e&&g.splice(t,1);for(t=v.length;t--;)v[t]===e&&v.splice(t,1)}var h,p,m,g=[],v=[],y,b=e.extend({Mixins:[t,n],init:function(e){var t=this;t._super(e),t._eventsRoot=t,t.classes.add("floatpanel"),e.autohide&&(s(),c(),g.push(t)),e.autofix&&(l(),t.on("move",function(){u(this)})),t.on("postrender show",function(e){if(e.control==t){var n,r=t.classPrefix;t.modal&&!y&&(n=i("#"+r+"modal-block"),n[0]||(n=i('<div id="'+r+'modal-block" class="'+r+"reset "+r+'fade"></div>').appendTo(t.getContainerElm())),setTimeout(function(){n.addClass(r+"in"),i(t.getEl()).addClass(r+"in")},0),y=!0),d(!0,t)}}),t.on("show",function(){t.parents().each(function(e){return e.state.get("fixed")?(t.fixed(!0),!1):void 0})}),e.popover&&(t._preBodyHtml='<div class="'+t.classPrefix+'arrow"></div>',t.classes.add("popover").add("bottom").add(t.isRtl()?"end":"start"))},fixed:function(e){var t=this;if(t.state.get("fixed")!=e){if(t.state.get("rendered")){var n=r.getViewPort();e?t.layoutRect().y-=n.y:t.layoutRect().y+=n.y}t.classes.toggle("fixed",e),t.state.set("fixed",e)}return t},show:function(){var e=this,t,n=e._super();for(t=g.length;t--&&g[t]!==e;);return-1===t&&g.push(e),n},hide:function(){return f(this),d(!1,this),this._super()},hideAll:function(){b.hideAll()},close:function(){var e=this;return e.fire("close").isDefaultPrevented()||(e.remove(),d(!1,e)),e},remove:function(){f(this),this._super()},postRender:function(){var e=this;return e.settings.bodyRole&&this.getEl("body").setAttribute("role",e.settings.bodyRole),e._super()}});return b.hideAll=function(){for(var e=g.length;e--;){var t=g[e];t&&t.settings.autohide&&(t.hide(),g.splice(e,1))}},b}),r(ue,[ce,ae,X,f,ie,J,u],function(e,t,n,r,i,o,a){function s(e){var t="width=device-width,initial-scale=1.0,user-scalable=0,minimum-scale=1.0,maximum-scale=1.0",n=r("meta[name=viewport]")[0],i;a.overrideViewPort!==!1&&(n||(n=document.createElement("meta"),n.setAttribute("name","viewport"),document.getElementsByTagName("head")[0].appendChild(n)),i=n.getAttribute("content"),i&&"undefined"!=typeof d&&(d=i),n.setAttribute("content",e?t:d))}function l(e){for(var t=0;t<u.length;t++)if(u[t]._fullscreen)return;r([document.documentElement,document.body]).removeClass(e+"fullscreen")}function c(){function e(){var e,t=n.getWindowSize(),r;for(e=0;e<u.length;e++)r=u[e].layoutRect(),u[e].moveTo(u[e].settings.x||Math.max(0,t.w/2-r.w/2),u[e].settings.y||Math.max(0,t.h/2-r.h/2))}var t={w:window.innerWidth,h:window.innerHeight};window.setInterval(function(){var e=window.innerWidth,n=window.innerHeight;(t.w!=e||t.h!=n)&&(t={w:e,h:n},r(window).trigger("resize"))},0),r(window).on("resize",e)}var u=[],d="",f=e.extend({modal:!0,Defaults:{border:1,layout:"flex",containerCls:"panel",role:"dialog",callbacks:{submit:function(){this.fire("submit",{data:this.toJSON()})},close:function(){
8
+ this.close()}}},init:function(e){var n=this;n._super(e),n.isRtl()&&n.classes.add("rtl"),n.classes.add("window"),n.bodyClasses.add("window-body"),n.state.set("fixed",!0),e.buttons&&(n.statusbar=new t({layout:"flex",border:"1 0 0 0",spacing:3,padding:10,align:"center",pack:n.isRtl()?"start":"end",defaults:{type:"button"},items:e.buttons}),n.statusbar.classes.add("foot"),n.statusbar.parent(n)),n.on("click",function(e){-1!=e.target.className.indexOf(n.classPrefix+"close")&&n.close()}),n.on("cancel",function(){n.close()}),n.aria("describedby",n.describedBy||n._id+"-none"),n.aria("label",e.title),n._fullscreen=!1},recalc:function(){var e=this,t=e.statusbar,r,i,o,a;e._fullscreen&&(e.layoutRect(n.getWindowSize()),e.layoutRect().contentH=e.layoutRect().innerH),e._super(),r=e.layoutRect(),e.settings.title&&!e._fullscreen&&(i=r.headerW,i>r.w&&(o=r.x-Math.max(0,i/2),e.layoutRect({w:i,x:o}),a=!0)),t&&(t.layoutRect({w:e.layoutRect().innerW}).recalc(),i=t.layoutRect().minW+r.deltaW,i>r.w&&(o=r.x-Math.max(0,i-r.w),e.layoutRect({w:i,x:o}),a=!0)),a&&e.recalc()},initLayoutRect:function(){var e=this,t=e._super(),r=0,i;if(e.settings.title&&!e._fullscreen){i=e.getEl("head");var o=n.getSize(i);t.headerW=o.width,t.headerH=o.height,r+=t.headerH}e.statusbar&&(r+=e.statusbar.layoutRect().h),t.deltaH+=r,t.minH+=r,t.h+=r;var a=n.getWindowSize();return t.x=e.settings.x||Math.max(0,a.w/2-t.w/2),t.y=e.settings.y||Math.max(0,a.h/2-t.h/2),t},renderHtml:function(){var e=this,t=e._layout,n=e._id,r=e.classPrefix,i=e.settings,o="",a="",s=i.html;return e.preRender(),t.preRender(e),i.title&&(o='<div id="'+n+'-head" class="'+r+'window-head"><div id="'+n+'-title" class="'+r+'title">'+e.encode(i.title)+'</div><button type="button" class="'+r+'close" aria-hidden="true">\xd7</button><div id="'+n+'-dragh" class="'+r+'dragh"></div></div>'),i.url&&(s='<iframe src="'+i.url+'" tabindex="-1"></iframe>'),"undefined"==typeof s&&(s=t.renderHtml(e)),e.statusbar&&(a=e.statusbar.renderHtml()),'<div id="'+n+'" class="'+e.classes+'" hidefocus="1"><div class="'+e.classPrefix+'reset" role="application">'+o+'<div id="'+n+'-body" class="'+e.bodyClasses+'">'+s+"</div>"+a+"</div></div>"},fullscreen:function(e){var t=this,i=document.documentElement,a,s=t.classPrefix,l;if(e!=t._fullscreen)if(r(window).on("resize",function(){var e;if(t._fullscreen)if(a)t._timer||(t._timer=setTimeout(function(){var e=n.getWindowSize();t.moveTo(0,0).resizeTo(e.w,e.h),t._timer=0},50));else{e=(new Date).getTime();var r=n.getWindowSize();t.moveTo(0,0).resizeTo(r.w,r.h),(new Date).getTime()-e>50&&(a=!0)}}),l=t.layoutRect(),t._fullscreen=e,e){t._initial={x:l.x,y:l.y,w:l.w,h:l.h},t.borderBox=o.parseBox("0"),t.getEl("head").style.display="none",l.deltaH-=l.headerH+2,r([i,document.body]).addClass(s+"fullscreen"),t.classes.add("fullscreen");var c=n.getWindowSize();t.moveTo(0,0).resizeTo(c.w,c.h)}else t.borderBox=o.parseBox(t.settings.border),t.getEl("head").style.display="",l.deltaH+=l.headerH,r([i,document.body]).removeClass(s+"fullscreen"),t.classes.remove("fullscreen"),t.moveTo(t._initial.x,t._initial.y).resizeTo(t._initial.w,t._initial.h);return t.reflow()},postRender:function(){var e=this,t;setTimeout(function(){e.classes.add("in")},0),e._super(),e.statusbar&&e.statusbar.postRender(),e.focus(),this.dragHelper=new i(e._id+"-dragh",{start:function(){t={x:e.layoutRect().x,y:e.layoutRect().y}},drag:function(n){e.moveTo(t.x+n.deltaX,t.y+n.deltaY)}}),e.on("submit",function(t){t.isDefaultPrevented()||e.close()}),u.push(e),s(!0)},submit:function(){return this.fire("submit",{data:this.toJSON()})},remove:function(){var e=this,t;for(e.dragHelper.destroy(),e._super(),e.statusbar&&this.statusbar.remove(),t=u.length;t--;)u[t]===e&&u.splice(t,1);s(u.length>0),l(e.classPrefix)},getContentWindow:function(){var e=this.getEl().getElementsByTagName("iframe")[0];return e?e.contentWindow:null}});return a.desktop||c(),f}),r(de,[ue],function(e){var t=e.extend({init:function(e){e={border:1,padding:20,layout:"flex",pack:"center",align:"center",containerCls:"panel",autoScroll:!0,buttons:{type:"button",text:"Ok",action:"ok"},items:{type:"label",multiline:!0,maxWidth:500,maxHeight:200}},this._super(e)},Statics:{OK:1,OK_CANCEL:2,YES_NO:3,YES_NO_CANCEL:4,msgBox:function(n){function r(e,t,n){return{type:"button",text:e,subtype:n?"primary":"",onClick:function(e){e.control.parents()[1].close(),o(t)}}}var i,o=n.callback||function(){};switch(n.buttons){case t.OK_CANCEL:i=[r("Ok",!0,!0),r("Cancel",!1)];break;case t.YES_NO:case t.YES_NO_CANCEL:i=[r("Yes",1,!0),r("No",0)],n.buttons==t.YES_NO_CANCEL&&i.push(r("Cancel",-1));break;default:i=[r("Ok",!0,!0)]}return new e({padding:20,x:n.x,y:n.y,minWidth:300,minHeight:100,layout:"flex",pack:"center",align:"center",buttons:i,title:n.title,role:"alertdialog",items:{type:"label",multiline:!0,maxWidth:500,maxHeight:200,text:n.text},onPostRender:function(){this.aria("describedby",this.items()[0]._id)},onClose:n.onClose,onCancel:function(){o(!1)}}).renderTo(document.body).reflow()},alert:function(e,n){return"string"==typeof e&&(e={text:e}),e.callback=n,t.msgBox(e)},confirm:function(e,n){return"string"==typeof e&&(e={text:e}),e.callback=n,e.buttons=t.OK_CANCEL,t.msgBox(e)}}});return t}),r(fe,[ue,de],function(e,t){return function(n){function r(){return o.length?o[o.length-1]:void 0}var i=this,o=[];i.windows=o,n.on("remove",function(){for(var e=o.length;e--;)o[e].close()}),i.open=function(t,r){var i;return n.editorManager.setActive(n),t.title=t.title||" ",t.url=t.url||t.file,t.url&&(t.width=parseInt(t.width||320,10),t.height=parseInt(t.height||240,10)),t.body&&(t.items={defaults:t.defaults,type:t.bodyType||"form",items:t.body}),t.url||t.buttons||(t.buttons=[{text:"Ok",subtype:"primary",onclick:function(){i.find("form")[0].submit()}},{text:"Cancel",onclick:function(){i.close()}}]),i=new e(t),o.push(i),i.on("close",function(){for(var e=o.length;e--;)o[e]===i&&o.splice(e,1);o.length||n.focus()}),t.data&&i.on("postRender",function(){this.find("*").each(function(e){var n=e.name();n in t.data&&e.value(t.data[n])})}),i.features=t||{},i.params=r||{},1===o.length&&n.nodeChanged(),i.renderTo().reflow()},i.alert=function(e,r,i){t.alert(e,function(){r?r.call(i||this):n.focus()})},i.confirm=function(e,n,r){t.confirm(e,function(e){n.call(r||this,e)})},i.close=function(){r()&&r().close()},i.getParams=function(){return r()?r().params:null},i.setParams=function(e){r()&&(r().params=e)},i.getWindows=function(){return o}}}),r(he,[B,C,p,_,g,u,d],function(e,t,n,r,i,o,a){return function(s){function l(e,t){try{s.getDoc().execCommand(e,!1,t)}catch(n){}}function c(){var e=s.getDoc().documentMode;return e?e:6}function u(e){return e.isDefaultPrevented()}function d(e){var t;e.dataTransfer&&(s.selection.isCollapsed()&&"IMG"==e.target.tagName&&J.select(e.target),t=s.selection.getContent(),t.length>0&&e.dataTransfer.setData(oe,ie+escape(t)))}function f(e){var t,n;return e.dataTransfer&&(t=e.dataTransfer.getData(oe),t&&t.indexOf(ie)>=0&&(n=unescape(t.substr(ie.length)))),n}function h(e){s.queryCommandSupported("mceInsertClipboardContent")?s.execCommand("mceInsertClipboardContent",!1,{content:e}):s.execCommand("mceInsertContent",!1,e)}function p(){function r(e){var t=v.schema.getBlockElements(),n=s.getBody();if("BR"!=e.nodeName)return!1;for(e=e;e!=n&&!t[e.nodeName];e=e.parentNode)if(e.nextSibling)return!1;return!0}function i(e,t){var n;for(n=e.nextSibling;n&&n!=t;n=n.nextSibling)if((3!=n.nodeType||0!==K.trim(n.data).length)&&n!==t)return!1;return n===t}function o(e,t,i){var o,a,s;for(s=v.schema.getNonEmptyElements(),o=new n(i||e,e);a=o[t?"next":"prev"]();){if(s[a.nodeName]&&!r(a))return a;if(3==a.nodeType&&a.data.length>0)return a}}function l(e){var n,r,i,a,l;if(!e.collapsed&&(n=v.getParent(t.getNode(e.startContainer,e.startOffset),v.isBlock),r=v.getParent(t.getNode(e.endContainer,e.endOffset),v.isBlock),l=s.schema.getTextBlockElements(),n!=r&&l[n.nodeName]&&l[r.nodeName]&&"false"!==v.getContentEditable(n)&&"false"!==v.getContentEditable(r)))return e.deleteContents(),i=o(n,!1),a=o(r,!0),v.isEmpty(r)||K(n).append(r.childNodes),K(r).remove(),i?1==i.nodeType?"BR"==i.nodeName?(e.setStartBefore(i),e.setEndBefore(i)):(e.setStartAfter(i),e.setEndAfter(i)):(e.setStart(i,i.data.length),e.setEnd(i,i.data.length)):a&&(1==a.nodeType?(e.setStartBefore(a),e.setEndBefore(a)):(e.setStart(a,0),e.setEnd(a,0))),y.setRng(e),!0}function c(e,n){var r,a,l,c,u,d;if(!e.collapsed)return e;if(u=e.startContainer,d=e.startOffset,3==u.nodeType)if(n){if(d<u.data.length)return e}else if(d>0)return e;if(r=t.getNode(e.startContainer,e.startOffset),l=v.getParent(r,v.isBlock),a=o(s.getBody(),n,r),c=v.getParent(a,v.isBlock),!r||!a)return e;if(c&&l!=c)if(n){if(!i(l,c))return e;1==r.nodeType?"BR"==r.nodeName?e.setStartBefore(r):e.setStartAfter(r):e.setStart(r,r.data.length),1==a.nodeType?e.setEnd(a,0):e.setEndBefore(a)}else{if(!i(c,l))return e;1==a.nodeType?"BR"==a.nodeName?e.setStartBefore(a):e.setStartAfter(a):e.setStart(a,a.data.length),1==r.nodeType?e.setEnd(r,0):e.setEndBefore(r)}return e}function p(e){var t=y.getRng();return t=c(t,e),l(t)?!0:void 0}function m(e){var t,n,r;p(e)||(a.each(s.getBody().getElementsByTagName("*"),function(e){"SPAN"==e.tagName&&e.setAttribute("mce-data-marked",1),!e.hasAttribute("data-mce-style")&&e.hasAttribute("style")&&s.dom.setAttrib(e,"style",s.dom.getAttrib(e,"style"))}),t=new b(function(){}),t.observe(s.getDoc(),{childList:!0,attributes:!0,subtree:!0,attributeFilter:["style"]}),s.getDoc().execCommand(e?"ForwardDelete":"Delete",!1,null),n=s.selection.getRng(),r=n.startContainer.parentNode,a.each(t.takeRecords(),function(e){if(v.isChildOf(e.target,s.getBody())){if("style"==e.attributeName){var t=e.target.getAttribute("data-mce-style");t?e.target.setAttribute("style",t):e.target.removeAttribute("style")}a.each(e.addedNodes,function(e){if("SPAN"==e.nodeName&&!e.getAttribute("mce-data-marked")){var t,i;e==r&&(t=n.startOffset,i=e.firstChild),v.remove(e,!0),i&&(n.setStart(i,t),n.setEnd(i,t),s.selection.setRng(n))}})}}),t.disconnect(),a.each(s.dom.select("span[mce-data-marked]"),function(e){e.removeAttribute("mce-data-marked")}))}var g=s.getDoc(),v=s.dom,y=s.selection,b=window.MutationObserver,x,C;b||(x=!0,b=function(){function e(e){var t=e.relatedNode||e.target;n.push({target:t,addedNodes:[t]})}function t(e){var t=e.relatedNode||e.target;n.push({target:t,attributeName:e.attrName})}var n=[],r;this.observe=function(n){r=n,r.addEventListener("DOMSubtreeModified",e,!1),r.addEventListener("DOMNodeInsertedIntoDocument",e,!1),r.addEventListener("DOMNodeInserted",e,!1),r.addEventListener("DOMAttrModified",t,!1)},this.disconnect=function(){r.removeEventListener("DOMSubtreeModified",e,!1),r.removeEventListener("DOMNodeInsertedIntoDocument",e,!1),r.removeEventListener("DOMNodeInserted",e,!1),r.removeEventListener("DOMAttrModified",t,!1)},this.takeRecords=function(){return n}}),s.on("keydown",function(e){var t=e.keyCode==G,n=e.ctrlKey||e.metaKey;if(!u(e)&&(t||e.keyCode==Y)){var r=s.selection.getRng(),i=r.startContainer,o=r.startOffset;if(!n&&r.collapsed&&3==i.nodeType&&(t?o<i.data.length:o>0))return;e.preventDefault(),n&&s.selection.getSel().modify("extend",t?"forward":"backward",e.metaKey?"lineboundary":"word"),m(t)}}),s.on("keypress",function(t){if(!u(t)&&!y.isCollapsed()&&t.charCode&&!e.metaKeyPressed(t)){var n,r,i,o,a,l;n=s.selection.getRng(),l=String.fromCharCode(t.charCode),t.preventDefault(),r=K(n.startContainer).parents().filter(function(e,t){return!!s.schema.getTextInlineElements()[t.nodeName]}),m(!0),r=r.filter(function(e,t){return!K.contains(s.getBody(),t)}),r.length?(i=v.createFragment(),r.each(function(e,t){t=t.cloneNode(!1),i.hasChildNodes()?(t.appendChild(i.firstChild),i.appendChild(t)):(a=t,i.appendChild(t)),i.appendChild(t)}),a.appendChild(s.getDoc().createTextNode(l)),o=v.getParent(n.startContainer,v.isBlock),v.isEmpty(o)?K(o).empty().append(i):n.insertNode(i),n.setStart(a.firstChild,1),n.setEnd(a.firstChild,1),s.selection.setRng(n)):s.selection.setContent(l)}}),s.addCommand("Delete",function(){m()}),s.addCommand("ForwardDelete",function(){m(!0)}),x||(s.on("dragstart",function(e){C=y.getRng(),d(e)}),s.on("drop",function(e){if(!u(e)){var n=f(e);n&&(e.preventDefault(),window.setTimeout(function(){var r=t.getCaretRangeFromPoint(e.x,e.y,g);C&&(y.setRng(C),C=null),m(),y.setRng(r),h(n)},0))}}),s.on("cut",function(e){u(e)||!e.clipboardData||s.selection.isCollapsed()||(e.preventDefault(),e.clipboardData.clearData(),e.clipboardData.setData("text/html",s.selection.getContent()),e.clipboardData.setData("text/plain",s.selection.getContent({format:"text"})),window.setTimeout(function(){m(!0)},0))}))}function m(){function e(e){var t=X.create("body"),n=e.cloneContents();return t.appendChild(n),J.serializer.serialize(t,{format:"html"})}function n(n){if(!n.setStart){if(n.item)return!1;var r=n.duplicate();return r.moveToElementText(s.getBody()),t.compareRanges(n,r)}var i=e(n),o=X.createRng();o.selectNode(s.getBody());var a=e(o);return i===a}s.on("keydown",function(e){var t=e.keyCode,r,i;if(!u(e)&&(t==G||t==Y)){if(r=s.selection.isCollapsed(),i=s.getBody(),r&&!X.isEmpty(i))return;if(!r&&!n(s.selection.getRng()))return;e.preventDefault(),s.setContent(""),i.firstChild&&X.isBlock(i.firstChild)?s.selection.setCursorLocation(i.firstChild,0):s.selection.setCursorLocation(i,0),s.nodeChanged()}})}function g(){s.shortcuts.add("meta+a",null,"SelectAll")}function v(){s.settings.content_editable||(X.bind(s.getDoc(),"focusin",function(){J.setRng(J.getRng())}),X.bind(s.getDoc(),"mousedown mouseup",function(e){e.target==s.getDoc().documentElement&&(s.getBody().focus(),"mousedown"==e.type?J.placeCaretAt(e.clientX,e.clientY):J.setRng(J.getRng()))}))}function y(){s.on("keydown",function(e){if(!u(e)&&e.keyCode===Y){if(!s.getBody().getElementsByTagName("hr").length)return;if(J.isCollapsed()&&0===J.getRng(!0).startOffset){var t=J.getNode(),n=t.previousSibling;if("HR"==t.nodeName)return X.remove(t),void e.preventDefault();n&&n.nodeName&&"hr"===n.nodeName.toLowerCase()&&(X.remove(n),e.preventDefault())}}})}function b(){window.Range.prototype.getClientRects||s.on("mousedown",function(e){if(!u(e)&&"HTML"===e.target.nodeName){var t=s.getBody();t.blur(),setTimeout(function(){t.focus()},0)}})}function x(){s.on("click",function(e){var t=e.target;/^(IMG|HR)$/.test(t.nodeName)&&(e.preventDefault(),J.getSel().setBaseAndExtent(t,0,t,1),s.nodeChanged()),"A"==t.nodeName&&X.hasClass(t,"mce-item-anchor")&&(e.preventDefault(),J.select(t))})}function C(){function e(){var e=X.getAttribs(J.getStart().cloneNode(!1));return function(){var t=J.getStart();t!==s.getBody()&&(X.setAttrib(t,"style",null),j(e,function(e){t.setAttributeNode(e.cloneNode(!0))}))}}function t(){return!J.isCollapsed()&&X.getParent(J.getStart(),X.isBlock)!=X.getParent(J.getEnd(),X.isBlock)}s.on("keypress",function(n){var r;return u(n)||8!=n.keyCode&&46!=n.keyCode||!t()?void 0:(r=e(),s.getDoc().execCommand("delete",!1,null),r(),n.preventDefault(),!1)}),X.bind(s.getDoc(),"cut",function(n){var r;!u(n)&&t()&&(r=e(),setTimeout(function(){r()},0))})}function w(){document.body.setAttribute("role","application")}function _(){s.on("keydown",function(e){if(!u(e)&&e.keyCode===Y&&J.isCollapsed()&&0===J.getRng(!0).startOffset){var t=J.getNode().previousSibling;if(t&&t.nodeName&&"table"===t.nodeName.toLowerCase())return e.preventDefault(),!1}})}function E(){c()>7||(l("RespectVisibilityInDesign",!0),s.contentStyles.push(".mceHideBrInPre pre br {display: none}"),X.addClass(s.getBody(),"mceHideBrInPre"),Z.addNodeFilter("pre",function(e){for(var t=e.length,n,i,o,a;t--;)for(n=e[t].getAll("br"),i=n.length;i--;)o=n[i],a=o.prev,a&&3===a.type&&"\n"!=a.value.charAt(a.value-1)?a.value+="\n":o.parent.insert(new r("#text",3),o,!0).value="\n"}),ee.addNodeFilter("pre",function(e){for(var t=e.length,n,r,i,o;t--;)for(n=e[t].getAll("br"),r=n.length;r--;)i=n[r],o=i.prev,o&&3==o.type&&(o.value=o.value.replace(/\r?\n$/,""))}))}function N(){X.bind(s.getBody(),"mouseup",function(){var e,t=J.getNode();"IMG"==t.nodeName&&((e=X.getStyle(t,"width"))&&(X.setAttrib(t,"width",e.replace(/[^0-9%]+/g,"")),X.setStyle(t,"width","")),(e=X.getStyle(t,"height"))&&(X.setAttrib(t,"height",e.replace(/[^0-9%]+/g,"")),X.setStyle(t,"height","")))})}function k(){s.on("keydown",function(t){var n,r,i,o,a;if(!u(t)&&t.keyCode==e.BACKSPACE&&(n=J.getRng(),r=n.startContainer,i=n.startOffset,o=X.getRoot(),a=r,n.collapsed&&0===i)){for(;a&&a.parentNode&&a.parentNode.firstChild==a&&a.parentNode!=o;)a=a.parentNode;"BLOCKQUOTE"===a.tagName&&(s.formatter.toggle("blockquote",null,a),n=X.createRng(),n.setStart(r,0),n.setEnd(r,0),J.setRng(n))}})}function S(){function e(){s._refreshContentEditable(),l("StyleWithCSS",!1),l("enableInlineTableEditing",!1),Q.object_resizing||l("enableObjectResizing",!1)}Q.readonly||s.on("BeforeExecCommand MouseDown",e)}function T(){function e(){j(X.select("a"),function(e){var t=e.parentNode,n=X.getRoot();if(t.lastChild===e){for(;t&&!X.isBlock(t);){if(t.parentNode.lastChild!==t||t===n)return;t=t.parentNode}X.add(t,"br",{"data-mce-bogus":1})}})}s.on("SetContent ExecCommand",function(t){("setcontent"==t.type||"mceInsertLink"===t.command)&&e()})}function R(){Q.forced_root_block&&s.on("init",function(){l("DefaultParagraphSeparator",Q.forced_root_block)})}function A(){s.on("Undo Redo SetContent",function(e){e.initial||s.execCommand("mceRepaint")})}function B(){s.on("keydown",function(e){var t;u(e)||e.keyCode!=Y||(t=s.getDoc().selection.createRange(),t&&t.item&&(e.preventDefault(),s.undoManager.beforeChange(),X.remove(t.item(0)),s.undoManager.add()))})}function D(){var e;c()>=10&&(e="",j("p div h1 h2 h3 h4 h5 h6".split(" "),function(t,n){e+=(n>0?",":"")+t+":empty"}),s.contentStyles.push(e+"{padding-right: 1px !important}"))}function M(){c()<9&&(Z.addNodeFilter("noscript",function(e){for(var t=e.length,n,r;t--;)n=e[t],r=n.firstChild,r&&n.attr("data-mce-innertext",r.value)}),ee.addNodeFilter("noscript",function(e){for(var t=e.length,n,o,a;t--;)n=e[t],o=e[t].firstChild,o?o.value=i.decode(o.value):(a=n.attributes.map["data-mce-innertext"],a&&(n.attr("data-mce-innertext",null),o=new r("#text",3),o.value=a,o.raw=!0,n.append(o)))}))}function H(){function e(e,t){var n=i.createTextRange();try{n.moveToPoint(e,t)}catch(r){n=null}return n}function t(t){var r;t.button?(r=e(t.x,t.y),r&&(r.compareEndPoints("StartToStart",a)>0?r.setEndPoint("StartToStart",a):r.setEndPoint("EndToEnd",a),r.select())):n()}function n(){var e=r.selection.createRange();a&&!e.item&&0===e.compareEndPoints("StartToEnd",e)&&a.select(),X.unbind(r,"mouseup",n),X.unbind(r,"mousemove",t),a=o=0}var r=X.doc,i=r.body,o,a,s;r.documentElement.unselectable=!0,X.bind(r,"mousedown contextmenu",function(i){if("HTML"===i.target.nodeName){if(o&&n(),s=r.documentElement,s.scrollHeight>s.clientHeight)return;o=1,a=e(i.x,i.y),a&&(X.bind(r,"mouseup",n),X.bind(r,"mousemove",t),X.getRoot().focus(),a.select())}})}function L(){s.on("keyup focusin mouseup",function(t){65==t.keyCode&&e.metaKeyPressed(t)||J.normalize()},!0)}function P(){s.contentStyles.push("img:-moz-broken {-moz-force-broken-image-icon:1;min-width:24px;min-height:24px}")}function O(){s.inline||s.on("keydown",function(){document.activeElement==document.body&&s.getWin().focus()})}function I(){s.inline||(s.contentStyles.push("body {min-height: 150px}"),s.on("click",function(e){if("HTML"==e.target.nodeName){var t;t=s.selection.getRng(),s.getBody().focus(),s.selection.setRng(t),s.selection.normalize(),s.nodeChanged()}}))}function F(){o.mac&&s.on("keydown",function(t){!e.metaKeyPressed(t)||t.shiftKey||37!=t.keyCode&&39!=t.keyCode||(t.preventDefault(),s.selection.getSel().modify("move",37==t.keyCode?"backward":"forward","lineboundary"))})}function z(){l("AutoUrlDetect",!1)}function W(){s.inline||s.on("focus blur beforegetcontent",function(){var e=s.dom.create("br");s.getBody().appendChild(e),e.parentNode.removeChild(e)},!0)}function V(){s.on("click",function(e){var t=e.target;do if("A"===t.tagName)return void e.preventDefault();while(t=t.parentNode)}),s.contentStyles.push(".mce-content-body {-webkit-touch-callout: none}")}function U(){s.on("init",function(){s.dom.bind(s.getBody(),"submit",function(e){e.preventDefault()})})}function $(){Z.addNodeFilter("br",function(e){for(var t=e.length;t--;)"Apple-interchange-newline"==e[t].attr("class")&&e[t].remove()})}function q(){s.on("dragstart",function(e){d(e)}),s.on("drop",function(e){if(!u(e)){var n=f(e);if(n){e.preventDefault();var r=t.getCaretRangeFromPoint(e.x,e.y,s.getDoc());J.setRng(r),h(n)}}})}var j=a.each,K=s.$,Y=e.BACKSPACE,G=e.DELETE,X=s.dom,J=s.selection,Q=s.settings,Z=s.parser,ee=s.serializer,te=o.gecko,ne=o.ie,re=o.webkit,ie="data:text/mce-internal,",oe=ne?"Text":"URL";k(),m(),L(),re&&(p(),v(),x(),R(),U(),_(),$(),o.iOS?(O(),I(),V()):g()),ne&&o.ie<11&&(y(),w(),E(),N(),B(),D(),M(),H()),o.ie>=11&&(I(),W(),_()),o.ie&&(g(),z(),q()),te&&(y(),b(),C(),S(),T(),A(),P(),F(),_())}}),r(pe,[j,y,d],function(e,t,n){function r(e,t){return"selectionchange"==t?e.getDoc():!e.inline&&/^mouse|click|contextmenu|drop|dragover|dragend/.test(t)?e.getDoc().documentElement:e.settings.event_root?(e.eventRoot||(e.eventRoot=o.select(e.settings.event_root)[0]),e.eventRoot):e.getBody()}function i(e,t){var n=r(e,t),i;if(e.delegates||(e.delegates={}),!e.delegates[t])if(e.settings.event_root){if(a||(a={},e.editorManager.on("removeEditor",function(){var t;if(!e.editorManager.activeEditor&&a){for(t in a)e.dom.unbind(r(e,t));a=null}})),a[t])return;i=function(n){for(var r=n.target,i=e.editorManager.editors,a=i.length;a--;){var s=i[a].getBody();(s===r||o.isChildOf(r,s))&&(i[a].hidden||i[a].fire(t,n))}},a[t]=i,o.bind(n,t,i)}else i=function(n){e.hidden||e.fire(t,n)},o.bind(n,t,i),e.delegates[t]=i}var o=t.DOM,a,s={bindPendingEventDelegates:function(){var e=this;n.each(e._pendingNativeEvents,function(t){i(e,t)})},toggleNativeEvent:function(e,t){var n=this;n.settings.readonly||"focus"!=e&&"blur"!=e&&(t?n.initialized?i(n,e):n._pendingNativeEvents?n._pendingNativeEvents.push(e):n._pendingNativeEvents=[e]:n.initialized&&(n.dom.unbind(r(n,e),e,n.delegates[e]),delete n.delegates[e]))},unbindAllNativeEvents:function(){var e=this,t;if(e.delegates){for(t in e.delegates)e.dom.unbind(r(e,t),t,e.delegates[t]);delete e.delegates}e.inline||(e.getBody().onload=null,e.dom.unbind(e.getWin()),e.dom.unbind(e.getDoc())),e.dom.unbind(e.getBody()),e.dom.unbind(e.getContainer())}};return s=n.extend({},e,s)}),r(me,[d,u],function(e,t){var n=e.each,r=e.explode,i={f9:120,f10:121,f11:122},o=e.makeMap("alt,ctrl,shift,meta,access");return function(a){function s(e,s,l,c){var u,d,f;f={func:l,scope:c||a,desc:a.translate(s)},n(r(e,"+"),function(e){e in o?f[e]=!0:/^[0-9]{2,}$/.test(e)?f.keyCode=parseInt(e,10):(f.charCode=e.charCodeAt(0),f.keyCode=i[e]||e.toUpperCase().charCodeAt(0))}),u=[f.keyCode];for(d in o)f[d]?u.push(d):f[d]=!1;return f.id=u.join(","),f.access&&(f.alt=!0,t.mac?f.ctrl=!0:f.shift=!0),f.meta&&(t.mac?f.meta=!0:(f.ctrl=!0,f.meta=!1)),f}var l=this,c={};a.on("keyup keypress keydown",function(e){(e.altKey||e.ctrlKey||e.metaKey)&&!e.isDefaultPrevented()&&n(c,function(t){return t.ctrl==e.ctrlKey&&t.meta==e.metaKey&&t.alt==e.altKey&&t.shift==e.shiftKey&&(e.keyCode==t.keyCode||e.charCode&&e.charCode==t.charCode)?(e.preventDefault(),"keydown"==e.type&&t.func.call(t.scope),!0):void 0})}),l.add=function(t,i,o,l){var u;return u=o,"string"==typeof o?o=function(){a.execCommand(u,!1,null)}:e.isArray(u)&&(o=function(){a.execCommand(u[0],u[1],u[2])}),n(r(t.toLowerCase()),function(e){var t=s(e,i,o,l);c[t.id]=t}),!0},l.remove=function(e){var t=s(e);return c[t.id]?(delete c[t.id],!0):!1}}}),r(ge,[],function(){function e(e,t){return function(){e.apply(t,arguments)}}function t(t){if("object"!=typeof this)throw new TypeError("Promises must be constructed via new");if("function"!=typeof t)throw new TypeError("not a function");this._state=null,this._value=null,this._deferreds=[],s(t,e(r,this),e(i,this))}function n(e){var t=this;return null===this._state?void this._deferreds.push(e):void l(function(){var n=t._state?e.onFulfilled:e.onRejected;if(null===n)return void(t._state?e.resolve:e.reject)(t._value);var r;try{r=n(t._value)}catch(i){return void e.reject(i)}e.resolve(r)})}function r(t){try{if(t===this)throw new TypeError("A promise cannot be resolved with itself.");if(t&&("object"==typeof t||"function"==typeof t)){var n=t.then;if("function"==typeof n)return void s(e(n,t),e(r,this),e(i,this))}this._state=!0,this._value=t,o.call(this)}catch(a){i.call(this,a)}}function i(e){this._state=!1,this._value=e,o.call(this)}function o(){for(var e=0,t=this._deferreds.length;t>e;e++)n.call(this,this._deferreds[e]);this._deferreds=null}function a(e,t,n,r){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof t?t:null,this.resolve=n,this.reject=r}function s(e,t,n){var r=!1;try{e(function(e){r||(r=!0,t(e))},function(e){r||(r=!0,n(e))})}catch(i){if(r)return;r=!0,n(i)}}if(window.Promise)return window.Promise;var l=t.immediateFn||"function"==typeof setImmediate&&setImmediate||function(e){setTimeout(e,1)},c=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)};return t.prototype["catch"]=function(e){return this.then(null,e)},t.prototype.then=function(e,r){var i=this;return new t(function(t,o){n.call(i,new a(e,r,t,o))})},t.all=function(){var e=Array.prototype.slice.call(1===arguments.length&&c(arguments[0])?arguments[0]:arguments);return new t(function(t,n){function r(o,a){try{if(a&&("object"==typeof a||"function"==typeof a)){var s=a.then;if("function"==typeof s)return void s.call(a,function(e){r(o,e)},n)}e[o]=a,0===--i&&t(e)}catch(l){n(l)}}if(0===e.length)return t([]);for(var i=e.length,o=0;o<e.length;o++)r(o,e[o])})},t.resolve=function(e){return e&&"object"==typeof e&&e.constructor===t?e:new t(function(t){t(e)})},t.reject=function(e){return new t(function(t,n){n(e)})},t.race=function(e){return new t(function(t,n){for(var r=0,i=e.length;i>r;r++)e[r].then(t,n)})},t}),r(ve,[ge,d],function(e,t){return function(n){function r(e){var t,n;return n={"image/jpeg":"jpg","image/jpg":"jpg","image/gif":"gif","image/png":"png"},t=n[e.blob().type.toLowerCase()]||"dat",e.id()+"."+t}function i(e,t){return e?e.replace(/\/$/,"")+"/"+t.replace(/^\//,""):t}function o(e){return{id:e.id,blob:e.blob,base64:e.base64,filename:t.constant(r(e))}}function a(e,t,o){var a,s;a=new XMLHttpRequest,a.withCredentials=n.credentials,a.open("POST",n.url),a.onload=function(){var e;return 200!=a.status?void o("HTTP Error: "+a.status):(e=JSON.parse(a.responseText),e&&"string"==typeof e.location?void t(i(n.basePath,e.location)):void o("Invalid JSON: "+a.responseText))},s=new FormData,s.append("file",e.blob(),r(e)),a.send(s)}function s(r){return new e(function(e,i){function s(){var t,n=c[u++];return n?(t=d[n.blobInfo.id()])?(n.url=t,n.status=!0,void s()):void l(o(n.blobInfo),function(e){d[n.blobInfo.id()]=e,n.url=e,n.status=!0,s()},function(e){n.status=!1,i(e)}):void e(c)}var l=n.handler,c,u=0,d={};return n.url||l!==a?(c=t.map(r,function(e){return{status:!1,blobInfo:e,url:""}}),void s()):void e([])})}return n=t.extend({credentials:!1,handler:a},n),{upload:s}}}),r(ye,[ge],function(e){function t(t){return new e(function(e){var n=new XMLHttpRequest;n.open("GET",t,!0),n.responseType="blob",n.onload=function(){200==this.status&&e(this.response)},n.send()})}function n(e){var t,n;return e=decodeURIComponent(e).split(","),n=/data:([^;]+)/.exec(e[0]),n&&(t=n[1]),{type:t,data:e[1]}}function r(t){return new e(function(e){var r,i,o;t=n(t);try{r=atob(t.data)}catch(a){return void e(new Blob([]))}for(i=new Uint8Array(r.length),o=0;o<i.length;o++)i[o]=r.charCodeAt(o);e(new Blob([i],{type:t.type}))})}function i(e){return 0===e.indexOf("blob:")?t(e):0===e.indexOf("data:")?r(e):null}function o(t){return new e(function(e){var n=new FileReader;n.onloadend=function(){e(n.result)},n.readAsDataURL(t)})}return{uriToBlob:i,blobToDataUri:o,parseDataUri:n}}),r(be,[ge,d,ye],function(e,t,n){function r(t,n){return new e(function(e){function r(o){n(t[o],function(n){i.push(n),o<t.length-1?r(o+1):e(i)})}var i=[];0===t.length?e(i):r(0)})}var i=0;return{findAll:function(e,o){function a(e,t){var r,a,s;return 0===e.src.indexOf("blob:")?(a=o.getByUri(e.src),void(a&&t({image:e,blobInfo:a}))):(s="blobid"+i++,r=n.parseDataUri(e.src).data,a=o.findFirst(function(e){return e.base64()===r}),void(a?t({image:e,blobInfo:a}):n.uriToBlob(e.src).then(function(n){var i=o.create(s,n,r);o.add(i),t({image:e,blobInfo:i})})))}return r(t.filter(e.getElementsByTagName("img"),function(e){return e.src&&(0===e.src.indexOf("data:")||0===e.src.indexOf("blob:"))}),a)}}}),r(xe,[d],function(e){return function(){function t(e,t,n){return{id:l(e),blob:l(t),base64:l(n),blobUri:l(URL.createObjectURL(t))}}function n(e){r(e.id())||s.push(e)}function r(e){return i(function(t){return t.id()===e})}function i(t){return e.grep(s,t)[0]}function o(e){return i(function(t){return t.blobUri()==e})}function a(){e.each(s,function(e){URL.revokeObjectURL(e.blobUri())}),s=[]}var s=[],l=e.constant;return{create:t,add:n,get:r,getByUri:o,findFirst:i,destroy:a}}}),r(Ce,[d,ve,be,xe],function(e,t,n,r){return function(i){function o(e,t,n){var r=0;do r=e.indexOf(t,r),-1!==r&&(e=e.substring(0,r)+n+e.substr(r+t.length),r+=n.length-t.length+1);while(-1!==r);return e}function a(e,t,n){return e=o(e,'src="'+t+'"','src="'+n+'"'),e=o(e,'data-mce-src="'+t+'"','data-mce-src="'+n+'"')}function s(t,n){e.each(i.undoManager.data,function(e){e.content=a(e.content,t,n)})}function l(n){function r(t){return e.map(t,function(e){return e.blobInfo})}var o=new t({url:i.settings.images_upload_url,basePath:i.settings.images_upload_base_path,credentials:i.settings.images_upload_credentials,handler:i.settings.images_upload_handler});return c().then(r).then(o.upload).then(function(t){return t=e.map(t,function(e){var t;return t=i.dom.select('img[src="'+e.blobInfo.blobUri()+'"]')[0],t&&(s(t.src,e.url),i.$(t).attr({src:e.url,"data-mce-src":i.convertURL(e.url,"src")})),{element:t,status:e.status}}),n&&n(t),t},function(){})}function c(){return n.findAll(i.getBody(),f).then(function(t){return e.each(t,function(e){s(e.image.src,e.blobInfo.blobUri()),e.image.src=e.blobInfo.blobUri()}),t})}function u(){f.destroy()}function d(e){return e.replace(/src="(blob:[^"]+)"/g,function(e,t){var n=f.getByUri(t);return'src="data:'+n.blob().type+";base64,"+n.base64()+'"'})}var f=new r;return i.on("setContent paste",c),i.on("RawSaveContent",function(e){e.content=d(e.content)}),i.on("getContent",function(e){e.source_view||"raw"==e.format||(e.content=d(e.content))}),{blobCache:f,uploadImages:l,scanForImages:c,destroy:u}}}),r(we,[y,f,x,w,_,R,T,H,O,I,F,z,W,V,b,l,fe,E,k,he,u,d,pe,me,Ce],function(e,n,r,i,o,a,s,l,c,u,d,f,h,p,m,g,v,y,b,x,C,w,_,E,N){function k(e,t,i){var o=this,a,s;a=o.documentBaseUrl=i.documentBaseURL,s=i.baseURI,o.settings=t=A({id:e,theme:"modern",delta_width:0,delta_height:0,popup_css:"",plugins:"",document_base_url:a,add_form_submit_trigger:!0,submit_patch:!0,add_unload_trigger:!0,convert_urls:!0,relative_urls:!0,remove_script_host:!0,object_resizing:!0,doctype:"<!DOCTYPE html>",visual:!0,font_size_style_values:"xx-small,x-small,small,medium,large,x-large,xx-large",font_size_legacy_values:"xx-small,small,medium,large,x-large,xx-large,300%",forced_root_block:"p",hidden_input:!0,padd_empty_editor:!0,render_ui:!0,indentation:"30px",inline_styles:!0,convert_fonts_to_spans:!0,indent:"simple",indent_before:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,th,ul,ol,li,dl,dt,dd,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist",indent_after:"p,h1,h2,h3,h4,h5,h6,blockquote,div,title,style,pre,script,td,th,ul,ol,li,dl,dt,dd,area,table,thead,tfoot,tbody,tr,section,article,hgroup,aside,figure,option,optgroup,datalist",validate:!0,entity_encoding:"named",url_converter:o.convertURL,url_converter_scope:o,ie7_compat:!0},t),r.language=t.language||"en",r.languageLoad=t.language_load,r.baseURL=i.baseURL,o.id=t.id=e,o.isNotDirty=!0,o.plugins={},o.documentBaseURI=new p(t.document_base_url||a,{base_uri:s
9
+ }),o.baseURI=s,o.contentCSS=[],o.contentStyles=[],o.shortcuts=new E(o),o.loadedCSS={},o.editorCommands=new h(o),t.target&&(o.targetElm=t.target),o.suffix=i.suffix,o.editorManager=i,o.inline=t.inline,t.cache_suffix&&(C.cacheSuffix=t.cache_suffix.replace(/^[\?\&]+/,"")),t.override_viewport===!1&&(C.overrideViewPort=!1),i.fire("SetupEditor",o),o.execCallback("setup",o),o.$=n.overrideDefaults(function(){return{context:o.inline?o.getBody():o.getDoc(),element:o.getBody()}})}var S=e.DOM,T=r.ThemeManager,R=r.PluginManager,A=w.extend,B=w.each,D=w.explode,M=w.inArray,H=w.trim,L=w.resolve,P=g.Event,O=C.gecko,I=C.ie;return k.prototype={render:function(){function e(){S.unbind(window,"ready",e),n.render()}function t(){var e=m.ScriptLoader;if(r.language&&"en"!=r.language&&!r.language_url&&(r.language_url=n.editorManager.baseURL+"/langs/"+r.language+".js"),r.language_url&&e.add(r.language_url),r.theme&&"function"!=typeof r.theme&&"-"!=r.theme.charAt(0)&&!T.urls[r.theme]){var t=r.theme_url;t=t?n.documentBaseURI.toAbsolute(t):"themes/"+r.theme+"/theme"+o+".js",T.load(r.theme,t)}w.isArray(r.plugins)&&(r.plugins=r.plugins.join(" ")),B(r.external_plugins,function(e,t){R.load(t,e),r.plugins+=" "+t}),B(r.plugins.split(/[ ,]/),function(e){if(e=H(e),e&&!R.urls[e])if("-"==e.charAt(0)){e=e.substr(1,e.length);var t=R.dependencies(e);B(t,function(e){var t={prefix:"plugins/",resource:e,suffix:"/plugin"+o+".js"};e=R.createUrl(t,e),R.load(e.resource,e)})}else R.load(e,{prefix:"plugins/",resource:e,suffix:"/plugin"+o+".js"})}),e.loadQueue(function(){n.removed||n.init()})}var n=this,r=n.settings,i=n.id,o=n.suffix;if(!P.domLoaded)return void S.bind(window,"ready",e);if(n.getElement()&&C.contentEditable){r.inline?n.inline=!0:(n.orgVisibility=n.getElement().style.visibility,n.getElement().style.visibility="hidden");var a=n.getElement().form||S.getParent(i,"form");a&&(n.formElement=a,r.hidden_input&&!/TEXTAREA|INPUT/i.test(n.getElement().nodeName)&&(S.insertAfter(S.create("input",{type:"hidden",name:i}),i),n.hasHiddenInput=!0),n.formEventDelegate=function(e){n.fire(e.type,e)},S.bind(a,"submit reset",n.formEventDelegate),n.on("reset",function(){n.setContent(n.startContent,{format:"raw"})}),!r.submit_patch||a.submit.nodeType||a.submit.length||a._mceOldSubmit||(a._mceOldSubmit=a.submit,a.submit=function(){return n.editorManager.triggerSave(),n.isNotDirty=!0,a._mceOldSubmit(a)})),n.windowManager=new v(n),"xml"==r.encoding&&n.on("GetContent",function(e){e.save&&(e.content=S.encode(e.content))}),r.add_form_submit_trigger&&n.on("submit",function(){n.initialized&&n.save()}),r.add_unload_trigger&&(n._beforeUnload=function(){!n.initialized||n.destroyed||n.isHidden()||n.save({format:"raw",no_events:!0,set_dirty:!1})},n.editorManager.on("BeforeUnload",n._beforeUnload)),t()}},init:function(){function e(n){var r=R.get(n),i,o;i=R.urls[n]||t.documentBaseUrl.replace(/\/$/,""),n=H(n),r&&-1===M(m,n)&&(B(R.dependencies(n),function(t){e(t)}),o=new r(t,i,t.$),t.plugins[n]=o,o.init&&(o.init(t,i),m.push(n)))}var t=this,n=t.settings,r=t.getElement(),i,o,a,s,l,c,u,d,f,h,p,m=[];if(this.editorManager.i18n.setCode(n.language),t.rtl=n.rtl_ui||this.editorManager.i18n.rtl,t.editorManager.add(t),n.aria_label=n.aria_label||S.getAttrib(r,"aria-label",t.getLang("aria.rich_text_area")),n.theme&&("function"!=typeof n.theme?(n.theme=n.theme.replace(/-/,""),c=T.get(n.theme),t.theme=new c(t,T.urls[n.theme]),t.theme.init&&t.theme.init(t,T.urls[n.theme]||t.documentBaseUrl.replace(/\/$/,""),t.$)):t.theme=n.theme),B(n.plugins.replace(/\-/g,"").split(/[ ,]/),e),n.render_ui&&t.theme&&(t.orgDisplay=r.style.display,"function"!=typeof n.theme?(i=n.width||r.style.width||r.offsetWidth,o=n.height||r.style.height||r.offsetHeight,a=n.min_height||100,h=/^[0-9\.]+(|px)$/i,h.test(""+i)&&(i=Math.max(parseInt(i,10),100)),h.test(""+o)&&(o=Math.max(parseInt(o,10),a)),l=t.theme.renderUI({targetNode:r,width:i,height:o,deltaWidth:n.delta_width,deltaHeight:n.delta_height}),n.content_editable||(o=(l.iframeHeight||o)+("number"==typeof o?l.deltaHeight||0:""),a>o&&(o=a))):(l=n.theme(t,r),l.editorContainer.nodeType&&(l.editorContainer=l.editorContainer.id=l.editorContainer.id||t.id+"_parent"),l.iframeContainer.nodeType&&(l.iframeContainer=l.iframeContainer.id=l.iframeContainer.id||t.id+"_iframecontainer"),o=l.iframeHeight||r.offsetHeight),t.editorContainer=l.editorContainer),n.content_css&&B(D(n.content_css),function(e){t.contentCSS.push(t.documentBaseURI.toAbsolute(e))}),n.content_style&&t.contentStyles.push(n.content_style),n.content_editable)return r=s=l=null,t.initContentBody();for(t.iframeHTML=n.doctype+"<html><head>",n.document_base_url!=t.documentBaseUrl&&(t.iframeHTML+='<base href="'+t.documentBaseURI.getURI()+'" />'),!C.caretAfter&&n.ie7_compat&&(t.iframeHTML+='<meta http-equiv="X-UA-Compatible" content="IE=7" />'),t.iframeHTML+='<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />',p=0;p<t.contentCSS.length;p++){var g=t.contentCSS[p];t.iframeHTML+='<link type="text/css" rel="stylesheet" href="'+w._addCacheSuffix(g)+'" />',t.loadedCSS[g]=!0}d=n.body_id||"tinymce",-1!=d.indexOf("=")&&(d=t.getParam("body_id","","hash"),d=d[t.id]||d),f=n.body_class||"",-1!=f.indexOf("=")&&(f=t.getParam("body_class","","hash"),f=f[t.id]||""),n.content_security_policy&&(t.iframeHTML+='<meta http-equiv="Content-Security-Policy" content="'+n.content_security_policy+'" />'),t.iframeHTML+='</head><body id="'+d+'" class="mce-content-body '+f+'" data-id="'+t.id+'"><br></body></html>';var v='javascript:(function(){document.open();document.domain="'+document.domain+'";var ed = window.parent.tinymce.get("'+t.id+'");document.write(ed.iframeHTML);document.close();ed.initContentBody(true);})()';document.domain!=location.hostname&&(u=v);var y=S.create("iframe",{id:t.id+"_ifr",frameBorder:"0",allowTransparency:"true",title:t.editorManager.translate("Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help"),style:{width:"100%",height:o,display:"block"}});if(y.onload=function(){y.onload=null,t.fire("load")},S.setAttrib(y,"src",u||'javascript:""'),t.contentAreaContainer=l.iframeContainer,t.iframeElement=y,s=S.add(l.iframeContainer,y),I)try{t.getDoc()}catch(b){s.src=u=v}l.editorContainer&&(S.get(l.editorContainer).style.display=t.orgDisplay,t.hidden=S.isHidden(l.editorContainer)),t.getElement().style.display="none",S.setAttrib(t.id,"aria-hidden",!0),u||t.initContentBody(),r=s=l=null},initContentBody:function(t){var n=this,r=n.settings,s=n.getElement(),h=n.getDoc(),p,m;r.inline||(n.getElement().style.visibility=n.orgVisibility),t||r.content_editable||(h.open(),h.write(n.iframeHTML),h.close()),r.content_editable&&(n.on("remove",function(){var e=this.getBody();S.removeClass(e,"mce-content-body"),S.removeClass(e,"mce-edit-focus"),S.setAttrib(e,"contentEditable",null)}),S.addClass(s,"mce-content-body"),n.contentDocument=h=r.content_document||document,n.contentWindow=r.content_window||window,n.bodyElement=s,r.content_document=r.content_window=null,r.root_name=s.nodeName.toLowerCase()),p=n.getBody(),p.disabled=!0,r.readonly||(n.inline&&"static"==S.getStyle(p,"position",!0)&&(p.style.position="relative"),p.contentEditable=n.getParam("content_editable_state",!0)),p.disabled=!1,n.editorUpload=new N(n),n.schema=new y(r),n.dom=new e(h,{keep_values:!0,url_converter:n.convertURL,url_converter_scope:n,hex_colors:r.force_hex_style_colors,class_filter:r.class_filter,update_styles:!0,root_element:n.inline?n.getBody():null,collect:r.content_editable,schema:n.schema,onSetAttrib:function(e){n.fire("SetAttrib",e)}}),n.parser=new b(r,n.schema),n.parser.addAttributeFilter("src,href,style,tabindex",function(e,t){for(var r=e.length,i,o=n.dom,a,s;r--;)if(i=e[r],a=i.attr(t),s="data-mce-"+t,!i.attributes.map[s]){if(0===a.indexOf("data:")||0===a.indexOf("blob:"))continue;"style"===t?(a=o.serializeStyle(o.parseStyle(a),i.name),a.length||(a=null),i.attr(s,a),i.attr(t,a)):"tabindex"===t?(i.attr(s,a),i.attr(t,null)):i.attr(s,n.convertURL(a,t,i.name))}}),n.parser.addNodeFilter("script",function(e){for(var t=e.length,n;t--;)n=e[t],n.attr("type","mce-"+(n.attr("type")||"no/type"))}),n.parser.addNodeFilter("#cdata",function(e){for(var t=e.length,n;t--;)n=e[t],n.type=8,n.name="#comment",n.value="[CDATA["+n.value+"]]"}),n.parser.addNodeFilter("p,h1,h2,h3,h4,h5,h6,div",function(e){for(var t=e.length,r,i=n.schema.getNonEmptyElements();t--;)r=e[t],r.isEmpty(i)&&(r.append(new o("br",1)).shortEnded=!0)}),n.serializer=new a(r,n),n.selection=new l(n.dom,n.getWin(),n.serializer,n),n.formatter=new c(n),n.undoManager=new u(n),n.forceBlocks=new f(n),n.enterKey=new d(n),n._nodeChangeDispatcher=new i(n),n.fire("PreInit"),r.browser_spellcheck||r.gecko_spellcheck||(h.body.spellcheck=!1,S.setAttrib(p,"spellcheck","false")),n.fire("PostRender"),n.quirks=new x(n),r.directionality&&(p.dir=r.directionality),r.nowrap&&(p.style.whiteSpace="nowrap"),r.protect&&n.on("BeforeSetContent",function(e){B(r.protect,function(t){e.content=e.content.replace(t,function(e){return"<!--mce:protected "+escape(e)+"-->"})})}),n.on("SetContent",function(){n.addVisual(n.getBody())}),r.padd_empty_editor&&n.on("PostProcess",function(e){e.content=e.content.replace(/^(<p[^>]*>(&nbsp;|&#160;|\s|\u00a0|)<\/p>[\r\n]*|<br \/>[\r\n]*)$/,"")}),n.load({initial:!0,format:"html"}),n.startContent=n.getContent({format:"raw"}),n.initialized=!0,n.bindPendingEventDelegates(),n.fire("init"),n.focus(!0),n.nodeChanged({initial:!0}),n.execCallback("init_instance_callback",n),n.contentStyles.length>0&&(m="",B(n.contentStyles,function(e){m+=e+"\r\n"}),n.dom.addStyle(m)),B(n.contentCSS,function(e){n.loadedCSS[e]||(n.dom.loadCSS(e),n.loadedCSS[e]=!0)}),r.auto_focus&&setTimeout(function(){var e;e=r.auto_focus===!0?n:n.editorManager.get(r.auto_focus),e.destroyed||e.focus()},100),s=h=p=null},focus:function(e){var t=this,n=t.selection,r=t.settings.content_editable,i,o,a=t.getDoc(),s;if(!e){if(i=n.getRng(),i.item&&(o=i.item(0)),t._refreshContentEditable(),r||(C.opera||t.getBody().focus(),t.getWin().focus()),O||r){if(s=t.getBody(),s.setActive)try{s.setActive()}catch(l){s.focus()}else s.focus();r&&n.normalize()}o&&o.ownerDocument==a&&(i=a.body.createControlRange(),i.addElement(o),i.select())}t.editorManager.setActive(t)},execCallback:function(e){var t=this,n=t.settings[e],r;if(n)return t.callbackLookup&&(r=t.callbackLookup[e])&&(n=r.func,r=r.scope),"string"==typeof n&&(r=n.replace(/\.\w+$/,""),r=r?L(r):0,n=L(n),t.callbackLookup=t.callbackLookup||{},t.callbackLookup[e]={func:n,scope:r}),n.apply(r||t,Array.prototype.slice.call(arguments,1))},translate:function(e){var t=this.settings.language||"en",n=this.editorManager.i18n;return e?n.data[t+"."+e]||e.replace(/\{\#([^\}]+)\}/g,function(e,r){return n.data[t+"."+r]||"{#"+r+"}"}):""},getLang:function(e,n){return this.editorManager.i18n.data[(this.settings.language||"en")+"."+e]||(n!==t?n:"{#"+e+"}")},getParam:function(e,t,n){var r=e in this.settings?this.settings[e]:t,i;return"hash"===n?(i={},"string"==typeof r?B(r.indexOf("=")>0?r.split(/[;,](?![^=;,]*(?:[;,]|$))/):r.split(","),function(e){e=e.split("="),e.length>1?i[H(e[0])]=H(e[1]):i[H(e[0])]=H(e)}):i=r,i):r},nodeChanged:function(e){this._nodeChangeDispatcher.nodeChanged(e)},addButton:function(e,t){var n=this;t.cmd&&(t.onclick=function(){n.execCommand(t.cmd)}),t.text||t.icon||(t.icon=e),n.buttons=n.buttons||{},t.tooltip=t.tooltip||t.title,n.buttons[e]=t},addMenuItem:function(e,t){var n=this;t.cmd&&(t.onclick=function(){n.execCommand(t.cmd)}),n.menuItems=n.menuItems||{},n.menuItems[e]=t},addContextToolbar:function(e,t){var n=this,r;n.contextToolbars=n.contextToolbars||[],"string"==typeof e&&(r=e,e=function(e){return n.dom.is(e,r)}),n.contextToolbars.push({predicate:e,items:t})},addCommand:function(e,t,n){this.editorCommands.addCommand(e,t,n)},addQueryStateHandler:function(e,t,n){this.editorCommands.addQueryStateHandler(e,t,n)},addQueryValueHandler:function(e,t,n){this.editorCommands.addQueryValueHandler(e,t,n)},addShortcut:function(e,t,n,r){this.shortcuts.add(e,t,n,r)},execCommand:function(e,t,n,r){return this.editorCommands.execCommand(e,t,n,r)},queryCommandState:function(e){return this.editorCommands.queryCommandState(e)},queryCommandValue:function(e){return this.editorCommands.queryCommandValue(e)},queryCommandSupported:function(e){return this.editorCommands.queryCommandSupported(e)},show:function(){var e=this;e.hidden&&(e.hidden=!1,e.inline?e.getBody().contentEditable=!0:(S.show(e.getContainer()),S.hide(e.id)),e.load(),e.fire("show"))},hide:function(){var e=this,t=e.getDoc();e.hidden||(I&&t&&!e.inline&&t.execCommand("SelectAll"),e.save(),e.inline?(e.getBody().contentEditable=!1,e==e.editorManager.focusedEditor&&(e.editorManager.focusedEditor=null)):(S.hide(e.getContainer()),S.setStyle(e.id,"display",e.orgDisplay)),e.hidden=!0,e.fire("hide"))},isHidden:function(){return!!this.hidden},setProgressState:function(e,t){this.fire("ProgressState",{state:e,time:t})},load:function(e){var n=this,r=n.getElement(),i;return r?(e=e||{},e.load=!0,i=n.setContent(r.value!==t?r.value:r.innerHTML,e),e.element=r,e.no_events||n.fire("LoadContent",e),e.element=r=null,i):void 0},save:function(e){var t=this,n=t.getElement(),r,i;if(n&&t.initialized)return e=e||{},e.save=!0,e.element=n,r=e.content=t.getContent(e),e.no_events||t.fire("SaveContent",e),"raw"==e.format&&t.fire("RawSaveContent",e),r=e.content,/TEXTAREA|INPUT/i.test(n.nodeName)?n.value=r:(t.inline||(n.innerHTML=r),(i=S.getParent(t.id,"form"))&&B(i.elements,function(e){return e.name==t.id?(e.value=r,!1):void 0})),e.element=n=null,e.set_dirty!==!1&&(t.isNotDirty=!0),r},setContent:function(e,t){var n=this,r=n.getBody(),i;return t=t||{},t.format=t.format||"html",t.set=!0,t.content=e,t.no_events||n.fire("BeforeSetContent",t),e=t.content,0===e.length||/^\s+$/.test(e)?(i=n.settings.forced_root_block,i&&n.schema.isValidChild(r.nodeName.toLowerCase(),i.toLowerCase())?(e=I&&11>I?"":'<br data-mce-bogus="1">',e=n.dom.createHTML(i,n.settings.forced_root_block_attrs,e)):I||(e='<br data-mce-bogus="1">'),n.dom.setHTML(r,e),n.fire("SetContent",t)):("raw"!==t.format&&(e=new s({},n.schema).serialize(n.parser.parse(e,{isRootContent:!0}))),t.content=H(e),n.dom.setHTML(r,t.content),t.no_events||n.fire("SetContent",t)),t.content},getContent:function(e){var t=this,n,r=t.getBody();return e=e||{},e.format=e.format||"html",e.get=!0,e.getInner=!0,e.no_events||t.fire("BeforeGetContent",e),n="raw"==e.format?r.innerHTML:"text"==e.format?r.innerText||r.textContent:t.serializer.serialize(r,e),"text"!=e.format?e.content=H(n):e.content=n,e.no_events||t.fire("GetContent",e),e.content},insertContent:function(e,t){t&&(e=A({content:e},t)),this.execCommand("mceInsertContent",!1,e)},isDirty:function(){return!this.isNotDirty},getContainer:function(){var e=this;return e.container||(e.container=S.get(e.editorContainer||e.id+"_parent")),e.container},getContentAreaContainer:function(){return this.contentAreaContainer},getElement:function(){return this.targetElm||(this.targetElm=S.get(this.id)),this.targetElm},getWin:function(){var e=this,t;return e.contentWindow||(t=e.iframeElement,t&&(e.contentWindow=t.contentWindow)),e.contentWindow},getDoc:function(){var e=this,t;return e.contentDocument||(t=e.getWin(),t&&(e.contentDocument=t.document)),e.contentDocument},getBody:function(){return this.bodyElement||this.getDoc().body},convertURL:function(e,t,n){var r=this,i=r.settings;return i.urlconverter_callback?r.execCallback("urlconverter_callback",e,n,!0,t):!i.convert_urls||n&&"LINK"==n.nodeName||0===e.indexOf("file:")||0===e.length?e:i.relative_urls?r.documentBaseURI.toRelative(e):e=r.documentBaseURI.toAbsolute(e,i.remove_script_host)},addVisual:function(e){var n=this,r=n.settings,i=n.dom,o;e=e||n.getBody(),n.hasVisual===t&&(n.hasVisual=r.visual),B(i.select("table,a",e),function(e){var t;switch(e.nodeName){case"TABLE":return o=r.visual_table_class||"mce-item-table",t=i.getAttrib(e,"border"),void(t&&"0"!=t||!n.hasVisual?i.removeClass(e,o):i.addClass(e,o));case"A":return void(i.getAttrib(e,"href",!1)||(t=i.getAttrib(e,"name")||e.id,o=r.visual_anchor_class||"mce-item-anchor",t&&n.hasVisual?i.addClass(e,o):i.removeClass(e,o)))}}),n.fire("VisualAid",{element:e,hasVisual:n.hasVisual})},remove:function(){var e=this;e.removed||(e.save(),e.removed=1,e.unbindAllNativeEvents(),e.hasHiddenInput&&S.remove(e.getElement().nextSibling),e.inline||(I&&10>I&&e.getDoc().execCommand("SelectAll",!1,null),S.setStyle(e.id,"display",e.orgDisplay),e.getBody().onload=null),e.fire("remove"),e.editorManager.remove(e),S.remove(e.getContainer()),e.editorUpload.destroy(),e.destroy())},destroy:function(e){var t=this,n;if(!t.destroyed){if(!e&&!t.removed)return void t.remove();e||(t.editorManager.off("beforeunload",t._beforeUnload),t.theme&&t.theme.destroy&&t.theme.destroy(),t.selection.destroy(),t.dom.destroy()),n=t.formElement,n&&(n._mceOldSubmit&&(n.submit=n._mceOldSubmit,n._mceOldSubmit=null),S.unbind(n,"submit reset",t.formEventDelegate)),t.contentAreaContainer=t.formElement=t.container=t.editorContainer=null,t.bodyElement=t.contentDocument=t.contentWindow=null,t.iframeElement=t.targetElm=null,t.selection&&(t.selection=t.selection.win=t.selection.dom=t.selection.dom.doc=null),t.destroyed=1}},uploadImages:function(e){return this.editorUpload.uploadImages(e)},_scanForImages:function(){return this.editorUpload.scanForImages()},_refreshContentEditable:function(){var e=this,t,n;e._isHidden()&&(t=e.getBody(),n=t.parentNode,n.removeChild(t),n.appendChild(t),t.focus())},_isHidden:function(){var e;return O?(e=this.selection.getSel(),!e||!e.rangeCount||0===e.rangeCount):0}},A(k.prototype,_),k}),r(_e,[],function(){var e={},t="en";return{setCode:function(e){e&&(t=e,this.rtl=this.data[e]?"rtl"===this.data[e]._dir:!1)},getCode:function(){return t},rtl:!1,add:function(t,n){var r=e[t];r||(e[t]=r={});for(var i in n)r[i]=n[i];this.setCode(t)},translate:function(n){var r;if(r=e[t],r||(r={}),"undefined"==typeof n)return n;if("string"!=typeof n&&n.raw)return n.raw;if(n.push){var i=n.slice(1);n=(r[n[0]]||n[0]).replace(/\{([0-9]+)\}/g,function(e,t){return i[t]})}return(r[n]||n).replace(/{context:\w+}$/,"")},data:e}}),r(Ee,[y,u],function(e,t){function n(e){function s(){try{return document.activeElement}catch(e){return document.body}}function l(e,t){if(t&&t.startContainer){if(!e.isChildOf(t.startContainer,e.getRoot())||!e.isChildOf(t.endContainer,e.getRoot()))return;return{startContainer:t.startContainer,startOffset:t.startOffset,endContainer:t.endContainer,endOffset:t.endOffset}}return t}function c(e,t){var n;return t.startContainer?(n=e.getDoc().createRange(),n.setStart(t.startContainer,t.startOffset),n.setEnd(t.endContainer,t.endOffset)):n=t,n}function u(e){return!!a.getParent(e,n.isEditorUIElement)}function d(n){var d=n.editor;d.on("init",function(){(d.inline||t.ie)&&("onbeforedeactivate"in document&&t.ie<9?d.dom.bind(d.getBody(),"beforedeactivate",function(e){if(e.target==d.getBody())try{d.lastRng=d.selection.getRng()}catch(t){}}):d.on("nodechange mouseup keyup",function(e){var t=s();"nodechange"==e.type&&e.selectionChange||(t&&t.id==d.id+"_ifr"&&(t=d.getBody()),d.dom.isChildOf(t,d.getBody())&&(d.lastRng=d.selection.getRng()))}),t.webkit&&!r&&(r=function(){var t=e.activeEditor;if(t&&t.selection){var n=t.selection.getRng();n&&!n.collapsed&&(d.lastRng=n)}},a.bind(document,"selectionchange",r)))}),d.on("setcontent",function(){d.lastRng=null}),d.on("mousedown",function(){d.selection.lastFocusBookmark=null}),d.on("focusin",function(){var t=e.focusedEditor;d.selection.lastFocusBookmark&&(d.selection.setRng(c(d,d.selection.lastFocusBookmark)),d.selection.lastFocusBookmark=null),t!=d&&(t&&t.fire("blur",{focusedEditor:d}),e.setActive(d),e.focusedEditor=d,d.fire("focus",{blurredEditor:t}),d.focus(!0)),d.lastRng=null}),d.on("focusout",function(){window.setTimeout(function(){var t=e.focusedEditor;u(s())||t!=d||(d.fire("blur",{focusedEditor:null}),e.focusedEditor=null,d.selection&&(d.selection.lastFocusBookmark=null))},0)}),i||(i=function(t){var n=e.activeEditor;n&&t.target.ownerDocument==document&&(n.selection&&t.target!=n.getBody()&&(n.selection.lastFocusBookmark=l(n.dom,n.lastRng)),t.target==document.body||u(t.target)||e.focusedEditor!=n||(n.fire("blur",{focusedEditor:null}),e.focusedEditor=null))},a.bind(document,"focusin",i)),d.inline&&!o&&(o=function(t){var n=e.activeEditor;if(n.inline&&!n.dom.isChildOf(t.target,n.getBody())){var r=n.selection.getRng();r.collapsed||(n.lastRng=r)}},a.bind(document,"mouseup",o))}function f(t){e.focusedEditor==t.editor&&(e.focusedEditor=null),e.activeEditor||(a.unbind(document,"selectionchange",r),a.unbind(document,"focusin",i),a.unbind(document,"mouseup",o),r=i=o=null)}e.on("AddEditor",d),e.on("RemoveEditor",f)}var r,i,o,a=e.DOM;return n.isEditorUIElement=function(e){return-1!==e.className.toString().indexOf("mce-")},n}),r(Ne,[we,f,y,V,u,d,j,_e,Ee],function(e,t,n,r,i,o,a,s,l){function c(e){m(b.editors,function(t){t.fire("ResizeWindow",e)})}function u(e,n){n!==x&&(n?t(window).on("resize",c):t(window).off("resize",c),x=n)}function d(e){var t=b.editors,n;delete t[e.id];for(var r=0;r<t.length;r++)if(t[r]==e){t.splice(r,1),n=!0;break}return b.activeEditor==e&&(b.activeEditor=t[0]),b.focusedEditor==e&&(b.focusedEditor=null),n}function f(e){return e&&!(e.getContainer()||e.getBody()).parentNode&&(d(e),e.unbindAllNativeEvents(),e.destroy(!0),e=null),e}var h=n.DOM,p=o.explode,m=o.each,g=o.extend,v=0,y,b,x=!1;return b={$:t,majorVersion:"4",minorVersion:"2.3",releaseDate:"2015-07-30",editors:[],i18n:s,activeEditor:null,setup:function(){var e=this,t,n,i="",o,a;if(n=document.location.href,/^[^:]+:\/\/\/?[^\/]+\//.test(n)&&(n=n.replace(/[\?#].*$/,"").replace(/[\/\\][^\/]+$/,""),/[\/\\]$/.test(n)||(n+="/")),o=window.tinymce||window.tinyMCEPreInit)t=o.base||o.baseURL,i=o.suffix;else{for(var s=document.getElementsByTagName("script"),c=0;c<s.length;c++)if(a=s[c].src,/tinymce(\.full|\.jquery|)(\.min|\.dev|)\.js/.test(a)){-1!=a.indexOf(".min")&&(i=".min"),t=a.substring(0,a.lastIndexOf("/"));break}!t&&document.currentScript&&(a=document.currentScript.src,-1!=a.indexOf(".min")&&(i=".min"),t=a.substring(0,a.lastIndexOf("/")))}e.baseURL=new r(n).toAbsolute(t),e.documentBaseURL=n,e.baseURI=new r(e.baseURL),e.suffix=i,e.focusManager=new l(e)},init:function(t){function n(e){var t=e.id;return t||(t=e.name,t=t&&!h.get(t)?e.name:h.uniqueId(),e.setAttribute("id",t)),t}function r(t,n,r){if(!f(s.get(t))){var i=new e(t,n,s);i.targetElm=i.targetElm||r,l.push(i),i.render()}}function i(e){var n=t[e];if(n)return n.apply(s,Array.prototype.slice.call(arguments,2))}function o(e,t){return t.constructor===RegExp?t.test(e.className):h.hasClass(e,t)}function a(){var e,s;if(h.unbind(window,"ready",a),i("onpageload"),t.types)return void m(t.types,function(e){m(h.select(e.selector),function(i){r(n(i),g({},t,e),i)})});if(t.selector)return void m(h.select(t.selector),function(e){r(n(e),t,e)});switch(t.target&&r(n(t.target),t),t.mode){case"exact":e=t.elements||"",e.length>0&&m(p(e),function(e){var n;(n=h.get(e))?r(e,t,n):m(document.forms,function(n){m(n.elements,function(n){n.name===e&&(e="mce_editor_"+v++,h.setAttrib(n,"id",e),r(e,t,n))})})});break;case"textareas":case"specific_textareas":m(h.select("textarea"),function(e){t.editor_deselector&&o(e,t.editor_deselector)||(!t.editor_selector||o(e,t.editor_selector))&&r(n(e),t,e)})}t.oninit&&(e=s=0,m(l,function(t){s++,t.initialized?e++:t.on("init",function(){e++,e==s&&i("oninit")}),e==s&&i("oninit")}))}var s=this,l=[];s.settings=t,h.bind(window,"ready",a)},get:function(e){return arguments.length?e in this.editors?this.editors[e]:null:this.editors},add:function(e){var t=this,n=t.editors;return n[e.id]=e,n.push(e),u(n,!0),t.activeEditor=e,t.fire("AddEditor",{editor:e}),y||(y=function(){t.fire("BeforeUnload")},h.bind(window,"beforeunload",y)),e},createEditor:function(t,n){return this.add(new e(t,n,this))},remove:function(e){var t=this,n,r=t.editors,i;{if(e)return"string"==typeof e?(e=e.selector||e,void m(h.select(e),function(e){i=r[e.id],i&&t.remove(i)})):(i=e,r[i.id]?(d(i)&&t.fire("RemoveEditor",{editor:i}),r.length||h.unbind(window,"beforeunload",y),i.remove(),u(r,r.length>0),i):null);for(n=r.length-1;n>=0;n--)t.remove(r[n])}},execCommand:function(t,n,r){var i=this,o=i.get(r);switch(t){case"mceAddEditor":return i.get(r)||new e(r,i.settings,i).render(),!0;case"mceRemoveEditor":return o&&o.remove(),!0;case"mceToggleEditor":return o?(o.isHidden()?o.show():o.hide(),!0):(i.execCommand("mceAddEditor",0,r),!0)}return i.activeEditor?i.activeEditor.execCommand(t,n,r):!1},triggerSave:function(){m(this.editors,function(e){e.save()})},addI18n:function(e,t){s.add(e,t)},translate:function(e){return s.translate(e)},setActive:function(e){var t=this.activeEditor;this.activeEditor!=e&&(t&&t.fire("deactivate",{relatedTarget:e}),e.fire("activate",{relatedTarget:t})),this.activeEditor=e}},g(b,a),b.setup(),window.tinymce=window.tinyMCE=b,b}),r(ke,[Ne,d],function(e,t){var n=t.each,r=t.explode;e.on("AddEditor",function(e){var t=e.editor;t.on("preInit",function(){function e(e,t){n(t,function(t,n){t&&s.setStyle(e,n,t)}),s.rename(e,"span")}function i(e){s=t.dom,l.convert_fonts_to_spans&&n(s.select("font,u,strike",e.node),function(e){o[e.nodeName.toLowerCase()](s,e)})}var o,a,s,l=t.settings;l.inline_styles&&(a=r(l.font_size_legacy_values),o={font:function(t,n){e(n,{backgroundColor:n.style.backgroundColor,color:n.color,fontFamily:n.face,fontSize:a[parseInt(n.size,10)-1]})},u:function(n,r){"html4"===t.settings.schema&&e(r,{textDecoration:"underline"})},strike:function(t,n){e(n,{textDecoration:"line-through"})}},t.on("PreProcess SetContent",i))})})}),r(Se,[j,d],function(e,t){var n={send:function(e){function t(){!e.async||4==r.readyState||i++>1e4?(e.success&&1e4>i&&200==r.status?e.success.call(e.success_scope,""+r.responseText,r,e):e.error&&e.error.call(e.error_scope,i>1e4?"TIMED_OUT":"GENERAL",r,e),r=null):setTimeout(t,10)}var r,i=0;if(e.scope=e.scope||this,e.success_scope=e.success_scope||e.scope,e.error_scope=e.error_scope||e.scope,e.async=e.async===!1?!1:!0,e.data=e.data||"",r=new XMLHttpRequest){if(r.overrideMimeType&&r.overrideMimeType(e.content_type),r.open(e.type||(e.data?"POST":"GET"),e.url,e.async),e.crossDomain&&(r.withCredentials=!0),e.content_type&&r.setRequestHeader("Content-Type",e.content_type),r.setRequestHeader("X-Requested-With","XMLHttpRequest"),r=n.fire("beforeSend",{xhr:r,settings:e}).xhr,r.send(e.data),!e.async)return t();setTimeout(t,10)}}};return t.extend(n,e),n}),r(Te,[],function(){function e(t,n){var r,i,o,a;if(n=n||'"',null===t)return"null";if(o=typeof t,"string"==o)return i="\bb t\nn\ff\rr\"\"''\\\\",n+t.replace(/([\u0080-\uFFFF\x00-\x1f\"\'\\])/g,function(e,t){return'"'===n&&"'"===e?e:(r=i.indexOf(t),r+1?"\\"+i.charAt(r+1):(e=t.charCodeAt().toString(16),"\\u"+"0000".substring(e.length)+e))})+n;if("object"==o){if(t.hasOwnProperty&&"[object Array]"===Object.prototype.toString.call(t)){for(r=0,i="[";r<t.length;r++)i+=(r>0?",":"")+e(t[r],n);return i+"]"}i="{";for(a in t)t.hasOwnProperty(a)&&(i+="function"!=typeof t[a]?(i.length>1?","+n:n)+a+n+":"+e(t[a],n):"");return i+"}"}return""+t}return{serialize:e,parse:function(e){try{return window[String.fromCharCode(101)+"val"]("("+e+")")}catch(t){}}}}),r(Re,[Te,Se,d],function(e,t,n){function r(e){this.settings=i({},e),this.count=0}var i=n.extend;return r.sendRPC=function(e){return(new r).send(e)},r.prototype={send:function(n){var r=n.error,o=n.success;n=i(this.settings,n),n.success=function(t,i){t=e.parse(t),"undefined"==typeof t&&(t={error:"JSON Parse error."}),t.error?r.call(n.error_scope||n.scope,t.error,i):o.call(n.success_scope||n.scope,t.result)},n.error=function(e,t){r&&r.call(n.error_scope||n.scope,e,t)},n.data=e.serialize({id:n.id||"c"+this.count++,method:n.method,params:n.params}),n.content_type="application/json",t.send(n)}},r}),r(Ae,[y],function(e){return{callbacks:{},count:0,send:function(n){var r=this,i=e.DOM,o=n.count!==t?n.count:r.count,a="tinymce_jsonp_"+o;r.callbacks[o]=function(e){i.remove(a),delete r.callbacks[o],n.callback(e)},i.add(i.doc.body,"script",{id:a,src:n.url,type:"text/javascript"}),r.count++}}}),r(Be,[],function(){function e(){s=[];for(var e in a)s.push(e);i.length=s.length}function n(){function n(e){var n,r;return r=e!==t?u+e:i.indexOf(",",u),-1===r||r>i.length?null:(n=i.substring(u,r),u=r+1,n)}var r,i,s,u=0;if(a={},c){o.load(l),i=o.getAttribute(l)||"";do{var d=n();if(null===d)break;if(r=n(parseInt(d,32)||0),null!==r){if(d=n(),null===d)break;s=n(parseInt(d,32)||0),r&&(a[r]=s)}}while(null!==r);e()}}function r(){var t,n="";if(c){for(var r in a)t=a[r],n+=(n?",":"")+r.length.toString(32)+","+r+","+t.length.toString(32)+","+t;o.setAttribute(l,n);try{o.save(l)}catch(i){}e()}}var i,o,a,s,l,c;try{if(window.localStorage)return localStorage}catch(u){}return l="tinymce",o=document.documentElement,c=!!o.addBehavior,c&&o.addBehavior("#default#userData"),i={key:function(e){return s[e]},getItem:function(e){return e in a?a[e]:null},setItem:function(e,t){a[e]=""+t,r()},removeItem:function(e){delete a[e],r()},clear:function(){a={},r()}},n(),i}),r(De,[y,l,b,x,d,u],function(e,t,n,r,i,o){var a=window.tinymce;return a.DOM=e.DOM,a.ScriptLoader=n.ScriptLoader,a.PluginManager=r.PluginManager,a.ThemeManager=r.ThemeManager,a.dom=a.dom||{},a.dom.Event=t.Event,i.each(i,function(e,t){a[t]=e}),i.each("isOpera isWebKit isIE isGecko isMac".split(" "),function(e){a[e]=o[e.substr(2).toLowerCase()]}),{}}),r(Me,[U,d],function(e,t){return e.extend({Defaults:{firstControlClass:"first",lastControlClass:"last"},init:function(e){this.settings=t.extend({},this.Defaults,e)},preRender:function(e){e.bodyClasses.add(this.settings.containerClass)},applyClasses:function(e){var t=this,n=t.settings,r,i,o,a;r=n.firstControlClass,i=n.lastControlClass,e.each(function(e){e.classes.remove(r).remove(i).add(n.controlClass),e.visible()&&(o||(o=e),a=e)}),o&&o.classes.add(r),a&&a.classes.add(i)},renderHtml:function(e){var t=this,n="";return t.applyClasses(e.items()),e.items().each(function(e){n+=e.renderHtml()}),n},recalc:function(){},postRender:function(){},isNative:function(){return!1}})}),r(He,[Me],function(e){return e.extend({Defaults:{containerClass:"abs-layout",controlClass:"abs-layout-item"},recalc:function(e){e.items().filter(":visible").each(function(e){var t=e.settings;e.layoutRect({x:t.x,y:t.y,w:t.w,h:t.h}),e.recalc&&e.recalc()})},renderHtml:function(e){return'<div id="'+e._id+'-absend" class="'+e.classPrefix+'abs-end"></div>'+this._super(e)}})}),r(Le,[ee,se],function(e,t){return e.extend({Mixins:[t],Defaults:{classes:"widget tooltip tooltip-n"},renderHtml:function(){var e=this,t=e.classPrefix;return'<div id="'+e._id+'" class="'+e.classes+'" role="presentation"><div class="'+t+'tooltip-arrow"></div><div class="'+t+'tooltip-inner">'+e.encode(e.state.get("text"))+"</div></div>"},bindStates:function(){var e=this;return e.state.on("change:text",function(t){e.getEl().lastChild.innerHTML=e.encode(t.value)}),e._super()},repaint:function(){var e=this,t,n;t=e.getEl().style,n=e._layoutRect,t.left=n.x+"px",t.top=n.y+"px",t.zIndex=131070}})}),r(Pe,[ee,Le],function(e,t){var n,r=e.extend({init:function(e){var t=this;t._super(e),e=t.settings,t.canFocus=!0,e.tooltip&&r.tooltips!==!1&&(t.on("mouseenter",function(n){var r=t.tooltip().moveTo(-65535);if(n.control==t){var i=r.text(e.tooltip).show().testMoveRel(t.getEl(),["bc-tc","bc-tl","bc-tr"]);r.classes.toggle("tooltip-n","bc-tc"==i),r.classes.toggle("tooltip-nw","bc-tl"==i),r.classes.toggle("tooltip-ne","bc-tr"==i),r.moveRel(t.getEl(),i)}else r.hide()}),t.on("mouseleave mousedown click",function(){t.tooltip().hide()})),t.aria("label",e.ariaLabel||e.tooltip)},tooltip:function(){return n||(n=new t({type:"tooltip"}),n.renderTo()),n},postRender:function(){var e=this,t=e.settings;e._super(),e.parent()||!t.width&&!t.height||(e.initLayoutRect(),e.repaint()),t.autofocus&&e.focus()},bindStates:function(){function e(e){n.aria("disabled",e),n.classes.toggle("disabled",e)}function t(e){n.aria("pressed",e),n.classes.toggle("active",e)}var n=this;return n.state.on("change:disabled",function(t){
10
+ e(t.value)}),n.state.on("change:active",function(e){t(e.value)}),n.state.get("disabled")&&e(!0),n.state.get("active")&&t(!0),n._super()},remove:function(){this._super(),n&&(n.remove(),n=null)}});return r}),r(Oe,[Pe],function(e){return e.extend({Defaults:{classes:"widget btn",role:"button"},init:function(e){var t=this,n;t._super(e),e=t.settings,n=t.settings.size,t.on("click mousedown",function(e){e.preventDefault()}),t.on("touchstart",function(e){t.fire("click",e),e.preventDefault()}),e.subtype&&t.classes.add(e.subtype),n&&t.classes.add("btn-"+n),e.icon&&t.icon(e.icon)},icon:function(e){return arguments.length?(this.state.set("icon",e),this):this.state.get("icon")},repaint:function(){var e=this.getEl().firstChild.style;e.width=e.height="100%",this._super()},renderHtml:function(){var e=this,t=e._id,n=e.classPrefix,r=e.state.get("icon"),i,o=e.state.get("text");return i=e.settings.image,i?(r="none","string"!=typeof i&&(i=window.getSelection?i[0]:i[1]),i=" style=\"background-image: url('"+i+"')\""):i="",o&&e.classes.add("btn-has-text"),r=e.settings.icon?n+"ico "+n+"i-"+r:"",'<div id="'+t+'" class="'+e.classes+'" tabindex="-1" aria-labelledby="'+t+'"><button role="presentation" type="button" tabindex="-1">'+(r?'<i class="'+r+'"'+i+"></i>":"")+(o?e.encode(o):"")+"</button></div>"},bindStates:function(){function e(e){for(var n=t.getEl().firstChild.firstChild;n;n=n.nextSibling)3==n.nodeType&&(n.data=t.translate(e));t.classes.toggle("btn-has-text",!!e)}var t=this;return t.state.on("change:text",function(t){e(t.value)}),t.state.on("change:icon",function(n){var r=n.value,i=t.classPrefix;t.settings.icon=r,r=r?i+"ico "+i+"i-"+t.settings.icon:"";var o=t.getEl().firstChild,a=o.getElementsByTagName("i")[0];r?(a&&a==o.firstChild||(a=document.createElement("i"),o.insertBefore(a,o.firstChild)),a.className=r):a&&o.removeChild(a),e(t.state.get("text"))}),t._super()}})}),r(Ie,[re],function(e){return e.extend({Defaults:{defaultType:"button",role:"group"},renderHtml:function(){var e=this,t=e._layout;return e.classes.add("btn-group"),e.preRender(),t.preRender(e),'<div id="'+e._id+'" class="'+e.classes+'"><div id="'+e._id+'-body">'+(e.settings.html||"")+t.renderHtml(e)+"</div></div>"}})}),r(Fe,[Pe],function(e){return e.extend({Defaults:{classes:"checkbox",role:"checkbox",checked:!1},init:function(e){var t=this;t._super(e),t.on("click mousedown",function(e){e.preventDefault()}),t.on("click",function(e){e.preventDefault(),t.disabled()||t.checked(!t.checked())}),t.checked(t.settings.checked)},checked:function(e){return arguments.length?(this.state.set("checked",e),this):this.state.get("checked")},value:function(e){return arguments.length?this.checked(e):this.checked()},renderHtml:function(){var e=this,t=e._id,n=e.classPrefix;return'<div id="'+t+'" class="'+e.classes+'" unselectable="on" aria-labelledby="'+t+'-al" tabindex="-1"><i class="'+n+"ico "+n+'i-checkbox"></i><span id="'+t+'-al" class="'+n+'label">'+e.encode(e.state.get("text"))+"</span></div>"},bindStates:function(){function e(e){t.classes.toggle("checked",e),t.aria("checked",e)}var t=this;return t.state.on("change:text",function(e){t.getEl("al").firstChild.data=t.translate(e.value)}),t.state.on("change:checked change:value",function(n){t.fire("change"),e(n.value)}),t.state.on("change:icon",function(e){var n=e.value,r=t.classPrefix;if("undefined"==typeof n)return t.settings.icon;t.settings.icon=n,n=n?r+"ico "+r+"i-"+t.settings.icon:"";var i=t.getEl().firstChild,o=i.getElementsByTagName("i")[0];n?(o&&o==i.firstChild||(o=document.createElement("i"),i.insertBefore(o,i.firstChild)),o.className=n):o&&i.removeChild(o)}),t.state.get("checked")&&e(!0),t._super()}})}),r(ze,[Pe,te,X,f],function(e,t,n,r){return e.extend({init:function(e){var t=this;t._super(e),e=t.settings,t.classes.add("combobox"),t.subinput=!0,t.ariaTarget="inp",e.menu=e.menu||e.values,e.menu&&(e.icon="caret"),t.on("click",function(n){var i=n.target,o=t.getEl();if(r.contains(o,i)||i==o)for(;i&&i!=o;)i.id&&-1!=i.id.indexOf("-open")&&(t.fire("action"),e.menu&&(t.showMenu(),n.aria&&t.menu.items()[0].focus())),i=i.parentNode}),t.on("keydown",function(e){"INPUT"==e.target.nodeName&&13==e.keyCode&&t.parents().reverse().each(function(n){var r=t.state.get("value"),i=t.getEl("inp").value;return e.preventDefault(),t.state.set("value",i),r!=i&&t.fire("change"),n.hasEventListeners("submit")&&n.toJSON?(n.fire("submit",{data:n.toJSON()}),!1):void 0})}),t.on("keyup",function(e){"INPUT"==e.target.nodeName&&t.state.set("value",e.target.value)})},showMenu:function(){var e=this,n=e.settings,r;e.menu||(r=n.menu||[],r.length?r={type:"menu",items:r}:r.type=r.type||"menu",e.menu=t.create(r).parent(e).renderTo(e.getContainerElm()),e.fire("createmenu"),e.menu.reflow(),e.menu.on("cancel",function(t){t.control===e.menu&&e.focus()}),e.menu.on("show hide",function(t){t.control.items().each(function(t){t.active(t.value()==e.value())})}).fire("show"),e.menu.on("select",function(t){e.value(t.control.value())}),e.on("focusin",function(t){"INPUT"==t.target.tagName.toUpperCase()&&e.menu.hide()}),e.aria("expanded",!0)),e.menu.show(),e.menu.layoutRect({w:e.layoutRect().w}),e.menu.moveRel(e.getEl(),e.isRtl()?["br-tr","tr-br"]:["bl-tl","tl-bl"])},focus:function(){this.getEl("inp").focus()},repaint:function(){var e=this,t=e.getEl(),i=e.getEl("open"),o=e.layoutRect(),a,s;a=i?o.w-n.getSize(i).width-10:o.w-10;var l=document;return l.all&&(!l.documentMode||l.documentMode<=8)&&(s=e.layoutRect().h-2+"px"),r(t.firstChild).css({width:a,lineHeight:s}),e._super(),e},postRender:function(){var e=this;return r(this.getEl("inp")).on("change",function(t){e.state.set("value",t.target.value),e.fire("change",t)}),e._super()},renderHtml:function(){var e=this,t=e._id,n=e.settings,r=e.classPrefix,i=e.state.get("value")||"",o,a,s="",l="";return"spellcheck"in n&&(l+=' spellcheck="'+n.spellcheck+'"'),n.maxLength&&(l+=' maxlength="'+n.maxLength+'"'),n.size&&(l+=' size="'+n.size+'"'),n.subtype&&(l+=' type="'+n.subtype+'"'),e.disabled()&&(l+=' disabled="disabled"'),o=n.icon,o&&"caret"!=o&&(o=r+"ico "+r+"i-"+n.icon),a=e.state.get("text"),(o||a)&&(s='<div id="'+t+'-open" class="'+r+"btn "+r+'open" tabIndex="-1" role="button"><button id="'+t+'-action" type="button" hidefocus="1" tabindex="-1">'+("caret"!=o?'<i class="'+o+'"></i>':'<i class="'+r+'caret"></i>')+(a?(o?" ":"")+a:"")+"</button></div>",e.classes.add("has-open")),'<div id="'+t+'" class="'+e.classes+'"><input id="'+t+'-inp" class="'+r+'textbox" value="'+e.encode(i,!1)+'" hidefocus="1"'+l+' placeholder="'+e.encode(n.placeholder)+'" />'+s+"</div>"},value:function(e){return arguments.length?(this.state.set("value",e),this):(this.state.get("rendered")&&this.state.set("value",this.getEl("inp").value),this.state.get("value"))},bindStates:function(){var e=this;return e.state.on("change:value",function(t){e.getEl("inp").value!=t.value&&(e.getEl("inp").value=t.value)}),e.state.on("change:disabled",function(t){e.getEl("inp").disabled=t.value}),e._super()},remove:function(){r(this.getEl("inp")).off(),this._super()}})}),r(We,[ze],function(e){return e.extend({init:function(e){var t=this;e.spellcheck=!1,e.onaction&&(e.icon="none"),t._super(e),t.classes.add("colorbox"),t.on("change keyup postrender",function(){t.repaintColor(t.value())})},repaintColor:function(e){var t=this.getEl().getElementsByTagName("i")[0];if(t)try{t.style.background=e}catch(n){}},bindStates:function(){var e=this;return e.state.on("change:value",function(t){e._rendered&&e.repaintColor(t.value)}),e._super()}})}),r(Ve,[Oe,ce],function(e,t){return e.extend({showPanel:function(){var e=this,n=e.settings;if(e.active(!0),e.panel)e.panel.show();else{var r=n.panel;r.type&&(r={layout:"grid",items:r}),r.role=r.role||"dialog",r.popover=!0,r.autohide=!0,r.ariaRoot=!0,e.panel=new t(r).on("hide",function(){e.active(!1)}).on("cancel",function(t){t.stopPropagation(),e.focus(),e.hidePanel()}).parent(e).renderTo(e.getContainerElm()),e.panel.fire("show"),e.panel.reflow()}e.panel.moveRel(e.getEl(),n.popoverAlign||(e.isRtl()?["bc-tr","bc-tc"]:["bc-tl","bc-tc"]))},hidePanel:function(){var e=this;e.panel&&e.panel.hide()},postRender:function(){var e=this;return e.aria("haspopup",!0),e.on("click",function(t){t.control===e&&(e.panel&&e.panel.visible()?e.hidePanel():(e.showPanel(),e.panel.focus(!!t.aria)))}),e._super()},remove:function(){return this.panel&&(this.panel.remove(),this.panel=null),this._super()}})}),r(Ue,[Ve,y],function(e,t){var n=t.DOM;return e.extend({init:function(e){this._super(e),this.classes.add("colorbutton")},color:function(e){return e?(this._color=e,this.getEl("preview").style.backgroundColor=e,this):this._color},resetColor:function(){return this._color=null,this.getEl("preview").style.backgroundColor=null,this},renderHtml:function(){var e=this,t=e._id,n=e.classPrefix,r=e.state.get("text"),i=e.settings.icon?n+"ico "+n+"i-"+e.settings.icon:"",o=e.settings.image?" style=\"background-image: url('"+e.settings.image+"')\"":"";return'<div id="'+t+'" class="'+e.classes+'" role="button" tabindex="-1" aria-haspopup="true"><button role="presentation" hidefocus="1" type="button" tabindex="-1">'+(i?'<i class="'+i+'"'+o+"></i>":"")+'<span id="'+t+'-preview" class="'+n+'preview"></span>'+(r?(i?" ":"")+r:"")+'</button><button type="button" class="'+n+'open" hidefocus="1" tabindex="-1"> <i class="'+n+'caret"></i></button></div>'},postRender:function(){var e=this,t=e.settings.onclick;return e.on("click",function(r){r.aria&&"down"==r.aria.key||r.control!=e||n.getParent(r.target,"."+e.classPrefix+"open")||(r.stopImmediatePropagation(),t.call(e,r))}),delete e.settings.onclick,e._super()}})}),r($e,[],function(){function e(e){function i(e,i,o){var a,s,l,c,u,d;return a=0,s=0,l=0,e/=255,i/=255,o/=255,u=t(e,t(i,o)),d=n(e,n(i,o)),u==d?(l=u,{h:0,s:0,v:100*l}):(c=e==u?i-o:o==u?e-i:o-e,a=e==u?3:o==u?1:5,a=60*(a-c/(d-u)),s=(d-u)/d,l=d,{h:r(a),s:r(100*s),v:r(100*l)})}function o(e,i,o){var a,s,l,c;if(e=(parseInt(e,10)||0)%360,i=parseInt(i,10)/100,o=parseInt(o,10)/100,i=n(0,t(i,1)),o=n(0,t(o,1)),0===i)return void(d=f=h=r(255*o));switch(a=e/60,s=o*i,l=s*(1-Math.abs(a%2-1)),c=o-s,Math.floor(a)){case 0:d=s,f=l,h=0;break;case 1:d=l,f=s,h=0;break;case 2:d=0,f=s,h=l;break;case 3:d=0,f=l,h=s;break;case 4:d=l,f=0,h=s;break;case 5:d=s,f=0,h=l;break;default:d=f=h=0}d=r(255*(d+c)),f=r(255*(f+c)),h=r(255*(h+c))}function a(){function e(e){return e=parseInt(e,10).toString(16),e.length>1?e:"0"+e}return"#"+e(d)+e(f)+e(h)}function s(){return{r:d,g:f,b:h}}function l(){return i(d,f,h)}function c(e){var t;return"object"==typeof e?"r"in e?(d=e.r,f=e.g,h=e.b):"v"in e&&o(e.h,e.s,e.v):(t=/rgb\s*\(\s*([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)[^\)]*\)/gi.exec(e))?(d=parseInt(t[1],10),f=parseInt(t[2],10),h=parseInt(t[3],10)):(t=/#([0-F]{2})([0-F]{2})([0-F]{2})/gi.exec(e))?(d=parseInt(t[1],16),f=parseInt(t[2],16),h=parseInt(t[3],16)):(t=/#([0-F])([0-F])([0-F])/gi.exec(e))&&(d=parseInt(t[1]+t[1],16),f=parseInt(t[2]+t[2],16),h=parseInt(t[3]+t[3],16)),d=0>d?0:d>255?255:d,f=0>f?0:f>255?255:f,h=0>h?0:h>255?255:h,u}var u=this,d=0,f=0,h=0;e&&c(e),u.toRgb=s,u.toHsv=l,u.toHex=a,u.parse=c}var t=Math.min,n=Math.max,r=Math.round;return e}),r(qe,[Pe,ie,X,$e],function(e,t,n,r){return e.extend({Defaults:{classes:"widget colorpicker"},init:function(e){this._super(e)},postRender:function(){function e(e,t){var r=n.getPos(e),i,o;return i=t.pageX-r.x,o=t.pageY-r.y,i=Math.max(0,Math.min(i/e.clientWidth,1)),o=Math.max(0,Math.min(o/e.clientHeight,1)),{x:i,y:o}}function i(e,t){var i=(360-e.h)/360;n.css(d,{top:100*i+"%"}),t||n.css(h,{left:e.s+"%",top:100-e.v+"%"}),f.style.background=new r({s:100,v:100,h:e.h}).toHex(),s.color().parse({s:e.s,v:e.v,h:e.h})}function o(t){var n;n=e(f,t),c.s=100*n.x,c.v=100*(1-n.y),i(c),s.fire("change")}function a(t){var n;n=e(u,t),c=l.toHsv(),c.h=360*(1-n.y),i(c,!0),s.fire("change")}var s=this,l=s.color(),c,u,d,f,h;u=s.getEl("h"),d=s.getEl("hp"),f=s.getEl("sv"),h=s.getEl("svp"),s._repaint=function(){c=l.toHsv(),i(c)},s._super(),s._svdraghelper=new t(s._id+"-sv",{start:o,drag:o}),s._hdraghelper=new t(s._id+"-h",{start:a,drag:a}),s._repaint()},rgb:function(){return this.color().toRgb()},value:function(e){var t=this;return arguments.length?(t.color().parse(e),void(t._rendered&&t._repaint())):t.color().toHex()},color:function(){return this._color||(this._color=new r),this._color},renderHtml:function(){function e(){var e,t,n="",i,a;for(i="filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=",a=o.split(","),e=0,t=a.length-1;t>e;e++)n+='<div class="'+r+'colorpicker-h-chunk" style="height:'+100/t+"%;"+i+a[e]+",endColorstr="+a[e+1]+");-ms-"+i+a[e]+",endColorstr="+a[e+1]+')"></div>';return n}var t=this,n=t._id,r=t.classPrefix,i,o="#ff0000,#ff0080,#ff00ff,#8000ff,#0000ff,#0080ff,#00ffff,#00ff80,#00ff00,#80ff00,#ffff00,#ff8000,#ff0000",a="background: -ms-linear-gradient(top,"+o+");background: linear-gradient(to bottom,"+o+");";return i='<div id="'+n+'-h" class="'+r+'colorpicker-h" style="'+a+'">'+e()+'<div id="'+n+'-hp" class="'+r+'colorpicker-h-marker"></div></div>','<div id="'+n+'" class="'+t.classes+'"><div id="'+n+'-sv" class="'+r+'colorpicker-sv"><div class="'+r+'colorpicker-overlay1"><div class="'+r+'colorpicker-overlay2"><div id="'+n+'-svp" class="'+r+'colorpicker-selector1"><div class="'+r+'colorpicker-selector2"></div></div></div></div></div>'+i+"</div>"}})}),r(je,[Pe],function(e){return e.extend({init:function(e){var t=this;e.delimiter||(e.delimiter="\xbb"),t._super(e),t.classes.add("path"),t.canFocus=!0,t.on("click",function(e){var n,r=e.target;(n=r.getAttribute("data-index"))&&t.fire("select",{value:t.row()[n],index:n})}),t.row(t.settings.row)},focus:function(){var e=this;return e.getEl().firstChild.focus(),e},row:function(e){return arguments.length?(this.state.set("row",e),this):this.state.get("row")},renderHtml:function(){var e=this;return'<div id="'+e._id+'" class="'+e.classes+'">'+e._getDataPathHtml(e.state.get("row"))+"</div>"},bindStates:function(){var e=this;return e.state.on("change:row",function(t){e.innerHtml(e._getDataPathHtml(t.value))}),e._super()},_getDataPathHtml:function(e){var t=this,n=e||[],r,i,o="",a=t.classPrefix;for(r=0,i=n.length;i>r;r++)o+=(r>0?'<div class="'+a+'divider" aria-hidden="true"> '+t.settings.delimiter+" </div>":"")+'<div role="button" class="'+a+"path-item"+(r==i-1?" "+a+"last":"")+'" data-index="'+r+'" tabindex="-1" id="'+t._id+"-"+r+'" aria-level="'+r+'">'+n[r].name+"</div>";return o||(o='<div class="'+a+'path-item">\xa0</div>'),o}})}),r(Ke,[je,Ne],function(e,t){return e.extend({postRender:function(){function e(e){if(1===e.nodeType){if("BR"==e.nodeName||e.getAttribute("data-mce-bogus"))return!0;if("bookmark"===e.getAttribute("data-mce-type"))return!0}return!1}var n=this,r=t.activeEditor;return r.settings.elementpath!==!1&&(n.on("select",function(e){r.focus(),r.selection.select(this.row()[e.index].element),r.nodeChanged()}),r.on("nodeChange",function(t){for(var i=[],o=t.parents,a=o.length;a--;)if(1==o[a].nodeType&&!e(o[a])){var s=r.fire("ResolveName",{name:o[a].nodeName.toLowerCase(),target:o[a]});if(s.isDefaultPrevented()||i.push({name:s.name,element:o[a]}),s.isPropagationStopped())break}n.row(i)})),n._super()}})}),r(Ye,[re],function(e){return e.extend({Defaults:{layout:"flex",align:"center",defaults:{flex:1}},renderHtml:function(){var e=this,t=e._layout,n=e.classPrefix;return e.classes.add("formitem"),t.preRender(e),'<div id="'+e._id+'" class="'+e.classes+'" hidefocus="1" tabindex="-1">'+(e.settings.title?'<div id="'+e._id+'-title" class="'+n+'title">'+e.settings.title+"</div>":"")+'<div id="'+e._id+'-body" class="'+e.bodyClasses+'">'+(e.settings.html||"")+t.renderHtml(e)+"</div></div>"}})}),r(Ge,[re,Ye,d],function(e,t,n){return e.extend({Defaults:{containerCls:"form",layout:"flex",direction:"column",align:"stretch",flex:1,padding:20,labelGap:30,spacing:10,callbacks:{submit:function(){this.submit()}}},preRender:function(){var e=this,r=e.items();e.settings.formItemDefaults||(e.settings.formItemDefaults={layout:"flex",autoResize:"overflow",defaults:{flex:1}}),r.each(function(r){var i,o=r.settings.label;o&&(i=new t(n.extend({items:{type:"label",id:r._id+"-l",text:o,flex:0,forId:r._id,disabled:r.disabled()}},e.settings.formItemDefaults)),i.type="formitem",r.aria("labelledby",r._id+"-l"),"undefined"==typeof r.settings.flex&&(r.settings.flex=1),e.replace(r,i),i.add(r))})},submit:function(){return this.fire("submit",{data:this.toJSON()})},postRender:function(){var e=this;e._super(),e.fromJSON(e.settings.data)},bindStates:function(){function e(){var e=0,n=[],r,i,o;if(t.settings.labelGapCalc!==!1)for(o="children"==t.settings.labelGapCalc?t.find("formitem"):t.items(),o.filter("formitem").each(function(t){var r=t.items()[0],i=r.getEl().clientWidth;e=i>e?i:e,n.push(r)}),i=t.settings.labelGap||0,r=n.length;r--;)n[r].settings.minWidth=e+i}var t=this;t._super(),t.on("show",e),e()}})}),r(Xe,[Ge],function(e){return e.extend({Defaults:{containerCls:"fieldset",layout:"flex",direction:"column",align:"stretch",flex:1,padding:"25 15 5 15",labelGap:30,spacing:10,border:1},renderHtml:function(){var e=this,t=e._layout,n=e.classPrefix;return e.preRender(),t.preRender(e),'<fieldset id="'+e._id+'" class="'+e.classes+'" hidefocus="1" tabindex="-1">'+(e.settings.title?'<legend id="'+e._id+'-title" class="'+n+'fieldset-title">'+e.settings.title+"</legend>":"")+'<div id="'+e._id+'-body" class="'+e.bodyClasses+'">'+(e.settings.html||"")+t.renderHtml(e)+"</div></fieldset>"}})}),r(Je,[ze,d],function(e,t){return e.extend({init:function(e){var n=this,r=tinymce.activeEditor,i=r.settings,o,a,s;e.spellcheck=!1,s=i.file_picker_types||i.file_browser_callback_types,s&&(s=t.makeMap(s,/[, ]/)),(!s||s[e.filetype])&&(a=i.file_picker_callback,!a||s&&!s[e.filetype]?(a=i.file_browser_callback,!a||s&&!s[e.filetype]||(o=function(){a(n.getEl("inp").id,n.value(),e.filetype,window)})):o=function(){var i=n.fire("beforecall").meta;i=t.extend({filetype:e.filetype},i),a.call(r,function(e,t){n.value(e).fire("change",{meta:t})},n.value(),i)}),o&&(e.icon="browse",e.onaction=o),n._super(e)}})}),r(Qe,[He],function(e){return e.extend({recalc:function(e){var t=e.layoutRect(),n=e.paddingBox;e.items().filter(":visible").each(function(e){e.layoutRect({x:n.left,y:n.top,w:t.innerW-n.right-n.left,h:t.innerH-n.top-n.bottom}),e.recalc&&e.recalc()})}})}),r(Ze,[He],function(e){return e.extend({recalc:function(e){var t,n,r,i,o,a,s,l,c,u,d,f,h,p,m,g,v=[],y,b,x,C,w,_,E,N,k,S,T,R,A,B,D,M,H,L,P,O,I,F,z=Math.max,W=Math.min;for(r=e.items().filter(":visible"),i=e.layoutRect(),o=e.paddingBox,a=e.settings,f=e.isRtl()?a.direction||"row-reversed":a.direction,s=a.align,l=e.isRtl()?a.pack||"end":a.pack,c=a.spacing||0,("row-reversed"==f||"column-reverse"==f)&&(r=r.set(r.toArray().reverse()),f=f.split("-")[0]),"column"==f?(k="y",E="h",N="minH",S="maxH",R="innerH",T="top",A="deltaH",B="contentH",P="left",H="w",D="x",M="innerW",L="minW",O="right",I="deltaW",F="contentW"):(k="x",E="w",N="minW",S="maxW",R="innerW",T="left",A="deltaW",B="contentW",P="top",H="h",D="y",M="innerH",L="minH",O="bottom",I="deltaH",F="contentH"),d=i[R]-o[T]-o[T],_=u=0,t=0,n=r.length;n>t;t++)h=r[t],p=h.layoutRect(),m=h.settings,g=m.flex,d-=n-1>t?c:0,g>0&&(u+=g,p[S]&&v.push(h),p.flex=g),d-=p[N],y=o[P]+p[L]+o[O],y>_&&(_=y);if(C={},0>d?C[N]=i[N]-d+i[A]:C[N]=i[R]-d+i[A],C[L]=_+i[I],C[B]=i[R]-d,C[F]=_,C.minW=W(C.minW,i.maxW),C.minH=W(C.minH,i.maxH),C.minW=z(C.minW,i.startMinWidth),C.minH=z(C.minH,i.startMinHeight),!i.autoResize||C.minW==i.minW&&C.minH==i.minH){for(x=d/u,t=0,n=v.length;n>t;t++)h=v[t],p=h.layoutRect(),b=p[S],y=p[N]+p.flex*x,y>b?(d-=p[S]-p[N],u-=p.flex,p.flex=0,p.maxFlexSize=b):p.maxFlexSize=0;for(x=d/u,w=o[T],C={},0===u&&("end"==l?w=d+o[T]:"center"==l?(w=Math.round(i[R]/2-(i[R]-d)/2)+o[T],0>w&&(w=o[T])):"justify"==l&&(w=o[T],c=Math.floor(d/(r.length-1)))),C[D]=o[P],t=0,n=r.length;n>t;t++)h=r[t],p=h.layoutRect(),y=p.maxFlexSize||p[N],"center"===s?C[D]=Math.round(i[M]/2-p[H]/2):"stretch"===s?(C[H]=z(p[L]||0,i[M]-o[P]-o[O]),C[D]=o[P]):"end"===s&&(C[D]=i[M]-p[H]-o.top),p.flex>0&&(y+=p.flex*x),C[E]=y,C[k]=w,h.layoutRect(C),h.recalc&&h.recalc(),w+=y+c}else if(C.w=C.minW,C.h=C.minH,e.layoutRect(C),this.recalc(e),null===e._lastRect){var V=e.parent();V&&(V._lastRect=null,V.recalc())}}})}),r(et,[Me],function(e){return e.extend({Defaults:{containerClass:"flow-layout",controlClass:"flow-layout-item",endClass:"break"},recalc:function(e){e.items().filter(":visible").each(function(e){e.recalc&&e.recalc()})},isNative:function(){return!0}})}),r(tt,[ee,Pe,ce,d,Ne,u],function(e,t,n,r,i,o){function a(e){function t(t,n){return function(){var r=this;e.on("nodeChange",function(i){var o=e.formatter,a=null;s(i.parents,function(e){return s(t,function(t){return n?o.matchNode(e,n,{value:t.value})&&(a=t.value):o.matchNode(e,t.value)&&(a=t.value),a?!1:void 0}),a?!1:void 0}),r.value(a)})}}function r(e){e=e.replace(/;$/,"").split(";");for(var t=e.length;t--;)e[t]=e[t].split("=");return e}function i(){function t(e){var n=[];if(e)return s(e,function(e){var o={text:e.title,icon:e.icon};if(e.items)o.menu=t(e.items);else{var a=e.format||"custom"+r++;e.format||(e.name=a,i.push(e)),o.format=a,o.cmd=e.cmd}n.push(o)}),n}function n(){var n;return n=t(e.settings.style_formats_merge?e.settings.style_formats?o.concat(e.settings.style_formats):o:e.settings.style_formats||o)}var r=0,i=[],o=[{title:"Headings",items:[{title:"Heading 1",format:"h1"},{title:"Heading 2",format:"h2"},{title:"Heading 3",format:"h3"},{title:"Heading 4",format:"h4"},{title:"Heading 5",format:"h5"},{title:"Heading 6",format:"h6"}]},{title:"Inline",items:[{title:"Bold",icon:"bold",format:"bold"},{title:"Italic",icon:"italic",format:"italic"},{title:"Underline",icon:"underline",format:"underline"},{title:"Strikethrough",icon:"strikethrough",format:"strikethrough"},{title:"Superscript",icon:"superscript",format:"superscript"},{title:"Subscript",icon:"subscript",format:"subscript"},{title:"Code",icon:"code",format:"code"}]},{title:"Blocks",items:[{title:"Paragraph",format:"p"},{title:"Blockquote",format:"blockquote"},{title:"Div",format:"div"},{title:"Pre",format:"pre"}]},{title:"Alignment",items:[{title:"Left",icon:"alignleft",format:"alignleft"},{title:"Center",icon:"aligncenter",format:"aligncenter"},{title:"Right",icon:"alignright",format:"alignright"},{title:"Justify",icon:"alignjustify",format:"alignjustify"}]}];return e.on("init",function(){s(i,function(t){e.formatter.register(t.name,t)})}),{type:"menu",items:n(),onPostRender:function(t){e.fire("renderFormatsMenu",{control:t.control})},itemDefaults:{preview:!0,textStyle:function(){return this.settings.format?e.formatter.getCssText(this.settings.format):void 0},onPostRender:function(){var t=this;t.parent().on("show",function(){var n,r;n=t.settings.format,n&&(t.disabled(!e.formatter.canApply(n)),t.active(e.formatter.match(n))),r=t.settings.cmd,r&&t.active(e.queryCommandState(r))})},onclick:function(){this.settings.format&&l(this.settings.format),this.settings.cmd&&e.execCommand(this.settings.cmd)}}}}function o(t){return function(){function n(){return e.undoManager?e.undoManager[t]():!1}var r=this;t="redo"==t?"hasRedo":"hasUndo",r.disabled(!n()),e.on("Undo Redo AddUndo TypingUndo ClearUndos",function(){r.disabled(!n())})}}function a(){var t=this;e.on("VisualAid",function(e){t.active(e.hasVisual)}),t.active(e.hasVisual)}function l(t){t.control&&(t=t.control.value()),t&&e.execCommand("mceToggleFormat",!1,t)}var c;c=i(),s({bold:"Bold",italic:"Italic",underline:"Underline",strikethrough:"Strikethrough",subscript:"Subscript",superscript:"Superscript"},function(t,n){e.addButton(n,{tooltip:t,onPostRender:function(){var t=this;e.formatter?e.formatter.formatChanged(n,function(e){t.active(e)}):e.on("init",function(){e.formatter.formatChanged(n,function(e){t.active(e)})})},onclick:function(){l(n)}})}),s({outdent:["Decrease indent","Outdent"],indent:["Increase indent","Indent"],cut:["Cut","Cut"],copy:["Copy","Copy"],paste:["Paste","Paste"],help:["Help","mceHelp"],selectall:["Select all","SelectAll"],removeformat:["Clear formatting","RemoveFormat"],visualaid:["Visual aids","mceToggleVisualAid"],newdocument:["New document","mceNewDocument"]},function(t,n){e.addButton(n,{tooltip:t[0],cmd:t[1]})}),s({blockquote:["Blockquote","mceBlockQuote"],numlist:["Numbered list","InsertOrderedList"],bullist:["Bullet list","InsertUnorderedList"],subscript:["Subscript","Subscript"],superscript:["Superscript","Superscript"],alignleft:["Align left","JustifyLeft"],aligncenter:["Align center","JustifyCenter"],alignright:["Align right","JustifyRight"],alignjustify:["Justify","JustifyFull"],alignnone:["No alignment","JustifyNone"]},function(t,n){e.addButton(n,{tooltip:t[0],cmd:t[1],onPostRender:function(){var t=this;e.formatter?e.formatter.formatChanged(n,function(e){t.active(e)}):e.on("init",function(){e.formatter.formatChanged(n,function(e){t.active(e)})})}})}),e.addButton("undo",{tooltip:"Undo",onPostRender:o("undo"),cmd:"undo"}),e.addButton("redo",{tooltip:"Redo",onPostRender:o("redo"),cmd:"redo"}),e.addMenuItem("newdocument",{text:"New document",icon:"newdocument",cmd:"mceNewDocument"}),e.addMenuItem("undo",{text:"Undo",icon:"undo",shortcut:"Meta+Z",onPostRender:o("undo"),cmd:"undo"}),e.addMenuItem("redo",{text:"Redo",icon:"redo",shortcut:"Meta+Y",onPostRender:o("redo"),cmd:"redo"}),e.addMenuItem("visualaid",{text:"Visual aids",selectable:!0,onPostRender:a,cmd:"mceToggleVisualAid"}),e.addButton("remove",{tooltip:"Remove",icon:"remove",cmd:"Delete"}),s({cut:["Cut","Cut","Meta+X"],copy:["Copy","Copy","Meta+C"],paste:["Paste","Paste","Meta+V"],selectall:["Select all","SelectAll","Meta+A"],bold:["Bold","Bold","Meta+B"],italic:["Italic","Italic","Meta+I"],underline:["Underline","Underline"],strikethrough:["Strikethrough","Strikethrough"],subscript:["Subscript","Subscript"],superscript:["Superscript","Superscript"],removeformat:["Clear formatting","RemoveFormat"]},function(t,n){e.addMenuItem(n,{text:t[0],icon:n,shortcut:t[2],cmd:t[1]})}),e.on("mousedown",function(){n.hideAll()}),e.addButton("styleselect",{type:"menubutton",text:"Formats",menu:c}),e.addButton("formatselect",function(){var n=[],i=r(e.settings.block_formats||"Paragraph=p;Heading 1=h1;Heading 2=h2;Heading 3=h3;Heading 4=h4;Heading 5=h5;Heading 6=h6;Preformatted=pre");return s(i,function(t){n.push({text:t[0],value:t[1],textStyle:function(){return e.formatter.getCssText(t[1])}})}),{type:"listbox",text:i[0][0],values:n,fixedWidth:!0,onselect:l,onPostRender:t(n)}}),e.addButton("fontselect",function(){var n="Andale Mono=andale mono,monospace;Arial=arial,helvetica,sans-serif;Arial Black=arial black,sans-serif;Book Antiqua=book antiqua,palatino,serif;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,palatino,serif;Helvetica=helvetica,arial,sans-serif;Impact=impact,sans-serif;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco,monospace;Times New Roman=times new roman,times,serif;Trebuchet MS=trebuchet ms,geneva,sans-serif;Verdana=verdana,geneva,sans-serif;Webdings=webdings;Wingdings=wingdings,zapf dingbats",i=[],o=r(e.settings.font_formats||n);return s(o,function(e){i.push({text:{raw:e[0]},value:e[1],textStyle:-1==e[1].indexOf("dings")?"font-family:"+e[1]:""})}),{type:"listbox",text:"Font Family",tooltip:"Font Family",values:i,fixedWidth:!0,onPostRender:t(i,"fontname"),onselect:function(t){t.control.settings.value&&e.execCommand("FontName",!1,t.control.settings.value)}}}),e.addButton("fontsizeselect",function(){var n=[],r="8pt 10pt 12pt 14pt 18pt 24pt 36pt",i=e.settings.fontsize_formats||r;return s(i.split(" "),function(e){var t=e,r=e,i=e.split("=");i.length>1&&(t=i[0],r=i[1]),n.push({text:t,value:r})}),{type:"listbox",text:"Font Sizes",tooltip:"Font Sizes",values:n,fixedWidth:!0,onPostRender:t(n,"fontsize"),onclick:function(t){t.control.settings.value&&e.execCommand("FontSize",!1,t.control.settings.value)}}}),e.addMenuItem("formats",{text:"Formats",menu:c})}var s=r.each;i.on("AddEditor",function(t){t.editor.rtl&&(e.rtl=!0),a(t.editor)}),e.translate=function(e){return i.translate(e)},t.tooltips=!o.iOS}),r(nt,[He],function(e){return e.extend({recalc:function(e){var t=e.settings,n,r,i,o,a,s,l,c,u,d,f,h,p,m,g,v,y,b,x,C,w,_,E=[],N=[],k,S,T,R,A,B;t=e.settings,i=e.items().filter(":visible"),o=e.layoutRect(),r=t.columns||Math.ceil(Math.sqrt(i.length)),n=Math.ceil(i.length/r),y=t.spacingH||t.spacing||0,b=t.spacingV||t.spacing||0,x=t.alignH||t.align,C=t.alignV||t.align,g=e.paddingBox,A="reverseRows"in t?t.reverseRows:e.isRtl(),x&&"string"==typeof x&&(x=[x]),C&&"string"==typeof C&&(C=[C]);for(d=0;r>d;d++)E.push(0);for(f=0;n>f;f++)N.push(0);for(f=0;n>f;f++)for(d=0;r>d&&(u=i[f*r+d],u);d++)c=u.layoutRect(),k=c.minW,S=c.minH,E[d]=k>E[d]?k:E[d],N[f]=S>N[f]?S:N[f];for(T=o.innerW-g.left-g.right,w=0,d=0;r>d;d++)w+=E[d]+(d>0?y:0),T-=(d>0?y:0)+E[d];for(R=o.innerH-g.top-g.bottom,_=0,f=0;n>f;f++)_+=N[f]+(f>0?b:0),R-=(f>0?b:0)+N[f];if(w+=g.left+g.right,_+=g.top+g.bottom,l={},l.minW=w+(o.w-o.innerW),l.minH=_+(o.h-o.innerH),l.contentW=l.minW-o.deltaW,l.contentH=l.minH-o.deltaH,l.minW=Math.min(l.minW,o.maxW),l.minH=Math.min(l.minH,o.maxH),l.minW=Math.max(l.minW,o.startMinWidth),l.minH=Math.max(l.minH,o.startMinHeight),!o.autoResize||l.minW==o.minW&&l.minH==o.minH){o.autoResize&&(l=e.layoutRect(l),l.contentW=l.minW-o.deltaW,l.contentH=l.minH-o.deltaH);var D;D="start"==t.packV?0:R>0?Math.floor(R/n):0;var M=0,H=t.flexWidths;if(H)for(d=0;d<H.length;d++)M+=H[d];else M=r;var L=T/M;for(d=0;r>d;d++)E[d]+=H?H[d]*L:L;for(p=g.top,f=0;n>f;f++){for(h=g.left,s=N[f]+D,d=0;r>d&&(B=A?f*r+r-1-d:f*r+d,u=i[B],u);d++)m=u.settings,c=u.layoutRect(),a=Math.max(E[d],c.startMinWidth),c.x=h,c.y=p,v=m.alignH||(x?x[d]||x[0]:null),"center"==v?c.x=h+a/2-c.w/2:"right"==v?c.x=h+a-c.w:"stretch"==v&&(c.w=a),v=m.alignV||(C?C[d]||C[0]:null),"center"==v?c.y=p+s/2-c.h/2:"bottom"==v?c.y=p+s-c.h:"stretch"==v&&(c.h=s),u.layoutRect(c),h+=a+y,u.recalc&&u.recalc();p+=s+b}}else if(l.w=l.minW,l.h=l.minH,e.layoutRect(l),this.recalc(e),null===e._lastRect){var P=e.parent();P&&(P._lastRect=null,P.recalc())}}})}),r(rt,[Pe],function(e){return e.extend({renderHtml:function(){var e=this;return e.classes.add("iframe"),e.canFocus=!1,'<iframe id="'+e._id+'" class="'+e.classes+'" tabindex="-1" src="'+(e.settings.url||"javascript:''")+'" frameborder="0"></iframe>'},src:function(e){this.getEl().src=e},html:function(e,t){var n=this,r=this.getEl().contentWindow.document.body;return r?(r.innerHTML=e,t&&t()):setTimeout(function(){n.html(e)},0),this}})}),r(it,[Pe,X],function(e,t){return e.extend({init:function(e){var t=this;t._super(e),t.classes.add("widget").add("label"),t.canFocus=!1,e.multiline&&t.classes.add("autoscroll"),e.strong&&t.classes.add("strong")},initLayoutRect:function(){var e=this,n=e._super();if(e.settings.multiline){var r=t.getSize(e.getEl());r.width>n.maxW&&(n.minW=n.maxW,e.classes.add("multiline")),e.getEl().style.width=n.minW+"px",n.startMinH=n.h=n.minH=Math.min(n.maxH,t.getSize(e.getEl()).height)}return n},repaint:function(){var e=this;return e.settings.multiline||(e.getEl().style.lineHeight=e.layoutRect().h+"px"),e._super()},renderHtml:function(){var e=this,t=e.settings.forId;return'<label id="'+e._id+'" class="'+e.classes+'"'+(t?' for="'+t+'"':"")+">"+e.encode(e.state.get("text"))+"</label>"},bindStates:function(){var e=this;return e.state.on("change:text",function(t){e.innerHtml(e.encode(t.value))}),e._super()}})}),r(ot,[re],function(e){return e.extend({Defaults:{role:"toolbar",layout:"flow"},init:function(e){var t=this;t._super(e),t.classes.add("toolbar")},postRender:function(){var e=this;return e.items().each(function(e){e.classes.add("toolbar-item")}),e._super()}})}),r(at,[ot],function(e){return e.extend({Defaults:{role:"menubar",containerCls:"menubar",ariaRoot:!0,defaults:{type:"menubutton"}}})}),r(st,[Oe,te,at],function(e,t,n){function r(e,t){for(;e;){if(t===e)return!0;e=e.parentNode}return!1}var i=e.extend({init:function(e){var t=this;t._renderOpen=!0,t._super(e),e=t.settings,t.classes.add("menubtn"),e.fixedWidth&&t.classes.add("fixed-width"),t.aria("haspopup",!0),
11
+ t.state.set("menu",e.menu||t.render())},showMenu:function(){var e=this,n;return e.menu&&e.menu.visible()?e.hideMenu():(e.menu||(n=e.state.get("menu")||[],n.length?n={type:"menu",items:n}:n.type=n.type||"menu",n.renderTo?e.menu=n.parent(e).show().renderTo():e.menu=t.create(n).parent(e).renderTo(),e.fire("createmenu"),e.menu.reflow(),e.menu.on("cancel",function(t){t.control.parent()===e.menu&&(t.stopPropagation(),e.focus(),e.hideMenu())}),e.menu.on("select",function(){e.focus()}),e.menu.on("show hide",function(t){t.control==e.menu&&e.activeMenu("show"==t.type),e.aria("expanded","show"==t.type)}).fire("show")),e.menu.show(),e.menu.layoutRect({w:e.layoutRect().w}),void e.menu.moveRel(e.getEl(),e.isRtl()?["br-tr","tr-br"]:["bl-tl","tl-bl"]))},hideMenu:function(){var e=this;e.menu&&(e.menu.items().each(function(e){e.hideMenu&&e.hideMenu()}),e.menu.hide())},activeMenu:function(e){this.classes.toggle("active",e)},renderHtml:function(){var e=this,t=e._id,r=e.classPrefix,i=e.settings.icon,o,a=e.state.get("text");return o=e.settings.image,o?(i="none","string"!=typeof o&&(o=window.getSelection?o[0]:o[1]),o=" style=\"background-image: url('"+o+"')\""):o="",i=e.settings.icon?r+"ico "+r+"i-"+i:"",e.aria("role",e.parent()instanceof n?"menuitem":"button"),'<div id="'+t+'" class="'+e.classes+'" tabindex="-1" aria-labelledby="'+t+'"><button id="'+t+'-open" role="presentation" type="button" tabindex="-1">'+(i?'<i class="'+i+'"'+o+"></i>":"")+(a?(i?"\xa0":"")+e.encode(a):"")+' <i class="'+r+'caret"></i></button></div>'},postRender:function(){var e=this;return e.on("click",function(t){t.control===e&&r(t.target,e.getEl())&&(e.showMenu(),t.aria&&e.menu.items()[0].focus())}),e.on("mouseenter",function(t){var n=t.control,r=e.parent(),o;n&&r&&n instanceof i&&n.parent()==r&&(r.items().filter("MenuButton").each(function(e){e.hideMenu&&e!=n&&(e.menu&&e.menu.visible()&&(o=!0),e.hideMenu())}),o&&(n.focus(),n.showMenu()))}),e._super()},bindStates:function(){var e=this;return e.state.on("change:menu",function(){e.menu&&e.menu.remove(),e.menu=null}),e._super()},remove:function(){this._super(),this.menu&&this.menu.remove()}});return i}),r(lt,[Pe,te,u],function(e,t,n){return e.extend({Defaults:{border:0,role:"menuitem"},init:function(e){var t=this,n;t._super(e),e=t.settings,t.classes.add("menu-item"),e.menu&&t.classes.add("menu-item-expand"),e.preview&&t.classes.add("menu-item-preview"),n=t.state.get("text"),("-"===n||"|"===n)&&(t.classes.add("menu-item-sep"),t.aria("role","separator"),t.state.set("text","-")),e.selectable&&(t.aria("role","menuitemcheckbox"),t.classes.add("menu-item-checkbox"),e.icon="selected"),e.preview||e.selectable||t.classes.add("menu-item-normal"),t.on("mousedown",function(e){e.preventDefault()}),e.menu&&!e.ariaHideMenu&&t.aria("haspopup",!0)},hasMenus:function(){return!!this.settings.menu},showMenu:function(){var e=this,n=e.settings,r,i=e.parent();if(i.items().each(function(t){t!==e&&t.hideMenu()}),n.menu){r=e.menu,r?r.show():(r=n.menu,r.length?r={type:"menu",items:r}:r.type=r.type||"menu",i.settings.itemDefaults&&(r.itemDefaults=i.settings.itemDefaults),r=e.menu=t.create(r).parent(e).renderTo(),r.reflow(),r.on("cancel",function(t){t.stopPropagation(),e.focus(),r.hide()}),r.on("show hide",function(e){e.control.items().each(function(e){e.active(e.settings.selected)})}).fire("show"),r.on("hide",function(t){t.control===r&&e.classes.remove("selected")}),r.submenu=!0),r._parentMenu=i,r.classes.add("menu-sub");var o=r.testMoveRel(e.getEl(),e.isRtl()?["tl-tr","bl-br","tr-tl","br-bl"]:["tr-tl","br-bl","tl-tr","bl-br"]);r.moveRel(e.getEl(),o),r.rel=o,o="menu-sub-"+o,r.classes.remove(r._lastRel).add(o),r._lastRel=o,e.classes.add("selected"),e.aria("expanded",!0)}},hideMenu:function(){var e=this;return e.menu&&(e.menu.items().each(function(e){e.hideMenu&&e.hideMenu()}),e.menu.hide(),e.aria("expanded",!1)),e},renderHtml:function(){function e(e){var t,r,i={};for(i=n.mac?{alt:"&#x2325;",ctrl:"&#x2318;",shift:"&#x21E7;",meta:"&#x2318;"}:{meta:"Ctrl"},e=e.split("+"),t=0;t<e.length;t++)r=i[e[t].toLowerCase()],r&&(e[t]=r);return e.join("+")}var t=this,r=t._id,i=t.settings,o=t.classPrefix,a=t.encode(t.state.get("text")),s=t.settings.icon,l="",c=i.shortcut;return s&&t.parent().classes.add("menu-has-icons"),i.image&&(s="none",l=" style=\"background-image: url('"+i.image+"')\""),c&&(c=e(c)),s=o+"ico "+o+"i-"+(t.settings.icon||"none"),'<div id="'+r+'" class="'+t.classes+'" tabindex="-1">'+("-"!==a?'<i class="'+s+'"'+l+"></i>\xa0":"")+("-"!==a?'<span id="'+r+'-text" class="'+o+'text">'+a+"</span>":"")+(c?'<div id="'+r+'-shortcut" class="'+o+'menu-shortcut">'+c+"</div>":"")+(i.menu?'<div class="'+o+'caret"></div>':"")+"</div>"},postRender:function(){var e=this,t=e.settings,n=t.textStyle;if("function"==typeof n&&(n=n.call(this)),n){var r=e.getEl("text");r&&r.setAttribute("style",n)}return e.on("mouseenter click",function(n){n.control===e&&(t.menu||"click"!==n.type?(e.showMenu(),n.aria&&e.menu.focus(!0)):(e.fire("select"),e.parent().hideAll()))}),e._super(),e},active:function(e){return"undefined"!=typeof e&&this.aria("checked",e),this._super(e)},remove:function(){this._super(),this.menu&&this.menu.remove()}})}),r(ct,[ce,lt,d],function(e,t,n){var r=e.extend({Defaults:{defaultType:"menuitem",border:1,layout:"stack",role:"application",bodyRole:"menu",ariaRoot:!0},init:function(e){var t=this;if(e.autohide=!0,e.constrainToViewport=!0,e.itemDefaults)for(var r=e.items,i=r.length;i--;)r[i]=n.extend({},e.itemDefaults,r[i]);t._super(e),t.classes.add("menu")},repaint:function(){return this.classes.toggle("menu-align",!0),this._super(),this.getEl().style.height="",this.getEl("body").style.height="",this},cancel:function(){var e=this;e.hideAll(),e.fire("select")},hideAll:function(){var e=this;return this.find("menuitem").exec("hideMenu"),e._super()},preRender:function(){var e=this;return e.items().each(function(t){var n=t.settings;return n.icon||n.image||n.selectable?(e._hasIcons=!0,!1):void 0}),e._super()}});return r}),r(ut,[st,ct],function(e,t){return e.extend({init:function(e){function t(r){for(var a=0;a<r.length;a++){if(i=r[a].selected||e.value===r[a].value)return o=o||r[a].text,n.state.set("value",r[a].value),!0;if(r[a].menu&&t(r[a].menu))return!0}}var n=this,r,i,o,a;n._super(e),e=n.settings,n._values=r=e.values,r&&("undefined"!=typeof e.value&&t(r),!i&&r.length>0&&(o=r[0].text,n.state.set("value",r[0].value)),n.state.set("menu",r)),n.state.set("text",e.text||o||r[0].text),n.classes.add("listbox"),n.on("select",function(t){var r=t.control;a&&(t.lastControl=a),e.multiple?r.active(!r.active()):n.value(t.control.value()),a=r})},bindStates:function(){function e(e,n){e instanceof t&&e.items().each(function(e){e.hasMenus()||e.active(e.value()===n)})}function n(e,t){var r;if(e)for(var i=0;i<e.length;i++){if(e[i].value===t)return e[i];if(e[i].menu&&(r=n(e[i].menu,t)))return r}}var r=this;return r.on("show",function(t){e(t.control,r.value())}),r.state.on("change:value",function(e){var t=n(r.state.get("menu"),e.value);t?r.text(t.text):r.text(r.settings.text)}),r._super()}})}),r(dt,[Fe],function(e){return e.extend({Defaults:{classes:"radio",role:"radio"}})}),r(ft,[],function(){function e(e,t,n){var r,i,o,a,l,c;return r=t.x,i=t.y,o=e.w,a=e.h,l=t.w,c=t.h,n=(n||"").split(""),"b"===n[0]&&(i+=c),"r"===n[1]&&(r+=l),"c"===n[0]&&(i+=s(c/2)),"c"===n[1]&&(r+=s(l/2)),"b"===n[3]&&(i-=a),"r"===n[4]&&(r-=o),"c"===n[3]&&(i-=s(a/2)),"c"===n[4]&&(r-=s(o/2)),{x:r,y:i,w:o,h:a}}function t(t,n,r,i){var o,a;for(a=0;a<i.length;a++)if(o=e(t,n,i[a]),o.x>=r.x&&o.x+o.w<=r.w+r.x&&o.y>=r.y&&o.y+o.h<=r.h+r.y)return i[a]}function n(e,t,n){return{x:e.x-t,y:e.y-n,w:e.w+2*t,h:e.h+2*n}}function r(e,t){var n,r,i,s;return n=a(e.x,t.x),r=a(e.y,t.y),i=o(e.x+e.w,t.x+t.w),s=o(e.y+e.h,t.y+t.h),0>i-n||0>s-r?null:{x:n,y:r,w:i-n,h:s-r}}function i(e,t,n){var r,i,o,s,l,c,u,d,f,h;return l=e.x,c=e.y,u=e.x+e.w,d=e.y+e.h,f=t.x+t.w,h=t.y+t.h,r=a(0,t.x-l),i=a(0,t.y-c),o=a(0,u-f),s=a(0,d-h),l+=r,c+=i,n&&(u+=r,d+=i,l-=o,c-=s),u-=o,d-=s,{x:l,y:c,w:u-l,h:d-c}}var o=Math.min,a=Math.max,s=Math.round;return{inflate:n,relativePosition:e,findBestRelativePosition:t,intersect:r,clamp:i}}),r(ht,[Pe,ie],function(e,t){return e.extend({renderHtml:function(){var e=this,t=e.classPrefix;return e.classes.add("resizehandle"),"both"==e.settings.direction&&e.classes.add("resizehandle-both"),e.canFocus=!1,'<div id="'+e._id+'" class="'+e.classes+'"><i class="'+t+"ico "+t+'i-resize"></i></div>'},postRender:function(){var e=this;e._super(),e.resizeDragHelper=new t(this._id,{start:function(){e.fire("ResizeStart")},drag:function(t){"both"!=e.settings.direction&&(t.deltaX=0),e.fire("Resize",t)},stop:function(){e.fire("ResizeEnd")}})},remove:function(){return this.resizeDragHelper&&this.resizeDragHelper.destroy(),this._super()}})}),r(pt,[Pe,ie,X],function(e,t,n){function r(e,t,n){return t>e&&(e=t),e>n&&(e=n),e}function i(e,t){var r,i,o,a,s;"v"==e.settings.orientation?(a="top",o="height",i="h"):(a="left",o="width",i="w"),r=(e.layoutRect()[i]||100)-n.getSize(e.getEl("handle"))[o],s=r*((t-e._minValue)/(e._maxValue-e._minValue))+"px",e.getEl("handle").style[a]=s,e.getEl("handle").style.height=e.layoutRect().h+"px"}return e.extend({init:function(e){var t=this;e.previewFilter||(e.previewFilter=function(e){return Math.round(100*e)/100}),t._super(e),t.classes.add("slider"),"v"==e.orientation&&t.classes.add("vertical"),t._minValue=e.minValue||0,t._maxValue=e.maxValue||100,t._initValue=t.state.get("value")},renderHtml:function(){var e=this,t=e._id,n=e.classPrefix;return'<div id="'+t+'" class="'+e.classes+'"><div id="'+t+'-handle" class="'+n+'slider-handle"></div></div>'},reset:function(){this.value(this._initValue).repaint()},postRender:function(){var e=this,i,o,a=0,s,l,c,u,d,f,h,p;l=e._minValue,c=e._maxValue,s=e.value(),"v"==e.settings.orientation?(d="screenY",f="top",h="height",p="h"):(d="screenX",f="left",h="width",p="w"),e._super(),e._dragHelper=new t(e._id,{handle:e._id+"-handle",start:function(t){i=t[d],o=parseInt(e.getEl("handle").style[f],10),u=(e.layoutRect()[p]||100)-n.getSize(e.getEl("handle"))[h],e.fire("dragstart",{value:s})},drag:function(t){var n=t[d]-i,h=e.getEl("handle");a=r(o+n,0,u),h.style[f]=a+"px",s=l+a/u*(c-l),e.value(s),e.tooltip().text(""+e.settings.previewFilter(s)).show().moveRel(h,"bc tc"),e.fire("drag",{value:s})},stop:function(){e.tooltip().hide(),e.fire("dragend",{value:s})}})},repaint:function(){this._super(),i(this,this.value())},bindStates:function(){var e=this;return e.state.on("change:value",function(t){i(e,t.value)}),e._super()}})}),r(mt,[Pe],function(e){return e.extend({renderHtml:function(){var e=this;return e.classes.add("spacer"),e.canFocus=!1,'<div id="'+e._id+'" class="'+e.classes+'"></div>'}})}),r(gt,[st,X,f],function(e,t,n){return e.extend({Defaults:{classes:"widget btn splitbtn",role:"button"},repaint:function(){var e=this,r=e.getEl(),i=e.layoutRect(),o,a;return e._super(),o=r.firstChild,a=r.lastChild,n(o).css({width:i.w-t.getSize(a).width,height:i.h-2}),n(a).css({height:i.h-2}),e},activeMenu:function(e){var t=this;n(t.getEl().lastChild).toggleClass(t.classPrefix+"active",e)},renderHtml:function(){var e=this,t=e._id,n=e.classPrefix,r,i=e.state.get("icon"),o=e.state.get("text");return r=e.settings.image,r?(i="none","string"!=typeof r&&(r=window.getSelection?r[0]:r[1]),r=" style=\"background-image: url('"+r+"')\""):r="",i=e.settings.icon?n+"ico "+n+"i-"+i:"",'<div id="'+t+'" class="'+e.classes+'" role="button" tabindex="-1"><button type="button" hidefocus="1" tabindex="-1">'+(i?'<i class="'+i+'"'+r+"></i>":"")+(o?(i?" ":"")+o:"")+'</button><button type="button" class="'+n+'open" hidefocus="1" tabindex="-1">'+(e._menuBtnText?(i?"\xa0":"")+e._menuBtnText:"")+' <i class="'+n+'caret"></i></button></div>'},postRender:function(){var e=this,t=e.settings.onclick;return e.on("click",function(e){var n=e.target;if(e.control==this)for(;n;){if(e.aria&&"down"!=e.aria.key||"BUTTON"==n.nodeName&&-1==n.className.indexOf("open"))return e.stopImmediatePropagation(),void(t&&t.call(this,e));n=n.parentNode}}),delete e.settings.onclick,e._super()}})}),r(vt,[et],function(e){return e.extend({Defaults:{containerClass:"stack-layout",controlClass:"stack-layout-item",endClass:"break"},isNative:function(){return!0}})}),r(yt,[ae,f,X],function(e,t,n){return e.extend({Defaults:{layout:"absolute",defaults:{type:"panel"}},activateTab:function(e){var n;this.activeTabId&&(n=this.getEl(this.activeTabId),t(n).removeClass(this.classPrefix+"active"),n.setAttribute("aria-selected","false")),this.activeTabId="t"+e,n=this.getEl("t"+e),n.setAttribute("aria-selected","true"),t(n).addClass(this.classPrefix+"active"),this.items()[e].show().fire("showtab"),this.reflow(),this.items().each(function(t,n){e!=n&&t.hide()})},renderHtml:function(){var e=this,t=e._layout,n="",r=e.classPrefix;return e.preRender(),t.preRender(e),e.items().each(function(t,i){var o=e._id+"-t"+i;t.aria("role","tabpanel"),t.aria("labelledby",o),n+='<div id="'+o+'" class="'+r+'tab" unselectable="on" role="tab" aria-controls="'+t._id+'" aria-selected="false" tabIndex="-1">'+e.encode(t.settings.title)+"</div>"}),'<div id="'+e._id+'" class="'+e.classes+'" hidefocus="1" tabindex="-1"><div id="'+e._id+'-head" class="'+r+'tabs" role="tablist">'+n+'</div><div id="'+e._id+'-body" class="'+e.bodyClasses+'">'+t.renderHtml(e)+"</div></div>"},postRender:function(){var e=this;e._super(),e.settings.activeTab=e.settings.activeTab||0,e.activateTab(e.settings.activeTab),this.on("click",function(t){var n=t.target.parentNode;if(t.target.parentNode.id==e._id+"-head")for(var r=n.childNodes.length;r--;)n.childNodes[r]==t.target&&e.activateTab(r)})},initLayoutRect:function(){var e=this,t,r,i;r=n.getSize(e.getEl("head")).width,r=0>r?0:r,i=0,e.items().each(function(e){r=Math.max(r,e.layoutRect().minW),i=Math.max(i,e.layoutRect().minH)}),e.items().each(function(e){e.settings.x=0,e.settings.y=0,e.settings.w=r,e.settings.h=i,e.layoutRect({x:0,y:0,w:r,h:i})});var o=n.getSize(e.getEl("head")).height;return e.settings.minWidth=r,e.settings.minHeight=i+o,t=e._super(),t.deltaH+=o,t.innerH=t.h-t.deltaH,t}})}),r(bt,[Pe],function(e){return e.extend({init:function(e){var t=this;t._super(e),t.classes.add("textbox"),e.multiline?t.classes.add("multiline"):(t.on("keydown",function(e){var n;13==e.keyCode&&(e.preventDefault(),t.parents().reverse().each(function(e){return e.toJSON?(n=e,!1):void 0}),t.fire("submit",{data:n.toJSON()}))}),t.on("keyup",function(e){t.state.set("value",e.target.value)}))},repaint:function(){var e=this,t,n,r,i=0,o=0,a;t=e.getEl().style,n=e._layoutRect,a=e._lastRepaintRect||{};var s=document;return!e.settings.multiline&&s.all&&(!s.documentMode||s.documentMode<=8)&&(t.lineHeight=n.h-o+"px"),r=e.borderBox,i=r.left+r.right+8,o=r.top+r.bottom+(e.settings.multiline?8:0),n.x!==a.x&&(t.left=n.x+"px",a.x=n.x),n.y!==a.y&&(t.top=n.y+"px",a.y=n.y),n.w!==a.w&&(t.width=n.w-i+"px",a.w=n.w),n.h!==a.h&&(t.height=n.h-o+"px",a.h=n.h),e._lastRepaintRect=a,e.fire("repaint",{},!1),e},renderHtml:function(){var e=this,t=e._id,n=e.settings,r=e.encode(e.state.get("value"),!1),i="";return"spellcheck"in n&&(i+=' spellcheck="'+n.spellcheck+'"'),n.maxLength&&(i+=' maxlength="'+n.maxLength+'"'),n.size&&(i+=' size="'+n.size+'"'),n.subtype&&(i+=' type="'+n.subtype+'"'),e.disabled()&&(i+=' disabled="disabled"'),n.multiline?'<textarea id="'+t+'" class="'+e.classes+'" '+(n.rows?' rows="'+n.rows+'"':"")+' hidefocus="1"'+i+">"+r+"</textarea>":'<input id="'+t+'" class="'+e.classes+'" value="'+r+'" hidefocus="1"'+i+" />"},value:function(e){return arguments.length?(this.state.set("value",e),this):(this.state.get("rendered")&&this.state.set("value",this.getEl().value),this.state.get("value"))},postRender:function(){var e=this;e._super(),e.$el.on("change",function(t){e.state.set("value",t.target.value),e.fire("change",t)})},bindStates:function(){var e=this;return e.state.on("change:value",function(t){e.getEl().value!=t.value&&(e.getEl().value=t.value)}),e.state.on("change:disabled",function(t){e.getEl().disabled=t.value}),e._super()},remove:function(){this.$el.off(),this._super()}})}),r(xt,[f,ee],function(e,t){return function(n,r){var i=this,o,a=t.classPrefix;i.show=function(t,s){return i.hide(),o=!0,window.setTimeout(function(){o&&(e(n).append('<div class="'+a+"throbber"+(r?" "+a+"throbber-inline":"")+'"></div>'),s&&s())},t||0),i},i.hide=function(){var e=n.lastChild;return e&&-1!=e.className.indexOf("throbber")&&e.parentNode.removeChild(e),o=!1,i}}}),a([l,c,u,d,f,h,p,m,g,y,b,x,C,_,E,N,k,S,T,R,A,B,D,M,H,L,O,I,F,z,W,V,U,$,q,j,K,Y,G,X,J,Q,Z,ee,te,ne,re,ie,oe,ae,se,le,ce,ue,de,fe,he,pe,me,ge,ye,we,_e,Ee,Ne,ke,Se,Te,Re,Ae,Be,De,Me,He,Le,Pe,Oe,Ie,Fe,ze,We,Ve,Ue,$e,qe,je,Ke,Ye,Ge,Xe,Je,Qe,Ze,et,tt,nt,rt,it,ot,at,st,lt,ct,ut,dt,ft,ht,pt,mt,gt,vt,yt,bt,xt])}(this);
langs/subscribe-reloaded-be_BY.mo CHANGED
Binary file
langs/subscribe-reloaded-be_BY.po CHANGED
@@ -1,1824 +1,1960 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-06-11 16:18-0700\n"
6
- "PO-Revision-Date: 2015-06-11 16:18-0700\n"
7
- "Last-Translator: Israel Barragan <reedyseth@gmail.com>\n"
8
- "Language-Team: Web Geeks\n"
9
- "Language: be_BY\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "Plural-Forms: s;\n"
16
- "X-Generator: Poedit 1.6\n"
17
- "X-Poedit-SearchPath-0: .\n"
18
-
19
- #: subscribe-to-comments-reloaded.php:95
20
- msgid "Don't subscribe"
21
- msgstr "Не падпісвацца"
22
-
23
- #: subscribe-to-comments-reloaded.php:96
24
- msgid "All"
25
- msgstr "Усё"
26
-
27
- #: subscribe-to-comments-reloaded.php:97 templates/author.php:75
28
- #: templates/user.php:72
29
- msgid "Replies to my comments"
30
- msgstr "Адказы на мае каментары"
31
-
32
- #: subscribe-to-comments-reloaded.php:312
33
- msgid ""
34
- "Notify me of followup comments via e-mail. You can also <a "
35
- "href='[subscribe_link]'>subscribe</a> without commenting."
36
- msgstr ""
37
- "Атрымліваць новыя каментары па электроннай пошце. Вы можаце <a "
38
- "href='[subscribe_link]'>падпісацца</a> без каментавання."
39
-
40
- #: subscribe-to-comments-reloaded.php:313
41
- msgid ""
42
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
43
- "subscriptions."
44
- msgstr ""
45
- "Вы падпісаны на гэты артыкул. <a href='[manager_link]'>Рэдагаваць</a> свае "
46
- "падпіскі."
47
-
48
- #: subscribe-to-comments-reloaded.php:314
49
- msgid ""
50
- "Your subscription to this post needs to be confirmed. <a "
51
- "href='[manager_link]'>Manage your subscriptions</a>."
52
- msgstr ""
53
- "Ваша падпіска на гэты артыкул мае патрэбу ў пацверджанні. <a "
54
- "href='[manager_link]'>Рэдагаваць</a> свае падпіскі."
55
-
56
- #: subscribe-to-comments-reloaded.php:315
57
- msgid ""
58
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
59
- msgstr ""
60
- "Вы можаце <a href='[manager_link]'>кіраваць падпіскамі</a> на гэты запіс."
61
-
62
- #: subscribe-to-comments-reloaded.php:319 options/index.php:57
63
- msgid "Manage subscriptions"
64
- msgstr "Рэдагаваць падпіскі"
65
-
66
- #: subscribe-to-comments-reloaded.php:321
67
- msgid ""
68
- "To manage your subscriptions, please enter your email address here below. We "
69
- "will send you a message containing the link to access your personal "
70
- "management page."
71
- msgstr ""
72
- "Для кіравання сваімі падпіскамі, калі ласка, увядзіце свой электронны адрас "
73
- "у форму ніжэй. Мы адправім вам паведамленне са спасылкай на вашу "
74
- "персанальную старонку кіравання."
75
-
76
- #: subscribe-to-comments-reloaded.php:322
77
- msgid ""
78
- "Thank you for using our subscription service. Your request has been "
79
- "completed, and you should receive an email with the management link in a few "
80
- "minutes."
81
- msgstr ""
82
- "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. На "
83
- "працягу некалькіх хвілін вы павінны атрымаць ліст са спасылкай на старонку "
84
- "кіравання падпіскамі."
85
-
86
- #: subscribe-to-comments-reloaded.php:323
87
- msgid ""
88
- "You can follow the discussion on <strong>[post_title]</strong> without "
89
- "having to leave a comment. Cool, huh? Just enter your email address in the "
90
- "form here below and you're all set."
91
- msgstr ""
92
- "Вы можаце сачыць за абмеркаваннем артыкула <strong>[post_title]</strong>, не "
93
- "пакідаючы свайго каментара. Выдатна, ці не праўда? Проста ўвядзіце свой "
94
- "электронны адрас у форму ніжэй, і гатова!"
95
-
96
- #: subscribe-to-comments-reloaded.php:324
97
- msgid ""
98
- "Thank you for using our subscription service. Your request has been "
99
- "completed. You will receive a notification email every time a new comment to "
100
- "this article is approved and posted by the administrator."
101
- msgstr ""
102
- "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. Вы "
103
- "будзеце атрымліваць апавяшчэнні кожных разоў, як новы каментар да гэты "
104
- "артыкулу будзе ўхвалены і апублікаваны адміністратарам сайта."
105
-
106
- #: subscribe-to-comments-reloaded.php:325
107
- msgid ""
108
- "Thank you for using our subscription service. In order to confirm your "
109
- "request, please check your email for the verification message and follow the "
110
- "instructions."
111
- msgstr ""
112
- "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Каб пацвердзіць свой "
113
- "запыт, калі ласка, праверце сваю пошту і вынікайце інструкцыям у лісце пра "
114
- "пацверджанне."
115
-
116
- #: subscribe-to-comments-reloaded.php:326
117
- msgid ""
118
- "In order to cancel or suspend one or more notifications, select the "
119
- "corresponding checkbox(es) and click on the button at the end of the list."
120
- msgstr ""
121
- "Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
122
- "адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу."
123
-
124
- #: subscribe-to-comments-reloaded.php:327
125
- msgid ""
126
- "In order to cancel or suspend one or more notifications, select the "
127
- "corresponding checkbox(es) and click on the button at the end of the list. "
128
- "You are currently subscribed to:"
129
- msgstr ""
130
- "Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
131
- "адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу. На дадзены "
132
- "момант вы падпісаны на:"
133
-
134
- #: subscribe-to-comments-reloaded.php:331
135
- msgid "There is a new comment to [post_title]"
136
- msgstr "З'явіўся новы каментар да артыкула [post_title]"
137
-
138
- #: subscribe-to-comments-reloaded.php:332
139
- msgid ""
140
- "There is a new comment to [post_title].\n"
141
- "Comment Link: [comment_permalink]\n"
142
- "Author: [comment_author]\n"
143
- "Comment:\n"
144
- "[comment_content]\n"
145
- "Permalink: [post_permalink]\n"
146
- "Manage your subscriptions: [manager_link]"
147
- msgstr ""
148
- "З'явіўся новы каментар да артыкула [post_title].\n"
149
- "Спасылка на каментар: [comment_permalink]\n"
150
- "Аўтар: [comment_author]\n"
151
- "Каментар:\n"
152
- "[comment_content]\n"
153
- "\n"
154
- "Спасылка на артыкул: [post_permalink]\n"
155
- "Кіраванне падпіскамі: [manager_link]"
156
-
157
- #: subscribe-to-comments-reloaded.php:333
158
- msgid "Please confirm your subscription to [post_title]"
159
- msgstr "Калі ласка, пацвердзіце сваю падпіску на артыкул [post_title]"
160
-
161
- #: subscribe-to-comments-reloaded.php:334
162
- msgid ""
163
- "You have requested to be notified every time a new comment is added to:\n"
164
- "[post_permalink]\n"
165
- "\n"
166
- "Please confirm your request by clicking on this link:\n"
167
- "[confirm_link]"
168
- msgstr ""
169
- "Вы зрабілі запыт на атрыманне новых каментароў да артыкула:\n"
170
- "[post_permalink]\n"
171
- "\n"
172
- "Калі ласка, перайдзіце па наступнай спасылцы, каб пацвердзіць падпіску:\n"
173
- "[confirm_link]"
174
-
175
- #: subscribe-to-comments-reloaded.php:335
176
- msgid "Manage your subscriptions on [blog_name]"
177
- msgstr "Рэдагаваць свае падпіскі на сайце [blog_name]"
178
-
179
- #: subscribe-to-comments-reloaded.php:336
180
- msgid ""
181
- "You have requested to manage your subscriptions to the articles on "
182
- "[blog_name]. Follow this link to access your personal page:\n"
183
- "[manager_link]"
184
- msgstr ""
185
- "Вы зрабілі запыт на рэдагаванне сваіх падпісак на каментары да артыкулаў на "
186
- "сайце [blog_name]. Вось спасылка на вашу асабістую старонку кіравання "
187
- "падпіскамі:\n"
188
- "[manager_link]"
189
-
190
- #: subscribe-to-comments-reloaded.php:429
191
- #: subscribe-to-comments-reloaded.php:436
192
- #: subscribe-to-comments-reloaded.php:579
193
- #: subscribe-to-comments-reloaded.php:648
194
- #: subscribe-to-comments-reloaded.php:792
195
- msgid "Important Notice"
196
- msgstr ""
197
-
198
- #: subscribe-to-comments-reloaded.php:527
199
- #, fuzzy
200
- msgid "Subscribe to Comments Reloaded Important Notice"
201
- msgstr ""
202
- "Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
203
- "Наведаеце наш афіцыйны"
204
-
205
- #: subscribe-to-comments-reloaded.php:528
206
- msgid ""
207
- "The information in your database has been sanitize to prevent the raw html "
208
- "messages."
209
- msgstr ""
210
-
211
- #: subscribe-to-comments-reloaded.php:580
212
- msgid ""
213
- "Comment subscription data from the <strong>Subscribe to Comments</strong> "
214
- "plugin was detected and automatically imported into <strong>Subscribe to "
215
- "Comments Reloaded</strong>."
216
- msgstr ""
217
-
218
- #: subscribe-to-comments-reloaded.php:580
219
- msgid ""
220
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
221
- "Comments to prevent confusion between the two plugins."
222
- msgstr ""
223
-
224
- #: subscribe-to-comments-reloaded.php:581
225
- msgid ""
226
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
227
- "that you want to import, you'll need to import that data manually, as only "
228
- "one import routine will ever run to prevent data loss."
229
- msgstr ""
230
-
231
- #: subscribe-to-comments-reloaded.php:582
232
- #: subscribe-to-comments-reloaded.php:650
233
- #: subscribe-to-comments-reloaded.php:796
234
- msgid ""
235
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
236
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
237
- "your configuration."
238
- msgstr ""
239
-
240
- #: subscribe-to-comments-reloaded.php:649
241
- msgid ""
242
- "Comment subscription data from the <strong>Comment Reply Notification</"
243
- "strong> plugin was detected and automatically imported into "
244
- "<strong>Subscribe to Comments Reloaded</strong>."
245
- msgstr ""
246
-
247
- #: subscribe-to-comments-reloaded.php:649
248
- msgid ""
249
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
250
- "Notification to prevent confusion between the two plugins."
251
- msgstr ""
252
-
253
- #: subscribe-to-comments-reloaded.php:793
254
- msgid ""
255
- "Plugin options and comment subscription data from the <strong>WP Comment "
256
- "Subscriptions</strong> plugin were detected and automatically imported into "
257
- "<strong>Subscribe to Comments Reloaded</strong>."
258
- msgstr ""
259
-
260
- #: subscribe-to-comments-reloaded.php:793
261
- msgid ""
262
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
263
- "Subscriptions to prevent confusion between the two plugins."
264
- msgstr ""
265
-
266
- #: subscribe-to-comments-reloaded.php:794
267
- msgid ""
268
- "If you have subscription data from another plugin (such as Subscribe to "
269
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
270
- "you'll need to import that data manually, as only one import routine will "
271
- "ever run to prevent data loss."
272
- msgstr ""
273
-
274
- #: subscribe-to-comments-reloaded.php:795
275
- msgid ""
276
- "<strong>Note:</strong> If you were previously using the "
277
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
278
- "subscribe-url]</code> shortcode, you'll need to replace those with "
279
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
280
- "respectively."
281
- msgstr ""
282
-
283
- #: subscribe-to-comments-reloaded.php:806
284
- msgid "Settings"
285
- msgstr "Scegli ordine"
286
-
287
- #: subscribe-to-comments-reloaded.php:1845 options/panel2.php:67
288
- #: options/panel2.php:77 options/panel2.php:106 options/panel5.php:84
289
- #: options/panel5.php:93 options/panel5.php:102 options/panel5.php:112
290
- #: options/panel5.php:121 options/panel5.php:131 options/panel5.php:140
291
- #: options/panel5.php:149
292
- msgid "No"
293
- msgstr "Не"
294
-
295
- #: subscribe-to-comments-reloaded.php:1872
296
- msgid ""
297
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
298
- msgstr ""
299
- "Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
300
- "Наведаеце наш афіцыйны"
301
-
302
- #: subscribe-to-comments-reloaded.php:1872
303
- msgid "support forum"
304
- msgstr "форум падтрымкі"
305
-
306
- #: subscribe-to-comments-reloaded.php:1873
307
- msgid "Feeling generous?"
308
- msgstr "Жадаеце выявіць шчодрасць?"
309
-
310
- #: subscribe-to-comments-reloaded.php:1873
311
- msgid "Donate a few bucks!"
312
- msgstr "Ахвяруйце пару баксаў!"
313
-
314
- #: options/index.php:58
315
- msgid "Comment Form"
316
- msgstr "Форма каментара"
317
-
318
- #: options/index.php:59
319
- msgid "Management Page"
320
- msgstr "Старонка кіравання"
321
-
322
- #: options/index.php:60
323
- msgid "Notifications"
324
- msgstr "Апавяшчэнні"
325
-
326
- #: options/index.php:61 options/panel2.php:58 options/panel3.php:82
327
- #: options/panel4.php:67
328
- msgid "Options"
329
- msgstr "Параметры"
330
-
331
- #: options/index.php:62
332
- msgid "You can help"
333
- msgstr "Вы можаце дапамагчы"
334
-
335
- #: options/index.php:63
336
- msgid "Support"
337
- msgstr "Падтрымка"
338
-
339
- #: options/panel1-business-logic.php:19
340
- msgid "Subscription added."
341
- msgstr "Падпіска дададзена."
342
-
343
- #: options/panel1-business-logic.php:31
344
- msgid "Subscriptions updated."
345
- msgstr "Падпіскі абноўлены."
346
-
347
- #: options/panel1-business-logic.php:40
348
- msgid "Subscription deleted."
349
- msgstr "Падпіска выдалена."
350
-
351
- #: options/panel1-business-logic.php:59 templates/author.php:23
352
- #: templates/user.php:23
353
- msgid "Subscriptions deleted:"
354
- msgstr "Падпіскі выдалены:"
355
-
356
- #: options/panel1-business-logic.php:63 templates/author.php:27
357
- #: templates/user.php:27
358
- msgid "Subscriptions suspended:"
359
- msgstr "Падпіскі прыпынены:"
360
-
361
- #: options/panel1-business-logic.php:67 templates/author.php:31
362
- #: templates/user.php:31
363
- msgid "Subscriptions activated:"
364
- msgstr "Падпіскі актываваны:"
365
-
366
- #: options/panel1-business-logic.php:71 options/panel1-business-logic.php:75
367
- #: templates/author.php:35 templates/author.php:39 templates/user.php:35
368
- #: templates/user.php:39
369
- msgid "Subscriptions updated:"
370
- msgstr "Падпіскі абноўлены:"
371
-
372
- #: options/panel1-business-logic.php:99
373
- msgid "&laquo; Previous"
374
- msgstr "&laquo; Зваротна"
375
-
376
- #: options/panel1-business-logic.php:103
377
- msgid "Next &raquo;"
378
- msgstr "Наперад &raquo;"
379
-
380
- #: options/panel1-edit-subscription.php:8
381
- msgid "Update Subscription"
382
- msgstr "Абнавіць падпіску"
383
-
384
- #: options/panel1-edit-subscription.php:11
385
- #: options/panel1-edit-subscription.php:21
386
- #: options/panel1-edit-subscription.php:22
387
- #: options/panel1-edit-subscription.php:23 options/panel1.php:28
388
- #: options/panel1.php:29 options/panel1.php:30
389
- msgid "optional"
390
- msgstr "па выбары"
391
-
392
- #: options/panel1-edit-subscription.php:11 options/panel1.php:22
393
- #: options/panel1.php:102 options/panel1.php:138 templates/author.php:52
394
- #: templates/user.php:52
395
- msgid ""
396
- "Please remember: this operation cannot be undone. Are you sure you want to "
397
- "proceed?"
398
- msgstr ""
399
- "Увага: гэту аперацыю нельга адмяніць. Вы ўпэўнены, што жадаеце працягнуць?"
400
-
401
- #: options/panel1-edit-subscription.php:13
402
- msgid "Post:"
403
- msgstr "Запіс:"
404
-
405
- #: options/panel1-edit-subscription.php:16 options/panel1.php:24
406
- msgid "From"
407
- msgstr "З"
408
-
409
- #: options/panel1-edit-subscription.php:20 options/panel1.php:27
410
- msgid "To"
411
- msgstr "на"
412
-
413
- #: options/panel1-edit-subscription.php:26 options/panel1.php:33
414
- #: options/panel1.php:59 options/panel1.php:124
415
- msgid "Status"
416
- msgstr "Статут"
417
-
418
- #: options/panel1-edit-subscription.php:28 options/panel1.php:35
419
- msgid "Keep unchanged"
420
- msgstr "Пакінуць без змен"
421
-
422
- #: options/panel1-edit-subscription.php:29 options/panel1.php:36
423
- #: options/panel1.php:61
424
- msgid "Active"
425
- msgstr "Актыўна"
426
-
427
- #: options/panel1-edit-subscription.php:30 options/panel1.php:37
428
- #: options/panel1.php:62
429
- msgid "Replies only"
430
- msgstr "Толькі адказы"
431
-
432
- #: options/panel1-edit-subscription.php:31 options/panel1.php:38
433
- msgid "Suspended"
434
- msgstr "Прыпынена"
435
-
436
- #: options/panel1-edit-subscription.php:33 options/panel1.php:40
437
- msgid "Update"
438
- msgstr "Абнавіць"
439
-
440
- #: options/panel1.php:19
441
- msgid "Mass Update Subscriptions"
442
- msgstr "Масава абнавіць падпіскі"
443
-
444
- #: options/panel1.php:48
445
- msgid "Add New Subscription"
446
- msgstr "Дадаць новую падпіску"
447
-
448
- #: options/panel1.php:53
449
- msgid "Post ID"
450
- msgstr "ID-нумар запісу"
451
-
452
- #: options/panel1.php:56 options/panel1.php:111
453
- #: templates/request-management-link.php:69 templates/subscribe.php:89
454
- #: templates/user.php:57
455
- msgid "Email"
456
- msgstr "Эл. адрас"
457
-
458
- #: options/panel1.php:63
459
- msgid "Ask user to confirm"
460
- msgstr "Прасіць подтвреждение ад карыстача"
461
-
462
- #: options/panel1.php:65
463
- msgid "Add"
464
- msgstr "Дадаць"
465
-
466
- #: options/panel1.php:76
467
- msgid "Search subscriptions"
468
- msgstr "Шукаць у падпісках"
469
-
470
- #: options/panel1.php:80
471
- #, php-format
472
- msgid ""
473
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
474
- "where the"
475
- msgstr ""
476
- "Вы можаце <a href=\"%s\">прагледзець усе падпіскі</a> ці знайсці тыя, дзе"
477
-
478
- #: options/panel1.php:84
479
- msgid "email"
480
- msgstr "эл. адрас"
481
-
482
- #: options/panel1.php:85
483
- msgid "post ID"
484
- msgstr "ID-нумар запісу"
485
-
486
- #: options/panel1.php:86
487
- msgid "status"
488
- msgstr "статут"
489
-
490
- #: options/panel1.php:89
491
- msgid "equals"
492
- msgstr "раўназначна"
493
-
494
- #: options/panel1.php:90
495
- msgid "contains"
496
- msgstr "утрымоўвае"
497
-
498
- #: options/panel1.php:91
499
- msgid "does not contain"
500
- msgstr "не ўтрымоўвае"
501
-
502
- #: options/panel1.php:92
503
- msgid "starts with"
504
- msgstr "пачынаецца з"
505
-
506
- #: options/panel1.php:93
507
- msgid "ends with"
508
- msgstr "сканчаецца на"
509
-
510
- #: options/panel1.php:96
511
- msgid "results per page:"
512
- msgstr "вынікі пастаронкава:"
513
-
514
- #: options/panel1.php:98
515
- msgid "Search"
516
- msgstr "Шукаць"
517
-
518
- #: options/panel1.php:106
519
- msgid "Reverse the order by Post ID"
520
- msgstr "Змяніць парадак па ID запісы"
521
-
522
- #: options/panel1.php:107 options/panel1.php:108
523
- msgid "Reverse the order by Date/Time"
524
- msgstr "Змяніць парадак па даце/чакай"
525
-
526
- #: options/panel1.php:110
527
- msgid "Post (ID)"
528
- msgstr "Запіс (ID)"
529
-
530
- #: options/panel1.php:113
531
- msgid "Search query:"
532
- msgstr "Пошукавы запыт:"
533
-
534
- #: options/panel1.php:113
535
- msgid "Rows:"
536
- msgstr "Шэрагі:"
537
-
538
- #: options/panel1.php:113
539
- msgid "of"
540
- msgstr " "
541
-
542
- #: options/panel1.php:114 templates/author.php:58 templates/user.php:58
543
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
544
- msgstr "Расшыфроўка: Y = усе каментары, R = толькі адказы, C = неактыўныя"
545
-
546
- #: options/panel1.php:123
547
- msgid "Date and Time"
548
- msgstr "Дата і час"
549
-
550
- #: options/panel1.php:135
551
- msgid "Subscription"
552
- msgstr "Падпіскі"
553
-
554
- #: options/panel1.php:137
555
- msgid "Edit"
556
- msgstr "Рэдагаваць"
557
-
558
- #: options/panel1.php:138 templates/author.php:72 templates/user.php:69
559
- msgid "Delete"
560
- msgstr "Выдаліць"
561
-
562
- #: options/panel1.php:146 templates/author.php:71 templates/user.php:68
563
- msgid "Action:"
564
- msgstr "Дзеянне:"
565
-
566
- #: options/panel1.php:147
567
- msgid "Delete forever"
568
- msgstr "Выдаліць назаўжды"
569
-
570
- #: options/panel1.php:148 templates/author.php:73 templates/user.php:70
571
- msgid "Suspend"
572
- msgstr "Прыпыніць"
573
-
574
- #: options/panel1.php:149
575
- msgid "Activate and set to Y"
576
- msgstr "Уключыць і ўсталяваць на Y"
577
-
578
- #: options/panel1.php:150
579
- msgid "Activate and set to R"
580
- msgstr "Уключыць і ўсталяваць на R"
581
-
582
- #: options/panel1.php:151 templates/author.php:76 templates/user.php:73
583
- msgid "Activate"
584
- msgstr "Уключыць"
585
-
586
- #: options/panel1.php:152 templates/author.php:77 templates/user.php:75
587
- msgid "Update subscriptions"
588
- msgstr "Абнавіць падпіскі"
589
-
590
- #: options/panel1.php:155
591
- msgid "Sorry, no subscriptions match your search criteria."
592
- msgstr "Выбачыце, ніводная падпіска не адпавядае вашаму пошукаваму запыту."
593
-
594
- #: options/panel2.php:12 options/panel2.php:63
595
- msgid "Enable default checkbox"
596
- msgstr "Уключыць стандартнае акенца выбару"
597
-
598
- #: options/panel2.php:15 options/panel2.php:73
599
- msgid "Checked by default"
600
- msgstr "Абрана па змаўчанні"
601
-
602
- #: options/panel2.php:18
603
- msgid "Checked by default Value"
604
- msgstr "Абрана па змаўчанні"
605
-
606
- #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
607
- msgid "Advanced subscription"
608
- msgstr "Пашыраная падпіска"
609
-
610
- #: options/panel2.php:27 options/panel2.php:130
611
- msgid "Custom inline style"
612
- msgstr "Змяняны стыль inline"
613
-
614
- #: options/panel2.php:30 options/panel2.php:139
615
- msgid "Custom HTML"
616
- msgstr "Уласны HTML"
617
-
618
- #: options/panel2.php:34
619
- msgid "Checkbox label"
620
- msgstr "Цэтлік акенца выбару"
621
-
622
- #: options/panel2.php:37 options/panel2.php:163
623
- msgid "Subscribed label"
624
- msgstr "Цэтлік аформленай падпіскі"
625
-
626
- #: options/panel2.php:40
627
- msgid "Awaiting label"
628
- msgstr "Цэтлік непацверджанай падпіскі"
629
-
630
- #: options/panel2.php:43 options/panel2.php:180
631
- msgid "Author label"
632
- msgstr "Цэтлік аўтара"
633
-
634
- #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:57
635
- #: options/panel5.php:18 options/panel5.php:57
636
- msgid "Your settings have been successfully updated."
637
- msgstr "Вашы налады паспяхова абноўлены."
638
-
639
- #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:59
640
- #: options/panel5.php:20 options/panel5.php:59
641
- msgid "There was an error updating the following fields:"
642
- msgstr "Адбылася памылка ў абнаўленні наступных палёў:"
643
-
644
- #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
645
- #: options/panel5.php:83 options/panel5.php:92 options/panel5.php:101
646
- #: options/panel5.php:111 options/panel5.php:120 options/panel5.php:130
647
- #: options/panel5.php:139 options/panel5.php:148
648
- msgid "Yes"
649
- msgstr "Так"
650
-
651
- #: options/panel2.php:68
652
- msgid ""
653
- "Disable this option if you want to move the subscription checkbox to a "
654
- "different place on your page."
655
- msgstr ""
656
- "Адзначыце гэту опцыю, калі жадаеце змяніць становішча акенца выбару падпіскі "
657
- "на сваёй старонцы."
658
-
659
- #: options/panel2.php:78
660
- msgid "Decide if the checkbox should be checked by default or not."
661
- msgstr "Ці павінна акенца выбару быць абраным па змаўчанні."
662
-
663
- #: options/panel2.php:87
664
- msgid "Default Checkbox Value"
665
- msgstr "Уключыць стандартнае акенца выбару"
666
-
667
- #: options/panel2.php:91 options/panel2.php:120
668
- msgid "All new comments"
669
- msgstr ""
670
-
671
- #: options/panel2.php:92 options/panel2.php:121
672
- msgid "Replies to this comment"
673
- msgstr "Адказы на мае каментары"
674
-
675
- #: options/panel2.php:94
676
- msgid ""
677
- "Select the default option for the Checkbox. Be careful! Some users might "
678
- "like to be subscribed to all the post."
679
- msgstr ""
680
-
681
- #: options/panel2.php:107
682
- msgid ""
683
- "Allow users to choose from different subscription types (all, replies only)."
684
- msgstr ""
685
- "Дазволіць карыстачам выбар з розных тыпаў падпіскі (усё, толькі адказы)."
686
-
687
- #: options/panel2.php:115
688
- msgid "Advanced default"
689
- msgstr "Абрана па змаўчанні"
690
-
691
- #: options/panel2.php:119
692
- msgid "None"
693
- msgstr ""
694
-
695
- #: options/panel2.php:124
696
- msgid ""
697
- "The default subscription type that should be selected when Advanced "
698
- "subscriptions are enable."
699
- msgstr ""
700
-
701
- #: options/panel2.php:135
702
- msgid "Custom inline CSS to add to the checkbox."
703
- msgstr "Змяняны Inline CSS для дадання да акенца выбару"
704
-
705
- #: options/panel2.php:143
706
- msgid ""
707
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
708
- "[checkbox_field], [checkbox_label]"
709
- msgstr ""
710
- "Уласны код HTML для выкарыстання пры адлюстраванні акенца выбару. Дазволеныя "
711
- "тэгі: [checkbox_field], [checkbox_label]"
712
-
713
- #: options/panel2.php:149
714
- msgid "Messages for your visitors"
715
- msgstr "Паведамленні вашым наведвальнікам"
716
-
717
- #: options/panel2.php:153
718
- msgid "Default label"
719
- msgstr "Стандартны цэтлік"
720
-
721
- #: options/panel2.php:158
722
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
723
- msgstr "Тэкст побач з акенцам выбару. Дазволены тэг: [subscribe_link]"
724
-
725
- #: options/panel2.php:167
726
- msgid ""
727
- "Label shown to those who are already subscribed to a post. Allowed tag: "
728
- "[manager_link]"
729
- msgstr "Тэкст, бачны якія падпісаліся чытачам. Дазволены тэг: [manager_link]"
730
-
731
- #: options/panel2.php:172
732
- msgid "Pending label"
733
- msgstr "Цэтлік \"У чаканні\" "
734
-
735
- #: options/panel2.php:176
736
- msgid ""
737
- "Label shown to those who are already subscribed, but haven't clicked on the "
738
- "confirmation link yet. Allowed tag: [manager_link]"
739
- msgstr ""
740
- "Тэкст, бачны чытачам, яшчэ не якія пацвердзілі сваю падпіску. Дазволены тэг: "
741
- "[manager_link]"
742
-
743
- #: options/panel2.php:184
744
- msgid ""
745
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
746
- msgstr "Тэст, бачны аўтарам і адміністратарам. Дазволены тэг: [manager_link]"
747
-
748
- #: options/panel2.php:189 options/panel3.php:197 options/panel4.php:182
749
- #: options/panel5.php:184
750
- msgid "Save Changes"
751
- msgstr "Захаваць змены"
752
-
753
- #: options/panel3.php:13 options/panel3.php:87
754
- msgid "Virtual Management Page"
755
- msgstr "Віртуальная старонка кіравання"
756
-
757
- #: options/panel3.php:18 options/panel3.php:96
758
- msgid "Page title"
759
- msgstr "Загаловак старонкі"
760
-
761
- #: options/panel3.php:23 options/panel3.php:105
762
- msgid "Management URL"
763
- msgstr "URL кіраванні"
764
-
765
- #: options/panel3.php:28 options/panel3.php:117
766
- msgid "Custom HEAD meta"
767
- msgstr "Уласны HEAD meta-тэг"
768
-
769
- #: options/panel3.php:34 options/panel3.php:131
770
- msgid "Request link"
771
- msgstr "Спасылка на запыт"
772
-
773
- #: options/panel3.php:39 options/panel3.php:141
774
- msgid "Request submitted"
775
- msgstr "Запыт адпраўлены"
776
-
777
- #: options/panel3.php:44 options/panel3.php:151
778
- msgid "Subscribe without commenting"
779
- msgstr "Падпіска без каментавання"
780
-
781
- #: options/panel3.php:49 options/panel3.php:161
782
- msgid "Subscription processed"
783
- msgstr "Падпіска аформлена"
784
-
785
- #: options/panel3.php:54 options/panel3.php:171
786
- msgid "Subscription processed (DCI)"
787
- msgstr "Падпіска аформлена (DCI)"
788
-
789
- #: options/panel3.php:59 options/panel3.php:180
790
- msgid "Authors"
791
- msgstr "Аўтары"
792
-
793
- #: options/panel3.php:64 options/panel3.php:188
794
- msgid "Users"
795
- msgstr "Карыстачы"
796
-
797
- #: options/panel3.php:90
798
- msgid "Enabled"
799
- msgstr "Уключана"
800
-
801
- #: options/panel3.php:91
802
- msgid "Disabled"
803
- msgstr "Выключана"
804
-
805
- #: options/panel3.php:92
806
- #, fuzzy
807
- msgid ""
808
- "Disable the virtual management page if you need to create a <a href=\"http://"
809
- "behstant.com/subscribe-reloaded/realMgnPage.php\">real page</a> to make your "
810
- "theme happy."
811
- msgstr ""
812
- "Адменіце віртуальную старонку кіравання, калі вам трэба стварыць <a href="
813
- "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">сапраўдную "
814
- "старонку</a> для карэктнай працы ўбудовы з вашай тэмай афармлення."
815
-
816
- #: options/panel3.php:101
817
- msgid "Title of the page your visitors will use to manage their subscriptions."
818
- msgstr "Загаловак старонкі, на якой карыстачы будуць рэдагаваць свае падпіскі."
819
-
820
- #: options/panel3.php:109
821
- msgid ""
822
- "The permalink for your management page (something like <code>/manage-"
823
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
824
- "b> actually exist in the system, but its link must follow your permalink "
825
- "structure."
826
- msgstr ""
827
- "Сталая спасылка на вашу старонку кіравання (штосьці накшталт <code>/manage-"
828
- "subscriptions</code> ці <code>/page_id=345</code>). Гэта старонка фактычна "
829
- "<b>не існуе</b> у сістэме, але сталая спасылка на яе павінна адпавядаць "
830
- "вашым усталёўкам сталых спасылак у Wordpress."
831
-
832
- #: options/panel3.php:111
833
- msgid ""
834
- "Warning: it looks like the value you are using may be incompatible with your "
835
- "permalink structure"
836
- msgstr ""
837
- "Увага: магчыма, выкарыстоўванае вамі значэнне несумяшчальна з вашай "
838
- "структурай сталых спасылак"
839
-
840
- #: options/panel3.php:121
841
- msgid ""
842
- "Specify your custom HTML code to be added to the HEAD section of the page. "
843
- "Use <strong>single</strong> quotes for values."
844
- msgstr ""
845
- "Пакажыце свой код HTML для дадання ў HEAD старонкі. Выкарыстоўвайце "
846
- "<strong>адзінарныя</strong> двукоссі для значэнняў."
847
-
848
- #: options/panel3.php:127 options/panel4.php:100
849
- msgid "Messages"
850
- msgstr "Паведамленні"
851
-
852
- #: options/panel3.php:136
853
- msgid "Text shown to those who request to manage their subscriptions."
854
- msgstr "Тэкст, бачны якія зрабілі запыт на кіраванне падпіскамі."
855
-
856
- #: options/panel3.php:146
857
- msgid ""
858
- "Thank you note shown after the request here above has been processed. "
859
- "Allowed tags: [post_title], [post_permalink]"
860
- msgstr ""
861
- "Тэкст падзякі, які выводзіцца пасля апрацоўкі зробленага запыту. Дазволены "
862
- "тэгі: [post_title], [post_permalink]"
863
-
864
- #: options/panel3.php:156
865
- msgid ""
866
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
867
- "[post_title], [post_permalink]"
868
- msgstr ""
869
- "Тэкст для ахвотнікаў падпісацца без каментавання. Дазволены тэгі: "
870
- "[post_title], [post_permalink]"
871
-
872
- #: options/panel3.php:166
873
- msgid ""
874
- "Thank you note shown after the subscription request has been processed "
875
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
876
- msgstr ""
877
- "Тэкст падзякі, які выводзіцца пасля апрацоўкі запыту на падпіску (падвойнае "
878
- "пацверджанне адключана). Дазволены тэгі: [post_title], [post_permalink]"
879
-
880
- #: options/panel3.php:176
881
- msgid ""
882
- "Thank you note shown after the subscription request has been processed "
883
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
884
- msgstr ""
885
- "Тэкст падзякі, які выводзіцца пасля апрацоўкі запыту на падпіску (падвойнае "
886
- "пацверджанне ўключана). Дазволены тэгі: [post_title], [post_permalink]"
887
-
888
- #: options/panel3.php:184
889
- msgid "Introductory text for the authors' management page."
890
- msgstr "Уступны тэкст на старонцы кіравання падпіскамі для аўтараў."
891
-
892
- #: options/panel3.php:192
893
- msgid "Introductory text for the users' management page."
894
- msgstr "Уступны тэкст на старонцы кіравання падпіскамі для падпісантаў."
895
-
896
- #: options/panel4.php:16 options/panel4.php:72
897
- msgid "Sender name"
898
- msgstr "Імя адпраўніка"
899
-
900
- #: options/panel4.php:21 options/panel4.php:85
901
- msgid "Sender email address"
902
- msgstr "Эл. адрас адпраўніка"
903
-
904
- #: options/panel4.php:26 options/panel4.php:105
905
- msgid "Notification subject"
906
- msgstr "Тэма ліста з апавяшчэннем"
907
-
908
- #: options/panel4.php:31 options/panel4.php:118
909
- msgid "Notification message"
910
- msgstr "Тэкст апавяшчэння"
911
-
912
- #: options/panel4.php:36 options/panel4.php:132
913
- msgid "Double check subject"
914
- msgstr "Тэма ліста пра пацверджанне падпіскі"
915
-
916
- #: options/panel4.php:41 options/panel4.php:145
917
- msgid "Double check message"
918
- msgstr "Тэкст ліста пра пацверджанне падпіскі"
919
-
920
- #: options/panel4.php:46 options/panel4.php:157
921
- msgid "Management subject"
922
- msgstr "Тэма ліста пра кіраванне падпіскамі"
923
-
924
- #: options/panel4.php:51 options/panel4.php:170
925
- msgid "Management message"
926
- msgstr "Тэкст ліста пра кіраванне падпіскамі"
927
-
928
- #: options/panel4.php:79
929
- msgid ""
930
- "Name to use for the \"from\" field when sending a new notification to the "
931
- "user."
932
- msgstr "Імя ў поле \"Ад каго\" у новым апавяшчэнні карыстачу."
933
-
934
- #: options/panel4.php:93
935
- msgid ""
936
- "Email address to use for the \"from\" field when sending a new notification "
937
- "to the user."
938
- msgstr "Эл. адрас у поле \"Ад каго\" у новым апавяшчэнні карыстачу."
939
-
940
- #: options/panel4.php:112
941
- msgid "Subject of the notification email. Allowed tag: [post_title]"
942
- msgstr "Тэма ліста з апавяшчэннем. Дазволены тэг: [post_title]"
943
-
944
- #: options/panel4.php:126
945
- msgid ""
946
- "Content of the notification email. Allowed tags: [post_title], "
947
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
948
- "[manager_link]"
949
- msgstr ""
950
- "Тэкст апавяшчэння. Дазволеныя тэгі: [post_title], [comment_permalink], "
951
- "[comment_author], [comment_content], [post_permalink], [manager_link]"
952
-
953
- #: options/panel4.php:139
954
- msgid "Subject of the confirmation email. Allowed tag: [post_title]"
955
- msgstr "Тэма ліста пра пацверджанне. Дазволены тэг: [post_title]"
956
-
957
- #: options/panel4.php:151
958
- msgid ""
959
- "Content of the confirmation email. Allowed tags: [post_permalink], "
960
- "[confirm_link], [post_title], [manager_link]"
961
- msgstr ""
962
- "Тэкст ліста пра подтвеждении. Дазволеныя тэгі: [post_permalink], "
963
- "[confirm_link], [post_title], [manager_link]"
964
-
965
- #: options/panel4.php:164
966
- msgid ""
967
- "Subject of the mail sent to those who request to access their management "
968
- "page. Allowed tag: [blog_name]"
969
- msgstr ""
970
- "Тэма ліста падпісанту, які зрабіў запыт на доступ да старонкі кіравання "
971
- "падпіскамі. Дазволены тэг: [blog_name]"
972
-
973
- #: options/panel4.php:176
974
- msgid ""
975
- "Content of the management email. Allowed tags: [blog_name], [manager_link]"
976
- msgstr ""
977
- "Тэкст ліста пра кіраванне падпіскамі. Дазволеныя тэгі: [blog_name],"
978
- "[manager_link]"
979
-
980
- #: options/panel5.php:28 options/panel5.php:72
981
- msgid "Autopurge requests"
982
- msgstr "Аўтаматычна выдаляць запыты"
983
-
984
- #: options/panel5.php:31 options/panel5.php:81
985
- msgid "Enable double check"
986
- msgstr "Уключыць падвойнае пацверджанне"
987
-
988
- #: options/panel5.php:34 options/panel5.php:89
989
- msgid "Subscribe authors"
990
- msgstr ""
991
-
992
- #: options/panel5.php:37 options/panel5.php:99
993
- msgid "Enable HTML emails"
994
- msgstr "Выкарыстоўваць HTML лісты"
995
-
996
- #: options/panel5.php:40
997
- msgid "HTMLify Links in HTML emails"
998
- msgstr ""
999
-
1000
- #: options/panel5.php:43
1001
- msgid "Send trackbacks"
1002
- msgstr "Адпраўляць трэкбеки"
1003
-
1004
- #: options/panel5.php:46
1005
- msgid "Notify admin"
1006
- msgstr "Апавясціць адміна"
1007
-
1008
- #: options/panel5.php:49 options/panel5.php:137
1009
- msgid "Let admin subscribe"
1010
- msgstr "Дазволіць адміну падпісвацца"
1011
-
1012
- #: options/panel5.php:52 options/panel5.php:146
1013
- msgid "BCC admin on Notifications"
1014
- msgstr "Апавяшчэнні"
1015
-
1016
- #: options/panel5.php:75
1017
- msgid "days"
1018
- msgstr "дзён"
1019
-
1020
- #: options/panel5.php:76
1021
- msgid ""
1022
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1023
- "this feature."
1024
- msgstr ""
1025
- "Выдаляць якія чакаюць пацверджанні (не пацверджаныя) падпіскі праз Х дзён. "
1026
- "Нуль адключае гэту функцыю."
1027
-
1028
- #: options/panel5.php:85
1029
- msgid ""
1030
- "Send a notification email to confirm the subscription (to avoid addresses "
1031
- "misuse)."
1032
- msgstr ""
1033
- "Адпраўляць ліст з просьбай пацвердзіць падпіску (каб пазбегнуць выкарыстанні "
1034
- "эл. адрасы без вядзёная ўладальніка)"
1035
-
1036
- #: options/panel5.php:94
1037
- msgid ""
1038
- "Automatically subscribe authors to their own articles (not retroactive)."
1039
- msgstr ""
1040
-
1041
- #: options/panel5.php:103
1042
- msgid ""
1043
- "If enabled, will send email messages with content-type = text/html instead "
1044
- "of text/plain"
1045
- msgstr ""
1046
- "Пры выбары гэтай функцыі паведамлення будуць адпраўляцца ў фармаце тэкст/"
1047
- "html замест звычайнага тэксту"
1048
-
1049
- #: options/panel5.php:108
1050
- msgid "HTMLify links in emails"
1051
- msgstr ""
1052
-
1053
- #: options/panel5.php:113
1054
- msgid ""
1055
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1056
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1057
- msgstr ""
1058
-
1059
- #: options/panel5.php:118
1060
- msgid "Process trackbacks"
1061
- msgstr "Апрацоўваць трэкбеки"
1062
-
1063
- #: options/panel5.php:122
1064
- msgid ""
1065
- "Notify users when a new trackback or pingback is added to the discussion."
1066
- msgstr ""
1067
- "Апавяшчаць падпісантаў пра новыя трэкбеках ці пингбэках да абмеркавання"
1068
-
1069
- #: options/panel5.php:127
1070
- msgid "Track all subscriptions"
1071
- msgstr "Адсачыць усе падпіскі"
1072
-
1073
- #: options/panel5.php:132
1074
- msgid "Notify the administrator when users subscribe without commenting."
1075
- msgstr "Апавяшчаць адміністратара, калі карыстачы падпісваюцца без каментара."
1076
-
1077
- #: options/panel5.php:141
1078
- msgid "Let the administrator subscribe to comments when logged in."
1079
- msgstr "Дазволіць адміну падпісвацца, калі ён аўтарызаваны."
1080
-
1081
- #: options/panel5.php:150
1082
- msgid "Send a copy of all Notifications to the administrator."
1083
- msgstr ""
1084
-
1085
- #: options/panel5.php:155
1086
- msgid "StCR Unique Key"
1087
- msgstr ""
1088
-
1089
- #: options/panel5.php:160
1090
- msgid "This Unique Key is not set, please click the following button to "
1091
- msgstr ""
1092
-
1093
- #: options/panel5.php:164 options/panel5.php:176
1094
- #, fuzzy
1095
- msgid "Generate"
1096
- msgstr "Tasso di rimbalzo"
1097
-
1098
- #: options/panel5.php:172
1099
- msgid ""
1100
- "This Unique Key will be use to send the notification to your subscribers "
1101
- "with more\n"
1102
- "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsecurity."
1103
- msgstr ""
1104
-
1105
- #: options/panel6.php:8 options/panel7.php:8
1106
- #, fuzzy
1107
- msgid "Support the developers"
1108
- msgstr "Падтрымаць аўтара"
1109
-
1110
- #: options/panel6.php:18
1111
- #, fuzzy
1112
- msgid ""
1113
- "How valuable is the feature offered by this plugin to your visitors? please "
1114
- "consider supporting the author if this plugin made your web site better, "
1115
- "especially if you are making money out of it. Any donation received will be "
1116
- "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
1117
- "strong>, and to buy some food for my hungry family."
1118
- msgstr ""
1119
- "Наколькі важная функцыя, якую падае гэта ўбудова для вашых наведвальнікаў? "
1120
- "Убудова <b>Subscribe to Comments Reloaded</b> ёсць і заўсёды будзе "
1121
- "бясплатным, але падумайце над тым, каб падтрымаць аўтара, калі гэта ўбудова "
1122
- "зрабіла ваш сайт трохі лепш, асабліва калі вы зарабляеце грошы з дапамогай "
1123
- "свайго сайта. Усе ахвяраванні будуць скарыстаны для развіцця ўбудовы "
1124
- "<b>Subscribe to Comments Reloaded</b> і на тое, каб купіць трохі ежы маёй "
1125
- "галоднай сям'і."
1126
-
1127
- #: options/panel6.php:20
1128
- msgid "Don't want to donate? You can still help"
1129
- msgstr "Не жадаеце рабіць ахвяраванне? Вы ўсё адно можаце дапамагчы"
1130
-
1131
- #: options/panel6.php:21
1132
- #, fuzzy
1133
- msgid ""
1134
- "If you don't want to donate money, please consider blogging about my plugin "
1135
- "with a link to the plugin's page. Please let your readers know what makes "
1136
- "your blog better. You can also contribute donating your time: do not "
1137
- "hesitate to send me bug reports, your localization files, ideas on how to "
1138
- "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
1139
- "you do, thanks for using my plugin!"
1140
- msgstr ""
1141
- "Калі вы не жадаеце дапамагчы грашыма, калі ласка, разгледзіце магчымасць "
1142
- "напісаць пра маю ўбудову ў сваім блогу і пакінуць спасылку на старонку "
1143
- "ўбудовы. Калі ласка, распавядзіце сваім чытачам, што робіць ваш блог лепш. "
1144
- "Вы можаце таксама ахвяраваць свой час: не саромейцеся адпраўляць мне "
1145
- "справаздачы пра памылкі, свае файлы лакалізацыі, ідэі па паляпшэнні ўбудовы "
1146
- "<b>Subscribe to Comments Reloaded</b> і гэтак далей. Што б вы ні абралі, "
1147
- "дзякуй, што карыстаецеся маёй убудовай!"
1148
-
1149
- #: options/panel6.php:23
1150
- msgid "Subscribe to the Beta testers"
1151
- msgstr ""
1152
-
1153
- #: options/panel6.php:24
1154
- msgid ""
1155
- "Before a new Update we release a Beta version so that our current users can "
1156
- "give us feedback if they find a bug, If you want to join the tester list you "
1157
- "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
1158
- "a>"
1159
- msgstr ""
1160
-
1161
- #: options/panel6.php:26
1162
- msgid "Vote and show your appreciation"
1163
- msgstr "Прагаласуйце і пакажыце сваю ўдзячнасць"
1164
-
1165
- #: options/panel6.php:27
1166
- #, fuzzy
1167
- msgid ""
1168
- "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
1169
- "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
1170
- "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
1171
- msgstr ""
1172
- "Калі вам падабаецца вам убудова <b>Subscribe to Comments Reloaded</b>, "
1173
- "распавядзіце іншым людзям пра яго і пра тое, наколькі ён добры. <a href="
1174
- "\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
1175
- "\">Ацэніце</a> яго ў частцы ўбудоў на сайце Wordpress."
1176
-
1177
- #: options/panel7.php:18
1178
- msgid "Did you find a Bug on the plugin?"
1179
- msgstr ""
1180
-
1181
- #: options/panel7.php:19
1182
- msgid ""
1183
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1184
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1185
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1186
- "WordPress Support page."
1187
- msgstr ""
1188
-
1189
- #: templates/author.php:57
1190
- msgid "Title"
1191
- msgstr "Загаловак"
1192
-
1193
- #: templates/author.php:69 templates/user.php:66
1194
- msgid "Select all"
1195
- msgstr "Абраць усё"
1196
-
1197
- #: templates/author.php:70 templates/user.php:67
1198
- msgid "Invert selection"
1199
- msgstr "Абраць зваротнае"
1200
-
1201
- #: templates/author.php:74 templates/user.php:71
1202
- msgid "All comments"
1203
- msgstr ""
1204
-
1205
- #: templates/author.php:80 templates/user.php:78
1206
- msgid "No subscriptions match your search criteria."
1207
- msgstr "Ніводная падпіска не адпавядае пошукаваму запыту."
1208
-
1209
- #: templates/request-management-link.php:71 templates/subscribe.php:91
1210
- msgid "Send"
1211
- msgstr "Адправіць"
1212
-
1213
- #: templates/subscribe.php:43 templates/subscribe.php:44
1214
- msgid "New subscription to"
1215
- msgstr "Новая падпіска на"
1216
-
1217
- #: templates/subscribe.php:44
1218
- msgid "User:"
1219
- msgstr "Карыстач:"
1220
-
1221
- #~ msgid "Bold"
1222
- #~ msgstr "Тоўсты"
1223
-
1224
- #~ msgid "Italic"
1225
- #~ msgstr "З нахілам"
1226
-
1227
- #~ msgid "Link"
1228
- #~ msgstr "Спасылка"
1229
-
1230
- #~ msgid "Image"
1231
- #~ msgstr "Малюнак"
1232
-
1233
- #~ msgid "Sponsor's Corner"
1234
- #~ msgstr "Куток фундатара"
1235
-
1236
- #~ msgid ""
1237
- #~ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1238
- #~ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1239
- #~ msgstr ""
1240
- #~ "Калі вы жадаеце праспансаваць гэту ўбудову, не саромейцеся, <a "
1241
- #~ "href='http://behstant.com/negocio/contact.php' target='_blank'>звернецеся "
1242
- #~ "да мяне</a>."
1243
-
1244
- #~ msgid "Set to Y"
1245
- #~ msgstr "Усталявана на Y"
1246
-
1247
- #~ msgid "Daily digest"
1248
- #~ msgstr "Штодзённы дайджэст"
1249
-
1250
- #~ msgid "Notify authors"
1251
- #~ msgstr "Апавяшчаць аўтараў"
1252
-
1253
- #~ msgid "Notify the administrator when a new comment is posted."
1254
- #~ msgstr "Апавяшчаць адміністратара пра новы каментар."
1255
-
1256
- #~ msgid "Subscribed"
1257
- #~ msgstr "Падпісана"
1258
-
1259
- #~ msgid "Replies"
1260
- #~ msgstr "Адказы"
1261
-
1262
- #~ msgid "Digest"
1263
- #~ msgstr "Дайджэст"
1264
-
1265
- #~ msgid "Pending"
1266
- #~ msgstr "У чаканні"
1267
-
1268
- #~ msgid "Management Page ID"
1269
- #~ msgstr "ID старонкі кіравання"
1270
-
1271
- #~ msgid "Management page"
1272
- #~ msgstr "Старонка кіравання"
1273
-
1274
- #~ msgid "Awaiting confirmation"
1275
- #~ msgstr "Чакае пацверджання"
1276
-
1277
- #~ msgid "Stats"
1278
- #~ msgstr "Статыстыка"
1279
-
1280
- #~ msgid "Other Messages"
1281
- #~ msgstr "Іншыя паведамленні"
1282
-
1283
- #~ msgid "The status has been successfully updated. Rows affected:"
1284
- #~ msgstr "Статут паспяхова абноўлены. Зменены радкі:"
1285
-
1286
- #~ msgid ""
1287
- #~ "Update the email address associated to a specific subscription (by post "
1288
- #~ "ID)."
1289
- #~ msgstr "Абнавіць эл. адрас вызначанай падпіскі (па ID запісы)."
1290
-
1291
- #~ msgid "PID"
1292
- #~ msgstr "ID запісы"
1293
-
1294
- #~ msgid "Change status"
1295
- #~ msgstr "Змяніць статут"
1296
-
1297
- #~ msgid ""
1298
- #~ "Change the status of an email address or permanently delete all its "
1299
- #~ "subscriptions."
1300
- #~ msgstr ""
1301
- #~ "Змяніць статут электроннага адрасу ці цалкам выдаліць усё яго падпіскі."
1302
-
1303
- #~ msgid "Resume"
1304
- #~ msgstr "Аднавіць"
1305
-
1306
- #~ msgid "Update email address"
1307
- #~ msgstr "Абнавіць электронны адрас"
1308
-
1309
- #~ msgid ""
1310
- #~ "You can \"mass update\" all the occurrences of a given email address "
1311
- #~ "(exact matches only)."
1312
- #~ msgstr ""
1313
- #~ "Вы можаце змяніць усе выкарыстанні вызначанага электроннага адрасу ў базе "
1314
- #~ "дадзеных на новы (толькі для дакладных супадзенняў)."
1315
-
1316
- #~ msgid "Search email address"
1317
- #~ msgstr "Шукаць электронны адрас"
1318
-
1319
- #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1320
- #~ msgstr "(Расшыфроўка: Y: падпісана, N: прыпынена, C: чакае пацверджання)"
1321
-
1322
- #~ msgid "StCR table has been successfully optimized."
1323
- #~ msgstr "Табліца StCR паспяхова абноўлена."
1324
-
1325
- #~ msgid "Filter by date"
1326
- #~ msgstr "Filtra per data"
1327
-
1328
- #~ msgid "Month"
1329
- #~ msgstr "Mese"
1330
-
1331
- #~ msgid "Year"
1332
- #~ msgstr "Anno"
1333
-
1334
- #~ msgid "No data to display"
1335
- #~ msgstr "Nessun dato da visualizzare"
1336
-
1337
- #~ msgid "optimize"
1338
- #~ msgstr "аптымізаваць"
1339
-
1340
- #~ msgid "Database"
1341
- #~ msgstr "База дадзеных"
1342
-
1343
- #~ msgid "Engine"
1344
- #~ msgstr "Прылада"
1345
-
1346
- #~ msgid "Created on"
1347
- #~ msgstr "Створана"
1348
-
1349
- #~ msgid "Records"
1350
- #~ msgstr "Запісы"
1351
-
1352
- #~ msgid "Average Record Length"
1353
- #~ msgstr "Сярэдняя даўжыня запісу"
1354
-
1355
- #~ msgid "Approximate Overhead"
1356
- #~ msgstr "Прибл. аб'ём карыстацкіх дадзеных"
1357
-
1358
- #~ msgid "Custom CSS Class"
1359
- #~ msgstr "Клас змянянага CSS"
1360
-
1361
- #~ msgid ""
1362
- #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1363
- #~ "its style."
1364
- #~ msgstr ""
1365
- #~ "Клас змянянага CSS для акенца выбару, калі вы жадаеце змяніць яго стыль"
1366
-
1367
- #~ msgid "Subscriptions have been successfully updated."
1368
- #~ msgstr "Падпіскі паспяхова абноўлены."
1369
-
1370
- #~ msgid "Sorry, no subscriptions found."
1371
- #~ msgstr "Выбачыце, падпіскі не знойдзены."
1372
-
1373
- #~ msgid "All the subscriptions have been successfully updated."
1374
- #~ msgstr "Усе падпіскі паспяхова абноўлены."
1375
-
1376
- #~ msgid "Remove or suspend email address"
1377
- #~ msgstr "Выдаліць ці прыпыніць электронны адрас"
1378
-
1379
- #~ msgid ""
1380
- #~ "Your subscription has been successfully confirmed. Thank you for using "
1381
- #~ "our notification service. Now you will receive a message every time "
1382
- #~ "someone posts a new comment to"
1383
- #~ msgstr ""
1384
- #~ "La tua iscrizione &egrave; stata confermata con successo. Grazie per aver "
1385
- #~ "usato il nostro servizio di notifica. Da ora in poi riceverai un "
1386
- #~ "messaggio ogni volta che qualcuno lascia un commento per:"
1387
-
1388
- #~ msgid ""
1389
- #~ "The permalink for your management page. This page <b>does not</b> "
1390
- #~ "actually exist in the system, is generated on-the-fly. It should start "
1391
- #~ "with a / (i.e. <code>/manage-subscriptions</code>)"
1392
- #~ msgstr ""
1393
- #~ "Il <b>permalink</b> per la pagina di gestione. Questa pagina non esiste "
1394
- #~ "in Wordpress, viene generata al volo dal plugin. Dovrebbe iniziare con "
1395
- #~ "uno / (ad es. <code>/gestisci-sottoscrizioni</code)"
1396
-
1397
- #~ msgid ""
1398
- #~ "The ID (<strong>not the permalink!</strong>) of the management page you "
1399
- #~ "created."
1400
- #~ msgstr ""
1401
- #~ "L'ID (<strong>non il permalink!</strong>) della pagina di gestione che "
1402
- #~ "hai creato."
1403
-
1404
- #~ msgid ""
1405
- #~ "Send a notification email to confirm the subscription (to avoid addresses "
1406
- #~ "misuse)"
1407
- #~ msgstr ""
1408
- #~ "Invia una email per confermare l'iscrizione ad un dato articolo (per "
1409
- #~ "evitare l'uso scorretto di indirizzi email di terzi)"
1410
-
1411
- #~ msgid ""
1412
- #~ "Oops, Huston we have a problem! Please contact the administrator of this "
1413
- #~ "blog for further details."
1414
- #~ msgstr ""
1415
- #~ "Ouch, Huston abbiamo un problema! Per favore contatta l'amministratore di "
1416
- #~ "questo blog per maggiori informazioni."
1417
-
1418
- #~ msgid ""
1419
- #~ "You can manage the subscriptions to your articles on this page. In order "
1420
- #~ "to cancel or suspend one or more notifications, select the corresponding "
1421
- #~ "checkbox(es) and click on the button at the end of the list."
1422
- #~ msgstr ""
1423
- #~ "Tramite questa pagina puoi gestire le tue sottoscrizioni al mio blog. Se "
1424
- #~ "desideri disdire o sospendere una o pi&ugrave; notifiche, spunta le "
1425
- #~ "caselle corrispondenti agli articoli e clicca sul pusante in fondo alla "
1426
- #~ "lista."
1427
-
1428
- #~ msgid ""
1429
- #~ "You can manage your subscriptions to the article of this blog on this "
1430
- #~ "page. In order to cancel or suspend one or more notifications, select the "
1431
- #~ "corresponding checkbox(es) and click on the button at the end of the "
1432
- #~ "list. You are currently subscribed to:"
1433
- #~ msgstr ""
1434
- #~ "Tramite questa pagina puoi gestire le tue sottoscrizioni al mio blog. Se "
1435
- #~ "desideri disdire o sospendere una o pi&ugrave; notifiche, spunta le "
1436
- #~ "caselle corrispondenti agli articoli e clicca sul pusante in fondo alla "
1437
- #~ "lista. Al momento, risulti iscritto a:"
1438
-
1439
- #~ msgid ""
1440
- #~ "If you know the ID of a post you want to manage, enter it in the field "
1441
- #~ "here below to see a list of email addresses subscribed to it"
1442
- #~ msgstr ""
1443
- #~ "Se conosci l'ID dell'articolo che vuoi gestire, inseriscilo nel campo qui "
1444
- #~ "di seguito per accedere alla relativa lista di indirizzi email iscritti "
1445
- #~ "alla discussione"
1446
-
1447
- #~ msgid "Search post ID"
1448
- #~ msgstr "Cerca ID"
1449
-
1450
- #~ msgid ""
1451
- #~ "If you know the email address you want to manage, enter it in the field "
1452
- #~ "here below to see a list of articles this reader is currently watching"
1453
- #~ msgstr ""
1454
- #~ "Se conosci l'indirizzo email che vuoi gestire, inseriscilo nel campo qui "
1455
- #~ "di seguito per accedere alla relativa lista di articoli che sta "
1456
- #~ "attualmente seguendo"
1457
-
1458
- #~ msgid "Search by email address"
1459
- #~ msgstr "Cerca per indirizzo email"
1460
-
1461
- #~ msgid ""
1462
- #~ "You are the author of this entry. <a href='[manager_link]'>Manage</a> its "
1463
- #~ "subscriptions."
1464
- #~ msgstr ""
1465
- #~ "Sei l'autore di quest'articolo. Gestisci gli utenti <a "
1466
- #~ "href='[manager_link]'>iscritti</a> alla discussione."
1467
-
1468
- #~ msgid "Filters"
1469
- #~ msgstr "Filtri"
1470
-
1471
- #~ msgid "Search by post ID"
1472
- #~ msgstr "Cerca per ID dell'articolo"
1473
-
1474
- #~ msgid "Thank you"
1475
- #~ msgstr "Grazie"
1476
-
1477
- #~ msgid "\"From\" name"
1478
- #~ msgstr "Nome del mittente"
1479
-
1480
- #~ msgid "Dashboard"
1481
- #~ msgstr "Bacheca"
1482
-
1483
- #~ msgid "Visitors"
1484
- #~ msgstr "Visitatori"
1485
-
1486
- #~ msgid "Traffic Sources"
1487
- #~ msgstr "Sorgenti di traffico"
1488
-
1489
- #~ msgid "Content"
1490
- #~ msgstr "Contenuto"
1491
-
1492
- #~ msgid "Raw Data"
1493
- #~ msgstr "Dati grezzi"
1494
-
1495
- #~ msgid "World Map"
1496
- #~ msgstr "Mappa"
1497
-
1498
- #~ msgid "Current filters:"
1499
- #~ msgstr "Filtri attivi:"
1500
-
1501
- #~ msgid "Filter pageviews where"
1502
- #~ msgstr "Filtra accessi in cui:"
1503
-
1504
- #~ msgid "Browser"
1505
- #~ msgstr "Browser"
1506
-
1507
- #~ msgid "Browser version"
1508
- #~ msgstr "Versione Browser"
1509
-
1510
- #~ msgid "CSS version"
1511
- #~ msgstr "Versione CSS"
1512
-
1513
- #~ msgid "Country Code"
1514
- #~ msgstr "Codice Paese"
1515
-
1516
- #~ msgid "Domain"
1517
- #~ msgstr "Dominio"
1518
-
1519
- #~ msgid "IP"
1520
- #~ msgstr "IP"
1521
-
1522
- #~ msgid "Language Code"
1523
- #~ msgstr "Codice Lingua"
1524
-
1525
- #~ msgid "Operating System"
1526
- #~ msgstr "Sistema operativo"
1527
-
1528
- #~ msgid "Permalink"
1529
- #~ msgstr "Permalink"
1530
-
1531
- #~ msgid "Referer"
1532
- #~ msgstr "Riferimento"
1533
-
1534
- #~ msgid "Screen Resolution"
1535
- #~ msgstr "Risoluzione schermo"
1536
-
1537
- #~ msgid "Is equal to"
1538
- #~ msgstr "Uguale a"
1539
-
1540
- #~ msgid "Day"
1541
- #~ msgstr "Giorno"
1542
-
1543
- #~ msgid "Go"
1544
- #~ msgstr "Vai"
1545
-
1546
- #~ msgid "reset"
1547
- #~ msgstr "annulla"
1548
-
1549
- #~ msgid "Pageviews by day - Click on a day for hourly metrics"
1550
- #~ msgstr ""
1551
- #~ "Pagine al giorno - Clicca su un giorno per vedere il dettaglio orario"
1552
-
1553
- #~ msgid "Pageviews by hour"
1554
- #~ msgstr "Accessi orari"
1555
-
1556
- #~ msgid "About WP-SlimStat"
1557
- #~ msgstr "Informazioni su WP-SlimStat"
1558
-
1559
- #~ msgid "Total Hits"
1560
- #~ msgstr "Totale accessi"
1561
-
1562
- #~ msgid "Data Size"
1563
- #~ msgstr "Dimensione DB"
1564
-
1565
- #~ msgid "Tracking Active"
1566
- #~ msgstr "Tracciamento attivo"
1567
-
1568
- #~ msgid "Summary for"
1569
- #~ msgstr "Panoramica del"
1570
-
1571
- #~ msgid "this period"
1572
- #~ msgstr "periodo"
1573
-
1574
- #~ msgid "Unique IPs"
1575
- #~ msgstr "IP unici"
1576
-
1577
- #~ msgid "Avg Pageviews"
1578
- #~ msgstr "Media accessi"
1579
-
1580
- #~ msgid "On"
1581
- #~ msgstr "Il"
1582
-
1583
- #~ msgid "Last Month"
1584
- #~ msgstr "Mese scorso"
1585
-
1586
- #~ msgid "User agents"
1587
- #~ msgstr "User agents"
1588
-
1589
- #~ msgid "Popular pages of all time"
1590
- #~ msgstr "Pagine in assoluto pi&ugrave; popolari"
1591
-
1592
- #~ msgid "Open %s in a new window"
1593
- #~ msgstr "Apri %s in una nuova finestra"
1594
-
1595
- #~ msgid "More"
1596
- #~ msgstr "Dettagli"
1597
-
1598
- #~ msgid "Recent Keywords"
1599
- #~ msgstr "Parole chiave recenti"
1600
-
1601
- #~ msgid "Recent Countries"
1602
- #~ msgstr "Paesi recenti"
1603
-
1604
- #~ msgid "c-"
1605
- #~ msgstr "c-"
1606
-
1607
- #~ msgid "Traffic Sources Overview"
1608
- #~ msgstr "Panoramica sorgenti di traffico"
1609
-
1610
- #~ msgid "Human Visits by day - Click on a day for hourly metrics"
1611
- #~ msgstr ""
1612
- #~ "Visite umane al giorno - Clicca su un giorno per vedere il dettaglio "
1613
- #~ "orario"
1614
-
1615
- #~ msgid "Human Visits by hour"
1616
- #~ msgstr "Visite umane per ogni ora"
1617
-
1618
- #~ msgid "Human visits"
1619
- #~ msgstr "Visitatori umani"
1620
-
1621
- #~ msgid "One time visitors"
1622
- #~ msgstr "Una sola visita"
1623
-
1624
- #~ msgid "Bots"
1625
- #~ msgstr "Bot"
1626
-
1627
- #~ msgid "Pages per visit"
1628
- #~ msgstr "Pagine per visita"
1629
-
1630
- #~ msgid "Longest visit"
1631
- #~ msgstr "Visita pi&ugrave; lunga"
1632
-
1633
- #~ msgid "Languages"
1634
- #~ msgstr "Lingue"
1635
-
1636
- #~ msgid "l-"
1637
- #~ msgstr "l-"
1638
-
1639
- #~ msgid "Languages - Just Visitors"
1640
- #~ msgstr "Lingue - Solo visitatori"
1641
-
1642
- #~ msgid "IP Addresses and Domains"
1643
- #~ msgstr "Indirizzi IP e Domini"
1644
-
1645
- #~ msgid "Recent Browsers"
1646
- #~ msgstr "Browser recenti"
1647
-
1648
- #~ msgid "Operating Systems"
1649
- #~ msgstr "Sistemi operativi"
1650
-
1651
- #~ msgid "Browsers and Operating Systems"
1652
- #~ msgstr "Browser e Sistemi operativi"
1653
-
1654
- #~ msgid "Screen Resolutions"
1655
- #~ msgstr "Risoluzioni schermo"
1656
-
1657
- #~ msgid "Screen Resolutions with colordepth"
1658
- #~ msgstr "Risoluzioni schermo e colori"
1659
-
1660
- #~ msgid "Plugins"
1661
- #~ msgstr "Plugin"
1662
-
1663
- #~ msgid "Flash"
1664
- #~ msgstr "Flash"
1665
-
1666
- #~ msgid "Silverlight"
1667
- #~ msgstr "Silverlight"
1668
-
1669
- #~ msgid "Acrobat"
1670
- #~ msgstr "Acrobat"
1671
-
1672
- #~ msgid "Java"
1673
- #~ msgstr "Java"
1674
-
1675
- #~ msgid "Media Player"
1676
- #~ msgstr "Media Player"
1677
-
1678
- #~ msgid "Real Player"
1679
- #~ msgstr "Real Player"
1680
-
1681
- #~ msgid "Top Countries"
1682
- #~ msgstr "Panoramica dei Paesi"
1683
-
1684
- #~ msgid "Details about Recent Visits"
1685
- #~ msgstr "Dettagli sulle visite recenti"
1686
-
1687
- #~ msgid "Direct visit to"
1688
- #~ msgstr "Visita diretta a"
1689
-
1690
- #~ msgid "Traffic Sources by day - Click on a day for hourly metrics"
1691
- #~ msgstr ""
1692
- #~ "Sorgenti di traffico al giorno - Clicca su un giorno per vedere il "
1693
- #~ "dettaglio orario"
1694
-
1695
- #~ msgid "Traffic Sources by hour"
1696
- #~ msgstr "Sorgenti di traffico orarie"
1697
-
1698
- #~ msgid "Unique Referers"
1699
- #~ msgstr "Sorgenti uniche"
1700
-
1701
- #~ msgid "Direct Visits"
1702
- #~ msgstr "Visite dirette"
1703
-
1704
- #~ msgid "Unique Pages Referred"
1705
- #~ msgstr "Pagine uniche riferite"
1706
-
1707
- #~ msgid "Recent bouncing pages"
1708
- #~ msgstr "Pagine di rimbalzo"
1709
-
1710
- #~ msgid "Unique Internal"
1711
- #~ msgstr "Ricerche interne"
1712
-
1713
- #~ msgid "Top Keywords"
1714
- #~ msgstr "Parole chiave principali"
1715
-
1716
- #~ msgid "Traffic Sources for"
1717
- #~ msgstr "Sorgenti di traffico del"
1718
-
1719
- #~ msgid "Sites for"
1720
- #~ msgstr "Siti del"
1721
-
1722
- #~ msgid "Recent Keywords &raquo; Pages"
1723
- #~ msgstr "Parole chiave &raquo; Pagine"
1724
-
1725
- #~ msgid "Open referer in a new window"
1726
- #~ msgstr "Apri il riferimento in una nuova finestra"
1727
-
1728
- #~ msgid ""
1729
- #~ "Average pageviews per visit by day - Click on a day for hourly metrics"
1730
- #~ msgstr ""
1731
- #~ "Pagine al giorno - Clicca su un giorno per vedere il dettaglio orario"
1732
-
1733
- #~ msgid "Average pageviews per visit by hour"
1734
- #~ msgstr "Media oraria delle pagine per visita"
1735
-
1736
- #~ msgid "Recent Contents"
1737
- #~ msgstr "Contenuti recenti"
1738
-
1739
- #~ msgid "Recent Feeds"
1740
- #~ msgstr "Feed recenti"
1741
-
1742
- #~ msgid "Recent 404 pages"
1743
- #~ msgstr "Pagine 404 recenti"
1744
-
1745
- #~ msgid "Recent Internal Searches"
1746
- #~ msgstr "Ricerche interne"
1747
-
1748
- #~ msgid "Top Exit Pages for"
1749
- #~ msgstr "Pagine d'uscita del"
1750
-
1751
- #~ msgid "Recent Outbound Links"
1752
- #~ msgstr "Link in uscita"
1753
-
1754
- #~ msgid "Recent Downloads"
1755
- #~ msgstr "Download recenti"
1756
-
1757
- #~ msgid "Order by"
1758
- #~ msgstr "Ordina per"
1759
-
1760
- #~ msgid "Country"
1761
- #~ msgstr "Paese"
1762
-
1763
- #~ msgid "Date/Time"
1764
- #~ msgstr "Data/Ora"
1765
-
1766
- #~ msgid "Language"
1767
- #~ msgstr "Lingua"
1768
-
1769
- #~ msgid "Descending"
1770
- #~ msgstr "Decrescente"
1771
-
1772
- #~ msgid "Starting from record #"
1773
- #~ msgstr "A partire dalla riga n."
1774
-
1775
- #~ msgid "No records found"
1776
- #~ msgstr "Nessun record trovato"
1777
-
1778
- #~ msgid "Records: %d - %d. Order by: %s %s"
1779
- #~ msgstr "Righe: %d - %d. Ordinamento: %s %s"
1780
-
1781
- #~ msgid "N/A"
1782
- #~ msgstr "N/D"
1783
-
1784
- #~ msgid "Direct visit"
1785
- #~ msgstr "Visita diretta"
1786
-
1787
- #~ msgid ""
1788
- #~ "World Map - Values represent the percentage of hits coming from that "
1789
- #~ "Country"
1790
- #~ msgstr ""
1791
- #~ "Mappa del mondo - I valori rappresentano le visite in percentuale "
1792
- #~ "provenienti da ogni Paese"
1793
-
1794
- #~ msgid "Pluggable custom reports"
1795
- #~ msgstr "Rapporti personalizzati"
1796
-
1797
- #~ msgid ""
1798
- #~ "Yes, you can! Create and view your personalized analytics for WP "
1799
- #~ "SlimStat. In order to do this, just write a new plugin that fetches the "
1800
- #~ "desired information from the database and then hook it to the action "
1801
- #~ "<code>wp_slimstat_custom_report</code>. A demo plugin comes with the "
1802
- #~ "package. It shows how to write custom reports in 5 minutes. You can find "
1803
- #~ "it inside the plugin&apos;s folder: <code>wp-slimstat-custom-report-demo."
1804
- #~ "php</code>. For more information, visit my <a href=\"http://lab."
1805
- #~ "duechiacchiere.it/\" target=\"_blank\">support forum</a>."
1806
- #~ msgstr ""
1807
- #~ "Si, si pu&ograve;! Creare e vedere le proprie statistiche personalizzate "
1808
- #~ "per WP SlimStat. Per far questo, ti basta scrivere un nuovo plugin che "
1809
- #~ "preleva le informazioni desiderate dal database, per poi agganciarlo al "
1810
- #~ "codice <code>wp_slimstat_custom_report</code>. Un esempio &egrave; "
1811
- #~ "incluso con la distribuzione. Mostra come scrivere rapporti "
1812
- #~ "personalizzati in 5 minuti. Lo trovi nella cartella del plugin: <code>wp-"
1813
- #~ "slimstat-custom-report-demo.php</code>. Per ulteriori informazioni, "
1814
- #~ "visita il mio <a href=\"http://lab.duechiacchiere.it/\" target=\"_blank"
1815
- #~ "\">forum di supporto</a>."
1816
-
1817
- #~ msgid "Domains"
1818
- #~ msgstr "Domini"
1819
-
1820
- #~ msgid "Visits"
1821
- #~ msgstr "Visite"
1822
-
1823
- #~ msgid "Unique Visits"
1824
- #~ msgstr "Visite uniche"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-11 01:59-0600\n"
6
+ "PO-Revision-Date: 2016-01-11 01:59-0600\n"
7
+ "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
+ "Language-Team: Web Geeks\n"
9
+ "Language: be_BY\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "Plural-Forms: s;\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: wp_subscribe_reloaded.php:124
20
+ msgid "Settings"
21
+ msgstr "Scegli ordine"
22
+
23
+ #: wp_subscribe_reloaded.php:1030
24
+ msgid "Don't subscribe"
25
+ msgstr "Не падпісвацца"
26
+
27
+ #: wp_subscribe_reloaded.php:1031
28
+ msgid "All"
29
+ msgstr "Усё"
30
+
31
+ #: wp_subscribe_reloaded.php:1032 templates/user.php:73
32
+ #: templates/author.php:75
33
+ msgid "Replies to my comments"
34
+ msgstr "Адказы на мае каментары"
35
+
36
+ #: utils/stcr_manage.php:218
37
+ msgid ""
38
+ "Notify me of followup comments via e-mail. You can also <a "
39
+ "href='[subscribe_link]'>subscribe</a> without commenting."
40
+ msgstr ""
41
+ "Атрымліваць новыя каментары па электроннай пошце. Вы можаце <a "
42
+ "href='[subscribe_link]'>падпісацца</a> без каментавання."
43
+
44
+ #: utils/stcr_manage.php:219
45
+ msgid ""
46
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
47
+ "subscriptions."
48
+ msgstr ""
49
+ "Вы падпісаны на гэты артыкул. <a href='[manager_link]'>Рэдагаваць</a> свае "
50
+ "падпіскі."
51
+
52
+ #: utils/stcr_manage.php:220
53
+ msgid ""
54
+ "Your subscription to this post needs to be confirmed. <a "
55
+ "href='[manager_link]'>Manage your subscriptions</a>."
56
+ msgstr ""
57
+ "Ваша падпіска на гэты артыкул мае патрэбу ў пацверджанні. <a "
58
+ "href='[manager_link]'>Рэдагаваць</a> свае падпіскі."
59
+
60
+ #: utils/stcr_manage.php:221
61
+ msgid ""
62
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
63
+ msgstr ""
64
+ "Вы можаце <a href='[manager_link]'>кіраваць падпіскамі</a> на гэты запіс."
65
+
66
+ #: utils/stcr_manage.php:225 options/index.php:57
67
+ msgid "Manage subscriptions"
68
+ msgstr "Рэдагаваць падпіскі"
69
+
70
+ #: utils/stcr_manage.php:227
71
+ msgid ""
72
+ "To manage your subscriptions, please enter your email address here below. We "
73
+ "will send you a message containing the link to access your personal "
74
+ "management page."
75
+ msgstr ""
76
+ "Для кіравання сваімі падпіскамі, калі ласка, увядзіце свой электронны адрас "
77
+ форму ніжэй. Мы адправім вам паведамленне са спасылкай на вашу "
78
+ "персанальную старонку кіравання."
79
+
80
+ #: utils/stcr_manage.php:228
81
+ msgid ""
82
+ "Thank you for using our subscription service. Your request has been "
83
+ "completed, and you should receive an email with the management link in a few "
84
+ "minutes."
85
+ msgstr ""
86
+ "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. На "
87
+ "працягу некалькіх хвілін вы павінны атрымаць ліст са спасылкай на старонку "
88
+ "кіравання падпіскамі."
89
+
90
+ #: utils/stcr_manage.php:229
91
+ msgid ""
92
+ "You can follow the discussion on <strong>[post_title]</strong> without "
93
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
94
+ "form here below and you're all set."
95
+ msgstr ""
96
+ "Вы можаце сачыць за абмеркаваннем артыкула <strong>[post_title]</strong>, не "
97
+ "пакідаючы свайго каментара. Выдатна, ці не праўда? Проста ўвядзіце свой "
98
+ "электронны адрас у форму ніжэй, і гатова!"
99
+
100
+ #: utils/stcr_manage.php:230
101
+ msgid ""
102
+ "Thank you for using our subscription service. Your request has been "
103
+ "completed. You will receive a notification email every time a new comment to "
104
+ "this article is approved and posted by the administrator."
105
+ msgstr ""
106
+ "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. Вы "
107
+ "будзеце атрымліваць апавяшчэнні кожных разоў, як новы каментар да гэты "
108
+ "артыкулу будзе ўхвалены і апублікаваны адміністратарам сайта."
109
+
110
+ #: utils/stcr_manage.php:231
111
+ msgid ""
112
+ "Thank you for using our subscription service. In order to confirm your "
113
+ "request, please check your email for the verification message and follow the "
114
+ "instructions."
115
+ msgstr ""
116
+ "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Каб пацвердзіць свой "
117
+ "запыт, калі ласка, праверце сваю пошту і вынікайце інструкцыям у лісце пра "
118
+ "пацверджанне."
119
+
120
+ #: utils/stcr_manage.php:232
121
+ msgid ""
122
+ "In order to cancel or suspend one or more notifications, select the "
123
+ "corresponding checkbox(es) and click on the button at the end of the list."
124
+ msgstr ""
125
+ "Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
126
+ "адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу."
127
+
128
+ #: utils/stcr_manage.php:233
129
+ msgid ""
130
+ "In order to cancel or suspend one or more notifications, select the "
131
+ "corresponding checkbox(es) and click on the button at the end of the list. "
132
+ "You are currently subscribed to:"
133
+ msgstr ""
134
+ "Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
135
+ "адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу. На дадзены "
136
+ "момант вы падпісаны на:"
137
+
138
+ #: utils/stcr_manage.php:237
139
+ msgid "There is a new comment to [post_title]"
140
+ msgstr "З'явіўся новы каментар да артыкула [post_title]"
141
+
142
+ #: utils/stcr_manage.php:238
143
+ msgid ""
144
+ "There is a new comment to [post_title].\n"
145
+ "Comment Link: [comment_permalink]\n"
146
+ "Author: [comment_author]\n"
147
+ "Comment:\n"
148
+ "[comment_content]\n"
149
+ "Permalink: [post_permalink]\n"
150
+ "Manage your subscriptions: [manager_link]"
151
+ msgstr ""
152
+ "З'явіўся новы каментар да артыкула [post_title].\n"
153
+ "Спасылка на каментар: [comment_permalink]\n"
154
+ "Аўтар: [comment_author]\n"
155
+ "Каментар:\n"
156
+ "[comment_content]\n"
157
+ "\n"
158
+ "Спасылка на артыкул: [post_permalink]\n"
159
+ "Кіраванне падпіскамі: [manager_link]"
160
+
161
+ #: utils/stcr_manage.php:239
162
+ msgid "Please confirm your subscription to [post_title]"
163
+ msgstr "Калі ласка, пацвердзіце сваю падпіску на артыкул [post_title]"
164
+
165
+ #: utils/stcr_manage.php:240
166
+ msgid ""
167
+ "You have requested to be notified every time a new comment is added to:\n"
168
+ "[post_permalink]\n"
169
+ "\n"
170
+ "Please confirm your request by clicking on this link:\n"
171
+ "[confirm_link]"
172
+ msgstr ""
173
+ "Вы зрабілі запыт на атрыманне новых каментароў да артыкула:\n"
174
+ "[post_permalink]\n"
175
+ "\n"
176
+ "Калі ласка, перайдзіце па наступнай спасылцы, каб пацвердзіць падпіску:\n"
177
+ "[confirm_link]"
178
+
179
+ #: utils/stcr_manage.php:241
180
+ msgid "Manage your subscriptions on [blog_name]"
181
+ msgstr "Рэдагаваць свае падпіскі на сайце [blog_name]"
182
+
183
+ #: utils/stcr_manage.php:242
184
+ msgid ""
185
+ "You have requested to manage your subscriptions to the articles on "
186
+ "[blog_name]. Follow this link to access your personal page:\n"
187
+ "[manager_link]"
188
+ msgstr ""
189
+ "Вы зрабілі запыт на рэдагаванне сваіх падпісак на каментары да артыкулаў на "
190
+ "сайце [blog_name]. Вось спасылка на вашу асабістую старонку кіравання "
191
+ "падпіскамі:\n"
192
+ "[manager_link]"
193
+
194
+ #: utils/stcr_manage.php:387
195
+ #, fuzzy
196
+ msgid "Subscriptions"
197
+ msgstr "Падпіскі"
198
+
199
+ #: utils/stcr_manage.php:416 options/panel5.php:87 options/panel5.php:96
200
+ #: options/panel5.php:105 options/panel5.php:115 options/panel5.php:124
201
+ #: options/panel5.php:134 options/panel5.php:143 options/panel5.php:152
202
+ #: options/panel5.php:161 options/panel2.php:67 options/panel2.php:77
203
+ #: options/panel2.php:106
204
+ msgid "No"
205
+ msgstr "Не"
206
+
207
+ #: utils/stcr_manage.php:443
208
+ msgid ""
209
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
210
+ msgstr ""
211
+ "Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
212
+ "Наведаеце наш афіцыйны"
213
+
214
+ #: utils/stcr_manage.php:443
215
+ msgid "support forum"
216
+ msgstr "форум падтрымкі"
217
+
218
+ #: utils/stcr_manage.php:444
219
+ msgid "Feeling generous?"
220
+ msgstr "Жадаеце выявіць шчодрасць?"
221
+
222
+ #: utils/stcr_manage.php:444
223
+ msgid "Donate a few bucks!"
224
+ msgstr "Ахвяруйце пару баксаў!"
225
+
226
+ #: utils/stcr_upgrade.php:53
227
+ msgid "Important Notice"
228
+ msgstr ""
229
+
230
+ #: utils/stcr_upgrade.php:96
231
+ msgid ""
232
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
233
+ "database has been sanitized to prevent the raw html messages. <a class="
234
+ "\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-animation\" "
235
+ "src=\""
236
+ msgstr ""
237
+
238
+ #: utils/stcr_upgrade.php:151
239
+ msgid ""
240
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
241
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
242
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
243
+ msgstr ""
244
+
245
+ #: utils/stcr_upgrade.php:151
246
+ msgid ""
247
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
248
+ "Comments to prevent confusion between the two plugins."
249
+ msgstr ""
250
+
251
+ #: utils/stcr_upgrade.php:152
252
+ msgid ""
253
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
254
+ "that you want to import, you'll need to import that data manually, as only "
255
+ "one import routine will ever run to prevent data loss."
256
+ msgstr ""
257
+
258
+ #: utils/stcr_upgrade.php:153 utils/stcr_upgrade.php:225
259
+ #: utils/stcr_upgrade.php:374
260
+ msgid ""
261
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
262
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
263
+ "your configuration.<a class=\"dismiss\" href=\"#\">Got it. </a><img class="
264
+ "\"stcr-loading-animation\" src=\""
265
+ msgstr ""
266
+
267
+ #: utils/stcr_upgrade.php:224
268
+ msgid ""
269
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
270
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
271
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
272
+ msgstr ""
273
+
274
+ #: utils/stcr_upgrade.php:224
275
+ msgid ""
276
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
277
+ "Notification to prevent confusion between the two plugins."
278
+ msgstr ""
279
+
280
+ #: utils/stcr_upgrade.php:371
281
+ msgid ""
282
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
283
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
284
+ "were detected and automatically imported into <strong>Subscribe to Comments "
285
+ "Reloaded</strong>."
286
+ msgstr ""
287
+
288
+ #: utils/stcr_upgrade.php:371
289
+ msgid ""
290
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
291
+ "Subscriptions to prevent confusion between the two plugins."
292
+ msgstr ""
293
+
294
+ #: utils/stcr_upgrade.php:372
295
+ msgid ""
296
+ "If you have subscription data from another plugin (such as Subscribe to "
297
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
298
+ "you'll need to import that data manually, as only one import routine will "
299
+ "ever run to prevent data loss."
300
+ msgstr ""
301
+
302
+ #: utils/stcr_upgrade.php:373
303
+ msgid ""
304
+ "<strong>Note:</strong> If you were previously using the "
305
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
306
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
307
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
308
+ "respectively."
309
+ msgstr ""
310
+
311
+ #: utils/stcr_upgrade.php:387
312
+ msgid ""
313
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
314
+ msgstr ""
315
+
316
+ #: utils/stcr_upgrade.php:388
317
+ msgid ""
318
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
319
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
320
+ msgstr ""
321
+
322
+ #: utils/stcr_upgrade.php:389
323
+ msgid ""
324
+ "If you want to donate you can do it via <a href=\"\n"
325
+ "https://www.paypal.com/cgi-bin/webscr?"
326
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
327
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
328
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
329
+ msgstr ""
330
+
331
+ #: utils/stcr_upgrade.php:391
332
+ msgid ""
333
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
334
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
335
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Got it. </"
336
+ "a><img class=\"stcr-loading-animation\" src=\""
337
+ msgstr ""
338
+
339
+ #: utils/stcr_upgrade.php:403
340
+ msgid ""
341
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
342
+ "160106."
343
+ msgstr ""
344
+
345
+ #: utils/stcr_upgrade.php:404
346
+ msgid ""
347
+ "This version includes many changes and fixes to improve your experience with "
348
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
349
+ "email templates, Subscription Checkbox position, and more!"
350
+ msgstr ""
351
+
352
+ #: utils/stcr_upgrade.php:405
353
+ msgid ""
354
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
355
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
356
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
357
+ "class=\"stcr-loading-animation\" src=\""
358
+ msgstr ""
359
+
360
+ #: utils/stcr_upgrade.php:419
361
+ msgid "Announcement: Introducing Comment Mail"
362
+ msgstr ""
363
+
364
+ #: utils/stcr_upgrade.php:420
365
+ msgid ""
366
+ "<strong><a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
367
+ "\">Comment Mail</strong></a> is a new free plugin based on the original "
368
+ "<strong>Subscribe to Comments Reloaded</strong> and includes all of the core "
369
+ "StCR features."
370
+ msgstr ""
371
+
372
+ #: utils/stcr_upgrade.php:421
373
+ msgid ""
374
+ "A powerful StCR importer lets you import your StCR settings and "
375
+ "subscriptions into Comment Mail, allowing for a seamless transition."
376
+ msgstr ""
377
+
378
+ #: utils/stcr_upgrade.php:422
379
+ msgid ""
380
+ "Need more powerful features to manage your subscriptions but can't wait for "
381
+ "StCR? <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
382
+ "\">Take a look at Comment Mail!</a>"
383
+ msgstr ""
384
+
385
+ #: utils/stcr_upgrade.php:423
386
+ msgid ""
387
+ "<em>Note: Subscribe to Comments Reloaded remains in active development.</"
388
+ "em><a class=\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-"
389
+ "animation\" src=\""
390
+ msgstr ""
391
+
392
+ #: templates/user.php:23 templates/author.php:23
393
+ #: options/panel1-business-logic.php:70
394
+ msgid "Subscriptions deleted:"
395
+ msgstr "Падпіскі выдалены:"
396
+
397
+ #: templates/user.php:27 templates/author.php:27
398
+ #: options/panel1-business-logic.php:74
399
+ msgid "Subscriptions suspended:"
400
+ msgstr "Падпіскі прыпынены:"
401
+
402
+ #: templates/user.php:31 templates/author.php:31
403
+ #: options/panel1-business-logic.php:78
404
+ msgid "Subscriptions activated:"
405
+ msgstr "Падпіскі актываваны:"
406
+
407
+ #: templates/user.php:35 templates/user.php:39 templates/author.php:35
408
+ #: templates/author.php:39 options/panel1-business-logic.php:82
409
+ #: options/panel1-business-logic.php:86
410
+ msgid "Subscriptions updated:"
411
+ msgstr "Падпіскі абноўлены:"
412
+
413
+ #: templates/user.php:52 templates/author.php:52
414
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:22
415
+ #: options/panel1.php:117 options/panel1.php:153
416
+ msgid ""
417
+ "Please remember: this operation cannot be undone. Are you sure you want to "
418
+ "proceed?"
419
+ msgstr ""
420
+ "Увага: гэту аперацыю нельга адмяніць. Вы ўпэўнены, што жадаеце працягнуць?"
421
+
422
+ #: templates/user.php:57 templates/request-management-link.php:73
423
+ #: templates/subscribe.php:89 options/panel1-add-subscription.php:16
424
+ #: options/panel1.php:65 options/panel1.php:126
425
+ msgid "Email"
426
+ msgstr "Эл. адрас"
427
+
428
+ #: templates/user.php:58 templates/author.php:58 options/panel1.php:129
429
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
430
+ msgstr "Расшыфроўка: Y = усе каментары, R = толькі адказы, C = неактыўныя"
431
+
432
+ #: templates/user.php:63
433
+ msgid "F j, Y"
434
+ msgstr ""
435
+
436
+ #: templates/user.php:67 templates/author.php:69
437
+ msgid "Select all"
438
+ msgstr "Абраць усё"
439
+
440
+ #: templates/user.php:68 templates/author.php:70
441
+ msgid "Invert selection"
442
+ msgstr "Абраць зваротнае"
443
+
444
+ #: templates/user.php:69 templates/author.php:71 options/panel1.php:161
445
+ msgid "Action:"
446
+ msgstr "Дзеянне:"
447
+
448
+ #: templates/user.php:70 templates/author.php:72 options/panel1.php:153
449
+ msgid "Delete"
450
+ msgstr "Выдаліць"
451
+
452
+ #: templates/user.php:71 templates/author.php:73 options/panel1.php:163
453
+ msgid "Suspend"
454
+ msgstr "Прыпыніць"
455
+
456
+ #: templates/user.php:72 templates/author.php:74
457
+ msgid "All comments"
458
+ msgstr ""
459
+
460
+ #: templates/user.php:74 templates/author.php:76 options/panel1.php:166
461
+ msgid "Activate"
462
+ msgstr "Уключыць"
463
+
464
+ #: templates/user.php:76 templates/author.php:77 options/panel1.php:167
465
+ msgid "Update subscriptions"
466
+ msgstr "Абнавіць падпіскі"
467
+
468
+ #: templates/user.php:79 templates/author.php:80
469
+ #: templates/one-click-unsubscribe.php:28
470
+ msgid "No subscriptions match your search criteria."
471
+ msgstr "Ніводная падпіска не адпавядае пошукаваму запыту."
472
+
473
+ #: templates/request-management-link.php:75 templates/subscribe.php:91
474
+ msgid "Send"
475
+ msgstr "Адправіць"
476
+
477
+ #: templates/author.php:57
478
+ msgid "Title"
479
+ msgstr "Загаловак"
480
+
481
+ #: templates/subscribe.php:43 templates/subscribe.php:44
482
+ msgid "New subscription to"
483
+ msgstr "Новая падпіска на"
484
+
485
+ #: templates/subscribe.php:44
486
+ msgid "User:"
487
+ msgstr "Карыстач:"
488
+
489
+ #: options/panel6.php:8 options/panel7.php:8
490
+ #, fuzzy
491
+ msgid "Support the developers"
492
+ msgstr "Падтрымаць аўтара"
493
+
494
+ #: options/panel6.php:18
495
+ #, fuzzy
496
+ msgid ""
497
+ "How valuable is the feature offered by this plugin to your visitors? please "
498
+ "consider supporting the author if this plugin made your web site better, "
499
+ "especially if you are making money out of it. Any donation received will be "
500
+ "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
501
+ "strong>, and to buy some food for my hungry family."
502
+ msgstr ""
503
+ "Наколькі важная функцыя, якую падае гэта ўбудова для вашых наведвальнікаў? "
504
+ "Убудова <b>Subscribe to Comments Reloaded</b> ёсць і заўсёды будзе "
505
+ "бясплатным, але падумайце над тым, каб падтрымаць аўтара, калі гэта ўбудова "
506
+ "зрабіла ваш сайт трохі лепш, асабліва калі вы зарабляеце грошы з дапамогай "
507
+ "свайго сайта. Усе ахвяраванні будуць скарыстаны для развіцця ўбудовы "
508
+ "<b>Subscribe to Comments Reloaded</b> і на тое, каб купіць трохі ежы маёй "
509
+ "галоднай сям'і."
510
+
511
+ #: options/panel6.php:20
512
+ msgid "Don't want to donate? You can still help"
513
+ msgstr "Не жадаеце рабіць ахвяраванне? Вы ўсё адно можаце дапамагчы"
514
+
515
+ #: options/panel6.php:21
516
+ #, fuzzy
517
+ msgid ""
518
+ "If you don't want to donate money, please consider blogging about my plugin "
519
+ "with a link to the plugin's page. Please let your readers know what makes "
520
+ "your blog better. You can also contribute donating your time: do not "
521
+ "hesitate to send me bug reports, your localization files, ideas on how to "
522
+ "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
523
+ "you do, thanks for using my plugin!"
524
+ msgstr ""
525
+ "Калі вы не жадаеце дапамагчы грашыма, калі ласка, разгледзіце магчымасць "
526
+ "напісаць пра маю ўбудову ў сваім блогу і пакінуць спасылку на старонку "
527
+ "ўбудовы. Калі ласка, распавядзіце сваім чытачам, што робіць ваш блог лепш. "
528
+ "Вы можаце таксама ахвяраваць свой час: не саромейцеся адпраўляць мне "
529
+ "справаздачы пра памылкі, свае файлы лакалізацыі, ідэі па паляпшэнні ўбудовы "
530
+ "<b>Subscribe to Comments Reloaded</b> і гэтак далей. Што б вы ні абралі, "
531
+ "дзякуй, што карыстаецеся маёй убудовай!"
532
+
533
+ #: options/panel6.php:23
534
+ msgid "Subscribe to the Beta testers"
535
+ msgstr ""
536
+
537
+ #: options/panel6.php:24
538
+ msgid ""
539
+ "Before a new Update we release a Beta version so that our current users can "
540
+ "give us feedback if they find a bug, If you want to join the tester list you "
541
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
542
+ "a>"
543
+ msgstr ""
544
+
545
+ #: options/panel6.php:26
546
+ msgid "Vote and show your appreciation"
547
+ msgstr "Прагаласуйце і пакажыце сваю ўдзячнасць"
548
+
549
+ #: options/panel6.php:27
550
+ #, fuzzy
551
+ msgid ""
552
+ "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
553
+ "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
554
+ "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
555
+ msgstr ""
556
+ "Калі вам падабаецца вам убудова <b>Subscribe to Comments Reloaded</b>, "
557
+ "распавядзіце іншым людзям пра яго і пра тое, наколькі ён добры. <a href="
558
+ "\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
559
+ "\">Ацэніце</a> яго ў частцы ўбудоў на сайце Wordpress."
560
+
561
+ #: options/panel1-business-logic.php:23
562
+ msgid "Subscription added."
563
+ msgstr "Падпіска дададзена."
564
+
565
+ #: options/panel1-business-logic.php:39
566
+ msgid "Subscriptions updated."
567
+ msgstr "Падпіскі абноўлены."
568
+
569
+ #: options/panel1-business-logic.php:51
570
+ msgid "Subscription deleted."
571
+ msgstr "Падпіска выдалена."
572
+
573
+ #: options/panel1-business-logic.php:110
574
+ msgid "&laquo; Previous"
575
+ msgstr "&laquo; Зваротна"
576
+
577
+ #: options/panel1-business-logic.php:114
578
+ msgid "Next &raquo;"
579
+ msgstr "Наперад &raquo;"
580
+
581
+ #: options/panel5.php:18 options/panel5.php:60 options/panel3.php:73
582
+ #: options/panel4.php:70 options/panel2.php:49
583
+ msgid "Your settings have been successfully updated."
584
+ msgstr "Вашы налады паспяхова абноўлены."
585
+
586
+ #: options/panel5.php:20 options/panel5.php:62 options/panel3.php:75
587
+ #: options/panel4.php:72 options/panel2.php:51
588
+ msgid "There was an error updating the following fields:"
589
+ msgstr "Адбылася памылка ў абнаўленні наступных палёў:"
590
+
591
+ #: options/panel5.php:28 options/panel5.php:75
592
+ msgid "Autopurge requests"
593
+ msgstr "Аўтаматычна выдаляць запыты"
594
+
595
+ #: options/panel5.php:31 options/panel5.php:84
596
+ msgid "Enable double check"
597
+ msgstr "Уключыць падвойнае пацверджанне"
598
+
599
+ #: options/panel5.php:34 options/panel5.php:92
600
+ msgid "Subscribe authors"
601
+ msgstr ""
602
+
603
+ #: options/panel5.php:37 options/panel5.php:102
604
+ msgid "Enable HTML emails"
605
+ msgstr "Выкарыстоўваць HTML лісты"
606
+
607
+ #: options/panel5.php:40
608
+ msgid "HTMLify Links in HTML emails"
609
+ msgstr ""
610
+
611
+ #: options/panel5.php:43
612
+ msgid "Send trackbacks"
613
+ msgstr "Адпраўляць трэкбеки"
614
+
615
+ #: options/panel5.php:46
616
+ msgid "Notify admin"
617
+ msgstr "Апавясціць адміна"
618
+
619
+ #: options/panel5.php:49 options/panel5.php:140
620
+ msgid "Let admin subscribe"
621
+ msgstr "Дазволіць адміну падпісвацца"
622
+
623
+ #: options/panel5.php:52 options/panel5.php:149
624
+ msgid "BCC admin on Notifications"
625
+ msgstr "Апавяшчэнні"
626
+
627
+ #: options/panel5.php:55
628
+ #, fuzzy
629
+ msgid "StCR Subscription Box Position"
630
+ msgstr "Новая падпіска на"
631
+
632
+ #: options/panel5.php:78
633
+ msgid "days"
634
+ msgstr "дзён"
635
+
636
+ #: options/panel5.php:79
637
+ msgid ""
638
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
639
+ "this feature."
640
+ msgstr ""
641
+ "Выдаляць якія чакаюць пацверджанні (не пацверджаныя) падпіскі праз Х дзён. "
642
+ "Нуль адключае гэту функцыю."
643
+
644
+ #: options/panel5.php:86 options/panel5.php:95 options/panel5.php:104
645
+ #: options/panel5.php:114 options/panel5.php:123 options/panel5.php:133
646
+ #: options/panel5.php:142 options/panel5.php:151 options/panel5.php:160
647
+ #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
648
+ msgid "Yes"
649
+ msgstr "Так"
650
+
651
+ #: options/panel5.php:88
652
+ msgid ""
653
+ "Send a notification email to confirm the subscription (to avoid addresses "
654
+ "misuse)."
655
+ msgstr ""
656
+ "Адпраўляць ліст з просьбай пацвердзіць падпіску (каб пазбегнуць выкарыстанні "
657
+ "эл. адрасы без вядзёная ўладальніка)"
658
+
659
+ #: options/panel5.php:97
660
+ msgid ""
661
+ "Automatically subscribe authors to their own articles (not retroactive)."
662
+ msgstr ""
663
+
664
+ #: options/panel5.php:106
665
+ msgid ""
666
+ "If enabled, will send email messages with content-type = text/html instead "
667
+ "of text/plain"
668
+ msgstr ""
669
+ "Пры выбары гэтай функцыі паведамлення будуць адпраўляцца ў фармаце тэкст/"
670
+ "html замест звычайнага тэксту"
671
+
672
+ #: options/panel5.php:111
673
+ msgid "HTMLify links in emails"
674
+ msgstr ""
675
+
676
+ #: options/panel5.php:116
677
+ msgid ""
678
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
679
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
680
+ msgstr ""
681
+
682
+ #: options/panel5.php:121
683
+ msgid "Process trackbacks"
684
+ msgstr "Апрацоўваць трэкбеки"
685
+
686
+ #: options/panel5.php:125
687
+ msgid ""
688
+ "Notify users when a new trackback or pingback is added to the discussion."
689
+ msgstr ""
690
+ "Апавяшчаць падпісантаў пра новыя трэкбеках ці пингбэках да абмеркавання"
691
+
692
+ #: options/panel5.php:130
693
+ msgid "Track all subscriptions"
694
+ msgstr "Адсачыць усе падпіскі"
695
+
696
+ #: options/panel5.php:135
697
+ msgid "Notify the administrator when users subscribe without commenting."
698
+ msgstr "Апавяшчаць адміністратара, калі карыстачы падпісваюцца без каментара."
699
+
700
+ #: options/panel5.php:144
701
+ msgid "Let the administrator subscribe to comments when logged in."
702
+ msgstr "Дазволіць адміну падпісвацца, калі ён аўтарызаваны."
703
+
704
+ #: options/panel5.php:153
705
+ msgid "Send a copy of all Notifications to the administrator."
706
+ msgstr ""
707
+
708
+ #: options/panel5.php:158
709
+ msgid "StCR Box Position"
710
+ msgstr ""
711
+
712
+ #: options/panel5.php:162
713
+ msgid ""
714
+ "If this option is enable the subscriptioin box will be above the submit "
715
+ "button in your comment form."
716
+ msgstr ""
717
+
718
+ #: options/panel5.php:167
719
+ msgid "StCR Unique Key"
720
+ msgstr ""
721
+
722
+ #: options/panel5.php:172
723
+ msgid "This Unique Key is not set, please click the following button to "
724
+ msgstr ""
725
+
726
+ #: options/panel5.php:176 options/panel5.php:187
727
+ #, fuzzy
728
+ msgid "Generate"
729
+ msgstr "Tasso di rimbalzo"
730
+
731
+ #: options/panel5.php:184
732
+ msgid ""
733
+ "This Unique Key will be use to send the notification to your subscribers "
734
+ "with more security."
735
+ msgstr ""
736
+
737
+ #: options/panel5.php:195 options/panel3.php:200 options/panel4.php:207
738
+ #: options/panel2.php:189
739
+ msgid "Save Changes"
740
+ msgstr "Захаваць змены"
741
+
742
+ #: options/index.php:58
743
+ msgid "Comment Form"
744
+ msgstr "Форма каментара"
745
+
746
+ #: options/index.php:59
747
+ msgid "Management Page"
748
+ msgstr "Старонка кіравання"
749
+
750
+ #: options/index.php:60
751
+ msgid "Notifications"
752
+ msgstr "Апавяшчэнні"
753
+
754
+ #: options/index.php:61 options/panel3.php:85 options/panel4.php:80
755
+ #: options/panel2.php:58
756
+ msgid "Options"
757
+ msgstr "Параметры"
758
+
759
+ #: options/index.php:62
760
+ msgid "You can help"
761
+ msgstr "Вы можаце дапамагчы"
762
+
763
+ #: options/index.php:63
764
+ msgid "Support"
765
+ msgstr "Падтрымка"
766
+
767
+ #: options/index.php:64
768
+ msgid "Donate"
769
+ msgstr ""
770
+
771
+ #: options/panel3.php:16 options/panel3.php:90
772
+ msgid "Virtual Management Page"
773
+ msgstr "Віртуальная старонка кіравання"
774
+
775
+ #: options/panel3.php:21 options/panel3.php:99
776
+ msgid "Page title"
777
+ msgstr "Загаловак старонкі"
778
+
779
+ #: options/panel3.php:26 options/panel3.php:108
780
+ msgid "Management URL"
781
+ msgstr "URL кіраванні"
782
+
783
+ #: options/panel3.php:31 options/panel3.php:120
784
+ msgid "Custom HEAD meta"
785
+ msgstr "Уласны HEAD meta-тэг"
786
+
787
+ #: options/panel3.php:37 options/panel3.php:134
788
+ msgid "Request link"
789
+ msgstr "Спасылка на запыт"
790
+
791
+ #: options/panel3.php:42 options/panel3.php:144
792
+ msgid "Request submitted"
793
+ msgstr "Запыт адпраўлены"
794
+
795
+ #: options/panel3.php:47 options/panel3.php:154
796
+ msgid "Subscribe without commenting"
797
+ msgstr "Падпіска без каментавання"
798
+
799
+ #: options/panel3.php:52 options/panel3.php:164
800
+ msgid "Subscription processed"
801
+ msgstr "Падпіска аформлена"
802
+
803
+ #: options/panel3.php:57 options/panel3.php:174
804
+ msgid "Subscription processed (DCI)"
805
+ msgstr "Падпіска аформлена (DCI)"
806
+
807
+ #: options/panel3.php:62 options/panel3.php:183
808
+ msgid "Authors"
809
+ msgstr "Аўтары"
810
+
811
+ #: options/panel3.php:67 options/panel3.php:191
812
+ msgid "Users"
813
+ msgstr "Карыстачы"
814
+
815
+ #: options/panel3.php:93
816
+ msgid "Enabled"
817
+ msgstr "Уключана"
818
+
819
+ #: options/panel3.php:94
820
+ msgid "Disabled"
821
+ msgstr "Выключана"
822
+
823
+ #: options/panel3.php:95
824
+ #, fuzzy
825
+ msgid ""
826
+ "Disable the virtual management page if you need to create a <a href="
827
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
828
+ "real-management-page\">real page</a> to make your theme happy."
829
+ msgstr ""
830
+ "Адменіце віртуальную старонку кіравання, калі вам трэба стварыць <a href="
831
+ "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">сапраўдную "
832
+ "старонку</a> для карэктнай працы ўбудовы з вашай тэмай афармлення."
833
+
834
+ #: options/panel3.php:104
835
+ msgid "Title of the page your visitors will use to manage their subscriptions."
836
+ msgstr "Загаловак старонкі, на якой карыстачы будуць рэдагаваць свае падпіскі."
837
+
838
+ #: options/panel3.php:112
839
+ msgid ""
840
+ "The permalink for your management page (something like <code>/manage-"
841
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
842
+ "b> actually exist in the system, but its link must follow your permalink "
843
+ "structure."
844
+ msgstr ""
845
+ "Сталая спасылка на вашу старонку кіравання (штосьці накшталт <code>/manage-"
846
+ "subscriptions</code> ці <code>/page_id=345</code>). Гэта старонка фактычна "
847
+ "<b>не існуе</b> у сістэме, але сталая спасылка на яе павінна адпавядаць "
848
+ "вашым усталёўкам сталых спасылак у Wordpress."
849
+
850
+ #: options/panel3.php:114
851
+ msgid ""
852
+ "Warning: it looks like the value you are using may be incompatible with your "
853
+ "permalink structure"
854
+ msgstr ""
855
+ "Увага: магчыма, выкарыстоўванае вамі значэнне несумяшчальна з вашай "
856
+ "структурай сталых спасылак"
857
+
858
+ #: options/panel3.php:124
859
+ msgid ""
860
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
861
+ "Use <strong>single</strong> quotes for values."
862
+ msgstr ""
863
+ "Пакажыце свой код HTML для дадання ў HEAD старонкі. Выкарыстоўвайце "
864
+ "<strong>адзінарныя</strong> двукоссі для значэнняў."
865
+
866
+ #: options/panel3.php:130 options/panel4.php:113
867
+ msgid "Messages"
868
+ msgstr "Паведамленні"
869
+
870
+ #: options/panel3.php:139
871
+ msgid "Text shown to those who request to manage their subscriptions."
872
+ msgstr "Тэкст, бачны якія зрабілі запыт на кіраванне падпіскамі."
873
+
874
+ #: options/panel3.php:149
875
+ msgid ""
876
+ "Thank you note shown after the request here above has been processed. "
877
+ "Allowed tags: [post_title], [post_permalink]"
878
+ msgstr ""
879
+ "Тэкст падзякі, які выводзіцца пасля апрацоўкі зробленага запыту. Дазволены "
880
+ "тэгі: [post_title], [post_permalink]"
881
+
882
+ #: options/panel3.php:159
883
+ msgid ""
884
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
885
+ "[post_title], [post_permalink]"
886
+ msgstr ""
887
+ "Тэкст для ахвотнікаў падпісацца без каментавання. Дазволены тэгі: "
888
+ "[post_title], [post_permalink]"
889
+
890
+ #: options/panel3.php:169
891
+ msgid ""
892
+ "Thank you note shown after the subscription request has been processed "
893
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
894
+ msgstr ""
895
+ "Тэкст падзякі, які выводзіцца пасля апрацоўкі запыту на падпіску (падвойнае "
896
+ "пацверджанне адключана). Дазволены тэгі: [post_title], [post_permalink]"
897
+
898
+ #: options/panel3.php:179
899
+ msgid ""
900
+ "Thank you note shown after the subscription request has been processed "
901
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
902
+ msgstr ""
903
+ "Тэкст падзякі, які выводзіцца пасля апрацоўкі запыту на падпіску (падвойнае "
904
+ "пацверджанне ўключана). Дазволены тэгі: [post_title], [post_permalink]"
905
+
906
+ #: options/panel3.php:187
907
+ msgid "Introductory text for the authors' management page."
908
+ msgstr "Уступны тэкст на старонцы кіравання падпіскамі для аўтараў."
909
+
910
+ #: options/panel3.php:195
911
+ msgid "Introductory text for the users' management page."
912
+ msgstr "Уступны тэкст на старонцы кіравання падпіскамі для падпісантаў."
913
+
914
+ #: options/panel1-edit-subscription.php:8
915
+ msgid "Update Subscription"
916
+ msgstr "Абнавіць падпіску"
917
+
918
+ #: options/panel1-edit-subscription.php:11
919
+ #: options/panel1-edit-subscription.php:21
920
+ #: options/panel1-edit-subscription.php:22
921
+ #: options/panel1-edit-subscription.php:23 options/panel1.php:31
922
+ #: options/panel1.php:32 options/panel1.php:33
923
+ msgid "optional"
924
+ msgstr "па выбары"
925
+
926
+ #: options/panel1-edit-subscription.php:13
927
+ #: options/panel1-add-subscription.php:13
928
+ msgid "Post:"
929
+ msgstr "Запіс:"
930
+
931
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:26
932
+ msgid "From"
933
+ msgstr "З"
934
+
935
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:30
936
+ msgid "To"
937
+ msgstr "на"
938
+
939
+ #: options/panel1-edit-subscription.php:26
940
+ #: options/panel1-add-subscription.php:20 options/panel1.php:36
941
+ #: options/panel1.php:69 options/panel1.php:139
942
+ msgid "Status"
943
+ msgstr "Статут"
944
+
945
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:38
946
+ msgid "Keep unchanged"
947
+ msgstr "Пакінуць без змен"
948
+
949
+ #: options/panel1-edit-subscription.php:29
950
+ #: options/panel1-add-subscription.php:22 options/panel1.php:39
951
+ #: options/panel1.php:72
952
+ msgid "Active"
953
+ msgstr "Актыўна"
954
+
955
+ #: options/panel1-edit-subscription.php:30
956
+ #: options/panel1-add-subscription.php:23 options/panel1.php:40
957
+ #: options/panel1.php:73
958
+ msgid "Replies only"
959
+ msgstr "Толькі адказы"
960
+
961
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:41
962
+ msgid "Suspended"
963
+ msgstr "Прыпынена"
964
+
965
+ #: options/panel1-edit-subscription.php:33
966
+ #: options/panel1-add-subscription.php:26 options/panel1.php:43
967
+ msgid "Update"
968
+ msgstr "Абнавіць"
969
+
970
+ #: options/panel1-add-subscription.php:8 options/panel1.php:54
971
+ msgid "Add New Subscription"
972
+ msgstr "Дадаць новую падпіску"
973
+
974
+ #: options/panel1-add-subscription.php:24 options/panel1.php:74
975
+ msgid "Ask user to confirm"
976
+ msgstr "Прасіць подтвреждение ад карыстача"
977
+
978
+ #: options/panel8.php:11
979
+ #, fuzzy
980
+ msgid "Support Subscribe to Comments Reloaded"
981
+ msgstr ""
982
+ "Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
983
+ "Наведаеце наш афіцыйны"
984
+
985
+ #: options/panel8.php:12
986
+ msgid ""
987
+ "Every contribution that you make is high valuable, so if you consider this "
988
+ "plugin a helpful tool we will use your donation to invest on support and "
989
+ "developing time."
990
+ msgstr ""
991
+
992
+ #: options/panel4.php:17 options/panel4.php:85
993
+ msgid "Sender name"
994
+ msgstr "Імя адпраўніка"
995
+
996
+ #: options/panel4.php:22 options/panel4.php:98
997
+ msgid "Sender email address"
998
+ msgstr "Эл. адрас адпраўніка"
999
+
1000
+ #: options/panel4.php:27 options/panel4.php:118
1001
+ msgid "Notification subject"
1002
+ msgstr "Тэма ліста з апавяшчэннем"
1003
+
1004
+ #: options/panel4.php:33 options/panel4.php:39 options/panel4.php:131
1005
+ msgid "Notification message"
1006
+ msgstr "Тэкст апавяшчэння"
1007
+
1008
+ #: options/panel4.php:44 options/panel4.php:145
1009
+ msgid "Double check subject"
1010
+ msgstr "Тэма ліста пра пацверджанне падпіскі"
1011
+
1012
+ #: options/panel4.php:49 options/panel4.php:158
1013
+ msgid "Double check message"
1014
+ msgstr "Тэкст ліста пра пацверджанне падпіскі"
1015
+
1016
+ #: options/panel4.php:54 options/panel4.php:170
1017
+ msgid "Management subject"
1018
+ msgstr "Тэма ліста пра кіраванне падпіскамі"
1019
+
1020
+ #: options/panel4.php:59 options/panel4.php:64 options/panel4.php:183
1021
+ msgid "Management message"
1022
+ msgstr "Тэкст ліста пра кіраванне падпіскамі"
1023
+
1024
+ #: options/panel4.php:92
1025
+ msgid ""
1026
+ "Name to use for the \"from\" field when sending a new notification to the "
1027
+ "user."
1028
+ msgstr "Імя ў поле \"Ад каго\" у новым апавяшчэнні карыстачу."
1029
+
1030
+ #: options/panel4.php:106
1031
+ msgid ""
1032
+ "Email address to use for the \"from\" field when sending a new notification "
1033
+ "to the user."
1034
+ msgstr "Эл. адрас у поле \"Ад каго\" у новым апавяшчэнні карыстачу."
1035
+
1036
+ #: options/panel4.php:125
1037
+ msgid "Subject of the notification email. Allowed tag: [post_title]"
1038
+ msgstr "Тэма ліста з апавяшчэннем. Дазволены тэг: [post_title]"
1039
+
1040
+ #: options/panel4.php:138
1041
+ msgid ""
1042
+ "Content of the notification email. Allowed tags: [post_title], "
1043
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1044
+ "[manager_link]"
1045
+ msgstr ""
1046
+ "Тэкст апавяшчэння. Дазволеныя тэгі: [post_title], [comment_permalink], "
1047
+ "[comment_author], [comment_content], [post_permalink], [manager_link]"
1048
+
1049
+ #: options/panel4.php:139
1050
+ msgid ""
1051
+ "<p><strong>Note: To get a default template clear all the content and save "
1052
+ "the options.</strong></p>"
1053
+ msgstr ""
1054
+
1055
+ #: options/panel4.php:152
1056
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
1057
+ msgstr "Тэма ліста пра пацверджанне. Дазволены тэг: [post_title]"
1058
+
1059
+ #: options/panel4.php:164
1060
+ msgid ""
1061
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
1062
+ "[confirm_link], [post_title], [manager_link]"
1063
+ msgstr ""
1064
+ "Тэкст ліста пра подтвеждении. Дазволеныя тэгі: [post_permalink], "
1065
+ "[confirm_link], [post_title], [manager_link]"
1066
+
1067
+ #: options/panel4.php:177
1068
+ msgid ""
1069
+ "Subject of the mail sent to those who request to access their management "
1070
+ "page. Allowed tag: [blog_name]"
1071
+ msgstr ""
1072
+ "Тэма ліста падпісанту, які зрабіў запыт на доступ да старонкі кіравання "
1073
+ "падпіскамі. Дазволены тэг: [blog_name]"
1074
+
1075
+ #: options/panel4.php:189
1076
+ msgid ""
1077
+ "Content of the management email. Allowed tags: [blog_name], [manager_link]"
1078
+ msgstr ""
1079
+ "Тэкст ліста пра кіраванне падпіскамі. Дазволеныя тэгі: [blog_name],"
1080
+ "[manager_link]"
1081
+
1082
+ #: options/panel4.php:195
1083
+ #, fuzzy
1084
+ msgid "One Click Unsubscribe"
1085
+ msgstr "Дазволіць адміну падпісвацца"
1086
+
1087
+ #: options/panel4.php:201
1088
+ #, fuzzy
1089
+ msgid "Content of the One Click confirmation. Allowed tags: [post_title]"
1090
+ msgstr "Тэма ліста пра пацверджанне. Дазволены тэг: [post_title]"
1091
+
1092
+ #: options/panel2.php:12 options/panel2.php:63
1093
+ msgid "Enable default checkbox"
1094
+ msgstr "Уключыць стандартнае акенца выбару"
1095
+
1096
+ #: options/panel2.php:15 options/panel2.php:73
1097
+ msgid "Checked by default"
1098
+ msgstr "Абрана па змаўчанні"
1099
+
1100
+ #: options/panel2.php:18
1101
+ msgid "Checked by default Value"
1102
+ msgstr "Абрана па змаўчанні"
1103
+
1104
+ #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
1105
+ msgid "Advanced subscription"
1106
+ msgstr "Пашыраная падпіска"
1107
+
1108
+ #: options/panel2.php:27 options/panel2.php:130
1109
+ msgid "Custom inline style"
1110
+ msgstr "Змяняны стыль inline"
1111
+
1112
+ #: options/panel2.php:30 options/panel2.php:139
1113
+ msgid "Custom HTML"
1114
+ msgstr "Уласны HTML"
1115
+
1116
+ #: options/panel2.php:34
1117
+ msgid "Checkbox label"
1118
+ msgstr "Цэтлік акенца выбару"
1119
+
1120
+ #: options/panel2.php:37 options/panel2.php:163
1121
+ msgid "Subscribed label"
1122
+ msgstr "Цэтлік аформленай падпіскі"
1123
+
1124
+ #: options/panel2.php:40
1125
+ msgid "Awaiting label"
1126
+ msgstr "Цэтлік непацверджанай падпіскі"
1127
+
1128
+ #: options/panel2.php:43 options/panel2.php:180
1129
+ msgid "Author label"
1130
+ msgstr "Цэтлік аўтара"
1131
+
1132
+ #: options/panel2.php:68
1133
+ msgid ""
1134
+ "Disable this option if you want to move the subscription checkbox to a "
1135
+ "different place on your page."
1136
+ msgstr ""
1137
+ "Адзначыце гэту опцыю, калі жадаеце змяніць становішча акенца выбару падпіскі "
1138
+ "на сваёй старонцы."
1139
+
1140
+ #: options/panel2.php:78
1141
+ msgid "Decide if the checkbox should be checked by default or not."
1142
+ msgstr "Ці павінна акенца выбару быць абраным па змаўчанні."
1143
+
1144
+ #: options/panel2.php:87
1145
+ msgid "Default Checkbox Value"
1146
+ msgstr "Уключыць стандартнае акенца выбару"
1147
+
1148
+ #: options/panel2.php:91 options/panel2.php:120
1149
+ msgid "All new comments"
1150
+ msgstr ""
1151
+
1152
+ #: options/panel2.php:92 options/panel2.php:121
1153
+ msgid "Replies to this comment"
1154
+ msgstr "Адказы на мае каментары"
1155
+
1156
+ #: options/panel2.php:94
1157
+ msgid ""
1158
+ "Select the default option for the Checkbox. Be careful! Some users might "
1159
+ "like to be subscribed to all the post."
1160
+ msgstr ""
1161
+
1162
+ #: options/panel2.php:107
1163
+ msgid ""
1164
+ "Allow users to choose from different subscription types (all, replies only)."
1165
+ msgstr ""
1166
+ "Дазволіць карыстачам выбар з розных тыпаў падпіскі (усё, толькі адказы)."
1167
+
1168
+ #: options/panel2.php:115
1169
+ msgid "Advanced default"
1170
+ msgstr "Абрана па змаўчанні"
1171
+
1172
+ #: options/panel2.php:119
1173
+ msgid "None"
1174
+ msgstr ""
1175
+
1176
+ #: options/panel2.php:124
1177
+ msgid ""
1178
+ "The default subscription type that should be selected when Advanced "
1179
+ "subscriptions are enable."
1180
+ msgstr ""
1181
+
1182
+ #: options/panel2.php:135
1183
+ msgid "Custom inline CSS to add to the checkbox."
1184
+ msgstr "Змяняны Inline CSS для дадання да акенца выбару"
1185
+
1186
+ #: options/panel2.php:143
1187
+ msgid ""
1188
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
1189
+ "[checkbox_field], [checkbox_label]"
1190
+ msgstr ""
1191
+ "Уласны код HTML для выкарыстання пры адлюстраванні акенца выбару. Дазволеныя "
1192
+ "тэгі: [checkbox_field], [checkbox_label]"
1193
+
1194
+ #: options/panel2.php:149
1195
+ msgid "Messages for your visitors"
1196
+ msgstr "Паведамленні вашым наведвальнікам"
1197
+
1198
+ #: options/panel2.php:153
1199
+ msgid "Default label"
1200
+ msgstr "Стандартны цэтлік"
1201
+
1202
+ #: options/panel2.php:158
1203
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
1204
+ msgstr "Тэкст побач з акенцам выбару. Дазволены тэг: [subscribe_link]"
1205
+
1206
+ #: options/panel2.php:167
1207
+ msgid ""
1208
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
1209
+ "[manager_link]"
1210
+ msgstr "Тэкст, бачны якія падпісаліся чытачам. Дазволены тэг: [manager_link]"
1211
+
1212
+ #: options/panel2.php:172
1213
+ msgid "Pending label"
1214
+ msgstr "Цэтлік \"У чаканні\" "
1215
+
1216
+ #: options/panel2.php:176
1217
+ msgid ""
1218
+ "Label shown to those who are already subscribed, but haven't clicked on the "
1219
+ "confirmation link yet. Allowed tag: [manager_link]"
1220
+ msgstr ""
1221
+ "Тэкст, бачны чытачам, яшчэ не якія пацвердзілі сваю падпіску. Дазволены тэг: "
1222
+ "[manager_link]"
1223
+
1224
+ #: options/panel2.php:184
1225
+ msgid ""
1226
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
1227
+ msgstr "Тэст, бачны аўтарам і адміністратарам. Дазволены тэг: [manager_link]"
1228
+
1229
+ #: options/panel7.php:18
1230
+ msgid "Did you find a Bug on the plugin?"
1231
+ msgstr ""
1232
+
1233
+ #: options/panel7.php:19
1234
+ msgid ""
1235
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1236
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1237
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1238
+ "WordPress Support page."
1239
+ msgstr ""
1240
+
1241
+ #: options/panel1.php:19
1242
+ msgid "Mass Update Subscriptions"
1243
+ msgstr "Масава абнавіць падпіскі"
1244
+
1245
+ #: options/panel1.php:61
1246
+ msgid "Post ID"
1247
+ msgstr "ID-нумар запісу"
1248
+
1249
+ #: options/panel1.php:76
1250
+ msgid "Add"
1251
+ msgstr "Дадаць"
1252
+
1253
+ #: options/panel1.php:91
1254
+ msgid "Search subscriptions"
1255
+ msgstr "Шукаць у падпісках"
1256
+
1257
+ #: options/panel1.php:95
1258
+ #, php-format
1259
+ msgid ""
1260
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1261
+ "where the"
1262
+ msgstr ""
1263
+ "Вы можаце <a href=\"%s\">прагледзець усе падпіскі</a> ці знайсці тыя, дзе"
1264
+
1265
+ #: options/panel1.php:99
1266
+ msgid "email"
1267
+ msgstr "эл. адрас"
1268
+
1269
+ #: options/panel1.php:100
1270
+ msgid "post ID"
1271
+ msgstr "ID-нумар запісу"
1272
+
1273
+ #: options/panel1.php:101
1274
+ msgid "status"
1275
+ msgstr "статут"
1276
+
1277
+ #: options/panel1.php:104
1278
+ msgid "equals"
1279
+ msgstr "раўназначна"
1280
+
1281
+ #: options/panel1.php:105
1282
+ msgid "contains"
1283
+ msgstr "утрымоўвае"
1284
+
1285
+ #: options/panel1.php:106
1286
+ msgid "does not contain"
1287
+ msgstr "не ўтрымоўвае"
1288
+
1289
+ #: options/panel1.php:107
1290
+ msgid "starts with"
1291
+ msgstr "пачынаецца з"
1292
+
1293
+ #: options/panel1.php:108
1294
+ msgid "ends with"
1295
+ msgstr "сканчаецца на"
1296
+
1297
+ #: options/panel1.php:111
1298
+ msgid "results per page:"
1299
+ msgstr "вынікі пастаронкава:"
1300
+
1301
+ #: options/panel1.php:113
1302
+ msgid "Search"
1303
+ msgstr "Шукаць"
1304
+
1305
+ #: options/panel1.php:121
1306
+ msgid "Reverse the order by Post ID"
1307
+ msgstr "Змяніць парадак па ID запісы"
1308
+
1309
+ #: options/panel1.php:122 options/panel1.php:123
1310
+ msgid "Reverse the order by Date/Time"
1311
+ msgstr "Змяніць парадак па даце/чакай"
1312
+
1313
+ #: options/panel1.php:125
1314
+ msgid "Post (ID)"
1315
+ msgstr "Запіс (ID)"
1316
+
1317
+ #: options/panel1.php:128
1318
+ msgid "Search query:"
1319
+ msgstr "Пошукавы запыт:"
1320
+
1321
+ #: options/panel1.php:128
1322
+ msgid "Rows:"
1323
+ msgstr "Шэрагі:"
1324
+
1325
+ #: options/panel1.php:128
1326
+ msgid "of"
1327
+ msgstr " "
1328
+
1329
+ #: options/panel1.php:138
1330
+ msgid "Date and Time"
1331
+ msgstr "Дата і час"
1332
+
1333
+ #: options/panel1.php:150
1334
+ msgid "Subscription"
1335
+ msgstr "Падпіскі"
1336
+
1337
+ #: options/panel1.php:152
1338
+ msgid "Edit"
1339
+ msgstr "Рэдагаваць"
1340
+
1341
+ #: options/panel1.php:162
1342
+ msgid "Delete forever"
1343
+ msgstr "Выдаліць назаўжды"
1344
+
1345
+ #: options/panel1.php:164
1346
+ msgid "Activate and set to Y"
1347
+ msgstr "Уключыць і ўсталяваць на Y"
1348
+
1349
+ #: options/panel1.php:165
1350
+ msgid "Activate and set to R"
1351
+ msgstr "Уключыць і ўсталяваць на R"
1352
+
1353
+ #: options/panel1.php:170
1354
+ msgid "Sorry, no subscriptions match your search criteria."
1355
+ msgstr "Выбачыце, ніводная падпіска не адпавядае вашаму пошукаваму запыту."
1356
+
1357
+ #~ msgid "Bold"
1358
+ #~ msgstr "Тоўсты"
1359
+
1360
+ #~ msgid "Italic"
1361
+ #~ msgstr "З нахілам"
1362
+
1363
+ #~ msgid "Link"
1364
+ #~ msgstr "Спасылка"
1365
+
1366
+ #~ msgid "Image"
1367
+ #~ msgstr "Малюнак"
1368
+
1369
+ #~ msgid "Sponsor's Corner"
1370
+ #~ msgstr "Куток фундатара"
1371
+
1372
+ #~ msgid ""
1373
+ #~ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1374
+ #~ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1375
+ #~ msgstr ""
1376
+ #~ "Калі вы жадаеце праспансаваць гэту ўбудову, не саромейцеся, <a "
1377
+ #~ "href='http://behstant.com/negocio/contact.php' target='_blank'>звернецеся "
1378
+ #~ "да мяне</a>."
1379
+
1380
+ #~ msgid "Set to Y"
1381
+ #~ msgstr "Усталявана на Y"
1382
+
1383
+ #~ msgid "Daily digest"
1384
+ #~ msgstr "Штодзённы дайджэст"
1385
+
1386
+ #~ msgid "Notify authors"
1387
+ #~ msgstr "Апавяшчаць аўтараў"
1388
+
1389
+ #~ msgid "Notify the administrator when a new comment is posted."
1390
+ #~ msgstr "Апавяшчаць адміністратара пра новы каментар."
1391
+
1392
+ #~ msgid "Subscribed"
1393
+ #~ msgstr "Падпісана"
1394
+
1395
+ #~ msgid "Replies"
1396
+ #~ msgstr "Адказы"
1397
+
1398
+ #~ msgid "Digest"
1399
+ #~ msgstr "Дайджэст"
1400
+
1401
+ #~ msgid "Pending"
1402
+ #~ msgstr "У чаканні"
1403
+
1404
+ #~ msgid "Management Page ID"
1405
+ #~ msgstr "ID старонкі кіравання"
1406
+
1407
+ #~ msgid "Management page"
1408
+ #~ msgstr "Старонка кіравання"
1409
+
1410
+ #~ msgid "Awaiting confirmation"
1411
+ #~ msgstr "Чакае пацверджання"
1412
+
1413
+ #~ msgid "Stats"
1414
+ #~ msgstr "Статыстыка"
1415
+
1416
+ #~ msgid "Other Messages"
1417
+ #~ msgstr "Іншыя паведамленні"
1418
+
1419
+ #~ msgid "The status has been successfully updated. Rows affected:"
1420
+ #~ msgstr "Статут паспяхова абноўлены. Зменены радкі:"
1421
+
1422
+ #~ msgid ""
1423
+ #~ "Update the email address associated to a specific subscription (by post "
1424
+ #~ "ID)."
1425
+ #~ msgstr "Абнавіць эл. адрас вызначанай падпіскі (па ID запісы)."
1426
+
1427
+ #~ msgid "PID"
1428
+ #~ msgstr "ID запісы"
1429
+
1430
+ #~ msgid "Change status"
1431
+ #~ msgstr "Змяніць статут"
1432
+
1433
+ #~ msgid ""
1434
+ #~ "Change the status of an email address or permanently delete all its "
1435
+ #~ "subscriptions."
1436
+ #~ msgstr ""
1437
+ #~ "Змяніць статут электроннага адрасу ці цалкам выдаліць усё яго падпіскі."
1438
+
1439
+ #~ msgid "Resume"
1440
+ #~ msgstr "Аднавіць"
1441
+
1442
+ #~ msgid "Update email address"
1443
+ #~ msgstr "Абнавіць электронны адрас"
1444
+
1445
+ #~ msgid ""
1446
+ #~ "You can \"mass update\" all the occurrences of a given email address "
1447
+ #~ "(exact matches only)."
1448
+ #~ msgstr ""
1449
+ #~ "Вы можаце змяніць усе выкарыстанні вызначанага электроннага адрасу ў базе "
1450
+ #~ "дадзеных на новы (толькі для дакладных супадзенняў)."
1451
+
1452
+ #~ msgid "Search email address"
1453
+ #~ msgstr "Шукаць электронны адрас"
1454
+
1455
+ #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1456
+ #~ msgstr "(Расшыфроўка: Y: падпісана, N: прыпынена, C: чакае пацверджання)"
1457
+
1458
+ #~ msgid "StCR table has been successfully optimized."
1459
+ #~ msgstr "Табліца StCR паспяхова абноўлена."
1460
+
1461
+ #~ msgid "Filter by date"
1462
+ #~ msgstr "Filtra per data"
1463
+
1464
+ #~ msgid "Month"
1465
+ #~ msgstr "Mese"
1466
+
1467
+ #~ msgid "Year"
1468
+ #~ msgstr "Anno"
1469
+
1470
+ #~ msgid "No data to display"
1471
+ #~ msgstr "Nessun dato da visualizzare"
1472
+
1473
+ #~ msgid "optimize"
1474
+ #~ msgstr "аптымізаваць"
1475
+
1476
+ #~ msgid "Database"
1477
+ #~ msgstr "База дадзеных"
1478
+
1479
+ #~ msgid "Engine"
1480
+ #~ msgstr "Прылада"
1481
+
1482
+ #~ msgid "Created on"
1483
+ #~ msgstr "Створана"
1484
+
1485
+ #~ msgid "Records"
1486
+ #~ msgstr "Запісы"
1487
+
1488
+ #~ msgid "Average Record Length"
1489
+ #~ msgstr "Сярэдняя даўжыня запісу"
1490
+
1491
+ #~ msgid "Approximate Overhead"
1492
+ #~ msgstr "Прибл. аб'ём карыстацкіх дадзеных"
1493
+
1494
+ #~ msgid "Custom CSS Class"
1495
+ #~ msgstr "Клас змянянага CSS"
1496
+
1497
+ #~ msgid ""
1498
+ #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1499
+ #~ "its style."
1500
+ #~ msgstr ""
1501
+ #~ "Клас змянянага CSS для акенца выбару, калі вы жадаеце змяніць яго стыль"
1502
+
1503
+ #~ msgid "Subscriptions have been successfully updated."
1504
+ #~ msgstr "Падпіскі паспяхова абноўлены."
1505
+
1506
+ #~ msgid "Sorry, no subscriptions found."
1507
+ #~ msgstr "Выбачыце, падпіскі не знойдзены."
1508
+
1509
+ #~ msgid "All the subscriptions have been successfully updated."
1510
+ #~ msgstr "Усе падпіскі паспяхова абноўлены."
1511
+
1512
+ #~ msgid "Remove or suspend email address"
1513
+ #~ msgstr "Выдаліць ці прыпыніць электронны адрас"
1514
+
1515
+ #~ msgid ""
1516
+ #~ "Your subscription has been successfully confirmed. Thank you for using "
1517
+ #~ "our notification service. Now you will receive a message every time "
1518
+ #~ "someone posts a new comment to"
1519
+ #~ msgstr ""
1520
+ #~ "La tua iscrizione &egrave; stata confermata con successo. Grazie per aver "
1521
+ #~ "usato il nostro servizio di notifica. Da ora in poi riceverai un "
1522
+ #~ "messaggio ogni volta che qualcuno lascia un commento per:"
1523
+
1524
+ #~ msgid ""
1525
+ #~ "The permalink for your management page. This page <b>does not</b> "
1526
+ #~ "actually exist in the system, is generated on-the-fly. It should start "
1527
+ #~ "with a / (i.e. <code>/manage-subscriptions</code>)"
1528
+ #~ msgstr ""
1529
+ #~ "Il <b>permalink</b> per la pagina di gestione. Questa pagina non esiste "
1530
+ #~ "in Wordpress, viene generata al volo dal plugin. Dovrebbe iniziare con "
1531
+ #~ "uno / (ad es. <code>/gestisci-sottoscrizioni</code)"
1532
+
1533
+ #~ msgid ""
1534
+ #~ "The ID (<strong>not the permalink!</strong>) of the management page you "
1535
+ #~ "created."
1536
+ #~ msgstr ""
1537
+ #~ "L'ID (<strong>non il permalink!</strong>) della pagina di gestione che "
1538
+ #~ "hai creato."
1539
+
1540
+ #~ msgid ""
1541
+ #~ "Send a notification email to confirm the subscription (to avoid addresses "
1542
+ #~ "misuse)"
1543
+ #~ msgstr ""
1544
+ #~ "Invia una email per confermare l'iscrizione ad un dato articolo (per "
1545
+ #~ "evitare l'uso scorretto di indirizzi email di terzi)"
1546
+
1547
+ #~ msgid ""
1548
+ #~ "Oops, Huston we have a problem! Please contact the administrator of this "
1549
+ #~ "blog for further details."
1550
+ #~ msgstr ""
1551
+ #~ "Ouch, Huston abbiamo un problema! Per favore contatta l'amministratore di "
1552
+ #~ "questo blog per maggiori informazioni."
1553
+
1554
+ #~ msgid ""
1555
+ #~ "You can manage the subscriptions to your articles on this page. In order "
1556
+ #~ "to cancel or suspend one or more notifications, select the corresponding "
1557
+ #~ "checkbox(es) and click on the button at the end of the list."
1558
+ #~ msgstr ""
1559
+ #~ "Tramite questa pagina puoi gestire le tue sottoscrizioni al mio blog. Se "
1560
+ #~ "desideri disdire o sospendere una o pi&ugrave; notifiche, spunta le "
1561
+ #~ "caselle corrispondenti agli articoli e clicca sul pusante in fondo alla "
1562
+ #~ "lista."
1563
+
1564
+ #~ msgid ""
1565
+ #~ "You can manage your subscriptions to the article of this blog on this "
1566
+ #~ "page. In order to cancel or suspend one or more notifications, select the "
1567
+ #~ "corresponding checkbox(es) and click on the button at the end of the "
1568
+ #~ "list. You are currently subscribed to:"
1569
+ #~ msgstr ""
1570
+ #~ "Tramite questa pagina puoi gestire le tue sottoscrizioni al mio blog. Se "
1571
+ #~ "desideri disdire o sospendere una o pi&ugrave; notifiche, spunta le "
1572
+ #~ "caselle corrispondenti agli articoli e clicca sul pusante in fondo alla "
1573
+ #~ "lista. Al momento, risulti iscritto a:"
1574
+
1575
+ #~ msgid ""
1576
+ #~ "If you know the ID of a post you want to manage, enter it in the field "
1577
+ #~ "here below to see a list of email addresses subscribed to it"
1578
+ #~ msgstr ""
1579
+ #~ "Se conosci l'ID dell'articolo che vuoi gestire, inseriscilo nel campo qui "
1580
+ #~ "di seguito per accedere alla relativa lista di indirizzi email iscritti "
1581
+ #~ "alla discussione"
1582
+
1583
+ #~ msgid "Search post ID"
1584
+ #~ msgstr "Cerca ID"
1585
+
1586
+ #~ msgid ""
1587
+ #~ "If you know the email address you want to manage, enter it in the field "
1588
+ #~ "here below to see a list of articles this reader is currently watching"
1589
+ #~ msgstr ""
1590
+ #~ "Se conosci l'indirizzo email che vuoi gestire, inseriscilo nel campo qui "
1591
+ #~ "di seguito per accedere alla relativa lista di articoli che sta "
1592
+ #~ "attualmente seguendo"
1593
+
1594
+ #~ msgid "Search by email address"
1595
+ #~ msgstr "Cerca per indirizzo email"
1596
+
1597
+ #~ msgid ""
1598
+ #~ "You are the author of this entry. <a href='[manager_link]'>Manage</a> its "
1599
+ #~ "subscriptions."
1600
+ #~ msgstr ""
1601
+ #~ "Sei l'autore di quest'articolo. Gestisci gli utenti <a "
1602
+ #~ "href='[manager_link]'>iscritti</a> alla discussione."
1603
+
1604
+ #~ msgid "Filters"
1605
+ #~ msgstr "Filtri"
1606
+
1607
+ #~ msgid "Search by post ID"
1608
+ #~ msgstr "Cerca per ID dell'articolo"
1609
+
1610
+ #~ msgid "Thank you"
1611
+ #~ msgstr "Grazie"
1612
+
1613
+ #~ msgid "\"From\" name"
1614
+ #~ msgstr "Nome del mittente"
1615
+
1616
+ #~ msgid "Dashboard"
1617
+ #~ msgstr "Bacheca"
1618
+
1619
+ #~ msgid "Visitors"
1620
+ #~ msgstr "Visitatori"
1621
+
1622
+ #~ msgid "Traffic Sources"
1623
+ #~ msgstr "Sorgenti di traffico"
1624
+
1625
+ #~ msgid "Content"
1626
+ #~ msgstr "Contenuto"
1627
+
1628
+ #~ msgid "Raw Data"
1629
+ #~ msgstr "Dati grezzi"
1630
+
1631
+ #~ msgid "World Map"
1632
+ #~ msgstr "Mappa"
1633
+
1634
+ #~ msgid "Current filters:"
1635
+ #~ msgstr "Filtri attivi:"
1636
+
1637
+ #~ msgid "Filter pageviews where"
1638
+ #~ msgstr "Filtra accessi in cui:"
1639
+
1640
+ #~ msgid "Browser"
1641
+ #~ msgstr "Browser"
1642
+
1643
+ #~ msgid "Browser version"
1644
+ #~ msgstr "Versione Browser"
1645
+
1646
+ #~ msgid "CSS version"
1647
+ #~ msgstr "Versione CSS"
1648
+
1649
+ #~ msgid "Country Code"
1650
+ #~ msgstr "Codice Paese"
1651
+
1652
+ #~ msgid "Domain"
1653
+ #~ msgstr "Dominio"
1654
+
1655
+ #~ msgid "IP"
1656
+ #~ msgstr "IP"
1657
+
1658
+ #~ msgid "Language Code"
1659
+ #~ msgstr "Codice Lingua"
1660
+
1661
+ #~ msgid "Operating System"
1662
+ #~ msgstr "Sistema operativo"
1663
+
1664
+ #~ msgid "Permalink"
1665
+ #~ msgstr "Permalink"
1666
+
1667
+ #~ msgid "Referer"
1668
+ #~ msgstr "Riferimento"
1669
+
1670
+ #~ msgid "Screen Resolution"
1671
+ #~ msgstr "Risoluzione schermo"
1672
+
1673
+ #~ msgid "Is equal to"
1674
+ #~ msgstr "Uguale a"
1675
+
1676
+ #~ msgid "Day"
1677
+ #~ msgstr "Giorno"
1678
+
1679
+ #~ msgid "Go"
1680
+ #~ msgstr "Vai"
1681
+
1682
+ #~ msgid "reset"
1683
+ #~ msgstr "annulla"
1684
+
1685
+ #~ msgid "Pageviews by day - Click on a day for hourly metrics"
1686
+ #~ msgstr ""
1687
+ #~ "Pagine al giorno - Clicca su un giorno per vedere il dettaglio orario"
1688
+
1689
+ #~ msgid "Pageviews by hour"
1690
+ #~ msgstr "Accessi orari"
1691
+
1692
+ #~ msgid "About WP-SlimStat"
1693
+ #~ msgstr "Informazioni su WP-SlimStat"
1694
+
1695
+ #~ msgid "Total Hits"
1696
+ #~ msgstr "Totale accessi"
1697
+
1698
+ #~ msgid "Data Size"
1699
+ #~ msgstr "Dimensione DB"
1700
+
1701
+ #~ msgid "Tracking Active"
1702
+ #~ msgstr "Tracciamento attivo"
1703
+
1704
+ #~ msgid "Summary for"
1705
+ #~ msgstr "Panoramica del"
1706
+
1707
+ #~ msgid "this period"
1708
+ #~ msgstr "periodo"
1709
+
1710
+ #~ msgid "Unique IPs"
1711
+ #~ msgstr "IP unici"
1712
+
1713
+ #~ msgid "Avg Pageviews"
1714
+ #~ msgstr "Media accessi"
1715
+
1716
+ #~ msgid "On"
1717
+ #~ msgstr "Il"
1718
+
1719
+ #~ msgid "Last Month"
1720
+ #~ msgstr "Mese scorso"
1721
+
1722
+ #~ msgid "User agents"
1723
+ #~ msgstr "User agents"
1724
+
1725
+ #~ msgid "Popular pages of all time"
1726
+ #~ msgstr "Pagine in assoluto pi&ugrave; popolari"
1727
+
1728
+ #~ msgid "Open %s in a new window"
1729
+ #~ msgstr "Apri %s in una nuova finestra"
1730
+
1731
+ #~ msgid "More"
1732
+ #~ msgstr "Dettagli"
1733
+
1734
+ #~ msgid "Recent Keywords"
1735
+ #~ msgstr "Parole chiave recenti"
1736
+
1737
+ #~ msgid "Recent Countries"
1738
+ #~ msgstr "Paesi recenti"
1739
+
1740
+ #~ msgid "c-"
1741
+ #~ msgstr "c-"
1742
+
1743
+ #~ msgid "Traffic Sources Overview"
1744
+ #~ msgstr "Panoramica sorgenti di traffico"
1745
+
1746
+ #~ msgid "Human Visits by day - Click on a day for hourly metrics"
1747
+ #~ msgstr ""
1748
+ #~ "Visite umane al giorno - Clicca su un giorno per vedere il dettaglio "
1749
+ #~ "orario"
1750
+
1751
+ #~ msgid "Human Visits by hour"
1752
+ #~ msgstr "Visite umane per ogni ora"
1753
+
1754
+ #~ msgid "Human visits"
1755
+ #~ msgstr "Visitatori umani"
1756
+
1757
+ #~ msgid "One time visitors"
1758
+ #~ msgstr "Una sola visita"
1759
+
1760
+ #~ msgid "Bots"
1761
+ #~ msgstr "Bot"
1762
+
1763
+ #~ msgid "Pages per visit"
1764
+ #~ msgstr "Pagine per visita"
1765
+
1766
+ #~ msgid "Longest visit"
1767
+ #~ msgstr "Visita pi&ugrave; lunga"
1768
+
1769
+ #~ msgid "Languages"
1770
+ #~ msgstr "Lingue"
1771
+
1772
+ #~ msgid "l-"
1773
+ #~ msgstr "l-"
1774
+
1775
+ #~ msgid "Languages - Just Visitors"
1776
+ #~ msgstr "Lingue - Solo visitatori"
1777
+
1778
+ #~ msgid "IP Addresses and Domains"
1779
+ #~ msgstr "Indirizzi IP e Domini"
1780
+
1781
+ #~ msgid "Recent Browsers"
1782
+ #~ msgstr "Browser recenti"
1783
+
1784
+ #~ msgid "Operating Systems"
1785
+ #~ msgstr "Sistemi operativi"
1786
+
1787
+ #~ msgid "Browsers and Operating Systems"
1788
+ #~ msgstr "Browser e Sistemi operativi"
1789
+
1790
+ #~ msgid "Screen Resolutions"
1791
+ #~ msgstr "Risoluzioni schermo"
1792
+
1793
+ #~ msgid "Screen Resolutions with colordepth"
1794
+ #~ msgstr "Risoluzioni schermo e colori"
1795
+
1796
+ #~ msgid "Plugins"
1797
+ #~ msgstr "Plugin"
1798
+
1799
+ #~ msgid "Flash"
1800
+ #~ msgstr "Flash"
1801
+
1802
+ #~ msgid "Silverlight"
1803
+ #~ msgstr "Silverlight"
1804
+
1805
+ #~ msgid "Acrobat"
1806
+ #~ msgstr "Acrobat"
1807
+
1808
+ #~ msgid "Java"
1809
+ #~ msgstr "Java"
1810
+
1811
+ #~ msgid "Media Player"
1812
+ #~ msgstr "Media Player"
1813
+
1814
+ #~ msgid "Real Player"
1815
+ #~ msgstr "Real Player"
1816
+
1817
+ #~ msgid "Top Countries"
1818
+ #~ msgstr "Panoramica dei Paesi"
1819
+
1820
+ #~ msgid "Details about Recent Visits"
1821
+ #~ msgstr "Dettagli sulle visite recenti"
1822
+
1823
+ #~ msgid "Direct visit to"
1824
+ #~ msgstr "Visita diretta a"
1825
+
1826
+ #~ msgid "Traffic Sources by day - Click on a day for hourly metrics"
1827
+ #~ msgstr ""
1828
+ #~ "Sorgenti di traffico al giorno - Clicca su un giorno per vedere il "
1829
+ #~ "dettaglio orario"
1830
+
1831
+ #~ msgid "Traffic Sources by hour"
1832
+ #~ msgstr "Sorgenti di traffico orarie"
1833
+
1834
+ #~ msgid "Unique Referers"
1835
+ #~ msgstr "Sorgenti uniche"
1836
+
1837
+ #~ msgid "Direct Visits"
1838
+ #~ msgstr "Visite dirette"
1839
+
1840
+ #~ msgid "Unique Pages Referred"
1841
+ #~ msgstr "Pagine uniche riferite"
1842
+
1843
+ #~ msgid "Recent bouncing pages"
1844
+ #~ msgstr "Pagine di rimbalzo"
1845
+
1846
+ #~ msgid "Unique Internal"
1847
+ #~ msgstr "Ricerche interne"
1848
+
1849
+ #~ msgid "Top Keywords"
1850
+ #~ msgstr "Parole chiave principali"
1851
+
1852
+ #~ msgid "Traffic Sources for"
1853
+ #~ msgstr "Sorgenti di traffico del"
1854
+
1855
+ #~ msgid "Sites for"
1856
+ #~ msgstr "Siti del"
1857
+
1858
+ #~ msgid "Recent Keywords &raquo; Pages"
1859
+ #~ msgstr "Parole chiave &raquo; Pagine"
1860
+
1861
+ #~ msgid "Open referer in a new window"
1862
+ #~ msgstr "Apri il riferimento in una nuova finestra"
1863
+
1864
+ #~ msgid ""
1865
+ #~ "Average pageviews per visit by day - Click on a day for hourly metrics"
1866
+ #~ msgstr ""
1867
+ #~ "Pagine al giorno - Clicca su un giorno per vedere il dettaglio orario"
1868
+
1869
+ #~ msgid "Average pageviews per visit by hour"
1870
+ #~ msgstr "Media oraria delle pagine per visita"
1871
+
1872
+ #~ msgid "Recent Contents"
1873
+ #~ msgstr "Contenuti recenti"
1874
+
1875
+ #~ msgid "Recent Feeds"
1876
+ #~ msgstr "Feed recenti"
1877
+
1878
+ #~ msgid "Recent 404 pages"
1879
+ #~ msgstr "Pagine 404 recenti"
1880
+
1881
+ #~ msgid "Recent Internal Searches"
1882
+ #~ msgstr "Ricerche interne"
1883
+
1884
+ #~ msgid "Top Exit Pages for"
1885
+ #~ msgstr "Pagine d'uscita del"
1886
+
1887
+ #~ msgid "Recent Outbound Links"
1888
+ #~ msgstr "Link in uscita"
1889
+
1890
+ #~ msgid "Recent Downloads"
1891
+ #~ msgstr "Download recenti"
1892
+
1893
+ #~ msgid "Order by"
1894
+ #~ msgstr "Ordina per"
1895
+
1896
+ #~ msgid "Country"
1897
+ #~ msgstr "Paese"
1898
+
1899
+ #~ msgid "Date/Time"
1900
+ #~ msgstr "Data/Ora"
1901
+
1902
+ #~ msgid "Language"
1903
+ #~ msgstr "Lingua"
1904
+
1905
+ #~ msgid "Descending"
1906
+ #~ msgstr "Decrescente"
1907
+
1908
+ #~ msgid "Starting from record #"
1909
+ #~ msgstr "A partire dalla riga n."
1910
+
1911
+ #~ msgid "No records found"
1912
+ #~ msgstr "Nessun record trovato"
1913
+
1914
+ #~ msgid "Records: %d - %d. Order by: %s %s"
1915
+ #~ msgstr "Righe: %d - %d. Ordinamento: %s %s"
1916
+
1917
+ #~ msgid "N/A"
1918
+ #~ msgstr "N/D"
1919
+
1920
+ #~ msgid "Direct visit"
1921
+ #~ msgstr "Visita diretta"
1922
+
1923
+ #~ msgid ""
1924
+ #~ "World Map - Values represent the percentage of hits coming from that "
1925
+ #~ "Country"
1926
+ #~ msgstr ""
1927
+ #~ "Mappa del mondo - I valori rappresentano le visite in percentuale "
1928
+ #~ "provenienti da ogni Paese"
1929
+
1930
+ #~ msgid "Pluggable custom reports"
1931
+ #~ msgstr "Rapporti personalizzati"
1932
+
1933
+ #~ msgid ""
1934
+ #~ "Yes, you can! Create and view your personalized analytics for WP "
1935
+ #~ "SlimStat. In order to do this, just write a new plugin that fetches the "
1936
+ #~ "desired information from the database and then hook it to the action "
1937
+ #~ "<code>wp_slimstat_custom_report</code>. A demo plugin comes with the "
1938
+ #~ "package. It shows how to write custom reports in 5 minutes. You can find "
1939
+ #~ "it inside the plugin&apos;s folder: <code>wp-slimstat-custom-report-demo."
1940
+ #~ "php</code>. For more information, visit my <a href=\"http://lab."
1941
+ #~ "duechiacchiere.it/\" target=\"_blank\">support forum</a>."
1942
+ #~ msgstr ""
1943
+ #~ "Si, si pu&ograve;! Creare e vedere le proprie statistiche personalizzate "
1944
+ #~ "per WP SlimStat. Per far questo, ti basta scrivere un nuovo plugin che "
1945
+ #~ "preleva le informazioni desiderate dal database, per poi agganciarlo al "
1946
+ #~ "codice <code>wp_slimstat_custom_report</code>. Un esempio &egrave; "
1947
+ #~ "incluso con la distribuzione. Mostra come scrivere rapporti "
1948
+ #~ "personalizzati in 5 minuti. Lo trovi nella cartella del plugin: <code>wp-"
1949
+ #~ "slimstat-custom-report-demo.php</code>. Per ulteriori informazioni, "
1950
+ #~ "visita il mio <a href=\"http://lab.duechiacchiere.it/\" target=\"_blank"
1951
+ #~ "\">forum di supporto</a>."
1952
+
1953
+ #~ msgid "Domains"
1954
+ #~ msgstr "Domini"
1955
+
1956
+ #~ msgid "Visits"
1957
+ #~ msgstr "Visite"
1958
+
1959
+ #~ msgid "Unique Visits"
1960
+ #~ msgstr "Visite uniche"
langs/subscribe-reloaded-cs_CZ.mo CHANGED
Binary file
langs/subscribe-reloaded-cs_CZ.po CHANGED
@@ -1,1203 +1,1203 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: subscribe-reloaded\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-07-25 16:01-0500\n"
6
- "PO-Revision-Date: 2015-04-22 10:34-0700\n"
7
- "Last-Translator: Israel Barragan <reedyseth@gmail.com>\n"
8
- "Language-Team: \n"
9
- "Language: cs_CZ\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 1.6\n"
14
- "X-Poedit-Basepath: .\n"
15
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
-
17
- #: subscribe-to-comments-reloaded.php:41
18
- #: subscribe-to-comments-reloaded.php:248
19
- msgid ""
20
- "Your subscription to this post needs to be confirmed. <a "
21
- "href='[manager_link]'>Manage your subscriptions</a>."
22
- msgstr ""
23
- "Vaše žádost k odběru upozornění na nové komentáře čeká na schválení. <a "
24
- "href='[manager_link]'>Upravit vaše žádosti</a>."
25
-
26
- #: subscribe-to-comments-reloaded.php:46
27
- #: subscribe-to-comments-reloaded.php:247
28
- msgid ""
29
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
30
- "subscriptions."
31
- msgstr ""
32
- "Jste přihlášen k odběru upozornění na nové komentáře k tomuto článku. Můžete "
33
- "<a href='[manager_link]'>upravit</a> vaše odběry."
34
-
35
- #: subscribe-to-comments-reloaded.php:53
36
- #: subscribe-to-comments-reloaded.php:249
37
- msgid ""
38
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
39
- msgstr ""
40
- "<a href='[manager_link]'>Zde můžete spravovat</a> odběry upozornění na nové "
41
- "komentáře k tomuto článku."
42
-
43
- #: subscribe-to-comments-reloaded.php:58
44
- #: subscribe-to-comments-reloaded.php:244
45
- msgid ""
46
- "Notify me of followup comments via e-mail. You can also <a "
47
- "href='[subscribe_link]'>subscribe</a> without commenting."
48
- msgstr ""
49
- "<span class='comment_label_afterselect'> upozornění na nové komentáře k "
50
- "tomuto článku.</span> <span class='comment_label_nocom'> Chcete dostávat "
51
- "upozornění na nové komentáře a sami článek nekomentovat? <a "
52
- "href='[subscribe_link]'>Přihlaste se k odběru</a>.</span>"
53
-
54
- #: subscribe-to-comments-reloaded.php:67
55
- msgid "Don't subscribe"
56
- msgstr "Neodebírat"
57
-
58
- #: subscribe-to-comments-reloaded.php:68
59
- msgid "All"
60
- msgstr "Odebírat (na všechny komentáře)"
61
-
62
- #: subscribe-to-comments-reloaded.php:69 templates/user.php:65
63
- msgid "Replies to my comments"
64
- msgstr "Odebírat (jen na moje komentáře)"
65
-
66
- #: subscribe-to-comments-reloaded.php:70
67
- msgid "Daily digest"
68
- msgstr "Denní přehled"
69
-
70
- #: subscribe-to-comments-reloaded.php:221 options/index.php:41
71
- msgid "Manage subscriptions"
72
- msgstr "Správa odběrů"
73
-
74
- #: subscribe-to-comments-reloaded.php:222
75
- msgid ""
76
- "To manage your subscriptions, please enter your email address here below. We "
77
- "will send you a message containing the link to access your personal "
78
- "management page."
79
- msgstr ""
80
- "Pro správu vašich upozornění zadejte e-mailovou adresu do pole níže. Bude "
81
- "vám zaslán editační odkaz."
82
-
83
- #: subscribe-to-comments-reloaded.php:223
84
- msgid ""
85
- "Thank you for using our subscription service. Your request has been "
86
- "completed, and you should receive an email with the management link in a few "
87
- "minutes."
88
- msgstr ""
89
- "Váš požadavek byl zpracován. V nejbližší době by jste měli obdržet odkaz v "
90
- "emailu."
91
-
92
- #: subscribe-to-comments-reloaded.php:224
93
- msgid ""
94
- "You can follow the discussion on <strong>[post_title]</strong> without "
95
- "having to leave a comment. Cool, huh? Just enter your email address in the "
96
- "form here below and you're all set."
97
- msgstr ""
98
- "Zasílat upozornění na nové komentáře k článku » [post_title] « .\n"
99
- " E-mailovou adresu vyplňte do pole níže. Bude vám zaslán potvrzovací odkaz. "
100
-
101
- #: subscribe-to-comments-reloaded.php:225
102
- msgid ""
103
- "Thank you for using our subscription service. Your request has been "
104
- "completed. You will receive a notification email every time a new comment to "
105
- "this article is approved and posted by the administrator."
106
- msgstr ""
107
- "Váš požadavek byl zpracován. Váš odběr upozornění na nové komentáře k tomuto "
108
- "článku je aktivní."
109
-
110
- #: subscribe-to-comments-reloaded.php:226
111
- msgid ""
112
- "Thank you for using our subscription service. In order to confirm your "
113
- "request, please check your email for the verification message and follow the "
114
- "instructions."
115
- msgstr ""
116
- "Váš požadavek byl zpracován. Pro potvrzení požadavku naleznete ve vašem "
117
- "emailu potvrzovací odkaz."
118
-
119
- #: subscribe-to-comments-reloaded.php:227
120
- msgid ""
121
- "In order to cancel or suspend one or more notifications, select the "
122
- "corresponding checkbox(es) and click on the button at the end of the list."
123
- msgstr ""
124
- "Pro editaci upozornění vyberte odpovídající odběr, zaškrtněte volbu a "
125
- "potvrďte."
126
-
127
- #: subscribe-to-comments-reloaded.php:228
128
- msgid ""
129
- "In order to cancel or suspend one or more notifications, select the "
130
- "corresponding checkbox(es) and click on the button at the end of the list. "
131
- "You are currently subscribed to:"
132
- msgstr ""
133
- "Aktuálně odebíráte upozornění na nové komentáře k těmto článkům (pokud je "
134
- "chcete změnit či zrušit zaškrtněte volbu a klikntěte na tlačítko "
135
- "aktualizovat, pokud změnu nechcete pokračujte třeba přes menu):"
136
-
137
- #: subscribe-to-comments-reloaded.php:242
138
- msgid "There is a new comment to [post_title]"
139
- msgstr "Nový komentář k článku: [post_title]"
140
-
141
- #: subscribe-to-comments-reloaded.php:243
142
- msgid ""
143
- "There is a new comment to [post_title].\n"
144
- "Comment Link: [comment_permalink]\n"
145
- "Author: [comment_author]\n"
146
- "Comment:\n"
147
- "[comment_content]\n"
148
- "Permalink: [post_permalink]\n"
149
- "Manage your subscriptions: [manager_link]"
150
- msgstr ""
151
- "Nový komentář k článku: [post_title].\n"
152
- "Odkaz na komentář: [comment_permalink]\n"
153
- "Autor: [comment_author]\n"
154
- "Znění komentáře:\n"
155
- "[comment_content]\n"
156
- "Odkaz na článek: [post_permalink]\n"
157
- "Upravit odběry upozornění: [manager_link]\n"
158
- "\t\t\t\t\t"
159
-
160
- #: subscribe-to-comments-reloaded.php:250
161
- msgid "Please confirm your subscription to [post_title]"
162
- msgstr "Potvrďte odběr upozornění na nové komentáře k článku [post_title]"
163
-
164
- #: subscribe-to-comments-reloaded.php:251
165
- msgid ""
166
- "You have requested to be notified every time a new comment is added to:\n"
167
- "[post_permalink]\n"
168
- "\n"
169
- "Please confirm your request by clicking on this link:\n"
170
- "[confirm_link]"
171
- msgstr ""
172
- "Dobrý den, přihlásili jste se k odběru upozornění na nové komentáře k "
173
- "článku: \n"
174
- " [post_permalink] .\n"
175
- "\n"
176
- "Požadavek potvrďte prosím kliknutím na odkaz:\n"
177
- "[confirm_link] "
178
-
179
- #: subscribe-to-comments-reloaded.php:252
180
- msgid "Manage your subscriptions on [blog_name]"
181
- msgstr "Upravit odběr upozornění na nové komentáře z [blog_name]"
182
-
183
- #: subscribe-to-comments-reloaded.php:253
184
- msgid ""
185
- "You have requested to manage your subscriptions to the articles on "
186
- "[blog_name]. Follow this link to access your personal page:\n"
187
- "[manager_link]"
188
- msgstr ""
189
- "Váš požadavek spravovat odběr upozornění na nové komentáře článků na "
190
- "[blog_name] byl zpracován. Klikněte prosím zde pro úpravy:\n"
191
- " [manager_link]"
192
-
193
- #: subscribe-to-comments-reloaded.php:986
194
- msgid "Subscribed"
195
- msgstr "Odebíráno"
196
-
197
- #: subscribe-to-comments-reloaded.php:1000 options/panel2.php:41
198
- #: options/panel2.php:48 options/panel2.php:55 options/panel5.php:42
199
- #: options/panel5.php:49 options/panel5.php:56 options/panel5.php:63
200
- #: options/panel5.php:70 options/panel5.php:77
201
- msgid "Yes"
202
- msgstr "Ano"
203
-
204
- #: subscribe-to-comments-reloaded.php:1002
205
- msgid "Replies"
206
- msgstr "Reakce"
207
-
208
- #: subscribe-to-comments-reloaded.php:1004
209
- msgid "Digest"
210
- msgstr "Přehled"
211
-
212
- #: subscribe-to-comments-reloaded.php:1006
213
- msgid "Pending"
214
- msgstr "Čekající"
215
-
216
- #: subscribe-to-comments-reloaded.php:1007 options/panel2.php:42
217
- #: options/panel2.php:49 options/panel2.php:56 options/panel5.php:43
218
- #: options/panel5.php:50 options/panel5.php:57 options/panel5.php:64
219
- #: options/panel5.php:71 options/panel5.php:78
220
- msgid "No"
221
- msgstr "Ne"
222
-
223
- #: subscribe-to-comments-reloaded.php:1016
224
- msgid "Subscriptions"
225
- msgstr "Odběry "
226
-
227
- #: subscribe-to-comments-reloaded.php:1039
228
- msgid ""
229
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
230
- msgstr "Potřebujete pomoci? Navštivte oficiální"
231
-
232
- #: subscribe-to-comments-reloaded.php:1039
233
- msgid "support forum"
234
- msgstr "fórum podpory"
235
-
236
- #: subscribe-to-comments-reloaded.php:1040
237
- msgid "Feeling generous?"
238
- msgstr "Chcete být štědrý?"
239
-
240
- #: subscribe-to-comments-reloaded.php:1040
241
- msgid "Donate a few bucks!"
242
- msgstr "Přispět několika chechtáky!"
243
-
244
- #: options/index.php:42
245
- msgid "Comment Form"
246
- msgstr "Formulář komentářů"
247
-
248
- #: options/index.php:43
249
- msgid "Management Page"
250
- msgstr "Nastavení"
251
-
252
- #: options/index.php:44
253
- msgid "Notifications"
254
- msgstr "Oznámení"
255
-
256
- #: options/index.php:45 options/panel2.php:35 options/panel3.php:39
257
- #: options/panel4.php:34
258
- msgid "Options"
259
- msgstr "Možnosti"
260
-
261
- #: options/index.php:46
262
- msgid "You can help"
263
- msgstr "Jak nám pomoci?"
264
-
265
- #: options/panel1-business-logic.php:18
266
- msgid "Subscription added."
267
- msgstr "Odběr přidán."
268
-
269
- #: options/panel1-business-logic.php:30
270
- msgid "Subscriptions updated."
271
- msgstr "Odběry aktualizovány."
272
-
273
- #: options/panel1-business-logic.php:39
274
- msgid "Subscription deleted."
275
- msgstr "Odběr vymazán."
276
-
277
- #: options/panel1-business-logic.php:54 templates/author.php:22
278
- #: templates/user.php:22
279
- msgid "Subscriptions deleted:"
280
- msgstr "Vymazáno odběrů:"
281
-
282
- #: options/panel1-business-logic.php:58 templates/author.php:26
283
- #: templates/user.php:26
284
- msgid "Subscriptions suspended:"
285
- msgstr "Odběry pozastaveny."
286
-
287
- #: options/panel1-business-logic.php:62 templates/author.php:30
288
- #: templates/user.php:30
289
- msgid "Subscriptions activated:"
290
- msgstr "Odběry aktivovány."
291
-
292
- #: options/panel1-business-logic.php:66 options/panel1-business-logic.php:70
293
- #: templates/author.php:34 templates/author.php:38 templates/user.php:34
294
- msgid "Subscriptions updated:"
295
- msgstr "Odběry aktualizovány."
296
-
297
- #: options/panel1-business-logic.php:94
298
- msgid "&laquo; Previous"
299
- msgstr "&laquo; Předchozí"
300
-
301
- #: options/panel1-business-logic.php:98
302
- msgid "Next &raquo;"
303
- msgstr "další &raquo;"
304
-
305
- #: options/panel1-edit-subscription.php:8
306
- msgid "Update Subscription"
307
- msgstr "Aktualizovat odběry."
308
-
309
- #: options/panel1-edit-subscription.php:10 options/panel1.php:19
310
- #: options/panel1.php:81 options/panel1.php:113 templates/author.php:50
311
- #: templates/user.php:46
312
- msgid ""
313
- "Please remember: this operation cannot be undone. Are you sure you want to "
314
- "proceed?"
315
- msgstr "Tuto akci nelze vzít zpět, provést?"
316
-
317
- #: options/panel1-edit-subscription.php:12
318
- msgid "Post:"
319
- msgstr "Příspěvek:"
320
-
321
- #: options/panel1-edit-subscription.php:13 options/panel1.php:21
322
- msgid "From"
323
- msgstr "Od"
324
-
325
- #: options/panel1-edit-subscription.php:14 options/panel1.php:22
326
- msgid "To"
327
- msgstr "Komu"
328
-
329
- #: options/panel1-edit-subscription.php:15 options/panel1.php:26
330
- #: options/panel1.php:45 options/panel1.php:103
331
- msgid "Status"
332
- msgstr "Status"
333
-
334
- #: options/panel1-edit-subscription.php:17 options/panel1.php:28
335
- msgid "Keep unchanged"
336
- msgstr "Neměnit"
337
-
338
- #: options/panel1-edit-subscription.php:18 options/panel1.php:29
339
- #: options/panel1.php:47
340
- msgid "Active"
341
- msgstr "Aktivní"
342
-
343
- #: options/panel1-edit-subscription.php:19 options/panel1.php:30
344
- #: options/panel1.php:48
345
- msgid "Replies only"
346
- msgstr "Pouze reakce"
347
-
348
- #: options/panel1-edit-subscription.php:20 options/panel1.php:31
349
- msgid "Suspended"
350
- msgstr "Pozastaveno"
351
-
352
- #: options/panel1-edit-subscription.php:21 options/panel1.php:32
353
- msgid "Update"
354
- msgstr "Aktualizovat "
355
-
356
- #: options/panel1.php:17
357
- msgid "Mass Update Subscriptions"
358
- msgstr "Hromadné úpravy"
359
-
360
- #: options/panel1.php:23 options/panel1.php:24 options/panel1.php:25
361
- msgid "optional"
362
- msgstr "volitelné"
363
-
364
- #: options/panel1.php:39
365
- msgid "Add New Subscription"
366
- msgstr "Přidat nový odběr (podle ID článku)"
367
-
368
- #: options/panel1.php:43
369
- msgid "Post ID"
370
- msgstr "Příspěvek"
371
-
372
- #: options/panel1.php:44 options/panel1.php:90
373
- #: templates/request-management-link.php:65 templates/subscribe.php:87
374
- #: templates/user.php:51
375
- msgid "Email"
376
- msgstr "E-mail"
377
-
378
- #: options/panel1.php:49
379
- msgid "Ask user to confirm"
380
- msgstr "Zeptat se uživatele na pozvrzení"
381
-
382
- #: options/panel1.php:50
383
- msgid "Add"
384
- msgstr "Přidat "
385
-
386
- #: options/panel1.php:59
387
- msgid "Search subscriptions"
388
- msgstr "Hledat odběry"
389
-
390
- #: options/panel1.php:61
391
- #, php-format
392
- msgid ""
393
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
394
- "where the"
395
- msgstr ""
396
- "Můžete zobrazit <a href=\"%s\">přehled všech odběrů</a> nebo najít podle"
397
-
398
- #: options/panel1.php:64
399
- msgid "email"
400
- msgstr "Email"
401
-
402
- #: options/panel1.php:65
403
- msgid "post ID"
404
- msgstr "Příspěvek"
405
-
406
- #: options/panel1.php:66
407
- msgid "status"
408
- msgstr "status"
409
-
410
- #: options/panel1.php:69
411
- msgid "equals"
412
- msgstr "rovnající se"
413
-
414
- #: options/panel1.php:70
415
- msgid "contains"
416
- msgstr "obsahuje"
417
-
418
- #: options/panel1.php:71
419
- msgid "does not contain"
420
- msgstr "neobsahuje"
421
-
422
- #: options/panel1.php:72
423
- msgid "starts with"
424
- msgstr "začíná na"
425
-
426
- #: options/panel1.php:73
427
- msgid "ends with"
428
- msgstr "končí na"
429
-
430
- #: options/panel1.php:76
431
- msgid "results per page:"
432
- msgstr "výsledků na stránku"
433
-
434
- #: options/panel1.php:77
435
- msgid "Search"
436
- msgstr "Hledat"
437
-
438
- #: options/panel1.php:85
439
- msgid "Reverse the order by Post ID"
440
- msgstr "Obrátit pořadí dle ID příspěvku"
441
-
442
- #: options/panel1.php:86 options/panel1.php:87
443
- msgid "Reverse the order by Date/Time"
444
- msgstr "Obrátit pořadí dle data"
445
-
446
- #: options/panel1.php:89
447
- msgid "Post (ID)"
448
- msgstr "Post ID"
449
-
450
- #: options/panel1.php:92
451
- msgid "Search query:"
452
- msgstr "vyhledávací řetězec"
453
-
454
- #: options/panel1.php:92
455
- msgid "Rows:"
456
- msgstr "Řádky:"
457
-
458
- #: options/panel1.php:92
459
- msgid "of"
460
- msgstr "z"
461
-
462
- #: options/panel1.php:93 templates/author.php:56 templates/user.php:52
463
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
464
- msgstr ""
465
- "Legenda: Y = odebírat vše, R = odebírat pouze vlastní komentáře, C = "
466
- "neaktivní"
467
-
468
- #: options/panel1.php:102
469
- msgid "Date and Time"
470
- msgstr "Datum a čas"
471
-
472
- #: options/panel1.php:112
473
- msgid "Edit"
474
- msgstr "Editovat"
475
-
476
- #: options/panel1.php:113 templates/author.php:69 templates/user.php:63
477
- msgid "Delete"
478
- msgstr "Vymazat"
479
-
480
- #: options/panel1.php:121 templates/author.php:68 templates/user.php:62
481
- msgid "Action:"
482
- msgstr "Akce:"
483
-
484
- #: options/panel1.php:122
485
- msgid "Delete forever"
486
- msgstr "Vymazat navždy"
487
-
488
- #: options/panel1.php:123 templates/author.php:70 templates/user.php:64
489
- msgid "Suspend"
490
- msgstr "Pozastavit"
491
-
492
- #: options/panel1.php:124
493
- msgid "Activate and set to Y"
494
- msgstr "Nastavit a aktivovat na Y"
495
-
496
- #: options/panel1.php:125
497
- msgid "Activate and set to R"
498
- msgstr "Nastavit a aktivovat na R"
499
-
500
- #: options/panel1.php:126 templates/author.php:72 templates/user.php:66
501
- msgid "Activate"
502
- msgstr "Aktivovat"
503
-
504
- #: options/panel1.php:127 templates/author.php:73 templates/user.php:67
505
- msgid "Update subscriptions"
506
- msgstr "Aktualizovat odběry"
507
-
508
- #: options/panel1.php:131
509
- msgid "Sorry, no subscriptions match your search criteria."
510
- msgstr "Nenalezeny žádné odběry."
511
-
512
- #: options/panel2.php:11 options/panel2.php:39
513
- msgid "Enable default checkbox"
514
- msgstr "Povolit výchozí umístění volby odběru (checkbox nebo roletka)"
515
-
516
- #: options/panel2.php:12 options/panel2.php:46
517
- msgid "Checked by default"
518
- msgstr "Checkbox zaškrtnut ve výchozím stavu"
519
-
520
- #: options/panel2.php:13 options/panel2.php:53
521
- msgid "Advanced subscription"
522
- msgstr "Rozšířené odběry"
523
-
524
- #: options/panel2.php:14 options/panel2.php:60
525
- msgid "Custom inline style"
526
- msgstr "Změna css checkboxu"
527
-
528
- #: options/panel2.php:15 options/panel2.php:65
529
- msgid "Custom HTML"
530
- msgstr "Upravené HTML"
531
-
532
- #: options/panel2.php:17
533
- msgid "Checkbox label"
534
- msgstr "Popisek checkboxu"
535
-
536
- #: options/panel2.php:18 options/panel2.php:81
537
- msgid "Subscribed label"
538
- msgstr "Popisek checkboxu (odběratel)"
539
-
540
- #: options/panel2.php:19
541
- msgid "Awaiting label"
542
- msgstr "Popisek checkboxu (čekající)"
543
-
544
- #: options/panel2.php:20 options/panel2.php:91
545
- msgid "Author label"
546
- msgstr "Popisek checkboxu (autor)"
547
-
548
- #: options/panel2.php:25 options/panel3.php:26 options/panel4.php:23
549
- #: options/panel5.php:22
550
- msgid "Your settings have been successfully updated."
551
- msgstr "Vaše nastavení bylo úspěšně aktualizováno."
552
-
553
- #: options/panel2.php:28 options/panel3.php:29 options/panel4.php:26
554
- #: options/panel5.php:25
555
- msgid "There was an error updating the following fields:"
556
- msgstr "Chyba při aktualizaci těchto polí:"
557
-
558
- #: options/panel2.php:43
559
- msgid ""
560
- "Disable this option if you want to move the subscription checkbox to a "
561
- "different place on your page."
562
- msgstr ""
563
- "Vypněte tuto volbu, pokud chcete zaškrtávací políčko (checkbox, roletku) "
564
- "volby odběrů umístit na jiné místo na stránkách.\n"
565
- "<br/>( jak to udělat naleznete zde: https://wordpress.org/plugins/subscribe-"
566
- "to-comments-reloaded/faq )"
567
-
568
- #: options/panel2.php:50
569
- msgid "Decide if the checkbox should be checked by default or not."
570
- msgstr "Volba zda má být checkbox ve výchozím stavu žaškrtnut či nikoli."
571
-
572
- #: options/panel2.php:57
573
- msgid ""
574
- "Allow users to choose from different subscription types (all, replies only)."
575
- msgstr ""
576
- "Pokud zaškrtnete ANO, uživatelé uvidí roletku, kde si mohou vybrat zda "
577
- "odebírat všechna nebo jen upozornění na vlastní komentáře."
578
-
579
- #: options/panel2.php:62
580
- msgid "Custom inline CSS to add to the checkbox."
581
- msgstr "Uživatelský CSS inline styl který se přiřadí k checkboxu."
582
-
583
- #: options/panel2.php:67
584
- msgid ""
585
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
586
- "[checkbox_field], [checkbox_label]"
587
- msgstr ""
588
- "Můžete nadefinovat vlastní HTML kód který se použije pro checkbox. Povolené "
589
- "tagy: [checkbox_field], [checkbox_label]"
590
-
591
- #: options/panel2.php:72
592
- msgid "Messages for your visitors"
593
- msgstr "Popisky u roletky nebo checkboxu dle situace:"
594
-
595
- #: options/panel2.php:76
596
- msgid "Default label"
597
- msgstr "Popisek (výchozí)"
598
-
599
- #: options/panel2.php:78
600
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
601
- msgstr "Popisek checkboxu. Povelené tagy: [subscribe_link]"
602
-
603
- #: options/panel2.php:83
604
- msgid ""
605
- "Label shown to those who are already subscribed to a post. Allowed tag: "
606
- "[manager_link]"
607
- msgstr ""
608
- "Popisek který vidí ti, jenž se již přihlásili k odběru. Povolené tagy: "
609
- "[manager_link]"
610
-
611
- #: options/panel2.php:86
612
- msgid "Pending label"
613
- msgstr "Popisek (čekající)"
614
-
615
- #: options/panel2.php:88
616
- msgid ""
617
- "Label shown to those who are already subscribed, but haven't clicked on the "
618
- "confirmation link yet. Allowed tag: [manager_link]"
619
- msgstr ""
620
- "Popisek vidí ti, co se již přihlásili ,ale ještě neklikli v emailu na "
621
- "potvrzení. Povolené tagy: [manager_link]"
622
-
623
- #: options/panel2.php:93
624
- msgid ""
625
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
626
- msgstr "Popisek vidí autoři a administrátoři. Povolené tagy: [manager_link]"
627
-
628
- #: options/panel2.php:97 options/panel3.php:145 options/panel4.php:103
629
- #: options/panel5.php:83
630
- msgid "Save Changes"
631
- msgstr "Uložit změny"
632
-
633
- #: options/panel3.php:10 options/panel3.php:43
634
- msgid "Virtual Management Page"
635
- msgstr "Virtuální stránka správy"
636
-
637
- #: options/panel3.php:11 options/panel3.php:51
638
- msgid "Page title"
639
- msgstr "Titulek stránky"
640
-
641
- #: options/panel3.php:12 options/panel3.php:56
642
- msgid "Management URL"
643
- msgstr "Správa URL"
644
-
645
- #: options/panel3.php:13 options/panel3.php:63
646
- msgid "Custom HEAD meta"
647
- msgstr "Uživatelské HEAD meta tagy"
648
-
649
- #: options/panel3.php:15 options/panel3.php:74
650
- msgid "Request link"
651
- msgstr "Požadavek na odkaz pro odběr"
652
-
653
- #: options/panel3.php:16 options/panel3.php:84
654
- msgid "Request submitted"
655
- msgstr "Požadavek odeslán"
656
-
657
- #: options/panel3.php:17 options/panel3.php:94
658
- msgid "Subscribe without commenting"
659
- msgstr "Odebírat bez komentování"
660
-
661
- #: options/panel3.php:18 options/panel3.php:104
662
- msgid "Subscription processed"
663
- msgstr "Odběr zpracován"
664
-
665
- #: options/panel3.php:19 options/panel3.php:114
666
- msgid "Subscription processed (DCI)"
667
- msgstr "Odběr zpracován (DCI)"
668
-
669
- #: options/panel3.php:20 options/panel3.php:124
670
- msgid "Authors"
671
- msgstr "Autoři"
672
-
673
- #: options/panel3.php:21 options/panel3.php:134
674
- msgid "Users"
675
- msgstr "Uživatelé"
676
-
677
- #: options/panel3.php:45
678
- msgid "Enabled"
679
- msgstr "Povoleno"
680
-
681
- #: options/panel3.php:46
682
- msgid "Disabled"
683
- msgstr "Zakázáno"
684
-
685
- #: options/panel3.php:47
686
- #, fuzzy
687
- msgid ""
688
- "Disable the virtual management page if you need to create a <a href=\"http://"
689
- "behstant.com/subscribe-reloaded/realMgnPage.php\">real page</a> to make your "
690
- "theme happy."
691
- msgstr ""
692
- "Zakázat virtuální stránku pokud chcete vytvořit reálnou <a href=\"http://lab."
693
- "duechiacchiere.it/index.php?topic=71.0\">stránku</a> pro větší využitelnost "
694
- "vaší šablony."
695
-
696
- #: options/panel3.php:53
697
- msgid "Title of the page your visitors will use to manage their subscriptions."
698
- msgstr ""
699
- "Titulek stránky, kterou vaši odběratelé budou používat ke správě odběrů."
700
-
701
- #: options/panel3.php:58
702
- msgid ""
703
- "The permalink for your management page (something like <code>/manage-"
704
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
705
- "b> actually exist in the system, but its link must follow your permalink "
706
- "structure."
707
- msgstr ""
708
- "Permalink k vaší virtuální stránce správy odběrů (například <code>/manage-"
709
- "subscriptions</code> nebo <code>/?page_id=345</code>). Tato stránka "
710
- "fyzicky(není vytvořena jako soubor) neexistuje v systému, avšak aby "
711
- "funguvala musí být podle pravidel struktury vašich permalinků."
712
-
713
- #: options/panel3.php:60
714
- msgid ""
715
- "Warning: it looks like the value you are using may be incompatible with your "
716
- "permalink structure"
717
- msgstr ""
718
- "Varování: vypadá to že vámi zadaná hodnota není kompatibilní se strukturou "
719
- "vašich permalinků"
720
-
721
- #: options/panel3.php:65
722
- msgid ""
723
- "Specify your custom HTML code to be added to the HEAD section of the page. "
724
- "Use <strong>single</strong> quotes for values."
725
- msgstr ""
726
- "Specifikujte HTML kód který se přidá do sekce HEAD stránky. Pro hodnoty "
727
- "použijte <strong>jednoduché</strong> uvozovky <code>'příklad'</code>."
728
-
729
- #: options/panel3.php:70 options/panel4.php:50
730
- msgid "Messages"
731
- msgstr "Zprávy"
732
-
733
- #: options/panel3.php:75 options/panel3.php:85 options/panel3.php:95
734
- #: options/panel3.php:105 options/panel3.php:115 options/panel3.php:125
735
- #: options/panel3.php:135 options/panel4.php:61 options/panel4.php:77
736
- #: options/panel4.php:93
737
- msgid "Bold"
738
- msgstr "Tučné"
739
-
740
- #: options/panel3.php:76 options/panel3.php:86 options/panel3.php:96
741
- #: options/panel3.php:106 options/panel3.php:116 options/panel3.php:126
742
- #: options/panel3.php:136 options/panel4.php:62 options/panel4.php:78
743
- #: options/panel4.php:94
744
- msgid "Italic"
745
- msgstr "Kurzíva"
746
-
747
- #: options/panel3.php:77 options/panel3.php:87 options/panel3.php:97
748
- #: options/panel3.php:107 options/panel3.php:117 options/panel3.php:127
749
- #: options/panel3.php:137 options/panel4.php:63 options/panel4.php:79
750
- #: options/panel4.php:95
751
- msgid "Link"
752
- msgstr "Odkaz"
753
-
754
- #: options/panel3.php:78 options/panel3.php:88 options/panel3.php:98
755
- #: options/panel3.php:108 options/panel3.php:118 options/panel3.php:128
756
- #: options/panel3.php:138 options/panel4.php:64 options/panel4.php:80
757
- #: options/panel4.php:96
758
- msgid "Image"
759
- msgstr "Obrázek"
760
-
761
- #: options/panel3.php:81
762
- msgid "Text shown to those who request to manage their subscriptions."
763
- msgstr "Text co uvidí ti, kteří požádali o správu jejich odběrů."
764
-
765
- #: options/panel3.php:91
766
- msgid ""
767
- "Thank you note shown after the request here above has been processed. "
768
- "Allowed tags: [post_title], [post_permalink]"
769
- msgstr ""
770
- "Text zobrazený po zpracování výše uvedeného požadavku. Povolené tagy: "
771
- "[post_title], [post_permalink]"
772
-
773
- #: options/panel3.php:101
774
- msgid ""
775
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
776
- "[post_title], [post_permalink]"
777
- msgstr ""
778
- "Text zobrazen těm, co chtějí odebírat upozornění bez komentování. Povolené "
779
- "tagy: [post_title], [post_permalink]"
780
-
781
- #: options/panel3.php:111
782
- msgid ""
783
- "Thank you note shown after the subscription request has been processed "
784
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
785
- msgstr ""
786
- "Text zobrazen po zpracování požadavku na odběr (bez dvojí kontroly emailu). "
787
- "Povolené tagy: [post_title], [post_permalink]"
788
-
789
- #: options/panel3.php:121
790
- msgid ""
791
- "Thank you note shown after the subscription request has been processed "
792
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
793
- msgstr ""
794
- "Text zobrazen po zpracování požadavku na odběr (s dvojí kontrolou emailu). "
795
- "Povolené tagy: [post_title], [post_permalink]"
796
-
797
- #: options/panel3.php:131
798
- msgid "Introductory text for the authors' management page."
799
- msgstr "Text pro stránku správy odběrů autorů."
800
-
801
- #: options/panel3.php:141
802
- msgid "Introductory text for the users' management page."
803
- msgstr "Text pro stránku správy odběrů uživatelů."
804
-
805
- #: options/panel4.php:11 options/panel4.php:38
806
- msgid "Sender name"
807
- msgstr "Jméno odesílatele"
808
-
809
- #: options/panel4.php:12 options/panel4.php:43
810
- msgid "Sender email address"
811
- msgstr "Email odesílatele"
812
-
813
- #: options/panel4.php:13 options/panel4.php:54
814
- msgid "Notification subject"
815
- msgstr "Předmět emailu upozornění"
816
-
817
- #: options/panel4.php:14 options/panel4.php:59
818
- msgid "Notification message"
819
- msgstr "Text emailu upozornění"
820
-
821
- #: options/panel4.php:15 options/panel4.php:70
822
- msgid "Double check subject"
823
- msgstr "Předmět emailu upozornění při dvojí kontrole emailu"
824
-
825
- #: options/panel4.php:16 options/panel4.php:75
826
- msgid "Double check message"
827
- msgstr "Text emailu upozornění při dvojí kontrole emailu"
828
-
829
- #: options/panel4.php:17 options/panel4.php:86
830
- msgid "Management subject"
831
- msgstr "Předmět emailu o odkazu na správu odběrů"
832
-
833
- #: options/panel4.php:18 options/panel4.php:91
834
- msgid "Management message"
835
- msgstr "Text emailu s odkazem na správu odběrů"
836
-
837
- #: options/panel4.php:40
838
- msgid ""
839
- "Name to use for the \"from\" field when sending a new notification to the "
840
- "user."
841
- msgstr ""
842
- "Jméno použité jako \"Od\" v emailu pro uživatele přihlášeného k odběru."
843
-
844
- #: options/panel4.php:45
845
- msgid ""
846
- "Email address to use for the \"from\" field when sending a new notification "
847
- "to the user."
848
- msgstr ""
849
- "Emailová adresa použitá jako \"Od\" v emailu pro uživatele přihlášeného k "
850
- "odběru."
851
-
852
- #: options/panel4.php:56
853
- msgid "Subject of the notification email. Allowed tag: [post_title]"
854
- msgstr "Předmět emailu s upozorněním. Povolené tagy: [post_title]"
855
-
856
- #: options/panel4.php:67
857
- msgid ""
858
- "Content of the notification email. Allowed tags: [post_title], "
859
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
860
- "[manager_link]"
861
- msgstr ""
862
- "Obsah emailu s upozorněním. Povolené tagy: [post_title], "
863
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
864
- "[manager_link]"
865
-
866
- #: options/panel4.php:72
867
- msgid "Subject of the confirmation email. Allowed tag: [post_title]"
868
- msgstr "Předmět potvrzujícího emailu. Povolené tagy: [post_title]"
869
-
870
- #: options/panel4.php:83
871
- msgid ""
872
- "Content of the confirmation email. Allowed tags: [post_permalink], "
873
- "[confirm_link], [post_title], [manager_link]"
874
- msgstr ""
875
- "Obsah potvrzujícího emailu. Povolené tagy: [post_permalink], [confirm_link], "
876
- "[post_title], [manager_link]"
877
-
878
- #: options/panel4.php:88
879
- msgid ""
880
- "Subject of the mail sent to those who request to access their management "
881
- "page. Allowed tag: [blog_name]"
882
- msgstr ""
883
- "Předmět emailu s odkazem na stránku správy odběrů. Povolené tagy: [blog_name]"
884
-
885
- #: options/panel4.php:99
886
- msgid ""
887
- "Content of the management email. Allowed tags: [blog_name], [manager_link]"
888
- msgstr ""
889
- "Obsah emailu s odkazem na stránku správy odběrů. Povolené tagy: [blog_name], "
890
- "[manager_link]"
891
-
892
- #: options/panel5.php:11 options/panel5.php:35
893
- msgid "Autopurge requests"
894
- msgstr "Autočištění požadavků"
895
-
896
- #: options/panel5.php:12 options/panel5.php:40
897
- msgid "Enable double check"
898
- msgstr "Povolit dvojí kontrolu emailu"
899
-
900
- #: options/panel5.php:13
901
- msgid "Notify authors"
902
- msgstr "Upozornit autory"
903
-
904
- #: options/panel5.php:14 options/panel5.php:54
905
- msgid "Enable HTML emails"
906
- msgstr "Povolit HTML formát emailů"
907
-
908
- #: options/panel5.php:15
909
- msgid "Send trackbacks"
910
- msgstr "Odeslat trackacky"
911
-
912
- #: options/panel5.php:16 options/panel5.php:47
913
- msgid "Notify admin"
914
- msgstr "Upozornit administrátora"
915
-
916
- #: options/panel5.php:17 options/panel5.php:75
917
- msgid "Let admin subscribe"
918
- msgstr "Povolit odběry pro administrátora"
919
-
920
- #: options/panel5.php:36
921
- msgid "days"
922
- msgstr "dní"
923
-
924
- #: options/panel5.php:37
925
- msgid ""
926
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
927
- "this feature."
928
- msgstr ""
929
- "Vymazat požadavky na odběry (neschválené) po X dnech. 0 znamená vypnuto. "
930
-
931
- #: options/panel5.php:44
932
- msgid ""
933
- "Send a notification email to confirm the subscription (to avoid addresses "
934
- "misuse)."
935
- msgstr ""
936
- "Zašle upozorňovací email pro potvrzení odběru aby se zamezilo zneužití adres."
937
-
938
- #: options/panel5.php:51
939
- msgid "Notify the administrator when a new comment is posted."
940
- msgstr "Upozorní administrátora na nový komentář."
941
-
942
- #: options/panel5.php:58
943
- msgid ""
944
- "If enabled, will send email messages with content-type = text/html instead "
945
- "of text/plain"
946
- msgstr ""
947
- "Pokud je povoleno, budou emaily zasílány ve formátu <code>content-type = "
948
- "text/html</code> namísto <code>content-type = text/plain</code>"
949
-
950
- #: options/panel5.php:61
951
- msgid "Process trackbacks"
952
- msgstr "Zpracovat trackbacky"
953
-
954
- #: options/panel5.php:65
955
- msgid ""
956
- "Notify users when a new trackback or pingback is added to the discussion."
957
- msgstr ""
958
- "Upozornit odběratele pokud je do diskuse zapojen nový trackback nebo "
959
- "pingback."
960
-
961
- #: options/panel5.php:68
962
- msgid "Track all subscriptions"
963
- msgstr "Sledovat všechny odběry"
964
-
965
- #: options/panel5.php:72
966
- msgid "Notify the administrator when users subscribe without commenting."
967
- msgstr ""
968
- "Upozornit administrátora pokud se uživatel přihlásí k odběrům a sám "
969
- "nekomentuje."
970
-
971
- #: options/panel5.php:79
972
- msgid "Let the administrator subscribe to comments when logged in."
973
- msgstr "Povolit odběry pro administrátora pokud je přihlášen."
974
-
975
- #: options/panel6.php:8
976
- msgid "Support the author"
977
- msgstr "Podpořte autora"
978
-
979
- #: options/panel6.php:16
980
- msgid ""
981
- "How valuable is the feature offered by this plugin to your visitors? "
982
- "Subscribe to Comments Reloaded is and will always be free, but consider "
983
- "supporting the author if this plugin made your web site better, especially "
984
- "if you are making money out of it. Any donation received will be reinvested "
985
- "in the development of Subscribe to Comments Reloaded, and to buy some food "
986
- "for my hungry family."
987
- msgstr ""
988
- "Jak si ceníte tohoto pluginu? Plugin Subscribe to Comments Reloaded je a "
989
- "bude vždy zadarmo avšak zvažte přispění pokud tento plugin váš web vylepšil, "
990
- "zvláště pak pokud je váš web výdělečný.Veškeré příspěvky budou reinvestovány "
991
- "do vývoje pluginu a jídla pro moji rodinu."
992
-
993
- #: options/panel6.php:18
994
- msgid "Don't want to donate? You can still help"
995
- msgstr "Nechcete zrovna přispět penězi? Stále můžete pomoci!"
996
-
997
- #: options/panel6.php:19
998
- msgid ""
999
- "If you don't want to donate money, please consider blogging about my plugin "
1000
- "with a link to the plugin's page. Please let your readers know what makes "
1001
- "your blog better. You can also contribute donating your time: do not "
1002
- "hesitate to send me bug reports, your localization files, ideas on how to "
1003
- "improve Subscribe to Comments Reloaded and so on. Whatever you do, thanks "
1004
- "for using my plugin!"
1005
- msgstr ""
1006
- "Pokud nechcete přispět penězi, máte pořád možnost přispět tím, že budete o "
1007
- "mém pluginu blogovat a odakážete na stránku pluginu. Rozšíříte tak povědomí "
1008
- "o pluginu.Také můžete přispět i vaším časem: zašlete mi reporty o chybách, "
1009
- "můžete také plugin přeložit a nebo také zaslat nápady na jeho vylepšení. Ať "
1010
- "už uděláte cokoli děkuji za to že používáte můj plugin!"
1011
-
1012
- #: options/panel6.php:21
1013
- msgid "Vote and show your appreciation"
1014
- msgstr "Hlasovat pro plugin"
1015
-
1016
- #: options/panel6.php:22
1017
- msgid ""
1018
- "Tell other people if Subscribe to Comments Reloaded works for you and how "
1019
- "good it is. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
1020
- "comments-reloaded/\">Rate it</a> on its Plugin Directory page."
1021
- msgstr ""
1022
- "Sdílejte pokud se vám plugin Subscribe to Comments Reloaded líbí. <a href="
1023
- "\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
1024
- "\">Ohodnotit plugin</a> na stránce pluginu."
1025
-
1026
- #: options/panel6.php:24
1027
- msgid "Sponsor's Corner"
1028
- msgstr "Sponzorský koutek"
1029
-
1030
- #: options/panel6.php:25
1031
- msgid ""
1032
- "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1033
- "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1034
- msgstr ""
1035
- "Pokud chcete být sponzorem pluginu <a href='http://behstant.com/negocio/"
1036
- "contact.php' target='_blank'>kontaktujte mne</a>."
1037
-
1038
- #: templates/author.php:55
1039
- msgid "Title"
1040
- msgstr "Titulek"
1041
-
1042
- #: templates/author.php:66 templates/user.php:60
1043
- msgid "Select all"
1044
- msgstr "Vybrat vše"
1045
-
1046
- #: templates/author.php:67 templates/user.php:61
1047
- msgid "Invert selection"
1048
- msgstr "Obrátit výběr"
1049
-
1050
- #: templates/author.php:71
1051
- msgid "Set to Y"
1052
- msgstr "Nastavit na Y"
1053
-
1054
- #: templates/author.php:77 templates/user.php:71
1055
- msgid "No subscriptions match your search criteria."
1056
- msgstr "Žádné odběry."
1057
-
1058
- #: templates/request-management-link.php:68 templates/subscribe.php:89
1059
- msgid "Send"
1060
- msgstr "Odeslat"
1061
-
1062
- #: templates/subscribe.php:42 templates/subscribe.php:43
1063
- msgid "New subscription to"
1064
- msgstr "Nový odběr k"
1065
-
1066
- #: templates/subscribe.php:43
1067
- msgid "User:"
1068
- msgstr "Uživatel:"
1069
-
1070
- msgid ""
1071
- "Update the email address associated to a specific subscription (by post ID)."
1072
- msgstr ""
1073
- "Aktualizovat emailovou adresu asociovanou se specifickým odběrem (dle post "
1074
- "ID)"
1075
-
1076
- msgid ""
1077
- "Change the status of an email address or permanently delete all its "
1078
- "subscriptions."
1079
- msgstr ""
1080
- "Změna statusu(asi typ odběru?) emailové adresy nebo vymazat všechny odběry "
1081
- "této adresy"
1082
-
1083
- msgid ""
1084
- "You can \"mass update\" all the occurrences of a given email address (exact "
1085
- "matches only)."
1086
- msgstr ""
1087
-
1088
- msgid "Engine"
1089
- msgstr ""
1090
-
1091
- msgid "Approximate Overhead"
1092
- msgstr ""
1093
-
1094
- #, fuzzy
1095
- #~ msgid "Management Page ID"
1096
- #~ msgstr "Nastavení"
1097
-
1098
- #, fuzzy
1099
- #~ msgid "Management page"
1100
- #~ msgstr "Nastavení"
1101
-
1102
- #~ msgid "Awaiting confirmation"
1103
- #~ msgstr "Čeká na schválení"
1104
-
1105
- #, fuzzy
1106
- #~ msgid "Stats"
1107
- #~ msgstr "Status"
1108
-
1109
- #, fuzzy
1110
- #~ msgid "Other Messages"
1111
- #~ msgstr "Zprávy"
1112
-
1113
- #, fuzzy
1114
- #~ msgid "Support"
1115
- #~ msgstr "fórum podpory"
1116
-
1117
- #, fuzzy
1118
- #~ msgid "The status has been successfully updated. Rows affected:"
1119
- #~ msgstr "Vaše nastavení bylo úspěšně aktualizováno."
1120
-
1121
- #, fuzzy
1122
- #~ msgid "PID"
1123
- #~ msgstr "Příspěvek"
1124
-
1125
- #~ msgid "Change status"
1126
- #~ msgstr "Změnit status"
1127
-
1128
- #~ msgid "Resume"
1129
- #~ msgstr "Obnovit"
1130
-
1131
- #~ msgid "Update email address"
1132
- #~ msgstr "Aktualizovat emailovou adresu"
1133
-
1134
- #~ msgid "Search email address"
1135
- #~ msgstr "Hledat email"
1136
-
1137
- #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1138
- #~ msgstr "Legenda: Y-odebíráno, N-neodebíráno, C- čeká na schválení"
1139
-
1140
- #, fuzzy
1141
- #~ msgid "StCR table has been successfully optimized."
1142
- #~ msgstr "Vaše nastavení bylo úspěšně aktualizováno."
1143
-
1144
- #~ msgid "Filter by date"
1145
- #~ msgstr "Filtrovat dle data"
1146
-
1147
- #~ msgid "Month"
1148
- #~ msgstr "Měsíc"
1149
-
1150
- #~ msgid "Year"
1151
- #~ msgstr "Rok"
1152
-
1153
- #~ msgid "No data to display"
1154
- #~ msgstr "Nic k zobrazení"
1155
-
1156
- #~ msgid "optimize"
1157
- #~ msgstr "Optimalizace"
1158
-
1159
- #~ msgid "Database"
1160
- #~ msgstr "Databáze"
1161
-
1162
- #~ msgid "Created on"
1163
- #~ msgstr "Vytvořeno"
1164
-
1165
- #~ msgid "Index length"
1166
- #~ msgstr "Délka indexu"
1167
-
1168
- #~ msgid "Records"
1169
- #~ msgstr "Záznamy"
1170
-
1171
- #~ msgid "Average Record Length"
1172
- #~ msgstr "Průměrná délka záznamu"
1173
-
1174
- #~ msgid "Analysis for"
1175
- #~ msgstr "Anylýza pro"
1176
-
1177
- #~ msgid "Most active users"
1178
- #~ msgstr "Nejaktivnější uživatelé"
1179
-
1180
- #~ msgid "Popular posts"
1181
- #~ msgstr "Populární články"
1182
-
1183
- #~ msgid "Custom CSS Class"
1184
- #~ msgstr "Změna CSS class"
1185
-
1186
- #~ msgid ""
1187
- #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1188
- #~ "its style."
1189
- #~ msgstr ""
1190
- #~ "Můžete změnit css třídu checkboxu, pak si ho můžete stylovat dle svého. "
1191
- #~ "(což můžete i tak pokud víte jak)"
1192
-
1193
- #~ msgid "Official Sponsors"
1194
- #~ msgstr "Oficiální sponzoři"
1195
-
1196
- #~ msgid "Subscriptions have been successfully updated."
1197
- #~ msgstr "Odběry byly úspěšně aktualizovány."
1198
-
1199
- #~ msgid "Sorry, no subscriptions found."
1200
- #~ msgstr "Žádné odběry nenalezeny."
1201
-
1202
- #~ msgid "All the subscriptions have been successfully updated."
1203
- #~ msgstr "Všechny odběry byly úspěšně aktualizovány."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: subscribe-reloaded\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2011-07-25 16:01-0500\n"
6
+ "PO-Revision-Date: 2016-01-08 04:08-0600\n"
7
+ "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: cs_CZ\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 1.5.4\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
16
+
17
+ #: subscribe-to-comments-reloaded.php:41
18
+ #: subscribe-to-comments-reloaded.php:248
19
+ msgid ""
20
+ "Your subscription to this post needs to be confirmed. <a "
21
+ "href='[manager_link]'>Manage your subscriptions</a>."
22
+ msgstr ""
23
+ "Vaše žádost k odběru upozornění na nové komentáře čeká na schválení. <a "
24
+ "href='[manager_link]'>Upravit vaše žádosti</a>."
25
+
26
+ #: subscribe-to-comments-reloaded.php:46
27
+ #: subscribe-to-comments-reloaded.php:247
28
+ msgid ""
29
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
30
+ "subscriptions."
31
+ msgstr ""
32
+ "Jste přihlášen k odběru upozornění na nové komentáře k tomuto článku. Můžete "
33
+ "<a href='[manager_link]'>upravit</a> vaše odběry."
34
+
35
+ #: subscribe-to-comments-reloaded.php:53
36
+ #: subscribe-to-comments-reloaded.php:249
37
+ msgid ""
38
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
39
+ msgstr ""
40
+ "<a href='[manager_link]'>Zde můžete spravovat</a> odběry upozornění na nové "
41
+ "komentáře k tomuto článku."
42
+
43
+ #: subscribe-to-comments-reloaded.php:58
44
+ #: subscribe-to-comments-reloaded.php:244
45
+ msgid ""
46
+ "Notify me of followup comments via e-mail. You can also <a "
47
+ "href='[subscribe_link]'>subscribe</a> without commenting."
48
+ msgstr ""
49
+ "<span class='comment_label_afterselect'> upozornění na nové komentáře k "
50
+ "tomuto článku.</span> <span class='comment_label_nocom'> Chcete dostávat "
51
+ "upozornění na nové komentáře a sami článek nekomentovat? <a "
52
+ "href='[subscribe_link]'>Přihlaste se k odběru</a>.</span>"
53
+
54
+ #: subscribe-to-comments-reloaded.php:67
55
+ msgid "Don't subscribe"
56
+ msgstr "Neodebírat"
57
+
58
+ #: subscribe-to-comments-reloaded.php:68
59
+ msgid "All"
60
+ msgstr "Odebírat (na všechny komentáře)"
61
+
62
+ #: subscribe-to-comments-reloaded.php:69 templates/user.php:65
63
+ msgid "Replies to my comments"
64
+ msgstr "Odebírat (jen na moje komentáře)"
65
+
66
+ #: subscribe-to-comments-reloaded.php:70
67
+ msgid "Daily digest"
68
+ msgstr "Denní přehled"
69
+
70
+ #: subscribe-to-comments-reloaded.php:221 options/index.php:41
71
+ msgid "Manage subscriptions"
72
+ msgstr "Správa odběrů"
73
+
74
+ #: subscribe-to-comments-reloaded.php:222
75
+ msgid ""
76
+ "To manage your subscriptions, please enter your email address here below. We "
77
+ "will send you a message containing the link to access your personal "
78
+ "management page."
79
+ msgstr ""
80
+ "Pro správu vašich upozornění zadejte e-mailovou adresu do pole níže. Bude "
81
+ "vám zaslán editační odkaz."
82
+
83
+ #: subscribe-to-comments-reloaded.php:223
84
+ msgid ""
85
+ "Thank you for using our subscription service. Your request has been "
86
+ "completed, and you should receive an email with the management link in a few "
87
+ "minutes."
88
+ msgstr ""
89
+ "Váš požadavek byl zpracován. V nejbližší době by jste měli obdržet odkaz v "
90
+ "emailu."
91
+
92
+ #: subscribe-to-comments-reloaded.php:224
93
+ msgid ""
94
+ "You can follow the discussion on <strong>[post_title]</strong> without "
95
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
96
+ "form here below and you're all set."
97
+ msgstr ""
98
+ "Zasílat upozornění na nové komentáře k článku » [post_title] « .\n"
99
+ " E-mailovou adresu vyplňte do pole níže. Bude vám zaslán potvrzovací odkaz. "
100
+
101
+ #: subscribe-to-comments-reloaded.php:225
102
+ msgid ""
103
+ "Thank you for using our subscription service. Your request has been "
104
+ "completed. You will receive a notification email every time a new comment to "
105
+ "this article is approved and posted by the administrator."
106
+ msgstr ""
107
+ "Váš požadavek byl zpracován. Váš odběr upozornění na nové komentáře k tomuto "
108
+ "článku je aktivní."
109
+
110
+ #: subscribe-to-comments-reloaded.php:226
111
+ msgid ""
112
+ "Thank you for using our subscription service. In order to confirm your "
113
+ "request, please check your email for the verification message and follow the "
114
+ "instructions."
115
+ msgstr ""
116
+ "Váš požadavek byl zpracován. Pro potvrzení požadavku naleznete ve vašem "
117
+ "emailu potvrzovací odkaz."
118
+
119
+ #: subscribe-to-comments-reloaded.php:227
120
+ msgid ""
121
+ "In order to cancel or suspend one or more notifications, select the "
122
+ "corresponding checkbox(es) and click on the button at the end of the list."
123
+ msgstr ""
124
+ "Pro editaci upozornění vyberte odpovídající odběr, zaškrtněte volbu a "
125
+ "potvrďte."
126
+
127
+ #: subscribe-to-comments-reloaded.php:228
128
+ msgid ""
129
+ "In order to cancel or suspend one or more notifications, select the "
130
+ "corresponding checkbox(es) and click on the button at the end of the list. "
131
+ "You are currently subscribed to:"
132
+ msgstr ""
133
+ "Aktuálně odebíráte upozornění na nové komentáře k těmto článkům (pokud je "
134
+ "chcete změnit či zrušit zaškrtněte volbu a klikntěte na tlačítko "
135
+ "aktualizovat, pokud změnu nechcete pokračujte třeba přes menu):"
136
+
137
+ #: subscribe-to-comments-reloaded.php:242
138
+ msgid "There is a new comment to [post_title]"
139
+ msgstr "Nový komentář k článku: [post_title]"
140
+
141
+ #: subscribe-to-comments-reloaded.php:243
142
+ msgid ""
143
+ "There is a new comment to [post_title].\n"
144
+ "Comment Link: [comment_permalink]\n"
145
+ "Author: [comment_author]\n"
146
+ "Comment:\n"
147
+ "[comment_content]\n"
148
+ "Permalink: [post_permalink]\n"
149
+ "Manage your subscriptions: [manager_link]"
150
+ msgstr ""
151
+ "Nový komentář k článku: [post_title].\n"
152
+ "Odkaz na komentář: [comment_permalink]\n"
153
+ "Autor: [comment_author]\n"
154
+ "Znění komentáře:\n"
155
+ "[comment_content]\n"
156
+ "Odkaz na článek: [post_permalink]\n"
157
+ "Upravit odběry upozornění: [manager_link]\n"
158
+ "\t\t\t\t\t"
159
+
160
+ #: subscribe-to-comments-reloaded.php:250
161
+ msgid "Please confirm your subscription to [post_title]"
162
+ msgstr "Potvrďte odběr upozornění na nové komentáře k článku [post_title]"
163
+
164
+ #: subscribe-to-comments-reloaded.php:251
165
+ msgid ""
166
+ "You have requested to be notified every time a new comment is added to:\n"
167
+ "[post_permalink]\n"
168
+ "\n"
169
+ "Please confirm your request by clicking on this link:\n"
170
+ "[confirm_link]"
171
+ msgstr ""
172
+ "Dobrý den, přihlásili jste se k odběru upozornění na nové komentáře k "
173
+ "článku: \n"
174
+ " [post_permalink] .\n"
175
+ "\n"
176
+ "Požadavek potvrďte prosím kliknutím na odkaz:\n"
177
+ "[confirm_link] "
178
+
179
+ #: subscribe-to-comments-reloaded.php:252
180
+ msgid "Manage your subscriptions on [blog_name]"
181
+ msgstr "Upravit odběr upozornění na nové komentáře z [blog_name]"
182
+
183
+ #: subscribe-to-comments-reloaded.php:253
184
+ msgid ""
185
+ "You have requested to manage your subscriptions to the articles on "
186
+ "[blog_name]. Follow this link to access your personal page:\n"
187
+ "[manager_link]"
188
+ msgstr ""
189
+ "Váš požadavek spravovat odběr upozornění na nové komentáře článků na "
190
+ "[blog_name] byl zpracován. Klikněte prosím zde pro úpravy:\n"
191
+ " [manager_link]"
192
+
193
+ #: subscribe-to-comments-reloaded.php:986
194
+ msgid "Subscribed"
195
+ msgstr "Odebíráno"
196
+
197
+ #: subscribe-to-comments-reloaded.php:1000 options/panel2.php:41
198
+ #: options/panel2.php:48 options/panel2.php:55 options/panel5.php:42
199
+ #: options/panel5.php:49 options/panel5.php:56 options/panel5.php:63
200
+ #: options/panel5.php:70 options/panel5.php:77
201
+ msgid "Yes"
202
+ msgstr "Ano"
203
+
204
+ #: subscribe-to-comments-reloaded.php:1002
205
+ msgid "Replies"
206
+ msgstr "Reakce"
207
+
208
+ #: subscribe-to-comments-reloaded.php:1004
209
+ msgid "Digest"
210
+ msgstr "Přehled"
211
+
212
+ #: subscribe-to-comments-reloaded.php:1006
213
+ msgid "Pending"
214
+ msgstr "Čekající"
215
+
216
+ #: subscribe-to-comments-reloaded.php:1007 options/panel2.php:42
217
+ #: options/panel2.php:49 options/panel2.php:56 options/panel5.php:43
218
+ #: options/panel5.php:50 options/panel5.php:57 options/panel5.php:64
219
+ #: options/panel5.php:71 options/panel5.php:78
220
+ msgid "No"
221
+ msgstr "Ne"
222
+
223
+ #: subscribe-to-comments-reloaded.php:1016
224
+ msgid "Subscriptions"
225
+ msgstr "Odběry "
226
+
227
+ #: subscribe-to-comments-reloaded.php:1039
228
+ msgid ""
229
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
230
+ msgstr "Potřebujete pomoci? Navštivte oficiální"
231
+
232
+ #: subscribe-to-comments-reloaded.php:1039
233
+ msgid "support forum"
234
+ msgstr "fórum podpory"
235
+
236
+ #: subscribe-to-comments-reloaded.php:1040
237
+ msgid "Feeling generous?"
238
+ msgstr "Chcete být štědrý?"
239
+
240
+ #: subscribe-to-comments-reloaded.php:1040
241
+ msgid "Donate a few bucks!"
242
+ msgstr "Přispět několika chechtáky!"
243
+
244
+ #: options/index.php:42
245
+ msgid "Comment Form"
246
+ msgstr "Formulář komentářů"
247
+
248
+ #: options/index.php:43
249
+ msgid "Management Page"
250
+ msgstr "Nastavení"
251
+
252
+ #: options/index.php:44
253
+ msgid "Notifications"
254
+ msgstr "Oznámení"
255
+
256
+ #: options/index.php:45 options/panel2.php:35 options/panel3.php:39
257
+ #: options/panel4.php:34
258
+ msgid "Options"
259
+ msgstr "Možnosti"
260
+
261
+ #: options/index.php:46
262
+ msgid "You can help"
263
+ msgstr "Jak nám pomoci?"
264
+
265
+ #: options/panel1-business-logic.php:18
266
+ msgid "Subscription added."
267
+ msgstr "Odběr přidán."
268
+
269
+ #: options/panel1-business-logic.php:30
270
+ msgid "Subscriptions updated."
271
+ msgstr "Odběry aktualizovány."
272
+
273
+ #: options/panel1-business-logic.php:39
274
+ msgid "Subscription deleted."
275
+ msgstr "Odběr vymazán."
276
+
277
+ #: options/panel1-business-logic.php:54 templates/author.php:22
278
+ #: templates/user.php:22
279
+ msgid "Subscriptions deleted:"
280
+ msgstr "Vymazáno odběrů:"
281
+
282
+ #: options/panel1-business-logic.php:58 templates/author.php:26
283
+ #: templates/user.php:26
284
+ msgid "Subscriptions suspended:"
285
+ msgstr "Odběry pozastaveny."
286
+
287
+ #: options/panel1-business-logic.php:62 templates/author.php:30
288
+ #: templates/user.php:30
289
+ msgid "Subscriptions activated:"
290
+ msgstr "Odběry aktivovány."
291
+
292
+ #: options/panel1-business-logic.php:66 options/panel1-business-logic.php:70
293
+ #: templates/author.php:34 templates/author.php:38 templates/user.php:34
294
+ msgid "Subscriptions updated:"
295
+ msgstr "Odběry aktualizovány."
296
+
297
+ #: options/panel1-business-logic.php:94
298
+ msgid "&laquo; Previous"
299
+ msgstr "&laquo; Předchozí"
300
+
301
+ #: options/panel1-business-logic.php:98
302
+ msgid "Next &raquo;"
303
+ msgstr "další &raquo;"
304
+
305
+ #: options/panel1-edit-subscription.php:8
306
+ msgid "Update Subscription"
307
+ msgstr "Aktualizovat odběry."
308
+
309
+ #: options/panel1-edit-subscription.php:10 options/panel1.php:19
310
+ #: options/panel1.php:81 options/panel1.php:113 templates/author.php:50
311
+ #: templates/user.php:46
312
+ msgid ""
313
+ "Please remember: this operation cannot be undone. Are you sure you want to "
314
+ "proceed?"
315
+ msgstr "Tuto akci nelze vzít zpět, provést?"
316
+
317
+ #: options/panel1-edit-subscription.php:12
318
+ msgid "Post:"
319
+ msgstr "Příspěvek:"
320
+
321
+ #: options/panel1-edit-subscription.php:13 options/panel1.php:21
322
+ msgid "From"
323
+ msgstr "Od"
324
+
325
+ #: options/panel1-edit-subscription.php:14 options/panel1.php:22
326
+ msgid "To"
327
+ msgstr "Komu"
328
+
329
+ #: options/panel1-edit-subscription.php:15 options/panel1.php:26
330
+ #: options/panel1.php:45 options/panel1.php:103
331
+ msgid "Status"
332
+ msgstr "Status"
333
+
334
+ #: options/panel1-edit-subscription.php:17 options/panel1.php:28
335
+ msgid "Keep unchanged"
336
+ msgstr "Neměnit"
337
+
338
+ #: options/panel1-edit-subscription.php:18 options/panel1.php:29
339
+ #: options/panel1.php:47
340
+ msgid "Active"
341
+ msgstr "Aktivní"
342
+
343
+ #: options/panel1-edit-subscription.php:19 options/panel1.php:30
344
+ #: options/panel1.php:48
345
+ msgid "Replies only"
346
+ msgstr "Pouze reakce"
347
+
348
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:31
349
+ msgid "Suspended"
350
+ msgstr "Pozastaveno"
351
+
352
+ #: options/panel1-edit-subscription.php:21 options/panel1.php:32
353
+ msgid "Update"
354
+ msgstr "Aktualizovat "
355
+
356
+ #: options/panel1.php:17
357
+ msgid "Mass Update Subscriptions"
358
+ msgstr "Hromadné úpravy"
359
+
360
+ #: options/panel1.php:23 options/panel1.php:24 options/panel1.php:25
361
+ msgid "optional"
362
+ msgstr "volitelné"
363
+
364
+ #: options/panel1.php:39
365
+ msgid "Add New Subscription"
366
+ msgstr "Přidat nový odběr (podle ID článku)"
367
+
368
+ #: options/panel1.php:43
369
+ msgid "Post ID"
370
+ msgstr "Příspěvek"
371
+
372
+ #: options/panel1.php:44 options/panel1.php:90
373
+ #: templates/request-management-link.php:65 templates/subscribe.php:87
374
+ #: templates/user.php:51
375
+ msgid "Email"
376
+ msgstr "E-mail"
377
+
378
+ #: options/panel1.php:49
379
+ msgid "Ask user to confirm"
380
+ msgstr "Zeptat se uživatele na pozvrzení"
381
+
382
+ #: options/panel1.php:50
383
+ msgid "Add"
384
+ msgstr "Přidat "
385
+
386
+ #: options/panel1.php:59
387
+ msgid "Search subscriptions"
388
+ msgstr "Hledat odběry"
389
+
390
+ #: options/panel1.php:61
391
+ #, php-format
392
+ msgid ""
393
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
394
+ "where the"
395
+ msgstr ""
396
+ "Můžete zobrazit <a href=\"%s\">přehled všech odběrů</a> nebo najít podle"
397
+
398
+ #: options/panel1.php:64
399
+ msgid "email"
400
+ msgstr "Email"
401
+
402
+ #: options/panel1.php:65
403
+ msgid "post ID"
404
+ msgstr "Příspěvek"
405
+
406
+ #: options/panel1.php:66
407
+ msgid "status"
408
+ msgstr "status"
409
+
410
+ #: options/panel1.php:69
411
+ msgid "equals"
412
+ msgstr "rovnající se"
413
+
414
+ #: options/panel1.php:70
415
+ msgid "contains"
416
+ msgstr "obsahuje"
417
+
418
+ #: options/panel1.php:71
419
+ msgid "does not contain"
420
+ msgstr "neobsahuje"
421
+
422
+ #: options/panel1.php:72
423
+ msgid "starts with"
424
+ msgstr "začíná na"
425
+
426
+ #: options/panel1.php:73
427
+ msgid "ends with"
428
+ msgstr "končí na"
429
+
430
+ #: options/panel1.php:76
431
+ msgid "results per page:"
432
+ msgstr "výsledků na stránku"
433
+
434
+ #: options/panel1.php:77
435
+ msgid "Search"
436
+ msgstr "Hledat"
437
+
438
+ #: options/panel1.php:85
439
+ msgid "Reverse the order by Post ID"
440
+ msgstr "Obrátit pořadí dle ID příspěvku"
441
+
442
+ #: options/panel1.php:86 options/panel1.php:87
443
+ msgid "Reverse the order by Date/Time"
444
+ msgstr "Obrátit pořadí dle data"
445
+
446
+ #: options/panel1.php:89
447
+ msgid "Post (ID)"
448
+ msgstr "Post ID"
449
+
450
+ #: options/panel1.php:92
451
+ msgid "Search query:"
452
+ msgstr "vyhledávací řetězec"
453
+
454
+ #: options/panel1.php:92
455
+ msgid "Rows:"
456
+ msgstr "Řádky:"
457
+
458
+ #: options/panel1.php:92
459
+ msgid "of"
460
+ msgstr "z"
461
+
462
+ #: options/panel1.php:93 templates/author.php:56 templates/user.php:52
463
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
464
+ msgstr ""
465
+ "Legenda: Y = odebírat vše, R = odebírat pouze vlastní komentáře, C = "
466
+ "neaktivní"
467
+
468
+ #: options/panel1.php:102
469
+ msgid "Date and Time"
470
+ msgstr "Datum a čas"
471
+
472
+ #: options/panel1.php:112
473
+ msgid "Edit"
474
+ msgstr "Editovat"
475
+
476
+ #: options/panel1.php:113 templates/author.php:69 templates/user.php:63
477
+ msgid "Delete"
478
+ msgstr "Vymazat"
479
+
480
+ #: options/panel1.php:121 templates/author.php:68 templates/user.php:62
481
+ msgid "Action:"
482
+ msgstr "Akce:"
483
+
484
+ #: options/panel1.php:122
485
+ msgid "Delete forever"
486
+ msgstr "Vymazat navždy"
487
+
488
+ #: options/panel1.php:123 templates/author.php:70 templates/user.php:64
489
+ msgid "Suspend"
490
+ msgstr "Pozastavit"
491
+
492
+ #: options/panel1.php:124
493
+ msgid "Activate and set to Y"
494
+ msgstr "Nastavit a aktivovat na Y"
495
+
496
+ #: options/panel1.php:125
497
+ msgid "Activate and set to R"
498
+ msgstr "Nastavit a aktivovat na R"
499
+
500
+ #: options/panel1.php:126 templates/author.php:72 templates/user.php:66
501
+ msgid "Activate"
502
+ msgstr "Aktivovat"
503
+
504
+ #: options/panel1.php:127 templates/author.php:73 templates/user.php:67
505
+ msgid "Update subscriptions"
506
+ msgstr "Aktualizovat odběry"
507
+
508
+ #: options/panel1.php:131
509
+ msgid "Sorry, no subscriptions match your search criteria."
510
+ msgstr "Nenalezeny žádné odběry."
511
+
512
+ #: options/panel2.php:11 options/panel2.php:39
513
+ msgid "Enable default checkbox"
514
+ msgstr "Povolit výchozí umístění volby odběru (checkbox nebo roletka)"
515
+
516
+ #: options/panel2.php:12 options/panel2.php:46
517
+ msgid "Checked by default"
518
+ msgstr "Checkbox zaškrtnut ve výchozím stavu"
519
+
520
+ #: options/panel2.php:13 options/panel2.php:53
521
+ msgid "Advanced subscription"
522
+ msgstr "Rozšířené odběry"
523
+
524
+ #: options/panel2.php:14 options/panel2.php:60
525
+ msgid "Custom inline style"
526
+ msgstr "Změna css checkboxu"
527
+
528
+ #: options/panel2.php:15 options/panel2.php:65
529
+ msgid "Custom HTML"
530
+ msgstr "Upravené HTML"
531
+
532
+ #: options/panel2.php:17
533
+ msgid "Checkbox label"
534
+ msgstr "Popisek checkboxu"
535
+
536
+ #: options/panel2.php:18 options/panel2.php:81
537
+ msgid "Subscribed label"
538
+ msgstr "Popisek checkboxu (odběratel)"
539
+
540
+ #: options/panel2.php:19
541
+ msgid "Awaiting label"
542
+ msgstr "Popisek checkboxu (čekající)"
543
+
544
+ #: options/panel2.php:20 options/panel2.php:91
545
+ msgid "Author label"
546
+ msgstr "Popisek checkboxu (autor)"
547
+
548
+ #: options/panel2.php:25 options/panel3.php:26 options/panel4.php:23
549
+ #: options/panel5.php:22
550
+ msgid "Your settings have been successfully updated."
551
+ msgstr "Vaše nastavení bylo úspěšně aktualizováno."
552
+
553
+ #: options/panel2.php:28 options/panel3.php:29 options/panel4.php:26
554
+ #: options/panel5.php:25
555
+ msgid "There was an error updating the following fields:"
556
+ msgstr "Chyba při aktualizaci těchto polí:"
557
+
558
+ #: options/panel2.php:43
559
+ msgid ""
560
+ "Disable this option if you want to move the subscription checkbox to a "
561
+ "different place on your page."
562
+ msgstr ""
563
+ "Vypněte tuto volbu, pokud chcete zaškrtávací políčko (checkbox, roletku) "
564
+ "volby odběrů umístit na jiné místo na stránkách.\n"
565
+ "<br/>( jak to udělat naleznete zde: https://wordpress.org/plugins/subscribe-"
566
+ "to-comments-reloaded/faq )"
567
+
568
+ #: options/panel2.php:50
569
+ msgid "Decide if the checkbox should be checked by default or not."
570
+ msgstr "Volba zda má být checkbox ve výchozím stavu žaškrtnut či nikoli."
571
+
572
+ #: options/panel2.php:57
573
+ msgid ""
574
+ "Allow users to choose from different subscription types (all, replies only)."
575
+ msgstr ""
576
+ "Pokud zaškrtnete ANO, uživatelé uvidí roletku, kde si mohou vybrat zda "
577
+ "odebírat všechna nebo jen upozornění na vlastní komentáře."
578
+
579
+ #: options/panel2.php:62
580
+ msgid "Custom inline CSS to add to the checkbox."
581
+ msgstr "Uživatelský CSS inline styl který se přiřadí k checkboxu."
582
+
583
+ #: options/panel2.php:67
584
+ msgid ""
585
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
586
+ "[checkbox_field], [checkbox_label]"
587
+ msgstr ""
588
+ "Můžete nadefinovat vlastní HTML kód který se použije pro checkbox. Povolené "
589
+ "tagy: [checkbox_field], [checkbox_label]"
590
+
591
+ #: options/panel2.php:72
592
+ msgid "Messages for your visitors"
593
+ msgstr "Popisky u roletky nebo checkboxu dle situace:"
594
+
595
+ #: options/panel2.php:76
596
+ msgid "Default label"
597
+ msgstr "Popisek (výchozí)"
598
+
599
+ #: options/panel2.php:78
600
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
601
+ msgstr "Popisek checkboxu. Povelené tagy: [subscribe_link]"
602
+
603
+ #: options/panel2.php:83
604
+ msgid ""
605
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
606
+ "[manager_link]"
607
+ msgstr ""
608
+ "Popisek který vidí ti, jenž se již přihlásili k odběru. Povolené tagy: "
609
+ "[manager_link]"
610
+
611
+ #: options/panel2.php:86
612
+ msgid "Pending label"
613
+ msgstr "Popisek (čekající)"
614
+
615
+ #: options/panel2.php:88
616
+ msgid ""
617
+ "Label shown to those who are already subscribed, but haven't clicked on the "
618
+ "confirmation link yet. Allowed tag: [manager_link]"
619
+ msgstr ""
620
+ "Popisek vidí ti, co se již přihlásili ,ale ještě neklikli v emailu na "
621
+ "potvrzení. Povolené tagy: [manager_link]"
622
+
623
+ #: options/panel2.php:93
624
+ msgid ""
625
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
626
+ msgstr "Popisek vidí autoři a administrátoři. Povolené tagy: [manager_link]"
627
+
628
+ #: options/panel2.php:97 options/panel3.php:145 options/panel4.php:103
629
+ #: options/panel5.php:83
630
+ msgid "Save Changes"
631
+ msgstr "Uložit změny"
632
+
633
+ #: options/panel3.php:10 options/panel3.php:43
634
+ msgid "Virtual Management Page"
635
+ msgstr "Virtuální stránka správy"
636
+
637
+ #: options/panel3.php:11 options/panel3.php:51
638
+ msgid "Page title"
639
+ msgstr "Titulek stránky"
640
+
641
+ #: options/panel3.php:12 options/panel3.php:56
642
+ msgid "Management URL"
643
+ msgstr "Správa URL"
644
+
645
+ #: options/panel3.php:13 options/panel3.php:63
646
+ msgid "Custom HEAD meta"
647
+ msgstr "Uživatelské HEAD meta tagy"
648
+
649
+ #: options/panel3.php:15 options/panel3.php:74
650
+ msgid "Request link"
651
+ msgstr "Požadavek na odkaz pro odběr"
652
+
653
+ #: options/panel3.php:16 options/panel3.php:84
654
+ msgid "Request submitted"
655
+ msgstr "Požadavek odeslán"
656
+
657
+ #: options/panel3.php:17 options/panel3.php:94
658
+ msgid "Subscribe without commenting"
659
+ msgstr "Odebírat bez komentování"
660
+
661
+ #: options/panel3.php:18 options/panel3.php:104
662
+ msgid "Subscription processed"
663
+ msgstr "Odběr zpracován"
664
+
665
+ #: options/panel3.php:19 options/panel3.php:114
666
+ msgid "Subscription processed (DCI)"
667
+ msgstr "Odběr zpracován (DCI)"
668
+
669
+ #: options/panel3.php:20 options/panel3.php:124
670
+ msgid "Authors"
671
+ msgstr "Autoři"
672
+
673
+ #: options/panel3.php:21 options/panel3.php:134
674
+ msgid "Users"
675
+ msgstr "Uživatelé"
676
+
677
+ #: options/panel3.php:45
678
+ msgid "Enabled"
679
+ msgstr "Povoleno"
680
+
681
+ #: options/panel3.php:46
682
+ msgid "Disabled"
683
+ msgstr "Zakázáno"
684
+
685
+ #: options/panel3.php:47
686
+ #, fuzzy
687
+ msgid ""
688
+ "Disable the virtual management page if you need to create a <a href=\"http://"
689
+ "behstant.com/subscribe-reloaded/realMgnPage.php\">real page</a> to make your "
690
+ "theme happy."
691
+ msgstr ""
692
+ "Zakázat virtuální stránku pokud chcete vytvořit reálnou <a href=\"http://lab."
693
+ "duechiacchiere.it/index.php?topic=71.0\">stránku</a> pro větší využitelnost "
694
+ "vaší šablony."
695
+
696
+ #: options/panel3.php:53
697
+ msgid "Title of the page your visitors will use to manage their subscriptions."
698
+ msgstr ""
699
+ "Titulek stránky, kterou vaši odběratelé budou používat ke správě odběrů."
700
+
701
+ #: options/panel3.php:58
702
+ msgid ""
703
+ "The permalink for your management page (something like <code>/manage-"
704
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
705
+ "b> actually exist in the system, but its link must follow your permalink "
706
+ "structure."
707
+ msgstr ""
708
+ "Permalink k vaší virtuální stránce správy odběrů (například <code>/manage-"
709
+ "subscriptions</code> nebo <code>/?page_id=345</code>). Tato stránka "
710
+ "fyzicky(není vytvořena jako soubor) neexistuje v systému, avšak aby "
711
+ "funguvala musí být podle pravidel struktury vašich permalinků."
712
+
713
+ #: options/panel3.php:60
714
+ msgid ""
715
+ "Warning: it looks like the value you are using may be incompatible with your "
716
+ "permalink structure"
717
+ msgstr ""
718
+ "Varování: vypadá to že vámi zadaná hodnota není kompatibilní se strukturou "
719
+ "vašich permalinků"
720
+
721
+ #: options/panel3.php:65
722
+ msgid ""
723
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
724
+ "Use <strong>single</strong> quotes for values."
725
+ msgstr ""
726
+ "Specifikujte HTML kód který se přidá do sekce HEAD stránky. Pro hodnoty "
727
+ "použijte <strong>jednoduché</strong> uvozovky <code>'příklad'</code>."
728
+
729
+ #: options/panel3.php:70 options/panel4.php:50
730
+ msgid "Messages"
731
+ msgstr "Zprávy"
732
+
733
+ #: options/panel3.php:75 options/panel3.php:85 options/panel3.php:95
734
+ #: options/panel3.php:105 options/panel3.php:115 options/panel3.php:125
735
+ #: options/panel3.php:135 options/panel4.php:61 options/panel4.php:77
736
+ #: options/panel4.php:93
737
+ msgid "Bold"
738
+ msgstr "Tučné"
739
+
740
+ #: options/panel3.php:76 options/panel3.php:86 options/panel3.php:96
741
+ #: options/panel3.php:106 options/panel3.php:116 options/panel3.php:126
742
+ #: options/panel3.php:136 options/panel4.php:62 options/panel4.php:78
743
+ #: options/panel4.php:94
744
+ msgid "Italic"
745
+ msgstr "Kurzíva"
746
+
747
+ #: options/panel3.php:77 options/panel3.php:87 options/panel3.php:97
748
+ #: options/panel3.php:107 options/panel3.php:117 options/panel3.php:127
749
+ #: options/panel3.php:137 options/panel4.php:63 options/panel4.php:79
750
+ #: options/panel4.php:95
751
+ msgid "Link"
752
+ msgstr "Odkaz"
753
+
754
+ #: options/panel3.php:78 options/panel3.php:88 options/panel3.php:98
755
+ #: options/panel3.php:108 options/panel3.php:118 options/panel3.php:128
756
+ #: options/panel3.php:138 options/panel4.php:64 options/panel4.php:80
757
+ #: options/panel4.php:96
758
+ msgid "Image"
759
+ msgstr "Obrázek"
760
+
761
+ #: options/panel3.php:81
762
+ msgid "Text shown to those who request to manage their subscriptions."
763
+ msgstr "Text co uvidí ti, kteří požádali o správu jejich odběrů."
764
+
765
+ #: options/panel3.php:91
766
+ msgid ""
767
+ "Thank you note shown after the request here above has been processed. "
768
+ "Allowed tags: [post_title], [post_permalink]"
769
+ msgstr ""
770
+ "Text zobrazený po zpracování výše uvedeného požadavku. Povolené tagy: "
771
+ "[post_title], [post_permalink]"
772
+
773
+ #: options/panel3.php:101
774
+ msgid ""
775
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
776
+ "[post_title], [post_permalink]"
777
+ msgstr ""
778
+ "Text zobrazen těm, co chtějí odebírat upozornění bez komentování. Povolené "
779
+ "tagy: [post_title], [post_permalink]"
780
+
781
+ #: options/panel3.php:111
782
+ msgid ""
783
+ "Thank you note shown after the subscription request has been processed "
784
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
785
+ msgstr ""
786
+ "Text zobrazen po zpracování požadavku na odběr (bez dvojí kontroly emailu). "
787
+ "Povolené tagy: [post_title], [post_permalink]"
788
+
789
+ #: options/panel3.php:121
790
+ msgid ""
791
+ "Thank you note shown after the subscription request has been processed "
792
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
793
+ msgstr ""
794
+ "Text zobrazen po zpracování požadavku na odběr (s dvojí kontrolou emailu). "
795
+ "Povolené tagy: [post_title], [post_permalink]"
796
+
797
+ #: options/panel3.php:131
798
+ msgid "Introductory text for the authors' management page."
799
+ msgstr "Text pro stránku správy odběrů autorů."
800
+
801
+ #: options/panel3.php:141
802
+ msgid "Introductory text for the users' management page."
803
+ msgstr "Text pro stránku správy odběrů uživatelů."
804
+
805
+ #: options/panel4.php:11 options/panel4.php:38
806
+ msgid "Sender name"
807
+ msgstr "Jméno odesílatele"
808
+
809
+ #: options/panel4.php:12 options/panel4.php:43
810
+ msgid "Sender email address"
811
+ msgstr "Email odesílatele"
812
+
813
+ #: options/panel4.php:13 options/panel4.php:54
814
+ msgid "Notification subject"
815
+ msgstr "Předmět emailu upozornění"
816
+
817
+ #: options/panel4.php:14 options/panel4.php:59
818
+ msgid "Notification message"
819
+ msgstr "Text emailu upozornění"
820
+
821
+ #: options/panel4.php:15 options/panel4.php:70
822
+ msgid "Double check subject"
823
+ msgstr "Předmět emailu upozornění při dvojí kontrole emailu"
824
+
825
+ #: options/panel4.php:16 options/panel4.php:75
826
+ msgid "Double check message"
827
+ msgstr "Text emailu upozornění při dvojí kontrole emailu"
828
+
829
+ #: options/panel4.php:17 options/panel4.php:86
830
+ msgid "Management subject"
831
+ msgstr "Předmět emailu o odkazu na správu odběrů"
832
+
833
+ #: options/panel4.php:18 options/panel4.php:91
834
+ msgid "Management message"
835
+ msgstr "Text emailu s odkazem na správu odběrů"
836
+
837
+ #: options/panel4.php:40
838
+ msgid ""
839
+ "Name to use for the \"from\" field when sending a new notification to the "
840
+ "user."
841
+ msgstr ""
842
+ "Jméno použité jako \"Od\" v emailu pro uživatele přihlášeného k odběru."
843
+
844
+ #: options/panel4.php:45
845
+ msgid ""
846
+ "Email address to use for the \"from\" field when sending a new notification "
847
+ "to the user."
848
+ msgstr ""
849
+ "Emailová adresa použitá jako \"Od\" v emailu pro uživatele přihlášeného k "
850
+ "odběru."
851
+
852
+ #: options/panel4.php:56
853
+ msgid "Subject of the notification email. Allowed tag: [post_title]"
854
+ msgstr "Předmět emailu s upozorněním. Povolené tagy: [post_title]"
855
+
856
+ #: options/panel4.php:67
857
+ msgid ""
858
+ "Content of the notification email. Allowed tags: [post_title], "
859
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
860
+ "[manager_link]"
861
+ msgstr ""
862
+ "Obsah emailu s upozorněním. Povolené tagy: [post_title], "
863
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
864
+ "[manager_link]"
865
+
866
+ #: options/panel4.php:72
867
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
868
+ msgstr "Předmět potvrzujícího emailu. Povolené tagy: [post_title]"
869
+
870
+ #: options/panel4.php:83
871
+ msgid ""
872
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
873
+ "[confirm_link], [post_title], [manager_link]"
874
+ msgstr ""
875
+ "Obsah potvrzujícího emailu. Povolené tagy: [post_permalink], [confirm_link], "
876
+ "[post_title], [manager_link]"
877
+
878
+ #: options/panel4.php:88
879
+ msgid ""
880
+ "Subject of the mail sent to those who request to access their management "
881
+ "page. Allowed tag: [blog_name]"
882
+ msgstr ""
883
+ "Předmět emailu s odkazem na stránku správy odběrů. Povolené tagy: [blog_name]"
884
+
885
+ #: options/panel4.php:99
886
+ msgid ""
887
+ "Content of the management email. Allowed tags: [blog_name], [manager_link]"
888
+ msgstr ""
889
+ "Obsah emailu s odkazem na stránku správy odběrů. Povolené tagy: [blog_name], "
890
+ "[manager_link]"
891
+
892
+ #: options/panel5.php:11 options/panel5.php:35
893
+ msgid "Autopurge requests"
894
+ msgstr "Autočištění požadavků"
895
+
896
+ #: options/panel5.php:12 options/panel5.php:40
897
+ msgid "Enable double check"
898
+ msgstr "Povolit dvojí kontrolu emailu"
899
+
900
+ #: options/panel5.php:13
901
+ msgid "Notify authors"
902
+ msgstr "Upozornit autory"
903
+
904
+ #: options/panel5.php:14 options/panel5.php:54
905
+ msgid "Enable HTML emails"
906
+ msgstr "Povolit HTML formát emailů"
907
+
908
+ #: options/panel5.php:15
909
+ msgid "Send trackbacks"
910
+ msgstr "Odeslat trackacky"
911
+
912
+ #: options/panel5.php:16 options/panel5.php:47
913
+ msgid "Notify admin"
914
+ msgstr "Upozornit administrátora"
915
+
916
+ #: options/panel5.php:17 options/panel5.php:75
917
+ msgid "Let admin subscribe"
918
+ msgstr "Povolit odběry pro administrátora"
919
+
920
+ #: options/panel5.php:36
921
+ msgid "days"
922
+ msgstr "dní"
923
+
924
+ #: options/panel5.php:37
925
+ msgid ""
926
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
927
+ "this feature."
928
+ msgstr ""
929
+ "Vymazat požadavky na odběry (neschválené) po X dnech. 0 znamená vypnuto. "
930
+
931
+ #: options/panel5.php:44
932
+ msgid ""
933
+ "Send a notification email to confirm the subscription (to avoid addresses "
934
+ "misuse)."
935
+ msgstr ""
936
+ "Zašle upozorňovací email pro potvrzení odběru aby se zamezilo zneužití adres."
937
+
938
+ #: options/panel5.php:51
939
+ msgid "Notify the administrator when a new comment is posted."
940
+ msgstr "Upozorní administrátora na nový komentář."
941
+
942
+ #: options/panel5.php:58
943
+ msgid ""
944
+ "If enabled, will send email messages with content-type = text/html instead "
945
+ "of text/plain"
946
+ msgstr ""
947
+ "Pokud je povoleno, budou emaily zasílány ve formátu <code>content-type = "
948
+ "text/html</code> namísto <code>content-type = text/plain</code>"
949
+
950
+ #: options/panel5.php:61
951
+ msgid "Process trackbacks"
952
+ msgstr "Zpracovat trackbacky"
953
+
954
+ #: options/panel5.php:65
955
+ msgid ""
956
+ "Notify users when a new trackback or pingback is added to the discussion."
957
+ msgstr ""
958
+ "Upozornit odběratele pokud je do diskuse zapojen nový trackback nebo "
959
+ "pingback."
960
+
961
+ #: options/panel5.php:68
962
+ msgid "Track all subscriptions"
963
+ msgstr "Sledovat všechny odběry"
964
+
965
+ #: options/panel5.php:72
966
+ msgid "Notify the administrator when users subscribe without commenting."
967
+ msgstr ""
968
+ "Upozornit administrátora pokud se uživatel přihlásí k odběrům a sám "
969
+ "nekomentuje."
970
+
971
+ #: options/panel5.php:79
972
+ msgid "Let the administrator subscribe to comments when logged in."
973
+ msgstr "Povolit odběry pro administrátora pokud je přihlášen."
974
+
975
+ #: options/panel6.php:8
976
+ msgid "Support the author"
977
+ msgstr "Podpořte autora"
978
+
979
+ #: options/panel6.php:16
980
+ msgid ""
981
+ "How valuable is the feature offered by this plugin to your visitors? "
982
+ "Subscribe to Comments Reloaded is and will always be free, but consider "
983
+ "supporting the author if this plugin made your web site better, especially "
984
+ "if you are making money out of it. Any donation received will be reinvested "
985
+ "in the development of Subscribe to Comments Reloaded, and to buy some food "
986
+ "for my hungry family."
987
+ msgstr ""
988
+ "Jak si ceníte tohoto pluginu? Plugin Subscribe to Comments Reloaded je a "
989
+ "bude vždy zadarmo avšak zvažte přispění pokud tento plugin váš web vylepšil, "
990
+ "zvláště pak pokud je váš web výdělečný.Veškeré příspěvky budou reinvestovány "
991
+ "do vývoje pluginu a jídla pro moji rodinu."
992
+
993
+ #: options/panel6.php:18
994
+ msgid "Don't want to donate? You can still help"
995
+ msgstr "Nechcete zrovna přispět penězi? Stále můžete pomoci!"
996
+
997
+ #: options/panel6.php:19
998
+ msgid ""
999
+ "If you don't want to donate money, please consider blogging about my plugin "
1000
+ "with a link to the plugin's page. Please let your readers know what makes "
1001
+ "your blog better. You can also contribute donating your time: do not "
1002
+ "hesitate to send me bug reports, your localization files, ideas on how to "
1003
+ "improve Subscribe to Comments Reloaded and so on. Whatever you do, thanks "
1004
+ "for using my plugin!"
1005
+ msgstr ""
1006
+ "Pokud nechcete přispět penězi, máte pořád možnost přispět tím, že budete o "
1007
+ "mém pluginu blogovat a odakážete na stránku pluginu. Rozšíříte tak povědomí "
1008
+ "o pluginu.Také můžete přispět i vaším časem: zašlete mi reporty o chybách, "
1009
+ "můžete také plugin přeložit a nebo také zaslat nápady na jeho vylepšení. Ať "
1010
+ "už uděláte cokoli děkuji za to že používáte můj plugin!"
1011
+
1012
+ #: options/panel6.php:21
1013
+ msgid "Vote and show your appreciation"
1014
+ msgstr "Hlasovat pro plugin"
1015
+
1016
+ #: options/panel6.php:22
1017
+ msgid ""
1018
+ "Tell other people if Subscribe to Comments Reloaded works for you and how "
1019
+ "good it is. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
1020
+ "comments-reloaded/\">Rate it</a> on its Plugin Directory page."
1021
+ msgstr ""
1022
+ "Sdílejte pokud se vám plugin Subscribe to Comments Reloaded líbí. <a href="
1023
+ "\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
1024
+ "\">Ohodnotit plugin</a> na stránce pluginu."
1025
+
1026
+ #: options/panel6.php:24
1027
+ msgid "Sponsor's Corner"
1028
+ msgstr "Sponzorský koutek"
1029
+
1030
+ #: options/panel6.php:25
1031
+ msgid ""
1032
+ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1033
+ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1034
+ msgstr ""
1035
+ "Pokud chcete být sponzorem pluginu <a href='http://behstant.com/negocio/"
1036
+ "contact.php' target='_blank'>kontaktujte mne</a>."
1037
+
1038
+ #: templates/author.php:55
1039
+ msgid "Title"
1040
+ msgstr "Titulek"
1041
+
1042
+ #: templates/author.php:66 templates/user.php:60
1043
+ msgid "Select all"
1044
+ msgstr "Vybrat vše"
1045
+
1046
+ #: templates/author.php:67 templates/user.php:61
1047
+ msgid "Invert selection"
1048
+ msgstr "Obrátit výběr"
1049
+
1050
+ #: templates/author.php:71
1051
+ msgid "Set to Y"
1052
+ msgstr "Nastavit na Y"
1053
+
1054
+ #: templates/author.php:77 templates/user.php:71
1055
+ msgid "No subscriptions match your search criteria."
1056
+ msgstr "Žádné odběry."
1057
+
1058
+ #: templates/request-management-link.php:68 templates/subscribe.php:89
1059
+ msgid "Send"
1060
+ msgstr "Odeslat"
1061
+
1062
+ #: templates/subscribe.php:42 templates/subscribe.php:43
1063
+ msgid "New subscription to"
1064
+ msgstr "Nový odběr k"
1065
+
1066
+ #: templates/subscribe.php:43
1067
+ msgid "User:"
1068
+ msgstr "Uživatel:"
1069
+
1070
+ msgid ""
1071
+ "Update the email address associated to a specific subscription (by post ID)."
1072
+ msgstr ""
1073
+ "Aktualizovat emailovou adresu asociovanou se specifickým odběrem (dle post "
1074
+ "ID)"
1075
+
1076
+ msgid ""
1077
+ "Change the status of an email address or permanently delete all its "
1078
+ "subscriptions."
1079
+ msgstr ""
1080
+ "Změna statusu(asi typ odběru?) emailové adresy nebo vymazat všechny odběry "
1081
+ "této adresy"
1082
+
1083
+ msgid ""
1084
+ "You can \"mass update\" all the occurrences of a given email address (exact "
1085
+ "matches only)."
1086
+ msgstr ""
1087
+
1088
+ msgid "Engine"
1089
+ msgstr ""
1090
+
1091
+ msgid "Approximate Overhead"
1092
+ msgstr ""
1093
+
1094
+ #, fuzzy
1095
+ #~ msgid "Management Page ID"
1096
+ #~ msgstr "Nastavení"
1097
+
1098
+ #, fuzzy
1099
+ #~ msgid "Management page"
1100
+ #~ msgstr "Nastavení"
1101
+
1102
+ #~ msgid "Awaiting confirmation"
1103
+ #~ msgstr "Čeká na schválení"
1104
+
1105
+ #, fuzzy
1106
+ #~ msgid "Stats"
1107
+ #~ msgstr "Status"
1108
+
1109
+ #, fuzzy
1110
+ #~ msgid "Other Messages"
1111
+ #~ msgstr "Zprávy"
1112
+
1113
+ #, fuzzy
1114
+ #~ msgid "Support"
1115
+ #~ msgstr "fórum podpory"
1116
+
1117
+ #, fuzzy
1118
+ #~ msgid "The status has been successfully updated. Rows affected:"
1119
+ #~ msgstr "Vaše nastavení bylo úspěšně aktualizováno."
1120
+
1121
+ #, fuzzy
1122
+ #~ msgid "PID"
1123
+ #~ msgstr "Příspěvek"
1124
+
1125
+ #~ msgid "Change status"
1126
+ #~ msgstr "Změnit status"
1127
+
1128
+ #~ msgid "Resume"
1129
+ #~ msgstr "Obnovit"
1130
+
1131
+ #~ msgid "Update email address"
1132
+ #~ msgstr "Aktualizovat emailovou adresu"
1133
+
1134
+ #~ msgid "Search email address"
1135
+ #~ msgstr "Hledat email"
1136
+
1137
+ #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1138
+ #~ msgstr "Legenda: Y-odebíráno, N-neodebíráno, C- čeká na schválení"
1139
+
1140
+ #, fuzzy
1141
+ #~ msgid "StCR table has been successfully optimized."
1142
+ #~ msgstr "Vaše nastavení bylo úspěšně aktualizováno."
1143
+
1144
+ #~ msgid "Filter by date"
1145
+ #~ msgstr "Filtrovat dle data"
1146
+
1147
+ #~ msgid "Month"
1148
+ #~ msgstr "Měsíc"
1149
+
1150
+ #~ msgid "Year"
1151
+ #~ msgstr "Rok"
1152
+
1153
+ #~ msgid "No data to display"
1154
+ #~ msgstr "Nic k zobrazení"
1155
+
1156
+ #~ msgid "optimize"
1157
+ #~ msgstr "Optimalizace"
1158
+
1159
+ #~ msgid "Database"
1160
+ #~ msgstr "Databáze"
1161
+
1162
+ #~ msgid "Created on"
1163
+ #~ msgstr "Vytvořeno"
1164
+
1165
+ #~ msgid "Index length"
1166
+ #~ msgstr "Délka indexu"
1167
+
1168
+ #~ msgid "Records"
1169
+ #~ msgstr "Záznamy"
1170
+
1171
+ #~ msgid "Average Record Length"
1172
+ #~ msgstr "Průměrná délka záznamu"
1173
+
1174
+ #~ msgid "Analysis for"
1175
+ #~ msgstr "Anylýza pro"
1176
+
1177
+ #~ msgid "Most active users"
1178
+ #~ msgstr "Nejaktivnější uživatelé"
1179
+
1180
+ #~ msgid "Popular posts"
1181
+ #~ msgstr "Populární články"
1182
+
1183
+ #~ msgid "Custom CSS Class"
1184
+ #~ msgstr "Změna CSS class"
1185
+
1186
+ #~ msgid ""
1187
+ #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1188
+ #~ "its style."
1189
+ #~ msgstr ""
1190
+ #~ "Můžete změnit css třídu checkboxu, pak si ho můžete stylovat dle svého. "
1191
+ #~ "(což můžete i tak pokud víte jak)"
1192
+
1193
+ #~ msgid "Official Sponsors"
1194
+ #~ msgstr "Oficiální sponzoři"
1195
+
1196
+ #~ msgid "Subscriptions have been successfully updated."
1197
+ #~ msgstr "Odběry byly úspěšně aktualizovány."
1198
+
1199
+ #~ msgid "Sorry, no subscriptions found."
1200
+ #~ msgstr "Žádné odběry nenalezeny."
1201
+
1202
+ #~ msgid "All the subscriptions have been successfully updated."
1203
+ #~ msgstr "Všechny odběry byly úspěšně aktualizovány."
langs/subscribe-reloaded-da_DK.mo CHANGED
Binary file
langs/subscribe-reloaded-da_DK.po CHANGED
@@ -1,1364 +1,1500 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-06-11 16:19-0700\n"
6
- "PO-Revision-Date: 2015-06-11 16:19-0700\n"
7
- "Last-Translator: Israel Barragan <reedyseth@gmail.com>\n"
8
- "Language-Team: \n"
9
- "Language: da_DK\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "X-Generator: Poedit 1.6\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: subscribe-to-comments-reloaded.php:95
19
- msgid "Don't subscribe"
20
- msgstr "Lad administrator abonnere"
21
-
22
- #: subscribe-to-comments-reloaded.php:96
23
- msgid "All"
24
- msgstr ""
25
-
26
- #: subscribe-to-comments-reloaded.php:97 templates/author.php:75
27
- #: templates/user.php:72
28
- msgid "Replies to my comments"
29
- msgstr ""
30
-
31
- #: subscribe-to-comments-reloaded.php:312
32
- msgid ""
33
- "Notify me of followup comments via e-mail. You can also <a "
34
- "href='[subscribe_link]'>subscribe</a> without commenting."
35
- msgstr ""
36
- "Giv mig besked ved andre kommentarer via e-mail. Du kan også <a "
37
- "href='[subscribe_link]'>abonnere</a> uden at kommentere."
38
-
39
- #: subscribe-to-comments-reloaded.php:313
40
- msgid ""
41
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
42
- "subscriptions."
43
- msgstr ""
44
- "Du abonnerer på dette indlæg. <a href='[manager_link]'>Rediger</a> dine "
45
- "abonnementer."
46
-
47
- #: subscribe-to-comments-reloaded.php:314
48
- msgid ""
49
- "Your subscription to this post needs to be confirmed. <a "
50
- "href='[manager_link]'>Manage your subscriptions</a>."
51
- msgstr ""
52
- "Dit abonnement til dette indlæg kræver bekræftelse. <a "
53
- "href='[manager_link]'>Rediger dine abonnementer</a>."
54
-
55
- #: subscribe-to-comments-reloaded.php:315
56
- msgid ""
57
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
58
- msgstr ""
59
- "Du kan <a href='[manager_link]'>redigere abonnementerne</a> til dette indlæg."
60
-
61
- #: subscribe-to-comments-reloaded.php:319 options/index.php:57
62
- msgid "Manage subscriptions"
63
- msgstr "Rediger dine abonnementer"
64
-
65
- #: subscribe-to-comments-reloaded.php:321
66
- msgid ""
67
- "To manage your subscriptions, please enter your email address here below. We "
68
- "will send you a message containing the link to access your personal "
69
- "management page."
70
- msgstr ""
71
- "For at redigere dine abonnementer, indtast venligst din e-mail adresse "
72
- "herunder. Vi sender dig en besked med et link til din personlige abonnement "
73
- "side."
74
-
75
- #: subscribe-to-comments-reloaded.php:322
76
- msgid ""
77
- "Thank you for using our subscription service. Your request has been "
78
- "completed, and you should receive an email with the management link in a few "
79
- "minutes."
80
- msgstr ""
81
- "Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
82
- "vil modtage en e-mail med et link med adgang til din personlige abonnements "
83
- "side."
84
-
85
- #: subscribe-to-comments-reloaded.php:323
86
- msgid ""
87
- "You can follow the discussion on <strong>[post_title]</strong> without "
88
- "having to leave a comment. Cool, huh? Just enter your email address in the "
89
- "form here below and you're all set."
90
- msgstr ""
91
- "Du kan abonnere diskussionen <strong>[post_title]</strong> uden at du "
92
- "behøver at skrive en kommentar. Bare indtast din e-mail adresse i felter "
93
- "nedenfor og du vil blive orienteret ved nye kommentarer."
94
-
95
- #: subscribe-to-comments-reloaded.php:324
96
- msgid ""
97
- "Thank you for using our subscription service. Your request has been "
98
- "completed. You will receive a notification email every time a new comment to "
99
- "this article is approved and posted by the administrator."
100
- msgstr ""
101
- "Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
102
- "vil modtage en e-mail hver gang en ny kommentar bliver godkendt af "
103
- "administrator."
104
-
105
- #: subscribe-to-comments-reloaded.php:325
106
- msgid ""
107
- "Thank you for using our subscription service. In order to confirm your "
108
- "request, please check your email for the verification message and follow the "
109
- "instructions."
110
- msgstr ""
111
- "Tak for at bruge vores abonnements service. For at kunne udføre din "
112
- "forespørgsel, tjek din e-mail for en bekræftelses e-mail og følg "
113
- "instruktionerne i denne e-mail."
114
-
115
- #: subscribe-to-comments-reloaded.php:326
116
- msgid ""
117
- "In order to cancel or suspend one or more notifications, select the "
118
- "corresponding checkbox(es) and click on the button at the end of the list."
119
- msgstr ""
120
- "For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
121
- "korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
122
- "listen."
123
-
124
- #: subscribe-to-comments-reloaded.php:327
125
- msgid ""
126
- "In order to cancel or suspend one or more notifications, select the "
127
- "corresponding checkbox(es) and click on the button at the end of the list. "
128
- "You are currently subscribed to:"
129
- msgstr ""
130
- "For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
131
- "korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
132
- "listen. Du abonnerer i øjeblikket på:"
133
-
134
- #: subscribe-to-comments-reloaded.php:331
135
- msgid "There is a new comment to [post_title]"
136
- msgstr "Der er en ny kommentar til [post_title]"
137
-
138
- #: subscribe-to-comments-reloaded.php:332
139
- msgid ""
140
- "There is a new comment to [post_title].\n"
141
- "Comment Link: [comment_permalink]\n"
142
- "Author: [comment_author]\n"
143
- "Comment:\n"
144
- "[comment_content]\n"
145
- "Permalink: [post_permalink]\n"
146
- "Manage your subscriptions: [manager_link]"
147
- msgstr ""
148
- "Der er en ny kommentar til [post_title].Kommentar Link: "
149
- "[comment_permalink]Forfatter: [comment_author]Kommentar:"
150
- "[comment_content]Link til indlæg: [post_permalink]Rediger dit abonnement på "
151
- "kommentarer: [manager_link]"
152
-
153
- #: subscribe-to-comments-reloaded.php:333
154
- msgid "Please confirm your subscription to [post_title]"
155
- msgstr "Venligst bekræft dit abonnement på kommentarer til [post_title]"
156
-
157
- #: subscribe-to-comments-reloaded.php:334
158
- msgid ""
159
- "You have requested to be notified every time a new comment is added to:\n"
160
- "[post_permalink]\n"
161
- "\n"
162
- "Please confirm your request by clicking on this link:\n"
163
- "[confirm_link]"
164
- msgstr ""
165
- "Du har bedt om at blive adviseret hver gang der kommer en ny kommentar til: "
166
- "[post_permalink]Venligst bekræft dette ved at følge dette link:[confirm_link]"
167
-
168
- #: subscribe-to-comments-reloaded.php:335
169
- msgid "Manage your subscriptions on [blog_name]"
170
- msgstr "Rediger dit abonnement kommentarer [blog_name]"
171
-
172
- #: subscribe-to-comments-reloaded.php:336
173
- msgid ""
174
- "You have requested to manage your subscriptions to the articles on "
175
- "[blog_name]. Follow this link to access your personal page:\n"
176
- "[manager_link]"
177
- msgstr ""
178
- "Du har bedt om at redigere dit abonnement kommentarer [blog_name].Følg "
179
- "dette link for at komme til din personlige abonnements side:[manager_link]"
180
-
181
- #: subscribe-to-comments-reloaded.php:429
182
- #: subscribe-to-comments-reloaded.php:436
183
- #: subscribe-to-comments-reloaded.php:579
184
- #: subscribe-to-comments-reloaded.php:648
185
- #: subscribe-to-comments-reloaded.php:792
186
- msgid "Important Notice"
187
- msgstr ""
188
-
189
- #: subscribe-to-comments-reloaded.php:527
190
- #, fuzzy
191
- msgid "Subscribe to Comments Reloaded Important Notice"
192
- msgstr ""
193
- "Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
194
- "officielle"
195
-
196
- #: subscribe-to-comments-reloaded.php:528
197
- msgid ""
198
- "The information in your database has been sanitize to prevent the raw html "
199
- "messages."
200
- msgstr ""
201
-
202
- #: subscribe-to-comments-reloaded.php:580
203
- msgid ""
204
- "Comment subscription data from the <strong>Subscribe to Comments</strong> "
205
- "plugin was detected and automatically imported into <strong>Subscribe to "
206
- "Comments Reloaded</strong>."
207
- msgstr ""
208
-
209
- #: subscribe-to-comments-reloaded.php:580
210
- msgid ""
211
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
212
- "Comments to prevent confusion between the two plugins."
213
- msgstr ""
214
-
215
- #: subscribe-to-comments-reloaded.php:581
216
- msgid ""
217
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
218
- "that you want to import, you'll need to import that data manually, as only "
219
- "one import routine will ever run to prevent data loss."
220
- msgstr ""
221
-
222
- #: subscribe-to-comments-reloaded.php:582
223
- #: subscribe-to-comments-reloaded.php:650
224
- #: subscribe-to-comments-reloaded.php:796
225
- msgid ""
226
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
227
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
228
- "your configuration."
229
- msgstr ""
230
-
231
- #: subscribe-to-comments-reloaded.php:649
232
- msgid ""
233
- "Comment subscription data from the <strong>Comment Reply Notification</"
234
- "strong> plugin was detected and automatically imported into "
235
- "<strong>Subscribe to Comments Reloaded</strong>."
236
- msgstr ""
237
-
238
- #: subscribe-to-comments-reloaded.php:649
239
- msgid ""
240
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
241
- "Notification to prevent confusion between the two plugins."
242
- msgstr ""
243
-
244
- #: subscribe-to-comments-reloaded.php:793
245
- msgid ""
246
- "Plugin options and comment subscription data from the <strong>WP Comment "
247
- "Subscriptions</strong> plugin were detected and automatically imported into "
248
- "<strong>Subscribe to Comments Reloaded</strong>."
249
- msgstr ""
250
-
251
- #: subscribe-to-comments-reloaded.php:793
252
- msgid ""
253
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
254
- "Subscriptions to prevent confusion between the two plugins."
255
- msgstr ""
256
-
257
- #: subscribe-to-comments-reloaded.php:794
258
- msgid ""
259
- "If you have subscription data from another plugin (such as Subscribe to "
260
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
261
- "you'll need to import that data manually, as only one import routine will "
262
- "ever run to prevent data loss."
263
- msgstr ""
264
-
265
- #: subscribe-to-comments-reloaded.php:795
266
- msgid ""
267
- "<strong>Note:</strong> If you were previously using the "
268
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
269
- "subscribe-url]</code> shortcode, you'll need to replace those with "
270
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
271
- "respectively."
272
- msgstr ""
273
-
274
- #: subscribe-to-comments-reloaded.php:806
275
- msgid "Settings"
276
- msgstr ""
277
-
278
- #: subscribe-to-comments-reloaded.php:1845 options/panel2.php:67
279
- #: options/panel2.php:77 options/panel2.php:106 options/panel5.php:84
280
- #: options/panel5.php:93 options/panel5.php:102 options/panel5.php:112
281
- #: options/panel5.php:121 options/panel5.php:131 options/panel5.php:140
282
- #: options/panel5.php:149
283
- msgid "No"
284
- msgstr "Nej"
285
-
286
- #: subscribe-to-comments-reloaded.php:1872
287
- msgid ""
288
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
289
- msgstr ""
290
- "Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
291
- "officielle"
292
-
293
- #: subscribe-to-comments-reloaded.php:1872
294
- msgid "support forum"
295
- msgstr "support forum"
296
-
297
- #: subscribe-to-comments-reloaded.php:1873
298
- msgid "Feeling generous?"
299
- msgstr "Føler du dig generøs?"
300
-
301
- #: subscribe-to-comments-reloaded.php:1873
302
- msgid "Donate a few bucks!"
303
- msgstr "Doner et par dollar!"
304
-
305
- #: options/index.php:58
306
- msgid "Comment Form"
307
- msgstr "Kommentar skema"
308
-
309
- #: options/index.php:59
310
- msgid "Management Page"
311
- msgstr "Administrations side"
312
-
313
- #: options/index.php:60
314
- msgid "Notifications"
315
- msgstr "E-mail emne"
316
-
317
- #: options/index.php:61 options/panel2.php:58 options/panel3.php:82
318
- #: options/panel4.php:67
319
- msgid "Options"
320
- msgstr "Indstillinger"
321
-
322
- #: options/index.php:62
323
- msgid "You can help"
324
- msgstr ""
325
-
326
- #: options/index.php:63
327
- msgid "Support"
328
- msgstr "Support"
329
-
330
- #: options/panel1-business-logic.php:19
331
- msgid "Subscription added."
332
- msgstr "Abonnementer"
333
-
334
- #: options/panel1-business-logic.php:31
335
- msgid "Subscriptions updated."
336
- msgstr "Abonnementer pr. dag"
337
-
338
- #: options/panel1-business-logic.php:40
339
- msgid "Subscription deleted."
340
- msgstr "Abonnement udført"
341
-
342
- #: options/panel1-business-logic.php:59 templates/author.php:23
343
- #: templates/user.php:23
344
- msgid "Subscriptions deleted:"
345
- msgstr "Abonnementer til:"
346
-
347
- #: options/panel1-business-logic.php:63 templates/author.php:27
348
- #: templates/user.php:27
349
- msgid "Subscriptions suspended:"
350
- msgstr "Abonnement udført"
351
-
352
- #: options/panel1-business-logic.php:67 templates/author.php:31
353
- #: templates/user.php:31
354
- msgid "Subscriptions activated:"
355
- msgstr "Abonnementer til:"
356
-
357
- #: options/panel1-business-logic.php:71 options/panel1-business-logic.php:75
358
- #: templates/author.php:35 templates/author.php:39 templates/user.php:35
359
- #: templates/user.php:39
360
- msgid "Subscriptions updated:"
361
- msgstr "Abonnementer pr. dag"
362
-
363
- #: options/panel1-business-logic.php:99
364
- msgid "&laquo; Previous"
365
- msgstr "&laquo; Forrige"
366
-
367
- #: options/panel1-business-logic.php:103
368
- msgid "Next &raquo;"
369
- msgstr "Næste &raquo;"
370
-
371
- #: options/panel1-edit-subscription.php:8
372
- msgid "Update Subscription"
373
- msgstr "Opdater abonnement"
374
-
375
- #: options/panel1-edit-subscription.php:11
376
- #: options/panel1-edit-subscription.php:21
377
- #: options/panel1-edit-subscription.php:22
378
- #: options/panel1-edit-subscription.php:23 options/panel1.php:28
379
- #: options/panel1.php:29 options/panel1.php:30
380
- msgid "optional"
381
- msgstr "Indstillinger"
382
-
383
- #: options/panel1-edit-subscription.php:11 options/panel1.php:22
384
- #: options/panel1.php:102 options/panel1.php:138 templates/author.php:52
385
- #: templates/user.php:52
386
- msgid ""
387
- "Please remember: this operation cannot be undone. Are you sure you want to "
388
- "proceed?"
389
- msgstr ""
390
- "Vær opmærksom: Denne operation kan ikke fortrydes! Er du sikker på at du vil "
391
- "fortsætte?"
392
-
393
- #: options/panel1-edit-subscription.php:13
394
- msgid "Post:"
395
- msgstr "Rækker:"
396
-
397
- #: options/panel1-edit-subscription.php:16 options/panel1.php:24
398
- msgid "From"
399
- msgstr "Fra"
400
-
401
- #: options/panel1-edit-subscription.php:20 options/panel1.php:27
402
- msgid "To"
403
- msgstr "Til"
404
-
405
- #: options/panel1-edit-subscription.php:26 options/panel1.php:33
406
- #: options/panel1.php:59 options/panel1.php:124
407
- msgid "Status"
408
- msgstr "Status"
409
-
410
- #: options/panel1-edit-subscription.php:28 options/panel1.php:35
411
- msgid "Keep unchanged"
412
- msgstr ""
413
-
414
- #: options/panel1-edit-subscription.php:29 options/panel1.php:36
415
- #: options/panel1.php:61
416
- msgid "Active"
417
- msgstr "Opgave"
418
-
419
- #: options/panel1-edit-subscription.php:30 options/panel1.php:37
420
- #: options/panel1.php:62
421
- msgid "Replies only"
422
- msgstr ""
423
-
424
- #: options/panel1-edit-subscription.php:31 options/panel1.php:38
425
- msgid "Suspended"
426
- msgstr "Annuller"
427
-
428
- #: options/panel1-edit-subscription.php:33 options/panel1.php:40
429
- msgid "Update"
430
- msgstr "Opdater"
431
-
432
- #: options/panel1.php:19
433
- msgid "Mass Update Subscriptions"
434
- msgstr "Opdater abonnementer"
435
-
436
- #: options/panel1.php:48
437
- msgid "Add New Subscription"
438
- msgstr "Ny abonnent til"
439
-
440
- #: options/panel1.php:53
441
- msgid "Post ID"
442
- msgstr "Indlæg (ID)"
443
-
444
- #: options/panel1.php:56 options/panel1.php:111
445
- #: templates/request-management-link.php:69 templates/subscribe.php:89
446
- #: templates/user.php:57
447
- msgid "Email"
448
- msgstr "E-mail"
449
-
450
- #: options/panel1.php:63
451
- msgid "Ask user to confirm"
452
- msgstr ""
453
-
454
- #: options/panel1.php:65
455
- msgid "Add"
456
- msgstr ""
457
-
458
- #: options/panel1.php:76
459
- msgid "Search subscriptions"
460
- msgstr "Abonnementer"
461
-
462
- #: options/panel1.php:80
463
- #, php-format
464
- msgid ""
465
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
466
- "where the"
467
- msgstr ""
468
- "Du kan enten <a href=\"%s\">liste alle abonnementer</a> eller finde dem hvor "
469
- "<b>e-mail</b>"
470
-
471
- #: options/panel1.php:84
472
- msgid "email"
473
- msgstr "E-mail"
474
-
475
- #: options/panel1.php:85
476
- msgid "post ID"
477
- msgstr "Indlæg (ID)"
478
-
479
- #: options/panel1.php:86
480
- msgid "status"
481
- msgstr "Status"
482
-
483
- #: options/panel1.php:89
484
- msgid "equals"
485
- msgstr "er lig med"
486
-
487
- #: options/panel1.php:90
488
- msgid "contains"
489
- msgstr "indeholder"
490
-
491
- #: options/panel1.php:91
492
- msgid "does not contain"
493
- msgstr "ikke indeholder"
494
-
495
- #: options/panel1.php:92
496
- msgid "starts with"
497
- msgstr ""
498
-
499
- #: options/panel1.php:93
500
- msgid "ends with"
501
- msgstr ""
502
-
503
- #: options/panel1.php:96
504
- msgid "results per page:"
505
- msgstr ""
506
-
507
- #: options/panel1.php:98
508
- msgid "Search"
509
- msgstr "Søg"
510
-
511
- #: options/panel1.php:106
512
- msgid "Reverse the order by Post ID"
513
- msgstr "Omvend rækkefølgen til indlægs ID"
514
-
515
- #: options/panel1.php:107 options/panel1.php:108
516
- msgid "Reverse the order by Date/Time"
517
- msgstr "Omvend rækkefølgen til Dato/tid"
518
-
519
- #: options/panel1.php:110
520
- msgid "Post (ID)"
521
- msgstr "Indlæg (ID)"
522
-
523
- #: options/panel1.php:113
524
- msgid "Search query:"
525
- msgstr "Søg"
526
-
527
- #: options/panel1.php:113
528
- msgid "Rows:"
529
- msgstr "Rækker:"
530
-
531
- #: options/panel1.php:113
532
- msgid "of"
533
- msgstr "af"
534
-
535
- #: options/panel1.php:114 templates/author.php:58 templates/user.php:58
536
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
537
- msgstr ""
538
-
539
- #: options/panel1.php:123
540
- msgid "Date and Time"
541
- msgstr "Dato og tid"
542
-
543
- #: options/panel1.php:135
544
- msgid "Subscription"
545
- msgstr "Abonnementer til"
546
-
547
- #: options/panel1.php:137
548
- msgid "Edit"
549
- msgstr ""
550
-
551
- #: options/panel1.php:138 templates/author.php:72 templates/user.php:69
552
- msgid "Delete"
553
- msgstr "Slet"
554
-
555
- #: options/panel1.php:146 templates/author.php:71 templates/user.php:68
556
- msgid "Action:"
557
- msgstr "Opgave:"
558
-
559
- #: options/panel1.php:147
560
- msgid "Delete forever"
561
- msgstr "Slet for altid"
562
-
563
- #: options/panel1.php:148 templates/author.php:73 templates/user.php:70
564
- msgid "Suspend"
565
- msgstr "Annuller"
566
-
567
- #: options/panel1.php:149
568
- msgid "Activate and set to Y"
569
- msgstr ""
570
-
571
- #: options/panel1.php:150
572
- msgid "Activate and set to R"
573
- msgstr ""
574
-
575
- #: options/panel1.php:151 templates/author.php:76 templates/user.php:73
576
- msgid "Activate"
577
- msgstr ""
578
-
579
- #: options/panel1.php:152 templates/author.php:77 templates/user.php:75
580
- msgid "Update subscriptions"
581
- msgstr "Opdater abonnementer"
582
-
583
- #: options/panel1.php:155
584
- msgid "Sorry, no subscriptions match your search criteria."
585
- msgstr "Beklager, der er ikke fundet nogle abonnenter til"
586
-
587
- #: options/panel2.php:12 options/panel2.php:63
588
- msgid "Enable default checkbox"
589
- msgstr "Slå bekræftelse til"
590
-
591
- #: options/panel2.php:15 options/panel2.php:73
592
- msgid "Checked by default"
593
- msgstr "Default afkrydset"
594
-
595
- #: options/panel2.php:18
596
- msgid "Checked by default Value"
597
- msgstr "Default afkrydset"
598
-
599
- #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
600
- msgid "Advanced subscription"
601
- msgstr "Opdater abonnement"
602
-
603
- #: options/panel2.php:27 options/panel2.php:130
604
- msgid "Custom inline style"
605
- msgstr "Tilpasset inline style"
606
-
607
- #: options/panel2.php:30 options/panel2.php:139
608
- msgid "Custom HTML"
609
- msgstr "Tilpasset HTML"
610
-
611
- #: options/panel2.php:34
612
- msgid "Checkbox label"
613
- msgstr "Tjekboks besked"
614
-
615
- #: options/panel2.php:37 options/panel2.php:163
616
- msgid "Subscribed label"
617
- msgstr "Abonnements besked"
618
-
619
- #: options/panel2.php:40
620
- msgid "Awaiting label"
621
- msgstr "Afventer besked"
622
-
623
- #: options/panel2.php:43 options/panel2.php:180
624
- msgid "Author label"
625
- msgstr "Forfatter besked"
626
-
627
- #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:57
628
- #: options/panel5.php:18 options/panel5.php:57
629
- msgid "Your settings have been successfully updated."
630
- msgstr "Dine indstillinger er blevet opdateret."
631
-
632
- #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:59
633
- #: options/panel5.php:20 options/panel5.php:59
634
- msgid "There was an error updating the following fields:"
635
- msgstr "Der var en fejl i opdateringen af disse felter:"
636
-
637
- #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
638
- #: options/panel5.php:83 options/panel5.php:92 options/panel5.php:101
639
- #: options/panel5.php:111 options/panel5.php:120 options/panel5.php:130
640
- #: options/panel5.php:139 options/panel5.php:148
641
- msgid "Yes"
642
- msgstr "Ja"
643
-
644
- #: options/panel2.php:68
645
- msgid ""
646
- "Disable this option if you want to move the subscription checkbox to a "
647
- "different place on your page."
648
- msgstr ""
649
-
650
- #: options/panel2.php:78
651
- msgid "Decide if the checkbox should be checked by default or not."
652
- msgstr "Vælg om tjekboksen default skal være afkrydset eller ej."
653
-
654
- #: options/panel2.php:87
655
- msgid "Default Checkbox Value"
656
- msgstr "Slå bekræftelse til"
657
-
658
- #: options/panel2.php:91 options/panel2.php:120
659
- msgid "All new comments"
660
- msgstr ""
661
-
662
- #: options/panel2.php:92 options/panel2.php:121
663
- msgid "Replies to this comment"
664
- msgstr ""
665
-
666
- #: options/panel2.php:94
667
- msgid ""
668
- "Select the default option for the Checkbox. Be careful! Some users might "
669
- "like to be subscribed to all the post."
670
- msgstr ""
671
-
672
- #: options/panel2.php:107
673
- msgid ""
674
- "Allow users to choose from different subscription types (all, replies only)."
675
- msgstr ""
676
-
677
- #: options/panel2.php:115
678
- msgid "Advanced default"
679
- msgstr "Default afkrydset"
680
-
681
- #: options/panel2.php:119
682
- msgid "None"
683
- msgstr ""
684
-
685
- #: options/panel2.php:124
686
- msgid ""
687
- "The default subscription type that should be selected when Advanced "
688
- "subscriptions are enable."
689
- msgstr ""
690
-
691
- #: options/panel2.php:135
692
- msgid "Custom inline CSS to add to the checkbox."
693
- msgstr "Tilpasset inline CSS til at tilføje til tjekboksen."
694
-
695
- #: options/panel2.php:143
696
- msgid ""
697
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
698
- "[checkbox_field], [checkbox_label]"
699
- msgstr ""
700
- "Tilpasset HTML kode til brug ved visning af tjekboksen. Tilladte tags: "
701
- "[checkbox_field], [checkbox_label]"
702
-
703
- #: options/panel2.php:149
704
- msgid "Messages for your visitors"
705
- msgstr ""
706
-
707
- #: options/panel2.php:153
708
- msgid "Default label"
709
- msgstr "Forfatter besked"
710
-
711
- #: options/panel2.php:158
712
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
713
- msgstr "Besked vist ved tjekboksen: Tilladt tag: [subscribe_link]"
714
-
715
- #: options/panel2.php:167
716
- msgid ""
717
- "Label shown to those who are already subscribed to a post. Allowed tag: "
718
- "[manager_link]"
719
- msgstr ""
720
- "Besked vist til dem der allerede abonnerer på et indlæg. Tilladt tag: "
721
- "[manager_link]"
722
-
723
- #: options/panel2.php:172
724
- msgid "Pending label"
725
- msgstr "Afventer besked"
726
-
727
- #: options/panel2.php:176
728
- msgid ""
729
- "Label shown to those who are already subscribed, but haven't clicked on the "
730
- "confirmation link yet. Allowed tag: [manager_link]"
731
- msgstr ""
732
- "Besked vist til dem der allerede abonnerer på et indlæg, men som ikke har "
733
- "bekræftet abonnementet endnu. Tilladt tag: [manager_link]"
734
-
735
- #: options/panel2.php:184
736
- msgid ""
737
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
738
- msgstr ""
739
- "Besked vist til forfattere (og administratorer). Tilladt tag: [manager_link]"
740
-
741
- #: options/panel2.php:189 options/panel3.php:197 options/panel4.php:182
742
- #: options/panel5.php:184
743
- msgid "Save Changes"
744
- msgstr "Gem ændringer"
745
-
746
- #: options/panel3.php:13 options/panel3.php:87
747
- msgid "Virtual Management Page"
748
- msgstr "Administrations side"
749
-
750
- #: options/panel3.php:18 options/panel3.php:96
751
- msgid "Page title"
752
- msgstr "Side titel"
753
-
754
- #: options/panel3.php:23 options/panel3.php:105
755
- msgid "Management URL"
756
- msgstr "Administrations side"
757
-
758
- #: options/panel3.php:28 options/panel3.php:117
759
- msgid "Custom HEAD meta"
760
- msgstr ""
761
-
762
- #: options/panel3.php:34 options/panel3.php:131
763
- msgid "Request link"
764
- msgstr "Anmod om link"
765
-
766
- #: options/panel3.php:39 options/panel3.php:141
767
- msgid "Request submitted"
768
- msgstr "Forespørgsel afsendt"
769
-
770
- #: options/panel3.php:44 options/panel3.php:151
771
- msgid "Subscribe without commenting"
772
- msgstr "Abonner uden at kommentere"
773
-
774
- #: options/panel3.php:49 options/panel3.php:161
775
- msgid "Subscription processed"
776
- msgstr "Abonnement udført"
777
-
778
- #: options/panel3.php:54 options/panel3.php:171
779
- msgid "Subscription processed (DCI)"
780
- msgstr "Abonnement udført (Bekræftelse)"
781
-
782
- #: options/panel3.php:59 options/panel3.php:180
783
- msgid "Authors"
784
- msgstr "Forfattere"
785
-
786
- #: options/panel3.php:64 options/panel3.php:188
787
- msgid "Users"
788
- msgstr "Brugere"
789
-
790
- #: options/panel3.php:90
791
- msgid "Enabled"
792
- msgstr ""
793
-
794
- #: options/panel3.php:91
795
- msgid "Disabled"
796
- msgstr ""
797
-
798
- #: options/panel3.php:92
799
- msgid ""
800
- "Disable the virtual management page if you need to create a <a href=\"http://"
801
- "behstant.com/subscribe-reloaded/realMgnPage.php\">real page</a> to make your "
802
- "theme happy."
803
- msgstr ""
804
-
805
- #: options/panel3.php:101
806
- msgid "Title of the page your visitors will use to manage their subscriptions."
807
- msgstr ""
808
- "Titel på siden de besøgende bruger til at administrere deres abonnementer."
809
-
810
- #: options/panel3.php:109
811
- msgid ""
812
- "The permalink for your management page (something like <code>/manage-"
813
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
814
- "b> actually exist in the system, but its link must follow your permalink "
815
- "structure."
816
- msgstr ""
817
- "Permalink til din administrations side (f.eks. som <code>/administrer-"
818
- "abonnement</code> eller <code>/?page_id=345</code>). Denne side "
819
- "<b>eksisterer ikke</b> ikke i dit system, men linket skal følge dine "
820
- "permalink indstillinger."
821
-
822
- #: options/panel3.php:111
823
- msgid ""
824
- "Warning: it looks like the value you are using may be incompatible with your "
825
- "permalink structure"
826
- msgstr ""
827
- "Advarsel: Det ser ud til at der format du bruger, måske ikke er matcher dine "
828
- "permalink indstillinger"
829
-
830
- #: options/panel3.php:121
831
- msgid ""
832
- "Specify your custom HTML code to be added to the HEAD section of the page. "
833
- "Use <strong>single</strong> quotes for values."
834
- msgstr ""
835
-
836
- #: options/panel3.php:127 options/panel4.php:100
837
- msgid "Messages"
838
- msgstr "E-mail beskeder"
839
-
840
- #: options/panel3.php:136
841
- msgid "Text shown to those who request to manage their subscriptions."
842
- msgstr "Tekst vist til dem der forespørger om adgang til deres abonnementer."
843
-
844
- #: options/panel3.php:146
845
- msgid ""
846
- "Thank you note shown after the request here above has been processed. "
847
- "Allowed tags: [post_title], [post_permalink]"
848
- msgstr ""
849
- "Kvitteringsbesked vist efter forespørgslen ovenfor er udført. Tilladte tags: "
850
- "[post_title], [post_permalink]"
851
-
852
- #: options/panel3.php:156
853
- msgid ""
854
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
855
- "[post_title], [post_permalink]"
856
- msgstr ""
857
- "Tekst vist til dem der abonnerer uden at kommentere. Tilladte tags: "
858
- "[post_title], [post_permalink]"
859
-
860
- #: options/panel3.php:166
861
- msgid ""
862
- "Thank you note shown after the subscription request has been processed "
863
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
864
- msgstr ""
865
- "Kvitteringsbesked vist efter abonnements forespørgslen er udført "
866
- "(bekræftelse slået fra). Tilladte tags: [post_title], [post_permalink]"
867
-
868
- #: options/panel3.php:176
869
- msgid ""
870
- "Thank you note shown after the subscription request has been processed "
871
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
872
- msgstr ""
873
- "Kvitteringsbesked vist efter abonnements forespørgslen er udført "
874
- "(bekræftelse slået til). Tilladte tags: [post_title], [post_permalink]"
875
-
876
- #: options/panel3.php:184
877
- msgid "Introductory text for the authors' management page."
878
- msgstr "Introduktions tekst til forfatterens administrations side."
879
-
880
- #: options/panel3.php:192
881
- msgid "Introductory text for the users' management page."
882
- msgstr "Introduktions tekst til brugerens administrations side."
883
-
884
- #: options/panel4.php:16 options/panel4.php:72
885
- msgid "Sender name"
886
- msgstr "Afsender navn"
887
-
888
- #: options/panel4.php:21 options/panel4.php:85
889
- msgid "Sender email address"
890
- msgstr "Afsender e-mail adresse"
891
-
892
- #: options/panel4.php:26 options/panel4.php:105
893
- msgid "Notification subject"
894
- msgstr "E-mail emne"
895
-
896
- #: options/panel4.php:31 options/panel4.php:118
897
- msgid "Notification message"
898
- msgstr "E-mail besked"
899
-
900
- #: options/panel4.php:36 options/panel4.php:132
901
- msgid "Double check subject"
902
- msgstr "Bekræftelses e-mail emne"
903
-
904
- #: options/panel4.php:41 options/panel4.php:145
905
- msgid "Double check message"
906
- msgstr "Bekræftelses e-mail besked"
907
-
908
- #: options/panel4.php:46 options/panel4.php:157
909
- msgid "Management subject"
910
- msgstr "Administrations e-mail emne"
911
-
912
- #: options/panel4.php:51 options/panel4.php:170
913
- msgid "Management message"
914
- msgstr "Administrations e-mail besked"
915
-
916
- #: options/panel4.php:79
917
- msgid ""
918
- "Name to use for the \"from\" field when sending a new notification to the "
919
- "user."
920
- msgstr ""
921
- "Navn som afsender i \"fra\" feltet når der sendes en besked til brugeren."
922
-
923
- #: options/panel4.php:93
924
- msgid ""
925
- "Email address to use for the \"from\" field when sending a new notification "
926
- "to the user."
927
- msgstr ""
928
- "E-mail adresse som afsender i \"fra\" feltet når der sendes en besked til "
929
- "brugeren."
930
-
931
- #: options/panel4.php:112
932
- msgid "Subject of the notification email. Allowed tag: [post_title]"
933
- msgstr "Emne til adviserings e-mail. Tilladt tag: [post_title]"
934
-
935
- #: options/panel4.php:126
936
- msgid ""
937
- "Content of the notification email. Allowed tags: [post_title], "
938
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
939
- "[manager_link]"
940
- msgstr ""
941
- "Indhold af adviserings e-mailen. Tilladte tags: [post_title], "
942
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
943
- "[manager_link]"
944
-
945
- #: options/panel4.php:139
946
- msgid "Subject of the confirmation email. Allowed tag: [post_title]"
947
- msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
948
-
949
- #: options/panel4.php:151
950
- msgid ""
951
- "Content of the confirmation email. Allowed tags: [post_permalink], "
952
- "[confirm_link], [post_title], [manager_link]"
953
- msgstr ""
954
- "Indhold af bekræftelses e-mailen. Tilladte tags: [post_permalink], "
955
- "[confirm_link], [post_title], [manager_link]"
956
-
957
- #: options/panel4.php:164
958
- msgid ""
959
- "Subject of the mail sent to those who request to access their management "
960
- "page. Allowed tag: [blog_name]"
961
- msgstr ""
962
- "Emnet i e-mailen sendt til dem der beder om adgang til deres administrations "
963
- "side. Tilladt tag: [blog_name]"
964
-
965
- #: options/panel4.php:176
966
- msgid ""
967
- "Content of the management email. Allowed tags: [blog_name], [manager_link]"
968
- msgstr ""
969
- "Indhold af administrations e-mailen. Tilladte tags: [blog_name], "
970
- "[manager_link]"
971
-
972
- #: options/panel5.php:28 options/panel5.php:72
973
- msgid "Autopurge requests"
974
- msgstr "Autoslet forespørgsler"
975
-
976
- #: options/panel5.php:31 options/panel5.php:81
977
- msgid "Enable double check"
978
- msgstr "Slå bekræftelse til"
979
-
980
- #: options/panel5.php:34 options/panel5.php:89
981
- msgid "Subscribe authors"
982
- msgstr "Abonnements besked"
983
-
984
- #: options/panel5.php:37 options/panel5.php:99
985
- msgid "Enable HTML emails"
986
- msgstr "Slå HTML e-mails til"
987
-
988
- #: options/panel5.php:40
989
- msgid "HTMLify Links in HTML emails"
990
- msgstr ""
991
-
992
- #: options/panel5.php:43
993
- msgid "Send trackbacks"
994
- msgstr "Send trackbacks"
995
-
996
- #: options/panel5.php:46
997
- msgid "Notify admin"
998
- msgstr "Adviser administrator"
999
-
1000
- #: options/panel5.php:49 options/panel5.php:137
1001
- msgid "Let admin subscribe"
1002
- msgstr "Lad administrator abonnere"
1003
-
1004
- #: options/panel5.php:52 options/panel5.php:146
1005
- msgid "BCC admin on Notifications"
1006
- msgstr "E-mail emne"
1007
-
1008
- #: options/panel5.php:75
1009
- msgid "days"
1010
- msgstr "dage"
1011
-
1012
- #: options/panel5.php:76
1013
- msgid ""
1014
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1015
- "this feature."
1016
- msgstr ""
1017
- "Slet afventende abonnementer (ikke bekræftede) after X dage. 0 slår denne "
1018
- "funktion fra."
1019
-
1020
- #: options/panel5.php:85
1021
- msgid ""
1022
- "Send a notification email to confirm the subscription (to avoid addresses "
1023
- "misuse)."
1024
- msgstr ""
1025
- "Send en bekræftelses e-mail for at bekræfte abonnement (for at undgå e-mail "
1026
- "adresse misbrug)."
1027
-
1028
- #: options/panel5.php:94
1029
- msgid ""
1030
- "Automatically subscribe authors to their own articles (not retroactive)."
1031
- msgstr ""
1032
-
1033
- #: options/panel5.php:103
1034
- msgid ""
1035
- "If enabled, will send email messages with content-type = text/html instead "
1036
- "of text/plain"
1037
- msgstr ""
1038
- "Hvis slået til, så vil e-mail beskeder indeholde = tekst/html i stedet for "
1039
- "tekst/plain"
1040
-
1041
- #: options/panel5.php:108
1042
- msgid "HTMLify links in emails"
1043
- msgstr ""
1044
-
1045
- #: options/panel5.php:113
1046
- msgid ""
1047
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1048
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1049
- msgstr ""
1050
-
1051
- #: options/panel5.php:118
1052
- msgid "Process trackbacks"
1053
- msgstr "Send trackbacks"
1054
-
1055
- #: options/panel5.php:122
1056
- msgid ""
1057
- "Notify users when a new trackback or pingback is added to the discussion."
1058
- msgstr ""
1059
- "Adviser abonnenter når en ny trackback eller pingback er tilføjet til "
1060
- "kommentarer."
1061
-
1062
- #: options/panel5.php:127
1063
- msgid "Track all subscriptions"
1064
- msgstr "Advisering ved abonnementer"
1065
-
1066
- #: options/panel5.php:132
1067
- msgid "Notify the administrator when users subscribe without commenting."
1068
- msgstr "Adviser administrator når brugere abonnerer uden at kommentere."
1069
-
1070
- #: options/panel5.php:141
1071
- msgid "Let the administrator subscribe to comments when logged in."
1072
- msgstr ""
1073
- "Lad administrator abonnere på kommentarer når administrator er logget ind."
1074
-
1075
- #: options/panel5.php:150
1076
- msgid "Send a copy of all Notifications to the administrator."
1077
- msgstr ""
1078
-
1079
- #: options/panel5.php:155
1080
- msgid "StCR Unique Key"
1081
- msgstr ""
1082
-
1083
- #: options/panel5.php:160
1084
- msgid "This Unique Key is not set, please click the following button to "
1085
- msgstr ""
1086
-
1087
- #: options/panel5.php:164 options/panel5.php:176
1088
- msgid "Generate"
1089
- msgstr ""
1090
-
1091
- #: options/panel5.php:172
1092
- msgid ""
1093
- "This Unique Key will be use to send the notification to your subscribers "
1094
- "with more\n"
1095
- "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsecurity."
1096
- msgstr ""
1097
-
1098
- #: options/panel6.php:8 options/panel7.php:8
1099
- #, fuzzy
1100
- msgid "Support the developers"
1101
- msgstr "Støt forfatteren"
1102
-
1103
- #: options/panel6.php:18
1104
- #, fuzzy
1105
- msgid ""
1106
- "How valuable is the feature offered by this plugin to your visitors? please "
1107
- "consider supporting the author if this plugin made your web site better, "
1108
- "especially if you are making money out of it. Any donation received will be "
1109
- "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
1110
- "strong>, and to buy some food for my hungry family."
1111
- msgstr ""
1112
- "Hvor værdifuld er denne feature via dette plugin for dine besøgende? "
1113
- "Subscribe to Comments Reloaded er og vil altid være gratis, men overvej at "
1114
- "støtte forfatteren til dette plugin som har gjort din side bedre, specielt "
1115
- "hvis du tjener penge på siden. Enhver donation vil blive investeret i den "
1116
- "videre udvikling af Subscribe to Comments Reloaded og til at købe mad til "
1117
- "min sultne familie."
1118
-
1119
- #: options/panel6.php:20
1120
- msgid "Don't want to donate? You can still help"
1121
- msgstr "Vil du ikke donere? Du kan stadig hjælpe"
1122
-
1123
- #: options/panel6.php:21
1124
- #, fuzzy
1125
- msgid ""
1126
- "If you don't want to donate money, please consider blogging about my plugin "
1127
- "with a link to the plugin's page. Please let your readers know what makes "
1128
- "your blog better. You can also contribute donating your time: do not "
1129
- "hesitate to send me bug reports, your localization files, ideas on how to "
1130
- "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
1131
- "you do, thanks for using my plugin!"
1132
- msgstr ""
1133
- "Hvis du ikke ønsker at donere penge, så overvej venligst at blogge om mit "
1134
- "plugin med et link til plugin siden. Lad dine læsere vide hvad der gør din "
1135
- "side bedre. Du kan også donere din tid: Tøv ikke med at sende mig fejl "
1136
- "rapporter, dine sprogfiler eller ideer til at forbedre Subscribe to Comments "
1137
- "Reloaded osv. Hvad end du gør, mange tak fordi du bruger mit plugin!"
1138
-
1139
- #: options/panel6.php:23
1140
- #, fuzzy
1141
- msgid "Subscribe to the Beta testers"
1142
- msgstr "Abonnements besked"
1143
-
1144
- #: options/panel6.php:24
1145
- msgid ""
1146
- "Before a new Update we release a Beta version so that our current users can "
1147
- "give us feedback if they find a bug, If you want to join the tester list you "
1148
- "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
1149
- "a>"
1150
- msgstr ""
1151
-
1152
- #: options/panel6.php:26
1153
- msgid "Vote and show your appreciation"
1154
- msgstr "Stem og vis din påskønnelse"
1155
-
1156
- #: options/panel6.php:27
1157
- #, fuzzy
1158
- msgid ""
1159
- "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
1160
- "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
1161
- "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
1162
- msgstr ""
1163
- "Fortæl andre hvis Subscribe to Comments Reloaded virker for dig og hvor god "
1164
- "den er. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
1165
- "reloaded/\">Rate den</a> på Plugin Directory siden."
1166
-
1167
- #: options/panel7.php:18
1168
- msgid "Did you find a Bug on the plugin?"
1169
- msgstr ""
1170
-
1171
- #: options/panel7.php:19
1172
- msgid ""
1173
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1174
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1175
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1176
- "WordPress Support page."
1177
- msgstr ""
1178
-
1179
- #: templates/author.php:57
1180
- msgid "Title"
1181
- msgstr "Titel"
1182
-
1183
- #: templates/author.php:69 templates/user.php:66
1184
- msgid "Select all"
1185
- msgstr "Vælg alt"
1186
-
1187
- #: templates/author.php:70 templates/user.php:67
1188
- msgid "Invert selection"
1189
- msgstr "Vend det udvalgte"
1190
-
1191
- #: templates/author.php:74 templates/user.php:71
1192
- msgid "All comments"
1193
- msgstr ""
1194
-
1195
- #: templates/author.php:80 templates/user.php:78
1196
- msgid "No subscriptions match your search criteria."
1197
- msgstr ""
1198
-
1199
- #: templates/request-management-link.php:71 templates/subscribe.php:91
1200
- msgid "Send"
1201
- msgstr "Send"
1202
-
1203
- #: templates/subscribe.php:43 templates/subscribe.php:44
1204
- msgid "New subscription to"
1205
- msgstr "Ny abonnent til"
1206
-
1207
- #: templates/subscribe.php:44
1208
- msgid "User:"
1209
- msgstr "Bruger:"
1210
-
1211
- #~ msgid "Bold"
1212
- #~ msgstr "Fed"
1213
-
1214
- #~ msgid "Italic"
1215
- #~ msgstr "Kursiv"
1216
-
1217
- #~ msgid "Link"
1218
- #~ msgstr "Link"
1219
-
1220
- #~ msgid "Image"
1221
- #~ msgstr "Billede"
1222
-
1223
- #~ msgid ""
1224
- #~ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1225
- #~ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1226
- #~ msgstr ""
1227
- #~ "Hvis du vil sponsorere dette plugin, tøv ikke med at <a href='http://"
1228
- #~ "behstant.com/negocio/contact.php' target='_blank'>kontakte mig</a>."
1229
-
1230
- #~ msgid "Notify authors"
1231
- #~ msgstr "Adviser forfatter"
1232
-
1233
- #~ msgid "Notify the administrator when a new comment is posted."
1234
- #~ msgstr "Adviser administrator når der er en ny kommentar."
1235
-
1236
- #~ msgid "Subscribed"
1237
- #~ msgstr "Abonneret"
1238
-
1239
- #~ msgid "Management Page ID"
1240
- #~ msgstr "Administrer Side ID"
1241
-
1242
- #~ msgid "Management page"
1243
- #~ msgstr "Administrations side"
1244
-
1245
- #~ msgid "Awaiting confirmation"
1246
- #~ msgstr "Afventer bekræftelse"
1247
-
1248
- #~ msgid "Stats"
1249
- #~ msgstr "Statistik"
1250
-
1251
- #~ msgid "Other Messages"
1252
- #~ msgstr "Andre beskeder"
1253
-
1254
- #~ msgid "The status has been successfully updated. Rows affected:"
1255
- #~ msgstr "Status er blevet opdateret. Rækker berørt:"
1256
-
1257
- #~ msgid ""
1258
- #~ "Update the email address associated to a specific subscription (by post "
1259
- #~ "ID)."
1260
- #~ msgstr ""
1261
- #~ "Updater e-mail adresser associeret til et specifikt abonnement (pr. post "
1262
- #~ "ID)"
1263
-
1264
- #~ msgid "PID"
1265
- #~ msgstr "PID"
1266
-
1267
- #~ msgid "Change status"
1268
- #~ msgstr "Ændre status"
1269
-
1270
- #~ msgid ""
1271
- #~ "Change the status of an email address or permanently delete all its "
1272
- #~ "subscriptions."
1273
- #~ msgstr ""
1274
- #~ "Ændre status på en e-mail adresse eller slette alle tilhørende "
1275
- #~ "abonnementer permanent."
1276
-
1277
- #~ msgid "Resume"
1278
- #~ msgstr "Genoptag"
1279
-
1280
- #~ msgid "Update email address"
1281
- #~ msgstr "Opdater e-mail adresse"
1282
-
1283
- #~ msgid ""
1284
- #~ "You can \"mass update\" all the occurrences of a given email address "
1285
- #~ "(exact matches only)."
1286
- #~ msgstr ""
1287
- #~ "Du kan \"masse opdatere\" alle forekomster af en given e-mail adresse "
1288
- #~ "(kun eksakt match)."
1289
-
1290
- #~ msgid "Search email address"
1291
- #~ msgstr "Søg e-mail adresse"
1292
-
1293
- #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1294
- #~ msgstr "Beskrivelse: Y: Abonnerer, N: Annulleret, C: afventer bekræftelse"
1295
-
1296
- #~ msgid "StCR table has been successfully optimized."
1297
- #~ msgstr "StCR tabel er blevet optimeret."
1298
-
1299
- #~ msgid "Filter by date"
1300
- #~ msgstr "Filtrer via dato"
1301
-
1302
- #~ msgid "Month"
1303
- #~ msgstr "Måned"
1304
-
1305
- #~ msgid "Year"
1306
- #~ msgstr "År"
1307
-
1308
- #~ msgid "No data to display"
1309
- #~ msgstr "Ingen data at vise"
1310
-
1311
- #~ msgid "optimize"
1312
- #~ msgstr "optimer"
1313
-
1314
- #~ msgid "Database"
1315
- #~ msgstr "Database"
1316
-
1317
- #~ msgid "Engine"
1318
- #~ msgstr "Engine"
1319
-
1320
- #~ msgid "Created on"
1321
- #~ msgstr "Lavet den"
1322
-
1323
- #~ msgid "Index length"
1324
- #~ msgstr "Index længde"
1325
-
1326
- #~ msgid "Records"
1327
- #~ msgstr "Records"
1328
-
1329
- #~ msgid "Average Record Length"
1330
- #~ msgstr "Gennemsnits Record længde"
1331
-
1332
- #~ msgid "Approximate Overhead"
1333
- #~ msgstr "Omtrentlig Overhead"
1334
-
1335
- #~ msgid "Analysis for"
1336
- #~ msgstr "Analyse for"
1337
-
1338
- #~ msgid "Most active users"
1339
- #~ msgstr "Mest aktive brugere"
1340
-
1341
- #~ msgid "Popular posts"
1342
- #~ msgstr "Populære indlæg"
1343
-
1344
- #~ msgid "Custom CSS Class"
1345
- #~ msgstr "Tilpasset CSS Class"
1346
-
1347
- #~ msgid ""
1348
- #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1349
- #~ "its style."
1350
- #~ msgstr ""
1351
- #~ "Tilpasset CSS class associeret til tjekboksen, hvis du ønsker at tilrette "
1352
- #~ "boksens udseende."
1353
-
1354
- #~ msgid "Official Sponsors"
1355
- #~ msgstr "Officielle sponsorer"
1356
-
1357
- #~ msgid "Subscriptions have been successfully updated."
1358
- #~ msgstr "Abonnementer er blevet opdateret."
1359
-
1360
- #~ msgid "Sorry, no subscriptions found."
1361
- #~ msgstr "Beklager, der er ikke fundet nogle abonnementer."
1362
-
1363
- #~ msgid "All the subscriptions have been successfully updated."
1364
- #~ msgstr "Alle abonnementer er blevet opdateret."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-11 01:59-0600\n"
6
+ "PO-Revision-Date: 2016-01-11 01:59-0600\n"
7
+ "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: da_DK\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ../\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "X-Poedit-SearchPath-0: .\n"
17
+
18
+ #: wp_subscribe_reloaded.php:124
19
+ msgid "Settings"
20
+ msgstr ""
21
+
22
+ #: wp_subscribe_reloaded.php:1030
23
+ msgid "Don't subscribe"
24
+ msgstr "Lad administrator abonnere"
25
+
26
+ #: wp_subscribe_reloaded.php:1031
27
+ msgid "All"
28
+ msgstr ""
29
+
30
+ #: wp_subscribe_reloaded.php:1032 templates/user.php:73
31
+ #: templates/author.php:75
32
+ msgid "Replies to my comments"
33
+ msgstr ""
34
+
35
+ #: utils/stcr_manage.php:218
36
+ msgid ""
37
+ "Notify me of followup comments via e-mail. You can also <a "
38
+ "href='[subscribe_link]'>subscribe</a> without commenting."
39
+ msgstr ""
40
+ "Giv mig besked ved andre kommentarer via e-mail. Du kan også <a "
41
+ "href='[subscribe_link]'>abonnere</a> uden at kommentere."
42
+
43
+ #: utils/stcr_manage.php:219
44
+ msgid ""
45
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
46
+ "subscriptions."
47
+ msgstr ""
48
+ "Du abonnerer på dette indlæg. <a href='[manager_link]'>Rediger</a> dine "
49
+ "abonnementer."
50
+
51
+ #: utils/stcr_manage.php:220
52
+ msgid ""
53
+ "Your subscription to this post needs to be confirmed. <a "
54
+ "href='[manager_link]'>Manage your subscriptions</a>."
55
+ msgstr ""
56
+ "Dit abonnement til dette indlæg kræver bekræftelse. <a "
57
+ "href='[manager_link]'>Rediger dine abonnementer</a>."
58
+
59
+ #: utils/stcr_manage.php:221
60
+ msgid ""
61
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
62
+ msgstr ""
63
+ "Du kan <a href='[manager_link]'>redigere abonnementerne</a> til dette indlæg."
64
+
65
+ #: utils/stcr_manage.php:225 options/index.php:57
66
+ msgid "Manage subscriptions"
67
+ msgstr "Rediger dine abonnementer"
68
+
69
+ #: utils/stcr_manage.php:227
70
+ msgid ""
71
+ "To manage your subscriptions, please enter your email address here below. We "
72
+ "will send you a message containing the link to access your personal "
73
+ "management page."
74
+ msgstr ""
75
+ "For at redigere dine abonnementer, så indtast venligst din e-mail adresse "
76
+ "herunder. Vi sender dig en besked med et link til din personlige abonnement "
77
+ "side."
78
+
79
+ #: utils/stcr_manage.php:228
80
+ msgid ""
81
+ "Thank you for using our subscription service. Your request has been "
82
+ "completed, and you should receive an email with the management link in a few "
83
+ "minutes."
84
+ msgstr ""
85
+ "Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
86
+ "vil modtage en e-mail med et link med adgang til din personlige abonnements "
87
+ "side."
88
+
89
+ #: utils/stcr_manage.php:229
90
+ msgid ""
91
+ "You can follow the discussion on <strong>[post_title]</strong> without "
92
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
93
+ "form here below and you're all set."
94
+ msgstr ""
95
+ "Du kan abonnere på diskussionen på <strong>[post_title]</strong> uden at du "
96
+ "behøver at skrive en kommentar. Bare indtast din e-mail adresse i felter "
97
+ "nedenfor og du vil blive orienteret ved nye kommentarer."
98
+
99
+ #: utils/stcr_manage.php:230
100
+ msgid ""
101
+ "Thank you for using our subscription service. Your request has been "
102
+ "completed. You will receive a notification email every time a new comment to "
103
+ "this article is approved and posted by the administrator."
104
+ msgstr ""
105
+ "Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
106
+ "vil modtage en e-mail hver gang en ny kommentar bliver godkendt af "
107
+ "administrator."
108
+
109
+ #: utils/stcr_manage.php:231
110
+ msgid ""
111
+ "Thank you for using our subscription service. In order to confirm your "
112
+ "request, please check your email for the verification message and follow the "
113
+ "instructions."
114
+ msgstr ""
115
+ "Tak for at bruge vores abonnements service. For at kunne udføre din "
116
+ "forespørgsel, tjek din e-mail for en bekræftelses e-mail og følg "
117
+ "instruktionerne i denne e-mail."
118
+
119
+ #: utils/stcr_manage.php:232
120
+ msgid ""
121
+ "In order to cancel or suspend one or more notifications, select the "
122
+ "corresponding checkbox(es) and click on the button at the end of the list."
123
+ msgstr ""
124
+ "For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
125
+ "korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
126
+ "listen."
127
+
128
+ #: utils/stcr_manage.php:233
129
+ msgid ""
130
+ "In order to cancel or suspend one or more notifications, select the "
131
+ "corresponding checkbox(es) and click on the button at the end of the list. "
132
+ "You are currently subscribed to:"
133
+ msgstr ""
134
+ "For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
135
+ "korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
136
+ "listen. Du abonnerer i øjeblikket på:"
137
+
138
+ #: utils/stcr_manage.php:237
139
+ msgid "There is a new comment to [post_title]"
140
+ msgstr "Der er en ny kommentar til [post_title]"
141
+
142
+ #: utils/stcr_manage.php:238
143
+ msgid ""
144
+ "There is a new comment to [post_title].\n"
145
+ "Comment Link: [comment_permalink]\n"
146
+ "Author: [comment_author]\n"
147
+ "Comment:\n"
148
+ "[comment_content]\n"
149
+ "Permalink: [post_permalink]\n"
150
+ "Manage your subscriptions: [manager_link]"
151
+ msgstr ""
152
+ "Der er en ny kommentar til [post_title].Kommentar Link: "
153
+ "[comment_permalink]Forfatter: [comment_author]Kommentar:"
154
+ "[comment_content]Link til indlæg: [post_permalink]Rediger dit abonnement på "
155
+ "kommentarer: [manager_link]"
156
+
157
+ #: utils/stcr_manage.php:239
158
+ msgid "Please confirm your subscription to [post_title]"
159
+ msgstr "Venligst bekræft dit abonnement kommentarer til [post_title]"
160
+
161
+ #: utils/stcr_manage.php:240
162
+ msgid ""
163
+ "You have requested to be notified every time a new comment is added to:\n"
164
+ "[post_permalink]\n"
165
+ "\n"
166
+ "Please confirm your request by clicking on this link:\n"
167
+ "[confirm_link]"
168
+ msgstr ""
169
+ "Du har bedt om at blive adviseret hver gang der kommer en ny kommentar til: "
170
+ "[post_permalink]Venligst bekræft dette ved at følge dette link:[confirm_link]"
171
+
172
+ #: utils/stcr_manage.php:241
173
+ msgid "Manage your subscriptions on [blog_name]"
174
+ msgstr "Rediger dit abonnement kommentarer [blog_name]"
175
+
176
+ #: utils/stcr_manage.php:242
177
+ msgid ""
178
+ "You have requested to manage your subscriptions to the articles on "
179
+ "[blog_name]. Follow this link to access your personal page:\n"
180
+ "[manager_link]"
181
+ msgstr ""
182
+ "Du har bedt om at redigere dit abonnement på kommentarer på [blog_name].Følg "
183
+ "dette link for at komme til din personlige abonnements side:[manager_link]"
184
+
185
+ #: utils/stcr_manage.php:387
186
+ #, fuzzy
187
+ msgid "Subscriptions"
188
+ msgstr "Abonnementer til"
189
+
190
+ #: utils/stcr_manage.php:416 options/panel5.php:87 options/panel5.php:96
191
+ #: options/panel5.php:105 options/panel5.php:115 options/panel5.php:124
192
+ #: options/panel5.php:134 options/panel5.php:143 options/panel5.php:152
193
+ #: options/panel5.php:161 options/panel2.php:67 options/panel2.php:77
194
+ #: options/panel2.php:106
195
+ msgid "No"
196
+ msgstr "Nej"
197
+
198
+ #: utils/stcr_manage.php:443
199
+ msgid ""
200
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
201
+ msgstr ""
202
+ "Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
203
+ "officielle"
204
+
205
+ #: utils/stcr_manage.php:443
206
+ msgid "support forum"
207
+ msgstr "support forum"
208
+
209
+ #: utils/stcr_manage.php:444
210
+ msgid "Feeling generous?"
211
+ msgstr "Føler du dig generøs?"
212
+
213
+ #: utils/stcr_manage.php:444
214
+ msgid "Donate a few bucks!"
215
+ msgstr "Doner et par dollar!"
216
+
217
+ #: utils/stcr_upgrade.php:53
218
+ msgid "Important Notice"
219
+ msgstr ""
220
+
221
+ #: utils/stcr_upgrade.php:96
222
+ msgid ""
223
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
224
+ "database has been sanitized to prevent the raw html messages. <a class="
225
+ "\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-animation\" "
226
+ "src=\""
227
+ msgstr ""
228
+
229
+ #: utils/stcr_upgrade.php:151
230
+ msgid ""
231
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
232
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
233
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
234
+ msgstr ""
235
+
236
+ #: utils/stcr_upgrade.php:151
237
+ msgid ""
238
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
239
+ "Comments to prevent confusion between the two plugins."
240
+ msgstr ""
241
+
242
+ #: utils/stcr_upgrade.php:152
243
+ msgid ""
244
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
245
+ "that you want to import, you'll need to import that data manually, as only "
246
+ "one import routine will ever run to prevent data loss."
247
+ msgstr ""
248
+
249
+ #: utils/stcr_upgrade.php:153 utils/stcr_upgrade.php:225
250
+ #: utils/stcr_upgrade.php:374
251
+ msgid ""
252
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
253
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
254
+ "your configuration.<a class=\"dismiss\" href=\"#\">Got it. </a><img class="
255
+ "\"stcr-loading-animation\" src=\""
256
+ msgstr ""
257
+
258
+ #: utils/stcr_upgrade.php:224
259
+ msgid ""
260
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
261
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
262
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
263
+ msgstr ""
264
+
265
+ #: utils/stcr_upgrade.php:224
266
+ msgid ""
267
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
268
+ "Notification to prevent confusion between the two plugins."
269
+ msgstr ""
270
+
271
+ #: utils/stcr_upgrade.php:371
272
+ msgid ""
273
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
274
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
275
+ "were detected and automatically imported into <strong>Subscribe to Comments "
276
+ "Reloaded</strong>."
277
+ msgstr ""
278
+
279
+ #: utils/stcr_upgrade.php:371
280
+ msgid ""
281
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
282
+ "Subscriptions to prevent confusion between the two plugins."
283
+ msgstr ""
284
+
285
+ #: utils/stcr_upgrade.php:372
286
+ msgid ""
287
+ "If you have subscription data from another plugin (such as Subscribe to "
288
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
289
+ "you'll need to import that data manually, as only one import routine will "
290
+ "ever run to prevent data loss."
291
+ msgstr ""
292
+
293
+ #: utils/stcr_upgrade.php:373
294
+ msgid ""
295
+ "<strong>Note:</strong> If you were previously using the "
296
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
297
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
298
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
299
+ "respectively."
300
+ msgstr ""
301
+
302
+ #: utils/stcr_upgrade.php:387
303
+ msgid ""
304
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
305
+ msgstr ""
306
+
307
+ #: utils/stcr_upgrade.php:388
308
+ msgid ""
309
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
310
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
311
+ msgstr ""
312
+
313
+ #: utils/stcr_upgrade.php:389
314
+ msgid ""
315
+ "If you want to donate you can do it via <a href=\"\n"
316
+ "https://www.paypal.com/cgi-bin/webscr?"
317
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
318
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
319
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
320
+ msgstr ""
321
+
322
+ #: utils/stcr_upgrade.php:391
323
+ msgid ""
324
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
325
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
326
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Got it. </"
327
+ "a><img class=\"stcr-loading-animation\" src=\""
328
+ msgstr ""
329
+
330
+ #: utils/stcr_upgrade.php:403
331
+ msgid ""
332
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
333
+ "160106."
334
+ msgstr ""
335
+
336
+ #: utils/stcr_upgrade.php:404
337
+ msgid ""
338
+ "This version includes many changes and fixes to improve your experience with "
339
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
340
+ "email templates, Subscription Checkbox position, and more!"
341
+ msgstr ""
342
+
343
+ #: utils/stcr_upgrade.php:405
344
+ msgid ""
345
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
346
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
347
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
348
+ "class=\"stcr-loading-animation\" src=\""
349
+ msgstr ""
350
+
351
+ #: utils/stcr_upgrade.php:419
352
+ msgid "Announcement: Introducing Comment Mail"
353
+ msgstr ""
354
+
355
+ #: utils/stcr_upgrade.php:420
356
+ msgid ""
357
+ "<strong><a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
358
+ "\">Comment Mail</strong></a> is a new free plugin based on the original "
359
+ "<strong>Subscribe to Comments Reloaded</strong> and includes all of the core "
360
+ "StCR features."
361
+ msgstr ""
362
+
363
+ #: utils/stcr_upgrade.php:421
364
+ msgid ""
365
+ "A powerful StCR importer lets you import your StCR settings and "
366
+ "subscriptions into Comment Mail, allowing for a seamless transition."
367
+ msgstr ""
368
+
369
+ #: utils/stcr_upgrade.php:422
370
+ msgid ""
371
+ "Need more powerful features to manage your subscriptions but can't wait for "
372
+ "StCR? <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
373
+ "\">Take a look at Comment Mail!</a>"
374
+ msgstr ""
375
+
376
+ #: utils/stcr_upgrade.php:423
377
+ msgid ""
378
+ "<em>Note: Subscribe to Comments Reloaded remains in active development.</"
379
+ "em><a class=\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-"
380
+ "animation\" src=\""
381
+ msgstr ""
382
+
383
+ #: templates/user.php:23 templates/author.php:23
384
+ #: options/panel1-business-logic.php:70
385
+ msgid "Subscriptions deleted:"
386
+ msgstr "Abonnementer til:"
387
+
388
+ #: templates/user.php:27 templates/author.php:27
389
+ #: options/panel1-business-logic.php:74
390
+ msgid "Subscriptions suspended:"
391
+ msgstr "Abonnement udført"
392
+
393
+ #: templates/user.php:31 templates/author.php:31
394
+ #: options/panel1-business-logic.php:78
395
+ msgid "Subscriptions activated:"
396
+ msgstr "Abonnementer til:"
397
+
398
+ #: templates/user.php:35 templates/user.php:39 templates/author.php:35
399
+ #: templates/author.php:39 options/panel1-business-logic.php:82
400
+ #: options/panel1-business-logic.php:86
401
+ msgid "Subscriptions updated:"
402
+ msgstr "Abonnementer pr. dag"
403
+
404
+ #: templates/user.php:52 templates/author.php:52
405
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:22
406
+ #: options/panel1.php:117 options/panel1.php:153
407
+ msgid ""
408
+ "Please remember: this operation cannot be undone. Are you sure you want to "
409
+ "proceed?"
410
+ msgstr ""
411
+ "Vær opmærksom: Denne operation kan ikke fortrydes! Er du sikker på at du vil "
412
+ "fortsætte?"
413
+
414
+ #: templates/user.php:57 templates/request-management-link.php:73
415
+ #: templates/subscribe.php:89 options/panel1-add-subscription.php:16
416
+ #: options/panel1.php:65 options/panel1.php:126
417
+ msgid "Email"
418
+ msgstr "E-mail"
419
+
420
+ #: templates/user.php:58 templates/author.php:58 options/panel1.php:129
421
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
422
+ msgstr ""
423
+
424
+ #: templates/user.php:63
425
+ msgid "F j, Y"
426
+ msgstr ""
427
+
428
+ #: templates/user.php:67 templates/author.php:69
429
+ msgid "Select all"
430
+ msgstr "Vælg alt"
431
+
432
+ #: templates/user.php:68 templates/author.php:70
433
+ msgid "Invert selection"
434
+ msgstr "Vend det udvalgte"
435
+
436
+ #: templates/user.php:69 templates/author.php:71 options/panel1.php:161
437
+ msgid "Action:"
438
+ msgstr "Opgave:"
439
+
440
+ #: templates/user.php:70 templates/author.php:72 options/panel1.php:153
441
+ msgid "Delete"
442
+ msgstr "Slet"
443
+
444
+ #: templates/user.php:71 templates/author.php:73 options/panel1.php:163
445
+ msgid "Suspend"
446
+ msgstr "Annuller"
447
+
448
+ #: templates/user.php:72 templates/author.php:74
449
+ msgid "All comments"
450
+ msgstr ""
451
+
452
+ #: templates/user.php:74 templates/author.php:76 options/panel1.php:166
453
+ msgid "Activate"
454
+ msgstr ""
455
+
456
+ #: templates/user.php:76 templates/author.php:77 options/panel1.php:167
457
+ msgid "Update subscriptions"
458
+ msgstr "Opdater abonnementer"
459
+
460
+ #: templates/user.php:79 templates/author.php:80
461
+ #: templates/one-click-unsubscribe.php:28
462
+ msgid "No subscriptions match your search criteria."
463
+ msgstr ""
464
+
465
+ #: templates/request-management-link.php:75 templates/subscribe.php:91
466
+ msgid "Send"
467
+ msgstr "Send"
468
+
469
+ #: templates/author.php:57
470
+ msgid "Title"
471
+ msgstr "Titel"
472
+
473
+ #: templates/subscribe.php:43 templates/subscribe.php:44
474
+ msgid "New subscription to"
475
+ msgstr "Ny abonnent til"
476
+
477
+ #: templates/subscribe.php:44
478
+ msgid "User:"
479
+ msgstr "Bruger:"
480
+
481
+ #: options/panel6.php:8 options/panel7.php:8
482
+ #, fuzzy
483
+ msgid "Support the developers"
484
+ msgstr "Støt forfatteren"
485
+
486
+ #: options/panel6.php:18
487
+ #, fuzzy
488
+ msgid ""
489
+ "How valuable is the feature offered by this plugin to your visitors? please "
490
+ "consider supporting the author if this plugin made your web site better, "
491
+ "especially if you are making money out of it. Any donation received will be "
492
+ "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
493
+ "strong>, and to buy some food for my hungry family."
494
+ msgstr ""
495
+ "Hvor værdifuld er denne feature via dette plugin for dine besøgende? "
496
+ "Subscribe to Comments Reloaded er og vil altid være gratis, men overvej at "
497
+ "støtte forfatteren til dette plugin som har gjort din side bedre, specielt "
498
+ "hvis du tjener penge på siden. Enhver donation vil blive investeret i den "
499
+ "videre udvikling af Subscribe to Comments Reloaded og til at købe mad til "
500
+ "min sultne familie."
501
+
502
+ #: options/panel6.php:20
503
+ msgid "Don't want to donate? You can still help"
504
+ msgstr "Vil du ikke donere? Du kan stadig hjælpe"
505
+
506
+ #: options/panel6.php:21
507
+ #, fuzzy
508
+ msgid ""
509
+ "If you don't want to donate money, please consider blogging about my plugin "
510
+ "with a link to the plugin's page. Please let your readers know what makes "
511
+ "your blog better. You can also contribute donating your time: do not "
512
+ "hesitate to send me bug reports, your localization files, ideas on how to "
513
+ "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
514
+ "you do, thanks for using my plugin!"
515
+ msgstr ""
516
+ "Hvis du ikke ønsker at donere penge, så overvej venligst at blogge om mit "
517
+ "plugin med et link til plugin siden. Lad dine læsere vide hvad der gør din "
518
+ "side bedre. Du kan også donere din tid: Tøv ikke med at sende mig fejl "
519
+ "rapporter, dine sprogfiler eller ideer til at forbedre Subscribe to Comments "
520
+ "Reloaded osv. Hvad end du gør, mange tak fordi du bruger mit plugin!"
521
+
522
+ #: options/panel6.php:23
523
+ #, fuzzy
524
+ msgid "Subscribe to the Beta testers"
525
+ msgstr "Abonnements besked"
526
+
527
+ #: options/panel6.php:24
528
+ msgid ""
529
+ "Before a new Update we release a Beta version so that our current users can "
530
+ "give us feedback if they find a bug, If you want to join the tester list you "
531
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
532
+ "a>"
533
+ msgstr ""
534
+
535
+ #: options/panel6.php:26
536
+ msgid "Vote and show your appreciation"
537
+ msgstr "Stem og vis din påskønnelse"
538
+
539
+ #: options/panel6.php:27
540
+ #, fuzzy
541
+ msgid ""
542
+ "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
543
+ "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
544
+ "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
545
+ msgstr ""
546
+ "Fortæl andre hvis Subscribe to Comments Reloaded virker for dig og hvor god "
547
+ "den er. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
548
+ "reloaded/\">Rate den</a> på Plugin Directory siden."
549
+
550
+ #: options/panel1-business-logic.php:23
551
+ msgid "Subscription added."
552
+ msgstr "Abonnementer"
553
+
554
+ #: options/panel1-business-logic.php:39
555
+ msgid "Subscriptions updated."
556
+ msgstr "Abonnementer pr. dag"
557
+
558
+ #: options/panel1-business-logic.php:51
559
+ msgid "Subscription deleted."
560
+ msgstr "Abonnement udført"
561
+
562
+ #: options/panel1-business-logic.php:110
563
+ msgid "&laquo; Previous"
564
+ msgstr "&laquo; Forrige"
565
+
566
+ #: options/panel1-business-logic.php:114
567
+ msgid "Next &raquo;"
568
+ msgstr "Næste &raquo;"
569
+
570
+ #: options/panel5.php:18 options/panel5.php:60 options/panel3.php:73
571
+ #: options/panel4.php:70 options/panel2.php:49
572
+ msgid "Your settings have been successfully updated."
573
+ msgstr "Dine indstillinger er blevet opdateret."
574
+
575
+ #: options/panel5.php:20 options/panel5.php:62 options/panel3.php:75
576
+ #: options/panel4.php:72 options/panel2.php:51
577
+ msgid "There was an error updating the following fields:"
578
+ msgstr "Der var en fejl i opdateringen af disse felter:"
579
+
580
+ #: options/panel5.php:28 options/panel5.php:75
581
+ msgid "Autopurge requests"
582
+ msgstr "Autoslet forespørgsler"
583
+
584
+ #: options/panel5.php:31 options/panel5.php:84
585
+ msgid "Enable double check"
586
+ msgstr "Slå bekræftelse til"
587
+
588
+ #: options/panel5.php:34 options/panel5.php:92
589
+ msgid "Subscribe authors"
590
+ msgstr "Abonnements besked"
591
+
592
+ #: options/panel5.php:37 options/panel5.php:102
593
+ msgid "Enable HTML emails"
594
+ msgstr "Slå HTML e-mails til"
595
+
596
+ #: options/panel5.php:40
597
+ msgid "HTMLify Links in HTML emails"
598
+ msgstr ""
599
+
600
+ #: options/panel5.php:43
601
+ msgid "Send trackbacks"
602
+ msgstr "Send trackbacks"
603
+
604
+ #: options/panel5.php:46
605
+ msgid "Notify admin"
606
+ msgstr "Adviser administrator"
607
+
608
+ #: options/panel5.php:49 options/panel5.php:140
609
+ msgid "Let admin subscribe"
610
+ msgstr "Lad administrator abonnere"
611
+
612
+ #: options/panel5.php:52 options/panel5.php:149
613
+ msgid "BCC admin on Notifications"
614
+ msgstr "E-mail emne"
615
+
616
+ #: options/panel5.php:55
617
+ #, fuzzy
618
+ msgid "StCR Subscription Box Position"
619
+ msgstr "Ny abonnent til"
620
+
621
+ #: options/panel5.php:78
622
+ msgid "days"
623
+ msgstr "dage"
624
+
625
+ #: options/panel5.php:79
626
+ msgid ""
627
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
628
+ "this feature."
629
+ msgstr ""
630
+ "Slet afventende abonnementer (ikke bekræftede) after X dage. 0 slår denne "
631
+ "funktion fra."
632
+
633
+ #: options/panel5.php:86 options/panel5.php:95 options/panel5.php:104
634
+ #: options/panel5.php:114 options/panel5.php:123 options/panel5.php:133
635
+ #: options/panel5.php:142 options/panel5.php:151 options/panel5.php:160
636
+ #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
637
+ msgid "Yes"
638
+ msgstr "Ja"
639
+
640
+ #: options/panel5.php:88
641
+ msgid ""
642
+ "Send a notification email to confirm the subscription (to avoid addresses "
643
+ "misuse)."
644
+ msgstr ""
645
+ "Send en bekræftelses e-mail for at bekræfte abonnement (for at undgå e-mail "
646
+ "adresse misbrug)."
647
+
648
+ #: options/panel5.php:97
649
+ msgid ""
650
+ "Automatically subscribe authors to their own articles (not retroactive)."
651
+ msgstr ""
652
+
653
+ #: options/panel5.php:106
654
+ msgid ""
655
+ "If enabled, will send email messages with content-type = text/html instead "
656
+ "of text/plain"
657
+ msgstr ""
658
+ "Hvis slået til, så vil e-mail beskeder indeholde = tekst/html i stedet for "
659
+ "tekst/plain"
660
+
661
+ #: options/panel5.php:111
662
+ msgid "HTMLify links in emails"
663
+ msgstr ""
664
+
665
+ #: options/panel5.php:116
666
+ msgid ""
667
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
668
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
669
+ msgstr ""
670
+
671
+ #: options/panel5.php:121
672
+ msgid "Process trackbacks"
673
+ msgstr "Send trackbacks"
674
+
675
+ #: options/panel5.php:125
676
+ msgid ""
677
+ "Notify users when a new trackback or pingback is added to the discussion."
678
+ msgstr ""
679
+ "Adviser abonnenter når en ny trackback eller pingback er tilføjet til "
680
+ "kommentarer."
681
+
682
+ #: options/panel5.php:130
683
+ msgid "Track all subscriptions"
684
+ msgstr "Advisering ved abonnementer"
685
+
686
+ #: options/panel5.php:135
687
+ msgid "Notify the administrator when users subscribe without commenting."
688
+ msgstr "Adviser administrator når brugere abonnerer uden at kommentere."
689
+
690
+ #: options/panel5.php:144
691
+ msgid "Let the administrator subscribe to comments when logged in."
692
+ msgstr ""
693
+ "Lad administrator abonnere kommentarer når administrator er logget ind."
694
+
695
+ #: options/panel5.php:153
696
+ msgid "Send a copy of all Notifications to the administrator."
697
+ msgstr ""
698
+
699
+ #: options/panel5.php:158
700
+ msgid "StCR Box Position"
701
+ msgstr ""
702
+
703
+ #: options/panel5.php:162
704
+ msgid ""
705
+ "If this option is enable the subscriptioin box will be above the submit "
706
+ "button in your comment form."
707
+ msgstr ""
708
+
709
+ #: options/panel5.php:167
710
+ msgid "StCR Unique Key"
711
+ msgstr ""
712
+
713
+ #: options/panel5.php:172
714
+ msgid "This Unique Key is not set, please click the following button to "
715
+ msgstr ""
716
+
717
+ #: options/panel5.php:176 options/panel5.php:187
718
+ msgid "Generate"
719
+ msgstr ""
720
+
721
+ #: options/panel5.php:184
722
+ msgid ""
723
+ "This Unique Key will be use to send the notification to your subscribers "
724
+ "with more security."
725
+ msgstr ""
726
+
727
+ #: options/panel5.php:195 options/panel3.php:200 options/panel4.php:207
728
+ #: options/panel2.php:189
729
+ msgid "Save Changes"
730
+ msgstr "Gem ændringer"
731
+
732
+ #: options/index.php:58
733
+ msgid "Comment Form"
734
+ msgstr "Kommentar skema"
735
+
736
+ #: options/index.php:59
737
+ msgid "Management Page"
738
+ msgstr "Administrations side"
739
+
740
+ #: options/index.php:60
741
+ msgid "Notifications"
742
+ msgstr "E-mail emne"
743
+
744
+ #: options/index.php:61 options/panel3.php:85 options/panel4.php:80
745
+ #: options/panel2.php:58
746
+ msgid "Options"
747
+ msgstr "Indstillinger"
748
+
749
+ #: options/index.php:62
750
+ msgid "You can help"
751
+ msgstr ""
752
+
753
+ #: options/index.php:63
754
+ msgid "Support"
755
+ msgstr "Support"
756
+
757
+ #: options/index.php:64
758
+ msgid "Donate"
759
+ msgstr ""
760
+
761
+ #: options/panel3.php:16 options/panel3.php:90
762
+ msgid "Virtual Management Page"
763
+ msgstr "Administrations side"
764
+
765
+ #: options/panel3.php:21 options/panel3.php:99
766
+ msgid "Page title"
767
+ msgstr "Side titel"
768
+
769
+ #: options/panel3.php:26 options/panel3.php:108
770
+ msgid "Management URL"
771
+ msgstr "Administrations side"
772
+
773
+ #: options/panel3.php:31 options/panel3.php:120
774
+ msgid "Custom HEAD meta"
775
+ msgstr ""
776
+
777
+ #: options/panel3.php:37 options/panel3.php:134
778
+ msgid "Request link"
779
+ msgstr "Anmod om link"
780
+
781
+ #: options/panel3.php:42 options/panel3.php:144
782
+ msgid "Request submitted"
783
+ msgstr "Forespørgsel afsendt"
784
+
785
+ #: options/panel3.php:47 options/panel3.php:154
786
+ msgid "Subscribe without commenting"
787
+ msgstr "Abonner uden at kommentere"
788
+
789
+ #: options/panel3.php:52 options/panel3.php:164
790
+ msgid "Subscription processed"
791
+ msgstr "Abonnement udført"
792
+
793
+ #: options/panel3.php:57 options/panel3.php:174
794
+ msgid "Subscription processed (DCI)"
795
+ msgstr "Abonnement udført (Bekræftelse)"
796
+
797
+ #: options/panel3.php:62 options/panel3.php:183
798
+ msgid "Authors"
799
+ msgstr "Forfattere"
800
+
801
+ #: options/panel3.php:67 options/panel3.php:191
802
+ msgid "Users"
803
+ msgstr "Brugere"
804
+
805
+ #: options/panel3.php:93
806
+ msgid "Enabled"
807
+ msgstr ""
808
+
809
+ #: options/panel3.php:94
810
+ msgid "Disabled"
811
+ msgstr ""
812
+
813
+ #: options/panel3.php:95
814
+ msgid ""
815
+ "Disable the virtual management page if you need to create a <a href="
816
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
817
+ "real-management-page\">real page</a> to make your theme happy."
818
+ msgstr ""
819
+
820
+ #: options/panel3.php:104
821
+ msgid "Title of the page your visitors will use to manage their subscriptions."
822
+ msgstr ""
823
+ "Titel på siden de besøgende bruger til at administrere deres abonnementer."
824
+
825
+ #: options/panel3.php:112
826
+ msgid ""
827
+ "The permalink for your management page (something like <code>/manage-"
828
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
829
+ "b> actually exist in the system, but its link must follow your permalink "
830
+ "structure."
831
+ msgstr ""
832
+ "Permalink til din administrations side (f.eks. som <code>/administrer-"
833
+ "abonnement</code> eller <code>/?page_id=345</code>). Denne side "
834
+ "<b>eksisterer ikke</b> ikke i dit system, men linket skal følge dine "
835
+ "permalink indstillinger."
836
+
837
+ #: options/panel3.php:114
838
+ msgid ""
839
+ "Warning: it looks like the value you are using may be incompatible with your "
840
+ "permalink structure"
841
+ msgstr ""
842
+ "Advarsel: Det ser ud til at der format du bruger, måske ikke er matcher dine "
843
+ "permalink indstillinger"
844
+
845
+ #: options/panel3.php:124
846
+ msgid ""
847
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
848
+ "Use <strong>single</strong> quotes for values."
849
+ msgstr ""
850
+
851
+ #: options/panel3.php:130 options/panel4.php:113
852
+ msgid "Messages"
853
+ msgstr "E-mail beskeder"
854
+
855
+ #: options/panel3.php:139
856
+ msgid "Text shown to those who request to manage their subscriptions."
857
+ msgstr "Tekst vist til dem der forespørger om adgang til deres abonnementer."
858
+
859
+ #: options/panel3.php:149
860
+ msgid ""
861
+ "Thank you note shown after the request here above has been processed. "
862
+ "Allowed tags: [post_title], [post_permalink]"
863
+ msgstr ""
864
+ "Kvitteringsbesked vist efter forespørgslen ovenfor er udført. Tilladte tags: "
865
+ "[post_title], [post_permalink]"
866
+
867
+ #: options/panel3.php:159
868
+ msgid ""
869
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
870
+ "[post_title], [post_permalink]"
871
+ msgstr ""
872
+ "Tekst vist til dem der abonnerer uden at kommentere. Tilladte tags: "
873
+ "[post_title], [post_permalink]"
874
+
875
+ #: options/panel3.php:169
876
+ msgid ""
877
+ "Thank you note shown after the subscription request has been processed "
878
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
879
+ msgstr ""
880
+ "Kvitteringsbesked vist efter abonnements forespørgslen er udført "
881
+ "(bekræftelse slået fra). Tilladte tags: [post_title], [post_permalink]"
882
+
883
+ #: options/panel3.php:179
884
+ msgid ""
885
+ "Thank you note shown after the subscription request has been processed "
886
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
887
+ msgstr ""
888
+ "Kvitteringsbesked vist efter abonnements forespørgslen er udført "
889
+ "(bekræftelse slået til). Tilladte tags: [post_title], [post_permalink]"
890
+
891
+ #: options/panel3.php:187
892
+ msgid "Introductory text for the authors' management page."
893
+ msgstr "Introduktions tekst til forfatterens administrations side."
894
+
895
+ #: options/panel3.php:195
896
+ msgid "Introductory text for the users' management page."
897
+ msgstr "Introduktions tekst til brugerens administrations side."
898
+
899
+ #: options/panel1-edit-subscription.php:8
900
+ msgid "Update Subscription"
901
+ msgstr "Opdater abonnement"
902
+
903
+ #: options/panel1-edit-subscription.php:11
904
+ #: options/panel1-edit-subscription.php:21
905
+ #: options/panel1-edit-subscription.php:22
906
+ #: options/panel1-edit-subscription.php:23 options/panel1.php:31
907
+ #: options/panel1.php:32 options/panel1.php:33
908
+ msgid "optional"
909
+ msgstr "Indstillinger"
910
+
911
+ #: options/panel1-edit-subscription.php:13
912
+ #: options/panel1-add-subscription.php:13
913
+ msgid "Post:"
914
+ msgstr "Rækker:"
915
+
916
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:26
917
+ msgid "From"
918
+ msgstr "Fra"
919
+
920
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:30
921
+ msgid "To"
922
+ msgstr "Til"
923
+
924
+ #: options/panel1-edit-subscription.php:26
925
+ #: options/panel1-add-subscription.php:20 options/panel1.php:36
926
+ #: options/panel1.php:69 options/panel1.php:139
927
+ msgid "Status"
928
+ msgstr "Status"
929
+
930
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:38
931
+ msgid "Keep unchanged"
932
+ msgstr ""
933
+
934
+ #: options/panel1-edit-subscription.php:29
935
+ #: options/panel1-add-subscription.php:22 options/panel1.php:39
936
+ #: options/panel1.php:72
937
+ msgid "Active"
938
+ msgstr "Opgave"
939
+
940
+ #: options/panel1-edit-subscription.php:30
941
+ #: options/panel1-add-subscription.php:23 options/panel1.php:40
942
+ #: options/panel1.php:73
943
+ msgid "Replies only"
944
+ msgstr ""
945
+
946
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:41
947
+ msgid "Suspended"
948
+ msgstr "Annuller"
949
+
950
+ #: options/panel1-edit-subscription.php:33
951
+ #: options/panel1-add-subscription.php:26 options/panel1.php:43
952
+ msgid "Update"
953
+ msgstr "Opdater"
954
+
955
+ #: options/panel1-add-subscription.php:8 options/panel1.php:54
956
+ msgid "Add New Subscription"
957
+ msgstr "Ny abonnent til"
958
+
959
+ #: options/panel1-add-subscription.php:24 options/panel1.php:74
960
+ msgid "Ask user to confirm"
961
+ msgstr ""
962
+
963
+ #: options/panel8.php:11
964
+ #, fuzzy
965
+ msgid "Support Subscribe to Comments Reloaded"
966
+ msgstr ""
967
+ "Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
968
+ "officielle"
969
+
970
+ #: options/panel8.php:12
971
+ msgid ""
972
+ "Every contribution that you make is high valuable, so if you consider this "
973
+ "plugin a helpful tool we will use your donation to invest on support and "
974
+ "developing time."
975
+ msgstr ""
976
+
977
+ #: options/panel4.php:17 options/panel4.php:85
978
+ msgid "Sender name"
979
+ msgstr "Afsender navn"
980
+
981
+ #: options/panel4.php:22 options/panel4.php:98
982
+ msgid "Sender email address"
983
+ msgstr "Afsender e-mail adresse"
984
+
985
+ #: options/panel4.php:27 options/panel4.php:118
986
+ msgid "Notification subject"
987
+ msgstr "E-mail emne"
988
+
989
+ #: options/panel4.php:33 options/panel4.php:39 options/panel4.php:131
990
+ msgid "Notification message"
991
+ msgstr "E-mail besked"
992
+
993
+ #: options/panel4.php:44 options/panel4.php:145
994
+ msgid "Double check subject"
995
+ msgstr "Bekræftelses e-mail emne"
996
+
997
+ #: options/panel4.php:49 options/panel4.php:158
998
+ msgid "Double check message"
999
+ msgstr "Bekræftelses e-mail besked"
1000
+
1001
+ #: options/panel4.php:54 options/panel4.php:170
1002
+ msgid "Management subject"
1003
+ msgstr "Administrations e-mail emne"
1004
+
1005
+ #: options/panel4.php:59 options/panel4.php:64 options/panel4.php:183
1006
+ msgid "Management message"
1007
+ msgstr "Administrations e-mail besked"
1008
+
1009
+ #: options/panel4.php:92
1010
+ msgid ""
1011
+ "Name to use for the \"from\" field when sending a new notification to the "
1012
+ "user."
1013
+ msgstr ""
1014
+ "Navn som afsender i \"fra\" feltet når der sendes en besked til brugeren."
1015
+
1016
+ #: options/panel4.php:106
1017
+ msgid ""
1018
+ "Email address to use for the \"from\" field when sending a new notification "
1019
+ "to the user."
1020
+ msgstr ""
1021
+ "E-mail adresse som afsender i \"fra\" feltet når der sendes en besked til "
1022
+ "brugeren."
1023
+
1024
+ #: options/panel4.php:125
1025
+ msgid "Subject of the notification email. Allowed tag: [post_title]"
1026
+ msgstr "Emne til adviserings e-mail. Tilladt tag: [post_title]"
1027
+
1028
+ #: options/panel4.php:138
1029
+ msgid ""
1030
+ "Content of the notification email. Allowed tags: [post_title], "
1031
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1032
+ "[manager_link]"
1033
+ msgstr ""
1034
+ "Indhold af adviserings e-mailen. Tilladte tags: [post_title], "
1035
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1036
+ "[manager_link]"
1037
+
1038
+ #: options/panel4.php:139
1039
+ msgid ""
1040
+ "<p><strong>Note: To get a default template clear all the content and save "
1041
+ "the options.</strong></p>"
1042
+ msgstr ""
1043
+
1044
+ #: options/panel4.php:152
1045
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
1046
+ msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
1047
+
1048
+ #: options/panel4.php:164
1049
+ msgid ""
1050
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
1051
+ "[confirm_link], [post_title], [manager_link]"
1052
+ msgstr ""
1053
+ "Indhold af bekræftelses e-mailen. Tilladte tags: [post_permalink], "
1054
+ "[confirm_link], [post_title], [manager_link]"
1055
+
1056
+ #: options/panel4.php:177
1057
+ msgid ""
1058
+ "Subject of the mail sent to those who request to access their management "
1059
+ "page. Allowed tag: [blog_name]"
1060
+ msgstr ""
1061
+ "Emnet i e-mailen sendt til dem der beder om adgang til deres administrations "
1062
+ "side. Tilladt tag: [blog_name]"
1063
+
1064
+ #: options/panel4.php:189
1065
+ msgid ""
1066
+ "Content of the management email. Allowed tags: [blog_name], [manager_link]"
1067
+ msgstr ""
1068
+ "Indhold af administrations e-mailen. Tilladte tags: [blog_name], "
1069
+ "[manager_link]"
1070
+
1071
+ #: options/panel4.php:195
1072
+ #, fuzzy
1073
+ msgid "One Click Unsubscribe"
1074
+ msgstr "Lad administrator abonnere"
1075
+
1076
+ #: options/panel4.php:201
1077
+ #, fuzzy
1078
+ msgid "Content of the One Click confirmation. Allowed tags: [post_title]"
1079
+ msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
1080
+
1081
+ #: options/panel2.php:12 options/panel2.php:63
1082
+ msgid "Enable default checkbox"
1083
+ msgstr "Slå bekræftelse til"
1084
+
1085
+ #: options/panel2.php:15 options/panel2.php:73
1086
+ msgid "Checked by default"
1087
+ msgstr "Default afkrydset"
1088
+
1089
+ #: options/panel2.php:18
1090
+ msgid "Checked by default Value"
1091
+ msgstr "Default afkrydset"
1092
+
1093
+ #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
1094
+ msgid "Advanced subscription"
1095
+ msgstr "Opdater abonnement"
1096
+
1097
+ #: options/panel2.php:27 options/panel2.php:130
1098
+ msgid "Custom inline style"
1099
+ msgstr "Tilpasset inline style"
1100
+
1101
+ #: options/panel2.php:30 options/panel2.php:139
1102
+ msgid "Custom HTML"
1103
+ msgstr "Tilpasset HTML"
1104
+
1105
+ #: options/panel2.php:34
1106
+ msgid "Checkbox label"
1107
+ msgstr "Tjekboks besked"
1108
+
1109
+ #: options/panel2.php:37 options/panel2.php:163
1110
+ msgid "Subscribed label"
1111
+ msgstr "Abonnements besked"
1112
+
1113
+ #: options/panel2.php:40
1114
+ msgid "Awaiting label"
1115
+ msgstr "Afventer besked"
1116
+
1117
+ #: options/panel2.php:43 options/panel2.php:180
1118
+ msgid "Author label"
1119
+ msgstr "Forfatter besked"
1120
+
1121
+ #: options/panel2.php:68
1122
+ msgid ""
1123
+ "Disable this option if you want to move the subscription checkbox to a "
1124
+ "different place on your page."
1125
+ msgstr ""
1126
+
1127
+ #: options/panel2.php:78
1128
+ msgid "Decide if the checkbox should be checked by default or not."
1129
+ msgstr "Vælg om tjekboksen default skal være afkrydset eller ej."
1130
+
1131
+ #: options/panel2.php:87
1132
+ msgid "Default Checkbox Value"
1133
+ msgstr "Slå bekræftelse til"
1134
+
1135
+ #: options/panel2.php:91 options/panel2.php:120
1136
+ msgid "All new comments"
1137
+ msgstr ""
1138
+
1139
+ #: options/panel2.php:92 options/panel2.php:121
1140
+ msgid "Replies to this comment"
1141
+ msgstr ""
1142
+
1143
+ #: options/panel2.php:94
1144
+ msgid ""
1145
+ "Select the default option for the Checkbox. Be careful! Some users might "
1146
+ "like to be subscribed to all the post."
1147
+ msgstr ""
1148
+
1149
+ #: options/panel2.php:107
1150
+ msgid ""
1151
+ "Allow users to choose from different subscription types (all, replies only)."
1152
+ msgstr ""
1153
+
1154
+ #: options/panel2.php:115
1155
+ msgid "Advanced default"
1156
+ msgstr "Default afkrydset"
1157
+
1158
+ #: options/panel2.php:119
1159
+ msgid "None"
1160
+ msgstr ""
1161
+
1162
+ #: options/panel2.php:124
1163
+ msgid ""
1164
+ "The default subscription type that should be selected when Advanced "
1165
+ "subscriptions are enable."
1166
+ msgstr ""
1167
+
1168
+ #: options/panel2.php:135
1169
+ msgid "Custom inline CSS to add to the checkbox."
1170
+ msgstr "Tilpasset inline CSS til at tilføje til tjekboksen."
1171
+
1172
+ #: options/panel2.php:143
1173
+ msgid ""
1174
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
1175
+ "[checkbox_field], [checkbox_label]"
1176
+ msgstr ""
1177
+ "Tilpasset HTML kode til brug ved visning af tjekboksen. Tilladte tags: "
1178
+ "[checkbox_field], [checkbox_label]"
1179
+
1180
+ #: options/panel2.php:149
1181
+ msgid "Messages for your visitors"
1182
+ msgstr ""
1183
+
1184
+ #: options/panel2.php:153
1185
+ msgid "Default label"
1186
+ msgstr "Forfatter besked"
1187
+
1188
+ #: options/panel2.php:158
1189
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
1190
+ msgstr "Besked vist ved tjekboksen: Tilladt tag: [subscribe_link]"
1191
+
1192
+ #: options/panel2.php:167
1193
+ msgid ""
1194
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
1195
+ "[manager_link]"
1196
+ msgstr ""
1197
+ "Besked vist til dem der allerede abonnerer på et indlæg. Tilladt tag: "
1198
+ "[manager_link]"
1199
+
1200
+ #: options/panel2.php:172
1201
+ msgid "Pending label"
1202
+ msgstr "Afventer besked"
1203
+
1204
+ #: options/panel2.php:176
1205
+ msgid ""
1206
+ "Label shown to those who are already subscribed, but haven't clicked on the "
1207
+ "confirmation link yet. Allowed tag: [manager_link]"
1208
+ msgstr ""
1209
+ "Besked vist til dem der allerede abonnerer på et indlæg, men som ikke har "
1210
+ "bekræftet abonnementet endnu. Tilladt tag: [manager_link]"
1211
+
1212
+ #: options/panel2.php:184
1213
+ msgid ""
1214
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
1215
+ msgstr ""
1216
+ "Besked vist til forfattere (og administratorer). Tilladt tag: [manager_link]"
1217
+
1218
+ #: options/panel7.php:18
1219
+ msgid "Did you find a Bug on the plugin?"
1220
+ msgstr ""
1221
+
1222
+ #: options/panel7.php:19
1223
+ msgid ""
1224
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1225
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1226
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1227
+ "WordPress Support page."
1228
+ msgstr ""
1229
+
1230
+ #: options/panel1.php:19
1231
+ msgid "Mass Update Subscriptions"
1232
+ msgstr "Opdater abonnementer"
1233
+
1234
+ #: options/panel1.php:61
1235
+ msgid "Post ID"
1236
+ msgstr "Indlæg (ID)"
1237
+
1238
+ #: options/panel1.php:76
1239
+ msgid "Add"
1240
+ msgstr ""
1241
+
1242
+ #: options/panel1.php:91
1243
+ msgid "Search subscriptions"
1244
+ msgstr "Abonnementer"
1245
+
1246
+ #: options/panel1.php:95
1247
+ #, php-format
1248
+ msgid ""
1249
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1250
+ "where the"
1251
+ msgstr ""
1252
+ "Du kan enten <a href=\"%s\">liste alle abonnementer</a> eller finde dem hvor "
1253
+ "<b>e-mail</b>"
1254
+
1255
+ #: options/panel1.php:99
1256
+ msgid "email"
1257
+ msgstr "E-mail"
1258
+
1259
+ #: options/panel1.php:100
1260
+ msgid "post ID"
1261
+ msgstr "Indlæg (ID)"
1262
+
1263
+ #: options/panel1.php:101
1264
+ msgid "status"
1265
+ msgstr "Status"
1266
+
1267
+ #: options/panel1.php:104
1268
+ msgid "equals"
1269
+ msgstr "er lig med"
1270
+
1271
+ #: options/panel1.php:105
1272
+ msgid "contains"
1273
+ msgstr "indeholder"
1274
+
1275
+ #: options/panel1.php:106
1276
+ msgid "does not contain"
1277
+ msgstr "ikke indeholder"
1278
+
1279
+ #: options/panel1.php:107
1280
+ msgid "starts with"
1281
+ msgstr ""
1282
+
1283
+ #: options/panel1.php:108
1284
+ msgid "ends with"
1285
+ msgstr ""
1286
+
1287
+ #: options/panel1.php:111
1288
+ msgid "results per page:"
1289
+ msgstr ""
1290
+
1291
+ #: options/panel1.php:113
1292
+ msgid "Search"
1293
+ msgstr "Søg"
1294
+
1295
+ #: options/panel1.php:121
1296
+ msgid "Reverse the order by Post ID"
1297
+ msgstr "Omvend rækkefølgen til indlægs ID"
1298
+
1299
+ #: options/panel1.php:122 options/panel1.php:123
1300
+ msgid "Reverse the order by Date/Time"
1301
+ msgstr "Omvend rækkefølgen til Dato/tid"
1302
+
1303
+ #: options/panel1.php:125
1304
+ msgid "Post (ID)"
1305
+ msgstr "Indlæg (ID)"
1306
+
1307
+ #: options/panel1.php:128
1308
+ msgid "Search query:"
1309
+ msgstr "Søg"
1310
+
1311
+ #: options/panel1.php:128
1312
+ msgid "Rows:"
1313
+ msgstr "Rækker:"
1314
+
1315
+ #: options/panel1.php:128
1316
+ msgid "of"
1317
+ msgstr "af"
1318
+
1319
+ #: options/panel1.php:138
1320
+ msgid "Date and Time"
1321
+ msgstr "Dato og tid"
1322
+
1323
+ #: options/panel1.php:150
1324
+ msgid "Subscription"
1325
+ msgstr "Abonnementer til"
1326
+
1327
+ #: options/panel1.php:152
1328
+ msgid "Edit"
1329
+ msgstr ""
1330
+
1331
+ #: options/panel1.php:162
1332
+ msgid "Delete forever"
1333
+ msgstr "Slet for altid"
1334
+
1335
+ #: options/panel1.php:164
1336
+ msgid "Activate and set to Y"
1337
+ msgstr ""
1338
+
1339
+ #: options/panel1.php:165
1340
+ msgid "Activate and set to R"
1341
+ msgstr ""
1342
+
1343
+ #: options/panel1.php:170
1344
+ msgid "Sorry, no subscriptions match your search criteria."
1345
+ msgstr "Beklager, der er ikke fundet nogle abonnenter til"
1346
+
1347
+ #~ msgid "Bold"
1348
+ #~ msgstr "Fed"
1349
+
1350
+ #~ msgid "Italic"
1351
+ #~ msgstr "Kursiv"
1352
+
1353
+ #~ msgid "Link"
1354
+ #~ msgstr "Link"
1355
+
1356
+ #~ msgid "Image"
1357
+ #~ msgstr "Billede"
1358
+
1359
+ #~ msgid ""
1360
+ #~ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1361
+ #~ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1362
+ #~ msgstr ""
1363
+ #~ "Hvis du vil sponsorere dette plugin, tøv ikke med at <a href='http://"
1364
+ #~ "behstant.com/negocio/contact.php' target='_blank'>kontakte mig</a>."
1365
+
1366
+ #~ msgid "Notify authors"
1367
+ #~ msgstr "Adviser forfatter"
1368
+
1369
+ #~ msgid "Notify the administrator when a new comment is posted."
1370
+ #~ msgstr "Adviser administrator når der er en ny kommentar."
1371
+
1372
+ #~ msgid "Subscribed"
1373
+ #~ msgstr "Abonneret"
1374
+
1375
+ #~ msgid "Management Page ID"
1376
+ #~ msgstr "Administrer Side ID"
1377
+
1378
+ #~ msgid "Management page"
1379
+ #~ msgstr "Administrations side"
1380
+
1381
+ #~ msgid "Awaiting confirmation"
1382
+ #~ msgstr "Afventer bekræftelse"
1383
+
1384
+ #~ msgid "Stats"
1385
+ #~ msgstr "Statistik"
1386
+
1387
+ #~ msgid "Other Messages"
1388
+ #~ msgstr "Andre beskeder"
1389
+
1390
+ #~ msgid "The status has been successfully updated. Rows affected:"
1391
+ #~ msgstr "Status er blevet opdateret. Rækker berørt:"
1392
+
1393
+ #~ msgid ""
1394
+ #~ "Update the email address associated to a specific subscription (by post "
1395
+ #~ "ID)."
1396
+ #~ msgstr ""
1397
+ #~ "Updater e-mail adresser associeret til et specifikt abonnement (pr. post "
1398
+ #~ "ID)"
1399
+
1400
+ #~ msgid "PID"
1401
+ #~ msgstr "PID"
1402
+
1403
+ #~ msgid "Change status"
1404
+ #~ msgstr "Ændre status"
1405
+
1406
+ #~ msgid ""
1407
+ #~ "Change the status of an email address or permanently delete all its "
1408
+ #~ "subscriptions."
1409
+ #~ msgstr ""
1410
+ #~ "Ændre status på en e-mail adresse eller slette alle tilhørende "
1411
+ #~ "abonnementer permanent."
1412
+
1413
+ #~ msgid "Resume"
1414
+ #~ msgstr "Genoptag"
1415
+
1416
+ #~ msgid "Update email address"
1417
+ #~ msgstr "Opdater e-mail adresse"
1418
+
1419
+ #~ msgid ""
1420
+ #~ "You can \"mass update\" all the occurrences of a given email address "
1421
+ #~ "(exact matches only)."
1422
+ #~ msgstr ""
1423
+ #~ "Du kan \"masse opdatere\" alle forekomster af en given e-mail adresse "
1424
+ #~ "(kun eksakt match)."
1425
+
1426
+ #~ msgid "Search email address"
1427
+ #~ msgstr "Søg e-mail adresse"
1428
+
1429
+ #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1430
+ #~ msgstr "Beskrivelse: Y: Abonnerer, N: Annulleret, C: afventer bekræftelse"
1431
+
1432
+ #~ msgid "StCR table has been successfully optimized."
1433
+ #~ msgstr "StCR tabel er blevet optimeret."
1434
+
1435
+ #~ msgid "Filter by date"
1436
+ #~ msgstr "Filtrer via dato"
1437
+
1438
+ #~ msgid "Month"
1439
+ #~ msgstr "Måned"
1440
+
1441
+ #~ msgid "Year"
1442
+ #~ msgstr "År"
1443
+
1444
+ #~ msgid "No data to display"
1445
+ #~ msgstr "Ingen data at vise"
1446
+
1447
+ #~ msgid "optimize"
1448
+ #~ msgstr "optimer"
1449
+
1450
+ #~ msgid "Database"
1451
+ #~ msgstr "Database"
1452
+
1453
+ #~ msgid "Engine"
1454
+ #~ msgstr "Engine"
1455
+
1456
+ #~ msgid "Created on"
1457
+ #~ msgstr "Lavet den"
1458
+
1459
+ #~ msgid "Index length"
1460
+ #~ msgstr "Index længde"
1461
+
1462
+ #~ msgid "Records"
1463
+ #~ msgstr "Records"
1464
+
1465
+ #~ msgid "Average Record Length"
1466
+ #~ msgstr "Gennemsnits Record længde"
1467
+
1468
+ #~ msgid "Approximate Overhead"
1469
+ #~ msgstr "Omtrentlig Overhead"
1470
+
1471
+ #~ msgid "Analysis for"
1472
+ #~ msgstr "Analyse for"
1473
+
1474
+ #~ msgid "Most active users"
1475
+ #~ msgstr "Mest aktive brugere"
1476
+
1477
+ #~ msgid "Popular posts"
1478
+ #~ msgstr "Populære indlæg"
1479
+
1480
+ #~ msgid "Custom CSS Class"
1481
+ #~ msgstr "Tilpasset CSS Class"
1482
+
1483
+ #~ msgid ""
1484
+ #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1485
+ #~ "its style."
1486
+ #~ msgstr ""
1487
+ #~ "Tilpasset CSS class associeret til tjekboksen, hvis du ønsker at tilrette "
1488
+ #~ "boksens udseende."
1489
+
1490
+ #~ msgid "Official Sponsors"
1491
+ #~ msgstr "Officielle sponsorer"
1492
+
1493
+ #~ msgid "Subscriptions have been successfully updated."
1494
+ #~ msgstr "Abonnementer er blevet opdateret."
1495
+
1496
+ #~ msgid "Sorry, no subscriptions found."
1497
+ #~ msgstr "Beklager, der er ikke fundet nogle abonnementer."
1498
+
1499
+ #~ msgid "All the subscriptions have been successfully updated."
1500
+ #~ msgstr "Alle abonnementer er blevet opdateret."
langs/subscribe-reloaded-de_DE.mo CHANGED
Binary file
langs/subscribe-reloaded-de_DE.po CHANGED
@@ -1,1820 +1,1436 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-06-11 16:19-0700\n"
6
- "PO-Revision-Date: 2015-06-11 16:19-0700\n"
7
- "Last-Translator: Israel Barragan <reedyseth@gmail.com>\n"
8
- "Language-Team: \n"
9
- "Language: de_DE\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-Basepath: ../\n"
17
- "X-Textdomain-Support: yes\n"
18
- "X-Generator: Poedit 1.6\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
-
21
- #: subscribe-to-comments-reloaded.php:95
22
- msgid "Don't subscribe"
23
- msgstr "Abonnieren Sie nicht"
24
-
25
- #: subscribe-to-comments-reloaded.php:96
26
- msgid "All"
27
- msgstr "Alle"
28
-
29
- # @ subscribe-reloaded
30
- #: subscribe-to-comments-reloaded.php:97 templates/author.php:75
31
- #: templates/user.php:72
32
- msgid "Replies to my comments"
33
- msgstr "Abo ohne Kommentar"
34
-
35
- # @ subscribe-reloaded
36
- #: subscribe-to-comments-reloaded.php:312
37
- msgid ""
38
- "Notify me of followup comments via e-mail. You can also <a "
39
- "href='[subscribe_link]'>subscribe</a> without commenting."
40
- msgstr ""
41
- "E-Mail-Benachrichtigung bei weiteren Kommentaren.<br>Auch möglich: <a "
42
- "href='[subscribe_link]'>Abo ohne Kommentar</a>."
43
-
44
- # @ subscribe-reloaded
45
- #: subscribe-to-comments-reloaded.php:313
46
- msgid ""
47
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
48
- "subscriptions."
49
- msgstr ""
50
- "Du erhältst Benachrichtigungen zu diesem Thema. <a "
51
- "href='[manager_link]'>Verwalte Deine Abonnements</a>."
52
-
53
- # @ subscribe-reloaded
54
- #: subscribe-to-comments-reloaded.php:314
55
- msgid ""
56
- "Your subscription to this post needs to be confirmed. <a "
57
- "href='[manager_link]'>Manage your subscriptions</a>."
58
- msgstr ""
59
- "Dein Benachrichtigungswunsch muss bestätigt werden. <a "
60
- "href='[manager_link]'>Verwalte Deine Abonnements</a>."
61
-
62
- # @ subscribe-reloaded
63
- #: subscribe-to-comments-reloaded.php:315
64
- msgid ""
65
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
66
- msgstr ""
67
- "Deine <a href='[manager_link]'>Benachrichtigungs-Einstellungen</a> zu diesem "
68
- "Beitrag anpassen."
69
-
70
- # @ subscribe-reloaded
71
- #: subscribe-to-comments-reloaded.php:319 options/index.php:57
72
- msgid "Manage subscriptions"
73
- msgstr "Verwalte Deine Abonnements"
74
-
75
- # @ subscribe-reloaded
76
- #: subscribe-to-comments-reloaded.php:321
77
- msgid ""
78
- "To manage your subscriptions, please enter your email address here below. We "
79
- "will send you a message containing the link to access your personal "
80
- "management page."
81
- msgstr ""
82
- "Um Deine Abonnements zu verwalten, musst Du hier Deine E-Mail-Adresse "
83
- "eingeben. Du bekommst dann eine E-Mail mit einem weiterführenden Link."
84
-
85
- # @ subscribe-reloaded
86
- #: subscribe-to-comments-reloaded.php:322
87
- msgid ""
88
- "Thank you for using our subscription service. Your request has been "
89
- "completed, and you should receive an email with the management link in a few "
90
- "minutes."
91
- msgstr ""
92
- "Danke für das Nutzen des Benachrichtigungsdienstes. Deine Anfrage wird "
93
- "bearbeitet und eine E-Mail an Dich verschickt."
94
-
95
- # @ subscribe-reloaded
96
- #: subscribe-to-comments-reloaded.php:323
97
- msgid ""
98
- "You can follow the discussion on <strong>[post_title]</strong> without "
99
- "having to leave a comment. Cool, huh? Just enter your email address in the "
100
- "form here below and you're all set."
101
- msgstr ""
102
- "Du kannst der Diskussion zum Thema <strong>[post_title]</strong> auch "
103
- "folgen, ohne bisher selbst etwas geschrieben zu haben. Krass, was? Hierzu "
104
- "einfach Deine E-Mail-Adresse in das dafür vorgesehene Feld eintragen."
105
-
106
- # @ subscribe-reloaded
107
- #: subscribe-to-comments-reloaded.php:324
108
- msgid ""
109
- "Thank you for using our subscription service. Your request has been "
110
- "completed. You will receive a notification email every time a new comment to "
111
- "this article is approved and posted by the administrator."
112
- msgstr ""
113
- "Danke für das Nutzen des Benachrichtigungsdienstes. Du wirst nun bei jedem "
114
- "neuen Kommentar per E-Mail informiert."
115
-
116
- # @ subscribe-reloaded
117
- #: subscribe-to-comments-reloaded.php:325
118
- msgid ""
119
- "Thank you for using our subscription service. In order to confirm your "
120
- "request, please check your email for the verification message and follow the "
121
- "instructions."
122
- msgstr ""
123
- "Danke für das Nutzen des Benachrichtigungsdienstes. Bitte bestätige Deine "
124
- "Anfrage durch den Link in der E-Mail, die Dir gerade zugestellt wird."
125
-
126
- # @ subscribe-reloaded
127
- #: subscribe-to-comments-reloaded.php:326
128
- msgid ""
129
- "In order to cancel or suspend one or more notifications, select the "
130
- "corresponding checkbox(es) and click on the button at the end of the list."
131
- msgstr ""
132
- "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
133
- "entsprechende Auswahlboxen."
134
-
135
- # @ subscribe-reloaded
136
- #: subscribe-to-comments-reloaded.php:327
137
- msgid ""
138
- "In order to cancel or suspend one or more notifications, select the "
139
- "corresponding checkbox(es) and click on the button at the end of the list. "
140
- "You are currently subscribed to:"
141
- msgstr ""
142
- "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
143
- "entsprechende Auswahlboxen."
144
-
145
- # @ subscribe-reloaded
146
- #: subscribe-to-comments-reloaded.php:331
147
- msgid "There is a new comment to [post_title]"
148
- msgstr "Es gibt Neuigkeiten zum Thema [post_title]"
149
-
150
- # @ subscribe-reloaded
151
- #: subscribe-to-comments-reloaded.php:332
152
- msgid ""
153
- "There is a new comment to [post_title].\n"
154
- "Comment Link: [comment_permalink]\n"
155
- "Author: [comment_author]\n"
156
- "Comment:\n"
157
- "[comment_content]\n"
158
- "Permalink: [post_permalink]\n"
159
- "Manage your subscriptions: [manager_link]"
160
- msgstr ""
161
- "Es gibt Neuigkeiten zum Thema [post_title].\n"
162
- "Zum letzten Kommentar: [comment_permalink]\n"
163
- "[comment_author] plapperte gerade:\n"
164
- "[comment_content]\n"
165
- "\n"
166
- "Zum Artikel: [post_permalink]\n"
167
- "Verwalte Deine Benachrichtigungen: [manager_link]"
168
-
169
- # @ subscribe-reloaded
170
- #: subscribe-to-comments-reloaded.php:333
171
- msgid "Please confirm your subscription to [post_title]"
172
- msgstr "Bitte bestätige Deinen Benachrichtigungswunsch zum Thema [post_title]"
173
-
174
- # @ subscribe-reloaded
175
- #: subscribe-to-comments-reloaded.php:334
176
- msgid ""
177
- "You have requested to be notified every time a new comment is added to:\n"
178
- "[post_permalink]\n"
179
- "\n"
180
- "Please confirm your request by clicking on this link:\n"
181
- "[confirm_link]"
182
- msgstr ""
183
- "Du möchtest bei jedem neuen Kommentar benachrichtigt werden, der zu diesem "
184
- "Beitrag geschrieben wird:\n"
185
- "[post_permalink]\n"
186
- "\n"
187
- "Durch einen Klick auf diesen Link bestätigst Du das:\n"
188
- "[confirm_link]"
189
-
190
- # @ subscribe-reloaded
191
- #: subscribe-to-comments-reloaded.php:335
192
- msgid "Manage your subscriptions on [blog_name]"
193
- msgstr "Benachrichtigungs-Einstellungen von [blog_name]"
194
-
195
- # @ subscribe-reloaded
196
- #: subscribe-to-comments-reloaded.php:336
197
- msgid ""
198
- "You have requested to manage your subscriptions to the articles on "
199
- "[blog_name]. Follow this link to access your personal page:\n"
200
- "[manager_link]"
201
- msgstr ""
202
- "Du möchtest Deine Benachrichtigungs-Einstellungen von [blog_name] anpassen. "
203
- "Nutze bitte diesen Link:\n"
204
- "[manager_link]"
205
-
206
- #: subscribe-to-comments-reloaded.php:429
207
- #: subscribe-to-comments-reloaded.php:436
208
- #: subscribe-to-comments-reloaded.php:579
209
- #: subscribe-to-comments-reloaded.php:648
210
- #: subscribe-to-comments-reloaded.php:792
211
- msgid "Important Notice"
212
- msgstr "Wichtiger Hinweis"
213
-
214
- # @ subscribe-reloaded
215
- #: subscribe-to-comments-reloaded.php:527
216
- #, fuzzy
217
- msgid "Subscribe to Comments Reloaded Important Notice"
218
- msgstr ""
219
- "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
220
- "offizielle"
221
-
222
- #: subscribe-to-comments-reloaded.php:528
223
- msgid ""
224
- "The information in your database has been sanitize to prevent the raw html "
225
- "messages."
226
- msgstr ""
227
-
228
- #: subscribe-to-comments-reloaded.php:580
229
- msgid ""
230
- "Comment subscription data from the <strong>Subscribe to Comments</strong> "
231
- "plugin was detected and automatically imported into <strong>Subscribe to "
232
- "Comments Reloaded</strong>."
233
- msgstr ""
234
- "Kommentar Abonnement-Daten aus dem <strong>Subscribe to Comments</strong> "
235
- "Plugin wurde erkannt und automatisch in <strong>Subscribe to Comments "
236
- "Reloaded</strong> importiert"
237
-
238
- #: subscribe-to-comments-reloaded.php:580
239
- msgid ""
240
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
241
- "Comments to prevent confusion between the two plugins."
242
- msgstr ""
243
- "Es wird empfohlen, dass Sie nun <strong>deaktivieren</ strong>, um "
244
- "Kommentare abonnieren, um Verwechslungen zwischen den beiden Plugins "
245
- "verhindern."
246
-
247
- #: subscribe-to-comments-reloaded.php:581
248
- msgid ""
249
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
250
- "that you want to import, you'll need to import that data manually, as only "
251
- "one import routine will ever run to prevent data loss."
252
- msgstr ""
253
- "Wenn Sie Daten aus Abonnement Subscribe to Comments Reloaded haben <v2.0, "
254
- "die Sie importieren wollen, müssen Sie diese Daten manuell importieren, da "
255
- "nur eine Import-Routine wird jemals ausführen, um Datenverlust zu verhindern."
256
-
257
- #: subscribe-to-comments-reloaded.php:582
258
- #: subscribe-to-comments-reloaded.php:650
259
- #: subscribe-to-comments-reloaded.php:796
260
- msgid ""
261
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
262
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
263
- "your configuration."
264
- msgstr ""
265
- "Bitte besuchen Sie <a href=\"options-general.php?page=subscribe-to-comments-"
266
- "reloaded/options/index.php\">Einstellungen -> Kommentare abonnieren</a> um "
267
- "die Konfiguration zu bewerten."
268
-
269
- #: subscribe-to-comments-reloaded.php:649
270
- #, fuzzy
271
- msgid ""
272
- "Comment subscription data from the <strong>Comment Reply Notification</"
273
- "strong> plugin was detected and automatically imported into "
274
- "<strong>Subscribe to Comments Reloaded</strong>."
275
- msgstr ""
276
- "Kommentar Abonnement-Daten aus dem <strong>Subscribe to Comments</strong> "
277
- "Plugin wurde erkannt und automatisch in <strong>Subscribe to Comments "
278
- "Reloaded</strong> importiert"
279
-
280
- #: subscribe-to-comments-reloaded.php:649
281
- #, fuzzy
282
- msgid ""
283
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
284
- "Notification to prevent confusion between the two plugins."
285
- msgstr ""
286
- "Es wird empfohlen, dass Sie nun <strong>deaktivieren</ strong> WP Comment "
287
- "Subscriptions um Verwechslungen zwischen den beiden Plugins verhindern."
288
-
289
- #: subscribe-to-comments-reloaded.php:793
290
- msgid ""
291
- "Plugin options and comment subscription data from the <strong>WP Comment "
292
- "Subscriptions</strong> plugin were detected and automatically imported into "
293
- "<strong>Subscribe to Comments Reloaded</strong>."
294
- msgstr ""
295
-
296
- #: subscribe-to-comments-reloaded.php:793
297
- msgid ""
298
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
299
- "Subscriptions to prevent confusion between the two plugins."
300
- msgstr ""
301
- "Es wird empfohlen, dass Sie nun <strong>deaktivieren</ strong> WP Comment "
302
- "Subscriptions um Verwechslungen zwischen den beiden Plugins verhindern."
303
-
304
- #: subscribe-to-comments-reloaded.php:794
305
- msgid ""
306
- "If you have subscription data from another plugin (such as Subscribe to "
307
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
308
- "you'll need to import that data manually, as only one import routine will "
309
- "ever run to prevent data loss."
310
- msgstr ""
311
-
312
- #: subscribe-to-comments-reloaded.php:795
313
- msgid ""
314
- "<strong>Note:</strong> If you were previously using the "
315
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
316
- "subscribe-url]</code> shortcode, you'll need to replace those with "
317
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
318
- "respectively."
319
- msgstr ""
320
-
321
- #: subscribe-to-comments-reloaded.php:806
322
- msgid "Settings"
323
- msgstr "Einstellungen"
324
-
325
- # @ subscribe-reloaded
326
- #: subscribe-to-comments-reloaded.php:1845 options/panel2.php:67
327
- #: options/panel2.php:77 options/panel2.php:106 options/panel5.php:84
328
- #: options/panel5.php:93 options/panel5.php:102 options/panel5.php:112
329
- #: options/panel5.php:121 options/panel5.php:131 options/panel5.php:140
330
- #: options/panel5.php:149
331
- msgid "No"
332
- msgstr "Nein"
333
-
334
- # @ subscribe-reloaded
335
- #: subscribe-to-comments-reloaded.php:1872
336
- msgid ""
337
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
338
- msgstr ""
339
- "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
340
- "offizielle"
341
-
342
- # @ subscribe-reloaded
343
- #: subscribe-to-comments-reloaded.php:1872
344
- msgid "support forum"
345
- msgstr "Support-Forum"
346
-
347
- # @ subscribe-reloaded
348
- #: subscribe-to-comments-reloaded.php:1873
349
- msgid "Feeling generous?"
350
- msgstr "Fühlst Du Dich großzügig?"
351
-
352
- # @ subscribe-reloaded
353
- #: subscribe-to-comments-reloaded.php:1873
354
- msgid "Donate a few bucks!"
355
- msgstr "Spende ein paar Mäuse!"
356
-
357
- # @ subscribe-reloaded
358
- #: options/index.php:58
359
- msgid "Comment Form"
360
- msgstr "Kommentarformular"
361
-
362
- # @ subscribe-reloaded
363
- #: options/index.php:59
364
- msgid "Management Page"
365
- msgstr "Verwaltungsseite"
366
-
367
- # @ subscribe-reloaded
368
- #: options/index.php:60
369
- msgid "Notifications"
370
- msgstr "Benachrichtigungen"
371
-
372
- # @ subscribe-reloaded
373
- #: options/index.php:61 options/panel2.php:58 options/panel3.php:82
374
- #: options/panel4.php:67
375
- msgid "Options"
376
- msgstr "Optionen"
377
-
378
- #: options/index.php:62
379
- msgid "You can help"
380
- msgstr "Du kannst helfen"
381
-
382
- # @ subscribe-reloaded
383
- #: options/index.php:63
384
- #, fuzzy
385
- msgid "Support"
386
- msgstr "Support"
387
-
388
- # @ subscribe-reloaded
389
- #: options/panel1-business-logic.php:19
390
- msgid "Subscription added."
391
- msgstr "Abo eingetragen."
392
-
393
- # @ subscribe-reloaded
394
- #: options/panel1-business-logic.php:31
395
- msgid "Subscriptions updated."
396
- msgstr "Abos aktualisiert."
397
-
398
- # @ subscribe-reloaded
399
- #: options/panel1-business-logic.php:40
400
- msgid "Subscription deleted."
401
- msgstr "Abo gelöscht."
402
-
403
- # @ subscribe-reloaded
404
- #: options/panel1-business-logic.php:59 templates/author.php:23
405
- #: templates/user.php:23
406
- msgid "Subscriptions deleted:"
407
- msgstr "Abos gelöscht:"
408
-
409
- # @ subscribe-reloaded
410
- #: options/panel1-business-logic.php:63 templates/author.php:27
411
- #: templates/user.php:27
412
- msgid "Subscriptions suspended:"
413
- msgstr "Abos aufgehoben:"
414
-
415
- # @ subscribe-reloaded
416
- #: options/panel1-business-logic.php:67 templates/author.php:31
417
- #: templates/user.php:31
418
- msgid "Subscriptions activated:"
419
- msgstr "Aktivierte Benachrichtigungen:"
420
-
421
- # @ subscribe-reloaded
422
- #: options/panel1-business-logic.php:71 options/panel1-business-logic.php:75
423
- #: templates/author.php:35 templates/author.php:39 templates/user.php:35
424
- #: templates/user.php:39
425
- msgid "Subscriptions updated:"
426
- msgstr "Aktualisierte Benachrichtigungen:"
427
-
428
- #: options/panel1-business-logic.php:99
429
- msgid "&laquo; Previous"
430
- msgstr "&laquo; Vorherige"
431
-
432
- #: options/panel1-business-logic.php:103
433
- msgid "Next &raquo;"
434
- msgstr "Nächste &raquo;"
435
-
436
- # @ subscribe-reloaded
437
- #: options/panel1-edit-subscription.php:8
438
- msgid "Update Subscription"
439
- msgstr "Aktualisiere Abo"
440
-
441
- # @ subscribe-reloaded
442
- #: options/panel1-edit-subscription.php:11
443
- #: options/panel1-edit-subscription.php:21
444
- #: options/panel1-edit-subscription.php:22
445
- #: options/panel1-edit-subscription.php:23 options/panel1.php:28
446
- #: options/panel1.php:29 options/panel1.php:30
447
- msgid "optional"
448
- msgstr "optional"
449
-
450
- # @ subscribe-reloaded
451
- #: options/panel1-edit-subscription.php:11 options/panel1.php:22
452
- #: options/panel1.php:102 options/panel1.php:138 templates/author.php:52
453
- #: templates/user.php:52
454
- msgid ""
455
- "Please remember: this operation cannot be undone. Are you sure you want to "
456
- "proceed?"
457
- msgstr ""
458
- "Bitte beachte: Diese Aktion kann nicht widerrufen werden. Bist Du sicher, "
459
- "dass Du fortfahren möchtest?"
460
-
461
- #: options/panel1-edit-subscription.php:13
462
- msgid "Post:"
463
- msgstr "Beitrag:"
464
-
465
- # @ subscribe-reloaded
466
- #: options/panel1-edit-subscription.php:16 options/panel1.php:24
467
- msgid "From"
468
- msgstr "Von"
469
-
470
- # @ subscribe-reloaded
471
- #: options/panel1-edit-subscription.php:20 options/panel1.php:27
472
- msgid "To"
473
- msgstr "ersetze durch"
474
-
475
- # @ subscribe-reloaded
476
- #: options/panel1-edit-subscription.php:26 options/panel1.php:33
477
- #: options/panel1.php:59 options/panel1.php:124
478
- msgid "Status"
479
- msgstr "Status"
480
-
481
- #: options/panel1-edit-subscription.php:28 options/panel1.php:35
482
- msgid "Keep unchanged"
483
- msgstr "Unverändert belassen"
484
-
485
- # @ subscribe-reloaded
486
- #: options/panel1-edit-subscription.php:29 options/panel1.php:36
487
- #: options/panel1.php:61
488
- msgid "Active"
489
- msgstr "Aktiv"
490
-
491
- #: options/panel1-edit-subscription.php:30 options/panel1.php:37
492
- #: options/panel1.php:62
493
- msgid "Replies only"
494
- msgstr "Nur Antworten"
495
-
496
- # @ subscribe-reloaded
497
- #: options/panel1-edit-subscription.php:31 options/panel1.php:38
498
- msgid "Suspended"
499
- msgstr "Aufgehoben"
500
-
501
- # @ subscribe-reloaded
502
- #: options/panel1-edit-subscription.php:33 options/panel1.php:40
503
- msgid "Update"
504
- msgstr "Aktualisieren"
505
-
506
- # @ subscribe-reloaded
507
- #: options/panel1.php:19
508
- msgid "Mass Update Subscriptions"
509
- msgstr "Mehrere Abos aktualisieren"
510
-
511
- # @ subscribe-reloaded
512
- #: options/panel1.php:48
513
- msgid "Add New Subscription"
514
- msgstr "Neues Abo hinzufügen"
515
-
516
- #: options/panel1.php:53
517
- msgid "Post ID"
518
- msgstr "Beitrag (ID)"
519
-
520
- # @ subscribe-reloaded
521
- #: options/panel1.php:56 options/panel1.php:111
522
- #: templates/request-management-link.php:69 templates/subscribe.php:89
523
- #: templates/user.php:57
524
- msgid "Email"
525
- msgstr "E-Mail"
526
-
527
- #: options/panel1.php:63
528
- msgid "Ask user to confirm"
529
- msgstr "Benutzer nach Bestätigung fragen"
530
-
531
- #: options/panel1.php:65
532
- msgid "Add"
533
- msgstr "Hinzufügen"
534
-
535
- # @ subscribe-reloaded
536
- #: options/panel1.php:76
537
- msgid "Search subscriptions"
538
- msgstr "Abos suchen"
539
-
540
- # @ subscribe-reloaded
541
- #: options/panel1.php:80
542
- #, php-format
543
- msgid ""
544
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
545
- "where the"
546
- msgstr ""
547
- "Du kannst entweder <a href=\"%s\">alle Abos auflisten</a> oder die einer "
548
- "bestimmten <b>E-Mail-Adresse finden</b>"
549
-
550
- # @ subscribe-reloaded
551
- #: options/panel1.php:84
552
- msgid "email"
553
- msgstr "E-Mail"
554
-
555
- #: options/panel1.php:85
556
- msgid "post ID"
557
- msgstr "Beitrag (ID)"
558
-
559
- # @ subscribe-reloaded
560
- #: options/panel1.php:86
561
- msgid "status"
562
- msgstr "Status"
563
-
564
- # @ subscribe-reloaded
565
- #: options/panel1.php:89
566
- msgid "equals"
567
- msgstr "entspricht"
568
-
569
- # @ subscribe-reloaded
570
- #: options/panel1.php:90
571
- msgid "contains"
572
- msgstr "enthällt"
573
-
574
- # @ subscribe-reloaded
575
- #: options/panel1.php:91
576
- msgid "does not contain"
577
- msgstr "enthällt nicht"
578
-
579
- #: options/panel1.php:92
580
- msgid "starts with"
581
- msgstr "Beginnt mit"
582
-
583
- #: options/panel1.php:93
584
- msgid "ends with"
585
- msgstr "Endet mit"
586
-
587
- #: options/panel1.php:96
588
- msgid "results per page:"
589
- msgstr "Ergebnisse pro Seite:"
590
-
591
- # @ subscribe-reloaded
592
- #: options/panel1.php:98
593
- msgid "Search"
594
- msgstr "Suchen"
595
-
596
- #: options/panel1.php:106
597
- msgid "Reverse the order by Post ID"
598
- msgstr "Sortiert nach Post-ID"
599
-
600
- #: options/panel1.php:107 options/panel1.php:108
601
- msgid "Reverse the order by Date/Time"
602
- msgstr "Sortierung umkehren nach Datum/Uhrzeit"
603
-
604
- #: options/panel1.php:110
605
- msgid "Post (ID)"
606
- msgstr "Post (ID)"
607
-
608
- # @ subscribe-reloaded
609
- #: options/panel1.php:113
610
- msgid "Search query:"
611
- msgstr "Suchabfrage:"
612
-
613
- #: options/panel1.php:113
614
- msgid "Rows:"
615
- msgstr "Zeilen:"
616
-
617
- #: options/panel1.php:113
618
- msgid "of"
619
- msgstr "von"
620
-
621
- #: options/panel1.php:114 templates/author.php:58 templates/user.php:58
622
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
623
- msgstr "Legende: Y = Alle Kommentare, R = Nur Antworten, C = Inaktiv"
624
-
625
- #: options/panel1.php:123
626
- msgid "Date and Time"
627
- msgstr "Datum und Uhrzeit"
628
-
629
- # @ subscribe-reloaded
630
- #: options/panel1.php:135
631
- msgid "Subscription"
632
- msgstr "Abo eingetragen."
633
-
634
- #: options/panel1.php:137
635
- msgid "Edit"
636
- msgstr "Bearbeiten"
637
-
638
- # @ subscribe-reloaded
639
- #: options/panel1.php:138 templates/author.php:72 templates/user.php:69
640
- msgid "Delete"
641
- msgstr "Endgültig löschen"
642
-
643
- # @ subscribe-reloaded
644
- #: options/panel1.php:146 templates/author.php:71 templates/user.php:68
645
- msgid "Action:"
646
- msgstr "Aktion:"
647
-
648
- # @ subscribe-reloaded
649
- #: options/panel1.php:147
650
- msgid "Delete forever"
651
- msgstr "Endgültig löschen"
652
-
653
- # @ subscribe-reloaded
654
- #: options/panel1.php:148 templates/author.php:73 templates/user.php:70
655
- msgid "Suspend"
656
- msgstr "Aufheben"
657
-
658
- #: options/panel1.php:149
659
- msgid "Activate and set to Y"
660
- msgstr "Aktivieren und auf Y setzen"
661
-
662
- #: options/panel1.php:150
663
- msgid "Activate and set to R"
664
- msgstr "Aktivieren und auf R setzen"
665
-
666
- #: options/panel1.php:151 templates/author.php:76 templates/user.php:73
667
- msgid "Activate"
668
- msgstr "Aktivieren"
669
-
670
- # @ subscribe-reloaded
671
- #: options/panel1.php:152 templates/author.php:77 templates/user.php:75
672
- msgid "Update subscriptions"
673
- msgstr "Abos aktualisieren"
674
-
675
- # @ subscribe-reloaded
676
- #: options/panel1.php:155
677
- msgid "Sorry, no subscriptions match your search criteria."
678
- msgstr "Ups, keine passenden Abonnements gefunden: "
679
-
680
- # @ subscribe-reloaded
681
- #: options/panel2.php:12 options/panel2.php:63
682
- msgid "Enable default checkbox"
683
- msgstr "Auswahlbox standardmäßig auswählen"
684
-
685
- # @ subscribe-reloaded
686
- #: options/panel2.php:15 options/panel2.php:73
687
- msgid "Checked by default"
688
- msgstr "Standardmäßig ausgewählt"
689
-
690
- # @ subscribe-reloaded
691
- #: options/panel2.php:18
692
- msgid "Checked by default Value"
693
- msgstr "Standardmäßig ausgewählt"
694
-
695
- # @ subscribe-reloaded
696
- #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
697
- msgid "Advanced subscription"
698
- msgstr "Erweitertes Abonnement"
699
-
700
- # @ subscribe-reloaded
701
- #: options/panel2.php:27 options/panel2.php:130
702
- msgid "Custom inline style"
703
- msgstr "Eigene Stile"
704
-
705
- # @ subscribe-reloaded
706
- #: options/panel2.php:30 options/panel2.php:139
707
- msgid "Custom HTML"
708
- msgstr "Eigener HTML-Code"
709
-
710
- # @ subscribe-reloaded
711
- #: options/panel2.php:34
712
- msgid "Checkbox label"
713
- msgstr "Beschriftung der Auswahlbox"
714
-
715
- # @ subscribe-reloaded
716
- #: options/panel2.php:37 options/panel2.php:163
717
- msgid "Subscribed label"
718
- msgstr "Benachrichtigung aktiviert"
719
-
720
- # @ subscribe-reloaded
721
- #: options/panel2.php:40
722
- msgid "Awaiting label"
723
- msgstr "Bestätigung"
724
-
725
- # @ subscribe-reloaded
726
- #: options/panel2.php:43 options/panel2.php:180
727
- msgid "Author label"
728
- msgstr "Autor"
729
-
730
- # @ subscribe-reloaded
731
- #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:57
732
- #: options/panel5.php:18 options/panel5.php:57
733
- msgid "Your settings have been successfully updated."
734
- msgstr "Deine Einstellungen wurden erfolgreich gespeichert."
735
-
736
- # @ subscribe-reloaded
737
- #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:59
738
- #: options/panel5.php:20 options/panel5.php:59
739
- msgid "There was an error updating the following fields:"
740
- msgstr ""
741
- "Bei der Aktualisierung der folgenden Felder ist ein Fehler aufgetreten:"
742
-
743
- # @ subscribe-reloaded
744
- #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
745
- #: options/panel5.php:83 options/panel5.php:92 options/panel5.php:101
746
- #: options/panel5.php:111 options/panel5.php:120 options/panel5.php:130
747
- #: options/panel5.php:139 options/panel5.php:148
748
- msgid "Yes"
749
- msgstr "Ja"
750
-
751
- #: options/panel2.php:68
752
- msgid ""
753
- "Disable this option if you want to move the subscription checkbox to a "
754
- "different place on your page."
755
- msgstr ""
756
- "Deaktiviere diese Option, wenn Du die Auswahlbox für die Abonnements an "
757
- "anderer Stelle auf Deiner Seite platzieren möchtest."
758
-
759
- # @ subscribe-reloaded
760
- #: options/panel2.php:78
761
- msgid "Decide if the checkbox should be checked by default or not."
762
- msgstr ""
763
- "Bestimmt, ob die Auswahlbox standardmäßig angeklickt sein soll oder nicht."
764
-
765
- # @ subscribe-reloaded
766
- #: options/panel2.php:87
767
- msgid "Default Checkbox Value"
768
- msgstr "Auswahlbox standardmäßig auswählen"
769
-
770
- #: options/panel2.php:91 options/panel2.php:120
771
- msgid "All new comments"
772
- msgstr "Alle neuen Kommentare"
773
-
774
- # @ subscribe-reloaded
775
- #: options/panel2.php:92 options/panel2.php:121
776
- msgid "Replies to this comment"
777
- msgstr "Abo ohne Kommentar"
778
-
779
- #: options/panel2.php:94
780
- msgid ""
781
- "Select the default option for the Checkbox. Be careful! Some users might "
782
- "like to be subscribed to all the post."
783
- msgstr ""
784
- "Wählen Sie die Standardoption für das Checkbox. Seien Sie vorsichtig! Einige "
785
- "Benutzer vielleicht gerne zu allen Post abonniert werden."
786
-
787
- #: options/panel2.php:107
788
- msgid ""
789
- "Allow users to choose from different subscription types (all, replies only)."
790
- msgstr ""
791
- "Erlaube den Abonnenten verschiedene Abonnement-Arten (Alle, Nur Antworten)."
792
-
793
- # @ subscribe-reloaded
794
- #: options/panel2.php:115
795
- msgid "Advanced default"
796
- msgstr "Standardmäßig ausgewählt"
797
-
798
- #: options/panel2.php:119
799
- msgid "None"
800
- msgstr "keiner"
801
-
802
- #: options/panel2.php:124
803
- msgid ""
804
- "The default subscription type that should be selected when Advanced "
805
- "subscriptions are enable."
806
- msgstr ""
807
- "Der Standard-Abonnementtyp, die auf die bei Abonnements Erweiterte "
808
- "ermöglichen."
809
-
810
- # @ subscribe-reloaded
811
- #: options/panel2.php:135
812
- msgid "Custom inline CSS to add to the checkbox."
813
- msgstr "Eigene Inline-Stile für die Auswahlbox."
814
-
815
- # @ subscribe-reloaded
816
- #: options/panel2.php:143
817
- msgid ""
818
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
819
- "[checkbox_field], [checkbox_label]"
820
- msgstr ""
821
- "Eigener HTML-Code für die Auswahlbox. Erlaubt sind diese Tags: "
822
- "[checkbox_field], [checkbox_label]"
823
-
824
- #: options/panel2.php:149
825
- msgid "Messages for your visitors"
826
- msgstr "Nachricht an Deine Besucher"
827
-
828
- # @ subscribe-reloaded
829
- #: options/panel2.php:153
830
- msgid "Default label"
831
- msgstr "Standard Mittleilung"
832
-
833
- # @ subscribe-reloaded
834
- #: options/panel2.php:158
835
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
836
- msgstr "Beschriftung der Auswahlbox. Erlaubte Tags: [subscribe_link]"
837
-
838
- # @ subscribe-reloaded
839
- #: options/panel2.php:167
840
- msgid ""
841
- "Label shown to those who are already subscribed to a post. Allowed tag: "
842
- "[manager_link]"
843
- msgstr ""
844
- "Text, der angezeigt wird, wenn die Benachrichtigung bereits aktiviert wurde. "
845
- "Erlaubte Tags: [manager_link]"
846
-
847
- # @ subscribe-reloaded
848
- #: options/panel2.php:172
849
- msgid "Pending label"
850
- msgstr "Warteschlange Mitteilung"
851
-
852
- # @ subscribe-reloaded
853
- #: options/panel2.php:176
854
- msgid ""
855
- "Label shown to those who are already subscribed, but haven't clicked on the "
856
- "confirmation link yet. Allowed tag: [manager_link]"
857
- msgstr ""
858
- "Text, der angezeigt wird, wenn eine Bestätigung durch den Besucher noch "
859
- "aussteht. Erlaubte Tags: [manager_link]"
860
-
861
- # @ subscribe-reloaded
862
- #: options/panel2.php:184
863
- msgid ""
864
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
865
- msgstr ""
866
- "Text, der Autoren und Administratoren angezeigt wird. Erlaubte Tags: "
867
- "[manager_link]"
868
-
869
- # @ default
870
- #: options/panel2.php:189 options/panel3.php:197 options/panel4.php:182
871
- #: options/panel5.php:184
872
- msgid "Save Changes"
873
- msgstr "Alle Änderungen speichern"
874
-
875
- # @ subscribe-reloaded
876
- #: options/panel3.php:13 options/panel3.php:87
877
- msgid "Virtual Management Page"
878
- msgstr "Verwaltungsseite"
879
-
880
- # @ subscribe-reloaded
881
- #: options/panel3.php:18 options/panel3.php:96
882
- msgid "Page title"
883
- msgstr "Seiten-Titel"
884
-
885
- # @ subscribe-reloaded
886
- #: options/panel3.php:23 options/panel3.php:105
887
- msgid "Management URL"
888
- msgstr "Verwaltungsseite"
889
-
890
- #: options/panel3.php:28 options/panel3.php:117
891
- msgid "Custom HEAD meta"
892
- msgstr "Benutzerdefinierte HEAD Meta-Tags"
893
-
894
- # @ subscribe-reloaded
895
- #: options/panel3.php:34 options/panel3.php:131
896
- msgid "Request link"
897
- msgstr "Link-Anfrage"
898
-
899
- # @ subscribe-reloaded
900
- #: options/panel3.php:39 options/panel3.php:141
901
- msgid "Request submitted"
902
- msgstr "Anfrage ausgeführt"
903
-
904
- # @ subscribe-reloaded
905
- #: options/panel3.php:44 options/panel3.php:151
906
- msgid "Subscribe without commenting"
907
- msgstr "Abo ohne Kommentar"
908
-
909
- # @ subscribe-reloaded
910
- #: options/panel3.php:49 options/panel3.php:161
911
- msgid "Subscription processed"
912
- msgstr "Abo eingetragen"
913
-
914
- # @ subscribe-reloaded
915
- #: options/panel3.php:54 options/panel3.php:171
916
- msgid "Subscription processed (DCI)"
917
- msgstr "Abo eingetragen (DCI)"
918
-
919
- # @ subscribe-reloaded
920
- #: options/panel3.php:59 options/panel3.php:180
921
- msgid "Authors"
922
- msgstr "Autoren"
923
-
924
- # @ subscribe-reloaded
925
- #: options/panel3.php:64 options/panel3.php:188
926
- msgid "Users"
927
- msgstr "Besucher"
928
-
929
- #: options/panel3.php:90
930
- msgid "Enabled"
931
- msgstr "Aktiviert"
932
-
933
- #: options/panel3.php:91
934
- msgid "Disabled"
935
- msgstr "Behindert"
936
-
937
- # @ subscribe-reloaded
938
- #: options/panel3.php:92
939
- #, fuzzy
940
- msgid ""
941
- "Disable the virtual management page if you need to create a <a href=\"http://"
942
- "behstant.com/subscribe-reloaded/realMgnPage.php\">real page</a> to make your "
943
- "theme happy."
944
- msgstr "test."
945
-
946
- # @ subscribe-reloaded
947
- #: options/panel3.php:101
948
- msgid "Title of the page your visitors will use to manage their subscriptions."
949
- msgstr "Titel der Verwaltungs-Seite."
950
-
951
- # @ subscribe-reloaded
952
- #: options/panel3.php:109
953
- msgid ""
954
- "The permalink for your management page (something like <code>/manage-"
955
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
956
- "b> actually exist in the system, but its link must follow your permalink "
957
- "structure."
958
- msgstr ""
959
- "Der Permalink zur Verwaltungs-Seite (etwa <code>/comment-subscriptions</"
960
- "code> oder <code>/?page_id=345</code>).<br/>Diese Seite existiert <b>aktuell "
961
- "nicht</b> im System. Der Wordpress-Struktur muss entsprochen werden."
962
-
963
- #: options/panel3.php:111
964
- msgid ""
965
- "Warning: it looks like the value you are using may be incompatible with your "
966
- "permalink structure"
967
- msgstr ""
968
- "Warnung: Der eingegebene Wert scheint inkompatibel zu sein mit Deiner "
969
- "Permalink-Struktur."
970
-
971
- #: options/panel3.php:121
972
- msgid ""
973
- "Specify your custom HTML code to be added to the HEAD section of the page. "
974
- "Use <strong>single</strong> quotes for values."
975
- msgstr ""
976
- "Gib hier einen benutzerdefinierten HTML Code ein, der in Deinem HEAD-Bereich "
977
- "eingefügt werden soll. Nutze <strong>einfache </strong> Anführungszeichen in "
978
- "den Werten."
979
-
980
- # @ subscribe-reloaded
981
- #: options/panel3.php:127 options/panel4.php:100
982
- msgid "Messages"
983
- msgstr "Nachrichten"
984
-
985
- # @ subscribe-reloaded
986
- #: options/panel3.php:136
987
- msgid "Text shown to those who request to manage their subscriptions."
988
- msgstr ""
989
- "Text, der angezeigt wird, wenn ein Link zur Verwaltungs-Seite angefordert "
990
- "wurde."
991
-
992
- # @ subscribe-reloaded
993
- #: options/panel3.php:146
994
- msgid ""
995
- "Thank you note shown after the request here above has been processed. "
996
- "Allowed tags: [post_title], [post_permalink]"
997
- msgstr ""
998
- "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
999
- "gespeichert wurden."
1000
-
1001
- # @ subscribe-reloaded
1002
- #: options/panel3.php:156
1003
- msgid ""
1004
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1005
- "[post_title], [post_permalink]"
1006
- msgstr ""
1007
- "Text, der angezeigt wird, wenn ohne weiteren Kommentar die "
1008
- "Benachrichtigungen aktiviert wurden. Erlaubte Tags: [post_title]"
1009
-
1010
- # @ subscribe-reloaded
1011
- #: options/panel3.php:166
1012
- msgid ""
1013
- "Thank you note shown after the subscription request has been processed "
1014
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1015
- msgstr ""
1016
- "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
1017
- "gespeichert wurden (Bestätigung nicht erforderlich)."
1018
-
1019
- # @ subscribe-reloaded
1020
- #: options/panel3.php:176
1021
- msgid ""
1022
- "Thank you note shown after the subscription request has been processed "
1023
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
1024
- msgstr ""
1025
- "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
1026
- "gespeichert wurden (Bestätigung erforderlich)."
1027
-
1028
- # @ subscribe-reloaded
1029
- #: options/panel3.php:184
1030
- msgid "Introductory text for the authors' management page."
1031
- msgstr "Einführungstext der Verwaltungs-Seite der Autoren."
1032
-
1033
- # @ subscribe-reloaded
1034
- #: options/panel3.php:192
1035
- msgid "Introductory text for the users' management page."
1036
- msgstr "Einführungstext der Verwaltungs-Seite der Besucher."
1037
-
1038
- # @ subscribe-reloaded
1039
- #: options/panel4.php:16 options/panel4.php:72
1040
- msgid "Sender name"
1041
- msgstr "Absender"
1042
-
1043
- # @ subscribe-reloaded
1044
- #: options/panel4.php:21 options/panel4.php:85
1045
- msgid "Sender email address"
1046
- msgstr "E-Mail-Adresse des Absenders"
1047
-
1048
- # @ subscribe-reloaded
1049
- #: options/panel4.php:26 options/panel4.php:105
1050
- msgid "Notification subject"
1051
- msgstr "Benachrichtigung - Betreff"
1052
-
1053
- # @ subscribe-reloaded
1054
- #: options/panel4.php:31 options/panel4.php:118
1055
- msgid "Notification message"
1056
- msgstr "Benachrichtigung - Text"
1057
-
1058
- # @ subscribe-reloaded
1059
- #: options/panel4.php:36 options/panel4.php:132
1060
- msgid "Double check subject"
1061
- msgstr "Double check - Betreff"
1062
-
1063
- # @ subscribe-reloaded
1064
- #: options/panel4.php:41 options/panel4.php:145
1065
- msgid "Double check message"
1066
- msgstr "Double check - Text"
1067
-
1068
- # @ subscribe-reloaded
1069
- #: options/panel4.php:46 options/panel4.php:157
1070
- msgid "Management subject"
1071
- msgstr "Verwaltung - Betreff"
1072
-
1073
- # @ subscribe-reloaded
1074
- #: options/panel4.php:51 options/panel4.php:170
1075
- msgid "Management message"
1076
- msgstr "Verwaltung - Text"
1077
-
1078
- # @ subscribe-reloaded
1079
- #: options/panel4.php:79
1080
- msgid ""
1081
- "Name to use for the \"from\" field when sending a new notification to the "
1082
- "user."
1083
- msgstr "Absender: Name"
1084
-
1085
- # @ subscribe-reloaded
1086
- #: options/panel4.php:93
1087
- msgid ""
1088
- "Email address to use for the \"from\" field when sending a new notification "
1089
- "to the user."
1090
- msgstr "Absender: E-Mail-Adresse"
1091
-
1092
- # @ subscribe-reloaded
1093
- #: options/panel4.php:112
1094
- msgid "Subject of the notification email. Allowed tag: [post_title]"
1095
- msgstr "Betreff-Zeile einer Benachrichtigung. Erlaubte Tags: [post_title]"
1096
-
1097
- # @ subscribe-reloaded
1098
- #: options/panel4.php:126
1099
- msgid ""
1100
- "Content of the notification email. Allowed tags: [post_title], "
1101
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1102
- "[manager_link]"
1103
- msgstr ""
1104
- "E-Mail-Text einer Benachrichtigung.<br/>Erlaubte Tags: [post_title], "
1105
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1106
- "[manager_link]"
1107
-
1108
- # @ subscribe-reloaded
1109
- #: options/panel4.php:139
1110
- msgid "Subject of the confirmation email. Allowed tag: [post_title]"
1111
- msgstr ""
1112
- "Betreff-Zeile einer Bestätigungs-Aufforderung. Erlaubte Tags: [post_title]"
1113
-
1114
- # @ subscribe-reloaded
1115
- #: options/panel4.php:151
1116
- msgid ""
1117
- "Content of the confirmation email. Allowed tags: [post_permalink], "
1118
- "[confirm_link], [post_title], [manager_link]"
1119
- msgstr ""
1120
- "E-Mail-Text einer Bestätigungs-Aufforderung. Erlaubte Tags: "
1121
- "[post_permalink], [confirm_link], [post_title], [manager_link]"
1122
-
1123
- # @ subscribe-reloaded
1124
- #: options/panel4.php:164
1125
- msgid ""
1126
- "Subject of the mail sent to those who request to access their management "
1127
- "page. Allowed tag: [blog_name]"
1128
- msgstr ""
1129
- "Betreff-Zeile der E-Mail, die den Link zur Verwaltungsseite enthält. "
1130
- "Erlaubte Tags: [blog_name]"
1131
-
1132
- # @ subscribe-reloaded
1133
- #: options/panel4.php:176
1134
- msgid ""
1135
- "Content of the management email. Allowed tags: [blog_name], [manager_link]"
1136
- msgstr ""
1137
- "Text der E-Mail, die den Link zur Verwaltungsseite enthält. Erlaubte Tags: "
1138
- "[blog_name], [manager_link]"
1139
-
1140
- # @ subscribe-reloaded
1141
- #: options/panel5.php:28 options/panel5.php:72
1142
- msgid "Autopurge requests"
1143
- msgstr "Anfragen automatisch löschen"
1144
-
1145
- # @ subscribe-reloaded
1146
- #: options/panel5.php:31 options/panel5.php:81
1147
- msgid "Enable double check"
1148
- msgstr "Bestätigung erforderlich (double check)"
1149
-
1150
- # @ default
1151
- #: options/panel5.php:34 options/panel5.php:89
1152
- msgid "Subscribe authors"
1153
- msgstr "Abonniert"
1154
-
1155
- #: options/panel5.php:37 options/panel5.php:99
1156
- msgid "Enable HTML emails"
1157
- msgstr "Aktiviere HTML E-Mails"
1158
-
1159
- #: options/panel5.php:40
1160
- msgid "HTMLify Links in HTML emails"
1161
- msgstr "HTMLify Links in HTML emails"
1162
-
1163
- # @ subscribe-reloaded
1164
- #: options/panel5.php:43
1165
- msgid "Send trackbacks"
1166
- msgstr "Trackbacks senden"
1167
-
1168
- # @ subscribe-reloaded
1169
- #: options/panel5.php:46
1170
- msgid "Notify admin"
1171
- msgstr "Administrator informieren"
1172
-
1173
- #: options/panel5.php:49 options/panel5.php:137
1174
- msgid "Let admin subscribe"
1175
- msgstr "Admin-Anmeldung"
1176
-
1177
- # @ subscribe-reloaded
1178
- #: options/panel5.php:52 options/panel5.php:146
1179
- msgid "BCC admin on Notifications"
1180
- msgstr "Benachrichtigungen"
1181
-
1182
- # @ subscribe-reloaded
1183
- #: options/panel5.php:75
1184
- msgid "days"
1185
- msgstr "Tage"
1186
-
1187
- # @ subscribe-reloaded
1188
- #: options/panel5.php:76
1189
- msgid ""
1190
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1191
- "this feature."
1192
- msgstr ""
1193
- "Lösche schwebende, nicht bestätigte Anfragen nach x Tagen. Verwende die 0, "
1194
- "um nie zu löschen."
1195
-
1196
- # @ subscribe-reloaded
1197
- #: options/panel5.php:85
1198
- msgid ""
1199
- "Send a notification email to confirm the subscription (to avoid addresses "
1200
- "misuse)."
1201
- msgstr ""
1202
- "Sende eine Bestätigungsnachricht, um die Gültigkeit der E-Mail-Adresse zu "
1203
- "verifizieren."
1204
-
1205
- #: options/panel5.php:94
1206
- msgid ""
1207
- "Automatically subscribe authors to their own articles (not retroactive)."
1208
- msgstr ""
1209
- "Automatische abonnieren Autoren ihre eigenen Artikel (nicht rückwirkend)."
1210
-
1211
- #: options/panel5.php:103
1212
- msgid ""
1213
- "If enabled, will send email messages with content-type = text/html instead "
1214
- "of text/plain"
1215
- msgstr "Wenn aktiviert, wird HTML-Inhalt, statt Nur-Text verwendet"
1216
-
1217
- #: options/panel5.php:108
1218
- msgid "HTMLify links in emails"
1219
- msgstr "HTMLify links in emails"
1220
-
1221
- #: options/panel5.php:113
1222
- msgid ""
1223
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1224
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1225
- msgstr ""
1226
- "Wenn aktiviert, werden alle Links in Nachrichten mit wickeln <code>&lt;a "
1227
- "href=\"\"&gt;&lt;/a&gt;</code> (nur bei HTML-Mails aktiviert)."
1228
-
1229
- # @ subscribe-reloaded
1230
- #: options/panel5.php:118
1231
- msgid "Process trackbacks"
1232
- msgstr "Trackbacks senden"
1233
-
1234
- # @ subscribe-reloaded
1235
- #: options/panel5.php:122
1236
- msgid ""
1237
- "Notify users when a new trackback or pingback is added to the discussion."
1238
- msgstr ""
1239
- "Benachrichtigung an die Besucher, wenn ein Trackback oder Pingback eingeht."
1240
-
1241
- # @ subscribe-reloaded
1242
- #: options/panel5.php:127
1243
- msgid "Track all subscriptions"
1244
- msgstr "Verfolge alle Benachrichtigungen"
1245
-
1246
- # @ subscribe-reloaded
1247
- #: options/panel5.php:132
1248
- msgid "Notify the administrator when users subscribe without commenting."
1249
- msgstr ""
1250
- "Benachrichtigung an den Administrator, wenn ohne Kommentar ein Abo "
1251
- "eingerichtet wurde."
1252
-
1253
- # @ subscribe-reloaded
1254
- #: options/panel5.php:141
1255
- msgid "Let the administrator subscribe to comments when logged in."
1256
- msgstr ""
1257
- "Benachrichtigung an den Administrator, wenn ohne Kommentar ein Abo "
1258
- "eingerichtet wurde."
1259
-
1260
- #: options/panel5.php:150
1261
- msgid "Send a copy of all Notifications to the administrator."
1262
- msgstr "Senden Sie eine Kopie aller Benachrichtigungen an den Administrator."
1263
-
1264
- #: options/panel5.php:155
1265
- msgid "StCR Unique Key"
1266
- msgstr ""
1267
-
1268
- #: options/panel5.php:160
1269
- msgid "This Unique Key is not set, please click the following button to "
1270
- msgstr ""
1271
-
1272
- #: options/panel5.php:164 options/panel5.php:176
1273
- msgid "Generate"
1274
- msgstr ""
1275
-
1276
- #: options/panel5.php:172
1277
- msgid ""
1278
- "This Unique Key will be use to send the notification to your subscribers "
1279
- "with more\n"
1280
- "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsecurity."
1281
- msgstr ""
1282
-
1283
- #: options/panel6.php:8 options/panel7.php:8
1284
- #, fuzzy
1285
- msgid "Support the developers"
1286
- msgstr "Autor unterstützen"
1287
-
1288
- # @ subscribe-reloaded
1289
- #: options/panel6.php:18
1290
- #, fuzzy
1291
- msgid ""
1292
- "How valuable is the feature offered by this plugin to your visitors? please "
1293
- "consider supporting the author if this plugin made your web site better, "
1294
- "especially if you are making money out of it. Any donation received will be "
1295
- "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
1296
- "strong>, and to buy some food for my hungry family."
1297
- msgstr ""
1298
- "Wie wertvoll ist diese Funktion für die Besucher Deiner Seite? Subscribe to "
1299
- "Comments Reloaded ist kostenlos und wird es auch bleiben. Aber um den Autor "
1300
- "zu unterstützen, speziell, wenn Du mit Deiner Seite Geld verdienst, kannst "
1301
- "Du gerne spenden. Jede Spende wird für die Weiterentwicklung des Plugins und "
1302
- "das Essen für meine hungrige Familie genutzt."
1303
-
1304
- # @ subscribe-reloaded
1305
- #: options/panel6.php:20
1306
- msgid "Don't want to donate? You can still help"
1307
- msgstr "Möchtest Du spenden?"
1308
-
1309
- # @ subscribe-reloaded
1310
- #: options/panel6.php:21
1311
- #, fuzzy
1312
- msgid ""
1313
- "If you don't want to donate money, please consider blogging about my plugin "
1314
- "with a link to the plugin's page. Please let your readers know what makes "
1315
- "your blog better. You can also contribute donating your time: do not "
1316
- "hesitate to send me bug reports, your localization files, ideas on how to "
1317
- "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
1318
- "you do, thanks for using my plugin!"
1319
- msgstr ""
1320
- "Wenn Du nicht spenden möchtest, überlege Dir, über das Plugin zu bloggen und "
1321
- "einen Link zur Plugin-Seite zu setzen. Lass Deine Leser erfahren, was Deinen "
1322
- "Blog hat besser werden lassen. Du kannst statt Geld gerne auch Zeit spenden: "
1323
- "Zögere nicht, Fehler und Ideen zu melden und helfe dabei, das Plugin besser "
1324
- "zu machen.Was auch immer Du tust: Danke für die Verwendung des Plugins!"
1325
-
1326
- # @ default
1327
- #: options/panel6.php:23
1328
- #, fuzzy
1329
- msgid "Subscribe to the Beta testers"
1330
- msgstr "Abonniert"
1331
-
1332
- #: options/panel6.php:24
1333
- msgid ""
1334
- "Before a new Update we release a Beta version so that our current users can "
1335
- "give us feedback if they find a bug, If you want to join the tester list you "
1336
- "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
1337
- "a>"
1338
- msgstr ""
1339
-
1340
- # @ subscribe-reloaded
1341
- #: options/panel6.php:26
1342
- msgid "Vote and show your appreciation"
1343
- msgstr "Bewerte und Lobe!"
1344
-
1345
- # @ subscribe-reloaded
1346
- #: options/panel6.php:27
1347
- #, fuzzy
1348
- msgid ""
1349
- "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
1350
- "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
1351
- "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
1352
- msgstr ""
1353
- "Sage Deinen Freunden, wie gut Subscribe to Comments Reloaded funktioniert. "
1354
- "<a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
1355
- "\">Bewerte es</a> auf der Plugin-Seite."
1356
-
1357
- #: options/panel7.php:18
1358
- msgid "Did you find a Bug on the plugin?"
1359
- msgstr ""
1360
-
1361
- #: options/panel7.php:19
1362
- msgid ""
1363
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1364
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1365
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1366
- "WordPress Support page."
1367
- msgstr ""
1368
-
1369
- #: templates/author.php:57
1370
- msgid "Title"
1371
- msgstr "Titel"
1372
-
1373
- #: templates/author.php:69 templates/user.php:66
1374
- msgid "Select all"
1375
- msgstr "Alle auswählen"
1376
-
1377
- #: templates/author.php:70 templates/user.php:67
1378
- msgid "Invert selection"
1379
- msgstr "Auswahl umkehren"
1380
-
1381
- #: templates/author.php:74 templates/user.php:71
1382
- #, fuzzy
1383
- msgid "All comments"
1384
- msgstr "Alle neuen Kommentare"
1385
-
1386
- #: templates/author.php:80 templates/user.php:78
1387
- msgid "No subscriptions match your search criteria."
1388
- msgstr "Keine passenden Abos gefunden."
1389
-
1390
- # @ subscribe-reloaded
1391
- #: templates/request-management-link.php:71 templates/subscribe.php:91
1392
- msgid "Send"
1393
- msgstr "Abschicken"
1394
-
1395
- # @ subscribe-reloaded
1396
- #: templates/subscribe.php:43 templates/subscribe.php:44
1397
- msgid "New subscription to"
1398
- msgstr "Neue Benachrichtigung"
1399
-
1400
- # @ subscribe-reloaded
1401
- #: templates/subscribe.php:44
1402
- msgid "User:"
1403
- msgstr "Besucher:"
1404
-
1405
- #~ msgid "Bold"
1406
- #~ msgstr "Fett"
1407
-
1408
- #~ msgid "Italic"
1409
- #~ msgstr "Kursiv"
1410
-
1411
- #~ msgid "Link"
1412
- #~ msgstr "Link"
1413
-
1414
- #~ msgid "Image"
1415
- #~ msgstr "Bild"
1416
-
1417
- #~ msgid "Sponsor's Corner"
1418
- #~ msgstr "Sponsorenbereich"
1419
-
1420
- #~ msgid ""
1421
- #~ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1422
- #~ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1423
- #~ msgstr ""
1424
- #~ "Wenn Du das Plugin unterstützen möchtest, dann zögere nicht und nimm mit "
1425
- #~ "mir <a href='http://behstant.com/negocio/contact.php' "
1426
- #~ "target='_blank'>Kontakt </a>auf."
1427
-
1428
- #~ msgid "Set to Y"
1429
- #~ msgstr "Auf Y setzen"
1430
-
1431
- #~ msgid "Daily digest"
1432
- #~ msgstr "Tägliche Übersicht"
1433
-
1434
- #~ msgid "Replies"
1435
- #~ msgstr "Nur Antworten"
1436
-
1437
- #~ msgid "Digest"
1438
- #~ msgstr "Tägliche Übersicht"
1439
-
1440
- #~ msgid "Pending"
1441
- #~ msgstr "Warteschlange"
1442
-
1443
- # @ subscribe-reloaded
1444
- #~ msgid "Notify authors"
1445
- #~ msgstr "Autoren informieren"
1446
-
1447
- # @ subscribe-reloaded
1448
- #~ msgid "Notify the administrator when a new comment is posted."
1449
- #~ msgstr ""
1450
- #~ "Benachrichtigung an den Administrator, wenn ein neues Abonnement erstellt "
1451
- #~ "wurde."
1452
-
1453
- # @ subscribe-reloaded
1454
- #~ msgid "Management Page ID"
1455
- #~ msgstr "ID der Verwaltungs-Seite"
1456
-
1457
- # @ subscribe-reloaded
1458
- #~ msgid "Management page"
1459
- #~ msgstr "Verwaltungs-Seite"
1460
-
1461
- # @ subscribe-reloaded
1462
- #~ msgid "Awaiting confirmation"
1463
- #~ msgstr "Ausstehende Betsätigung"
1464
-
1465
- # @ subscribe-reloaded
1466
- #~ msgid "Stats"
1467
- #~ msgstr "Statistik"
1468
-
1469
- # @ subscribe-reloaded
1470
- #~ msgid "Mail Messages"
1471
- #~ msgstr "eMail-Texte"
1472
-
1473
- # @ subscribe-reloaded
1474
- #~ msgid "Other Messages"
1475
- #~ msgstr "weitere Texte"
1476
-
1477
- # @ subscribe-reloaded
1478
- #~ msgid "The status has been successfully updated. Rows affected:"
1479
- #~ msgstr "Der Status wurde erfolgreich aktualisiert. Betroffene Zeilen:"
1480
-
1481
- #~ msgid ""
1482
- #~ "Update the email address associated to a specific subscription (by post "
1483
- #~ "ID)."
1484
- #~ msgstr "Aktualisierung einer eMail-Adresse, in Abhängigkeit einer Post-ID."
1485
-
1486
- #~ msgid "PID"
1487
- #~ msgstr "Post-ID"
1488
-
1489
- #~ msgid "Change status"
1490
- #~ msgstr "Status aktualisieren"
1491
-
1492
- # @ subscribe-reloaded
1493
- #~ msgid ""
1494
- #~ "Change the status of an email address or permanently delete all its "
1495
- #~ "subscriptions."
1496
- #~ msgstr ""
1497
- #~ "Status einer eMail-Adresse ändern oder alle Benachrichtigungen löschen."
1498
-
1499
- # @ subscribe-reloaded
1500
- #~ msgid "Resume"
1501
- #~ msgstr "Reaktivieren"
1502
-
1503
- # @ subscribe-reloaded
1504
- #~ msgid "Update email address"
1505
- #~ msgstr "eMail-Adresse aktualisieren"
1506
-
1507
- # @ subscribe-reloaded
1508
- #~ msgid ""
1509
- #~ "You can \"mass update\" all the occurrences of a given email address "
1510
- #~ "(exact matches only)."
1511
- #~ msgstr ""
1512
- #~ "Du kannst Massen-Aktualisierungen für alle eMail-Adressen in der "
1513
- #~ "Datenbank vornehmen."
1514
-
1515
- # @ subscribe-reloaded
1516
- #~ msgid "Search email address"
1517
- #~ msgstr "Suche eMail-Adresse"
1518
-
1519
- # @ subscribe-reloaded
1520
- #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1521
- #~ msgstr "Legende: Y: aktiviert, N: deaktiviert, C: schwebend"
1522
-
1523
- # @ subscribe-reloaded
1524
- #~ msgid "Custom CSS Class"
1525
- #~ msgstr "Eigene CSS-Styles"
1526
-
1527
- # @ subscribe-reloaded
1528
- #~ msgid ""
1529
- #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1530
- #~ "its style."
1531
- #~ msgstr "Eigene CSS-Styles für die Auswahlbox."
1532
-
1533
- # @ subscribe-reloaded
1534
- #~ msgid "StCR table has been successfully optimized."
1535
- #~ msgstr "Der Status wurde erfolgreich aktualisiert."
1536
-
1537
- #~ msgid "Database"
1538
- #~ msgstr "Datenbank"
1539
-
1540
- #~ msgid "Engine"
1541
- #~ msgstr "Engine"
1542
-
1543
- #~ msgid "Records"
1544
- #~ msgstr "Datensätze"
1545
-
1546
- #~ msgid "Average Record Length"
1547
- #~ msgstr "Durchschnittliche Satzlänge"
1548
-
1549
- #~ msgid "Created on"
1550
- #~ msgstr "Erstellt am"
1551
-
1552
- #~ msgid "Approximate Overhead"
1553
- #~ msgstr "Ungefährer Overhead"
1554
-
1555
- #~ msgid "optimize"
1556
- #~ msgstr "optimieren"
1557
-
1558
- # @ subscribe-reloaded
1559
- #~ msgid "Subscriptions have been successfully updated."
1560
- #~ msgstr "Benachrichtigungs-Einstellungen wurden erfolgreich aktualisiert."
1561
-
1562
- # @ subscribe-reloaded
1563
- #~ msgid "Sorry, no subscriptions found."
1564
- #~ msgstr "Ups, keine Benachrichtigungen gefunden: "
1565
-
1566
- # @ subscribe-reloaded
1567
- #~ msgid "All the subscriptions have been successfully updated."
1568
- #~ msgstr "Benachrichtigungs-Einstellungen wurden erfolgreich aktualisiert."
1569
-
1570
- # @ subscribe-reloaded
1571
- #, fuzzy
1572
- #~ msgid ""
1573
- #~ "Text to show next to the checkbox added to the comment form. Allowed tag: "
1574
- #~ "[subscribe_link]"
1575
- #~ msgstr "Beschriftung der Auswahlbox. Erlaubte Tags: [subscribe_link]"
1576
-
1577
- # @ subscribe-reloaded
1578
- #, fuzzy
1579
- #~ msgid ""
1580
- #~ "Send a notification email to confirm the subscription (to avoid addresses "
1581
- #~ "misuse)"
1582
- #~ msgstr ""
1583
- #~ "Sende eine Bestätigungsnachricht, um die Gültigkeit der eMail-Adresse zu "
1584
- #~ "verifizieren."
1585
-
1586
- # @ subscribe-reloaded
1587
- #, fuzzy
1588
- #~ msgid ""
1589
- #~ "Text to show to those users who are already subscribed. Allowed tag: "
1590
- #~ "[manager_link]"
1591
- #~ msgstr ""
1592
- #~ "Text, der angezeigt wird, wenn die Benachrichtigung bereits aktiviert "
1593
- #~ "wurde. Erlaubte Tags: [manager_link]"
1594
-
1595
- # @ subscribe-reloaded
1596
- #, fuzzy
1597
- #~ msgid ""
1598
- #~ "Text to show to those users who are already subscribed, but haven't "
1599
- #~ "clicked on the confirmation link yet. Allowed tag: [manager_link]"
1600
- #~ msgstr ""
1601
- #~ "Text, der angezeigt wird, wenn eine Bestätigung durch den Besucher noch "
1602
- #~ "aussteht. Erlaubte Tags: [manager_link]"
1603
-
1604
- # @ subscribe-reloaded
1605
- #, fuzzy
1606
- #~ msgid ""
1607
- #~ "Text to show to the author, to manage subscriptions to a given post. "
1608
- #~ "Allowed tag: [manager_link]"
1609
- #~ msgstr ""
1610
- #~ "Text, der angezeigt wird, wenn die Benachrichtigung bereits aktiviert "
1611
- #~ "wurde. Erlaubte Tags: [manager_link]"
1612
-
1613
- # @ subscribe-reloaded
1614
- #, fuzzy
1615
- #~ msgid ""
1616
- #~ "There is a new comment to [post_title].\n"
1617
- #~ "Comment Link: [comment_permalink]\n"
1618
- #~ "Author: [comment_author]\n"
1619
- #~ "Comment:\n"
1620
- #~ "[comment_content]\n"
1621
- #~ "\n"
1622
- #~ "Permalink: [post_permalink]\n"
1623
- #~ "Manage your subscriptions: [manager_link]"
1624
- #~ msgstr ""
1625
- #~ "Es gibt Neuigkeiten zum Thema [post_title].\n"
1626
- #~ "Zum letzten Kommentar: [comment_permalink]\n"
1627
- #~ "[comment_author] plapperte gerade:\n"
1628
- #~ "[comment_content]\n"
1629
- #~ "\n"
1630
- #~ "Zum Artikel: [post_permalink]\n"
1631
- #~ "Verwalte Deine Benachrichtigungen: [manager_link]"
1632
-
1633
- # @ subscribe-reloaded
1634
- #, fuzzy
1635
- #~ msgid ""
1636
- #~ "You are the author of this entry. <a href='[manager_link]'>Manage</a> its "
1637
- #~ "subscriptions."
1638
- #~ msgstr ""
1639
- #~ "Du erhältst Benachrichtigungen zu diesem Thema. <a "
1640
- #~ "href='[manager_link]'>Verwalte Deine Abonnements</a>."
1641
-
1642
- # @ subscribe-reloaded
1643
- #, fuzzy
1644
- #~ msgid "Please confirm your subscribtion to [post_title]"
1645
- #~ msgstr ""
1646
- #~ "Bitte bestätige Deinen Benachrichtigungswunsch zum Thema [post_title]"
1647
-
1648
- # @ subscribe-reloaded
1649
- #, fuzzy
1650
- #~ msgid ""
1651
- #~ "Subscriptions have been successfully updated. In order to cancel or "
1652
- #~ "suspend more notifications, select the corresponding checkbox(es) and "
1653
- #~ "click on the button at the end of the list."
1654
- #~ msgstr ""
1655
- #~ "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
1656
- #~ "entsprechende Auswahlboxen."
1657
-
1658
- # @ subscribe-reloaded
1659
- #, fuzzy
1660
- #~ msgid ""
1661
- #~ "You can manage the subscriptions to your articles on this page. In order "
1662
- #~ "to cancel or suspend one or more notifications, select the corresponding "
1663
- #~ "checkbox(es) and click on the button at the end of the list."
1664
- #~ msgstr ""
1665
- #~ "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
1666
- #~ "entsprechende Auswahlboxen."
1667
-
1668
- # @ subscribe-reloaded
1669
- #, fuzzy
1670
- #~ msgid "Search post ID"
1671
- #~ msgstr "Suchen"
1672
-
1673
- # @ subscribe-reloaded
1674
- #, fuzzy
1675
- #~ msgid ""
1676
- #~ "Thank you for using our subscription service. Your request has been "
1677
- #~ "completed, and you should receive an email with the management link in a "
1678
- #~ "few minutes. In the meanwhile, feel free to go back to <a href='%s'>%s</"
1679
- #~ "a>."
1680
- #~ msgstr ""
1681
- #~ "Danke für das Nutzen des Benachrichtigungsdienstes. Deine Anfrage wird "
1682
- #~ "bearbeitet und eine eMail an Dich gleich verschickt."
1683
-
1684
- # @ subscribe-reloaded
1685
- #, fuzzy
1686
- #~ msgid ""
1687
- #~ "Thank you for using our subscription service. In order to confirm your "
1688
- #~ "request, please check your email for the verification message and follow "
1689
- #~ "the instructions. In the meanwhile, you can go back to <a href='%s'>%s</"
1690
- #~ "a>."
1691
- #~ msgstr ""
1692
- #~ "Danke für das Nutzen des Benachrichtigungsdienstes. Bitte bestätige Deine "
1693
- #~ "Anfrage durch den Link in der eMail, die Dir gerade zugestellt wird."
1694
-
1695
- # @ subscribe-reloaded
1696
- #, fuzzy
1697
- #~ msgid ""
1698
- #~ "Thank you for using our subscription service. Your request has been "
1699
- #~ "completed, and you are now subscribed to <a href='%s'>%s</a>. You will "
1700
- #~ "receive a notification email every time a new comment to this article is "
1701
- #~ "approved and posted by the administrator."
1702
- #~ msgstr ""
1703
- #~ "Danke für das Nutzen des Benachrichtigungsdienstes. Du wirst nun bei "
1704
- #~ "jedem neuen Kommentar per eMail informiert."
1705
-
1706
- # @ subscribe-reloaded
1707
- #, fuzzy
1708
- #~ msgid ""
1709
- #~ "You can follow the discussion on <strong>%s</strong> without having to "
1710
- #~ "leave a comment. Cool, huh? Just enter your email address in the form "
1711
- #~ "here below and you're all set."
1712
- #~ msgstr ""
1713
- #~ "Du kannst der Diskussion zum Thema <strong>[post_title]</strong> auch "
1714
- #~ "folgen, ohne bisher selber etwas geschrieben zu haben. Krass, was? Hierzu "
1715
- #~ "einfach Deine eMail-Adresse in das dafür vorgesehene Feld eintragen."
1716
-
1717
- # @ subscribe-reloaded
1718
- #, fuzzy
1719
- #~ msgid ""
1720
- #~ "Your subscriptions have been successfully updated. In order to cancel or "
1721
- #~ "suspend more notifications, select the corresponding checkbox(es) and "
1722
- #~ "click on the button at the end of the list. You are currently subscribed "
1723
- #~ "to:"
1724
- #~ msgstr ""
1725
- #~ "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
1726
- #~ "entsprechende Auswahlboxen."
1727
-
1728
- # @ subscribe-reloaded
1729
- #, fuzzy
1730
- #~ msgid ""
1731
- #~ "You can manage your subscriptions to the article of this blog on this "
1732
- #~ "page. In order to cancel or suspend one or more notifications, select the "
1733
- #~ "corresponding checkbox(es) and click on the button at the end of the "
1734
- #~ "list. You are currently subscribed to:"
1735
- #~ msgstr ""
1736
- #~ "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
1737
- #~ "entsprechende Auswahlboxen."
1738
-
1739
- # @ subscribe-reloaded
1740
- #, fuzzy
1741
- #~ msgid "The status has been successfully updated."
1742
- #~ msgstr "Der Status wurde erfolgreich aktualisiert. Betroffene Zeilen:"
1743
-
1744
- # @ subscribe-reloaded
1745
- #, fuzzy
1746
- #~ msgid ""
1747
- #~ "You can \"mass update\" all the occurrences of a given email address in "
1748
- #~ "the database with a new one."
1749
- #~ msgstr ""
1750
- #~ "Du kannst Massen-Aktualisierungen für alle eMail-Adressen in der "
1751
- #~ "Datenbank vornehmen."
1752
-
1753
- # @ subscribe-reloaded
1754
- #, fuzzy
1755
- #~ msgid "Remove or suspend email address"
1756
- #~ msgstr "Absende-Adresse"
1757
-
1758
- # @ subscribe-reloaded
1759
- #, fuzzy
1760
- #~ msgid ""
1761
- #~ "Change the status or permanently delete all the subscriptions for a given "
1762
- #~ "email address."
1763
- #~ msgstr ""
1764
- #~ "Status einer eMail-Adresse ändern oder alle Benachrichtigungen löschen."
1765
-
1766
- # @ subscribe-reloaded
1767
- #, fuzzy
1768
- #~ msgid ""
1769
- #~ "Notify authors when a new comment is posted to one of their articles."
1770
- #~ msgstr ""
1771
- #~ "Benachrichtigung an den Administrator, wenn ein neues Abonnement erstellt "
1772
- #~ "wurde."
1773
-
1774
- # @ subscribe-reloaded
1775
- #, fuzzy
1776
- #~ msgid ""
1777
- #~ "The permalink for your management page (<code>/manage-subscriptions</"
1778
- #~ "code> or <code>/?page_id=345</code>). This page <b>does not</b> actually "
1779
- #~ "exist in the system, but its permalink must follow your Wordpress' "
1780
- #~ "permalink settings."
1781
- #~ msgstr ""
1782
- #~ "Der Permalink zur Verwaltungs-Seite (etwa <code>/comment-subscriptions</"
1783
- #~ "code> oder <code>/?page_id=345</code>).<br/>Diese Seite existiert "
1784
- #~ "<b>aktuell nicht</b> im System. Der Wordpress-Struktur muss entsprochen "
1785
- #~ "werden."
1786
-
1787
- # @ subscribe-reloaded
1788
- #, fuzzy
1789
- #~ msgid ""
1790
- #~ "Thank you note shown after the request here above has been processed."
1791
- #~ msgstr ""
1792
- #~ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
1793
- #~ "gespeichert wurden."
1794
-
1795
- # @ subscribe-reloaded
1796
- #, fuzzy
1797
- #~ msgid ""
1798
- #~ "Text shown to those who want to subscribe without commenting. Allowed "
1799
- #~ "tag: [post_title]"
1800
- #~ msgstr ""
1801
- #~ "Text, der angezeigt wird, wenn ohne weiteren Kommentar die "
1802
- #~ "Benachrichtigungen aktiviert wurden. Erlaubte Tags: [post_title]"
1803
-
1804
- # @ subscribe-reloaded
1805
- #, fuzzy
1806
- #~ msgid ""
1807
- #~ "Thank you note shown after the subscription request has been processed "
1808
- #~ "(double check-in disabled)."
1809
- #~ msgstr ""
1810
- #~ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
1811
- #~ "gespeichert wurden (Bestätigung nicht erforderlich)."
1812
-
1813
- # @ subscribe-reloaded
1814
- #, fuzzy
1815
- #~ msgid ""
1816
- #~ "Thank you note shown after the subscription request has been processed "
1817
- #~ "(double check-in enabled)."
1818
- #~ msgstr ""
1819
- #~ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
1820
- #~ "gespeichert wurden (Bestätigung erforderlich)."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-11 02:00-0600\n"
6
+ "PO-Revision-Date: 2016-01-11 02:00-0600\n"
7
+ "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: de\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
+ "X-Poedit-Basepath: ../\n"
21
+ "X-Textdomain-Support: yes\n"
22
+ "X-Generator: Poedit 1.5.4\n"
23
+ "X-Loco-Target-Locale: de_DE\n"
24
+ "X-Poedit-SearchPath-0: .\n"
25
+
26
+ #: wp_subscribe_reloaded.php:124
27
+ msgid "Settings"
28
+ msgstr ""
29
+
30
+ #: wp_subscribe_reloaded.php:1030
31
+ msgid "Don't subscribe"
32
+ msgstr "Nicht abbonieren"
33
+
34
+ #: wp_subscribe_reloaded.php:1031
35
+ msgid "All"
36
+ msgstr "Alle"
37
+
38
+ #: wp_subscribe_reloaded.php:1032 templates/user.php:73
39
+ #: templates/author.php:75
40
+ msgid "Replies to my comments"
41
+ msgstr "Nur Antworten"
42
+
43
+ #: utils/stcr_manage.php:218
44
+ msgid ""
45
+ "Notify me of followup comments via e-mail. You can also <a "
46
+ "href='[subscribe_link]'>subscribe</a> without commenting."
47
+ msgstr ""
48
+ "E-Mail-Benachrichtigung bei weiteren Kommentaren.<br>Auch möglich: <a "
49
+ "href='[subscribe_link]'>Abo ohne Kommentar</a>."
50
+
51
+ #: utils/stcr_manage.php:219
52
+ msgid ""
53
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
54
+ "subscriptions."
55
+ msgstr ""
56
+ "Du erhältst Benachrichtigungen zu diesem Thema. <a "
57
+ "href='[manager_link]'>Verwalte Deine Abonnements</a>."
58
+
59
+ #: utils/stcr_manage.php:220
60
+ msgid ""
61
+ "Your subscription to this post needs to be confirmed. <a "
62
+ "href='[manager_link]'>Manage your subscriptions</a>."
63
+ msgstr ""
64
+ "Dein Benachrichtigungswunsch muss bestätigt werden. <a "
65
+ "href='[manager_link]'>Verwalte Deine Abonnements</a>."
66
+
67
+ #: utils/stcr_manage.php:221
68
+ msgid ""
69
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
70
+ msgstr ""
71
+ "Deine <a href='[manager_link]'>Benachrichtigungs-Einstellungen</a> zu diesem "
72
+ "Beitrag anpassen."
73
+
74
+ #: utils/stcr_manage.php:225 options/index.php:57
75
+ msgid "Manage subscriptions"
76
+ msgstr "Verwalte Abonnements"
77
+
78
+ #: utils/stcr_manage.php:227
79
+ msgid ""
80
+ "To manage your subscriptions, please enter your email address here below. We "
81
+ "will send you a message containing the link to access your personal "
82
+ "management page."
83
+ msgstr ""
84
+ "Um Deine Abonnements zu verwalten, gib bitte hier Deine E-Mail-Adresse ein. "
85
+ "Du bekommst dann eine E-Mail mit einem weiterführenden Link."
86
+
87
+ #: utils/stcr_manage.php:228
88
+ msgid ""
89
+ "Thank you for using our subscription service. Your request has been "
90
+ "completed, and you should receive an email with the management link in a few "
91
+ "minutes."
92
+ msgstr ""
93
+ "Danke für das Nutzen des Benachrichtigungsdienstes. Deine Anfrage wird "
94
+ "bearbeitet und eine E-Mail an Dich verschickt."
95
+
96
+ #: utils/stcr_manage.php:229
97
+ msgid ""
98
+ "You can follow the discussion on <strong>[post_title]</strong> without "
99
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
100
+ "form here below and you're all set."
101
+ msgstr ""
102
+ "Du kannst der Diskussion zum Thema <strong>[post_title]</strong> auch "
103
+ "folgen, ohne bisher selbst etwas geschrieben zu haben. Hierzu einfach Deine "
104
+ "E-Mail-Adresse in das dafür vorgesehene Feld eintragen."
105
+
106
+ #: utils/stcr_manage.php:230
107
+ msgid ""
108
+ "Thank you for using our subscription service. Your request has been "
109
+ "completed. You will receive a notification email every time a new comment to "
110
+ "this article is approved and posted by the administrator."
111
+ msgstr ""
112
+ "Danke für das Nutzen des Benachrichtigungsdienstes. Du wirst nun bei jedem "
113
+ "neuen Kommentar per E-Mail informiert."
114
+
115
+ #: utils/stcr_manage.php:231
116
+ msgid ""
117
+ "Thank you for using our subscription service. In order to confirm your "
118
+ "request, please check your email for the verification message and follow the "
119
+ "instructions."
120
+ msgstr ""
121
+ "Danke für das Nutzen des Benachrichtigungsdienstes. Bitte bestätige Deine "
122
+ "Anfrage durch den Link in der E-Mail, die Dir gerade zugestellt wird."
123
+
124
+ #: utils/stcr_manage.php:232
125
+ msgid ""
126
+ "In order to cancel or suspend one or more notifications, select the "
127
+ "corresponding checkbox(es) and click on the button at the end of the list."
128
+ msgstr ""
129
+ "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
130
+ "entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste."
131
+
132
+ #: utils/stcr_manage.php:233
133
+ msgid ""
134
+ "In order to cancel or suspend one or more notifications, select the "
135
+ "corresponding checkbox(es) and click on the button at the end of the list. "
136
+ "You are currently subscribed to:"
137
+ msgstr ""
138
+ "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
139
+ "entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste. Du "
140
+ "hast derzeit abboniert:"
141
+
142
+ #: utils/stcr_manage.php:237
143
+ msgid "There is a new comment to [post_title]"
144
+ msgstr "Neuer Kommentar zum Artikel: [post_title]"
145
+
146
+ #: utils/stcr_manage.php:238
147
+ msgid ""
148
+ "There is a new comment to [post_title].\n"
149
+ "Comment Link: [comment_permalink]\n"
150
+ "Author: [comment_author]\n"
151
+ "Comment:\n"
152
+ "[comment_content]\n"
153
+ "Permalink: [post_permalink]\n"
154
+ "Manage your subscriptions: [manager_link]"
155
+ msgstr ""
156
+ "Hallo,\n"
157
+ "es gibt einen neuen Kommentar zum Artikel: [post_title].\n"
158
+ "[post_permalink]\n"
159
+ "\n"
160
+ "[comment_author] schrieb gerade:\n"
161
+ "[comment_content]\n"
162
+ "\n"
163
+ "Hier antworten: [comment_permalink]\n"
164
+ "Verwalte Deine Benachrichtigungen: [manager_link]"
165
+
166
+ #: utils/stcr_manage.php:239
167
+ msgid "Please confirm your subscription to [post_title]"
168
+ msgstr "Bitte bestätige Deinen Benachrichtigungswunsch zum Thema [post_title]"
169
+
170
+ #: utils/stcr_manage.php:240
171
+ msgid ""
172
+ "You have requested to be notified every time a new comment is added to:\n"
173
+ "[post_permalink]\n"
174
+ "\n"
175
+ "Please confirm your request by clicking on this link:\n"
176
+ "[confirm_link]"
177
+ msgstr ""
178
+ "Hallo,\n"
179
+ "Du möchtest bei jedem neuen Kommentar benachrichtigt werden, der zu diesem "
180
+ "Beitrag geschrieben wird:\n"
181
+ "[post_permalink]\n"
182
+ "\n"
183
+ "Bitte bestätigte diese Anfrage durch einen Klick auf diesen Link:\n"
184
+ "[confirm_link]"
185
+
186
+ #: utils/stcr_manage.php:241
187
+ msgid "Manage your subscriptions on [blog_name]"
188
+ msgstr "Benachrichtigungs-Einstellungen von [blog_name]"
189
+
190
+ #: utils/stcr_manage.php:242
191
+ msgid ""
192
+ "You have requested to manage your subscriptions to the articles on "
193
+ "[blog_name]. Follow this link to access your personal page:\n"
194
+ "[manager_link]"
195
+ msgstr ""
196
+ "Du möchtest Deine Benachrichtigungs-Einstellungen von [blog_name] ändern. "
197
+ "Nutze dazu bitte diesen Link:\n"
198
+ "[manager_link]"
199
+
200
+ #: utils/stcr_manage.php:387
201
+ #, fuzzy
202
+ msgid "Subscriptions"
203
+ msgstr "Abonnements"
204
+
205
+ #: utils/stcr_manage.php:416 options/panel5.php:87 options/panel5.php:96
206
+ #: options/panel5.php:105 options/panel5.php:115 options/panel5.php:124
207
+ #: options/panel5.php:134 options/panel5.php:143 options/panel5.php:152
208
+ #: options/panel5.php:161 options/panel2.php:67 options/panel2.php:77
209
+ #: options/panel2.php:106
210
+ msgid "No"
211
+ msgstr "Nein"
212
+
213
+ #: utils/stcr_manage.php:443
214
+ msgid ""
215
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
216
+ msgstr ""
217
+ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
218
+ "offizielle"
219
+
220
+ #: utils/stcr_manage.php:443
221
+ msgid "support forum"
222
+ msgstr "Support-Forum"
223
+
224
+ #: utils/stcr_manage.php:444
225
+ msgid "Feeling generous?"
226
+ msgstr "Bist du spendabel?"
227
+
228
+ #: utils/stcr_manage.php:444
229
+ msgid "Donate a few bucks!"
230
+ msgstr "Gib mir ein Trinkgeld!"
231
+
232
+ #: utils/stcr_upgrade.php:53
233
+ msgid "Important Notice"
234
+ msgstr ""
235
+
236
+ #: utils/stcr_upgrade.php:96
237
+ msgid ""
238
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
239
+ "database has been sanitized to prevent the raw html messages. <a class="
240
+ "\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-animation\" "
241
+ "src=\""
242
+ msgstr ""
243
+
244
+ #: utils/stcr_upgrade.php:151
245
+ msgid ""
246
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
247
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
248
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
249
+ msgstr ""
250
+
251
+ #: utils/stcr_upgrade.php:151
252
+ msgid ""
253
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
254
+ "Comments to prevent confusion between the two plugins."
255
+ msgstr ""
256
+
257
+ #: utils/stcr_upgrade.php:152
258
+ msgid ""
259
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
260
+ "that you want to import, you'll need to import that data manually, as only "
261
+ "one import routine will ever run to prevent data loss."
262
+ msgstr ""
263
+
264
+ #: utils/stcr_upgrade.php:153 utils/stcr_upgrade.php:225
265
+ #: utils/stcr_upgrade.php:374
266
+ msgid ""
267
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
268
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
269
+ "your configuration.<a class=\"dismiss\" href=\"#\">Got it. </a><img class="
270
+ "\"stcr-loading-animation\" src=\""
271
+ msgstr ""
272
+
273
+ #: utils/stcr_upgrade.php:224
274
+ msgid ""
275
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
276
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
277
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
278
+ msgstr ""
279
+
280
+ #: utils/stcr_upgrade.php:224
281
+ msgid ""
282
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
283
+ "Notification to prevent confusion between the two plugins."
284
+ msgstr ""
285
+
286
+ #: utils/stcr_upgrade.php:371
287
+ msgid ""
288
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
289
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
290
+ "were detected and automatically imported into <strong>Subscribe to Comments "
291
+ "Reloaded</strong>."
292
+ msgstr ""
293
+
294
+ #: utils/stcr_upgrade.php:371
295
+ msgid ""
296
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
297
+ "Subscriptions to prevent confusion between the two plugins."
298
+ msgstr ""
299
+
300
+ #: utils/stcr_upgrade.php:372
301
+ msgid ""
302
+ "If you have subscription data from another plugin (such as Subscribe to "
303
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
304
+ "you'll need to import that data manually, as only one import routine will "
305
+ "ever run to prevent data loss."
306
+ msgstr ""
307
+
308
+ #: utils/stcr_upgrade.php:373
309
+ msgid ""
310
+ "<strong>Note:</strong> If you were previously using the "
311
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
312
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
313
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
314
+ "respectively."
315
+ msgstr ""
316
+
317
+ #: utils/stcr_upgrade.php:387
318
+ #, fuzzy
319
+ msgid ""
320
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
321
+ msgstr ""
322
+ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
323
+ "offizielle"
324
+
325
+ #: utils/stcr_upgrade.php:388
326
+ msgid ""
327
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
328
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
329
+ msgstr ""
330
+
331
+ #: utils/stcr_upgrade.php:389
332
+ msgid ""
333
+ "If you want to donate you can do it via <a href=\"\n"
334
+ "https://www.paypal.com/cgi-bin/webscr?"
335
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
336
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
337
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
338
+ msgstr ""
339
+
340
+ #: utils/stcr_upgrade.php:391
341
+ msgid ""
342
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
343
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
344
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Got it. </"
345
+ "a><img class=\"stcr-loading-animation\" src=\""
346
+ msgstr ""
347
+
348
+ #: utils/stcr_upgrade.php:403
349
+ msgid ""
350
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
351
+ "160106."
352
+ msgstr ""
353
+
354
+ #: utils/stcr_upgrade.php:404
355
+ msgid ""
356
+ "This version includes many changes and fixes to improve your experience with "
357
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
358
+ "email templates, Subscription Checkbox position, and more!"
359
+ msgstr ""
360
+
361
+ #: utils/stcr_upgrade.php:405
362
+ msgid ""
363
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
364
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
365
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
366
+ "class=\"stcr-loading-animation\" src=\""
367
+ msgstr ""
368
+
369
+ #: utils/stcr_upgrade.php:419
370
+ msgid "Announcement: Introducing Comment Mail"
371
+ msgstr ""
372
+
373
+ #: utils/stcr_upgrade.php:420
374
+ msgid ""
375
+ "<strong><a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
376
+ "\">Comment Mail</strong></a> is a new free plugin based on the original "
377
+ "<strong>Subscribe to Comments Reloaded</strong> and includes all of the core "
378
+ "StCR features."
379
+ msgstr ""
380
+
381
+ #: utils/stcr_upgrade.php:421
382
+ msgid ""
383
+ "A powerful StCR importer lets you import your StCR settings and "
384
+ "subscriptions into Comment Mail, allowing for a seamless transition."
385
+ msgstr ""
386
+
387
+ #: utils/stcr_upgrade.php:422
388
+ msgid ""
389
+ "Need more powerful features to manage your subscriptions but can't wait for "
390
+ "StCR? <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
391
+ "\">Take a look at Comment Mail!</a>"
392
+ msgstr ""
393
+
394
+ #: utils/stcr_upgrade.php:423
395
+ msgid ""
396
+ "<em>Note: Subscribe to Comments Reloaded remains in active development.</"
397
+ "em><a class=\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-"
398
+ "animation\" src=\""
399
+ msgstr ""
400
+
401
+ #: templates/user.php:23 templates/author.php:23
402
+ #: options/panel1-business-logic.php:70
403
+ msgid "Subscriptions deleted:"
404
+ msgstr "Abos gelöscht:"
405
+
406
+ #: templates/user.php:27 templates/author.php:27
407
+ #: options/panel1-business-logic.php:74
408
+ msgid "Subscriptions suspended:"
409
+ msgstr "Abos deaktiviert:"
410
+
411
+ #: templates/user.php:31 templates/author.php:31
412
+ #: options/panel1-business-logic.php:78
413
+ msgid "Subscriptions activated:"
414
+ msgstr "Aktivierte Benachrichtigungen:"
415
+
416
+ #: templates/user.php:35 templates/user.php:39 templates/author.php:35
417
+ #: templates/author.php:39 options/panel1-business-logic.php:82
418
+ #: options/panel1-business-logic.php:86
419
+ msgid "Subscriptions updated:"
420
+ msgstr "Aktualisierte Benachrichtigungen:"
421
+
422
+ #: templates/user.php:52 templates/author.php:52
423
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:22
424
+ #: options/panel1.php:117 options/panel1.php:153
425
+ msgid ""
426
+ "Please remember: this operation cannot be undone. Are you sure you want to "
427
+ "proceed?"
428
+ msgstr ""
429
+ "Bitte beachte: Diese Aktion kann nicht widerrufen werden. Bist Du sicher, "
430
+ "dass Du fortfahren möchtest?"
431
+
432
+ #: templates/user.php:57 templates/request-management-link.php:73
433
+ #: templates/subscribe.php:89 options/panel1-add-subscription.php:16
434
+ #: options/panel1.php:65 options/panel1.php:126
435
+ msgid "Email"
436
+ msgstr "E-Mail"
437
+
438
+ #: templates/user.php:58 templates/author.php:58 options/panel1.php:129
439
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
440
+ msgstr "Legende: Y = Alle Kommentare, R = Nur Antworten, C = Inaktiv"
441
+
442
+ #: templates/user.php:63
443
+ msgid "F j, Y"
444
+ msgstr ""
445
+
446
+ #: templates/user.php:67 templates/author.php:69
447
+ msgid "Select all"
448
+ msgstr "Alle auswählen"
449
+
450
+ #: templates/user.php:68 templates/author.php:70
451
+ msgid "Invert selection"
452
+ msgstr "Auswahl umkehren"
453
+
454
+ #: templates/user.php:69 templates/author.php:71 options/panel1.php:161
455
+ msgid "Action:"
456
+ msgstr "Aktion:"
457
+
458
+ #: templates/user.php:70 templates/author.php:72 options/panel1.php:153
459
+ msgid "Delete"
460
+ msgstr "Löschen"
461
+
462
+ #: templates/user.php:71 templates/author.php:73 options/panel1.php:163
463
+ msgid "Suspend"
464
+ msgstr "Deaktivieren"
465
+
466
+ #: templates/user.php:72 templates/author.php:74
467
+ msgid "All comments"
468
+ msgstr ""
469
+
470
+ #: templates/user.php:74 templates/author.php:76 options/panel1.php:166
471
+ msgid "Activate"
472
+ msgstr "Aktivieren"
473
+
474
+ #: templates/user.php:76 templates/author.php:77 options/panel1.php:167
475
+ msgid "Update subscriptions"
476
+ msgstr "Abos aktualisieren"
477
+
478
+ #: templates/user.php:79 templates/author.php:80
479
+ #: templates/one-click-unsubscribe.php:28
480
+ msgid "No subscriptions match your search criteria."
481
+ msgstr "Keine passenden Abos gefunden."
482
+
483
+ #: templates/request-management-link.php:75 templates/subscribe.php:91
484
+ msgid "Send"
485
+ msgstr "Abschicken"
486
+
487
+ #: templates/author.php:57
488
+ msgid "Title"
489
+ msgstr "Titel"
490
+
491
+ #: templates/subscribe.php:43 templates/subscribe.php:44
492
+ msgid "New subscription to"
493
+ msgstr "Neue Benachrichtigung"
494
+
495
+ #: templates/subscribe.php:44
496
+ msgid "User:"
497
+ msgstr "Besucher:"
498
+
499
+ #: options/panel6.php:8 options/panel7.php:8
500
+ #, fuzzy
501
+ msgid "Support the developers"
502
+ msgstr "Unterstütze den Autor"
503
+
504
+ #: options/panel6.php:18
505
+ #, fuzzy
506
+ msgid ""
507
+ "How valuable is the feature offered by this plugin to your visitors? please "
508
+ "consider supporting the author if this plugin made your web site better, "
509
+ "especially if you are making money out of it. Any donation received will be "
510
+ "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
511
+ "strong>, and to buy some food for my hungry family."
512
+ msgstr ""
513
+ "Wie wertvoll sind die Funktionen dieses Plugins für deine Besucher? "
514
+ "Subscribe to Comments Reloaded ist und bleibt kostenlos. Wenn das Plugin "
515
+ "einen Mehrwert für deine Seite liefert und besonders, wenn du mit der Seite "
516
+ "Geld verdienst, solltest du daher eine Unterstützung des Autors in Erwägung "
517
+ "ziehen! Jede Spende hilft mir bei der Versorgung meiner Familie und "
518
+ "vergrößert so meine Freizeit für die Weiterentwicklung von Subscribe to "
519
+ "Comments Reloaded."
520
+
521
+ #: options/panel6.php:20
522
+ msgid "Don't want to donate? You can still help"
523
+ msgstr "Du möchtest kein Geld spenden? Du kannst auch anders helfen"
524
+
525
+ #: options/panel6.php:21
526
+ #, fuzzy
527
+ msgid ""
528
+ "If you don't want to donate money, please consider blogging about my plugin "
529
+ "with a link to the plugin's page. Please let your readers know what makes "
530
+ "your blog better. You can also contribute donating your time: do not "
531
+ "hesitate to send me bug reports, your localization files, ideas on how to "
532
+ "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
533
+ "you do, thanks for using my plugin!"
534
+ msgstr ""
535
+ "Wenn du kein Geld spenden möchtest, kannst du auch helfen, indem du über "
536
+ "mein Plugin bloggst und einen Link auf die Plugin-Sete setzt. Lass deine "
537
+ "Leser wissen, womit du arbeitest! Du kannst mir auch deine Zeit spenden: "
538
+ "Hilf bei der Übersetzung, sende mir Bug-Reports oder Ideen, wie das Plugin "
539
+ "verbessert werden kann. Was auch immer, Danke das du mein Plugin nutzt!"
540
+
541
+ #: options/panel6.php:23
542
+ msgid "Subscribe to the Beta testers"
543
+ msgstr ""
544
+
545
+ #: options/panel6.php:24
546
+ msgid ""
547
+ "Before a new Update we release a Beta version so that our current users can "
548
+ "give us feedback if they find a bug, If you want to join the tester list you "
549
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
550
+ "a>"
551
+ msgstr ""
552
+
553
+ #: options/panel6.php:26
554
+ msgid "Vote and show your appreciation"
555
+ msgstr "Bewerte und schreibe deine Meinung!"
556
+
557
+ #: options/panel6.php:27
558
+ #, fuzzy
559
+ msgid ""
560
+ "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
561
+ "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
562
+ "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
563
+ msgstr ""
564
+ "Erzähle anderen Leuten wie du Subscribe to Comments Reloaded findest und wie "
565
+ "du es einsetzt. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
566
+ "comments-reloaded/\">Bewerte es</a> auf seiner Seite im Plugin-Verzeichnis."
567
+
568
+ #: options/panel1-business-logic.php:23
569
+ msgid "Subscription added."
570
+ msgstr "Abo hinzugefügt."
571
+
572
+ #: options/panel1-business-logic.php:39
573
+ msgid "Subscriptions updated."
574
+ msgstr "Abos aktualisiert."
575
+
576
+ #: options/panel1-business-logic.php:51
577
+ msgid "Subscription deleted."
578
+ msgstr "Abo gelöscht."
579
+
580
+ #: options/panel1-business-logic.php:110
581
+ msgid "&laquo; Previous"
582
+ msgstr "&laquo; Vorherige"
583
+
584
+ #: options/panel1-business-logic.php:114
585
+ msgid "Next &raquo;"
586
+ msgstr "Nächste &raquo;"
587
+
588
+ #: options/panel5.php:18 options/panel5.php:60 options/panel3.php:73
589
+ #: options/panel4.php:70 options/panel2.php:49
590
+ msgid "Your settings have been successfully updated."
591
+ msgstr "Deine Einstellungen wurden erfolgreich gespeichert."
592
+
593
+ #: options/panel5.php:20 options/panel5.php:62 options/panel3.php:75
594
+ #: options/panel4.php:72 options/panel2.php:51
595
+ msgid "There was an error updating the following fields:"
596
+ msgstr ""
597
+ "Bei der Aktualisierung der folgenden Felder ist ein Fehler aufgetreten:"
598
+
599
+ #: options/panel5.php:28 options/panel5.php:75
600
+ msgid "Autopurge requests"
601
+ msgstr "Anfragen automatisch löschen"
602
+
603
+ #: options/panel5.php:31 options/panel5.php:84
604
+ msgid "Enable double check"
605
+ msgstr "Bestätigung erforderlich (double check)"
606
+
607
+ #: options/panel5.php:34 options/panel5.php:92
608
+ #, fuzzy
609
+ msgid "Subscribe authors"
610
+ msgstr "Abonniert"
611
+
612
+ #: options/panel5.php:37 options/panel5.php:102
613
+ msgid "Enable HTML emails"
614
+ msgstr "Aktiviere HTML E-Mails"
615
+
616
+ #: options/panel5.php:40
617
+ msgid "HTMLify Links in HTML emails"
618
+ msgstr ""
619
+
620
+ #: options/panel5.php:43
621
+ msgid "Send trackbacks"
622
+ msgstr "Trackbacks senden"
623
+
624
+ #: options/panel5.php:46
625
+ msgid "Notify admin"
626
+ msgstr "Administrator informieren"
627
+
628
+ #: options/panel5.php:49 options/panel5.php:140
629
+ msgid "Let admin subscribe"
630
+ msgstr "Admin-Anmeldung"
631
+
632
+ #: options/panel5.php:52 options/panel5.php:149
633
+ #, fuzzy
634
+ msgid "BCC admin on Notifications"
635
+ msgstr "Benachrichtigungen"
636
+
637
+ #: options/panel5.php:55
638
+ #, fuzzy
639
+ msgid "StCR Subscription Box Position"
640
+ msgstr "Neue Benachrichtigung"
641
+
642
+ #: options/panel5.php:78
643
+ msgid "days"
644
+ msgstr "Tage"
645
+
646
+ #: options/panel5.php:79
647
+ msgid ""
648
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
649
+ "this feature."
650
+ msgstr ""
651
+ "Lösche wartende, nicht bestätigte Anfragen nach x Tagen. Verwende die 0, um "
652
+ "nie zu löschen."
653
+
654
+ #: options/panel5.php:86 options/panel5.php:95 options/panel5.php:104
655
+ #: options/panel5.php:114 options/panel5.php:123 options/panel5.php:133
656
+ #: options/panel5.php:142 options/panel5.php:151 options/panel5.php:160
657
+ #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
658
+ msgid "Yes"
659
+ msgstr "Ja"
660
+
661
+ #: options/panel5.php:88
662
+ msgid ""
663
+ "Send a notification email to confirm the subscription (to avoid addresses "
664
+ "misuse)."
665
+ msgstr ""
666
+ "Sende eine Bestätigungsnachricht, um die Gültigkeit der E-Mail-Adresse zu "
667
+ "verifizieren."
668
+
669
+ #: options/panel5.php:97
670
+ msgid ""
671
+ "Automatically subscribe authors to their own articles (not retroactive)."
672
+ msgstr ""
673
+
674
+ #: options/panel5.php:106
675
+ msgid ""
676
+ "If enabled, will send email messages with content-type = text/html instead "
677
+ "of text/plain"
678
+ msgstr "Wenn aktiviert, wird HTML-Inhalt, statt Nur-Text verwendet"
679
+
680
+ #: options/panel5.php:111
681
+ msgid "HTMLify links in emails"
682
+ msgstr ""
683
+
684
+ #: options/panel5.php:116
685
+ msgid ""
686
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
687
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
688
+ msgstr ""
689
+
690
+ #: options/panel5.php:121
691
+ msgid "Process trackbacks"
692
+ msgstr "Trackbacks senden"
693
+
694
+ #: options/panel5.php:125
695
+ msgid ""
696
+ "Notify users when a new trackback or pingback is added to the discussion."
697
+ msgstr ""
698
+ "Benachrichtigung an die Besucher, wenn ein Trackback oder Pingback eingeht."
699
+
700
+ #: options/panel5.php:130
701
+ msgid "Track all subscriptions"
702
+ msgstr "Verfolge alle Benachrichtigungen"
703
+
704
+ #: options/panel5.php:135
705
+ msgid "Notify the administrator when users subscribe without commenting."
706
+ msgstr ""
707
+ "Benachrichtigung an den Administrator, wenn ohne Kommentar ein Abo "
708
+ "eingerichtet wurde."
709
+
710
+ #: options/panel5.php:144
711
+ msgid "Let the administrator subscribe to comments when logged in."
712
+ msgstr ""
713
+ "Erlaube dem Administrator Kommentare zu Abonnieren, wenn er eingeloggt ist."
714
+
715
+ #: options/panel5.php:153
716
+ msgid "Send a copy of all Notifications to the administrator."
717
+ msgstr ""
718
+
719
+ #: options/panel5.php:158
720
+ msgid "StCR Box Position"
721
+ msgstr ""
722
+
723
+ #: options/panel5.php:162
724
+ msgid ""
725
+ "If this option is enable the subscriptioin box will be above the submit "
726
+ "button in your comment form."
727
+ msgstr ""
728
+
729
+ #: options/panel5.php:167
730
+ msgid "StCR Unique Key"
731
+ msgstr ""
732
+
733
+ #: options/panel5.php:172
734
+ msgid "This Unique Key is not set, please click the following button to "
735
+ msgstr ""
736
+
737
+ #: options/panel5.php:176 options/panel5.php:187
738
+ msgid "Generate"
739
+ msgstr ""
740
+
741
+ #: options/panel5.php:184
742
+ msgid ""
743
+ "This Unique Key will be use to send the notification to your subscribers "
744
+ "with more security."
745
+ msgstr ""
746
+
747
+ #: options/panel5.php:195 options/panel3.php:200 options/panel4.php:207
748
+ #: options/panel2.php:189
749
+ msgid "Save Changes"
750
+ msgstr "Alle Änderungen speichern"
751
+
752
+ #: options/index.php:58
753
+ msgid "Comment Form"
754
+ msgstr "Kommentarformular"
755
+
756
+ #: options/index.php:59
757
+ msgid "Management Page"
758
+ msgstr "Verwaltungsseite"
759
+
760
+ #: options/index.php:60
761
+ msgid "Notifications"
762
+ msgstr "Benachrichtigungen"
763
+
764
+ #: options/index.php:61 options/panel3.php:85 options/panel4.php:80
765
+ #: options/panel2.php:58
766
+ msgid "Options"
767
+ msgstr "Optionen"
768
+
769
+ #: options/index.php:62
770
+ msgid "You can help"
771
+ msgstr "Du kannst helfen"
772
+
773
+ #: options/index.php:63
774
+ #, fuzzy
775
+ msgid "Support"
776
+ msgstr "Support-Forum"
777
+
778
+ #: options/index.php:64
779
+ msgid "Donate"
780
+ msgstr ""
781
+
782
+ #: options/panel3.php:16 options/panel3.php:90
783
+ msgid "Virtual Management Page"
784
+ msgstr "Verwaltungsseite"
785
+
786
+ #: options/panel3.php:21 options/panel3.php:99
787
+ msgid "Page title"
788
+ msgstr "Seiten-Titel"
789
+
790
+ #: options/panel3.php:26 options/panel3.php:108
791
+ msgid "Management URL"
792
+ msgstr "Link zur Verwaltungsseite"
793
+
794
+ #: options/panel3.php:31 options/panel3.php:120
795
+ msgid "Custom HEAD meta"
796
+ msgstr "Benutzerdefinierte HEAD Meta-Tags"
797
+
798
+ #: options/panel3.php:37 options/panel3.php:134
799
+ msgid "Request link"
800
+ msgstr "Link-Anfrage"
801
+
802
+ #: options/panel3.php:42 options/panel3.php:144
803
+ msgid "Request submitted"
804
+ msgstr "Anfrage ausgeführt"
805
+
806
+ #: options/panel3.php:47 options/panel3.php:154
807
+ msgid "Subscribe without commenting"
808
+ msgstr "Abo ohne Kommentar"
809
+
810
+ #: options/panel3.php:52 options/panel3.php:164
811
+ msgid "Subscription processed"
812
+ msgstr "Abo eingetragen"
813
+
814
+ #: options/panel3.php:57 options/panel3.php:174
815
+ msgid "Subscription processed (DCI)"
816
+ msgstr "Abo eingetragen (DCI)"
817
+
818
+ #: options/panel3.php:62 options/panel3.php:183
819
+ msgid "Authors"
820
+ msgstr "Autoren"
821
+
822
+ #: options/panel3.php:67 options/panel3.php:191
823
+ msgid "Users"
824
+ msgstr "Besucher"
825
+
826
+ #: options/panel3.php:93
827
+ msgid "Enabled"
828
+ msgstr "Aktiviert"
829
+
830
+ #: options/panel3.php:94
831
+ msgid "Disabled"
832
+ msgstr "Deaktiviert"
833
+
834
+ #: options/panel3.php:95
835
+ #, fuzzy
836
+ msgid ""
837
+ "Disable the virtual management page if you need to create a <a href="
838
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
839
+ "real-management-page\">real page</a> to make your theme happy."
840
+ msgstr ""
841
+ "Deaktiviere die virtuelle Verwaltungsseite, wenn du für dein Theme eine <a "
842
+ "href=\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">richtige "
843
+ "Seite</a> anlegen musst."
844
+
845
+ #: options/panel3.php:104
846
+ msgid "Title of the page your visitors will use to manage their subscriptions."
847
+ msgstr "Titel der Verwaltungsseite."
848
+
849
+ #: options/panel3.php:112
850
+ msgid ""
851
+ "The permalink for your management page (something like <code>/manage-"
852
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
853
+ "b> actually exist in the system, but its link must follow your permalink "
854
+ "structure."
855
+ msgstr ""
856
+ "Der Permalink zur Verwaltungs-Seite (etwa <code>/comment-subscriptions</"
857
+ "code> oder <code>/?page_id=345</code>).<br/>Diese Seite existiert <b>nicht</"
858
+ "b> wirklich im System, aber muss der Permalink-Struktur von Wordpress "
859
+ "entsprechen."
860
+
861
+ #: options/panel3.php:114
862
+ msgid ""
863
+ "Warning: it looks like the value you are using may be incompatible with your "
864
+ "permalink structure"
865
+ msgstr ""
866
+ "Warnung: Der eingegebene Wert scheint inkompatibel zu sein mit Deiner "
867
+ "Permalink-Struktur."
868
+
869
+ #: options/panel3.php:124
870
+ msgid ""
871
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
872
+ "Use <strong>single</strong> quotes for values."
873
+ msgstr ""
874
+ "Gib hier einen benutzerdefinierten HTML Code ein, der in Deinem HEAD-Bereich "
875
+ "eingefügt werden soll. Nutze <strong>einfache </strong> Anführungszeichen in "
876
+ "den Werten."
877
+
878
+ #: options/panel3.php:130 options/panel4.php:113
879
+ msgid "Messages"
880
+ msgstr "Nachrichten"
881
+
882
+ #: options/panel3.php:139
883
+ msgid "Text shown to those who request to manage their subscriptions."
884
+ msgstr ""
885
+ "Text, der angezeigt wird, wenn ein Link zur Verwaltungs-Seite angefordert "
886
+ "wurde."
887
+
888
+ #: options/panel3.php:149
889
+ msgid ""
890
+ "Thank you note shown after the request here above has been processed. "
891
+ "Allowed tags: [post_title], [post_permalink]"
892
+ msgstr ""
893
+ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
894
+ "gespeichert wurden. Erlaubte tags: [post_title], [post_permalink]"
895
+
896
+ #: options/panel3.php:159
897
+ msgid ""
898
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
899
+ "[post_title], [post_permalink]"
900
+ msgstr ""
901
+ "Text, der angezeigt wird, wenn ohne weiteren Kommentar die "
902
+ "Benachrichtigungen aktiviert wurden. Erlaubte Tags: [post_title]"
903
+
904
+ #: options/panel3.php:169
905
+ msgid ""
906
+ "Thank you note shown after the subscription request has been processed "
907
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
908
+ msgstr ""
909
+ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
910
+ "gespeichert wurden (Bestätigung nicht erforderlich). Erlaubte Tags: "
911
+ "[post_title], [post_permalink]"
912
+
913
+ #: options/panel3.php:179
914
+ msgid ""
915
+ "Thank you note shown after the subscription request has been processed "
916
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
917
+ msgstr ""
918
+ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
919
+ "gespeichert wurden (Bestätigung erforderlich). Erlaubte Tags: [post_title], "
920
+ "[post_permalink]"
921
+
922
+ #: options/panel3.php:187
923
+ msgid "Introductory text for the authors' management page."
924
+ msgstr "Erläuterungstext der Verwaltungs-Seite für Autoren."
925
+
926
+ #: options/panel3.php:195
927
+ msgid "Introductory text for the users' management page."
928
+ msgstr "Erläuterungstext der Verwaltungs-Seite der Besucher."
929
+
930
+ #: options/panel1-edit-subscription.php:8
931
+ msgid "Update Subscription"
932
+ msgstr "Aktualisiere Abonnement"
933
+
934
+ #: options/panel1-edit-subscription.php:11
935
+ #: options/panel1-edit-subscription.php:21
936
+ #: options/panel1-edit-subscription.php:22
937
+ #: options/panel1-edit-subscription.php:23 options/panel1.php:31
938
+ #: options/panel1.php:32 options/panel1.php:33
939
+ msgid "optional"
940
+ msgstr "optional"
941
+
942
+ #: options/panel1-edit-subscription.php:13
943
+ #: options/panel1-add-subscription.php:13
944
+ msgid "Post:"
945
+ msgstr "Beitrag:"
946
+
947
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:26
948
+ msgid "From"
949
+ msgstr "Von"
950
+
951
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:30
952
+ msgid "To"
953
+ msgstr "ersetze durch"
954
+
955
+ #: options/panel1-edit-subscription.php:26
956
+ #: options/panel1-add-subscription.php:20 options/panel1.php:36
957
+ #: options/panel1.php:69 options/panel1.php:139
958
+ msgid "Status"
959
+ msgstr "Status"
960
+
961
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:38
962
+ msgid "Keep unchanged"
963
+ msgstr "Unverändert belassen"
964
+
965
+ #: options/panel1-edit-subscription.php:29
966
+ #: options/panel1-add-subscription.php:22 options/panel1.php:39
967
+ #: options/panel1.php:72
968
+ msgid "Active"
969
+ msgstr "Aktiv"
970
+
971
+ #: options/panel1-edit-subscription.php:30
972
+ #: options/panel1-add-subscription.php:23 options/panel1.php:40
973
+ #: options/panel1.php:73
974
+ msgid "Replies only"
975
+ msgstr "Nur Antworten"
976
+
977
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:41
978
+ msgid "Suspended"
979
+ msgstr "Deaktiviert"
980
+
981
+ #: options/panel1-edit-subscription.php:33
982
+ #: options/panel1-add-subscription.php:26 options/panel1.php:43
983
+ msgid "Update"
984
+ msgstr "Aktualisieren"
985
+
986
+ #: options/panel1-add-subscription.php:8 options/panel1.php:54
987
+ msgid "Add New Subscription"
988
+ msgstr "Neues Abo hinzufügen"
989
+
990
+ #: options/panel1-add-subscription.php:24 options/panel1.php:74
991
+ msgid "Ask user to confirm"
992
+ msgstr "Benutzer nach Bestätigung fragen"
993
+
994
+ #: options/panel8.php:11
995
+ #, fuzzy
996
+ msgid "Support Subscribe to Comments Reloaded"
997
+ msgstr ""
998
+ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
999
+ "offizielle"
1000
+
1001
+ #: options/panel8.php:12
1002
+ msgid ""
1003
+ "Every contribution that you make is high valuable, so if you consider this "
1004
+ "plugin a helpful tool we will use your donation to invest on support and "
1005
+ "developing time."
1006
+ msgstr ""
1007
+
1008
+ #: options/panel4.php:17 options/panel4.php:85
1009
+ msgid "Sender name"
1010
+ msgstr "Absender"
1011
+
1012
+ #: options/panel4.php:22 options/panel4.php:98
1013
+ msgid "Sender email address"
1014
+ msgstr "E-Mail-Adresse des Absenders"
1015
+
1016
+ #: options/panel4.php:27 options/panel4.php:118
1017
+ msgid "Notification subject"
1018
+ msgstr "Benachrichtigung - Betreff"
1019
+
1020
+ #: options/panel4.php:33 options/panel4.php:39 options/panel4.php:131
1021
+ msgid "Notification message"
1022
+ msgstr "Benachrichtigung - Text"
1023
+
1024
+ #: options/panel4.php:44 options/panel4.php:145
1025
+ msgid "Double check subject"
1026
+ msgstr "Double check - Betreff"
1027
+
1028
+ #: options/panel4.php:49 options/panel4.php:158
1029
+ msgid "Double check message"
1030
+ msgstr "Double check - Text"
1031
+
1032
+ #: options/panel4.php:54 options/panel4.php:170
1033
+ msgid "Management subject"
1034
+ msgstr "Verwaltung - Betreff"
1035
+
1036
+ #: options/panel4.php:59 options/panel4.php:64 options/panel4.php:183
1037
+ msgid "Management message"
1038
+ msgstr "Verwaltung - Text"
1039
+
1040
+ #: options/panel4.php:92
1041
+ msgid ""
1042
+ "Name to use for the \"from\" field when sending a new notification to the "
1043
+ "user."
1044
+ msgstr "Absender: Name"
1045
+
1046
+ #: options/panel4.php:106
1047
+ msgid ""
1048
+ "Email address to use for the \"from\" field when sending a new notification "
1049
+ "to the user."
1050
+ msgstr "Absender: E-Mail-Adresse"
1051
+
1052
+ #: options/panel4.php:125
1053
+ msgid "Subject of the notification email. Allowed tag: [post_title]"
1054
+ msgstr "Betreff-Zeile einer Benachrichtigung. Erlaubte Tags: [post_title]"
1055
+
1056
+ #: options/panel4.php:138
1057
+ msgid ""
1058
+ "Content of the notification email. Allowed tags: [post_title], "
1059
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1060
+ "[manager_link]"
1061
+ msgstr ""
1062
+ "E-Mail-Text einer Benachrichtigung.<br/>Erlaubte Tags: [post_title], "
1063
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1064
+ "[manager_link]"
1065
+
1066
+ #: options/panel4.php:139
1067
+ msgid ""
1068
+ "<p><strong>Note: To get a default template clear all the content and save "
1069
+ "the options.</strong></p>"
1070
+ msgstr ""
1071
+
1072
+ #: options/panel4.php:152
1073
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
1074
+ msgstr ""
1075
+ "Betreff-Zeile einer Bestätigungs-Aufforderung. Erlaubte Tags: [post_title]"
1076
+
1077
+ #: options/panel4.php:164
1078
+ msgid ""
1079
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
1080
+ "[confirm_link], [post_title], [manager_link]"
1081
+ msgstr ""
1082
+ "E-Mail-Text einer Bestätigungs-Aufforderung. Erlaubte Tags: "
1083
+ "[post_permalink], [confirm_link], [post_title], [manager_link]"
1084
+
1085
+ #: options/panel4.php:177
1086
+ msgid ""
1087
+ "Subject of the mail sent to those who request to access their management "
1088
+ "page. Allowed tag: [blog_name]"
1089
+ msgstr ""
1090
+ "Betreff-Zeile der E-Mail, die den Link zur Verwaltungsseite enthält. "
1091
+ "Erlaubte Tags: [blog_name]"
1092
+
1093
+ #: options/panel4.php:189
1094
+ msgid ""
1095
+ "Content of the management email. Allowed tags: [blog_name], [manager_link]"
1096
+ msgstr ""
1097
+ "Text der E-Mail, die den Link zur Verwaltungsseite enthält. Erlaubte Tags: "
1098
+ "[blog_name], [manager_link]"
1099
+
1100
+ #: options/panel4.php:195
1101
+ #, fuzzy
1102
+ msgid "One Click Unsubscribe"
1103
+ msgstr "Admin-Anmeldung"
1104
+
1105
+ #: options/panel4.php:201
1106
+ #, fuzzy
1107
+ msgid "Content of the One Click confirmation. Allowed tags: [post_title]"
1108
+ msgstr ""
1109
+ "Text der E-Mail, die den Link zur Verwaltungsseite enthält. Erlaubte Tags: "
1110
+ "[blog_name], [manager_link]"
1111
+
1112
+ #: options/panel2.php:12 options/panel2.php:63
1113
+ msgid "Enable default checkbox"
1114
+ msgstr "Auswahlbox anzeigen"
1115
+
1116
+ #: options/panel2.php:15 options/panel2.php:73
1117
+ msgid "Checked by default"
1118
+ msgstr "Standardmäßig ausgewählt"
1119
+
1120
+ #: options/panel2.php:18
1121
+ #, fuzzy
1122
+ msgid "Checked by default Value"
1123
+ msgstr "Standardmäßig ausgewählt"
1124
+
1125
+ #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
1126
+ msgid "Advanced subscription"
1127
+ msgstr "Erweitertes Abonnement"
1128
+
1129
+ #: options/panel2.php:27 options/panel2.php:130
1130
+ msgid "Custom inline style"
1131
+ msgstr "Eigene Inline-Stile"
1132
+
1133
+ #: options/panel2.php:30 options/panel2.php:139
1134
+ msgid "Custom HTML"
1135
+ msgstr "Eigener HTML-Code"
1136
+
1137
+ #: options/panel2.php:34
1138
+ msgid "Checkbox label"
1139
+ msgstr "Beschriftung der Auswahlbox"
1140
+
1141
+ #: options/panel2.php:37 options/panel2.php:163
1142
+ msgid "Subscribed label"
1143
+ msgstr "Benachrichtigung aktiviert"
1144
+
1145
+ #: options/panel2.php:40
1146
+ msgid "Awaiting label"
1147
+ msgstr "Bestätigung"
1148
+
1149
+ #: options/panel2.php:43 options/panel2.php:180
1150
+ msgid "Author label"
1151
+ msgstr "Autor"
1152
+
1153
+ #: options/panel2.php:68
1154
+ msgid ""
1155
+ "Disable this option if you want to move the subscription checkbox to a "
1156
+ "different place on your page."
1157
+ msgstr ""
1158
+ "Deaktiviere diese Option, wenn Du die Auswahlbox für die Abonnements manuell "
1159
+ "an anderer Stelle auf Deiner Seite platzieren möchtest."
1160
+
1161
+ #: options/panel2.php:78
1162
+ msgid "Decide if the checkbox should be checked by default or not."
1163
+ msgstr ""
1164
+ "Bestimmt, ob die Auswahlbox standardmäßig angeklickt sein soll oder nicht."
1165
+
1166
+ #: options/panel2.php:87
1167
+ #, fuzzy
1168
+ msgid "Default Checkbox Value"
1169
+ msgstr "Auswahlbox anzeigen"
1170
+
1171
+ #: options/panel2.php:91 options/panel2.php:120
1172
+ msgid "All new comments"
1173
+ msgstr ""
1174
+
1175
+ #: options/panel2.php:92 options/panel2.php:121
1176
+ #, fuzzy
1177
+ msgid "Replies to this comment"
1178
+ msgstr "Nur Antworten"
1179
+
1180
+ #: options/panel2.php:94
1181
+ msgid ""
1182
+ "Select the default option for the Checkbox. Be careful! Some users might "
1183
+ "like to be subscribed to all the post."
1184
+ msgstr ""
1185
+
1186
+ #: options/panel2.php:107
1187
+ msgid ""
1188
+ "Allow users to choose from different subscription types (all, replies only)."
1189
+ msgstr ""
1190
+ "Erlaube dem Nutzer, verschiedene Abonnement-Arten auszuwählen (alle "
1191
+ "Kommentare, nur Antworten auf eigene)."
1192
+
1193
+ #: options/panel2.php:115
1194
+ #, fuzzy
1195
+ msgid "Advanced default"
1196
+ msgstr "Standardmäßig ausgewählt"
1197
+
1198
+ #: options/panel2.php:119
1199
+ msgid "None"
1200
+ msgstr ""
1201
+
1202
+ #: options/panel2.php:124
1203
+ msgid ""
1204
+ "The default subscription type that should be selected when Advanced "
1205
+ "subscriptions are enable."
1206
+ msgstr ""
1207
+
1208
+ #: options/panel2.php:135
1209
+ msgid "Custom inline CSS to add to the checkbox."
1210
+ msgstr "Eigene Inline-CSS Stile für die Auswahlbox."
1211
+
1212
+ #: options/panel2.php:143
1213
+ msgid ""
1214
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
1215
+ "[checkbox_field], [checkbox_label]"
1216
+ msgstr ""
1217
+ "Eigener HTML-Code für die Auswahlbox. Erlaubt sind diese Tags: "
1218
+ "[checkbox_field], [checkbox_label]"
1219
+
1220
+ #: options/panel2.php:149
1221
+ msgid "Messages for your visitors"
1222
+ msgstr "Nachricht an Deine Besucher"
1223
+
1224
+ #: options/panel2.php:153
1225
+ msgid "Default label"
1226
+ msgstr "Standard Mitteilung"
1227
+
1228
+ #: options/panel2.php:158
1229
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
1230
+ msgstr "Beschriftung der Auswahlbox. Erlaubte Tags: [subscribe_link]"
1231
+
1232
+ #: options/panel2.php:167
1233
+ msgid ""
1234
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
1235
+ "[manager_link]"
1236
+ msgstr ""
1237
+ "Text, der angezeigt wird, wenn die Benachrichtigung bereits aktiviert wurde. "
1238
+ "Erlaubte Tags: [manager_link]"
1239
+
1240
+ #: options/panel2.php:172
1241
+ msgid "Pending label"
1242
+ msgstr "Warteschlange Mitteilung"
1243
+
1244
+ #: options/panel2.php:176
1245
+ msgid ""
1246
+ "Label shown to those who are already subscribed, but haven't clicked on the "
1247
+ "confirmation link yet. Allowed tag: [manager_link]"
1248
+ msgstr ""
1249
+ "Text, der angezeigt wird, wenn eine Bestätigung durch den Besucher noch "
1250
+ "aussteht. Erlaubte Tags: [manager_link]"
1251
+
1252
+ #: options/panel2.php:184
1253
+ msgid ""
1254
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
1255
+ msgstr ""
1256
+ "Text, der Autoren und Administratoren angezeigt wird. Erlaubte Tags: "
1257
+ "[manager_link]"
1258
+
1259
+ #: options/panel7.php:18
1260
+ msgid "Did you find a Bug on the plugin?"
1261
+ msgstr ""
1262
+
1263
+ #: options/panel7.php:19
1264
+ msgid ""
1265
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1266
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1267
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1268
+ "WordPress Support page."
1269
+ msgstr ""
1270
+
1271
+ #: options/panel1.php:19
1272
+ msgid "Mass Update Subscriptions"
1273
+ msgstr "Mehrere Abos aktualisieren"
1274
+
1275
+ #: options/panel1.php:61
1276
+ msgid "Post ID"
1277
+ msgstr "Post ID"
1278
+
1279
+ #: options/panel1.php:76
1280
+ msgid "Add"
1281
+ msgstr "Hinzufügen"
1282
+
1283
+ #: options/panel1.php:91
1284
+ msgid "Search subscriptions"
1285
+ msgstr "Abos suchen"
1286
+
1287
+ #: options/panel1.php:95
1288
+ #, php-format
1289
+ msgid ""
1290
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1291
+ "where the"
1292
+ msgstr ""
1293
+ "Du kannst entweder <a href=\"%s\">alle Abos auflisten</a> oder die einer "
1294
+ "bestimmten <b>E-Mail-Adresse finden</b>"
1295
+
1296
+ #: options/panel1.php:99
1297
+ msgid "email"
1298
+ msgstr "E-Mail"
1299
+
1300
+ #: options/panel1.php:100
1301
+ msgid "post ID"
1302
+ msgstr "Beitrag (ID)"
1303
+
1304
+ #: options/panel1.php:101
1305
+ msgid "status"
1306
+ msgstr "Status"
1307
+
1308
+ #: options/panel1.php:104
1309
+ msgid "equals"
1310
+ msgstr "entspricht"
1311
+
1312
+ #: options/panel1.php:105
1313
+ msgid "contains"
1314
+ msgstr "enthällt"
1315
+
1316
+ #: options/panel1.php:106
1317
+ msgid "does not contain"
1318
+ msgstr "enthällt nicht"
1319
+
1320
+ #: options/panel1.php:107
1321
+ msgid "starts with"
1322
+ msgstr "Beginnt mit"
1323
+
1324
+ #: options/panel1.php:108
1325
+ msgid "ends with"
1326
+ msgstr "Endet mit"
1327
+
1328
+ #: options/panel1.php:111
1329
+ msgid "results per page:"
1330
+ msgstr "Ergebnisse pro Seite:"
1331
+
1332
+ #: options/panel1.php:113
1333
+ msgid "Search"
1334
+ msgstr "Suchen"
1335
+
1336
+ #: options/panel1.php:121
1337
+ msgid "Reverse the order by Post ID"
1338
+ msgstr "Sortiert nach Post-ID"
1339
+
1340
+ #: options/panel1.php:122 options/panel1.php:123
1341
+ msgid "Reverse the order by Date/Time"
1342
+ msgstr "Sortierung umkehren nach Datum/Uhrzeit"
1343
+
1344
+ #: options/panel1.php:125
1345
+ msgid "Post (ID)"
1346
+ msgstr "Post (ID)"
1347
+
1348
+ #: options/panel1.php:128
1349
+ msgid "Search query:"
1350
+ msgstr "Suchabfrage:"
1351
+
1352
+ #: options/panel1.php:128
1353
+ msgid "Rows:"
1354
+ msgstr "Zeilen:"
1355
+
1356
+ #: options/panel1.php:128
1357
+ msgid "of"
1358
+ msgstr "von"
1359
+
1360
+ #: options/panel1.php:138
1361
+ msgid "Date and Time"
1362
+ msgstr "Datum und Uhrzeit"
1363
+
1364
+ #: options/panel1.php:150
1365
+ #, fuzzy
1366
+ msgid "Subscription"
1367
+ msgstr "Abonnements"
1368
+
1369
+ #: options/panel1.php:152
1370
+ msgid "Edit"
1371
+ msgstr "Bearbeiten"
1372
+
1373
+ #: options/panel1.php:162
1374
+ msgid "Delete forever"
1375
+ msgstr "Endgültig löschen"
1376
+
1377
+ #: options/panel1.php:164
1378
+ msgid "Activate and set to Y"
1379
+ msgstr "Aktivieren und auf Y setzen"
1380
+
1381
+ #: options/panel1.php:165
1382
+ msgid "Activate and set to R"
1383
+ msgstr "Aktivieren und auf R setzen"
1384
+
1385
+ #: options/panel1.php:170
1386
+ msgid "Sorry, no subscriptions match your search criteria."
1387
+ msgstr "Keine passenden Abonnements gefunden."
1388
+
1389
+ #, fuzzy
1390
+ #~ msgid "Subscribe to Comments Reloaded Important Notice"
1391
+ #~ msgstr ""
1392
+ #~ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
1393
+ #~ "offizielle"
1394
+
1395
+ #~ msgid "Daily digest"
1396
+ #~ msgstr "Tägliche Zusammenfassung"
1397
+
1398
+ #~ msgid "Replies"
1399
+ #~ msgstr "Antworten"
1400
+
1401
+ #~ msgid "Digest"
1402
+ #~ msgstr "Zusammenfassung"
1403
+
1404
+ #~ msgid "Pending"
1405
+ #~ msgstr "Wartend"
1406
+
1407
+ #~ msgid "Bold"
1408
+ #~ msgstr "Fett"
1409
+
1410
+ #~ msgid "Italic"
1411
+ #~ msgstr "Kursiv"
1412
+
1413
+ #~ msgid "Link"
1414
+ #~ msgstr "Link"
1415
+
1416
+ #~ msgid "Image"
1417
+ #~ msgstr "Bild"
1418
+
1419
+ #~ msgid "Notify authors"
1420
+ #~ msgstr "Autor benachrichtigen"
1421
+
1422
+ #~ msgid "Notify the administrator when a new comment is posted."
1423
+ #~ msgstr ""
1424
+ #~ "Benachrichtige den Administrator, wenn ein neuer Kommentar geschrieben "
1425
+ #~ "wurde."
1426
+
1427
+ #~ msgid "Sponsor's Corner"
1428
+ #~ msgstr "Sponsoren Ecke"
1429
+
1430
+ #~ msgid ""
1431
+ #~ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1432
+ #~ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1433
+ #~ msgstr ""
1434
+ #~ "Wenn Du als offizieller Sponsor die Weiterentwicklung des Plugins "
1435
+ #~ "unterstützen möchtest, <a href='http://behstant.com/negocio/contact.php' "
1436
+ #~ "target='_blank'>schreibe mir</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
langs/subscribe-reloaded-es_ES.mo CHANGED
Binary file
langs/subscribe-reloaded-es_ES.po CHANGED
@@ -1,1406 +1,1607 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Subscribe To Comments Reloaded 2.0 en español\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-06-11 16:19-0700\n"
6
- "PO-Revision-Date: 2015-06-11 16:19-0700\n"
7
- "Last-Translator: Israel Barragan <reedyseth@gmail.com>\n"
8
- "Language-Team: <juanluperez@gmail.com>\n"
9
- "Language: es_ES\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ../\n"
15
- "Plural-Forms: nplurals=2; plural=n !=1;\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Generator: Poedit 1.6\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
-
20
- #: subscribe-to-comments-reloaded.php:95
21
- msgid "Don't subscribe"
22
- msgstr "No Suscribirse"
23
-
24
- #: subscribe-to-comments-reloaded.php:96
25
- msgid "All"
26
- msgstr "Todo"
27
-
28
- #: subscribe-to-comments-reloaded.php:97 templates/author.php:75
29
- #: templates/user.php:72
30
- msgid "Replies to my comments"
31
- msgstr "Respuestas a mis comentarios"
32
-
33
- #: subscribe-to-comments-reloaded.php:312
34
- msgid ""
35
- "Notify me of followup comments via e-mail. You can also <a "
36
- "href='[subscribe_link]'>subscribe</a> without commenting."
37
- msgstr ""
38
- "Notificarme los nuevos comentarios por correo electrónico. También puedes <a "
39
- "href='[subscribe_link]'>suscribirte</a> sin comentar."
40
-
41
- #: subscribe-to-comments-reloaded.php:313
42
- msgid ""
43
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
44
- "subscriptions."
45
- msgstr ""
46
- "Te has suscrito a esta entrada. <a href='[manager_link]'>Gestionarr</a> tus "
47
- "suscripciones."
48
-
49
- #: subscribe-to-comments-reloaded.php:314
50
- msgid ""
51
- "Your subscription to this post needs to be confirmed. <a "
52
- "href='[manager_link]'>Manage your subscriptions</a>."
53
- msgstr ""
54
- "Tu suscripción a esta entrada necesita ser confirmada. <a "
55
- "href='[manager_link]'>Gestiona tus suscripciones</a>."
56
-
57
- #: subscribe-to-comments-reloaded.php:315
58
- msgid ""
59
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
60
- msgstr ""
61
- "Puedes <a href='[manager_link]'>gestionar las suscripciones</a> de esta "
62
- "entrada."
63
-
64
- #: subscribe-to-comments-reloaded.php:319 options/index.php:57
65
- msgid "Manage subscriptions"
66
- msgstr "Administrar suscripciones"
67
-
68
- #: subscribe-to-comments-reloaded.php:321
69
- msgid ""
70
- "To manage your subscriptions, please enter your email address here below. We "
71
- "will send you a message containing the link to access your personal "
72
- "management page."
73
- msgstr ""
74
- "Para gestionar tus suscripciones introduce tu correo electrónico a "
75
- "continuación. Te enviaremos un mensaje con un enlace para acceder a tu "
76
- "página de administración."
77
-
78
- #: subscribe-to-comments-reloaded.php:322
79
- msgid ""
80
- "Thank you for using our subscription service. Your request has been "
81
- "completed, and you should receive an email with the management link in a few "
82
- "minutes."
83
- msgstr ""
84
- "Gracias por usar nuestro servicio de suscripción. Tu petición se ha "
85
- "completada con éxito, deberías recibir un mensaje en tu buzón de correo "
86
- "electrónico con con el enlace de administración en unos minutos."
87
-
88
- #: subscribe-to-comments-reloaded.php:323
89
- msgid ""
90
- "You can follow the discussion on <strong>[post_title]</strong> without "
91
- "having to leave a comment. Cool, huh? Just enter your email address in the "
92
- "form here below and you're all set."
93
- msgstr ""
94
- "Puedes seguir la discusión de <strong>[post_title]</strong> sin tener que "
95
- "dejar un comentario. Introduce tu dirección de correo-e en el siguiente "
96
- "formulario y listo."
97
-
98
- #: subscribe-to-comments-reloaded.php:324
99
- msgid ""
100
- "Thank you for using our subscription service. Your request has been "
101
- "completed. You will receive a notification email every time a new comment to "
102
- "this article is approved and posted by the administrator."
103
- msgstr ""
104
- "Gracias por usar nuestro servicio de suscripción. Tu petición se ha "
105
- "completado. Recibirás un mensaje de notificación cada que vez que un nuevo "
106
- "comentario se publique o apruebe en esta entrada."
107
-
108
- #: subscribe-to-comments-reloaded.php:325
109
- msgid ""
110
- "Thank you for using our subscription service. In order to confirm your "
111
- "request, please check your email for the verification message and follow the "
112
- "instructions."
113
- msgstr ""
114
- "Gracias por usar nuestro servicio de suscripción. Para confirmar tu "
115
- "petición, por favor comprueba si has recibido un mensaje en tu buzón de "
116
- "correo-e y sigue las instrucciones."
117
-
118
- #: subscribe-to-comments-reloaded.php:326
119
- msgid ""
120
- "In order to cancel or suspend one or more notifications, select the "
121
- "corresponding checkbox(es) and click on the button at the end of the list."
122
- msgstr ""
123
- "Para cancelar o suspender una o más suscripciones, selecciona la "
124
- "correspondiente casilla de verificación y pulsa en el botón del final de la "
125
- "lista."
126
-
127
- #: subscribe-to-comments-reloaded.php:327
128
- msgid ""
129
- "In order to cancel or suspend one or more notifications, select the "
130
- "corresponding checkbox(es) and click on the button at the end of the list. "
131
- "You are currently subscribed to:"
132
- msgstr ""
133
- "Para cancelar o suspender una o más suscripciones, selecciona la "
134
- "correspondiente casilla de verificación y pulsa en el botón del final de la "
135
- "lista. Actualmente estás suscrito a:"
136
-
137
- #: subscribe-to-comments-reloaded.php:331
138
- msgid "There is a new comment to [post_title]"
139
- msgstr "Hay un nuevo comentario en [post_title]"
140
-
141
- #: subscribe-to-comments-reloaded.php:332
142
- msgid ""
143
- "There is a new comment to [post_title].\n"
144
- "Comment Link: [comment_permalink]\n"
145
- "Author: [comment_author]\n"
146
- "Comment:\n"
147
- "[comment_content]\n"
148
- "Permalink: [post_permalink]\n"
149
- "Manage your subscriptions: [manager_link]"
150
- msgstr ""
151
- "Hay un nuevo comentario en [post_title].\n"
152
- "Enlace al comentario: [comment_permalink]\n"
153
- "Autor: [comment_author]\n"
154
- "Comentario:\n"
155
- "[comment_content]\n"
156
- "Enlace permanente: [post_permalink]\n"
157
- "Administrar tus suscripciones: [manager_link]"
158
-
159
- #: subscribe-to-comments-reloaded.php:333
160
- msgid "Please confirm your subscription to [post_title]"
161
- msgstr "Por favor, confirma tu suscripción a [post_title]"
162
-
163
- #: subscribe-to-comments-reloaded.php:334
164
- msgid ""
165
- "You have requested to be notified every time a new comment is added to:\n"
166
- "[post_permalink]\n"
167
- "\n"
168
- "Please confirm your request by clicking on this link:\n"
169
- "[confirm_link]"
170
- msgstr ""
171
- "Has solicitado que te notifiquemos cada vez que se escriba un comentario "
172
- "en:\n"
173
- "[post_permalink]\n"
174
- "\n"
175
- "Por favor, confirma tu petición pulsando el siguiente enlace:\n"
176
- "[confirm_link]"
177
-
178
- #: subscribe-to-comments-reloaded.php:335
179
- msgid "Manage your subscriptions on [blog_name]"
180
- msgstr "Gestiona tus suscripciones en [blog_name]"
181
-
182
- #: subscribe-to-comments-reloaded.php:336
183
- msgid ""
184
- "You have requested to manage your subscriptions to the articles on "
185
- "[blog_name]. Follow this link to access your personal page:\n"
186
- "[manager_link]"
187
- msgstr ""
188
- "Has solicitado gestionar tus suscripciones a las entradas de [blog_name]. "
189
- "Sigue el siguiente enlace para acceder a tu página de suscripciones:\n"
190
- "[manager_link]"
191
-
192
- #: subscribe-to-comments-reloaded.php:429
193
- #: subscribe-to-comments-reloaded.php:436
194
- #: subscribe-to-comments-reloaded.php:579
195
- #: subscribe-to-comments-reloaded.php:648
196
- #: subscribe-to-comments-reloaded.php:792
197
- msgid "Important Notice"
198
- msgstr "Nota Importante"
199
-
200
- #: subscribe-to-comments-reloaded.php:527
201
- #, fuzzy
202
- msgid "Subscribe to Comments Reloaded Important Notice"
203
- msgstr ""
204
- "¿Necesitas ayuda sobre como usar \"Subscribe to Comments Reloaded\"? Visita "
205
- "el"
206
-
207
- #: subscribe-to-comments-reloaded.php:528
208
- msgid ""
209
- "The information in your database has been sanitize to prevent the raw html "
210
- "messages."
211
- msgstr ""
212
-
213
- #: subscribe-to-comments-reloaded.php:580
214
- msgid ""
215
- "Comment subscription data from the <strong>Subscribe to Comments</strong> "
216
- "plugin was detected and automatically imported into <strong>Subscribe to "
217
- "Comments Reloaded</strong>."
218
- msgstr ""
219
-
220
- #: subscribe-to-comments-reloaded.php:580
221
- msgid ""
222
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
223
- "Comments to prevent confusion between the two plugins."
224
- msgstr ""
225
-
226
- #: subscribe-to-comments-reloaded.php:581
227
- msgid ""
228
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
229
- "that you want to import, you'll need to import that data manually, as only "
230
- "one import routine will ever run to prevent data loss."
231
- msgstr ""
232
-
233
- #: subscribe-to-comments-reloaded.php:582
234
- #: subscribe-to-comments-reloaded.php:650
235
- #: subscribe-to-comments-reloaded.php:796
236
- msgid ""
237
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
238
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
239
- "your configuration."
240
- msgstr ""
241
-
242
- #: subscribe-to-comments-reloaded.php:649
243
- msgid ""
244
- "Comment subscription data from the <strong>Comment Reply Notification</"
245
- "strong> plugin was detected and automatically imported into "
246
- "<strong>Subscribe to Comments Reloaded</strong>."
247
- msgstr ""
248
-
249
- #: subscribe-to-comments-reloaded.php:649
250
- msgid ""
251
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
252
- "Notification to prevent confusion between the two plugins."
253
- msgstr ""
254
-
255
- #: subscribe-to-comments-reloaded.php:793
256
- msgid ""
257
- "Plugin options and comment subscription data from the <strong>WP Comment "
258
- "Subscriptions</strong> plugin were detected and automatically imported into "
259
- "<strong>Subscribe to Comments Reloaded</strong>."
260
- msgstr ""
261
-
262
- #: subscribe-to-comments-reloaded.php:793
263
- msgid ""
264
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
265
- "Subscriptions to prevent confusion between the two plugins."
266
- msgstr ""
267
-
268
- #: subscribe-to-comments-reloaded.php:794
269
- msgid ""
270
- "If you have subscription data from another plugin (such as Subscribe to "
271
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
272
- "you'll need to import that data manually, as only one import routine will "
273
- "ever run to prevent data loss."
274
- msgstr ""
275
-
276
- #: subscribe-to-comments-reloaded.php:795
277
- msgid ""
278
- "<strong>Note:</strong> If you were previously using the "
279
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
280
- "subscribe-url]</code> shortcode, you'll need to replace those with "
281
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
282
- "respectively."
283
- msgstr ""
284
-
285
- #: subscribe-to-comments-reloaded.php:806
286
- msgid "Settings"
287
- msgstr "Configuraciön"
288
-
289
- #: subscribe-to-comments-reloaded.php:1845 options/panel2.php:67
290
- #: options/panel2.php:77 options/panel2.php:106 options/panel5.php:84
291
- #: options/panel5.php:93 options/panel5.php:102 options/panel5.php:112
292
- #: options/panel5.php:121 options/panel5.php:131 options/panel5.php:140
293
- #: options/panel5.php:149
294
- msgid "No"
295
- msgstr "No"
296
-
297
- #: subscribe-to-comments-reloaded.php:1872
298
- msgid ""
299
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
300
- msgstr ""
301
- "¿Necesitas ayuda sobre como usar \"Subscribe to Comments Reloaded\"? Visita "
302
- "el"
303
-
304
- #: subscribe-to-comments-reloaded.php:1872
305
- msgid "support forum"
306
- msgstr "foro de soporte oficial"
307
-
308
- #: subscribe-to-comments-reloaded.php:1873
309
- msgid "Feeling generous?"
310
- msgstr "¿Te sientes generoso?"
311
-
312
- #: subscribe-to-comments-reloaded.php:1873
313
- msgid "Donate a few bucks!"
314
- msgstr "¡Dona un poco de dinero!"
315
-
316
- #: options/index.php:58
317
- msgid "Comment Form"
318
- msgstr "Formulario de Comentario"
319
-
320
- #: options/index.php:59
321
- msgid "Management Page"
322
- msgstr "Página de Administración"
323
-
324
- #: options/index.php:60
325
- msgid "Notifications"
326
- msgstr "Notificaciones"
327
-
328
- #: options/index.php:61 options/panel2.php:58 options/panel3.php:82
329
- #: options/panel4.php:67
330
- msgid "Options"
331
- msgstr "Opciones"
332
-
333
- #: options/index.php:62
334
- msgid "You can help"
335
- msgstr "Puedes ayudar"
336
-
337
- #: options/index.php:63
338
- msgid "Support"
339
- msgstr "Soporte"
340
-
341
- #: options/panel1-business-logic.php:19
342
- msgid "Subscription added."
343
- msgstr "Suscripción añadida."
344
-
345
- #: options/panel1-business-logic.php:31
346
- msgid "Subscriptions updated."
347
- msgstr "Suscripción actualizada."
348
-
349
- #: options/panel1-business-logic.php:40
350
- msgid "Subscription deleted."
351
- msgstr "Suscripción eliminada."
352
-
353
- #: options/panel1-business-logic.php:59 templates/author.php:23
354
- #: templates/user.php:23
355
- msgid "Subscriptions deleted:"
356
- msgstr "Suscripciones eliminadas:"
357
-
358
- #: options/panel1-business-logic.php:63 templates/author.php:27
359
- #: templates/user.php:27
360
- msgid "Subscriptions suspended:"
361
- msgstr "Suscripción suspendida:"
362
-
363
- #: options/panel1-business-logic.php:67 templates/author.php:31
364
- #: templates/user.php:31
365
- msgid "Subscriptions activated:"
366
- msgstr "Suscripciones activadas:"
367
-
368
- #: options/panel1-business-logic.php:71 options/panel1-business-logic.php:75
369
- #: templates/author.php:35 templates/author.php:39 templates/user.php:35
370
- #: templates/user.php:39
371
- msgid "Subscriptions updated:"
372
- msgstr "Suscripciones actualizadas:"
373
-
374
- #: options/panel1-business-logic.php:99
375
- msgid "&laquo; Previous"
376
- msgstr "&laquo; Anterior"
377
-
378
- #: options/panel1-business-logic.php:103
379
- msgid "Next &raquo;"
380
- msgstr "Siguiente &raquo;"
381
-
382
- #: options/panel1-edit-subscription.php:8
383
- msgid "Update Subscription"
384
- msgstr "Actualizar Suscripción"
385
-
386
- #: options/panel1-edit-subscription.php:11
387
- #: options/panel1-edit-subscription.php:21
388
- #: options/panel1-edit-subscription.php:22
389
- #: options/panel1-edit-subscription.php:23 options/panel1.php:28
390
- #: options/panel1.php:29 options/panel1.php:30
391
- msgid "optional"
392
- msgstr "opcional"
393
-
394
- #: options/panel1-edit-subscription.php:11 options/panel1.php:22
395
- #: options/panel1.php:102 options/panel1.php:138 templates/author.php:52
396
- #: templates/user.php:52
397
- msgid ""
398
- "Please remember: this operation cannot be undone. Are you sure you want to "
399
- "proceed?"
400
- msgstr ""
401
- "Recuerda: esta operación no se puede deshacer. ¿Estás seguro de que quieres "
402
- "hacerlo?"
403
-
404
- #: options/panel1-edit-subscription.php:13
405
- msgid "Post:"
406
- msgstr "Entrada:"
407
-
408
- #: options/panel1-edit-subscription.php:16 options/panel1.php:24
409
- msgid "From"
410
- msgstr "De"
411
-
412
- #: options/panel1-edit-subscription.php:20 options/panel1.php:27
413
- msgid "To"
414
- msgstr "Para"
415
-
416
- #: options/panel1-edit-subscription.php:26 options/panel1.php:33
417
- #: options/panel1.php:59 options/panel1.php:124
418
- msgid "Status"
419
- msgstr "Estado"
420
-
421
- #: options/panel1-edit-subscription.php:28 options/panel1.php:35
422
- msgid "Keep unchanged"
423
- msgstr "Mantener sin cambios"
424
-
425
- #: options/panel1-edit-subscription.php:29 options/panel1.php:36
426
- #: options/panel1.php:61
427
- msgid "Active"
428
- msgstr "Activo"
429
-
430
- #: options/panel1-edit-subscription.php:30 options/panel1.php:37
431
- #: options/panel1.php:62
432
- msgid "Replies only"
433
- msgstr "Solo respuestas"
434
-
435
- #: options/panel1-edit-subscription.php:31 options/panel1.php:38
436
- msgid "Suspended"
437
- msgstr "Suspendido"
438
-
439
- #: options/panel1-edit-subscription.php:33 options/panel1.php:40
440
- msgid "Update"
441
- msgstr "Actualizar"
442
-
443
- #: options/panel1.php:19
444
- msgid "Mass Update Subscriptions"
445
- msgstr "Actualizar Suscripciones en Masa"
446
-
447
- #: options/panel1.php:48
448
- msgid "Add New Subscription"
449
- msgstr "Añadir Nueva Suscripción"
450
-
451
- #: options/panel1.php:53
452
- msgid "Post ID"
453
- msgstr "ID de entrada"
454
-
455
- #: options/panel1.php:56 options/panel1.php:111
456
- #: templates/request-management-link.php:69 templates/subscribe.php:89
457
- #: templates/user.php:57
458
- msgid "Email"
459
- msgstr "Correo-e"
460
-
461
- #: options/panel1.php:63
462
- msgid "Ask user to confirm"
463
- msgstr "Pedir confirmación al usuario"
464
-
465
- #: options/panel1.php:65
466
- msgid "Add"
467
- msgstr "Añadir"
468
-
469
- #: options/panel1.php:76
470
- msgid "Search subscriptions"
471
- msgstr "Buscar suscripciones"
472
-
473
- #: options/panel1.php:80
474
- #, php-format
475
- msgid ""
476
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
477
- "where the"
478
- msgstr ""
479
- "Puedes bien <a href=\"%s\">ver todas las suscripciones</a> o bien encontrar "
480
- "aquellas en las que el/la"
481
-
482
- #: options/panel1.php:84
483
- msgid "email"
484
- msgstr "correo-e"
485
-
486
- #: options/panel1.php:85
487
- msgid "post ID"
488
- msgstr "ID de Entrada"
489
-
490
- #: options/panel1.php:86
491
- msgid "status"
492
- msgstr "estado"
493
-
494
- #: options/panel1.php:89
495
- msgid "equals"
496
- msgstr "es igual a"
497
-
498
- #: options/panel1.php:90
499
- msgid "contains"
500
- msgstr "contiene"
501
-
502
- #: options/panel1.php:91
503
- msgid "does not contain"
504
- msgstr "no contiene"
505
-
506
- #: options/panel1.php:92
507
- msgid "starts with"
508
- msgstr "comienza con"
509
-
510
- #: options/panel1.php:93
511
- msgid "ends with"
512
- msgstr "termina con"
513
-
514
- #: options/panel1.php:96
515
- msgid "results per page:"
516
- msgstr "resultados por página:"
517
-
518
- #: options/panel1.php:98
519
- msgid "Search"
520
- msgstr "Buscar"
521
-
522
- #: options/panel1.php:106
523
- msgid "Reverse the order by Post ID"
524
- msgstr "Invertir el orden por ID de entrada"
525
-
526
- #: options/panel1.php:107 options/panel1.php:108
527
- msgid "Reverse the order by Date/Time"
528
- msgstr "Invertir el orden por Fecha/Hora"
529
-
530
- #: options/panel1.php:110
531
- msgid "Post (ID)"
532
- msgstr "ID de Entrada"
533
-
534
- #: options/panel1.php:113
535
- msgid "Search query:"
536
- msgstr "Petición de búsqueda:"
537
-
538
- #: options/panel1.php:113
539
- msgid "Rows:"
540
- msgstr "Filas:"
541
-
542
- #: options/panel1.php:113
543
- msgid "of"
544
- msgstr "de"
545
-
546
- #: options/panel1.php:114 templates/author.php:58 templates/user.php:58
547
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
548
- msgstr "Leyenda: Y = todos los comentarios, R = solo respuestas, C = inactivo"
549
-
550
- #: options/panel1.php:123
551
- msgid "Date and Time"
552
- msgstr "Fecha y Hora"
553
-
554
- #: options/panel1.php:135
555
- msgid "Subscription"
556
- msgstr "Suscripciones"
557
-
558
- #: options/panel1.php:137
559
- msgid "Edit"
560
- msgstr "Editar"
561
-
562
- #: options/panel1.php:138 templates/author.php:72 templates/user.php:69
563
- msgid "Delete"
564
- msgstr "Eliminar"
565
-
566
- #: options/panel1.php:146 templates/author.php:71 templates/user.php:68
567
- msgid "Action:"
568
- msgstr "Acción:"
569
-
570
- #: options/panel1.php:147
571
- msgid "Delete forever"
572
- msgstr "Eliminar para siempre"
573
-
574
- #: options/panel1.php:148 templates/author.php:73 templates/user.php:70
575
- msgid "Suspend"
576
- msgstr "Suspender"
577
-
578
- #: options/panel1.php:149
579
- msgid "Activate and set to Y"
580
- msgstr "Activar y establecer a Y"
581
-
582
- #: options/panel1.php:150
583
- msgid "Activate and set to R"
584
- msgstr "Activar y establecer a R"
585
-
586
- #: options/panel1.php:151 templates/author.php:76 templates/user.php:73
587
- msgid "Activate"
588
- msgstr "Activar"
589
-
590
- #: options/panel1.php:152 templates/author.php:77 templates/user.php:75
591
- msgid "Update subscriptions"
592
- msgstr "Actualizar suscripciones"
593
-
594
- #: options/panel1.php:155
595
- msgid "Sorry, no subscriptions match your search criteria."
596
- msgstr "Lo siento, ninguna suscripción coincide con tu criterio de búsqueda."
597
-
598
- #: options/panel2.php:12 options/panel2.php:63
599
- msgid "Enable default checkbox"
600
- msgstr "Activar casilla por defecto"
601
-
602
- #: options/panel2.php:15 options/panel2.php:73
603
- msgid "Checked by default"
604
- msgstr "Marcada por defecto"
605
-
606
- #: options/panel2.php:18
607
- msgid "Checked by default Value"
608
- msgstr "Casilla marcada"
609
-
610
- #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
611
- msgid "Advanced subscription"
612
- msgstr "Suscripción avanzada"
613
-
614
- #: options/panel2.php:27 options/panel2.php:130
615
- msgid "Custom inline style"
616
- msgstr "Estilo en línea personalizado"
617
-
618
- #: options/panel2.php:30 options/panel2.php:139
619
- msgid "Custom HTML"
620
- msgstr "HTML personalizado"
621
-
622
- #: options/panel2.php:34
623
- msgid "Checkbox label"
624
- msgstr "Casilla de verificación"
625
-
626
- #: options/panel2.php:37 options/panel2.php:163
627
- msgid "Subscribed label"
628
- msgstr "Suscrito"
629
-
630
- #: options/panel2.php:40
631
- msgid "Awaiting label"
632
- msgstr "Esperando"
633
-
634
- #: options/panel2.php:43 options/panel2.php:180
635
- msgid "Author label"
636
- msgstr "Autor"
637
-
638
- #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:57
639
- #: options/panel5.php:18 options/panel5.php:57
640
- msgid "Your settings have been successfully updated."
641
- msgstr "Tu configuración se ha actualizado correctamente."
642
-
643
- #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:59
644
- #: options/panel5.php:20 options/panel5.php:59
645
- msgid "There was an error updating the following fields:"
646
- msgstr "Se ha producido un error al actualizar los siguientes campos:"
647
-
648
- #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
649
- #: options/panel5.php:83 options/panel5.php:92 options/panel5.php:101
650
- #: options/panel5.php:111 options/panel5.php:120 options/panel5.php:130
651
- #: options/panel5.php:139 options/panel5.php:148
652
- msgid "Yes"
653
- msgstr "Sí"
654
-
655
- #: options/panel2.php:68
656
- msgid ""
657
- "Disable this option if you want to move the subscription checkbox to a "
658
- "different place on your page."
659
- msgstr ""
660
- "Desactivar esta opción si quieres mover la casilla de suscripción en un "
661
- "lugar diferente de tu página."
662
-
663
- #: options/panel2.php:78
664
- msgid "Decide if the checkbox should be checked by default or not."
665
- msgstr "Establece si la casilla tiene que estar marcada por defecto o no."
666
-
667
- #: options/panel2.php:87
668
- msgid "Default Checkbox Value"
669
- msgstr "Valor por defecto de la casilla"
670
-
671
- #: options/panel2.php:91 options/panel2.php:120
672
- msgid "All new comments"
673
- msgstr "Todos los comentarios nuevos"
674
-
675
- #: options/panel2.php:92 options/panel2.php:121
676
- msgid "Replies to this comment"
677
- msgstr "Respuestas a mis comentarios"
678
-
679
- #: options/panel2.php:94
680
- msgid ""
681
- "Select the default option for the Checkbox. Be careful! Some users might "
682
- "like to be subscribed to all the post."
683
- msgstr ""
684
-
685
- #: options/panel2.php:107
686
- msgid ""
687
- "Allow users to choose from different subscription types (all, replies only)."
688
- msgstr ""
689
- "Permitir a los usuarios escoger diferentes tipos de suscripción (todo, solo "
690
- "respuestas)."
691
-
692
- #: options/panel2.php:115
693
- msgid "Advanced default"
694
- msgstr "Marcada por defecto"
695
-
696
- #: options/panel2.php:119
697
- msgid "None"
698
- msgstr "Ninguno"
699
-
700
- #: options/panel2.php:124
701
- msgid ""
702
- "The default subscription type that should be selected when Advanced "
703
- "subscriptions are enable."
704
- msgstr ""
705
-
706
- #: options/panel2.php:135
707
- msgid "Custom inline CSS to add to the checkbox."
708
- msgstr "CSS en línea personalizado para la casilla de verificación."
709
-
710
- #: options/panel2.php:143
711
- msgid ""
712
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
713
- "[checkbox_field], [checkbox_label]"
714
- msgstr ""
715
- "Código HTML personalizado para ser utilizado cuando se muestra la casilla de "
716
- "verificación. Etiquetas permitidas: [checkbox_field] y [checkbox_label]"
717
-
718
- #: options/panel2.php:149
719
- msgid "Messages for your visitors"
720
- msgstr "Mensajes de tus visitantes"
721
-
722
- #: options/panel2.php:153
723
- msgid "Default label"
724
- msgstr "Etiqueta por defecto"
725
-
726
- #: options/panel2.php:158
727
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
728
- msgstr ""
729
- "Texto asociado a la casilla para suscribirse. Etiquetas permitidas: "
730
- "[subscribe_link]."
731
-
732
- #: options/panel2.php:167
733
- msgid ""
734
- "Label shown to those who are already subscribed to a post. Allowed tag: "
735
- "[manager_link]"
736
- msgstr ""
737
- "Texto que se muestra cuando alguien se suscribe a una entrada. Etiquetas "
738
- "permitidas: [manager_link]."
739
-
740
- #: options/panel2.php:172
741
- msgid "Pending label"
742
- msgstr "Etiqueta pendiente"
743
-
744
- #: options/panel2.php:176
745
- msgid ""
746
- "Label shown to those who are already subscribed, but haven't clicked on the "
747
- "confirmation link yet. Allowed tag: [manager_link]"
748
- msgstr ""
749
- "Texto que se muestra cuando alguien ya está suscrito a una entrada, pero es "
750
- "pero no ha confirmado su suscripción aún. Etiquetas permitidas: "
751
- "[manager_link]."
752
-
753
- #: options/panel2.php:184
754
- msgid ""
755
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
756
- msgstr ""
757
- "Texto que se muestra a los autores (y administradores) para gestionar las "
758
- "suscripciones. Etiquetas permitidas: [manager_link]."
759
-
760
- #: options/panel2.php:189 options/panel3.php:197 options/panel4.php:182
761
- #: options/panel5.php:184
762
- msgid "Save Changes"
763
- msgstr "Guardar cambios"
764
-
765
- #: options/panel3.php:13 options/panel3.php:87
766
- msgid "Virtual Management Page"
767
- msgstr "Gestión Virtual de Página"
768
-
769
- #: options/panel3.php:18 options/panel3.php:96
770
- msgid "Page title"
771
- msgstr "Título de la página"
772
-
773
- #: options/panel3.php:23 options/panel3.php:105
774
- msgid "Management URL"
775
- msgstr "Página de Administración"
776
-
777
- #: options/panel3.php:28 options/panel3.php:117
778
- msgid "Custom HEAD meta"
779
- msgstr "HEAD meta personalizada"
780
-
781
- #: options/panel3.php:34 options/panel3.php:131
782
- msgid "Request link"
783
- msgstr "Petición de enlace"
784
-
785
- #: options/panel3.php:39 options/panel3.php:141
786
- msgid "Request submitted"
787
- msgstr "Petición enviada"
788
-
789
- #: options/panel3.php:44 options/panel3.php:151
790
- msgid "Subscribe without commenting"
791
- msgstr "Suscribir sin comentar"
792
-
793
- #: options/panel3.php:49 options/panel3.php:161
794
- msgid "Subscription processed"
795
- msgstr "Suscripción procesada"
796
-
797
- #: options/panel3.php:54 options/panel3.php:171
798
- msgid "Subscription processed (DCI)"
799
- msgstr "Suscripción procesada (Pendiente de confirmación)"
800
-
801
- #: options/panel3.php:59 options/panel3.php:180
802
- msgid "Authors"
803
- msgstr "Autores"
804
-
805
- #: options/panel3.php:64 options/panel3.php:188
806
- msgid "Users"
807
- msgstr "Usuarios"
808
-
809
- #: options/panel3.php:90
810
- msgid "Enabled"
811
- msgstr "Habilitado"
812
-
813
- #: options/panel3.php:91
814
- msgid "Disabled"
815
- msgstr "Deshabilitado"
816
-
817
- #: options/panel3.php:92
818
- #, fuzzy
819
- msgid ""
820
- "Disable the virtual management page if you need to create a <a href=\"http://"
821
- "behstant.com/subscribe-reloaded/realMgnPage.php\">real page</a> to make your "
822
- "theme happy."
823
- msgstr ""
824
- " si necesitas crear una pagina realSi necesitas crear una <a href=\"http://"
825
- "lab.duechiacchiere.it/index.php?topic=71.0\">Página real</a> para hacer tu "
826
- "tema feliz deshabilita deshabilita la Gestión Virtual de tu Página."
827
-
828
- #: options/panel3.php:101
829
- msgid "Title of the page your visitors will use to manage their subscriptions."
830
- msgstr ""
831
- "Título de la página para que tus visitantes usarán para gestionar tus "
832
- "suscripciones."
833
-
834
- #: options/panel3.php:109
835
- msgid ""
836
- "The permalink for your management page (something like <code>/manage-"
837
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
838
- "b> actually exist in the system, but its link must follow your permalink "
839
- "structure."
840
- msgstr ""
841
- "El enlace permanente para la página de administración (algo como <code>/"
842
- "administrar-suscripciones</code> o <code>/?page_id=345</code>). Esta página "
843
- "realmente <b>no tiene</b> que existir en el sistema, pero su enlace debe "
844
- "seguir tu estructura de enlaces permanentes."
845
-
846
- #: options/panel3.php:111
847
- msgid ""
848
- "Warning: it looks like the value you are using may be incompatible with your "
849
- "permalink structure"
850
- msgstr ""
851
- "Precaución: parece que el valor que estás usando puede ser incompatible con "
852
- "tu estructura de enlaces permanentes"
853
-
854
- #: options/panel3.php:121
855
- msgid ""
856
- "Specify your custom HTML code to be added to the HEAD section of the page. "
857
- "Use <strong>single</strong> quotes for values."
858
- msgstr ""
859
- "Especifica tu código HTML personalizado para ser añadido a la sección HEAD "
860
- "de tu página. Usa comillas <strong>simples</strong> para los valores."
861
-
862
- #: options/panel3.php:127 options/panel4.php:100
863
- msgid "Messages"
864
- msgstr "Mensajes"
865
-
866
- #: options/panel3.php:136
867
- msgid "Text shown to those who request to manage their subscriptions."
868
- msgstr ""
869
- "Texto que se muestra a quienes solicitan acceso para administrar sus "
870
- "suscripciones."
871
-
872
- #: options/panel3.php:146
873
- msgid ""
874
- "Thank you note shown after the request here above has been processed. "
875
- "Allowed tags: [post_title], [post_permalink]"
876
- msgstr ""
877
- "Nota de agradecimiento que se muestra tras haber sido procesada la solicitud "
878
- "notificación. Etiquetas permitidas: [post_title] y [post_permalink]."
879
-
880
- #: options/panel3.php:156
881
- msgid ""
882
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
883
- "[post_title], [post_permalink]"
884
- msgstr ""
885
- "Texto que se muestra a quienes se quieren suscribir sin comentar. Etiquetas "
886
- "permitidas: [post_title] y [post_permalink]."
887
-
888
- #: options/panel3.php:166
889
- msgid ""
890
- "Thank you note shown after the subscription request has been processed "
891
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
892
- msgstr ""
893
- "Nota de agradecimiento que se muestra tras haber sido procesada la solicitud "
894
- "notificación (con doble verificación desactivada). Etiquetas permitidas: "
895
- "[post_title] y [post_permalink]."
896
-
897
- #: options/panel3.php:176
898
- msgid ""
899
- "Thank you note shown after the subscription request has been processed "
900
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
901
- msgstr ""
902
- "Nota de agradecimiento que se muestra tras haber sido procesada la solicitud "
903
- "notificación (con doble verificación activada). Etiquetas disponibles: "
904
- "[post_title] y [post_permalink]."
905
-
906
- #: options/panel3.php:184
907
- msgid "Introductory text for the authors' management page."
908
- msgstr "Texto de introducción para los autores en la página de administración."
909
-
910
- #: options/panel3.php:192
911
- msgid "Introductory text for the users' management page."
912
- msgstr ""
913
- "Texto de introducción para los usuarios en la página de administración."
914
-
915
- #: options/panel4.php:16 options/panel4.php:72
916
- msgid "Sender name"
917
- msgstr "Nombre del remitente"
918
-
919
- #: options/panel4.php:21 options/panel4.php:85
920
- msgid "Sender email address"
921
- msgstr "Dirección de correo-e del remitente"
922
-
923
- #: options/panel4.php:26 options/panel4.php:105
924
- msgid "Notification subject"
925
- msgstr "Asunto de la notificación"
926
-
927
- #: options/panel4.php:31 options/panel4.php:118
928
- msgid "Notification message"
929
- msgstr "Mensaje de la notificación"
930
-
931
- #: options/panel4.php:36 options/panel4.php:132
932
- msgid "Double check subject"
933
- msgstr "Asunto del mensaje de doble verificación"
934
-
935
- #: options/panel4.php:41 options/panel4.php:145
936
- msgid "Double check message"
937
- msgstr "Mensaje del mensaje de doble verificación"
938
-
939
- #: options/panel4.php:46 options/panel4.php:157
940
- msgid "Management subject"
941
- msgstr "Asunto de administración"
942
-
943
- #: options/panel4.php:51 options/panel4.php:170
944
- msgid "Management message"
945
- msgstr "Mensaje de administración"
946
-
947
- #: options/panel4.php:79
948
- msgid ""
949
- "Name to use for the \"from\" field when sending a new notification to the "
950
- "user."
951
- msgstr ""
952
- "Nombre a usar en el campo \"De:\" cuando se envía una nueva notificación al "
953
- "usuario."
954
-
955
- #: options/panel4.php:93
956
- msgid ""
957
- "Email address to use for the \"from\" field when sending a new notification "
958
- "to the user."
959
- msgstr ""
960
- "Dirección de correo electrónico que a usar en el campo \"Para:\" cuando se "
961
- "envía una nueva notificación al usuario."
962
-
963
- #: options/panel4.php:112
964
- msgid "Subject of the notification email. Allowed tag: [post_title]"
965
- msgstr ""
966
- "Asunto del mensaje de notificación de nuevos comentarios. Etiquetas "
967
- "permitidas: [post_title]."
968
-
969
- #: options/panel4.php:126
970
- msgid ""
971
- "Content of the notification email. Allowed tags: [post_title], "
972
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
973
- "[manager_link]"
974
- msgstr ""
975
- "Contenido del mensaje de notificación de nuevos comentarios. Etiquetas "
976
- "permitidas: [post_title], [comment_permalink], [comment_author], "
977
- "[comment_content], [post_permalink] y [manager_link]."
978
-
979
- #: options/panel4.php:139
980
- msgid "Subject of the confirmation email. Allowed tag: [post_title]"
981
- msgstr ""
982
- "Asunto del mensaje de confirmación para suscripciones nuevas. Etiquetas "
983
- "permitidas: [post_title]."
984
-
985
- #: options/panel4.php:151
986
- msgid ""
987
- "Content of the confirmation email. Allowed tags: [post_permalink], "
988
- "[confirm_link], [post_title], [manager_link]"
989
- msgstr ""
990
- "Contenido del mensaje de confirmación para suscripciones nuevas. Etiquetas "
991
- "permitidas: [post_permalink], [confirm_link], [post_title] y [manager_link]."
992
-
993
- #: options/panel4.php:164
994
- msgid ""
995
- "Subject of the mail sent to those who request to access their management "
996
- "page. Allowed tag: [blog_name]"
997
- msgstr ""
998
- "Asunto del mensaje para quienes solicitan acceso a su página de "
999
- "administración. Etiquetas permitidas: [blog_name]."
1000
-
1001
- #: options/panel4.php:176
1002
- msgid ""
1003
- "Content of the management email. Allowed tags: [blog_name], [manager_link]"
1004
- msgstr ""
1005
- "Contenido del mensaje para quienes solicitan acceso a su página de "
1006
- "administración. Etiquetas permitidas: [blog_name] y [manager_link]."
1007
-
1008
- #: options/panel5.php:28 options/panel5.php:72
1009
- msgid "Autopurge requests"
1010
- msgstr "Solicitudes de purga automática"
1011
-
1012
- #: options/panel5.php:31 options/panel5.php:81
1013
- msgid "Enable double check"
1014
- msgstr "Activar doble verificación"
1015
-
1016
- #: options/panel5.php:34 options/panel5.php:89
1017
- msgid "Subscribe authors"
1018
- msgstr "Suscrito"
1019
-
1020
- #: options/panel5.php:37 options/panel5.php:99
1021
- msgid "Enable HTML emails"
1022
- msgstr "Activar correo-e en HTML"
1023
-
1024
- #: options/panel5.php:40
1025
- msgid "HTMLify Links in HTML emails"
1026
- msgstr ""
1027
-
1028
- #: options/panel5.php:43
1029
- msgid "Send trackbacks"
1030
- msgstr "Enviar trackbacks"
1031
-
1032
- #: options/panel5.php:46
1033
- msgid "Notify admin"
1034
- msgstr "Notificar al administrador"
1035
-
1036
- #: options/panel5.php:49 options/panel5.php:137
1037
- msgid "Let admin subscribe"
1038
- msgstr "Permitir al administrador suscribirse"
1039
-
1040
- #: options/panel5.php:52 options/panel5.php:146
1041
- msgid "BCC admin on Notifications"
1042
- msgstr "Notificaciones"
1043
-
1044
- #: options/panel5.php:75
1045
- msgid "days"
1046
- msgstr "días"
1047
-
1048
- #: options/panel5.php:76
1049
- msgid ""
1050
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1051
- "this feature."
1052
- msgstr ""
1053
- "Eliminar suscripciones pendientes (sin confirmar) después de X días. 0 "
1054
- "(cero) desactiva esta función."
1055
-
1056
- #: options/panel5.php:85
1057
- msgid ""
1058
- "Send a notification email to confirm the subscription (to avoid addresses "
1059
- "misuse)."
1060
- msgstr ""
1061
- "Enviar un mensaje de notificación para confirmar la suscripción (para evitar "
1062
- "un uso fraudulento de las direcciones)."
1063
-
1064
- #: options/panel5.php:94
1065
- msgid ""
1066
- "Automatically subscribe authors to their own articles (not retroactive)."
1067
- msgstr "Suscribir autores automaticamente a sus artículos (No retroactivo)."
1068
-
1069
- #: options/panel5.php:103
1070
- msgid ""
1071
- "If enabled, will send email messages with content-type = text/html instead "
1072
- "of text/plain"
1073
- msgstr ""
1074
- "Si está activado, enviará mensajes de correo-e con content-type = text/html "
1075
- "en lugar de text/plain"
1076
-
1077
- #: options/panel5.php:108
1078
- msgid "HTMLify links in emails"
1079
- msgstr ""
1080
-
1081
- #: options/panel5.php:113
1082
- msgid ""
1083
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1084
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1085
- msgstr ""
1086
-
1087
- #: options/panel5.php:118
1088
- msgid "Process trackbacks"
1089
- msgstr "Procesar trackbacks"
1090
-
1091
- #: options/panel5.php:122
1092
- msgid ""
1093
- "Notify users when a new trackback or pingback is added to the discussion."
1094
- msgstr ""
1095
- "Notificar a los usuarios cuando se añade un nuevo trackback o pingback a la "
1096
- "discusión."
1097
-
1098
- #: options/panel5.php:127
1099
- msgid "Track all subscriptions"
1100
- msgstr "Seguir todas las suscripciones"
1101
-
1102
- #: options/panel5.php:132
1103
- msgid "Notify the administrator when users subscribe without commenting."
1104
- msgstr ""
1105
- "Notificar al administrador cuando los usuarios se suscriban sin comentar."
1106
-
1107
- #: options/panel5.php:141
1108
- msgid "Let the administrator subscribe to comments when logged in."
1109
- msgstr ""
1110
- "Permitir al administrador suscribirse a los comentarios cuando tiene la "
1111
- "sesión iniciada."
1112
-
1113
- #: options/panel5.php:150
1114
- msgid "Send a copy of all Notifications to the administrator."
1115
- msgstr ""
1116
-
1117
- #: options/panel5.php:155
1118
- msgid "StCR Unique Key"
1119
- msgstr ""
1120
-
1121
- #: options/panel5.php:160
1122
- msgid "This Unique Key is not set, please click the following button to "
1123
- msgstr ""
1124
-
1125
- #: options/panel5.php:164 options/panel5.php:176
1126
- msgid "Generate"
1127
- msgstr ""
1128
-
1129
- #: options/panel5.php:172
1130
- msgid ""
1131
- "This Unique Key will be use to send the notification to your subscribers "
1132
- "with more\n"
1133
- "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsecurity."
1134
- msgstr ""
1135
-
1136
- #: options/panel6.php:8 options/panel7.php:8
1137
- #, fuzzy
1138
- msgid "Support the developers"
1139
- msgstr "Apoya al autor"
1140
-
1141
- #: options/panel6.php:18
1142
- #, fuzzy
1143
- msgid ""
1144
- "How valuable is the feature offered by this plugin to your visitors? please "
1145
- "consider supporting the author if this plugin made your web site better, "
1146
- "especially if you are making money out of it. Any donation received will be "
1147
- "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
1148
- "strong>, and to buy some food for my hungry family."
1149
- msgstr ""
1150
- "¿Qué valor tienen las características que ofrece este plugin para tus "
1151
- "visitantes? \"Subscribe to Comments Reloaded\" es y siempre será gratuito, "
1152
- "pero considera apoyar al autor si este plugin hace tu web mejor, "
1153
- "especialmente si estás haciendo dinero con ella. Cualquier donación es bien "
1154
- "recibida y será invertida en el desarrollo del plugin y en comprar algo de "
1155
- "comida para mi familia hambrienta."
1156
-
1157
- #: options/panel6.php:20
1158
- msgid "Don't want to donate? You can still help"
1159
- msgstr "¿No quieres donar? Todavía puedes ayudar"
1160
-
1161
- #: options/panel6.php:21
1162
- #, fuzzy
1163
- msgid ""
1164
- "If you don't want to donate money, please consider blogging about my plugin "
1165
- "with a link to the plugin's page. Please let your readers know what makes "
1166
- "your blog better. You can also contribute donating your time: do not "
1167
- "hesitate to send me bug reports, your localization files, ideas on how to "
1168
- "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
1169
- "you do, thanks for using my plugin!"
1170
- msgstr ""
1171
- "Si no quieres donar dinero, considera escribir una entrada en tu sitio "
1172
- "acerca de mi plugin con un enlace hacia la página del plugin. Por favor, "
1173
- "deja que tus lectores sepan lo que hace tu blog mejor. También puedes "
1174
- "contribuir donando tu tiempo: no dudes en enviarme informes de fallos en el "
1175
- "plugin, traducciones, ideas para mejorar el \"Subscribe to Comments Reloaded"
1176
- "\" y demás. Hagas lo que hagas, ¡gracias por usar mi plugin!"
1177
-
1178
- #: options/panel6.php:23
1179
- #, fuzzy
1180
- msgid "Subscribe to the Beta testers"
1181
- msgstr "Suscrito"
1182
-
1183
- #: options/panel6.php:24
1184
- msgid ""
1185
- "Before a new Update we release a Beta version so that our current users can "
1186
- "give us feedback if they find a bug, If you want to join the tester list you "
1187
- "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
1188
- "a>"
1189
- msgstr ""
1190
-
1191
- #: options/panel6.php:26
1192
- msgid "Vote and show your appreciation"
1193
- msgstr "Vota y muestra tu agradecimiento"
1194
-
1195
- #: options/panel6.php:27
1196
- #, fuzzy
1197
- msgid ""
1198
- "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
1199
- "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
1200
- "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
1201
- msgstr ""
1202
- "Dile a otras personas si \"Subscribe to Comments Reloaded\" funciona para ti "
1203
- "y cómo es de bueno. <a href=\"http://wordpress.org/extend/plugins/subscribe-"
1204
- "to-comments-reloaded/\">Valóralo</a> en la página directorio de plugins de "
1205
- "WordPress."
1206
-
1207
- #: options/panel7.php:18
1208
- msgid "Did you find a Bug on the plugin?"
1209
- msgstr ""
1210
-
1211
- #: options/panel7.php:19
1212
- msgid ""
1213
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1214
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1215
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1216
- "WordPress Support page."
1217
- msgstr ""
1218
-
1219
- #: templates/author.php:57
1220
- msgid "Title"
1221
- msgstr "Título"
1222
-
1223
- #: templates/author.php:69 templates/user.php:66
1224
- msgid "Select all"
1225
- msgstr "Seleccionar todo"
1226
-
1227
- #: templates/author.php:70 templates/user.php:67
1228
- msgid "Invert selection"
1229
- msgstr "Invertir selección"
1230
-
1231
- #: templates/author.php:74 templates/user.php:71
1232
- #, fuzzy
1233
- msgid "All comments"
1234
- msgstr "Todos los comentarios nuevos"
1235
-
1236
- #: templates/author.php:80 templates/user.php:78
1237
- msgid "No subscriptions match your search criteria."
1238
- msgstr "Ninguna suscripción coincide con tu criterio de búsqueda."
1239
-
1240
- #: templates/request-management-link.php:71 templates/subscribe.php:91
1241
- msgid "Send"
1242
- msgstr "Enviar"
1243
-
1244
- #: templates/subscribe.php:43 templates/subscribe.php:44
1245
- msgid "New subscription to"
1246
- msgstr "Nueva suscripción a"
1247
-
1248
- #: templates/subscribe.php:44
1249
- msgid "User:"
1250
- msgstr "Usuario:"
1251
-
1252
- #~ msgid "Bold"
1253
- #~ msgstr "Negrita"
1254
-
1255
- #~ msgid "Italic"
1256
- #~ msgstr "Cursiva"
1257
-
1258
- #~ msgid "Link"
1259
- #~ msgstr "Enlace"
1260
-
1261
- #~ msgid "Image"
1262
- #~ msgstr "Imagen"
1263
-
1264
- #~ msgid "Sponsor's Corner"
1265
- #~ msgstr "Esquina de patrocinadores"
1266
-
1267
- #~ msgid ""
1268
- #~ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1269
- #~ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1270
- #~ msgstr ""
1271
- #~ "Si quieres patrocinar este plugin, no dudes en <a href='http://behstant."
1272
- #~ "com/negocio/contact.php' target='_blank'>contactarme</a>."
1273
-
1274
- #~ msgid "Set to Y"
1275
- #~ msgstr "Establecer a Y"
1276
-
1277
- #~ msgid "Daily digest"
1278
- #~ msgstr "Resumen diario"
1279
-
1280
- #~ msgid "Support the author"
1281
- #~ msgstr "Apoya al autor"
1282
-
1283
- #~ msgid "Replies"
1284
- #~ msgstr "Respuestas"
1285
-
1286
- #~ msgid "Digest"
1287
- #~ msgstr "Resumen diario"
1288
-
1289
- #~ msgid "Pending"
1290
- #~ msgstr "Pendiente"
1291
-
1292
- #~ msgid "Notify authors"
1293
- #~ msgstr "Notificar a los autores"
1294
-
1295
- #~ msgid "Notify the administrator when a new comment is posted."
1296
- #~ msgstr "Notificar al administrador cuando se publica un comentario nuevo."
1297
-
1298
- #~ msgid "Management Page ID"
1299
- #~ msgstr "ID de la Página de Administración"
1300
-
1301
- #~ msgid "Management page"
1302
- #~ msgstr "Página de Administración"
1303
-
1304
- #~ msgid "Awaiting confirmation"
1305
- #~ msgstr "Esperando confirmación"
1306
-
1307
- #~ msgid "Stats"
1308
- #~ msgstr "Estadísticas"
1309
-
1310
- #~ msgid "Other Messages"
1311
- #~ msgstr "Otros mensajes"
1312
-
1313
- #~ msgid "The status has been successfully updated. Rows affected:"
1314
- #~ msgstr "El estado se ha actualizado correctamente. Registros afectados:"
1315
-
1316
- #~ msgid ""
1317
- #~ "Update the email address associated to a specific subscription (by post "
1318
- #~ "ID)."
1319
- #~ msgstr ""
1320
- #~ "Actualizar el correo electrónico asociado a una suscripción específica "
1321
- #~ "(por la ID de la entrada)."
1322
-
1323
- #~ msgid "PID"
1324
- #~ msgstr "PID"
1325
-
1326
- #~ msgid "Change status"
1327
- #~ msgstr "Cambiar estado"
1328
-
1329
- #~ msgid ""
1330
- #~ "Change the status of an email address or permanently delete all its "
1331
- #~ "subscriptions."
1332
- #~ msgstr ""
1333
- #~ "Cambiar el estado de una dirección de correo electrónico o eliminar "
1334
- #~ "permanentemente todas sus suscripciones."
1335
-
1336
- #~ msgid "Resume"
1337
- #~ msgstr "Reanudar"
1338
-
1339
- #~ msgid "Update email address"
1340
- #~ msgstr "Actualizar dirección de correo electrónico"
1341
-
1342
- #~ msgid ""
1343
- #~ "You can \"mass update\" all the occurrences of a given email address "
1344
- #~ "(exact matches only)."
1345
- #~ msgstr ""
1346
- #~ "Puedes actualizar masivamente todas las ocurrencias de una dirección de "
1347
- #~ "correo electrónico determinada (sólo coincidencias exactas)."
1348
-
1349
- #~ msgid "Search email address"
1350
- #~ msgstr "Buscar dirección de correo electrónico"
1351
-
1352
- #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1353
- #~ msgstr "Leyenda: Y: suscrito, N: suspendido, C: esperando confirmación"
1354
-
1355
- #~ msgid "Custom CSS Class"
1356
- #~ msgstr "Clase CSS personalizada"
1357
-
1358
- #~ msgid ""
1359
- #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1360
- #~ "its style."
1361
- #~ msgstr ""
1362
- #~ "Clase CSS personalizada para asociar a la casilla, si deseas personalizar "
1363
- #~ "su estilo."
1364
-
1365
- #~ msgid "StCR table has been successfully optimized."
1366
- #~ msgstr "La tabla StCR ha sido optimizada correctamente."
1367
-
1368
- #~ msgid "Database"
1369
- #~ msgstr "Base de datos"
1370
-
1371
- #~ msgid "Engine"
1372
- #~ msgstr "Motor"
1373
-
1374
- #~ msgid "Records"
1375
- #~ msgstr "Registros"
1376
-
1377
- #~ msgid "Average Record Length"
1378
- #~ msgstr "Duración media del registro"
1379
-
1380
- #~ msgid "Created on"
1381
- #~ msgstr "Creado el"
1382
-
1383
- #~ msgid "Approximate Overhead"
1384
- #~ msgstr "Aproximado al alza"
1385
-
1386
- #~ msgid "optimize"
1387
- #~ msgstr "optimizar"
1388
-
1389
- #~ msgid "Subscriptions have been successfully updated."
1390
- #~ msgstr "Las suscripciones se han actualizado correctamente."
1391
-
1392
- #~ msgid "Sorry, no subscriptions found."
1393
- #~ msgstr "Disculpa, no se encontraron suscripciones."
1394
-
1395
- #~ msgid "All the subscriptions have been successfully updated."
1396
- #~ msgstr "Todas las suscripciones se han actualizado correctamente."
1397
-
1398
- #~ msgid "Pageviews by day - Click on a day for hourly metrics"
1399
- #~ msgstr ""
1400
- #~ "Páginas vistas por día - Pulsa en un día para ver estadísticas por horas"
1401
-
1402
- #~ msgid "Pageviews by hour"
1403
- #~ msgstr "Páginas vistas por hora"
1404
-
1405
- #~ msgid "No data to display"
1406
- #~ msgstr "No hay datos para mostrar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Subscribe To Comments Reloaded 2.0 en español\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-11 02:00-0600\n"
6
+ "PO-Revision-Date: 2016-01-11 02:00-0600\n"
7
+ "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
+ "Language-Team: TodoWordPress, Juan Luis Perez, Iván Ridao Freitas "
9
+ "<juanluperez@gmail.com>\n"
10
+ "Language: es_ES\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-KeywordsList: __;_e\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "Plural-Forms: nplurals=2; plural=n !=1;\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Generator: Poedit 1.5.4\n"
19
+ "X-Poedit-SearchPath-0: .\n"
20
+
21
+ #: wp_subscribe_reloaded.php:124
22
+ msgid "Settings"
23
+ msgstr "Configuración"
24
+
25
+ #: wp_subscribe_reloaded.php:1030
26
+ msgid "Don't subscribe"
27
+ msgstr "No Suscribirse"
28
+
29
+ #: wp_subscribe_reloaded.php:1031
30
+ msgid "All"
31
+ msgstr "Todo"
32
+
33
+ #: wp_subscribe_reloaded.php:1032 templates/user.php:73
34
+ #: templates/author.php:75
35
+ msgid "Replies to my comments"
36
+ msgstr "Respuestas a mis comentarios"
37
+
38
+ #: utils/stcr_manage.php:218
39
+ msgid ""
40
+ "Notify me of followup comments via e-mail. You can also <a "
41
+ "href='[subscribe_link]'>subscribe</a> without commenting."
42
+ msgstr ""
43
+ "Notificarme los nuevos comentarios por correo electrónico. También puedes <a "
44
+ "href='[subscribe_link]'>suscribirte</a> sin comentar."
45
+
46
+ #: utils/stcr_manage.php:219
47
+ msgid ""
48
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
49
+ "subscriptions."
50
+ msgstr ""
51
+ "Te has suscrito a esta entrada. <a href='[manager_link]'>Gestionar</a> tus "
52
+ "suscripciones."
53
+
54
+ #: utils/stcr_manage.php:220
55
+ msgid ""
56
+ "Your subscription to this post needs to be confirmed. <a "
57
+ "href='[manager_link]'>Manage your subscriptions</a>."
58
+ msgstr ""
59
+ "Tu suscripción a esta entrada necesita ser confirmada. <a "
60
+ "href='[manager_link]'>Gestiona tus suscripciones</a>."
61
+
62
+ #: utils/stcr_manage.php:221
63
+ msgid ""
64
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
65
+ msgstr ""
66
+ "Puedes <a href='[manager_link]'>gestionar las suscripciones</a> de esta "
67
+ "entrada."
68
+
69
+ #: utils/stcr_manage.php:225 options/index.php:57
70
+ msgid "Manage subscriptions"
71
+ msgstr "Administrar suscripciones"
72
+
73
+ #: utils/stcr_manage.php:227
74
+ msgid ""
75
+ "To manage your subscriptions, please enter your email address here below. We "
76
+ "will send you a message containing the link to access your personal "
77
+ "management page."
78
+ msgstr ""
79
+ "Para gestionar tus suscripciones introduce tu correo electrónico a "
80
+ "continuación. Te enviaremos un mensaje con un enlace para acceder a tu "
81
+ "página de administración."
82
+
83
+ #: utils/stcr_manage.php:228
84
+ msgid ""
85
+ "Thank you for using our subscription service. Your request has been "
86
+ "completed, and you should receive an email with the management link in a few "
87
+ "minutes."
88
+ msgstr ""
89
+ "Gracias por usar nuestro servicio de suscripción. Tu petición se ha "
90
+ "completada con éxito, deberías recibir un mensaje en tu buzón de correo "
91
+ "electrónico con con el enlace de administración en unos minutos."
92
+
93
+ #: utils/stcr_manage.php:229
94
+ msgid ""
95
+ "You can follow the discussion on <strong>[post_title]</strong> without "
96
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
97
+ "form here below and you're all set."
98
+ msgstr ""
99
+ "Puedes seguir la discusión de <strong>[post_title]</strong> sin tener que "
100
+ "dejar un comentario. Introduce tu dirección de correo electrónico en el "
101
+ "siguiente formulario y listo."
102
+
103
+ #: utils/stcr_manage.php:230
104
+ msgid ""
105
+ "Thank you for using our subscription service. Your request has been "
106
+ "completed. You will receive a notification email every time a new comment to "
107
+ "this article is approved and posted by the administrator."
108
+ msgstr ""
109
+ "Gracias por usar nuestro servicio de suscripción. Tu petición se ha "
110
+ "completado. Recibirás un mensaje de notificación cada que vez que un nuevo "
111
+ "comentario se publique o apruebe en esta entrada."
112
+
113
+ #: utils/stcr_manage.php:231
114
+ msgid ""
115
+ "Thank you for using our subscription service. In order to confirm your "
116
+ "request, please check your email for the verification message and follow the "
117
+ "instructions."
118
+ msgstr ""
119
+ "Gracias por usar nuestro servicio de suscripción. Para confirmar tu "
120
+ "petición, por favor comprueba si has recibido un mensaje en tu buzón de "
121
+ "correo electrónico y sigue las instrucciones."
122
+
123
+ #: utils/stcr_manage.php:232
124
+ msgid ""
125
+ "In order to cancel or suspend one or more notifications, select the "
126
+ "corresponding checkbox(es) and click on the button at the end of the list."
127
+ msgstr ""
128
+ "Para cancelar o suspender una o más suscripciones, selecciona la "
129
+ "correspondiente casilla de verificación y pulsa en el botón del final de la "
130
+ "lista."
131
+
132
+ #: utils/stcr_manage.php:233
133
+ msgid ""
134
+ "In order to cancel or suspend one or more notifications, select the "
135
+ "corresponding checkbox(es) and click on the button at the end of the list. "
136
+ "You are currently subscribed to:"
137
+ msgstr ""
138
+ "Para cancelar o suspender una o más suscripciones, selecciona la "
139
+ "correspondiente casilla de verificación y pulsa en el botón del final de la "
140
+ "lista. Actualmente estás suscrito a:"
141
+
142
+ #: utils/stcr_manage.php:237
143
+ msgid "There is a new comment to [post_title]"
144
+ msgstr "Hay un nuevo comentario en [post_title]"
145
+
146
+ #: utils/stcr_manage.php:238
147
+ msgid ""
148
+ "There is a new comment to [post_title].\n"
149
+ "Comment Link: [comment_permalink]\n"
150
+ "Author: [comment_author]\n"
151
+ "Comment:\n"
152
+ "[comment_content]\n"
153
+ "Permalink: [post_permalink]\n"
154
+ "Manage your subscriptions: [manager_link]"
155
+ msgstr ""
156
+ "Hay un nuevo comentario en [post_title].\n"
157
+ "Enlace al comentario: [comment_permalink]\n"
158
+ "Autor: [comment_author]\n"
159
+ "Comentario:\n"
160
+ "[comment_content]\n"
161
+ "Enlace permanente: [post_permalink]\n"
162
+ "Administrar tus suscripciones: [manager_link]"
163
+
164
+ #: utils/stcr_manage.php:239
165
+ msgid "Please confirm your subscription to [post_title]"
166
+ msgstr "Por favor, confirma tu suscripción a [post_title]"
167
+
168
+ #: utils/stcr_manage.php:240
169
+ msgid ""
170
+ "You have requested to be notified every time a new comment is added to:\n"
171
+ "[post_permalink]\n"
172
+ "\n"
173
+ "Please confirm your request by clicking on this link:\n"
174
+ "[confirm_link]"
175
+ msgstr ""
176
+ "Has solicitado que te notifiquemos cada vez que se escriba un comentario "
177
+ "en:\n"
178
+ "[post_permalink]\n"
179
+ "\n"
180
+ "Por favor, confirma tu petición pulsando el siguiente enlace:\n"
181
+ "[confirm_link]"
182
+
183
+ #: utils/stcr_manage.php:241
184
+ msgid "Manage your subscriptions on [blog_name]"
185
+ msgstr "Gestiona tus suscripciones en [blog_name]"
186
+
187
+ #: utils/stcr_manage.php:242
188
+ msgid ""
189
+ "You have requested to manage your subscriptions to the articles on "
190
+ "[blog_name]. Follow this link to access your personal page:\n"
191
+ "[manager_link]"
192
+ msgstr ""
193
+ "Has solicitado gestionar tus suscripciones a las entradas de [blog_name]. "
194
+ "Sigue el siguiente enlace para acceder a tu página de suscripciones:\n"
195
+ "[manager_link]"
196
+
197
+ #: utils/stcr_manage.php:387
198
+ #, fuzzy
199
+ msgid "Subscriptions"
200
+ msgstr "Suscripciones"
201
+
202
+ #: utils/stcr_manage.php:416 options/panel5.php:87 options/panel5.php:96
203
+ #: options/panel5.php:105 options/panel5.php:115 options/panel5.php:124
204
+ #: options/panel5.php:134 options/panel5.php:143 options/panel5.php:152
205
+ #: options/panel5.php:161 options/panel2.php:67 options/panel2.php:77
206
+ #: options/panel2.php:106
207
+ msgid "No"
208
+ msgstr "No"
209
+
210
+ #: utils/stcr_manage.php:443
211
+ msgid ""
212
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
213
+ msgstr ""
214
+ "¿Necesitas ayuda sobre como usar \"Subscribe to Comments Reloaded\"? Visita "
215
+ "el"
216
+
217
+ #: utils/stcr_manage.php:443
218
+ msgid "support forum"
219
+ msgstr "foro de soporte oficial"
220
+
221
+ #: utils/stcr_manage.php:444
222
+ msgid "Feeling generous?"
223
+ msgstr "¿Te sientes generoso?"
224
+
225
+ #: utils/stcr_manage.php:444
226
+ msgid "Donate a few bucks!"
227
+ msgstr "¡Dona un poco de dinero!"
228
+
229
+ #: utils/stcr_upgrade.php:53
230
+ msgid "Important Notice"
231
+ msgstr "Nota Importante"
232
+
233
+ #: utils/stcr_upgrade.php:96
234
+ #, fuzzy
235
+ msgid ""
236
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
237
+ "database has been sanitized to prevent the raw html messages. <a class="
238
+ "\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-animation\" "
239
+ "src=\""
240
+ msgstr ""
241
+ "La información contenida en su base de datos ha sido corregida para evitar "
242
+ "mensajes HTML sin procesar."
243
+
244
+ #: utils/stcr_upgrade.php:151
245
+ #, fuzzy
246
+ msgid ""
247
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
248
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
249
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
250
+ msgstr ""
251
+ "Se detectaron datos de suscripción a comentarios del plugin "
252
+ "<strong>Subscribe to Comments</strong> y se importaron automáticamente en "
253
+ "<strong>Subscribe to Comments Reloaded</strong>."
254
+
255
+ #: utils/stcr_upgrade.php:151
256
+ msgid ""
257
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
258
+ "Comments to prevent confusion between the two plugins."
259
+ msgstr ""
260
+ "Se recomienda que <strong>desactive</strong> ahora Subscribe to Comments "
261
+ "para prevenir conflictos entre ambos plugins."
262
+
263
+ #: utils/stcr_upgrade.php:152
264
+ msgid ""
265
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
266
+ "that you want to import, you'll need to import that data manually, as only "
267
+ "one import routine will ever run to prevent data loss."
268
+ msgstr ""
269
+ "Si tienes datos de suscripción de Subscribe to Comments Reloaded < v2.0 que "
270
+ "quieres importar, necesitaras importar esos datos manualmente, ya que sólo "
271
+ "se ejecutará una rutina de importación para evitar la pérdida de datos."
272
+
273
+ #: utils/stcr_upgrade.php:153 utils/stcr_upgrade.php:225
274
+ #: utils/stcr_upgrade.php:374
275
+ #, fuzzy
276
+ msgid ""
277
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
278
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
279
+ "your configuration.<a class=\"dismiss\" href=\"#\">Got it. </a><img class="
280
+ "\"stcr-loading-animation\" src=\""
281
+ msgstr ""
282
+ "Por favor visita <a href=\"options-general.php?page=subscribe-to-comments-"
283
+ "reloaded/options/index.php\">Configuración -> Subscribe to Comments</a> para "
284
+ "revisar tu configuración."
285
+
286
+ #: utils/stcr_upgrade.php:224
287
+ #, fuzzy
288
+ msgid ""
289
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
290
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
291
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
292
+ msgstr ""
293
+ "Se detectaron datos de suscripción a comentarios del plugin <strong>Comment "
294
+ "Reply Notification</strong> y se importaron automáticamente en "
295
+ "<strong>Subscribe to Comments Reloaded</strong>."
296
+
297
+ #: utils/stcr_upgrade.php:224
298
+ msgid ""
299
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
300
+ "Notification to prevent confusion between the two plugins."
301
+ msgstr ""
302
+ "Se recomienda que <strong>desactive</strong> ahora Comment Reply "
303
+ "Notification para prevenir conflictos entre ambos plugins."
304
+
305
+ #: utils/stcr_upgrade.php:371
306
+ #, fuzzy
307
+ msgid ""
308
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
309
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
310
+ "were detected and automatically imported into <strong>Subscribe to Comments "
311
+ "Reloaded</strong>."
312
+ msgstr ""
313
+ "Se detectaron opciones y datos de suscripción a comentarios del plugin "
314
+ "<strong>WP Comment Subscriptions</strong> y se importaron automáticamente en "
315
+ "<strong>Subscribe to Comments Reloaded</strong>."
316
+
317
+ #: utils/stcr_upgrade.php:371
318
+ msgid ""
319
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
320
+ "Subscriptions to prevent confusion between the two plugins."
321
+ msgstr ""
322
+ "Se recomienda que <strong>desactive</strong> ahora WP Comment Subscriptions "
323
+ "para prevenir conflictos entre ambos plugins."
324
+
325
+ #: utils/stcr_upgrade.php:372
326
+ msgid ""
327
+ "If you have subscription data from another plugin (such as Subscribe to "
328
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
329
+ "you'll need to import that data manually, as only one import routine will "
330
+ "ever run to prevent data loss."
331
+ msgstr ""
332
+ "Si tienes datos de suscripción de otro plugin (como Subscribe to Comments o "
333
+ "Subscribe to Comments Reloaded < v2.0) que quieres importar, necesitaras "
334
+ "importar esos datos manualmente, ya que sólo se ejecutará una rutina de "
335
+ "importación para evitar la pérdida de datos."
336
+
337
+ #: utils/stcr_upgrade.php:373
338
+ msgid ""
339
+ "<strong>Note:</strong> If you were previously using the "
340
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
341
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
342
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
343
+ "respectively."
344
+ msgstr ""
345
+ "<strong>Nota:</strong> Si estaba utilizando previamente la función "
346
+ "<code>wp_comment_subscriptions_show()</code> o el shortcode <code>[wpcs-"
347
+ "subscribe-url]</code>, deberá reemplazar ambos con "
348
+ "<code>subscribe_reloaded_show()</code> y <code>[subscribe-url]</code> "
349
+ "respectivamente."
350
+
351
+ #: utils/stcr_upgrade.php:387
352
+ #, fuzzy
353
+ msgid ""
354
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
355
+ msgstr "Aviso Importante de Subscribe to Comments Reloaded"
356
+
357
+ #: utils/stcr_upgrade.php:388
358
+ msgid ""
359
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
360
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
361
+ msgstr ""
362
+
363
+ #: utils/stcr_upgrade.php:389
364
+ msgid ""
365
+ "If you want to donate you can do it via <a href=\"\n"
366
+ "https://www.paypal.com/cgi-bin/webscr?"
367
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
368
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
369
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
370
+ msgstr ""
371
+
372
+ #: utils/stcr_upgrade.php:391
373
+ #, fuzzy
374
+ msgid ""
375
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
376
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
377
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Got it. </"
378
+ "a><img class=\"stcr-loading-animation\" src=\""
379
+ msgstr ""
380
+ "Por favor visita <a href=\"options-general.php?page=subscribe-to-comments-"
381
+ "reloaded/options/index.php\">Configuración -> Subscribe to Comments</a> para "
382
+ "revisar tu configuración."
383
+
384
+ #: utils/stcr_upgrade.php:403
385
+ msgid ""
386
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
387
+ "160106."
388
+ msgstr ""
389
+
390
+ #: utils/stcr_upgrade.php:404
391
+ msgid ""
392
+ "This version includes many changes and fixes to improve your experience with "
393
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
394
+ "email templates, Subscription Checkbox position, and more!"
395
+ msgstr ""
396
+
397
+ #: utils/stcr_upgrade.php:405
398
+ #, fuzzy
399
+ msgid ""
400
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
401
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
402
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
403
+ "class=\"stcr-loading-animation\" src=\""
404
+ msgstr ""
405
+ "Por favor visita <a href=\"options-general.php?page=subscribe-to-comments-"
406
+ "reloaded/options/index.php\">Configuración -> Subscribe to Comments</a> para "
407
+ "revisar tu configuración."
408
+
409
+ #: utils/stcr_upgrade.php:419
410
+ msgid "Announcement: Introducing Comment Mail"
411
+ msgstr ""
412
+
413
+ #: utils/stcr_upgrade.php:420
414
+ msgid ""
415
+ "<strong><a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
416
+ "\">Comment Mail</strong></a> is a new free plugin based on the original "
417
+ "<strong>Subscribe to Comments Reloaded</strong> and includes all of the core "
418
+ "StCR features."
419
+ msgstr ""
420
+
421
+ #: utils/stcr_upgrade.php:421
422
+ msgid ""
423
+ "A powerful StCR importer lets you import your StCR settings and "
424
+ "subscriptions into Comment Mail, allowing for a seamless transition."
425
+ msgstr ""
426
+
427
+ #: utils/stcr_upgrade.php:422
428
+ msgid ""
429
+ "Need more powerful features to manage your subscriptions but can't wait for "
430
+ "StCR? <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
431
+ "\">Take a look at Comment Mail!</a>"
432
+ msgstr ""
433
+
434
+ #: utils/stcr_upgrade.php:423
435
+ #, fuzzy
436
+ msgid ""
437
+ "<em>Note: Subscribe to Comments Reloaded remains in active development.</"
438
+ "em><a class=\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-"
439
+ "animation\" src=\""
440
+ msgstr ""
441
+ "La información contenida en su base de datos ha sido corregida para evitar "
442
+ "mensajes HTML sin procesar."
443
+
444
+ #: templates/user.php:23 templates/author.php:23
445
+ #: options/panel1-business-logic.php:70
446
+ msgid "Subscriptions deleted:"
447
+ msgstr "Suscripciones eliminadas:"
448
+
449
+ #: templates/user.php:27 templates/author.php:27
450
+ #: options/panel1-business-logic.php:74
451
+ msgid "Subscriptions suspended:"
452
+ msgstr "Suscripción suspendida:"
453
+
454
+ #: templates/user.php:31 templates/author.php:31
455
+ #: options/panel1-business-logic.php:78
456
+ msgid "Subscriptions activated:"
457
+ msgstr "Suscripciones activadas:"
458
+
459
+ #: templates/user.php:35 templates/user.php:39 templates/author.php:35
460
+ #: templates/author.php:39 options/panel1-business-logic.php:82
461
+ #: options/panel1-business-logic.php:86
462
+ msgid "Subscriptions updated:"
463
+ msgstr "Suscripciones actualizadas:"
464
+
465
+ #: templates/user.php:52 templates/author.php:52
466
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:22
467
+ #: options/panel1.php:117 options/panel1.php:153
468
+ msgid ""
469
+ "Please remember: this operation cannot be undone. Are you sure you want to "
470
+ "proceed?"
471
+ msgstr ""
472
+ "Recuerda: esta operación no se puede deshacer. ¿Estás seguro de que quieres "
473
+ "hacerlo?"
474
+
475
+ #: templates/user.php:57 templates/request-management-link.php:73
476
+ #: templates/subscribe.php:89 options/panel1-add-subscription.php:16
477
+ #: options/panel1.php:65 options/panel1.php:126
478
+ msgid "Email"
479
+ msgstr "Email"
480
+
481
+ #: templates/user.php:58 templates/author.php:58 options/panel1.php:129
482
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
483
+ msgstr "Leyenda: Y = todos los comentarios, R = solo respuestas, C = inactivo"
484
+
485
+ #: templates/user.php:63
486
+ msgid "F j, Y"
487
+ msgstr ""
488
+
489
+ #: templates/user.php:67 templates/author.php:69
490
+ msgid "Select all"
491
+ msgstr "Seleccionar todo"
492
+
493
+ #: templates/user.php:68 templates/author.php:70
494
+ msgid "Invert selection"
495
+ msgstr "Invertir selección"
496
+
497
+ #: templates/user.php:69 templates/author.php:71 options/panel1.php:161
498
+ msgid "Action:"
499
+ msgstr "Acción:"
500
+
501
+ #: templates/user.php:70 templates/author.php:72 options/panel1.php:153
502
+ msgid "Delete"
503
+ msgstr "Eliminar"
504
+
505
+ #: templates/user.php:71 templates/author.php:73 options/panel1.php:163
506
+ msgid "Suspend"
507
+ msgstr "Suspender"
508
+
509
+ #: templates/user.php:72 templates/author.php:74
510
+ msgid "All comments"
511
+ msgstr "Todos los comentarios"
512
+
513
+ #: templates/user.php:74 templates/author.php:76 options/panel1.php:166
514
+ msgid "Activate"
515
+ msgstr "Activar"
516
+
517
+ #: templates/user.php:76 templates/author.php:77 options/panel1.php:167
518
+ msgid "Update subscriptions"
519
+ msgstr "Actualizar suscripciones"
520
+
521
+ #: templates/user.php:79 templates/author.php:80
522
+ #: templates/one-click-unsubscribe.php:28
523
+ msgid "No subscriptions match your search criteria."
524
+ msgstr "Ninguna suscripción coincide con tu criterio de búsqueda."
525
+
526
+ #: templates/request-management-link.php:75 templates/subscribe.php:91
527
+ msgid "Send"
528
+ msgstr "Enviar"
529
+
530
+ #: templates/author.php:57
531
+ msgid "Title"
532
+ msgstr "Título"
533
+
534
+ #: templates/subscribe.php:43 templates/subscribe.php:44
535
+ msgid "New subscription to"
536
+ msgstr "Nueva suscripción a"
537
+
538
+ #: templates/subscribe.php:44
539
+ msgid "User:"
540
+ msgstr "Usuario:"
541
+
542
+ #: options/panel6.php:8 options/panel7.php:8
543
+ msgid "Support the developers"
544
+ msgstr "Apoya a los desarrolladores"
545
+
546
+ #: options/panel6.php:18
547
+ msgid ""
548
+ "How valuable is the feature offered by this plugin to your visitors? please "
549
+ "consider supporting the author if this plugin made your web site better, "
550
+ "especially if you are making money out of it. Any donation received will be "
551
+ "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
552
+ "strong>, and to buy some food for my hungry family."
553
+ msgstr ""
554
+ "¿Qué valor tienen las características que ofrece este plugin para tus "
555
+ "visitantes? Por favor, considera apoyar al autor si este plugin hace tu web "
556
+ "mejor, especialmente si estás haciendo dinero con ella. Cualquier donación "
557
+ "recibida será reinvertida en el desarrollo de <strong>Subscribe to Comments "
558
+ "Reloaded</strong>, y en comprar algo de comida para mi familia hambrienta."
559
+
560
+ #: options/panel6.php:20
561
+ msgid "Don't want to donate? You can still help"
562
+ msgstr "¿No quieres donar? Todavía puedes ayudar"
563
+
564
+ #: options/panel6.php:21
565
+ msgid ""
566
+ "If you don't want to donate money, please consider blogging about my plugin "
567
+ "with a link to the plugin's page. Please let your readers know what makes "
568
+ "your blog better. You can also contribute donating your time: do not "
569
+ "hesitate to send me bug reports, your localization files, ideas on how to "
570
+ "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
571
+ "you do, thanks for using my plugin!"
572
+ msgstr ""
573
+ "Si no quieres donar dinero, por favor considera escribir una entrada en tu "
574
+ "sitio acerca de mi plugin con un enlace hacia la página del plugin. Deja que "
575
+ "tus lectores sepan lo que hace tu blog mejor. También puedes contribuir "
576
+ "donando tu tiempo: no dudes en enviarme informes de fallos en el plugin, "
577
+ "traducciones, ideas sobre cómo mejorar <strong>Subscribe to Comments "
578
+ "Reloaded</strong> y más. Hagas lo que hagas, ¡gracias por usar mi plugin!"
579
+
580
+ #: options/panel6.php:23
581
+ msgid "Subscribe to the Beta testers"
582
+ msgstr "Suscribirse a los Beta testers"
583
+
584
+ #: options/panel6.php:24
585
+ msgid ""
586
+ "Before a new Update we release a Beta version so that our current users can "
587
+ "give us feedback if they find a bug, If you want to join the tester list you "
588
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
589
+ "a>"
590
+ msgstr ""
591
+ "Previo a una nueva Actualización, lanzamos una versión Beta para que "
592
+ "nuestros usuarios actuales nos pueden dar información si encuentran un "
593
+ "error. Si quieres unirte a la lista de testers, puedes agregar tu correo "
594
+ "electrónico <a href='http://eepurl.com/biCk1b' target='_blank'>aquí</a>."
595
+
596
+ #: options/panel6.php:26
597
+ msgid "Vote and show your appreciation"
598
+ msgstr "Vota y muestra tu agradecimiento"
599
+
600
+ #: options/panel6.php:27
601
+ msgid ""
602
+ "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
603
+ "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
604
+ "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
605
+ msgstr ""
606
+ "Dile a otras personas si <strong>Subscribe to Comments Reloaded</strong> "
607
+ "funciona para ti y cómo es de bueno. <a href=\"http://wordpress.org/extend/"
608
+ "plugins/subscribe-to-comments-reloaded/\">Valóralo</a> en la página de "
609
+ "plugins de WordPress."
610
+
611
+ #: options/panel1-business-logic.php:23
612
+ msgid "Subscription added."
613
+ msgstr "Suscripción añadida."
614
+
615
+ #: options/panel1-business-logic.php:39
616
+ msgid "Subscriptions updated."
617
+ msgstr "Suscripción actualizada."
618
+
619
+ #: options/panel1-business-logic.php:51
620
+ msgid "Subscription deleted."
621
+ msgstr "Suscripción eliminada."
622
+
623
+ #: options/panel1-business-logic.php:110
624
+ msgid "&laquo; Previous"
625
+ msgstr "&laquo; Anterior"
626
+
627
+ #: options/panel1-business-logic.php:114
628
+ msgid "Next &raquo;"
629
+ msgstr "Siguiente &raquo;"
630
+
631
+ #: options/panel5.php:18 options/panel5.php:60 options/panel3.php:73
632
+ #: options/panel4.php:70 options/panel2.php:49
633
+ msgid "Your settings have been successfully updated."
634
+ msgstr "Tu configuración se ha actualizado correctamente."
635
+
636
+ #: options/panel5.php:20 options/panel5.php:62 options/panel3.php:75
637
+ #: options/panel4.php:72 options/panel2.php:51
638
+ msgid "There was an error updating the following fields:"
639
+ msgstr "Se ha producido un error al actualizar los siguientes campos:"
640
+
641
+ #: options/panel5.php:28 options/panel5.php:75
642
+ msgid "Autopurge requests"
643
+ msgstr "Solicitudes de purga automática"
644
+
645
+ #: options/panel5.php:31 options/panel5.php:84
646
+ msgid "Enable double check"
647
+ msgstr "Activar doble verificación"
648
+
649
+ #: options/panel5.php:34 options/panel5.php:92
650
+ msgid "Subscribe authors"
651
+ msgstr "Suscrito"
652
+
653
+ #: options/panel5.php:37 options/panel5.php:102
654
+ msgid "Enable HTML emails"
655
+ msgstr "Activar HTML en emails"
656
+
657
+ #: options/panel5.php:40
658
+ msgid "HTMLify Links in HTML emails"
659
+ msgstr "Convertir enlaces HTML en emails HTML"
660
+
661
+ #: options/panel5.php:43
662
+ msgid "Send trackbacks"
663
+ msgstr "Enviar trackbacks"
664
+
665
+ #: options/panel5.php:46
666
+ msgid "Notify admin"
667
+ msgstr "Notificar al administrador"
668
+
669
+ #: options/panel5.php:49 options/panel5.php:140
670
+ msgid "Let admin subscribe"
671
+ msgstr "Permitir al administrador suscribirse"
672
+
673
+ #: options/panel5.php:52 options/panel5.php:149
674
+ msgid "BCC admin on Notifications"
675
+ msgstr "Notificaciones"
676
+
677
+ #: options/panel5.php:55
678
+ #, fuzzy
679
+ msgid "StCR Subscription Box Position"
680
+ msgstr "Nueva suscripción a"
681
+
682
+ #: options/panel5.php:78
683
+ msgid "days"
684
+ msgstr "días"
685
+
686
+ #: options/panel5.php:79
687
+ msgid ""
688
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
689
+ "this feature."
690
+ msgstr ""
691
+ "Eliminar suscripciones pendientes (sin confirmar) después de X días. 0 "
692
+ "(cero) desactiva esta función."
693
+
694
+ #: options/panel5.php:86 options/panel5.php:95 options/panel5.php:104
695
+ #: options/panel5.php:114 options/panel5.php:123 options/panel5.php:133
696
+ #: options/panel5.php:142 options/panel5.php:151 options/panel5.php:160
697
+ #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
698
+ msgid "Yes"
699
+ msgstr "Sí"
700
+
701
+ #: options/panel5.php:88
702
+ msgid ""
703
+ "Send a notification email to confirm the subscription (to avoid addresses "
704
+ "misuse)."
705
+ msgstr ""
706
+ "Enviar un mensaje de notificación para confirmar la suscripción (para evitar "
707
+ "un uso fraudulento de las direcciones)."
708
+
709
+ #: options/panel5.php:97
710
+ msgid ""
711
+ "Automatically subscribe authors to their own articles (not retroactive)."
712
+ msgstr "Suscribir autores automaticamente a sus artículos (No retroactivo)."
713
+
714
+ #: options/panel5.php:106
715
+ msgid ""
716
+ "If enabled, will send email messages with content-type = text/html instead "
717
+ "of text/plain"
718
+ msgstr ""
719
+ "Si está activado, enviará mensajes de correo electrónico con content-type = "
720
+ "text/html en lugar de text/plain"
721
+
722
+ #: options/panel5.php:111
723
+ msgid "HTMLify links in emails"
724
+ msgstr "Convertir enlaces HTML"
725
+
726
+ #: options/panel5.php:116
727
+ msgid ""
728
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
729
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
730
+ msgstr ""
731
+ "Si está activado, agregará <code>&lt;a href=\"\"&gt;&lt;/a&gt;</code> en "
732
+ "todos los enlaces de los mensajes (sólo si se activó HTML en emails)."
733
+
734
+ #: options/panel5.php:121
735
+ msgid "Process trackbacks"
736
+ msgstr "Procesar trackbacks"
737
+
738
+ #: options/panel5.php:125
739
+ msgid ""
740
+ "Notify users when a new trackback or pingback is added to the discussion."
741
+ msgstr ""
742
+ "Notificar a los usuarios cuando se añade un nuevo trackback o pingback a la "
743
+ "discusión."
744
+
745
+ #: options/panel5.php:130
746
+ msgid "Track all subscriptions"
747
+ msgstr "Seguir todas las suscripciones"
748
+
749
+ #: options/panel5.php:135
750
+ msgid "Notify the administrator when users subscribe without commenting."
751
+ msgstr ""
752
+ "Notificar al administrador cuando los usuarios se suscriban sin comentar."
753
+
754
+ #: options/panel5.php:144
755
+ msgid "Let the administrator subscribe to comments when logged in."
756
+ msgstr ""
757
+ "Permitir al administrador suscribirse a los comentarios cuando tiene la "
758
+ "sesión iniciada."
759
+
760
+ #: options/panel5.php:153
761
+ msgid "Send a copy of all Notifications to the administrator."
762
+ msgstr "Enviar una copia de todas las Notificaciones al administrador."
763
+
764
+ #: options/panel5.php:158
765
+ msgid "StCR Box Position"
766
+ msgstr ""
767
+
768
+ #: options/panel5.php:162
769
+ msgid ""
770
+ "If this option is enable the subscriptioin box will be above the submit "
771
+ "button in your comment form."
772
+ msgstr ""
773
+
774
+ #: options/panel5.php:167
775
+ msgid "StCR Unique Key"
776
+ msgstr "StCR Clave Única"
777
+
778
+ #: options/panel5.php:172
779
+ msgid "This Unique Key is not set, please click the following button to "
780
+ msgstr ""
781
+ "Esta Clave Única no se ha establecido, por favor haga clic en el siguiente "
782
+ "botón para"
783
+
784
+ #: options/panel5.php:176 options/panel5.php:187
785
+ msgid "Generate"
786
+ msgstr "Generar"
787
+
788
+ #: options/panel5.php:184
789
+ #, fuzzy
790
+ msgid ""
791
+ "This Unique Key will be use to send the notification to your subscribers "
792
+ "with more security."
793
+ msgstr ""
794
+ "Esta Clave Única se utiliza para enviar notificaciones a sus suscriptores "
795
+ "con más seguridad."
796
+
797
+ #: options/panel5.php:195 options/panel3.php:200 options/panel4.php:207
798
+ #: options/panel2.php:189
799
+ msgid "Save Changes"
800
+ msgstr "Guardar cambios"
801
+
802
+ #: options/index.php:58
803
+ msgid "Comment Form"
804
+ msgstr "Formulario de Comentario"
805
+
806
+ #: options/index.php:59
807
+ msgid "Management Page"
808
+ msgstr "Página de Administración"
809
+
810
+ #: options/index.php:60
811
+ msgid "Notifications"
812
+ msgstr "Notificaciones"
813
+
814
+ #: options/index.php:61 options/panel3.php:85 options/panel4.php:80
815
+ #: options/panel2.php:58
816
+ msgid "Options"
817
+ msgstr "Opciones"
818
+
819
+ #: options/index.php:62
820
+ msgid "You can help"
821
+ msgstr "Puedes ayudar"
822
+
823
+ #: options/index.php:63
824
+ msgid "Support"
825
+ msgstr "Soporte"
826
+
827
+ #: options/index.php:64
828
+ msgid "Donate"
829
+ msgstr ""
830
+
831
+ #: options/panel3.php:16 options/panel3.php:90
832
+ msgid "Virtual Management Page"
833
+ msgstr "Página de Administración virtual"
834
+
835
+ #: options/panel3.php:21 options/panel3.php:99
836
+ msgid "Page title"
837
+ msgstr "Título de la página"
838
+
839
+ #: options/panel3.php:26 options/panel3.php:108
840
+ msgid "Management URL"
841
+ msgstr "Página de Administración"
842
+
843
+ #: options/panel3.php:31 options/panel3.php:120
844
+ msgid "Custom HEAD meta"
845
+ msgstr "HEAD meta personalizada"
846
+
847
+ #: options/panel3.php:37 options/panel3.php:134
848
+ msgid "Request link"
849
+ msgstr "Petición de enlace"
850
+
851
+ #: options/panel3.php:42 options/panel3.php:144
852
+ msgid "Request submitted"
853
+ msgstr "Petición enviada"
854
+
855
+ #: options/panel3.php:47 options/panel3.php:154
856
+ msgid "Subscribe without commenting"
857
+ msgstr "Suscribir sin comentar"
858
+
859
+ #: options/panel3.php:52 options/panel3.php:164
860
+ msgid "Subscription processed"
861
+ msgstr "Suscripción procesada"
862
+
863
+ #: options/panel3.php:57 options/panel3.php:174
864
+ msgid "Subscription processed (DCI)"
865
+ msgstr "Suscripción procesada (Pendiente de confirmación)"
866
+
867
+ #: options/panel3.php:62 options/panel3.php:183
868
+ msgid "Authors"
869
+ msgstr "Autores"
870
+
871
+ #: options/panel3.php:67 options/panel3.php:191
872
+ msgid "Users"
873
+ msgstr "Usuarios"
874
+
875
+ #: options/panel3.php:93
876
+ msgid "Enabled"
877
+ msgstr "Habilitado"
878
+
879
+ #: options/panel3.php:94
880
+ msgid "Disabled"
881
+ msgstr "Deshabilitado"
882
+
883
+ #: options/panel3.php:95
884
+ #, fuzzy
885
+ msgid ""
886
+ "Disable the virtual management page if you need to create a <a href="
887
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
888
+ "real-management-page\">real page</a> to make your theme happy."
889
+ msgstr ""
890
+ "Deshabilita la página de administración virtual si necesitas crear una <a "
891
+ "href=\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">página real</"
892
+ "a> para hacer tu tema feliz."
893
+
894
+ #: options/panel3.php:104
895
+ msgid "Title of the page your visitors will use to manage their subscriptions."
896
+ msgstr ""
897
+ "Título de la página para que tus visitantes usarán para gestionar tus "
898
+ "suscripciones."
899
+
900
+ #: options/panel3.php:112
901
+ msgid ""
902
+ "The permalink for your management page (something like <code>/manage-"
903
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
904
+ "b> actually exist in the system, but its link must follow your permalink "
905
+ "structure."
906
+ msgstr ""
907
+ "El enlace permanente para la página de administración (algo como <code>/"
908
+ "administrar-suscripciones</code> o <code>/?page_id=345</code>). Esta página "
909
+ "realmente <b>no tiene</b> que existir en el sistema, pero su enlace debe "
910
+ "seguir tu estructura de enlaces permanentes."
911
+
912
+ #: options/panel3.php:114
913
+ msgid ""
914
+ "Warning: it looks like the value you are using may be incompatible with your "
915
+ "permalink structure"
916
+ msgstr ""
917
+ "Precaución: parece que el valor que estás usando puede ser incompatible con "
918
+ "tu estructura de enlaces permanentes"
919
+
920
+ #: options/panel3.php:124
921
+ msgid ""
922
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
923
+ "Use <strong>single</strong> quotes for values."
924
+ msgstr ""
925
+ "Especifica tu código HTML personalizado para ser añadido a la sección HEAD "
926
+ "de tu página. Usa comillas <strong>simples</strong> para los valores."
927
+
928
+ #: options/panel3.php:130 options/panel4.php:113
929
+ msgid "Messages"
930
+ msgstr "Mensajes"
931
+
932
+ #: options/panel3.php:139
933
+ msgid "Text shown to those who request to manage their subscriptions."
934
+ msgstr ""
935
+ "Texto que se muestra a quienes solicitan acceso para administrar sus "
936
+ "suscripciones."
937
+
938
+ #: options/panel3.php:149
939
+ msgid ""
940
+ "Thank you note shown after the request here above has been processed. "
941
+ "Allowed tags: [post_title], [post_permalink]"
942
+ msgstr ""
943
+ "Nota de agradecimiento que se muestra tras haber sido procesada la solicitud "
944
+ "notificación. Etiquetas permitidas: [post_title] y [post_permalink]."
945
+
946
+ #: options/panel3.php:159
947
+ msgid ""
948
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
949
+ "[post_title], [post_permalink]"
950
+ msgstr ""
951
+ "Texto que se muestra a quienes se quieren suscribir sin comentar. Etiquetas "
952
+ "permitidas: [post_title] y [post_permalink]."
953
+
954
+ #: options/panel3.php:169
955
+ msgid ""
956
+ "Thank you note shown after the subscription request has been processed "
957
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
958
+ msgstr ""
959
+ "Nota de agradecimiento que se muestra tras haber sido procesada la solicitud "
960
+ "notificación (con doble verificación desactivada). Etiquetas permitidas: "
961
+ "[post_title] y [post_permalink]."
962
+
963
+ #: options/panel3.php:179
964
+ msgid ""
965
+ "Thank you note shown after the subscription request has been processed "
966
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
967
+ msgstr ""
968
+ "Nota de agradecimiento que se muestra tras haber sido procesada la solicitud "
969
+ "notificación (con doble verificación activada). Etiquetas disponibles: "
970
+ "[post_title] y [post_permalink]."
971
+
972
+ #: options/panel3.php:187
973
+ msgid "Introductory text for the authors' management page."
974
+ msgstr "Texto de introducción para los autores en la página de administración."
975
+
976
+ #: options/panel3.php:195
977
+ msgid "Introductory text for the users' management page."
978
+ msgstr ""
979
+ "Texto de introducción para los usuarios en la página de administración."
980
+
981
+ #: options/panel1-edit-subscription.php:8
982
+ msgid "Update Subscription"
983
+ msgstr "Actualizar Suscripción"
984
+
985
+ #: options/panel1-edit-subscription.php:11
986
+ #: options/panel1-edit-subscription.php:21
987
+ #: options/panel1-edit-subscription.php:22
988
+ #: options/panel1-edit-subscription.php:23 options/panel1.php:31
989
+ #: options/panel1.php:32 options/panel1.php:33
990
+ msgid "optional"
991
+ msgstr "opcional"
992
+
993
+ #: options/panel1-edit-subscription.php:13
994
+ #: options/panel1-add-subscription.php:13
995
+ msgid "Post:"
996
+ msgstr "Entrada:"
997
+
998
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:26
999
+ msgid "From"
1000
+ msgstr "De"
1001
+
1002
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:30
1003
+ msgid "To"
1004
+ msgstr "Para"
1005
+
1006
+ #: options/panel1-edit-subscription.php:26
1007
+ #: options/panel1-add-subscription.php:20 options/panel1.php:36
1008
+ #: options/panel1.php:69 options/panel1.php:139
1009
+ msgid "Status"
1010
+ msgstr "Estado"
1011
+
1012
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:38
1013
+ msgid "Keep unchanged"
1014
+ msgstr "Mantener sin cambios"
1015
+
1016
+ #: options/panel1-edit-subscription.php:29
1017
+ #: options/panel1-add-subscription.php:22 options/panel1.php:39
1018
+ #: options/panel1.php:72
1019
+ msgid "Active"
1020
+ msgstr "Activo"
1021
+
1022
+ #: options/panel1-edit-subscription.php:30
1023
+ #: options/panel1-add-subscription.php:23 options/panel1.php:40
1024
+ #: options/panel1.php:73
1025
+ msgid "Replies only"
1026
+ msgstr "Solo respuestas"
1027
+
1028
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:41
1029
+ msgid "Suspended"
1030
+ msgstr "Suspendido"
1031
+
1032
+ #: options/panel1-edit-subscription.php:33
1033
+ #: options/panel1-add-subscription.php:26 options/panel1.php:43
1034
+ msgid "Update"
1035
+ msgstr "Actualizar"
1036
+
1037
+ #: options/panel1-add-subscription.php:8 options/panel1.php:54
1038
+ msgid "Add New Subscription"
1039
+ msgstr "Añadir Nueva Suscripción"
1040
+
1041
+ #: options/panel1-add-subscription.php:24 options/panel1.php:74
1042
+ msgid "Ask user to confirm"
1043
+ msgstr "Pedir confirmación al usuario"
1044
+
1045
+ #: options/panel8.php:11
1046
+ #, fuzzy
1047
+ msgid "Support Subscribe to Comments Reloaded"
1048
+ msgstr "Aviso Importante de Subscribe to Comments Reloaded"
1049
+
1050
+ #: options/panel8.php:12
1051
+ msgid ""
1052
+ "Every contribution that you make is high valuable, so if you consider this "
1053
+ "plugin a helpful tool we will use your donation to invest on support and "
1054
+ "developing time."
1055
+ msgstr ""
1056
+
1057
+ #: options/panel4.php:17 options/panel4.php:85
1058
+ msgid "Sender name"
1059
+ msgstr "Nombre del remitente"
1060
+
1061
+ #: options/panel4.php:22 options/panel4.php:98
1062
+ msgid "Sender email address"
1063
+ msgstr "Dirección de correo electrónico del remitente"
1064
+
1065
+ #: options/panel4.php:27 options/panel4.php:118
1066
+ msgid "Notification subject"
1067
+ msgstr "Asunto de la notificación"
1068
+
1069
+ #: options/panel4.php:33 options/panel4.php:39 options/panel4.php:131
1070
+ msgid "Notification message"
1071
+ msgstr "Mensaje de la notificación"
1072
+
1073
+ #: options/panel4.php:44 options/panel4.php:145
1074
+ msgid "Double check subject"
1075
+ msgstr "Asunto del mensaje de doble verificación"
1076
+
1077
+ #: options/panel4.php:49 options/panel4.php:158
1078
+ msgid "Double check message"
1079
+ msgstr "Mensaje del mensaje de doble verificación"
1080
+
1081
+ #: options/panel4.php:54 options/panel4.php:170
1082
+ msgid "Management subject"
1083
+ msgstr "Asunto de administración"
1084
+
1085
+ #: options/panel4.php:59 options/panel4.php:64 options/panel4.php:183
1086
+ msgid "Management message"
1087
+ msgstr "Mensaje de administración"
1088
+
1089
+ #: options/panel4.php:92
1090
+ msgid ""
1091
+ "Name to use for the \"from\" field when sending a new notification to the "
1092
+ "user."
1093
+ msgstr ""
1094
+ "Nombre a usar en el campo \"De:\" cuando se envía una nueva notificación al "
1095
+ "usuario."
1096
+
1097
+ #: options/panel4.php:106
1098
+ msgid ""
1099
+ "Email address to use for the \"from\" field when sending a new notification "
1100
+ "to the user."
1101
+ msgstr ""
1102
+ "Dirección de correo electrónico que a usar en el campo \"Para:\" cuando se "
1103
+ "envía una nueva notificación al usuario."
1104
+
1105
+ #: options/panel4.php:125
1106
+ msgid "Subject of the notification email. Allowed tag: [post_title]"
1107
+ msgstr ""
1108
+ "Asunto del mensaje de notificación de nuevos comentarios. Etiquetas "
1109
+ "permitidas: [post_title]."
1110
+
1111
+ #: options/panel4.php:138
1112
+ msgid ""
1113
+ "Content of the notification email. Allowed tags: [post_title], "
1114
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1115
+ "[manager_link]"
1116
+ msgstr ""
1117
+ "Contenido del mensaje de notificación de nuevos comentarios. Etiquetas "
1118
+ "permitidas: [post_title], [comment_permalink], [comment_author], "
1119
+ "[comment_content], [post_permalink] y [manager_link]."
1120
+
1121
+ #: options/panel4.php:139
1122
+ msgid ""
1123
+ "<p><strong>Note: To get a default template clear all the content and save "
1124
+ "the options.</strong></p>"
1125
+ msgstr ""
1126
+
1127
+ #: options/panel4.php:152
1128
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
1129
+ msgstr ""
1130
+ "Asunto del mensaje de confirmación para suscripciones nuevas. Etiquetas "
1131
+ "permitidas: [post_title]."
1132
+
1133
+ #: options/panel4.php:164
1134
+ msgid ""
1135
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
1136
+ "[confirm_link], [post_title], [manager_link]"
1137
+ msgstr ""
1138
+ "Contenido del mensaje de confirmación para suscripciones nuevas. Etiquetas "
1139
+ "permitidas: [post_permalink], [confirm_link], [post_title] y [manager_link]."
1140
+
1141
+ #: options/panel4.php:177
1142
+ msgid ""
1143
+ "Subject of the mail sent to those who request to access their management "
1144
+ "page. Allowed tag: [blog_name]"
1145
+ msgstr ""
1146
+ "Asunto del mensaje para quienes solicitan acceso a su página de "
1147
+ "administración. Etiquetas permitidas: [blog_name]."
1148
+
1149
+ #: options/panel4.php:189
1150
+ msgid ""
1151
+ "Content of the management email. Allowed tags: [blog_name], [manager_link]"
1152
+ msgstr ""
1153
+ "Contenido del mensaje para quienes solicitan acceso a su página de "
1154
+ "administración. Etiquetas permitidas: [blog_name] y [manager_link]."
1155
+
1156
+ #: options/panel4.php:195
1157
+ #, fuzzy
1158
+ msgid "One Click Unsubscribe"
1159
+ msgstr "Permitir al administrador suscribirse"
1160
+
1161
+ #: options/panel4.php:201
1162
+ #, fuzzy
1163
+ msgid "Content of the One Click confirmation. Allowed tags: [post_title]"
1164
+ msgstr ""
1165
+ "Contenido del mensaje para quienes solicitan acceso a su página de "
1166
+ "administración. Etiquetas permitidas: [blog_name] y [manager_link]."
1167
+
1168
+ #: options/panel2.php:12 options/panel2.php:63
1169
+ msgid "Enable default checkbox"
1170
+ msgstr "Activar casilla por defecto"
1171
+
1172
+ #: options/panel2.php:15 options/panel2.php:73
1173
+ msgid "Checked by default"
1174
+ msgstr "Marcada por defecto"
1175
+
1176
+ #: options/panel2.php:18
1177
+ msgid "Checked by default Value"
1178
+ msgstr "Casilla marcada"
1179
+
1180
+ #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
1181
+ msgid "Advanced subscription"
1182
+ msgstr "Suscripción avanzada"
1183
+
1184
+ #: options/panel2.php:27 options/panel2.php:130
1185
+ msgid "Custom inline style"
1186
+ msgstr "Estilo en línea personalizado"
1187
+
1188
+ #: options/panel2.php:30 options/panel2.php:139
1189
+ msgid "Custom HTML"
1190
+ msgstr "HTML personalizado"
1191
+
1192
+ #: options/panel2.php:34
1193
+ msgid "Checkbox label"
1194
+ msgstr "Casilla de verificación"
1195
+
1196
+ #: options/panel2.php:37 options/panel2.php:163
1197
+ msgid "Subscribed label"
1198
+ msgstr "Suscrito"
1199
+
1200
+ #: options/panel2.php:40
1201
+ msgid "Awaiting label"
1202
+ msgstr "Esperando"
1203
+
1204
+ #: options/panel2.php:43 options/panel2.php:180
1205
+ msgid "Author label"
1206
+ msgstr "Autor"
1207
+
1208
+ #: options/panel2.php:68
1209
+ msgid ""
1210
+ "Disable this option if you want to move the subscription checkbox to a "
1211
+ "different place on your page."
1212
+ msgstr ""
1213
+ "Desactivar esta opción si quieres mover la casilla de suscripción en un "
1214
+ "lugar diferente de tu página."
1215
+
1216
+ #: options/panel2.php:78
1217
+ msgid "Decide if the checkbox should be checked by default or not."
1218
+ msgstr "Establece si la casilla tiene que estar marcada por defecto o no."
1219
+
1220
+ #: options/panel2.php:87
1221
+ msgid "Default Checkbox Value"
1222
+ msgstr "Valor por defecto de la casilla"
1223
+
1224
+ #: options/panel2.php:91 options/panel2.php:120
1225
+ msgid "All new comments"
1226
+ msgstr "Todos los comentarios nuevos"
1227
+
1228
+ #: options/panel2.php:92 options/panel2.php:121
1229
+ msgid "Replies to this comment"
1230
+ msgstr "Respuestas a mis comentarios"
1231
+
1232
+ #: options/panel2.php:94
1233
+ msgid ""
1234
+ "Select the default option for the Checkbox. Be careful! Some users might "
1235
+ "like to be subscribed to all the post."
1236
+ msgstr ""
1237
+ "Selecciona la opción predeterminada para la casilla de verificación. ¡Sé "
1238
+ "cuidadoso! Algunos usuarios pueden preferir estar suscritos a todo el post."
1239
+
1240
+ #: options/panel2.php:107
1241
+ msgid ""
1242
+ "Allow users to choose from different subscription types (all, replies only)."
1243
+ msgstr ""
1244
+ "Permitir a los usuarios escoger diferentes tipos de suscripción (todo, solo "
1245
+ "respuestas)."
1246
+
1247
+ #: options/panel2.php:115
1248
+ msgid "Advanced default"
1249
+ msgstr "Marcada por defecto"
1250
+
1251
+ #: options/panel2.php:119
1252
+ msgid "None"
1253
+ msgstr "Ninguno"
1254
+
1255
+ #: options/panel2.php:124
1256
+ msgid ""
1257
+ "The default subscription type that should be selected when Advanced "
1258
+ "subscriptions are enable."
1259
+ msgstr ""
1260
+ "El tipo de suscripción por defecto que debe ser seleccionado cuando se "
1261
+ "activa Suscripción avanzada."
1262
+
1263
+ #: options/panel2.php:135
1264
+ msgid "Custom inline CSS to add to the checkbox."
1265
+ msgstr "CSS en línea personalizado para la casilla de verificación."
1266
+
1267
+ #: options/panel2.php:143
1268
+ msgid ""
1269
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
1270
+ "[checkbox_field], [checkbox_label]"
1271
+ msgstr ""
1272
+ "Código HTML personalizado para ser utilizado cuando se muestra la casilla de "
1273
+ "verificación. Etiquetas permitidas: [checkbox_field] y [checkbox_label]"
1274
+
1275
+ #: options/panel2.php:149
1276
+ msgid "Messages for your visitors"
1277
+ msgstr "Mensajes de tus visitantes"
1278
+
1279
+ #: options/panel2.php:153
1280
+ msgid "Default label"
1281
+ msgstr "Etiqueta por defecto"
1282
+
1283
+ #: options/panel2.php:158
1284
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
1285
+ msgstr ""
1286
+ "Texto asociado a la casilla para suscribirse. Etiquetas permitidas: "
1287
+ "[subscribe_link]."
1288
+
1289
+ #: options/panel2.php:167
1290
+ msgid ""
1291
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
1292
+ "[manager_link]"
1293
+ msgstr ""
1294
+ "Texto que se muestra cuando alguien se suscribe a una entrada. Etiquetas "
1295
+ "permitidas: [manager_link]."
1296
+
1297
+ #: options/panel2.php:172
1298
+ msgid "Pending label"
1299
+ msgstr "Etiqueta pendiente"
1300
+
1301
+ #: options/panel2.php:176
1302
+ msgid ""
1303
+ "Label shown to those who are already subscribed, but haven't clicked on the "
1304
+ "confirmation link yet. Allowed tag: [manager_link]"
1305
+ msgstr ""
1306
+ "Texto que se muestra cuando alguien ya está suscrito a una entrada, pero es "
1307
+ "pero no ha confirmado su suscripción aún. Etiquetas permitidas: "
1308
+ "[manager_link]."
1309
+
1310
+ #: options/panel2.php:184
1311
+ msgid ""
1312
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
1313
+ msgstr ""
1314
+ "Texto que se muestra a los autores (y administradores) para gestionar las "
1315
+ "suscripciones. Etiquetas permitidas: [manager_link]."
1316
+
1317
+ #: options/panel7.php:18
1318
+ msgid "Did you find a Bug on the plugin?"
1319
+ msgstr "Encontraste un Error en el plugin?"
1320
+
1321
+ #: options/panel7.php:19
1322
+ msgid ""
1323
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1324
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1325
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1326
+ "WordPress Support page."
1327
+ msgstr ""
1328
+ "Por favor, reporta cualquier error en la página de <a href=\"https://github."
1329
+ "com/stcr/subscribe-to-comments-reloaded/issues/new?title=Bug%20Report:"
1330
+ "%20%3Cshort%20description%3E&labels=bug\" target=\"_blank\">GitHub</a> en "
1331
+ "lugar de hacerlo en la página de soporte de WordPress."
1332
+
1333
+ #: options/panel1.php:19
1334
+ msgid "Mass Update Subscriptions"
1335
+ msgstr "Actualizar Suscripciones en Masa"
1336
+
1337
+ #: options/panel1.php:61
1338
+ msgid "Post ID"
1339
+ msgstr "ID de entrada"
1340
+
1341
+ #: options/panel1.php:76
1342
+ msgid "Add"
1343
+ msgstr "Añadir"
1344
+
1345
+ #: options/panel1.php:91
1346
+ msgid "Search subscriptions"
1347
+ msgstr "Buscar suscripciones"
1348
+
1349
+ #: options/panel1.php:95
1350
+ #, php-format
1351
+ msgid ""
1352
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1353
+ "where the"
1354
+ msgstr ""
1355
+ "Puedes bien <a href=\"%s\">ver todas las suscripciones</a> o bien encontrar "
1356
+ "aquellas en las que el/la"
1357
+
1358
+ #: options/panel1.php:99
1359
+ msgid "email"
1360
+ msgstr "email"
1361
+
1362
+ #: options/panel1.php:100
1363
+ msgid "post ID"
1364
+ msgstr "ID de Entrada"
1365
+
1366
+ #: options/panel1.php:101
1367
+ msgid "status"
1368
+ msgstr "estado"
1369
+
1370
+ #: options/panel1.php:104
1371
+ msgid "equals"
1372
+ msgstr "es igual a"
1373
+
1374
+ #: options/panel1.php:105
1375
+ msgid "contains"
1376
+ msgstr "contiene"
1377
+
1378
+ #: options/panel1.php:106
1379
+ msgid "does not contain"
1380
+ msgstr "no contiene"
1381
+
1382
+ #: options/panel1.php:107
1383
+ msgid "starts with"
1384
+ msgstr "comienza con"
1385
+
1386
+ #: options/panel1.php:108
1387
+ msgid "ends with"
1388
+ msgstr "termina con"
1389
+
1390
+ #: options/panel1.php:111
1391
+ msgid "results per page:"
1392
+ msgstr "resultados por página:"
1393
+
1394
+ #: options/panel1.php:113
1395
+ msgid "Search"
1396
+ msgstr "Buscar"
1397
+
1398
+ #: options/panel1.php:121
1399
+ msgid "Reverse the order by Post ID"
1400
+ msgstr "Invertir el orden por ID de entrada"
1401
+
1402
+ #: options/panel1.php:122 options/panel1.php:123
1403
+ msgid "Reverse the order by Date/Time"
1404
+ msgstr "Invertir el orden por Fecha/Hora"
1405
+
1406
+ #: options/panel1.php:125
1407
+ msgid "Post (ID)"
1408
+ msgstr "ID de Entrada"
1409
+
1410
+ #: options/panel1.php:128
1411
+ msgid "Search query:"
1412
+ msgstr "Petición de búsqueda:"
1413
+
1414
+ #: options/panel1.php:128
1415
+ msgid "Rows:"
1416
+ msgstr "Filas:"
1417
+
1418
+ #: options/panel1.php:128
1419
+ msgid "of"
1420
+ msgstr "de"
1421
+
1422
+ #: options/panel1.php:138
1423
+ msgid "Date and Time"
1424
+ msgstr "Fecha y Hora"
1425
+
1426
+ #: options/panel1.php:150
1427
+ msgid "Subscription"
1428
+ msgstr "Suscripciones"
1429
+
1430
+ #: options/panel1.php:152
1431
+ msgid "Edit"
1432
+ msgstr "Editar"
1433
+
1434
+ #: options/panel1.php:162
1435
+ msgid "Delete forever"
1436
+ msgstr "Eliminar para siempre"
1437
+
1438
+ #: options/panel1.php:164
1439
+ msgid "Activate and set to Y"
1440
+ msgstr "Activar y establecer a Y"
1441
+
1442
+ #: options/panel1.php:165
1443
+ msgid "Activate and set to R"
1444
+ msgstr "Activar y establecer a R"
1445
+
1446
+ #: options/panel1.php:170
1447
+ msgid "Sorry, no subscriptions match your search criteria."
1448
+ msgstr "Lo siento, ninguna suscripción coincide con tu criterio de búsqueda."
1449
+
1450
+ #~ msgid "Subscribe to Comments Reloaded Important Notice"
1451
+ #~ msgstr "Aviso Importante de Subscribe to Comments Reloaded"
1452
+
1453
+ #~ msgid "Bold"
1454
+ #~ msgstr "Negrita"
1455
+
1456
+ #~ msgid "Italic"
1457
+ #~ msgstr "Cursiva"
1458
+
1459
+ #~ msgid "Link"
1460
+ #~ msgstr "Enlace"
1461
+
1462
+ #~ msgid "Image"
1463
+ #~ msgstr "Imagen"
1464
+
1465
+ #~ msgid "Sponsor's Corner"
1466
+ #~ msgstr "Esquina de patrocinadores"
1467
+
1468
+ #~ msgid ""
1469
+ #~ "If you want to sponsor this plugin, don't hesitate to <a href='http://"
1470
+ #~ "behstant.com/negocio/contact.php' target='_blank'>contact me</a>."
1471
+ #~ msgstr ""
1472
+ #~ "Si quieres patrocinar este plugin, no dudes en <a href='http://behstant."
1473
+ #~ "com/negocio/contact.php' target='_blank'>contactarme</a>."
1474
+
1475
+ #~ msgid "Set to Y"
1476
+ #~ msgstr "Establecer a Y"
1477
+
1478
+ #~ msgid "Daily digest"
1479
+ #~ msgstr "Resumen diario"
1480
+
1481
+ #~ msgid "Support the author"
1482
+ #~ msgstr "Apoya al autor"
1483
+
1484
+ #~ msgid "Replies"
1485
+ #~ msgstr "Respuestas"
1486
+
1487
+ #~ msgid "Digest"
1488
+ #~ msgstr "Resumen diario"
1489
+
1490
+ #~ msgid "Pending"
1491
+ #~ msgstr "Pendiente"
1492
+
1493
+ #~ msgid "Notify authors"
1494
+ #~ msgstr "Notificar a los autores"
1495
+
1496
+ #~ msgid "Notify the administrator when a new comment is posted."
1497
+ #~ msgstr "Notificar al administrador cuando se publica un comentario nuevo."
1498
+
1499
+ #~ msgid "Management Page ID"
1500
+ #~ msgstr "ID de la Página de Administración"
1501
+
1502
+ #~ msgid "Management page"
1503
+ #~ msgstr "Página de Administración"
1504
+
1505
+ #~ msgid "Awaiting confirmation"
1506
+ #~ msgstr "Esperando confirmación"
1507
+
1508
+ #~ msgid "Stats"
1509
+ #~ msgstr "Estadísticas"
1510
+
1511
+ #~ msgid "Other Messages"
1512
+ #~ msgstr "Otros mensajes"
1513
+
1514
+ #~ msgid "The status has been successfully updated. Rows affected:"
1515
+ #~ msgstr "El estado se ha actualizado correctamente. Registros afectados:"
1516
+
1517
+ #~ msgid ""
1518
+ #~ "Update the email address associated to a specific subscription (by post "
1519
+ #~ "ID)."
1520
+ #~ msgstr ""
1521
+ #~ "Actualizar el correo electrónico asociado a una suscripción específica "
1522
+ #~ "(por la ID de la entrada)."
1523
+
1524
+ #~ msgid "PID"
1525
+ #~ msgstr "PID"
1526
+
1527
+ #~ msgid "Change status"
1528
+ #~ msgstr "Cambiar estado"
1529
+
1530
+ #~ msgid ""
1531
+ #~ "Change the status of an email address or permanently delete all its "
1532
+ #~ "subscriptions."
1533
+ #~ msgstr ""
1534
+ #~ "Cambiar el estado de una dirección de correo electrónico o eliminar "
1535
+ #~ "permanentemente todas sus suscripciones."
1536
+
1537
+ #~ msgid "Resume"
1538
+ #~ msgstr "Reanudar"
1539
+
1540
+ #~ msgid "Update email address"
1541
+ #~ msgstr "Actualizar dirección de correo electrónico"
1542
+
1543
+ #~ msgid ""
1544
+ #~ "You can \"mass update\" all the occurrences of a given email address "
1545
+ #~ "(exact matches only)."
1546
+ #~ msgstr ""
1547
+ #~ "Puedes actualizar masivamente todas las ocurrencias de una dirección de "
1548
+ #~ "correo electrónico determinada (sólo coincidencias exactas)."
1549
+
1550
+ #~ msgid "Search email address"
1551
+ #~ msgstr "Buscar dirección de correo electrónico"
1552
+
1553
+ #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1554
+ #~ msgstr "Leyenda: Y: suscrito, N: suspendido, C: esperando confirmación"
1555
+
1556
+ #~ msgid "Custom CSS Class"
1557
+ #~ msgstr "Clase CSS personalizada"
1558
+
1559
+ #~ msgid ""
1560
+ #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1561
+ #~ "its style."
1562
+ #~ msgstr ""
1563
+ #~ "Clase CSS personalizada para asociar a la casilla, si deseas personalizar "
1564
+ #~ "su estilo."
1565
+
1566
+ #~ msgid "StCR table has been successfully optimized."
1567
+ #~ msgstr "La tabla StCR ha sido optimizada correctamente."
1568
+
1569
+ #~ msgid "Database"
1570
+ #~ msgstr "Base de datos"
1571
+
1572
+ #~ msgid "Engine"
1573
+ #~ msgstr "Motor"
1574
+
1575
+ #~ msgid "Records"
1576
+ #~ msgstr "Registros"
1577
+
1578
+ #~ msgid "Average Record Length"
1579
+ #~ msgstr "Duración media del registro"
1580
+
1581
+ #~ msgid "Created on"
1582
+ #~ msgstr "Creado el"
1583
+
1584
+ #~ msgid "Approximate Overhead"
1585
+ #~ msgstr "Aproximado al alza"
1586
+
1587
+ #~ msgid "optimize"
1588
+ #~ msgstr "optimizar"
1589
+
1590
+ #~ msgid "Subscriptions have been successfully updated."
1591
+ #~ msgstr "Las suscripciones se han actualizado correctamente."
1592
+
1593
+ #~ msgid "Sorry, no subscriptions found."
1594
+ #~ msgstr "Disculpa, no se encontraron suscripciones."
1595
+
1596
+ #~ msgid "All the subscriptions have been successfully updated."
1597
+ #~ msgstr "Todas las suscripciones se han actualizado correctamente."
1598
+
1599
+ #~ msgid "Pageviews by day - Click on a day for hourly metrics"
1600
+ #~ msgstr ""
1601
+ #~ "Páginas vistas por día - Pulsa en un día para ver estadísticas por horas"
1602
+
1603
+ #~ msgid "Pageviews by hour"
1604
+ #~ msgstr "Páginas vistas por hora"
1605
+
1606
+ #~ msgid "No data to display"
1607
+ #~ msgstr "No hay datos para mostrar"
langs/subscribe-reloaded-fa_IR.mo ADDED
Binary file
langs/subscribe-reloaded-fa_IR.po ADDED
@@ -0,0 +1,1414 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-11 02:01-0600\n"
6
+ "PO-Revision-Date: \n"
7
+ "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: fa\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: wp_subscribe_reloaded.php:124
20
+ msgid "Settings"
21
+ msgstr ""
22
+
23
+ #: wp_subscribe_reloaded.php:1030
24
+ msgid "Don't subscribe"
25
+ msgstr "مشترک نشدن "
26
+
27
+ #: wp_subscribe_reloaded.php:1031
28
+ msgid "All"
29
+ msgstr "دریافت همه دیدگاه های این نوشته"
30
+
31
+ #: wp_subscribe_reloaded.php:1032 templates/user.php:73
32
+ #: templates/author.php:75
33
+ msgid "Replies to my comments"
34
+ msgstr "فقط دریافت پاسخ دیدگاه های خودم "
35
+
36
+ #: utils/stcr_manage.php:218
37
+ msgid ""
38
+ "Notify me of followup comments via e-mail. You can also <a "
39
+ "href='[subscribe_link]'>subscribe</a> without commenting."
40
+ msgstr ""
41
+ "مرا با ایمیل از دیدگاه های آتی این نوشته مطلع کن. همچنین می توانید بدون "
42
+ "ارسال دیدگاه <a href='[subscribe_link]'>مشترک شوید.</a>"
43
+
44
+ #: utils/stcr_manage.php:219
45
+ msgid ""
46
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
47
+ "subscriptions."
48
+ msgstr ""
49
+ "شما در این نوشته مشترک شده اید. <a href='[manager_link]'> تغییر اشتراک </a>"
50
+
51
+ #: utils/stcr_manage.php:220
52
+ msgid ""
53
+ "Your subscription to this post needs to be confirmed. <a "
54
+ "href='[manager_link]'>Manage your subscriptions</a>."
55
+ msgstr ""
56
+ "اشتراک شما در این پست منتظر تایید است. <a href='[manager_link]'> تغییر "
57
+ "اشتراک </a>"
58
+
59
+ #: utils/stcr_manage.php:221
60
+ msgid ""
61
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
62
+ msgstr ""
63
+ "با کلیک روی <a href='[manager_link]'> این لینک </a> می توانید اشتراک خود در "
64
+ "پست جاری را تغییر دهید."
65
+
66
+ #: utils/stcr_manage.php:225 options/index.php:57
67
+ msgid "Manage subscriptions"
68
+ msgstr "مدیریت اشتراک ها"
69
+
70
+ #: utils/stcr_manage.php:227
71
+ msgid ""
72
+ "To manage your subscriptions, please enter your email address here below. We "
73
+ "will send you a message containing the link to access your personal "
74
+ "management page."
75
+ msgstr ""
76
+ "جهت مدیریت اشتراک هایتان لطفاً نشانی رایان‌نامه ی خود را در زیر وارد کنید. سپس "
77
+ "یک ایمیل برایتان می فرستیم که حاوی لینک دسترسی به صفحه ی شخصی مدیریت شما است."
78
+
79
+ #: utils/stcr_manage.php:228
80
+ msgid ""
81
+ "Thank you for using our subscription service. Your request has been "
82
+ "completed, and you should receive an email with the management link in a few "
83
+ "minutes."
84
+ msgstr ""
85
+ "ممنون که سرویس اشتراک ما را مورد استفاده قرار دادید. درخواست شما تکمیل شد و "
86
+ "طی حداکثر چند دقیقه یک ایمیل حاوی پیوند صفحه ی مدیریت اشتراک ها دریافت می "
87
+ "کنید."
88
+
89
+ #: utils/stcr_manage.php:229
90
+ msgid ""
91
+ "You can follow the discussion on <strong>[post_title]</strong> without "
92
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
93
+ "form here below and you're all set."
94
+ msgstr ""
95
+ "می تونی بحث درباره <strong>[post_title]</strong> را بدون گذاشتن هیچ دیدگاهی "
96
+ "دنبال کنی. خوشت اومد، هان؟! فقط آدرس ایمیلتو در کادر زیر بنویس و تمام! "
97
+
98
+ #: utils/stcr_manage.php:230
99
+ msgid ""
100
+ "Thank you for using our subscription service. Your request has been "
101
+ "completed. You will receive a notification email every time a new comment to "
102
+ "this article is approved and posted by the administrator."
103
+ msgstr ""
104
+ "ممنون که از سرویس اشتراک ما استفاده کردید. درخواست شما تکمیل شد. هر گاه "
105
+ "دیدگاهی راجع به این مقاله توسط سرپرست تایید یا منتشر شود با ایمیل از آن مطلع "
106
+ "می گردید."
107
+
108
+ #: utils/stcr_manage.php:231
109
+ msgid ""
110
+ "Thank you for using our subscription service. In order to confirm your "
111
+ "request, please check your email for the verification message and follow the "
112
+ "instructions."
113
+ msgstr ""
114
+ "ممنون که از سرویس اشتراک ما استفاده کردید. برای تایید درخواست خود لطفاً صندوق "
115
+ "اینباکس یا اسپم ایمیلتان را ببینید و دستورالعمل پیام تاییدیه را دنبال نمایید."
116
+
117
+ #: utils/stcr_manage.php:232
118
+ msgid ""
119
+ "In order to cancel or suspend one or more notifications, select the "
120
+ "corresponding checkbox(es) and click on the button at the end of the list."
121
+ msgstr ""
122
+ "برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
123
+ "کنید و دکمه ی پایین صفحه را کلیک نمایید."
124
+
125
+ #: utils/stcr_manage.php:233
126
+ msgid ""
127
+ "In order to cancel or suspend one or more notifications, select the "
128
+ "corresponding checkbox(es) and click on the button at the end of the list. "
129
+ "You are currently subscribed to:"
130
+ msgstr ""
131
+ "برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
132
+ "کنید و دکمه ی پایین صفحه را کلیک نمایید. شما هم اکنون در اینجاها مشترک هستید:"
133
+
134
+ #: utils/stcr_manage.php:237
135
+ msgid "There is a new comment to [post_title]"
136
+ msgstr "دیدگاه تازه در نوشته [post_title]"
137
+
138
+ #: utils/stcr_manage.php:238
139
+ msgid ""
140
+ "There is a new comment to [post_title].\n"
141
+ "Comment Link: [comment_permalink]\n"
142
+ "Author: [comment_author]\n"
143
+ "Comment:\n"
144
+ "[comment_content]\n"
145
+ "Permalink: [post_permalink]\n"
146
+ "Manage your subscriptions: [manager_link]"
147
+ msgstr ""
148
+ "comment_author]:\n"
149
+ "[comment_content]\n"
150
+ "\n"
151
+ "پیوند به این دیدگاه: \n"
152
+ "[comment_permalink]\n"
153
+ "پیوند به این نوشته:\n"
154
+ "[post_permalink]\n"
155
+ "مدیریت اشتراک های شما: \n"
156
+ "[manager_link]"
157
+
158
+ #: utils/stcr_manage.php:239
159
+ msgid "Please confirm your subscription to [post_title]"
160
+ msgstr "لطفاً اشتراک خود در این نوشته را تایید کنید: [post_title]"
161
+
162
+ #: utils/stcr_manage.php:240
163
+ msgid ""
164
+ "You have requested to be notified every time a new comment is added to:\n"
165
+ "[post_permalink]\n"
166
+ "\n"
167
+ "Please confirm your request by clicking on this link:\n"
168
+ "[confirm_link]"
169
+ msgstr ""
170
+ "شما درخواست کرده اید که هرگاه دیدگاه جدیدی در این موضوع اضافه شود به طور "
171
+ "خودکار آگاه گردید:\n"
172
+ "[post_permalink]\n"
173
+ "\n"
174
+ "لطفاً با کلیک روی لینک زیر، درخواست خود را تایید کنید:\n"
175
+ "[confirm_link]"
176
+
177
+ #: utils/stcr_manage.php:241
178
+ msgid "Manage your subscriptions on [blog_name]"
179
+ msgstr "اشتراک های خود را در [blog_name] مدیریت کنید."
180
+
181
+ #: utils/stcr_manage.php:242
182
+ msgid ""
183
+ "You have requested to manage your subscriptions to the articles on "
184
+ "[blog_name]. Follow this link to access your personal page:\n"
185
+ "[manager_link]"
186
+ msgstr ""
187
+ "شما درخواست مدیریت اشتراک های خود را در مقالات [blog_name] کرده اید. روی "
188
+ "لینک زیر کلیک نمایید تا به صفحه ی شخصی خود بروید:\n"
189
+ "[manager_link]"
190
+
191
+ #: utils/stcr_manage.php:387
192
+ #, fuzzy
193
+ msgid "Subscriptions"
194
+ msgstr "اشتراک‌ها"
195
+
196
+ #: utils/stcr_manage.php:416 options/panel5.php:87 options/panel5.php:96
197
+ #: options/panel5.php:105 options/panel5.php:115 options/panel5.php:124
198
+ #: options/panel5.php:134 options/panel5.php:143 options/panel5.php:152
199
+ #: options/panel5.php:161 options/panel2.php:67 options/panel2.php:77
200
+ #: options/panel2.php:106
201
+ msgid "No"
202
+ msgstr "نه"
203
+
204
+ #: utils/stcr_manage.php:443
205
+ msgid ""
206
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
207
+ msgstr ""
208
+ "آیا برای استفاده از افزونه ی «اشتراک در دیدگاه‌ها نسخه ی جدید» نیاز به کمک "
209
+ "دارید؟ سایت رسمی را ببینید."
210
+
211
+ #: utils/stcr_manage.php:443
212
+ msgid "support forum"
213
+ msgstr "تالار گفتگوی پشتیبانی"
214
+
215
+ #: utils/stcr_manage.php:444
216
+ msgid "Feeling generous?"
217
+ msgstr "احساس دست و دلبازی می کنید؟"
218
+
219
+ #: utils/stcr_manage.php:444
220
+ msgid "Donate a few bucks!"
221
+ msgstr "چند دلار اهدا نمایید!"
222
+
223
+ #: utils/stcr_upgrade.php:53
224
+ msgid "Important Notice"
225
+ msgstr ""
226
+
227
+ #: utils/stcr_upgrade.php:96
228
+ msgid ""
229
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
230
+ "database has been sanitized to prevent the raw html messages. <a class="
231
+ "\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-animation\" "
232
+ "src=\""
233
+ msgstr ""
234
+
235
+ #: utils/stcr_upgrade.php:151
236
+ msgid ""
237
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
238
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
239
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
240
+ msgstr ""
241
+
242
+ #: utils/stcr_upgrade.php:151
243
+ msgid ""
244
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
245
+ "Comments to prevent confusion between the two plugins."
246
+ msgstr ""
247
+
248
+ #: utils/stcr_upgrade.php:152
249
+ msgid ""
250
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
251
+ "that you want to import, you'll need to import that data manually, as only "
252
+ "one import routine will ever run to prevent data loss."
253
+ msgstr ""
254
+
255
+ #: utils/stcr_upgrade.php:153 utils/stcr_upgrade.php:225
256
+ #: utils/stcr_upgrade.php:374
257
+ msgid ""
258
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
259
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
260
+ "your configuration.<a class=\"dismiss\" href=\"#\">Got it. </a><img class="
261
+ "\"stcr-loading-animation\" src=\""
262
+ msgstr ""
263
+
264
+ #: utils/stcr_upgrade.php:224
265
+ msgid ""
266
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
267
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
268
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
269
+ msgstr ""
270
+
271
+ #: utils/stcr_upgrade.php:224
272
+ msgid ""
273
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
274
+ "Notification to prevent confusion between the two plugins."
275
+ msgstr ""
276
+
277
+ #: utils/stcr_upgrade.php:371
278
+ msgid ""
279
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
280
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
281
+ "were detected and automatically imported into <strong>Subscribe to Comments "
282
+ "Reloaded</strong>."
283
+ msgstr ""
284
+
285
+ #: utils/stcr_upgrade.php:371
286
+ msgid ""
287
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
288
+ "Subscriptions to prevent confusion between the two plugins."
289
+ msgstr ""
290
+
291
+ #: utils/stcr_upgrade.php:372
292
+ msgid ""
293
+ "If you have subscription data from another plugin (such as Subscribe to "
294
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
295
+ "you'll need to import that data manually, as only one import routine will "
296
+ "ever run to prevent data loss."
297
+ msgstr ""
298
+
299
+ #: utils/stcr_upgrade.php:373
300
+ msgid ""
301
+ "<strong>Note:</strong> If you were previously using the "
302
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
303
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
304
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
305
+ "respectively."
306
+ msgstr ""
307
+
308
+ #: utils/stcr_upgrade.php:387
309
+ msgid ""
310
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
311
+ msgstr ""
312
+
313
+ #: utils/stcr_upgrade.php:388
314
+ msgid ""
315
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
316
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
317
+ msgstr ""
318
+
319
+ #: utils/stcr_upgrade.php:389
320
+ msgid ""
321
+ "If you want to donate you can do it via <a href=\"\n"
322
+ "https://www.paypal.com/cgi-bin/webscr?"
323
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
324
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
325
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
326
+ msgstr ""
327
+
328
+ #: utils/stcr_upgrade.php:391
329
+ msgid ""
330
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
331
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
332
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Got it. </"
333
+ "a><img class=\"stcr-loading-animation\" src=\""
334
+ msgstr ""
335
+
336
+ #: utils/stcr_upgrade.php:403
337
+ msgid ""
338
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
339
+ "160106."
340
+ msgstr ""
341
+
342
+ #: utils/stcr_upgrade.php:404
343
+ msgid ""
344
+ "This version includes many changes and fixes to improve your experience with "
345
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
346
+ "email templates, Subscription Checkbox position, and more!"
347
+ msgstr ""
348
+
349
+ #: utils/stcr_upgrade.php:405
350
+ msgid ""
351
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
352
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
353
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
354
+ "class=\"stcr-loading-animation\" src=\""
355
+ msgstr ""
356
+
357
+ #: utils/stcr_upgrade.php:419
358
+ msgid "Announcement: Introducing Comment Mail"
359
+ msgstr ""
360
+
361
+ #: utils/stcr_upgrade.php:420
362
+ msgid ""
363
+ "<strong><a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
364
+ "\">Comment Mail</strong></a> is a new free plugin based on the original "
365
+ "<strong>Subscribe to Comments Reloaded</strong> and includes all of the core "
366
+ "StCR features."
367
+ msgstr ""
368
+
369
+ #: utils/stcr_upgrade.php:421
370
+ msgid ""
371
+ "A powerful StCR importer lets you import your StCR settings and "
372
+ "subscriptions into Comment Mail, allowing for a seamless transition."
373
+ msgstr ""
374
+
375
+ #: utils/stcr_upgrade.php:422
376
+ msgid ""
377
+ "Need more powerful features to manage your subscriptions but can't wait for "
378
+ "StCR? <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
379
+ "\">Take a look at Comment Mail!</a>"
380
+ msgstr ""
381
+
382
+ #: utils/stcr_upgrade.php:423
383
+ msgid ""
384
+ "<em>Note: Subscribe to Comments Reloaded remains in active development.</"
385
+ "em><a class=\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-"
386
+ "animation\" src=\""
387
+ msgstr ""
388
+
389
+ #: templates/user.php:23 templates/author.php:23
390
+ #: options/panel1-business-logic.php:70
391
+ msgid "Subscriptions deleted:"
392
+ msgstr "این اشتراک ها حذف شدند: "
393
+
394
+ #: templates/user.php:27 templates/author.php:27
395
+ #: options/panel1-business-logic.php:74
396
+ msgid "Subscriptions suspended:"
397
+ msgstr "این اشتراک ها معلق گشتند: "
398
+
399
+ #: templates/user.php:31 templates/author.php:31
400
+ #: options/panel1-business-logic.php:78
401
+ msgid "Subscriptions activated:"
402
+ msgstr "این اشتراک ها فعال شده اند: "
403
+
404
+ #: templates/user.php:35 templates/user.php:39 templates/author.php:35
405
+ #: templates/author.php:39 options/panel1-business-logic.php:82
406
+ #: options/panel1-business-logic.php:86
407
+ msgid "Subscriptions updated:"
408
+ msgstr "این اشتراک ها به روزرسانی شدند: "
409
+
410
+ #: templates/user.php:52 templates/author.php:52
411
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:22
412
+ #: options/panel1.php:117 options/panel1.php:153
413
+ msgid ""
414
+ "Please remember: this operation cannot be undone. Are you sure you want to "
415
+ "proceed?"
416
+ msgstr ""
417
+ "به خاطر داشته باشید این عملیات غیرقابل برگشت است. آیا مطمئنید می خواهید "
418
+ "انجام شود؟"
419
+
420
+ #: templates/user.php:57 templates/request-management-link.php:73
421
+ #: templates/subscribe.php:89 options/panel1-add-subscription.php:16
422
+ #: options/panel1.php:65 options/panel1.php:126
423
+ msgid "Email"
424
+ msgstr "ایمیل"
425
+
426
+ #: templates/user.php:58 templates/author.php:58 options/panel1.php:129
427
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
428
+ msgstr "راهنما: Y= همه ی دیدگاه ها، R=فقط پاسخ ها، C= غیرفعال "
429
+
430
+ #: templates/user.php:63
431
+ msgid "F j, Y"
432
+ msgstr ""
433
+
434
+ #: templates/user.php:67 templates/author.php:69
435
+ msgid "Select all"
436
+ msgstr "انتخاب همه"
437
+
438
+ #: templates/user.php:68 templates/author.php:70
439
+ msgid "Invert selection"
440
+ msgstr "معکوس کردن انتخاب"
441
+
442
+ #: templates/user.php:69 templates/author.php:71 options/panel1.php:161
443
+ msgid "Action:"
444
+ msgstr "اقدام"
445
+
446
+ #: templates/user.php:70 templates/author.php:72 options/panel1.php:153
447
+ msgid "Delete"
448
+ msgstr "پاک کردن"
449
+
450
+ #: templates/user.php:71 templates/author.php:73 options/panel1.php:163
451
+ msgid "Suspend"
452
+ msgstr "تعلیق"
453
+
454
+ #: templates/user.php:72 templates/author.php:74
455
+ msgid "All comments"
456
+ msgstr ""
457
+
458
+ #: templates/user.php:74 templates/author.php:76 options/panel1.php:166
459
+ msgid "Activate"
460
+ msgstr "فعال کن"
461
+
462
+ #: templates/user.php:76 templates/author.php:77 options/panel1.php:167
463
+ msgid "Update subscriptions"
464
+ msgstr "به روزرسانی اشتراک ها"
465
+
466
+ #: templates/user.php:79 templates/author.php:80
467
+ #: templates/one-click-unsubscribe.php:28
468
+ msgid "No subscriptions match your search criteria."
469
+ msgstr "هیچ اشتراکی با معیار جستجوی شما انطباق ندارد."
470
+
471
+ #: templates/request-management-link.php:75 templates/subscribe.php:91
472
+ msgid "Send"
473
+ msgstr "ارسال"
474
+
475
+ #: templates/author.php:57
476
+ msgid "Title"
477
+ msgstr "عنوان"
478
+
479
+ #: templates/subscribe.php:43 templates/subscribe.php:44
480
+ msgid "New subscription to"
481
+ msgstr "اشتراک جدید در"
482
+
483
+ #: templates/subscribe.php:44
484
+ msgid "User:"
485
+ msgstr "کاربر:"
486
+
487
+ #: options/panel6.php:8 options/panel7.php:8
488
+ #, fuzzy
489
+ msgid "Support the developers"
490
+ msgstr "پشتیبانی از نویسنده"
491
+
492
+ #: options/panel6.php:18
493
+ msgid ""
494
+ "How valuable is the feature offered by this plugin to your visitors? please "
495
+ "consider supporting the author if this plugin made your web site better, "
496
+ "especially if you are making money out of it. Any donation received will be "
497
+ "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
498
+ "strong>, and to buy some food for my hungry family."
499
+ msgstr ""
500
+
501
+ #: options/panel6.php:20
502
+ msgid "Don't want to donate? You can still help"
503
+ msgstr "تمایل به اهدا ندارید؟ هنوز هم می توانید کمک کنید"
504
+
505
+ #: options/panel6.php:21
506
+ msgid ""
507
+ "If you don't want to donate money, please consider blogging about my plugin "
508
+ "with a link to the plugin's page. Please let your readers know what makes "
509
+ "your blog better. You can also contribute donating your time: do not "
510
+ "hesitate to send me bug reports, your localization files, ideas on how to "
511
+ "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
512
+ "you do, thanks for using my plugin!"
513
+ msgstr ""
514
+
515
+ #: options/panel6.php:23
516
+ msgid "Subscribe to the Beta testers"
517
+ msgstr ""
518
+
519
+ #: options/panel6.php:24
520
+ msgid ""
521
+ "Before a new Update we release a Beta version so that our current users can "
522
+ "give us feedback if they find a bug, If you want to join the tester list you "
523
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
524
+ "a>"
525
+ msgstr ""
526
+
527
+ #: options/panel6.php:26
528
+ msgid "Vote and show your appreciation"
529
+ msgstr "با رای دادن قدردانی کنید"
530
+
531
+ #: options/panel6.php:27
532
+ msgid ""
533
+ "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
534
+ "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
535
+ "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
536
+ msgstr ""
537
+
538
+ #: options/panel1-business-logic.php:23
539
+ msgid "Subscription added."
540
+ msgstr "اشتراک افزوده شد. "
541
+
542
+ #: options/panel1-business-logic.php:39
543
+ msgid "Subscriptions updated."
544
+ msgstr "اشتراک ها به روزرسانی شد."
545
+
546
+ #: options/panel1-business-logic.php:51
547
+ msgid "Subscription deleted."
548
+ msgstr "اشتراک حذف شد. "
549
+
550
+ #: options/panel1-business-logic.php:110
551
+ msgid "&laquo; Previous"
552
+ msgstr "&laquo; قبلی"
553
+
554
+ #: options/panel1-business-logic.php:114
555
+ msgid "Next &raquo;"
556
+ msgstr "بعدی &raquo;"
557
+
558
+ #: options/panel5.php:18 options/panel5.php:60 options/panel3.php:73
559
+ #: options/panel4.php:70 options/panel2.php:49
560
+ msgid "Your settings have been successfully updated."
561
+ msgstr "تنظیمات شما با موفقیت به روز شد."
562
+
563
+ #: options/panel5.php:20 options/panel5.php:62 options/panel3.php:75
564
+ #: options/panel4.php:72 options/panel2.php:51
565
+ msgid "There was an error updating the following fields:"
566
+ msgstr "یک خطا در به روزرسانی فیلدهای زیر رخ داد:"
567
+
568
+ #: options/panel5.php:28 options/panel5.php:75
569
+ msgid "Autopurge requests"
570
+ msgstr ""
571
+ "زوال خودکار درخواست های اشتراک که طی مدت معین مورد تایید کاربر قرار نگرفته"
572
+
573
+ #: options/panel5.php:31 options/panel5.php:84
574
+ msgid "Enable double check"
575
+ msgstr "حالت بررسی مضاعف را فعال کن"
576
+
577
+ #: options/panel5.php:34 options/panel5.php:92
578
+ #, fuzzy
579
+ msgid "Subscribe authors"
580
+ msgstr "مشترک شده"
581
+
582
+ #: options/panel5.php:37 options/panel5.php:102
583
+ msgid "Enable HTML emails"
584
+ msgstr "فعال کردن ایمیل های HTML"
585
+
586
+ #: options/panel5.php:40
587
+ msgid "HTMLify Links in HTML emails"
588
+ msgstr ""
589
+
590
+ #: options/panel5.php:43
591
+ msgid "Send trackbacks"
592
+ msgstr ""
593
+
594
+ #: options/panel5.php:46
595
+ msgid "Notify admin"
596
+ msgstr "سرپرست را مطلع کن"
597
+
598
+ #: options/panel5.php:49 options/panel5.php:140
599
+ msgid "Let admin subscribe"
600
+ msgstr "به سرپرست اجازه ی مشترک شدن بده"
601
+
602
+ #: options/panel5.php:52 options/panel5.php:149
603
+ #, fuzzy
604
+ msgid "BCC admin on Notifications"
605
+ msgstr "یادآور‌ها"
606
+
607
+ #: options/panel5.php:55
608
+ #, fuzzy
609
+ msgid "StCR Subscription Box Position"
610
+ msgstr "اشتراک جدید در"
611
+
612
+ #: options/panel5.php:78
613
+ msgid "days"
614
+ msgstr "روز"
615
+
616
+ #: options/panel5.php:79
617
+ msgid ""
618
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
619
+ "this feature."
620
+ msgstr ""
621
+ "اشتراک هایی که بیش از این تعداد روز منتظر تایید مانده و پاسخی نگرفته اند را "
622
+ "حذف کن. عدد 0 به معنای عدم استفاده از این قابلیت است."
623
+
624
+ #: options/panel5.php:86 options/panel5.php:95 options/panel5.php:104
625
+ #: options/panel5.php:114 options/panel5.php:123 options/panel5.php:133
626
+ #: options/panel5.php:142 options/panel5.php:151 options/panel5.php:160
627
+ #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
628
+ msgid "Yes"
629
+ msgstr "بله"
630
+
631
+ #: options/panel5.php:88
632
+ msgid ""
633
+ "Send a notification email to confirm the subscription (to avoid addresses "
634
+ "misuse)."
635
+ msgstr ""
636
+
637
+ #: options/panel5.php:97
638
+ msgid ""
639
+ "Automatically subscribe authors to their own articles (not retroactive)."
640
+ msgstr ""
641
+
642
+ #: options/panel5.php:106
643
+ msgid ""
644
+ "If enabled, will send email messages with content-type = text/html instead "
645
+ "of text/plain"
646
+ msgstr ""
647
+
648
+ #: options/panel5.php:111
649
+ msgid "HTMLify links in emails"
650
+ msgstr ""
651
+
652
+ #: options/panel5.php:116
653
+ msgid ""
654
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
655
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
656
+ msgstr ""
657
+
658
+ #: options/panel5.php:121
659
+ msgid "Process trackbacks"
660
+ msgstr ""
661
+
662
+ #: options/panel5.php:125
663
+ msgid ""
664
+ "Notify users when a new trackback or pingback is added to the discussion."
665
+ msgstr ""
666
+
667
+ #: options/panel5.php:130
668
+ msgid "Track all subscriptions"
669
+ msgstr "تمام اشتراک ها را رهگیری کن"
670
+
671
+ #: options/panel5.php:135
672
+ msgid "Notify the administrator when users subscribe without commenting."
673
+ msgstr "وقتی کاربران بدون دیدگاه گذاری مشترک می شوند سرپرست را مطلع کن."
674
+
675
+ #: options/panel5.php:144
676
+ msgid "Let the administrator subscribe to comments when logged in."
677
+ msgstr ""
678
+ "وقتی سرپرست وارد سایت می گردد به او اجازه ی مشترک شدن در دیدگاه ها را بده."
679
+
680
+ #: options/panel5.php:153
681
+ msgid "Send a copy of all Notifications to the administrator."
682
+ msgstr ""
683
+
684
+ #: options/panel5.php:158
685
+ msgid "StCR Box Position"
686
+ msgstr ""
687
+
688
+ #: options/panel5.php:162
689
+ msgid ""
690
+ "If this option is enable the subscriptioin box will be above the submit "
691
+ "button in your comment form."
692
+ msgstr ""
693
+
694
+ #: options/panel5.php:167
695
+ msgid "StCR Unique Key"
696
+ msgstr ""
697
+
698
+ #: options/panel5.php:172
699
+ msgid "This Unique Key is not set, please click the following button to "
700
+ msgstr ""
701
+
702
+ #: options/panel5.php:176 options/panel5.php:187
703
+ msgid "Generate"
704
+ msgstr ""
705
+
706
+ #: options/panel5.php:184
707
+ msgid ""
708
+ "This Unique Key will be use to send the notification to your subscribers "
709
+ "with more security."
710
+ msgstr ""
711
+
712
+ #: options/panel5.php:195 options/panel3.php:200 options/panel4.php:207
713
+ #: options/panel2.php:189
714
+ msgid "Save Changes"
715
+ msgstr "ذخیره ی تغییرات"
716
+
717
+ #: options/index.php:58
718
+ msgid "Comment Form"
719
+ msgstr "فرم دیدگاه‌ها"
720
+
721
+ #: options/index.php:59
722
+ msgid "Management Page"
723
+ msgstr "صفحه‌ی مدیریت"
724
+
725
+ #: options/index.php:60
726
+ msgid "Notifications"
727
+ msgstr "یادآور‌ها"
728
+
729
+ #: options/index.php:61 options/panel3.php:85 options/panel4.php:80
730
+ #: options/panel2.php:58
731
+ msgid "Options"
732
+ msgstr "تنظیمات"
733
+
734
+ #: options/index.php:62
735
+ msgid "You can help"
736
+ msgstr "شما هم می توانید کمک کنید"
737
+
738
+ #: options/index.php:63
739
+ #, fuzzy
740
+ msgid "Support"
741
+ msgstr "تالار گفتگوی پشتیبانی"
742
+
743
+ #: options/index.php:64
744
+ msgid "Donate"
745
+ msgstr ""
746
+
747
+ #: options/panel3.php:16 options/panel3.php:90
748
+ msgid "Virtual Management Page"
749
+ msgstr "صفحه ی مدیریت مجازی"
750
+
751
+ #: options/panel3.php:21 options/panel3.php:99
752
+ msgid "Page title"
753
+ msgstr "عنوان صفحه"
754
+
755
+ #: options/panel3.php:26 options/panel3.php:108
756
+ msgid "Management URL"
757
+ msgstr "پیوند به صفحه مدیریت"
758
+
759
+ #: options/panel3.php:31 options/panel3.php:120
760
+ msgid "Custom HEAD meta"
761
+ msgstr "تگ های متا به صورت سفارشی برای قسمت سربرگ"
762
+
763
+ #: options/panel3.php:37 options/panel3.php:134
764
+ msgid "Request link"
765
+ msgstr "پیوند درخواست"
766
+
767
+ #: options/panel3.php:42 options/panel3.php:144
768
+ msgid "Request submitted"
769
+ msgstr "درخواست ارسال شد"
770
+
771
+ #: options/panel3.php:47 options/panel3.php:154
772
+ msgid "Subscribe without commenting"
773
+ msgstr "اشتراک بدون دیدگاه نویسی"
774
+
775
+ #: options/panel3.php:52 options/panel3.php:164
776
+ msgid "Subscription processed"
777
+ msgstr "عملیات اشتراک انجام شد"
778
+
779
+ #: options/panel3.php:57 options/panel3.php:174
780
+ msgid "Subscription processed (DCI)"
781
+ msgstr "اشتراک پردازش شده (dcI)"
782
+
783
+ #: options/panel3.php:62 options/panel3.php:183
784
+ msgid "Authors"
785
+ msgstr "نویسندگان"
786
+
787
+ #: options/panel3.php:67 options/panel3.php:191
788
+ msgid "Users"
789
+ msgstr "کاربران"
790
+
791
+ #: options/panel3.php:93
792
+ msgid "Enabled"
793
+ msgstr "فعال"
794
+
795
+ #: options/panel3.php:94
796
+ msgid "Disabled"
797
+ msgstr "غیرفعال"
798
+
799
+ #: options/panel3.php:95
800
+ #, fuzzy
801
+ msgid ""
802
+ "Disable the virtual management page if you need to create a <a href="
803
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
804
+ "real-management-page\">real page</a> to make your theme happy."
805
+ msgstr ""
806
+ "اگر می خواهید یک <a href=\"http://behstant.com/subscribe-reloaded/"
807
+ "realMgnPage.php\"> صفحه ی واقعی </a> به وجود آورید و پوسته ی خود را خوشحال "
808
+ "کنید صفحه ی مجازی مدیریت را غیر فعال نمایید."
809
+
810
+ #: options/panel3.php:104
811
+ msgid "Title of the page your visitors will use to manage their subscriptions."
812
+ msgstr ""
813
+ "عنوان صفحه ای که بازدیدکنندگان شما برای مدیریت اشتراک های خود استفاده می "
814
+ "نمایند."
815
+
816
+ #: options/panel3.php:112
817
+ msgid ""
818
+ "The permalink for your management page (something like <code>/manage-"
819
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
820
+ "b> actually exist in the system, but its link must follow your permalink "
821
+ "structure."
822
+ msgstr ""
823
+ "پیوند یکتا به صفحه ی مدیریت شما، (چیزی شبیه <code>/manage-subscriptions</"
824
+ "code> یا <code>/?page_id=345</code>). این صفحه واقعاً در سیستم شما وجود "
825
+ "<b>ندارد</b> ولی باید از ساختار پیوندهای یکتای سایت تبعیت کند."
826
+
827
+ #: options/panel3.php:114
828
+ msgid ""
829
+ "Warning: it looks like the value you are using may be incompatible with your "
830
+ "permalink structure"
831
+ msgstr ""
832
+ "هشدار: شاید مقداری که قرار داده اید با ساختار پیوندهای یکتای سایت همخوانی "
833
+ "نداشته باشد."
834
+
835
+ #: options/panel3.php:124
836
+ msgid ""
837
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
838
+ "Use <strong>single</strong> quotes for values."
839
+ msgstr ""
840
+ "کدهای HTML سفارشی را که می خواهید به بخش head در صفحه اضافه شود تعیین کنید. "
841
+ "برای مقادیر پارامترها فقط از کوتیشن <strong>تکی </strong> استفاده نمایید."
842
+
843
+ #: options/panel3.php:130 options/panel4.php:113
844
+ msgid "Messages"
845
+ msgstr "پیام ها"
846
+
847
+ #: options/panel3.php:139
848
+ msgid "Text shown to those who request to manage their subscriptions."
849
+ msgstr "متن نمایش داده شده به کسانی که درخواست مدیریت اشتراک های خود را دارند"
850
+
851
+ #: options/panel3.php:149
852
+ msgid ""
853
+ "Thank you note shown after the request here above has been processed. "
854
+ "Allowed tags: [post_title], [post_permalink]"
855
+ msgstr ""
856
+ "پیام تشکر پس از تایید شدن درخواست مشروح در بالا! تگ های مجاز: [post_title], "
857
+ "[post_permalink]"
858
+
859
+ #: options/panel3.php:159
860
+ msgid ""
861
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
862
+ "[post_title], [post_permalink]"
863
+ msgstr ""
864
+ "این متن به کسانی که می خواهند بدون دیدگاه نویسی مشترک گردند نشان داده می "
865
+ "شود. تگ های مجاز: [post_title], [post_permalink]"
866
+
867
+ #: options/panel3.php:169
868
+ msgid ""
869
+ "Thank you note shown after the subscription request has been processed "
870
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
871
+ msgstr ""
872
+ "پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت غیرفعال بودن نیاز "
873
+ "به تایید ایمیلی). برچسب های مجاز: [post_title], [post_permalink]"
874
+
875
+ #: options/panel3.php:179
876
+ msgid ""
877
+ "Thank you note shown after the subscription request has been processed "
878
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
879
+ msgstr ""
880
+ "پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت فعال بودن نیاز به "
881
+ "تایید ایمیلی). تگ های مجاز: [post_title], [post_permalink]"
882
+
883
+ #: options/panel3.php:187
884
+ msgid "Introductory text for the authors' management page."
885
+ msgstr "متن معرفی برای صفحه ی مدیریت نویسندگان."
886
+
887
+ #: options/panel3.php:195
888
+ msgid "Introductory text for the users' management page."
889
+ msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
890
+
891
+ #: options/panel1-edit-subscription.php:8
892
+ msgid "Update Subscription"
893
+ msgstr "به روزرسانی اشتراک"
894
+
895
+ #: options/panel1-edit-subscription.php:11
896
+ #: options/panel1-edit-subscription.php:21
897
+ #: options/panel1-edit-subscription.php:22
898
+ #: options/panel1-edit-subscription.php:23 options/panel1.php:31
899
+ #: options/panel1.php:32 options/panel1.php:33
900
+ msgid "optional"
901
+ msgstr "دلبخواهی"
902
+
903
+ #: options/panel1-edit-subscription.php:13
904
+ #: options/panel1-add-subscription.php:13
905
+ msgid "Post:"
906
+ msgstr "نوشته:"
907
+
908
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:26
909
+ msgid "From"
910
+ msgstr "از"
911
+
912
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:30
913
+ msgid "To"
914
+ msgstr "تا"
915
+
916
+ #: options/panel1-edit-subscription.php:26
917
+ #: options/panel1-add-subscription.php:20 options/panel1.php:36
918
+ #: options/panel1.php:69 options/panel1.php:139
919
+ msgid "Status"
920
+ msgstr "وضعیت"
921
+
922
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:38
923
+ msgid "Keep unchanged"
924
+ msgstr "بدون تغییر رها کن"
925
+
926
+ #: options/panel1-edit-subscription.php:29
927
+ #: options/panel1-add-subscription.php:22 options/panel1.php:39
928
+ #: options/panel1.php:72
929
+ msgid "Active"
930
+ msgstr "فعال"
931
+
932
+ #: options/panel1-edit-subscription.php:30
933
+ #: options/panel1-add-subscription.php:23 options/panel1.php:40
934
+ #: options/panel1.php:73
935
+ msgid "Replies only"
936
+ msgstr "فقط پاسخ ها"
937
+
938
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:41
939
+ msgid "Suspended"
940
+ msgstr "معلق"
941
+
942
+ #: options/panel1-edit-subscription.php:33
943
+ #: options/panel1-add-subscription.php:26 options/panel1.php:43
944
+ msgid "Update"
945
+ msgstr "به روزرسانی"
946
+
947
+ #: options/panel1-add-subscription.php:8 options/panel1.php:54
948
+ msgid "Add New Subscription"
949
+ msgstr "افزودن اشتراک جدید"
950
+
951
+ #: options/panel1-add-subscription.php:24 options/panel1.php:74
952
+ msgid "Ask user to confirm"
953
+ msgstr "پرسش از کاربر برای تایید"
954
+
955
+ #: options/panel8.php:11
956
+ #, fuzzy
957
+ msgid "Support Subscribe to Comments Reloaded"
958
+ msgstr ""
959
+ "آیا برای استفاده از افزونه ی «اشتراک در دیدگاه‌ها نسخه ی جدید» نیاز به کمک "
960
+ "دارید؟ سایت رسمی را ببینید."
961
+
962
+ #: options/panel8.php:12
963
+ msgid ""
964
+ "Every contribution that you make is high valuable, so if you consider this "
965
+ "plugin a helpful tool we will use your donation to invest on support and "
966
+ "developing time."
967
+ msgstr ""
968
+
969
+ #: options/panel4.php:17 options/panel4.php:85
970
+ msgid "Sender name"
971
+ msgstr "نام فرستنده"
972
+
973
+ #: options/panel4.php:22 options/panel4.php:98
974
+ msgid "Sender email address"
975
+ msgstr "نشانی رایان‌نامه فرستنده"
976
+
977
+ #: options/panel4.php:27 options/panel4.php:118
978
+ msgid "Notification subject"
979
+ msgstr "موضوع پیام یادآور"
980
+
981
+ #: options/panel4.php:33 options/panel4.php:39 options/panel4.php:131
982
+ msgid "Notification message"
983
+ msgstr "متن پیام یادآور"
984
+
985
+ #: options/panel4.php:44 options/panel4.php:145
986
+ msgid "Double check subject"
987
+ msgstr "موضوع ایمیل درخواست تایید مجدد"
988
+
989
+ #: options/panel4.php:49 options/panel4.php:158
990
+ msgid "Double check message"
991
+ msgstr "متن پیام درخواست تایید مجدد"
992
+
993
+ #: options/panel4.php:54 options/panel4.php:170
994
+ msgid "Management subject"
995
+ msgstr "موضوع مدیریت"
996
+
997
+ #: options/panel4.php:59 options/panel4.php:64 options/panel4.php:183
998
+ msgid "Management message"
999
+ msgstr "پیام مدیریت"
1000
+
1001
+ #: options/panel4.php:92
1002
+ msgid ""
1003
+ "Name to use for the \"from\" field when sending a new notification to the "
1004
+ "user."
1005
+ msgstr "نام فرستنده هنگام ارسال یادآور جدید به کاربران"
1006
+
1007
+ #: options/panel4.php:106
1008
+ msgid ""
1009
+ "Email address to use for the \"from\" field when sending a new notification "
1010
+ "to the user."
1011
+ msgstr "نشانی رایان نامه ی فرستنده هنگام ارسال یادآور جدید به کاربران"
1012
+
1013
+ #: options/panel4.php:125
1014
+ msgid "Subject of the notification email. Allowed tag: [post_title]"
1015
+ msgstr ""
1016
+ "موضوع ایمیل یادآور. توجه شود که تگ مربوط به نام نویسنده را نمی توان در موضوع "
1017
+ "ایمیل نوشت. تگ های مجاز: [post_title] "
1018
+
1019
+ #: options/panel4.php:138
1020
+ msgid ""
1021
+ "Content of the notification email. Allowed tags: [post_title], "
1022
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
1023
+ "[manager_link]"
1024
+ msgstr ""
1025
+ "محتوای ایمیل یادآور. تگ های مجاز: [post_title], [comment_permalink], "
1026
+ "[comment_author], [comment_content], [post_permalink], [manager_link]"
1027
+
1028
+ #: options/panel4.php:139
1029
+ msgid ""
1030
+ "<p><strong>Note: To get a default template clear all the content and save "
1031
+ "the options.</strong></p>"
1032
+ msgstr ""
1033
+
1034
+ #: options/panel4.php:152
1035
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
1036
+ msgstr "موضوع ایمیل تاییدیه. تگ های مجاز: [post_title]"
1037
+
1038
+ #: options/panel4.php:164
1039
+ msgid ""
1040
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
1041
+ "[confirm_link], [post_title], [manager_link]"
1042
+ msgstr ""
1043
+ "محتوای ایمیل تاییدیه. تگ های مجاز: [post_permalink], [confirm_link], "
1044
+ "[post_title], [manager_link]"
1045
+
1046
+ #: options/panel4.php:177
1047
+ msgid ""
1048
+ "Subject of the mail sent to those who request to access their management "
1049
+ "page. Allowed tag: [blog_name]"
1050
+ msgstr ""
1051
+
1052
+ #: options/panel4.php:189
1053
+ msgid ""
1054
+ "Content of the management email. Allowed tags: [blog_name], [manager_link]"
1055
+ msgstr ""
1056
+
1057
+ #: options/panel4.php:195
1058
+ #, fuzzy
1059
+ msgid "One Click Unsubscribe"
1060
+ msgstr "به سرپرست اجازه ی مشترک شدن بده"
1061
+
1062
+ #: options/panel4.php:201
1063
+ #, fuzzy
1064
+ msgid "Content of the One Click confirmation. Allowed tags: [post_title]"
1065
+ msgstr "موضوع ایمیل تاییدیه. تگ های مجاز: [post_title]"
1066
+
1067
+ #: options/panel2.php:12 options/panel2.php:63
1068
+ msgid "Enable default checkbox"
1069
+ msgstr "کادر تیک زدنی را در مکان پیشفرض یعنی زیر دکمه ی ارسال نشان بده"
1070
+
1071
+ #: options/panel2.php:15 options/panel2.php:73
1072
+ msgid "Checked by default"
1073
+ msgstr "به طور پیشفرض تیک خورده باشد"
1074
+
1075
+ #: options/panel2.php:18
1076
+ #, fuzzy
1077
+ msgid "Checked by default Value"
1078
+ msgstr "به طور پیشفرض تیک خورده باشد"
1079
+
1080
+ #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
1081
+ msgid "Advanced subscription"
1082
+ msgstr "اشتراک پیشرفته"
1083
+
1084
+ #: options/panel2.php:27 options/panel2.php:130
1085
+ msgid "Custom inline style"
1086
+ msgstr "جلوه ی سفارشی برای نوشته ی اشتراک"
1087
+
1088
+ #: options/panel2.php:30 options/panel2.php:139
1089
+ msgid "Custom HTML"
1090
+ msgstr "HTML سفارشی"
1091
+
1092
+ #: options/panel2.php:34
1093
+ msgid "Checkbox label"
1094
+ msgstr "برچسب کادر تیک دار"
1095
+
1096
+ #: options/panel2.php:37 options/panel2.php:163
1097
+ msgid "Subscribed label"
1098
+ msgstr "برچسب حالت مشترک شده"
1099
+
1100
+ #: options/panel2.php:40
1101
+ msgid "Awaiting label"
1102
+ msgstr "برچسب حالت در انتظار"
1103
+
1104
+ #: options/panel2.php:43 options/panel2.php:180
1105
+ msgid "Author label"
1106
+ msgstr "برچسب مخصوص نویسنده ی نوشته "
1107
+
1108
+ #: options/panel2.php:68
1109
+ msgid ""
1110
+ "Disable this option if you want to move the subscription checkbox to a "
1111
+ "different place on your page."
1112
+ msgstr ""
1113
+ "اگر می خواهید کادر تیک زدنی را به قسمت دیگری از صفحه ی خود انتقال دهید این "
1114
+ "گزینه را غیرفعال نمایید. برای انتقال کادر تیک زدنی به بالای دکمه ی ارسال می "
1115
+ "توانید کد زیر را به خط 2355 از فایل Wordpress> WP-includes> "
1116
+ "comments_template.php اضافه کنید. شماره ی خط شاید عوض شود لذا دنبال تابع با "
1117
+ "اسم comment_form بگردید.\n"
1118
+ "if (function_exists('subscribe_reloaded_show')) subscribe_reloaded_show();"
1119
+
1120
+ #: options/panel2.php:78
1121
+ msgid "Decide if the checkbox should be checked by default or not."
1122
+ msgstr ""
1123
+ "تصمیم بگیرید که آیا کادر تیک زدنی باید به طور پیشفرض تیک دار باشد یا نه؟!"
1124
+
1125
+ #: options/panel2.php:87
1126
+ #, fuzzy
1127
+ msgid "Default Checkbox Value"
1128
+ msgstr "کادر تیک زدنی را در مکان پیشفرض یعنی زیر دکمه ی ارسال نشان بده"
1129
+
1130
+ #: options/panel2.php:91 options/panel2.php:120
1131
+ msgid "All new comments"
1132
+ msgstr ""
1133
+
1134
+ #: options/panel2.php:92 options/panel2.php:121
1135
+ #, fuzzy
1136
+ msgid "Replies to this comment"
1137
+ msgstr "فقط دریافت پاسخ دیدگاه های خودم "
1138
+
1139
+ #: options/panel2.php:94
1140
+ msgid ""
1141
+ "Select the default option for the Checkbox. Be careful! Some users might "
1142
+ "like to be subscribed to all the post."
1143
+ msgstr ""
1144
+
1145
+ #: options/panel2.php:107
1146
+ msgid ""
1147
+ "Allow users to choose from different subscription types (all, replies only)."
1148
+ msgstr ""
1149
+ "به کاربران امکان می دهد گزینه های مختلف اشتراک مثلاً دریافت همه ی دیدگاه ها "
1150
+ "یا فقط دریافت پاسخ به دیدگاه های خود را انتخاب نمایند."
1151
+
1152
+ #: options/panel2.php:115
1153
+ #, fuzzy
1154
+ msgid "Advanced default"
1155
+ msgstr "به طور پیشفرض تیک خورده باشد"
1156
+
1157
+ #: options/panel2.php:119
1158
+ msgid "None"
1159
+ msgstr ""
1160
+
1161
+ #: options/panel2.php:124
1162
+ msgid ""
1163
+ "The default subscription type that should be selected when Advanced "
1164
+ "subscriptions are enable."
1165
+ msgstr ""
1166
+
1167
+ #: options/panel2.php:135
1168
+ msgid "Custom inline CSS to add to the checkbox."
1169
+ msgstr ""
1170
+ "جلوه ی CSS سفارشی که فقط برای خط مربوط به کادر تیک زدنی استفاده می شود."
1171
+
1172
+ #: options/panel2.php:143
1173
+ msgid ""
1174
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
1175
+ "[checkbox_field], [checkbox_label]"
1176
+ msgstr ""
1177
+ "کد HTML سفارشی برای استفاده هنگام نمایش کادر تیک زدنی! تگ های مجاز: "
1178
+ "[checkbox_field], [checkbox_label]"
1179
+
1180
+ #: options/panel2.php:149
1181
+ msgid "Messages for your visitors"
1182
+ msgstr "پیغام برای بازدیدکنندگان شما"
1183
+
1184
+ #: options/panel2.php:153
1185
+ msgid "Default label"
1186
+ msgstr "برچسب پیشفرض"
1187
+
1188
+ #: options/panel2.php:158
1189
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
1190
+ msgstr ""
1191
+ "برچسبی که به کادر تیک زدنی اختصاص داده می شود. تگ های مجاز: [subscribe_link]"
1192
+
1193
+ #: options/panel2.php:167
1194
+ msgid ""
1195
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
1196
+ "[manager_link]"
1197
+ msgstr ""
1198
+ "برچسبی که به افراد پیشاپیش مشترک شده در یک نوشته نشان داده می شود. تگ های "
1199
+ "مجاز: [manager_link]"
1200
+
1201
+ #: options/panel2.php:172
1202
+ msgid "Pending label"
1203
+ msgstr "برچسب حالت منتظر در صف"
1204
+
1205
+ #: options/panel2.php:176
1206
+ msgid ""
1207
+ "Label shown to those who are already subscribed, but haven't clicked on the "
1208
+ "confirmation link yet. Allowed tag: [manager_link]"
1209
+ msgstr ""
1210
+ "این برچسب به افرادی نشان داده می شود که درخواست مشترک شدن کرده ولی هنوز لینک "
1211
+ "تایید را در ایمیل خود کلیک ننموده اند. تگ های مجاز: [manager_link]"
1212
+
1213
+ #: options/panel2.php:184
1214
+ msgid ""
1215
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
1216
+ msgstr ""
1217
+ "این برچسب به نویسندگان و مدیران نشان داده می شود. تگ های مجاز: [manager_link]"
1218
+
1219
+ #: options/panel7.php:18
1220
+ msgid "Did you find a Bug on the plugin?"
1221
+ msgstr ""
1222
+
1223
+ #: options/panel7.php:19
1224
+ msgid ""
1225
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1226
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1227
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1228
+ "WordPress Support page."
1229
+ msgstr ""
1230
+
1231
+ #: options/panel1.php:19
1232
+ msgid "Mass Update Subscriptions"
1233
+ msgstr "به روزرسانی اشتراک ها به صورت انبوه"
1234
+
1235
+ #: options/panel1.php:61
1236
+ msgid "Post ID"
1237
+ msgstr "شناسه‌ی نوشته"
1238
+
1239
+ #: options/panel1.php:76
1240
+ msgid "Add"
1241
+ msgstr "افزودن"
1242
+
1243
+ #: options/panel1.php:91
1244
+ msgid "Search subscriptions"
1245
+ msgstr "جستجوی اشتراک ها"
1246
+
1247
+ #: options/panel1.php:95
1248
+ #, php-format
1249
+ msgid ""
1250
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1251
+ "where the"
1252
+ msgstr ""
1253
+ "می توانید یا <a href=\"%s\">تمام اشتراک ها را ببینید</a> یا فقط مواردی را "
1254
+ "پیدا کنید که "
1255
+
1256
+ #: options/panel1.php:99
1257
+ msgid "email"
1258
+ msgstr "ایمیل"
1259
+
1260
+ #: options/panel1.php:100
1261
+ msgid "post ID"
1262
+ msgstr "شناسه ی نوشته"
1263
+
1264
+ #: options/panel1.php:101
1265
+ msgid "status"
1266
+ msgstr "وضعیت"
1267
+
1268
+ #: options/panel1.php:104
1269
+ msgid "equals"
1270
+ msgstr "مساوی است با"
1271
+
1272
+ #: options/panel1.php:105
1273
+ msgid "contains"
1274
+ msgstr "محتوی"
1275
+
1276
+ #: options/panel1.php:106
1277
+ msgid "does not contain"
1278
+ msgstr "غیرمحتوی"
1279
+
1280
+ #: options/panel1.php:107
1281
+ msgid "starts with"
1282
+ msgstr "شروع می شود با"
1283
+
1284
+ #: options/panel1.php:108
1285
+ msgid "ends with"
1286
+ msgstr "پایان می یابد با"
1287
+
1288
+ #: options/panel1.php:111
1289
+ msgid "results per page:"
1290
+ msgstr "نتایج در هر صفحه"
1291
+
1292
+ #: options/panel1.php:113
1293
+ msgid "Search"
1294
+ msgstr "جستجو"
1295
+
1296
+ #: options/panel1.php:121
1297
+ msgid "Reverse the order by Post ID"
1298
+ msgstr "ترتیب را بر اساس شناسه ی نوشته ها برعکس کن"
1299
+
1300
+ #: options/panel1.php:122 options/panel1.php:123
1301
+ msgid "Reverse the order by Date/Time"
1302
+ msgstr "ترتیب را بر اساس تاریخ و ساعت برعکس کن"
1303
+
1304
+ #: options/panel1.php:125
1305
+ msgid "Post (ID)"
1306
+ msgstr "نوشته (شناسه)"
1307
+
1308
+ #: options/panel1.php:128
1309
+ msgid "Search query:"
1310
+ msgstr "عبارت مورد جستجو: "
1311
+
1312
+ #: options/panel1.php:128
1313
+ msgid "Rows:"
1314
+ msgstr "ردیف ها:"
1315
+
1316
+ #: options/panel1.php:128
1317
+ msgid "of"
1318
+ msgstr "از"
1319
+
1320
+ #: options/panel1.php:138
1321
+ msgid "Date and Time"
1322
+ msgstr "تاریخ و ساعت"
1323
+
1324
+ #: options/panel1.php:150
1325
+ #, fuzzy
1326
+ msgid "Subscription"
1327
+ msgstr "اشتراک‌ها"
1328
+
1329
+ #: options/panel1.php:152
1330
+ msgid "Edit"
1331
+ msgstr "ویرایش"
1332
+
1333
+ #: options/panel1.php:162
1334
+ msgid "Delete forever"
1335
+ msgstr "پاک کردن برای همیشه"
1336
+
1337
+ #: options/panel1.php:164
1338
+ msgid "Activate and set to Y"
1339
+ msgstr "فعال کن و روی حالت Y بگذار"
1340
+
1341
+ #: options/panel1.php:165
1342
+ msgid "Activate and set to R"
1343
+ msgstr "فعال کن و روی حالت R بگذار"
1344
+
1345
+ #: options/panel1.php:170
1346
+ msgid "Sorry, no subscriptions match your search criteria."
1347
+ msgstr "متاسفانه هیچ اشتراکی با معیار شما انطباق نداشت."
1348
+
1349
+ #~ msgid "Daily digest"
1350
+ #~ msgstr "به صورت یکجا روزانه"
1351
+
1352
+ #~ msgid "Replies"
1353
+ #~ msgstr "پاسخ ها"
1354
+
1355
+ #~ msgid "Digest"
1356
+ #~ msgstr "حالت یکجا"
1357
+
1358
+ #~ msgid "Pending"
1359
+ #~ msgstr "در انتظار"
1360
+
1361
+ #~ msgid "Bold"
1362
+ #~ msgstr "پررنگ"
1363
+
1364
+ #~ msgid "Italic"
1365
+ #~ msgstr "اریب"
1366
+
1367
+ #~ msgid "Link"
1368
+ #~ msgstr "پیوند"
1369
+
1370
+ #~ msgid "Image"
1371
+ #~ msgstr "تصویر"
1372
+
1373
+ #~ msgid "Notify authors"
1374
+ #~ msgstr "به نویسندگان پیام یادآور بفرست"
1375
+
1376
+ #~ msgid "Notify the administrator when a new comment is posted."
1377
+ #~ msgstr "وقتی دیدگاه جدیدی فرستاده می شود سرپرست را مطلع کن."
1378
+
1379
+ #~ msgid "Sponsor's Corner"
1380
+ #~ msgstr "پاتوق حامیان"
1381
+
1382
+ #~ msgid "Set to Y"
1383
+ #~ msgstr "به حالت Y تنظیم کن"
1384
+
1385
+ #~ msgid ""
1386
+ #~ "Update the email address associated to a specific subscription (by post "
1387
+ #~ "ID)."
1388
+ #~ msgstr ""
1389
+ #~ "Aggiorna l'indirizzo email associato ad una specifica iscrizione "
1390
+ #~ "(necessita l'ID dell'articolo)."
1391
+
1392
+ #~ msgid ""
1393
+ #~ "Change the status of an email address or permanently delete all its "
1394
+ #~ "subscriptions."
1395
+ #~ msgstr ""
1396
+ #~ "Cambia lo stato o cancella tutte le sottoscrizioni associate ad un dato "
1397
+ #~ "indirizzo email."
1398
+
1399
+ #~ msgid ""
1400
+ #~ "You can \"mass update\" all the occurrences of a given email address "
1401
+ #~ "(exact matches only)."
1402
+ #~ msgstr ""
1403
+ #~ "می توانید تمام موارد مربوط به یک آدرس ایمیل خاص را \"آپدیت یکجا\" بکنید "
1404
+ #~ "(فقط برای مواردی که انطباق دقیق داشته باشد)."
1405
+
1406
+ #~ msgid "Legend: Y: subscribed, N: suspended, C: awaiting confirmation"
1407
+ #~ msgstr "راهنما: Y: مشترک شده، N: اشتراک معلق شده، C: در انتظار تایید"
1408
+
1409
+ #~ msgid ""
1410
+ #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1411
+ #~ "its style."
1412
+ #~ msgstr ""
1413
+ #~ "کلاس CSS سفارشی برای افزودن به کادر تیک زدنی در صورتی که بخواهید جلوه ی "
1414
+ #~ "آن را تغییر دهید."
langs/subscribe-reloaded-fr_FR.mo CHANGED
Binary file
langs/subscribe-reloaded-fr_FR.po CHANGED
@@ -1,1313 +1,1445 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Subscribe to Comments Reloaded v2.0.6\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-06-11 16:21-0700\n"
6
- "PO-Revision-Date: 2015-06-11 16:21-0700\n"
7
- "Last-Translator: Israel Barragan <reedyseth@gmail.com>\n"
8
- "Language-Team: \n"
9
- "Language: fr\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
14
- "X-Poedit-SourceCharset: utf-8\n"
15
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
- "X-Poedit-Basepath: ../\n"
21
- "X-Textdomain-Support: yes\n"
22
- "X-Generator: Poedit 1.6\n"
23
- "X-Loco-Target-Locale: fr_FR\n"
24
- "X-Poedit-SearchPath-0: .\n"
25
-
26
- #: subscribe-to-comments-reloaded.php:95
27
- msgid "Don't subscribe"
28
- msgstr "Ne pas s'abonner"
29
-
30
- #: subscribe-to-comments-reloaded.php:96
31
- msgid "All"
32
- msgstr "S'abonner"
33
-
34
- #: subscribe-to-comments-reloaded.php:97 templates/author.php:75
35
- #: templates/user.php:72
36
- msgid "Replies to my comments"
37
- msgstr "Seulement les réponses à mes commentaires"
38
-
39
- #: subscribe-to-comments-reloaded.php:312
40
- msgid ""
41
- "Notify me of followup comments via e-mail. You can also <a "
42
- "href='[subscribe_link]'>subscribe</a> without commenting."
43
- msgstr ""
44
- "Notifiez-moi des commentaires à venir via émail. Vous pouvez aussi <a "
45
- "href='[subscribe_link]'>vous abonner</a> sans commenter."
46
-
47
- #: subscribe-to-comments-reloaded.php:313
48
- msgid ""
49
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
50
- "subscriptions."
51
- msgstr ""
52
- "Vous êtes abonné(e) aux commentaires de ce billet.<a "
53
- "href='[manager_link]'>Gérer vos abonnements</a>.\""
54
-
55
- #: subscribe-to-comments-reloaded.php:314
56
- msgid ""
57
- "Your subscription to this post needs to be confirmed. <a "
58
- "href='[manager_link]'>Manage your subscriptions</a>."
59
- msgstr ""
60
- "Votre abonnement aux commentaires de ce billet a besoin d'être confirmé. <a "
61
- "href='[manager_link]'>Gérer vos abonnements</a>."
62
-
63
- #: subscribe-to-comments-reloaded.php:315
64
- msgid ""
65
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
66
- msgstr ""
67
- "Vous pouvez <a href='[manager_link]'>gérer les abonnements</a> aux "
68
- "commentaires de ce billet."
69
-
70
- #: subscribe-to-comments-reloaded.php:319 options/index.php:57
71
- msgid "Manage subscriptions"
72
- msgstr "Gérer les abonnements"
73
-
74
- #: subscribe-to-comments-reloaded.php:321
75
- msgid ""
76
- "To manage your subscriptions, please enter your email address here below. We "
77
- "will send you a message containing the link to access your personal "
78
- "management page."
79
- msgstr ""
80
- "Pour gérer vos abonnements, veuillez entrer votre adresse email ci-dessous. "
81
- "Nous vous enverrons un message contenant le lien pour accéder à votre page "
82
- "personnelle de gestion."
83
-
84
- #: subscribe-to-comments-reloaded.php:322
85
- msgid ""
86
- "Thank you for using our subscription service. Your request has been "
87
- "completed, and you should receive an email with the management link in a few "
88
- "minutes."
89
- msgstr ""
90
- "Merci d'utiliser notre service d'abonnement. Votre requête a été complétée "
91
- "et vous devriez recevoir un email avec un lien de gestion dans quelques "
92
- "minutes."
93
-
94
- #: subscribe-to-comments-reloaded.php:323
95
- msgid ""
96
- "You can follow the discussion on <strong>[post_title]</strong> without "
97
- "having to leave a comment. Cool, huh? Just enter your email address in the "
98
- "form here below and you're all set."
99
- msgstr ""
100
- "Vous pouvez suivre la discussion sur <strong>[post_title]</strong> sans "
101
- "avoir à laisser un commentaire. Chouette, pas vrai ? Entrez simplement votre "
102
- "adresse email dans le champ ci-dessous."
103
-
104
- #: subscribe-to-comments-reloaded.php:324
105
- msgid ""
106
- "Thank you for using our subscription service. Your request has been "
107
- "completed. You will receive a notification email every time a new comment to "
108
- "this article is approved and posted by the administrator."
109
- msgstr ""
110
- "Merci d'utiliser notre service d'abonnement. Votre requête a abouti. Vous "
111
- "recevrez une notification par email à chaque fois qu'un nouveau commentaire "
112
- "sur cet article sera posté et approuvé par l'administrateur."
113
-
114
- #: subscribe-to-comments-reloaded.php:325
115
- msgid ""
116
- "Thank you for using our subscription service. In order to confirm your "
117
- "request, please check your email for the verification message and follow the "
118
- "instructions."
119
- msgstr ""
120
- "Merci d'utiliser notre service d'abonnement. Afin de confirmer votre "
121
- "requête, veuillez vérifier votre courrier email pour le message de "
122
- "vérification et suivre les instructions."
123
-
124
- #: subscribe-to-comments-reloaded.php:326
125
- msgid ""
126
- "In order to cancel or suspend one or more notifications, select the "
127
- "corresponding checkbox(es) and click on the button at the end of the list."
128
- msgstr ""
129
- "Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
130
- "la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
131
- "la liste."
132
-
133
- #: subscribe-to-comments-reloaded.php:327
134
- msgid ""
135
- "In order to cancel or suspend one or more notifications, select the "
136
- "corresponding checkbox(es) and click on the button at the end of the list. "
137
- "You are currently subscribed to:"
138
- msgstr ""
139
- "Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
140
- "la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
141
- "la liste. Vous êtes actuellement abonné(e) à:"
142
-
143
- #: subscribe-to-comments-reloaded.php:331
144
- msgid "There is a new comment to [post_title]"
145
- msgstr "Il y a un nouveau commentaire à [post_title]"
146
-
147
- #: subscribe-to-comments-reloaded.php:332
148
- msgid ""
149
- "There is a new comment to [post_title].\n"
150
- "Comment Link: [comment_permalink]\n"
151
- "Author: [comment_author]\n"
152
- "Comment:\n"
153
- "[comment_content]\n"
154
- "Permalink: [post_permalink]\n"
155
- "Manage your subscriptions: [manager_link]"
156
- msgstr ""
157
- "Il y a un nouveau commentaire à [post_title].\n"
158
- "Lien du commentaire : [comment_permalink]\n"
159
- "Auteur : [comment_author]\n"
160
- "Commentaire :\n"
161
- "[comment_content]\n"
162
- "Lien permanent : [post_permalink]\n"
163
- "Gérer vos abonnements : [manager_link]"
164
-
165
- #: subscribe-to-comments-reloaded.php:333
166
- msgid "Please confirm your subscription to [post_title]"
167
- msgstr "Veuillez confirmer votre abonnement à [post_title]"
168
-
169
- #: subscribe-to-comments-reloaded.php:334
170
- msgid ""
171
- "You have requested to be notified every time a new comment is added to:\n"
172
- "[post_permalink]\n"
173
- "\n"
174
- "Please confirm your request by clicking on this link:\n"
175
- "[confirm_link]"
176
- msgstr ""
177
- "Vous avez demandé à être averti à chaque fois qu'un nouveau commentaire est "
178
- "ajouté à :\n"
179
- "[post_permalink]\n"
180
- "\n"
181
- "Veuillez confirmer votre demande en cliquant sur ce lien :\n"
182
- "[confirm_link]"
183
-
184
- #: subscribe-to-comments-reloaded.php:335
185
- msgid "Manage your subscriptions on [blog_name]"
186
- msgstr "Gestion de vos abonnements sur [blog_name]"
187
-
188
- #: subscribe-to-comments-reloaded.php:336
189
- msgid ""
190
- "You have requested to manage your subscriptions to the articles on "
191
- "[blog_name]. Follow this link to access your personal page:\n"
192
- "[manager_link]"
193
- msgstr ""
194
- "Vous avez demandé à gérer vos abonnements aux articles sur [blog_name]. "
195
- "Suivez ce lien pour accéder à votre page personnelle :\n"
196
- "[manager_link]"
197
-
198
- #: subscribe-to-comments-reloaded.php:429
199
- #: subscribe-to-comments-reloaded.php:436
200
- #: subscribe-to-comments-reloaded.php:579
201
- #: subscribe-to-comments-reloaded.php:648
202
- #: subscribe-to-comments-reloaded.php:792
203
- msgid "Important Notice"
204
- msgstr "Remarque importante"
205
-
206
- #: subscribe-to-comments-reloaded.php:527
207
- msgid "Subscribe to Comments Reloaded Important Notice"
208
- msgstr "Remarque importante concernant Subscribe to Comments Reloaded"
209
-
210
- #: subscribe-to-comments-reloaded.php:528
211
- msgid ""
212
- "The information in your database has been sanitize to prevent the raw html "
213
- "messages."
214
- msgstr ""
215
- "Les informations contenues dans votre base de données ont été nettoyées pour "
216
- "éviter l'affichage brut de messages HTML."
217
-
218
- #: subscribe-to-comments-reloaded.php:580
219
- msgid ""
220
- "Comment subscription data from the <strong>Subscribe to Comments</strong> "
221
- "plugin was detected and automatically imported into <strong>Subscribe to "
222
- "Comments Reloaded</strong>."
223
- msgstr ""
224
- "Les données de souscription aux commentaires du plugin <strong>Subscribe to "
225
- "Comments</strong> ont été détectées et automatiquement importées dans "
226
- "<strong>Subscribe to Comments Reloaded</strong>."
227
-
228
- #: subscribe-to-comments-reloaded.php:580
229
- msgid ""
230
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
231
- "Comments to prevent confusion between the two plugins."
232
- msgstr ""
233
- "Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
234
- "Comments pour éviter toute confusion entre les deux plugins."
235
-
236
- #: subscribe-to-comments-reloaded.php:581
237
- msgid ""
238
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
239
- "that you want to import, you'll need to import that data manually, as only "
240
- "one import routine will ever run to prevent data loss."
241
- msgstr ""
242
- "Si vous avez des données de souscription de Subscribe to Comments Reloaded < "
243
- "v2.0 que vous désirez importer, vous devrez importer ces données "
244
- "manuellement car il n'y a qu'une seule routine d'importation qui "
245
- "fonctionnera pour éviter la perte de données."
246
-
247
- #: subscribe-to-comments-reloaded.php:582
248
- #: subscribe-to-comments-reloaded.php:650
249
- #: subscribe-to-comments-reloaded.php:796
250
- msgid ""
251
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
252
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
253
- "your configuration."
254
- msgstr ""
255
- "Veuillez visiter <a href=\"options-general.php?page=subscribe-to-comments-"
256
- "reloaded/options/index.php\">Réglages -> Subscribe to Comments</a> pour "
257
- "vérifier votre configuration."
258
-
259
- #: subscribe-to-comments-reloaded.php:649
260
- msgid ""
261
- "Comment subscription data from the <strong>Comment Reply Notification</"
262
- "strong> plugin was detected and automatically imported into "
263
- "<strong>Subscribe to Comments Reloaded</strong>."
264
- msgstr ""
265
- "Les données de souscription aux commentaires du plugin <strong>Comment Reply "
266
- "Notification</strong> ont été détectées et automatiquement importées dans "
267
- "<strong>Subscribe to Comments Reloaded</strong>."
268
-
269
- #: subscribe-to-comments-reloaded.php:649
270
- msgid ""
271
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
272
- "Notification to prevent confusion between the two plugins."
273
- msgstr ""
274
- "Il est recommandé que vous <strong>désactiviez</strong> Comment Reply "
275
- "Notification pour éviter toute confusion entre les deux plugins."
276
-
277
- #: subscribe-to-comments-reloaded.php:793
278
- msgid ""
279
- "Plugin options and comment subscription data from the <strong>WP Comment "
280
- "Subscriptions</strong> plugin were detected and automatically imported into "
281
- "<strong>Subscribe to Comments Reloaded</strong>."
282
- msgstr ""
283
- "Les données de souscription aux commentaires du plugin <strong>WP Comment "
284
- "Subscriptions<</strong> ont été détectées et automatiquement importées dans "
285
- "<strong>Subscribe to Comments Reloaded</strong>."
286
-
287
- #: subscribe-to-comments-reloaded.php:793
288
- msgid ""
289
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
290
- "Subscriptions to prevent confusion between the two plugins."
291
- msgstr ""
292
- "Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
293
- "Comments pour éviter toute confusion entre les deux plugins."
294
-
295
- #: subscribe-to-comments-reloaded.php:794
296
- msgid ""
297
- "If you have subscription data from another plugin (such as Subscribe to "
298
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
299
- "you'll need to import that data manually, as only one import routine will "
300
- "ever run to prevent data loss."
301
- msgstr ""
302
- "Si vous avez des données de souscription d'un autre plugin (tel que "
303
- "Subscribe to Comments ou Subscribe to Comments Reloaded < v2.0) que vous "
304
- "désirez importer, vous devrez importer ces données manuellement car il n'y a "
305
- "qu'une seule routine d'importation qui fonctionnera pour éviter la perte de "
306
- "données."
307
-
308
- #: subscribe-to-comments-reloaded.php:795
309
- msgid ""
310
- "<strong>Note:</strong> If you were previously using the "
311
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
312
- "subscribe-url]</code> shortcode, you'll need to replace those with "
313
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
314
- "respectively."
315
- msgstr ""
316
- "<strong>Remarque:</strong> si vous utilisiez précédemment la fonction "
317
- "<code>wp_comment_subscriptions_show()</code> ou le shortcode <code>[wpcs-"
318
- "subscribe-url]</code>, vous devez les remplacer respectivement par "
319
- "<code>subscribe_reloaded_show()</code> et <code>[subscribe-url]</code>."
320
-
321
- #: subscribe-to-comments-reloaded.php:806
322
- msgid "Settings"
323
- msgstr "Réglages"
324
-
325
- #: subscribe-to-comments-reloaded.php:1845 options/panel2.php:67
326
- #: options/panel2.php:77 options/panel2.php:106 options/panel5.php:84
327
- #: options/panel5.php:93 options/panel5.php:102 options/panel5.php:112
328
- #: options/panel5.php:121 options/panel5.php:131 options/panel5.php:140
329
- #: options/panel5.php:149
330
- msgid "No"
331
- msgstr "Non"
332
-
333
- #: subscribe-to-comments-reloaded.php:1872
334
- msgid ""
335
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
336
- msgstr ""
337
- "Vous avez besoin d'aide pour utiliser Subscribe to Comments Reloaded ? "
338
- "Visiter le "
339
-
340
- #: subscribe-to-comments-reloaded.php:1872
341
- msgid "support forum"
342
- msgstr "forum de support officiel"
343
-
344
- #: subscribe-to-comments-reloaded.php:1873
345
- msgid "Feeling generous?"
346
- msgstr "Vous vous sentez d'humeur généreuse ?"
347
-
348
- #: subscribe-to-comments-reloaded.php:1873
349
- msgid "Donate a few bucks!"
350
- msgstr "Faîtes don de quelques euros !"
351
-
352
- #: options/index.php:58
353
- msgid "Comment Form"
354
- msgstr "Formulaire de commentaire"
355
-
356
- #: options/index.php:59
357
- msgid "Management Page"
358
- msgstr "Page de gestion"
359
-
360
- #: options/index.php:60
361
- msgid "Notifications"
362
- msgstr "Notifications"
363
-
364
- #: options/index.php:61 options/panel2.php:58 options/panel3.php:82
365
- #: options/panel4.php:67
366
- msgid "Options"
367
- msgstr "Options"
368
-
369
- #: options/index.php:62
370
- msgid "You can help"
371
- msgstr "Vous pouvez aider"
372
-
373
- #: options/index.php:63
374
- msgid "Support"
375
- msgstr "Support"
376
-
377
- #: options/panel1-business-logic.php:19
378
- msgid "Subscription added."
379
- msgstr "Abonnement ajouté."
380
-
381
- #: options/panel1-business-logic.php:31
382
- msgid "Subscriptions updated."
383
- msgstr "Abonnement mis à jour."
384
-
385
- #: options/panel1-business-logic.php:40
386
- msgid "Subscription deleted."
387
- msgstr "Abonnement effacé."
388
-
389
- #: options/panel1-business-logic.php:59 templates/author.php:23
390
- #: templates/user.php:23
391
- msgid "Subscriptions deleted:"
392
- msgstr "Abonnements effacés :"
393
-
394
- #: options/panel1-business-logic.php:63 templates/author.php:27
395
- #: templates/user.php:27
396
- msgid "Subscriptions suspended:"
397
- msgstr "Abonnements suspendus :"
398
-
399
- #: options/panel1-business-logic.php:67 templates/author.php:31
400
- #: templates/user.php:31
401
- msgid "Subscriptions activated:"
402
- msgstr "Abonnements activés :"
403
-
404
- #: options/panel1-business-logic.php:71 options/panel1-business-logic.php:75
405
- #: templates/author.php:35 templates/author.php:39 templates/user.php:35
406
- #: templates/user.php:39
407
- msgid "Subscriptions updated:"
408
- msgstr "Abonnements mis à jour :"
409
-
410
- #: options/panel1-business-logic.php:99
411
- msgid "&laquo; Previous"
412
- msgstr "&laquo; Précédent"
413
-
414
- #: options/panel1-business-logic.php:103
415
- msgid "Next &raquo;"
416
- msgstr "Suivant &raquo;"
417
-
418
- #: options/panel1-edit-subscription.php:8
419
- msgid "Update Subscription"
420
- msgstr "Mise à jour de l'abonnement"
421
-
422
- #: options/panel1-edit-subscription.php:11
423
- #: options/panel1-edit-subscription.php:21
424
- #: options/panel1-edit-subscription.php:22
425
- #: options/panel1-edit-subscription.php:23 options/panel1.php:28
426
- #: options/panel1.php:29 options/panel1.php:30
427
- msgid "optional"
428
- msgstr "Optionnel"
429
-
430
- #: options/panel1-edit-subscription.php:11 options/panel1.php:22
431
- #: options/panel1.php:102 options/panel1.php:138 templates/author.php:52
432
- #: templates/user.php:52
433
- msgid ""
434
- "Please remember: this operation cannot be undone. Are you sure you want to "
435
- "proceed?"
436
- msgstr ""
437
- "Rappelez-vous : cette opération ne peut pas être annulée. Êtes-vous sûr de "
438
- "vouloir l'effectuer ?"
439
-
440
- #: options/panel1-edit-subscription.php:13
441
- msgid "Post:"
442
- msgstr "Billet :"
443
-
444
- #: options/panel1-edit-subscription.php:16 options/panel1.php:24
445
- msgid "From"
446
- msgstr "De"
447
-
448
- #: options/panel1-edit-subscription.php:20 options/panel1.php:27
449
- msgid "To"
450
- msgstr "À"
451
-
452
- #: options/panel1-edit-subscription.php:26 options/panel1.php:33
453
- #: options/panel1.php:59 options/panel1.php:124
454
- msgid "Status"
455
- msgstr "Statut"
456
-
457
- #: options/panel1-edit-subscription.php:28 options/panel1.php:35
458
- msgid "Keep unchanged"
459
- msgstr "Garder inchangé"
460
-
461
- #: options/panel1-edit-subscription.php:29 options/panel1.php:36
462
- #: options/panel1.php:61
463
- msgid "Active"
464
- msgstr "Actif"
465
-
466
- #: options/panel1-edit-subscription.php:30 options/panel1.php:37
467
- #: options/panel1.php:62
468
- msgid "Replies only"
469
- msgstr "Réponses seulement"
470
-
471
- #: options/panel1-edit-subscription.php:31 options/panel1.php:38
472
- msgid "Suspended"
473
- msgstr "Suspendu"
474
-
475
- #: options/panel1-edit-subscription.php:33 options/panel1.php:40
476
- msgid "Update"
477
- msgstr "Mise à jour"
478
-
479
- #: options/panel1.php:19
480
- msgid "Mass Update Subscriptions"
481
- msgstr "Mise à jour globale des abonnements"
482
-
483
- #: options/panel1.php:48
484
- msgid "Add New Subscription"
485
- msgstr "Ajouter un nouvel abonnement"
486
-
487
- #: options/panel1.php:53
488
- msgid "Post ID"
489
- msgstr "Billet (ID)"
490
-
491
- #: options/panel1.php:56 options/panel1.php:111
492
- #: templates/request-management-link.php:69 templates/subscribe.php:89
493
- #: templates/user.php:57
494
- msgid "Email"
495
- msgstr "Email"
496
-
497
- #: options/panel1.php:63
498
- msgid "Ask user to confirm"
499
- msgstr "Demander à l'utilisateur de confirmer"
500
-
501
- #: options/panel1.php:65
502
- msgid "Add"
503
- msgstr "Ajouter"
504
-
505
- #: options/panel1.php:76
506
- msgid "Search subscriptions"
507
- msgstr "Chercher les abonnements"
508
-
509
- #: options/panel1.php:80
510
- #, php-format
511
- msgid ""
512
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
513
- "where the"
514
- msgstr ""
515
- "Vous pouvez soit <a href=\"%s\">lister tous les abonnements</a> soit trouver "
516
- "ceux avec"
517
-
518
- #: options/panel1.php:84
519
- msgid "email"
520
- msgstr "Email"
521
-
522
- #: options/panel1.php:85
523
- msgid "post ID"
524
- msgstr "Billet (ID)"
525
-
526
- #: options/panel1.php:86
527
- msgid "status"
528
- msgstr "Statut"
529
-
530
- #: options/panel1.php:89
531
- msgid "equals"
532
- msgstr "égal à"
533
-
534
- #: options/panel1.php:90
535
- msgid "contains"
536
- msgstr "contient"
537
-
538
- #: options/panel1.php:91
539
- msgid "does not contain"
540
- msgstr "ne contient pas"
541
-
542
- #: options/panel1.php:92
543
- msgid "starts with"
544
- msgstr "commence par"
545
-
546
- #: options/panel1.php:93
547
- msgid "ends with"
548
- msgstr "finit par"
549
-
550
- #: options/panel1.php:96
551
- msgid "results per page:"
552
- msgstr "Résultats par page :"
553
-
554
- #: options/panel1.php:98
555
- msgid "Search"
556
- msgstr "Recherche"
557
-
558
- #: options/panel1.php:106
559
- msgid "Reverse the order by Post ID"
560
- msgstr "Inverser l'ordre par ID de billet"
561
-
562
- #: options/panel1.php:107 options/panel1.php:108
563
- msgid "Reverse the order by Date/Time"
564
- msgstr "Inverser l'ordre par date/heure"
565
-
566
- #: options/panel1.php:110
567
- msgid "Post (ID)"
568
- msgstr "Billet (ID)"
569
-
570
- #: options/panel1.php:113
571
- msgid "Search query:"
572
- msgstr "Recherche"
573
-
574
- #: options/panel1.php:113
575
- msgid "Rows:"
576
- msgstr "Lignes :"
577
-
578
- #: options/panel1.php:113
579
- msgid "of"
580
- msgstr "de"
581
-
582
- #: options/panel1.php:114 templates/author.php:58 templates/user.php:58
583
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
584
- msgstr ""
585
- "Légende : Y = tous les commentaires, R = réponses seulement, C = inactif"
586
-
587
- #: options/panel1.php:123
588
- msgid "Date and Time"
589
- msgstr "Date et heure"
590
-
591
- #: options/panel1.php:135
592
- msgid "Subscription"
593
- msgstr "Abonnements"
594
-
595
- #: options/panel1.php:137
596
- msgid "Edit"
597
- msgstr "Modifier"
598
-
599
- #: options/panel1.php:138 templates/author.php:72 templates/user.php:69
600
- msgid "Delete"
601
- msgstr "Supprimer"
602
-
603
- #: options/panel1.php:146 templates/author.php:71 templates/user.php:68
604
- msgid "Action:"
605
- msgstr "Action :"
606
-
607
- #: options/panel1.php:147
608
- msgid "Delete forever"
609
- msgstr "Suppression définitive"
610
-
611
- #: options/panel1.php:148 templates/author.php:73 templates/user.php:70
612
- msgid "Suspend"
613
- msgstr "Suspendre"
614
-
615
- #: options/panel1.php:149
616
- msgid "Activate and set to Y"
617
- msgstr "Activer et mettre à Y"
618
-
619
- #: options/panel1.php:150
620
- msgid "Activate and set to R"
621
- msgstr "Activer et mettre à R"
622
-
623
- #: options/panel1.php:151 templates/author.php:76 templates/user.php:73
624
- msgid "Activate"
625
- msgstr "Activer"
626
-
627
- #: options/panel1.php:152 templates/author.php:77 templates/user.php:75
628
- msgid "Update subscriptions"
629
- msgstr "Mettre à jour les abonnements"
630
-
631
- #: options/panel1.php:155
632
- msgid "Sorry, no subscriptions match your search criteria."
633
- msgstr "Désolé, aucun abonnement ne correspond à votre recherche."
634
-
635
- #: options/panel2.php:12 options/panel2.php:63
636
- msgid "Enable default checkbox"
637
- msgstr "Activer la case à cocher par défaut"
638
-
639
- #: options/panel2.php:15 options/panel2.php:73
640
- msgid "Checked by default"
641
- msgstr "Coché par défaut"
642
-
643
- #: options/panel2.php:18
644
- msgid "Checked by default Value"
645
- msgstr "Coché par défaut"
646
-
647
- #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
648
- msgid "Advanced subscription"
649
- msgstr "Abonnement avancé"
650
-
651
- #: options/panel2.php:27 options/panel2.php:130
652
- msgid "Custom inline style"
653
- msgstr "Style inline personnalisé"
654
-
655
- #: options/panel2.php:30 options/panel2.php:139
656
- msgid "Custom HTML"
657
- msgstr "HTML personnalisé"
658
-
659
- #: options/panel2.php:34
660
- msgid "Checkbox label"
661
- msgstr "Texte de la case à cocher"
662
-
663
- #: options/panel2.php:37 options/panel2.php:163
664
- msgid "Subscribed label"
665
- msgstr "Texte pour l'abonnement"
666
-
667
- #: options/panel2.php:40
668
- msgid "Awaiting label"
669
- msgstr "Texte pour l'attente de modération"
670
-
671
- #: options/panel2.php:43 options/panel2.php:180
672
- msgid "Author label"
673
- msgstr "Texte pour l'auteur"
674
-
675
- #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:57
676
- #: options/panel5.php:18 options/panel5.php:57
677
- msgid "Your settings have been successfully updated."
678
- msgstr "Vos réglages ont été sauvegardés avec succès."
679
-
680
- #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:59
681
- #: options/panel5.php:20 options/panel5.php:59
682
- msgid "There was an error updating the following fields:"
683
- msgstr "Une erreur est apparue lors de la mise à jour des champs suivants :"
684
-
685
- #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
686
- #: options/panel5.php:83 options/panel5.php:92 options/panel5.php:101
687
- #: options/panel5.php:111 options/panel5.php:120 options/panel5.php:130
688
- #: options/panel5.php:139 options/panel5.php:148
689
- msgid "Yes"
690
- msgstr "Oui"
691
-
692
- #: options/panel2.php:68
693
- msgid ""
694
- "Disable this option if you want to move the subscription checkbox to a "
695
- "different place on your page."
696
- msgstr ""
697
- "Désactivez cette option si vous voulez placer la case à cocher à un endroit "
698
- "différent."
699
-
700
- #: options/panel2.php:78
701
- msgid "Decide if the checkbox should be checked by default or not."
702
- msgstr "Décider si la case à cocher doit être cochée par défaut ou non."
703
-
704
- #: options/panel2.php:87
705
- msgid "Default Checkbox Value"
706
- msgstr "Activer la case à cocher par défaut"
707
-
708
- #: options/panel2.php:91 options/panel2.php:120
709
- msgid "All new comments"
710
- msgstr "Tous les nouveaux commentaires"
711
-
712
- #: options/panel2.php:92 options/panel2.php:121
713
- msgid "Replies to this comment"
714
- msgstr "Seulement les réponses à mes commentaires"
715
-
716
- #: options/panel2.php:94
717
- msgid ""
718
- "Select the default option for the Checkbox. Be careful! Some users might "
719
- "like to be subscribed to all the post."
720
- msgstr ""
721
- "Sélectionner l'option par défaut pour la case à cocher. Faites attention ! "
722
- "Certains utilisateurs pourraient avoir envoie d'être abonnés à tous les "
723
- "billets."
724
-
725
- #: options/panel2.php:107
726
- msgid ""
727
- "Allow users to choose from different subscription types (all, replies only)."
728
- msgstr ""
729
- "Permettre aux utilisateurs d'utiliser différents types d'abonnements (tout, "
730
- "réponses seulement)."
731
-
732
- #: options/panel2.php:115
733
- msgid "Advanced default"
734
- msgstr "Coché par défaut"
735
-
736
- #: options/panel2.php:119
737
- msgid "None"
738
- msgstr "Aucun"
739
-
740
- #: options/panel2.php:124
741
- msgid ""
742
- "The default subscription type that should be selected when Advanced "
743
- "subscriptions are enable."
744
- msgstr ""
745
- "Le type de souscription par défaut qui devrait être sélectionné quand les "
746
- "souscriptions avancées sont activées."
747
-
748
- #: options/panel2.php:135
749
- msgid "Custom inline CSS to add to the checkbox."
750
- msgstr "CSS inline personnalisé à ajouter à la case à cocher."
751
-
752
- #: options/panel2.php:143
753
- msgid ""
754
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
755
- "[checkbox_field], [checkbox_label]"
756
- msgstr ""
757
- "Code HTML personnalisé à utiliser pour l'affichage de la case à cocher. Tags "
758
- "autorisés: [checkbox_field], [checkbox_label]"
759
-
760
- #: options/panel2.php:149
761
- msgid "Messages for your visitors"
762
- msgstr "Messages pour vos visiteurs"
763
-
764
- #: options/panel2.php:153
765
- msgid "Default label"
766
- msgstr "Message par défaut"
767
-
768
- #: options/panel2.php:158
769
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
770
- msgstr "Message associé à la case à cocher. Tag autorisé : [subscribe_link]"
771
-
772
- #: options/panel2.php:167
773
- msgid ""
774
- "Label shown to those who are already subscribed to a post. Allowed tag: "
775
- "[manager_link]"
776
- msgstr ""
777
- "Message affiché pour ceux qui se sont déjà abonnés à un billet. Tag "
778
- "autorisé : [manager_link]"
779
-
780
- #: options/panel2.php:172
781
- msgid "Pending label"
782
- msgstr "Message d'attente de modération"
783
-
784
- #: options/panel2.php:176
785
- msgid ""
786
- "Label shown to those who are already subscribed, but haven't clicked on the "
787
- "confirmation link yet. Allowed tag: [manager_link]"
788
- msgstr ""
789
- "Message affiché à ceux qui sont déjà abonnés mais n'ont pas encore cliqué "
790
- "sur le lien de confirmation. Tag autorisé : [manager_link]"
791
-
792
- #: options/panel2.php:184
793
- msgid ""
794
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
795
- msgstr ""
796
- "Message affiché aux auteurs (et administrateurs). Tag autorisé: "
797
- "[manager_link]"
798
-
799
- #: options/panel2.php:189 options/panel3.php:197 options/panel4.php:182
800
- #: options/panel5.php:184
801
- msgid "Save Changes"
802
- msgstr "Sauvegarder les modifications"
803
-
804
- #: options/panel3.php:13 options/panel3.php:87
805
- msgid "Virtual Management Page"
806
- msgstr "Page de gestion virtuelle"
807
-
808
- #: options/panel3.php:18 options/panel3.php:96
809
- msgid "Page title"
810
- msgstr "Titre de la page"
811
-
812
- #: options/panel3.php:23 options/panel3.php:105
813
- msgid "Management URL"
814
- msgstr "Page de gestion"
815
-
816
- #: options/panel3.php:28 options/panel3.php:117
817
- msgid "Custom HEAD meta"
818
- msgstr "Meta HEAD personnalisé"
819
-
820
- #: options/panel3.php:34 options/panel3.php:131
821
- msgid "Request link"
822
- msgstr "Demande de lien"
823
-
824
- #: options/panel3.php:39 options/panel3.php:141
825
- msgid "Request submitted"
826
- msgstr "Demande envoyée"
827
-
828
- #: options/panel3.php:44 options/panel3.php:151
829
- msgid "Subscribe without commenting"
830
- msgstr "S'abonner sans commenter"
831
-
832
- #: options/panel3.php:49 options/panel3.php:161
833
- msgid "Subscription processed"
834
- msgstr "Abonnement traité"
835
-
836
- #: options/panel3.php:54 options/panel3.php:171
837
- msgid "Subscription processed (DCI)"
838
- msgstr "Abonnement traité (DCI)"
839
-
840
- #: options/panel3.php:59 options/panel3.php:180
841
- msgid "Authors"
842
- msgstr "Auteurs"
843
-
844
- #: options/panel3.php:64 options/panel3.php:188
845
- msgid "Users"
846
- msgstr "Utilisateurs"
847
-
848
- #: options/panel3.php:90
849
- msgid "Enabled"
850
- msgstr "Activé"
851
-
852
- #: options/panel3.php:91
853
- msgid "Disabled"
854
- msgstr "Désactivé"
855
-
856
- #: options/panel3.php:92
857
- msgid ""
858
- "Disable the virtual management page if you need to create a <a href=\"http://"
859
- "behstant.com/subscribe-reloaded/realMgnPage.php\">real page</a> to make your "
860
- "theme happy."
861
- msgstr ""
862
- "Désactivez la page de gestion virtuelle si vous devez créer une <a href="
863
- "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">vraie page</a> "
864
- "pour coller avec votre thème."
865
-
866
- #: options/panel3.php:101
867
- msgid "Title of the page your visitors will use to manage their subscriptions."
868
- msgstr ""
869
- "Titre de la page que vos visiteurs vont utiliser pour gérer leurs "
870
- "abonnements."
871
-
872
- #: options/panel3.php:109
873
- msgid ""
874
- "The permalink for your management page (something like <code>/manage-"
875
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
876
- "b> actually exist in the system, but its link must follow your permalink "
877
- "structure."
878
- msgstr ""
879
- "Le permalien pour votre page de gestion (quelque chose comme<code>/comment-"
880
- "subscriptions</code> ou <code>/?page_id=345</code>). Cette page <b>n'existe "
881
- "pas</b> actuellement dans le système mais son permalien doit respecter vos "
882
- "réglages de permaliens de Wordpress."
883
-
884
- #: options/panel3.php:111
885
- msgid ""
886
- "Warning: it looks like the value you are using may be incompatible with your "
887
- "permalink structure"
888
- msgstr ""
889
- "Attention: il semble que la valeur que vous utilisez pourrait être "
890
- "incompatible avec votre structure de permalien."
891
-
892
- #: options/panel3.php:121
893
- msgid ""
894
- "Specify your custom HTML code to be added to the HEAD section of the page. "
895
- "Use <strong>single</strong> quotes for values."
896
- msgstr ""
897
- "Indiquer le code HTML que vous voulez ajouter dans la section HEAD de la "
898
- "page. Utilisez des <strong>simples</strong> quotes pour les valeurs."
899
-
900
- #: options/panel3.php:127 options/panel4.php:100
901
- msgid "Messages"
902
- msgstr "Messages"
903
-
904
- #: options/panel3.php:136
905
- msgid "Text shown to those who request to manage their subscriptions."
906
- msgstr "Texte présenté à ceux qui demandent à gérer leurs abonnements."
907
-
908
- #: options/panel3.php:146
909
- msgid ""
910
- "Thank you note shown after the request here above has been processed. "
911
- "Allowed tags: [post_title], [post_permalink]"
912
- msgstr ""
913
- "Note de remerciement affichée après que la requête ait été traitée. Tags "
914
- "autorisés : [post_title], [post_permalink]"
915
-
916
- #: options/panel3.php:156
917
- msgid ""
918
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
919
- "[post_title], [post_permalink]"
920
- msgstr ""
921
- "Texte affiché à ceux qui désirent s'abonner sans commenter. Tags autorisés : "
922
- "[post_title], [post_permalink]"
923
-
924
- #: options/panel3.php:166
925
- msgid ""
926
- "Thank you note shown after the subscription request has been processed "
927
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
928
- msgstr ""
929
- "Note de remerciement affichée après que la requête d'abonnement ait été "
930
- "traitée (vérification désactivée). Tags autorisés : [post_title], "
931
- "[post_permalink]"
932
-
933
- #: options/panel3.php:176
934
- msgid ""
935
- "Thank you note shown after the subscription request has been processed "
936
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
937
- msgstr ""
938
- "Note de remerciement affichée après que la requête d'abonnement ait été "
939
- "traitée (vérification activée). Tags autorisés : [post_title], "
940
- "[post_permalink]"
941
-
942
- #: options/panel3.php:184
943
- msgid "Introductory text for the authors' management page."
944
- msgstr "Texte d'introduction pour la page de gestion des auteurs."
945
-
946
- #: options/panel3.php:192
947
- msgid "Introductory text for the users' management page."
948
- msgstr "Texte d'introduction pour la page de gestion des utilisateurs."
949
-
950
- #: options/panel4.php:16 options/panel4.php:72
951
- msgid "Sender name"
952
- msgstr "Nom de l'expéditeur"
953
-
954
- #: options/panel4.php:21 options/panel4.php:85
955
- msgid "Sender email address"
956
- msgstr "Adresse email de l'expéditeur"
957
-
958
- #: options/panel4.php:26 options/panel4.php:105
959
- msgid "Notification subject"
960
- msgstr "Sujet de notification"
961
-
962
- #: options/panel4.php:31 options/panel4.php:118
963
- msgid "Notification message"
964
- msgstr "Message de notification"
965
-
966
- #: options/panel4.php:36 options/panel4.php:132
967
- msgid "Double check subject"
968
- msgstr "Sujet de vérification"
969
-
970
- #: options/panel4.php:41 options/panel4.php:145
971
- msgid "Double check message"
972
- msgstr "Message de vérification"
973
-
974
- #: options/panel4.php:46 options/panel4.php:157
975
- msgid "Management subject"
976
- msgstr "Sujet de gestion"
977
-
978
- #: opti