Subscribe To Comments Reloaded - Version 160902

Version Description

= v160902 =

Fix release; PLEASE UPGRADE IMMEDIATELY This version fixes bugs regarding broken links and wrong management page assignments.

= v160831 =

Major Release On this version there have been a lot of patches and upgrades in the code, although there are many other issues to improve and fix this version will make your site and subscribers happy.

= v160115 =

Subscription broken Fix; PLEASE UPGRADE IMMEDIATELY. This fixes the broken links while trying to subscribe without commenting.

= v160106 =

This version is a mayor version change on StCR. It includes many changes and features like One Click Unsubscribe, A Rich editor for the notifications templates, Subscription Checkbox position, Huge code refactor just to mention a few.

= v150820 =

Security Fix; PLEASE UPGRADE IMMEDIATELY. v150820 fixes an XSS/CSRF vulnerability that was reported by a WordPress Plugin Repository moderator.

v150611 Fix the creation of the new table realated to the Google PII issue with AdWords, see v150422 Change log for details.

= v150611 =

v150611 Fix the creation of the new table realated to the Google PII issue with AdWords, see v150422 Change log for details.

= v150422 =

Security Fix; PLEASE UPGRADE IMMEDIATELY Google PII issue with AdWords. Protect user email Address and uses an encrypted key instead on URL. Several issues are fix, see the change log.

= v150207 =

Improvements on the links security. Now you get a Unique Key for your site. Check the Options Panel.

= v141103 =

Broken links and settings issue Please upgrade to fix the URL creation on the Request Management link and to save the settings values correctly.

= v141025 =

v1410124 Fixed several issues reported on the support forum like broken links, raw HTML on the messages, clean user interface with buttons not needed. See the change log for details.

= v140220 =

Security Fix; PLEASE UPGRADE IMMEDIATELY. v140219 fixes an XSS/CSRF vulnerability that was discovered by Tom Adams and reported by a WordPress Plugin Repository moderator.

Download this release

Release Info

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

Code changes from version 160831 to 160902

includes/css/stcr-admin-style.css CHANGED
@@ -1,57 +1,57 @@
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
- }
52
-
53
- .info-panel {
54
- background-color: #BBBBBB;
55
- padding: 8px;
56
- font-style: italic;
57
  }
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
+ }
52
+
53
+ .info-panel {
54
+ background-color: #BBBBBB;
55
+ padding: 8px;
56
+ font-style: italic;
57
  }
includes/js/stcr-admin.js CHANGED
@@ -1,62 +1,62 @@
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
- // More info action
43
- $('a.more-info').on("click", function( event ) {
44
- event.preventDefault();
45
- var info_panel = $( this ).data( "infopanel" );
46
- info_panel = "." + info_panel;
47
-
48
- $( ".postbox-mass").css("overflow","hidden");
49
-
50
- if( $( info_panel ).hasClass( "hidden") )
51
- {
52
- $( info_panel ).slideDown( "fast" );
53
- $( info_panel).removeClass( "hidden" );
54
- }
55
- else
56
- {
57
- $( info_panel ).slideUp( "fast" );
58
- $( info_panel).addClass( "hidden" );
59
- }
60
- });
61
- });
62
- } )( jQuery );
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
+ // More info action
43
+ $('a.more-info').on("click", function( event ) {
44
+ event.preventDefault();
45
+ var info_panel = $( this ).data( "infopanel" );
46
+ info_panel = "." + info_panel;
47
+
48
+ $( ".postbox-mass").css("overflow","hidden");
49
+
50
+ if( $( info_panel ).hasClass( "hidden") )
51
+ {
52
+ $( info_panel ).slideDown( "fast" );
53
+ $( info_panel).removeClass( "hidden" );
54
+ }
55
+ else
56
+ {
57
+ $( info_panel ).slideUp( "fast" );
58
+ $( info_panel).addClass( "hidden" );
59
+ }
60
+ });
61
+ });
62
+ } )( jQuery );
includes/js/stcr-tinyMCE.js CHANGED
@@ -1,14 +1,14 @@
1
- /**
2
- * Initialize all the tinyMCE code.
3
- * @since 03-Aug-2015
4
- * @author reedyseth
5
- * @description Disabled to use the WordPress one.
6
- */
7
- jQuery(document).ready(function() {
8
- // tinymce.init({
9
- // selector: "textarea.rte",
10
- // plugins: [
11
- // "link hr anchor code"
12
- // ]
13
- // });
14
- });
1
+ /**
2
+ * Initialize all the tinyMCE code.
3
+ * @since 03-Aug-2015
4
+ * @author reedyseth
5
+ * @description Disabled to use the WordPress one.
6
+ */
7
+ jQuery(document).ready(function() {
8
+ // tinymce.init({
9
+ // selector: "textarea.rte",
10
+ // plugins: [
11
+ // "link hr anchor code"
12
+ // ]
13
+ // });
14
+ });
langs/subscribe-reloaded-be_BY.mo CHANGED
Binary file
langs/subscribe-reloaded-be_BY.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:20-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:20-0700\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"
@@ -13,561 +13,337 @@ msgstr ""
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
- #: wp_subscribe_reloaded.php:114
20
- msgid "Settings"
21
- msgstr "Scegli ordine"
 
22
 
23
- #: wp_subscribe_reloaded.php:1060
24
- msgid "Don't subscribe"
25
- msgstr "Не падпісвацца"
26
 
27
- #: wp_subscribe_reloaded.php:1061
28
- msgid "All"
29
- msgstr "Усё"
30
 
31
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
32
- #: templates/author.php:75
33
- msgid "Replies to my comments"
34
- msgstr "Адказы на мае каментары"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
- #: templates/request-management-link.php:71 templates/key_expired.php:71
37
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
38
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
 
 
 
 
 
39
  msgid "Email"
40
  msgstr "Эл. адрас"
41
 
42
- #: templates/request-management-link.php:73 templates/key_expired.php:73
43
- #: templates/subscribe.php:92
44
- msgid "Send"
45
- msgstr "Адправіць"
 
46
 
47
- #: templates/key_expired.php:8
48
- msgid ""
49
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
50
- "enter your email below and a new link will be send."
51
- msgstr ""
52
 
53
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
54
- #: templates/author.php:80
55
- msgid "No subscriptions match your search criteria."
56
- msgstr "Ніводная падпіска не адпавядае пошукаваму запыту."
 
57
 
58
- #: templates/subscribe.php:42 templates/subscribe.php:43
59
- msgid "New subscription to"
60
- msgstr "Новая падпіска на"
61
 
62
- #: templates/subscribe.php:43
63
- msgid "User:"
64
- msgstr "Карыстач:"
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- #: templates/user.php:23 templates/author.php:23
67
- #: options/panel1-business-logic.php:70
68
  msgid "Subscriptions deleted:"
69
  msgstr "Падпіскі выдалены:"
70
 
71
- #: templates/user.php:27 templates/author.php:27
72
- #: options/panel1-business-logic.php:74
73
  msgid "Subscriptions suspended:"
74
  msgstr "Падпіскі прыпынены:"
75
 
76
- #: templates/user.php:31 templates/author.php:31
77
- #: options/panel1-business-logic.php:78
78
  msgid "Subscriptions activated:"
79
  msgstr "Падпіскі актываваны:"
80
 
81
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
82
- #: templates/author.php:39 options/panel1-business-logic.php:82
83
- #: options/panel1-business-logic.php:86
84
  msgid "Subscriptions updated:"
85
  msgstr "Падпіскі абноўлены:"
86
 
87
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
88
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
89
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
90
  msgid ""
91
  "Please remember: this operation cannot be undone. Are you sure you want to "
92
  "proceed?"
93
  msgstr ""
94
  "Увага: гэту аперацыю нельга адмяніць. Вы ўпэўнены, што жадаеце працягнуць?"
95
 
96
- #: templates/user.php:58 templates/author.php:58
97
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
98
- msgstr "Расшыфроўка: Y = усе каментары, R = толькі адказы, C = неактыўныя"
99
-
100
- #: templates/user.php:63
101
- msgid "F j, Y"
102
- msgstr ""
103
-
104
- #: templates/user.php:67 templates/author.php:69
105
- msgid "Select all"
106
- msgstr "Абраць усё"
107
-
108
- #: templates/user.php:68 templates/author.php:70
109
- msgid "Invert selection"
110
- msgstr "Абраць зваротнае"
111
-
112
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
113
- msgid "Action:"
114
- msgstr "Дзеянне:"
115
 
116
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
117
- #: options/panel1.php:212
118
- msgid "Delete"
119
- msgstr "Выдаліць"
120
 
121
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
122
- msgid "Suspend"
123
- msgstr "Прыпыніць"
124
 
125
- #: templates/user.php:72 templates/author.php:74
126
- msgid "All comments"
127
- msgstr ""
128
 
129
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
130
- msgid "Activate"
131
- msgstr "Уключыць"
132
 
133
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
134
- msgid "Update subscriptions"
135
- msgstr "Абнавіць падпіскі"
136
 
137
- #: templates/author.php:57
138
- msgid "Title"
139
- msgstr "Загаловак"
140
 
141
- #: utils/stcr_upgrade.php:55
142
- msgid "Important Notice"
143
- msgstr ""
144
 
145
- #: utils/stcr_upgrade.php:103
146
  msgid ""
147
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
148
- "database has been sanitized to prevent the raw html messages. <a class="
149
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
150
- "src=\""
151
  msgstr ""
152
 
153
- #: utils/stcr_upgrade.php:158
154
- msgid ""
155
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
156
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
157
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
158
- msgstr ""
159
 
160
- #: utils/stcr_upgrade.php:158
161
- msgid ""
162
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
163
- "Comments to prevent confusion between the two plugins."
164
- msgstr ""
165
 
166
- #: utils/stcr_upgrade.php:159
167
- msgid ""
168
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
169
- "that you want to import, you'll need to import that data manually, as only "
170
- "one import routine will ever run to prevent data loss."
171
- msgstr ""
172
 
173
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
174
- #: utils/stcr_upgrade.php:381
175
  msgid ""
176
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
177
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
178
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
179
- "\"stcr-loading-animation\" src=\""
180
  msgstr ""
 
181
 
182
- #: utils/stcr_upgrade.php:231
183
- msgid ""
184
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
185
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
186
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
187
- msgstr ""
188
 
189
- #: utils/stcr_upgrade.php:231
190
- msgid ""
191
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
192
- "Notification to prevent confusion between the two plugins."
193
- msgstr ""
194
 
195
- #: utils/stcr_upgrade.php:378
196
- msgid ""
197
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
198
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
199
- "were detected and automatically imported into <strong>Subscribe to Comments "
200
- "Reloaded</strong>."
201
- msgstr ""
202
 
203
- #: utils/stcr_upgrade.php:378
204
- msgid ""
205
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
206
- "Subscriptions to prevent confusion between the two plugins."
207
- msgstr ""
208
 
209
- #: utils/stcr_upgrade.php:379
210
- msgid ""
211
- "If you have subscription data from another plugin (such as Subscribe to "
212
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
213
- "you'll need to import that data manually, as only one import routine will "
214
- "ever run to prevent data loss."
215
- msgstr ""
216
 
217
- #: utils/stcr_upgrade.php:380
218
- msgid ""
219
- "<strong>Note:</strong> If you were previously using the "
220
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
221
- "subscribe-url]</code> shortcode, you'll need to replace those with "
222
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
223
- "respectively."
224
- msgstr ""
225
 
226
- #: utils/stcr_upgrade.php:394
227
- msgid ""
228
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
229
- msgstr ""
230
 
231
- #: utils/stcr_upgrade.php:395
232
- msgid ""
233
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
234
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
235
- msgstr ""
236
-
237
- #: utils/stcr_upgrade.php:396
238
- msgid ""
239
- "If you want to donate you can do it via <a href=\"\n"
240
- "https://www.paypal.com/cgi-bin/webscr?"
241
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
242
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
243
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
244
- msgstr ""
245
-
246
- #: utils/stcr_upgrade.php:398
247
- msgid ""
248
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
249
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
250
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
251
- "a><img class=\"stcr-loading-animation\" src=\""
252
- msgstr ""
253
-
254
- #: utils/stcr_upgrade.php:409
255
- msgid ""
256
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
257
- "160106."
258
- msgstr ""
259
-
260
- #: utils/stcr_upgrade.php:410
261
- msgid ""
262
- "This version includes many changes and fixes to improve your experience with "
263
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
264
- "email templates, Subscription Checkbox position, and more!"
265
- msgstr ""
266
-
267
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
268
- #: utils/stcr_upgrade.php:448
269
- msgid ""
270
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
271
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
272
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
273
- "class=\"stcr-loading-animation\" src=\""
274
- msgstr ""
275
-
276
- #: utils/stcr_upgrade.php:424
277
- msgid ""
278
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
279
- "160115."
280
- msgstr ""
281
-
282
- #: utils/stcr_upgrade.php:425
283
- msgid ""
284
- "This version includes fixes to broken links while managing your subscriptions"
285
- msgstr ""
286
-
287
- #: utils/stcr_upgrade.php:439
288
- msgid ""
289
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
290
- "160831"
291
- msgstr ""
292
-
293
- #: utils/stcr_upgrade.php:440
294
- msgid "This version includes fixes to many bugs and also new features, "
295
- msgstr ""
296
-
297
- #: utils/stcr_upgrade.php:442
298
- msgid ""
299
- "<strong>New Feature</strong> Add new option to set the Reply To email "
300
- "address. This will help the subscribers to use the Reply option in their "
301
- "email agents."
302
- msgstr ""
303
-
304
- #: utils/stcr_upgrade.php:443
305
- msgid ""
306
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
307
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
308
- msgstr ""
309
-
310
- #: utils/stcr_upgrade.php:444
311
- msgid ""
312
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
313
- "without loosing your subscriptions. You can use this option also for reset "
314
- "all the settings, see the FAQ."
315
- msgstr ""
316
-
317
- #: utils/stcr_upgrade.php:445
318
- msgid ""
319
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
320
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
321
- "Post Type."
322
- msgstr ""
323
-
324
- #: utils/stcr_upgrade.php:446
325
- msgid ""
326
- "<strong>New Feature</strong> A new field was added under the notification "
327
- "options to and the management link only by email and not to display it on "
328
- "the request link page."
329
- msgstr ""
330
-
331
- #: utils/stcr_manage.php:246
332
- msgid ""
333
- "Notify me of followup comments via e-mail. You can also <a "
334
- "href='[subscribe_link]'>subscribe</a> without commenting."
335
- msgstr ""
336
- "Атрымліваць новыя каментары па электроннай пошце. Вы можаце <a "
337
- "href='[subscribe_link]'>падпісацца</a> без каментавання."
338
-
339
- #: utils/stcr_manage.php:247
340
- msgid ""
341
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
342
- "subscriptions."
343
- msgstr ""
344
- "Вы падпісаны на гэты артыкул. <a href='[manager_link]'>Рэдагаваць</a> свае "
345
- "падпіскі."
346
-
347
- #: utils/stcr_manage.php:248
348
- msgid ""
349
- "Your subscription to this post needs to be confirmed. <a "
350
- "href='[manager_link]'>Manage your subscriptions</a>."
351
- msgstr ""
352
- "Ваша падпіска на гэты артыкул мае патрэбу ў пацверджанні. <a "
353
- "href='[manager_link]'>Рэдагаваць</a> свае падпіскі."
354
-
355
- #: utils/stcr_manage.php:249
356
- msgid ""
357
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
358
- msgstr ""
359
- "Вы можаце <a href='[manager_link]'>кіраваць падпіскамі</a> на гэты запіс."
360
-
361
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
362
- #: utils/stcr_manage.php:383 options/index.php:59
363
- msgid "Manage subscriptions"
364
- msgstr "Рэдагаваць падпіскі"
365
 
366
- #: utils/stcr_manage.php:255
367
- msgid ""
368
- "To manage your subscriptions, please enter your email address here below. We "
369
- "will send you a message containing the link to access your personal "
370
- "management page."
371
- msgstr ""
372
- "Для кіравання сваімі падпіскамі, калі ласка, увядзіце свой электронны адрас "
373
- "у форму ніжэй. Мы адправім вам паведамленне са спасылкай на вашу "
374
- "персанальную старонку кіравання."
375
 
376
- #: utils/stcr_manage.php:256
377
- msgid ""
378
- "Thank you for using our subscription service. Your request has been "
379
- "completed, and you should receive an email with the management link in a few "
380
- "minutes."
381
- msgstr ""
382
- "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. На "
383
- "працягу некалькіх хвілін вы павінны атрымаць ліст са спасылкай на старонку "
384
- "кіравання падпіскамі."
385
 
386
- #: utils/stcr_manage.php:257
387
- msgid ""
388
- "You can follow the discussion on <strong>[post_title]</strong> without "
389
- "having to leave a comment. Cool, huh? Just enter your email address in the "
390
- "form here below and you're all set."
391
- msgstr ""
392
- "Вы можаце сачыць за абмеркаваннем артыкула <strong>[post_title]</strong>, не "
393
- "пакідаючы свайго каментара. Выдатна, ці не праўда? Проста ўвядзіце свой "
394
- "электронны адрас у форму ніжэй, і гатова!"
395
 
396
- #: utils/stcr_manage.php:258
397
- msgid ""
398
- "Thank you for using our subscription service. Your request has been "
399
- "completed. You will receive a notification email every time a new comment to "
400
- "this article is approved and posted by the administrator."
401
- msgstr ""
402
- "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. Вы "
403
- "будзеце атрымліваць апавяшчэнні кожных разоў, як новы каментар да гэты "
404
- "артыкулу будзе ўхвалены і апублікаваны адміністратарам сайта."
405
 
406
- #: utils/stcr_manage.php:259
407
- msgid ""
408
- "Thank you for using our subscription service. In order to confirm your "
409
- "request, please check your email for the verification message and follow the "
410
- "instructions."
411
- msgstr ""
412
- "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Каб пацвердзіць свой "
413
- "запыт, калі ласка, праверце сваю пошту і вынікайце інструкцыям у лісце пра "
414
- "пацверджанне."
415
 
416
- #: utils/stcr_manage.php:260
417
- msgid ""
418
- "In order to cancel or suspend one or more notifications, select the "
419
- "corresponding checkbox(es) and click on the button at the end of the list."
420
- msgstr ""
421
- "Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
422
- "адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу."
423
 
424
- #: utils/stcr_manage.php:261
425
- msgid ""
426
- "In order to cancel or suspend one or more notifications, select the "
427
- "corresponding checkbox(es) and click on the button at the end of the list. "
428
- "You are currently subscribed to:"
429
- msgstr ""
430
- "Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
431
- "адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу. На дадзены "
432
- "момант вы падпісаны на:"
433
 
434
- #: utils/stcr_manage.php:265
435
- msgid "There is a new comment to [post_title]"
436
- msgstr "З'явіўся новы каментар да артыкула [post_title]"
437
 
438
- #: utils/stcr_manage.php:266
439
- msgid ""
440
- "There is a new comment to [post_title].\n"
441
- "Comment Link: [comment_permalink]\n"
442
- "Author: [comment_author]\n"
443
- "Comment:\n"
444
- "[comment_content]\n"
445
- "Permalink: [post_permalink]\n"
446
- "Manage your subscriptions: [manager_link]"
447
- msgstr ""
448
- "З'явіўся новы каментар да артыкула [post_title].\n"
449
- "Спасылка на каментар: [comment_permalink]\n"
450
- "Аўтар: [comment_author]\n"
451
- "Каментар:\n"
452
- "[comment_content]\n"
453
- "\n"
454
- "Спасылка на артыкул: [post_permalink]\n"
455
- "Кіраванне падпіскамі: [manager_link]"
456
 
457
- #: utils/stcr_manage.php:267
458
- msgid "Please confirm your subscription to [post_title]"
459
- msgstr "Калі ласка, пацвердзіце сваю падпіску на артыкул [post_title]"
460
 
461
- #: utils/stcr_manage.php:268
462
- msgid ""
463
- "You have requested to be notified every time a new comment is added to:\n"
464
- "[post_permalink]\n"
465
- "\n"
466
- "Please confirm your request by clicking on this link:\n"
467
- "[confirm_link]"
468
  msgstr ""
469
- "Вы зрабілі запыт на атрыманне новых каментароў да артыкула:\n"
470
- "[post_permalink]\n"
471
- "\n"
472
- "Калі ласка, перайдзіце па наступнай спасылцы, каб пацвердзіць падпіску:\n"
473
- "[confirm_link]"
474
-
475
- #: utils/stcr_manage.php:269
476
- msgid "Manage your subscriptions on [blog_name]"
477
- msgstr "Рэдагаваць свае падпіскі на сайце [blog_name]"
478
 
479
- #: utils/stcr_manage.php:270
480
- msgid ""
481
- "You have requested to manage your subscriptions to the articles on "
482
- "[blog_name]. Please check the Subscriptions management link in your email"
483
  msgstr ""
484
 
485
- #: utils/stcr_manage.php:271
486
- msgid ""
487
- "You have requested to manage your subscriptions to the articles on "
488
- "[blog_name]. Follow this link to access your personal page:\n"
489
- "[manager_link]"
490
- msgstr ""
491
- "Вы зрабілі запыт на рэдагаванне сваіх падпісак на каментары да артыкулаў на "
492
- "сайце [blog_name]. Вось спасылка на вашу асабістую старонку кіравання "
493
- "падпіскамі:\n"
494
- "[manager_link]"
495
 
496
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
497
- msgid "Comment Form"
498
- msgstr "Форма каментара"
 
499
 
500
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
501
- msgid "Management Page"
502
- msgstr "Старонка кіравання"
503
 
504
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
505
- msgid "Notifications"
506
- msgstr "Апавяшчэнні"
507
 
508
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
509
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
510
- msgid "Options"
511
- msgstr "Параметры"
512
 
513
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
514
- msgid "You can help"
515
- msgstr "Вы можаце дапамагчы"
516
 
517
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
518
- msgid "Support"
519
- msgstr "Падтрымка"
520
 
521
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
522
- msgid "Donate"
523
- msgstr ""
524
 
525
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
526
- msgid "StCR System"
527
- msgstr ""
528
 
529
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
530
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
531
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
532
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
533
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
534
- msgid "You do not have sufficient permissions to access this page."
535
- msgstr ""
536
 
537
- #: utils/stcr_manage.php:755
538
- msgid "Subscriptions"
539
- msgstr "Падпіскі"
540
 
541
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
542
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
543
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
544
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
545
- #: options/panel5.php:161
546
- msgid "No"
547
- msgstr "Не"
548
 
549
- #: utils/stcr_manage.php:811
550
- msgid ""
551
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
552
  msgstr ""
553
- "Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
554
- "Наведаеце наш афіцыйны"
555
-
556
- #: utils/stcr_manage.php:811
557
- msgid "support forum"
558
- msgstr "форум падтрымкі"
559
-
560
- #: utils/stcr_manage.php:812
561
- msgid "Feeling generous?"
562
- msgstr "Жадаеце выявіць шчодрасць?"
563
-
564
- #: utils/stcr_manage.php:812
565
- msgid "Donate a few bucks!"
566
- msgstr "Ахвяруйце пару баксаў!"
567
-
568
- #: utils/stcr_utils.php:195
569
- msgid "StCR Notification"
570
- msgstr "Апавяшчэнні"
571
 
572
  #: options/panel2.php:12 options/panel2.php:63
573
  msgid "Enable default checkbox"
@@ -609,13 +385,13 @@ msgstr "Цэтлік непацверджанай падпіскі"
609
  msgid "Author label"
610
  msgstr "Цэтлік аўтара"
611
 
612
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
613
- #: options/panel5.php:60 options/panel3.php:70
614
  msgid "Your settings have been successfully updated."
615
  msgstr "Вашы налады паспяхова абноўлены."
616
 
617
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
618
- #: options/panel5.php:62 options/panel3.php:72
619
  msgid "There was an error updating the following fields:"
620
  msgstr "Адбылася памылка ў абнаўленні наступных палёў:"
621
 
@@ -626,6 +402,14 @@ msgstr "Адбылася памылка ў абнаўленні наступны
626
  msgid "Yes"
627
  msgstr "Так"
628
 
 
 
 
 
 
 
 
 
629
  #: options/panel2.php:68
630
  msgid ""
631
  "Disable this option if you want to move the subscription checkbox to a "
@@ -670,76 +454,205 @@ msgstr "Абрана па змаўчанні"
670
  msgid "None"
671
  msgstr ""
672
 
673
- #: options/panel2.php:124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
674
  msgid ""
675
- "The default subscription type that should be selected when Advanced "
676
- "subscriptions are enable."
 
 
677
  msgstr ""
 
 
 
 
678
 
679
- #: options/panel2.php:135
680
- msgid "Custom inline CSS to add to the checkbox."
681
- msgstr "Змяняны Inline CSS для дадання да акенца выбару"
682
-
683
- #: options/panel2.php:152
684
  msgid ""
685
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
686
- "[checkbox_field], [checkbox_label]"
687
  msgstr ""
688
- "Уласны код HTML для выкарыстання пры адлюстраванні акенца выбару. Дазволеныя "
689
- "тэгі: [checkbox_field], [checkbox_label]"
690
 
691
- #: options/panel2.php:158
692
- msgid "Messages for your visitors"
693
- msgstr "Паведамленні вашым наведвальнікам"
 
 
 
 
694
 
695
- #: options/panel2.php:162
696
- msgid "Default label"
697
- msgstr "Стандартны цэтлік"
698
 
699
- #: options/panel2.php:175
700
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
701
- msgstr "Тэкст побач з акенцам выбару. Дазволены тэг: [subscribe_link]"
702
 
703
- #: options/panel2.php:192
704
  msgid ""
705
- "Label shown to those who are already subscribed to a post. Allowed tag: "
706
- "[manager_link]"
707
- msgstr "Тэкст, бачны якія падпісаліся чытачам. Дазволены тэг: [manager_link]"
708
-
709
- #: options/panel2.php:197
710
- msgid "Pending label"
711
- msgstr "Цэтлік \"У чаканні\" "
712
 
713
- #: options/panel2.php:209
714
  msgid ""
715
- "Label shown to those who are already subscribed, but haven't clicked on the "
716
- "confirmation link yet. Allowed tag: [manager_link]"
717
  msgstr ""
718
- "Тэкст, бачны чытачам, яшчэ не якія пацвердзілі сваю падпіску. Дазволены тэг: "
719
- "[manager_link]"
720
 
721
- #: options/panel2.php:225
722
  msgid ""
723
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
724
- msgstr "Тэст, бачны аўтарам і адміністратарам. Дазволены тэг: [manager_link]"
725
-
726
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
727
- #: options/panel3.php:253
728
- msgid "Save Changes"
729
- msgstr "Захаваць змены"
730
-
731
- #: options/panel9.php:11
732
- msgid "Support Subscribe to Comments Reloaded"
733
  msgstr ""
734
- "Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
735
- "Наведаеце наш афіцыйны"
736
 
737
- #: options/panel9.php:12
738
  msgid ""
739
- "Every contribution that you make is high valuable, so if you consider this "
740
- "plugin a helpful tool we will use your donation to invest on support and "
741
- "developing time."
742
  msgstr ""
 
 
 
 
 
 
 
 
 
 
743
 
744
  #: options/panel4.php:15 options/panel4.php:94
745
  msgid "Sender name"
@@ -799,10 +712,6 @@ msgid ""
799
  "will be the same as the Sender email address."
800
  msgstr ""
801
 
802
- #: options/panel4.php:135 options/panel3.php:127
803
- msgid "Messages"
804
- msgstr "Паведамленні"
805
-
806
  #: options/panel4.php:147
807
  msgid "Subject of the notification email. Allowed tag: [post_title]"
808
  msgstr "Тэма ліста з апавяшчэннем. Дазволены тэг: [post_title]"
@@ -834,37 +743,174 @@ msgstr ""
834
  "Тэкст ліста пра подтвеждении. Дазволеныя тэгі: [post_permalink], "
835
  "[confirm_link], [post_title], [manager_link]"
836
 
837
- #: options/panel4.php:217
838
- msgid ""
839
- "Subject of the mail sent to those who request to access their management "
840
- "page. Allowed tag: [blog_name]"
841
- msgstr ""
842
- "Тэма ліста падпісанту, які зрабіў запыт на доступ да старонкі кіравання "
843
- "падпіскамі. Дазволены тэг: [blog_name]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
844
 
845
- #: options/panel4.php:223
846
- msgid "Management Page message"
847
  msgstr ""
848
 
849
- #: options/panel4.php:237
850
- msgid "Content of the management Page message. Allowed tags: [blog_name]."
851
  msgstr ""
852
 
853
- #: options/panel4.php:257
854
- msgid ""
855
- "Content of the management email message. Allowed tags: [blog_name], "
856
- "[manager_link]."
857
  msgstr ""
858
 
859
- #: options/panel4.php:263
860
- msgid "One Click Unsubscribe"
861
- msgstr "Дазволіць адміну падпісвацца"
862
 
863
- #: options/panel4.php:277
864
  msgid ""
865
- "Content of the One Click confirmation. Allowed tags: [post_title], "
866
- "[blog_name]"
867
- msgstr "Тэма ліста пра пацверджанне. Дазволены тэг: [post_title]"
868
 
869
  #: options/panel7.php:8 options/panel8.php:8
870
  msgid "Support the developers"
@@ -934,529 +980,500 @@ msgstr ""
934
  "\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
935
  "\">Ацэніце</a> яго ў частцы ўбудоў на сайце Wordpress."
936
 
937
- #: options/panel1.php:20
938
- msgid "Mass Update Subscriptions"
939
- msgstr "Масава абнавіць падпіскі"
940
-
941
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
942
- msgid "From"
943
- msgstr "З"
944
 
945
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
946
- msgid "email address"
947
- msgstr "Эл. адрас адпраўніка"
 
 
 
 
948
 
949
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
950
- msgid "To"
951
- msgstr "на"
 
 
952
 
953
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
954
- msgid "optional - new email address"
955
- msgstr "Абнавіць электронны адрас"
 
 
 
956
 
957
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
958
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
959
- #: options/panel1-edit-subscription.php:26
960
- msgid "Status"
961
- msgstr "Статут"
962
 
963
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
964
- msgid "Keep unchanged"
965
- msgstr "Пакінуць без змен"
966
 
967
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
968
- #: options/panel1-add-subscription.php:22
969
- #: options/panel1-edit-subscription.php:29
970
- msgid "Active"
971
- msgstr "Актыўна"
972
 
973
- #: options/panel1.php:43 options/panel1.php:80
974
- #: options/panel1-add-subscription.php:23
975
- #: options/panel1-edit-subscription.php:30
976
- msgid "Replies only"
977
- msgstr "Толькі адказы"
978
 
979
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
980
- msgid "Suspended"
981
- msgstr "Прыпынена"
982
 
983
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
984
- #: options/panel1-edit-subscription.php:33
985
- msgid "Update"
986
- msgstr "Абнавіць"
987
 
988
- #: options/panel1.php:49
989
- msgid "More info"
990
- msgstr "Dettagli"
 
991
 
992
- #: options/panel1.php:55
993
  msgid ""
994
- "This option will allow you to change an email address for another one or to "
995
- "update the same status for all the subscription on a specific email address."
996
  msgstr ""
997
 
998
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
999
- msgid "Add New Subscription"
1000
- msgstr "Дадаць новую падпіску"
 
1001
 
1002
- #: options/panel1.php:68
1003
- msgid "Post ID"
1004
- msgstr "ID-нумар запісу"
1005
 
1006
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1007
- msgid "Ask user to confirm"
1008
- msgstr "Прасіць подтвреждение ад карыстача"
1009
 
1010
- #: options/panel1.php:83
1011
- msgid "Add"
1012
- msgstr "Дадаць"
1013
 
1014
- #: options/panel1.php:98
1015
- msgid "Search subscriptions"
1016
- msgstr "Шукаць у падпісках"
1017
 
1018
- #: options/panel1.php:102
1019
- #, php-format
1020
  msgid ""
1021
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1022
- "where the"
1023
  msgstr ""
1024
- "Вы можаце <a href=\"%s\">прагледзець усе падпіскі</a> ці знайсці тыя, дзе"
1025
-
1026
- #: options/panel1.php:106
1027
- msgid "email"
1028
- msgstr "эл. адрас"
1029
-
1030
- #: options/panel1.php:107
1031
- msgid "post ID"
1032
- msgstr "ID-нумар запісу"
1033
-
1034
- #: options/panel1.php:108
1035
- msgid "status"
1036
- msgstr "статут"
1037
-
1038
- #: options/panel1.php:111
1039
- msgid "equals"
1040
- msgstr "раўназначна"
1041
-
1042
- #: options/panel1.php:112
1043
- msgid "contains"
1044
- msgstr "утрымоўвае"
1045
-
1046
- #: options/panel1.php:113
1047
- msgid "does not contain"
1048
- msgstr "не ўтрымоўвае"
1049
-
1050
- #: options/panel1.php:114
1051
- msgid "starts with"
1052
- msgstr "пачынаецца з"
1053
-
1054
- #: options/panel1.php:115
1055
- msgid "ends with"
1056
- msgstr "сканчаецца на"
1057
-
1058
- #: options/panel1.php:118
1059
- msgid "results per page:"
1060
- msgstr "вынікі пастаронкава:"
1061
-
1062
- #: options/panel1.php:120
1063
- msgid "Search"
1064
- msgstr "Шукаць"
1065
-
1066
- #: options/panel1.php:128
1067
- msgid "Reverse the order by Post ID"
1068
- msgstr "Змяніць парадак па ID запісы"
1069
-
1070
- #: options/panel1.php:129 options/panel1.php:130
1071
- msgid "Reverse the order by Date/Time"
1072
- msgstr "Змяніць парадак па даце/чакай"
1073
-
1074
- #: options/panel1.php:132
1075
- msgid "Post (ID)"
1076
- msgstr "Запіс (ID)"
1077
 
1078
- #: options/panel1.php:135
1079
- msgid "Search query:"
1080
- msgstr "Пошукавы запыт:"
 
 
 
 
1081
 
1082
- #: options/panel1.php:135
1083
- msgid "Rows:"
1084
- msgstr "Шэрагі:"
 
 
 
 
1085
 
1086
- #: options/panel1.php:135
1087
- msgid "of"
1088
- msgstr " "
 
 
1089
 
1090
- #: options/panel1.php:142 options/panel1.php:158
1091
- msgid "Date and Time"
1092
- msgstr "Дата і час"
 
 
 
 
 
 
1093
 
1094
- #: options/panel1.php:168
1095
- msgid "Replies"
1096
- msgstr "Адказы"
 
 
 
 
 
 
1097
 
1098
- #: options/panel1.php:169
1099
- msgid "All Comments"
 
 
 
1100
  msgstr ""
 
 
 
1101
 
1102
- #: options/panel1.php:170
1103
- msgid "Unconfirmed"
 
 
 
1104
  msgstr ""
 
 
 
1105
 
1106
- #: options/panel1.php:171
1107
- msgid "Inactive"
1108
- msgstr "Актыўна"
 
 
 
 
 
 
1109
 
1110
- #: options/panel1.php:201 options/panel1.php:211
1111
- msgid "Edit"
1112
- msgstr "Рэдагаваць"
 
 
 
 
1113
 
1114
- #: options/panel1.php:203 options/panel1.php:209
1115
- msgid "Subscription"
1116
- msgstr "Падпіскі"
 
 
 
 
 
 
1117
 
1118
- #: options/panel1.php:226
1119
- msgid "Delete forever"
1120
- msgstr "Выдаліць назаўжды"
1121
 
1122
- #: options/panel1.php:228
1123
- msgid "Activate and set to Y"
1124
- msgstr "Уключыць і ўсталяваць на Y"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1125
 
1126
- #: options/panel1.php:229
1127
- msgid "Activate and set to R"
1128
- msgstr "Уключыць і ўсталяваць на R"
1129
 
1130
- #: options/panel1.php:237
1131
- msgid "Sorry, no subscriptions match your search criteria."
1132
- msgstr "Выбачыце, ніводная падпіска не адпавядае вашаму пошукаваму запыту."
 
 
 
 
 
 
 
 
 
 
1133
 
1134
- #: options/panel1-business-logic.php:23
1135
- msgid "Subscription added."
1136
- msgstr "Падпіска дададзена."
1137
 
1138
- #: options/panel1-business-logic.php:39
1139
- msgid "Subscriptions updated."
1140
- msgstr "Падпіскі абноўлены."
 
 
1141
 
1142
- #: options/panel1-business-logic.php:51
1143
- msgid "Subscription deleted."
1144
- msgstr "Падпіска выдалена."
 
 
 
 
 
 
 
1145
 
1146
- #: options/panel1-business-logic.php:110
1147
- msgid "&laquo; Previous"
1148
- msgstr "&laquo; Зваротна"
1149
 
1150
- #: options/panel1-business-logic.php:114
1151
- msgid "Next &raquo;"
1152
- msgstr "Наперад &raquo;"
 
 
 
 
1153
 
1154
- #: options/panel1-add-subscription.php:13
1155
- #: options/panel1-edit-subscription.php:13
1156
- msgid "Post:"
1157
- msgstr "Запіс:"
1158
 
1159
- #: options/panel5.php:28
1160
- msgid "Safetly Uninstall"
 
1161
  msgstr ""
 
 
1162
 
1163
- #: options/panel5.php:31 options/panel5.php:84
1164
- msgid "Autopurge requests"
1165
- msgstr "Аўтаматычна выдаляць запыты"
1166
-
1167
- #: options/panel5.php:34 options/panel5.php:93
1168
- msgid "Enable double check"
1169
- msgstr "Уключыць падвойнае пацверджанне"
1170
 
1171
- #: options/panel5.php:37 options/panel5.php:101
1172
- msgid "Subscribe authors"
1173
- msgstr ""
1174
 
1175
- #: options/panel5.php:40 options/panel5.php:111
1176
- msgid "Enable HTML emails"
1177
- msgstr "Выкарыстоўваць HTML лісты"
1178
 
1179
- #: options/panel5.php:43
1180
- msgid "HTMLify Links in HTML emails"
1181
  msgstr ""
1182
 
1183
- #: options/panel5.php:46
1184
- msgid "Send trackbacks"
1185
- msgstr "Адпраўляць трэкбеки"
1186
-
1187
- #: options/panel5.php:49
1188
- msgid "Notify admin"
1189
- msgstr "Апавясціць адміна"
1190
 
1191
- #: options/panel5.php:52 options/panel5.php:149
1192
- msgid "Let admin subscribe"
1193
- msgstr "Дазволіць адміну падпісвацца"
 
 
 
1194
 
1195
- #: options/panel5.php:55 options/panel5.php:158
1196
- msgid "BCC admin on Notifications"
1197
- msgstr "Апавяшчэнні"
 
 
1198
 
1199
- #: options/panel5.php:76
1200
- msgid "Safely Uninstall"
 
 
 
1201
  msgstr ""
1202
 
1203
- #: options/panel5.php:80
 
1204
  msgid ""
1205
- "This option will allow you to delete the plugin with WordPress without "
1206
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
 
1207
  msgstr ""
1208
 
1209
- #: options/panel5.php:87
1210
- msgid "days"
1211
- msgstr "дзён"
 
 
 
1212
 
1213
- #: options/panel5.php:88
1214
  msgid ""
1215
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1216
- "this feature."
1217
  msgstr ""
1218
- "Выдаляць якія чакаюць пацверджанні (не пацверджаныя) падпіскі праз Х дзён. "
1219
- "Нуль адключае гэту функцыю."
1220
 
1221
- #: options/panel5.php:97
1222
  msgid ""
1223
- "Send a notification email to confirm the subscription (to avoid addresses "
1224
- "misuse)."
 
 
1225
  msgstr ""
1226
- "Адпраўляць ліст з просьбай пацвердзіць падпіску (каб пазбегнуць выкарыстанні "
1227
- "эл. адрасы без вядзёная ўладальніка)"
1228
 
1229
- #: options/panel5.php:106
1230
  msgid ""
1231
- "Automatically subscribe authors to their own articles (not retroactive)."
 
1232
  msgstr ""
1233
 
1234
- #: options/panel5.php:115
1235
  msgid ""
1236
- "If enabled, will send email messages with content-type = text/html instead "
1237
- "of text/plain"
 
 
1238
  msgstr ""
1239
- "Пры выбары гэтай функцыі паведамлення будуць адпраўляцца ў фармаце тэкст/"
1240
- "html замест звычайнага тэксту"
1241
 
1242
- #: options/panel5.php:120
1243
- msgid "HTMLify links in emails"
 
 
 
 
 
1244
  msgstr ""
1245
 
1246
- #: options/panel5.php:125
1247
  msgid ""
1248
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1249
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1250
  msgstr ""
1251
 
1252
- #: options/panel5.php:130
1253
- msgid "Process trackbacks"
1254
- msgstr "Апрацоўваць трэкбеки"
1255
-
1256
- #: options/panel5.php:134
1257
  msgid ""
1258
- "Notify users when a new trackback or pingback is added to the discussion."
 
1259
  msgstr ""
1260
- "Апавяшчаць падпісантаў пра новыя трэкбеках ці пингбэках да абмеркавання"
1261
-
1262
- #: options/panel5.php:139
1263
- msgid "Track all subscriptions"
1264
- msgstr "Адсачыць усе падпіскі"
1265
-
1266
- #: options/panel5.php:144
1267
- msgid "Notify the administrator when users subscribe without commenting."
1268
- msgstr "Апавяшчаць адміністратара, калі карыстачы падпісваюцца без каментара."
1269
-
1270
- #: options/panel5.php:153
1271
- msgid "Let the administrator subscribe to comments when logged in."
1272
- msgstr "Дазволіць адміну падпісвацца, калі ён аўтарызаваны."
1273
 
1274
- #: options/panel5.php:162
1275
- msgid "Send a copy of all Notifications to the administrator."
 
 
 
 
 
 
1276
  msgstr ""
1277
 
1278
- #: options/panel5.php:167
1279
- msgid "StCR Unique Key"
 
 
 
 
1280
  msgstr ""
1281
 
1282
- #: options/panel5.php:172
1283
- msgid "This Unique Key is not set, please click the following button to "
 
 
1284
  msgstr ""
1285
 
1286
- #: options/panel5.php:176 options/panel5.php:187
1287
- msgid "Generate"
1288
- msgstr "Tasso di rimbalzo"
1289
-
1290
- #: options/panel5.php:184
1291
  msgid ""
1292
- "This Unique Key will be use to send the notification to your subscribers "
1293
- "with more security."
 
1294
  msgstr ""
1295
 
1296
- #: options/panel8.php:18
1297
- msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
1298
  msgstr ""
1299
 
1300
- #: options/panel8.php:19
1301
  msgid ""
1302
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1303
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1304
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1305
- "WordPress Support page."
1306
  msgstr ""
1307
 
1308
- #: options/panel1-edit-subscription.php:8
1309
- msgid "Update Subscription"
1310
- msgstr "Абнавіць падпіску"
1311
-
1312
- #: options/panel1-edit-subscription.php:11
1313
- #: options/panel1-edit-subscription.php:21
1314
- #: options/panel1-edit-subscription.php:22
1315
- #: options/panel1-edit-subscription.php:23
1316
- msgid "optional"
1317
- msgstr "па выбары"
1318
-
1319
- #: options/panel10.php:22 options/panel10.php:23
1320
- msgid "System Information"
1321
  msgstr ""
1322
 
1323
- #: options/panel3.php:13 options/panel3.php:87
1324
- msgid "Virtual Management Page"
1325
- msgstr "Віртуальная старонка кіравання"
1326
-
1327
- #: options/panel3.php:18 options/panel3.php:96
1328
- msgid "Page title"
1329
- msgstr "Загаловак старонкі"
1330
-
1331
- #: options/panel3.php:23 options/panel3.php:105
1332
- msgid "Management URL"
1333
- msgstr "URL кіраванні"
1334
-
1335
- #: options/panel3.php:28 options/panel3.php:117
1336
- msgid "Custom HEAD meta"
1337
- msgstr "Уласны HEAD meta-тэг"
1338
-
1339
- #: options/panel3.php:34 options/panel3.php:131
1340
- msgid "Request link"
1341
- msgstr "Спасылка на запыт"
1342
-
1343
- #: options/panel3.php:39 options/panel3.php:149
1344
- msgid "Request submitted"
1345
- msgstr "Запыт адпраўлены"
1346
-
1347
- #: options/panel3.php:44 options/panel3.php:167
1348
- msgid "Subscribe without commenting"
1349
- msgstr "Падпіска без каментавання"
1350
-
1351
- #: options/panel3.php:49 options/panel3.php:185
1352
- msgid "Subscription processed"
1353
- msgstr "Падпіска аформлена"
1354
-
1355
- #: options/panel3.php:54 options/panel3.php:203
1356
- msgid "Subscription processed (DCI)"
1357
- msgstr "Падпіска аформлена (DCI)"
1358
-
1359
- #: options/panel3.php:59 options/panel3.php:220
1360
- msgid "Authors"
1361
- msgstr "Аўтары"
1362
-
1363
- #: options/panel3.php:64 options/panel3.php:236
1364
- msgid "Users"
1365
- msgstr "Карыстачы"
1366
-
1367
- #: options/panel3.php:90
1368
- msgid "Enabled"
1369
- msgstr "Уключана"
1370
-
1371
- #: options/panel3.php:91
1372
- msgid "Disabled"
1373
- msgstr "Выключана"
1374
-
1375
- #: options/panel3.php:92
1376
  msgid ""
1377
- "Disable the virtual management page if you need to create a <a href="
1378
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1379
- "real-management-page\">real page</a> to make your theme happy."
1380
  msgstr ""
1381
- "Адменіце віртуальную старонку кіравання, калі вам трэба стварыць <a href="
1382
- "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">сапраўдную "
1383
- "старонку</a> для карэктнай працы ўбудовы з вашай тэмай афармлення."
1384
 
1385
- #: options/panel3.php:101
1386
- msgid "Title of the page your visitors will use to manage their subscriptions."
1387
- msgstr "Загаловак старонкі, на якой карыстачы будуць рэдагаваць свае падпіскі."
1388
 
1389
- #: options/panel3.php:109
1390
  msgid ""
1391
- "The permalink for your management page (something like <code>/manage-"
1392
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1393
- "b> actually exist in the system, but its link must follow your permalink "
1394
- "structure."
1395
  msgstr ""
1396
- "Сталая спасылка на вашу старонку кіравання (штосьці накшталт <code>/manage-"
1397
- "subscriptions</code> ці <code>/page_id=345</code>). Гэта старонка фактычна "
1398
- "<b>не існуе</b> у сістэме, але сталая спасылка на яе павінна адпавядаць "
1399
- "вашым усталёўкам сталых спасылак у Wordpress."
1400
 
1401
- #: options/panel3.php:111
1402
  msgid ""
1403
- "Warning: it looks like the value you are using may be incompatible with your "
1404
- "permalink structure"
1405
  msgstr ""
1406
- "Увага: магчыма, выкарыстоўванае вамі значэнне несумяшчальна з вашай "
1407
- "структурай сталых спасылак"
1408
 
1409
- #: options/panel3.php:121
1410
  msgid ""
1411
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1412
- "Use <strong>single</strong> quotes for values."
 
1413
  msgstr ""
1414
- "Пакажыце свой код HTML для дадання ў HEAD старонкі. Выкарыстоўвайце "
1415
- "<strong>адзінарныя</strong> двукоссі для значэнняў."
1416
-
1417
- #: options/panel3.php:144
1418
- msgid "Text shown to those who request to manage their subscriptions."
1419
- msgstr "Тэкст, бачны якія зрабілі запыт на кіраванне падпіскамі."
1420
 
1421
- #: options/panel3.php:162
1422
  msgid ""
1423
- "Thank you note shown after the request here above has been processed. "
1424
- "Allowed tags: [post_title], [post_permalink]"
 
1425
  msgstr ""
1426
- "Тэкст падзякі, які выводзіцца пасля апрацоўкі зробленага запыту. Дазволены "
1427
- "тэгі: [post_title], [post_permalink]"
1428
 
1429
- #: options/panel3.php:180
1430
  msgid ""
1431
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1432
- "[post_title], [post_permalink]"
 
1433
  msgstr ""
1434
- "Тэкст для ахвотнікаў падпісацца без каментавання. Дазволены тэгі: "
1435
- "[post_title], [post_permalink]"
1436
 
1437
- #: options/panel3.php:198
1438
  msgid ""
1439
- "Thank you note shown after the subscription request has been processed "
1440
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1441
  msgstr ""
1442
- "Тэкст падзякі, які выводзіцца пасля апрацоўкі запыту на падпіску (падвойнае "
1443
- "пацверджанне адключана). Дазволены тэгі: [post_title], [post_permalink]"
1444
 
1445
- #: options/panel3.php:216
1446
  msgid ""
1447
- "Thank you note shown after the subscription request has been processed "
1448
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
1449
  msgstr ""
1450
- "Тэкст падзякі, які выводзіцца пасля апрацоўкі запыту на падпіску (падвойнае "
1451
- "пацверджанне ўключана). Дазволены тэгі: [post_title], [post_permalink]"
1452
 
1453
- #: options/panel3.php:232
1454
- msgid "Introductory text for the authors' management page."
1455
- msgstr "Уступны тэкст на старонцы кіравання падпіскамі для аўтараў."
1456
 
1457
- #: options/panel3.php:248
1458
- msgid "Introductory text for the users' management page."
1459
- msgstr "Уступны тэкст на старонцы кіравання падпіскамі для падпісантаў."
 
 
 
 
 
 
 
 
1460
 
1461
  #~ msgid "StCR Subscription Box Position"
1462
  #~ msgstr "Новая падпіска на"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:24-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:24-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: Web Geeks\n"
9
  "Language: be_BY\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: s;\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
20
+ #: utils/stcr_manage.php:383
21
+ msgid "Manage subscriptions"
22
+ msgstr "Рэдагаваць падпіскі"
23
 
24
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
25
+ msgid "Comment Form"
26
+ msgstr "Форма каментара"
27
 
28
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
29
+ msgid "Management Page"
30
+ msgstr "Старонка кіравання"
31
 
32
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
33
+ msgid "Notifications"
34
+ msgstr "Апавяшчэнні"
35
+
36
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
37
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
38
+ msgid "Options"
39
+ msgstr "Параметры"
40
+
41
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
42
+ msgid "You can help"
43
+ msgstr "Вы можаце дапамагчы"
44
+
45
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
46
+ msgid "Support"
47
+ msgstr "Падтрымка"
48
+
49
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
50
+ msgid "Donate"
51
+ msgstr ""
52
+
53
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
54
+ msgid "Add New Subscription"
55
+ msgstr "Дадаць новую падпіску"
56
 
57
+ #: options/panel1-add-subscription.php:13
58
+ #: options/panel1-edit-subscription.php:13
59
+ msgid "Post:"
60
+ msgstr "Запіс:"
61
+
62
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
63
+ #: options/panel1.php:133 templates/key_expired.php:84
64
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
65
+ #: templates/user.php:57
66
  msgid "Email"
67
  msgstr "Эл. адрас"
68
 
69
+ #: options/panel1-add-subscription.php:20
70
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
71
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
72
+ msgid "Status"
73
+ msgstr "Статут"
74
 
75
+ #: options/panel1-add-subscription.php:22
76
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
77
+ #: options/panel1.php:79 options/panel1.php:172
78
+ msgid "Active"
79
+ msgstr "Актыўна"
80
 
81
+ #: options/panel1-add-subscription.php:23
82
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
83
+ #: options/panel1.php:80
84
+ msgid "Replies only"
85
+ msgstr "Толькі адказы"
86
 
87
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
88
+ msgid "Ask user to confirm"
89
+ msgstr "Прасіць подтвреждение ад карыстача"
90
 
91
+ #: options/panel1-add-subscription.php:26
92
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
93
+ msgid "Update"
94
+ msgstr "Абнавіць"
95
+
96
+ #: options/panel1-business-logic.php:23
97
+ msgid "Subscription added."
98
+ msgstr "Падпіска дададзена."
99
+
100
+ #: options/panel1-business-logic.php:39
101
+ msgid "Subscriptions updated."
102
+ msgstr "Падпіскі абноўлены."
103
+
104
+ #: options/panel1-business-logic.php:51
105
+ msgid "Subscription deleted."
106
+ msgstr "Падпіска выдалена."
107
 
108
+ #: options/panel1-business-logic.php:70 templates/author.php:23
109
+ #: templates/user.php:23
110
  msgid "Subscriptions deleted:"
111
  msgstr "Падпіскі выдалены:"
112
 
113
+ #: options/panel1-business-logic.php:74 templates/author.php:27
114
+ #: templates/user.php:27
115
  msgid "Subscriptions suspended:"
116
  msgstr "Падпіскі прыпынены:"
117
 
118
+ #: options/panel1-business-logic.php:78 templates/author.php:31
119
+ #: templates/user.php:31
120
  msgid "Subscriptions activated:"
121
  msgstr "Падпіскі актываваны:"
122
 
123
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
124
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
125
+ #: templates/user.php:39
126
  msgid "Subscriptions updated:"
127
  msgstr "Падпіскі абноўлены:"
128
 
129
+ #: options/panel1-business-logic.php:110
130
+ msgid "&laquo; Previous"
131
+ msgstr "&laquo; Зваротна"
132
+
133
+ #: options/panel1-business-logic.php:114
134
+ msgid "Next &raquo;"
135
+ msgstr "Наперад &raquo;"
136
+
137
+ #: options/panel1-edit-subscription.php:8
138
+ msgid "Update Subscription"
139
+ msgstr "Абнавіць падпіску"
140
+
141
  #: options/panel1-edit-subscription.php:11
142
+ #: options/panel1-edit-subscription.php:21
143
+ #: options/panel1-edit-subscription.php:22
144
+ #: options/panel1-edit-subscription.php:23
145
+ msgid "optional"
146
+ msgstr "па выбары"
147
+
148
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
149
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
150
+ #: templates/author.php:52 templates/user.php:52
151
  msgid ""
152
  "Please remember: this operation cannot be undone. Are you sure you want to "
153
  "proceed?"
154
  msgstr ""
155
  "Увага: гэту аперацыю нельга адмяніць. Вы ўпэўнены, што жадаеце працягнуць?"
156
 
157
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
158
+ msgid "From"
159
+ msgstr "З"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
 
161
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
162
+ msgid "To"
163
+ msgstr "на"
 
164
 
165
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
166
+ msgid "Keep unchanged"
167
+ msgstr "Пакінуць без змен"
168
 
169
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
170
+ msgid "Suspended"
171
+ msgstr "Прыпынена"
172
 
173
+ #: options/panel1.php:20
174
+ msgid "Mass Update Subscriptions"
175
+ msgstr "Масава абнавіць падпіскі"
176
 
177
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
178
+ msgid "email address"
179
+ msgstr "Эл. адрас адпраўніка"
180
 
181
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
182
+ msgid "optional - new email address"
183
+ msgstr "Абнавіць электронны адрас"
184
 
185
+ #: options/panel1.php:49
186
+ msgid "More info"
187
+ msgstr "Dettagli"
188
 
189
+ #: options/panel1.php:55
190
  msgid ""
191
+ "This option will allow you to change an email address for another one or to "
192
+ "update the same status for all the subscription on a specific email address."
 
 
193
  msgstr ""
194
 
195
+ #: options/panel1.php:68
196
+ msgid "Post ID"
197
+ msgstr "ID-нумар запісу"
 
 
 
198
 
199
+ #: options/panel1.php:83
200
+ msgid "Add"
201
+ msgstr "Дадаць"
 
 
202
 
203
+ #: options/panel1.php:98
204
+ msgid "Search subscriptions"
205
+ msgstr "Шукаць у падпісках"
 
 
 
206
 
207
+ #: options/panel1.php:102
208
+ #, php-format
209
  msgid ""
210
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
211
+ "where the"
 
 
212
  msgstr ""
213
+ "Вы можаце <a href=\"%s\">прагледзець усе падпіскі</a> ці знайсці тыя, дзе"
214
 
215
+ #: options/panel1.php:106
216
+ msgid "email"
217
+ msgstr "эл. адрас"
 
 
 
218
 
219
+ #: options/panel1.php:107
220
+ msgid "post ID"
221
+ msgstr "ID-нумар запісу"
 
 
222
 
223
+ #: options/panel1.php:108
224
+ msgid "status"
225
+ msgstr "статут"
 
 
 
 
226
 
227
+ #: options/panel1.php:111
228
+ msgid "equals"
229
+ msgstr "раўназначна"
 
 
230
 
231
+ #: options/panel1.php:112
232
+ msgid "contains"
233
+ msgstr "утрымоўвае"
 
 
 
 
234
 
235
+ #: options/panel1.php:113
236
+ msgid "does not contain"
237
+ msgstr "не ўтрымоўвае"
 
 
 
 
 
238
 
239
+ #: options/panel1.php:114
240
+ msgid "starts with"
241
+ msgstr "пачынаецца з"
 
242
 
243
+ #: options/panel1.php:115
244
+ msgid "ends with"
245
+ msgstr "сканчаецца на"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
 
247
+ #: options/panel1.php:118
248
+ msgid "results per page:"
249
+ msgstr "вынікі пастаронкава:"
 
 
 
 
 
 
250
 
251
+ #: options/panel1.php:120
252
+ msgid "Search"
253
+ msgstr "Шукаць"
 
 
 
 
 
 
254
 
255
+ #: options/panel1.php:128
256
+ msgid "Reverse the order by Post ID"
257
+ msgstr "Змяніць парадак па ID запісы"
 
 
 
 
 
 
258
 
259
+ #: options/panel1.php:129 options/panel1.php:130
260
+ msgid "Reverse the order by Date/Time"
261
+ msgstr "Змяніць парадак па даце/чакай"
 
 
 
 
 
 
262
 
263
+ #: options/panel1.php:132
264
+ msgid "Post (ID)"
265
+ msgstr "Запіс (ID)"
 
 
 
 
 
 
266
 
267
+ #: options/panel1.php:135
268
+ msgid "Search query:"
269
+ msgstr "Пошукавы запыт:"
 
 
 
 
270
 
271
+ #: options/panel1.php:135
272
+ msgid "Rows:"
273
+ msgstr "Шэрагі:"
 
 
 
 
 
 
274
 
275
+ #: options/panel1.php:135
276
+ msgid "of"
277
+ msgstr " "
278
 
279
+ #: options/panel1.php:142 options/panel1.php:158
280
+ msgid "Date and Time"
281
+ msgstr "Дата і час"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
 
283
+ #: options/panel1.php:168
284
+ msgid "Replies"
285
+ msgstr "Адказы"
286
 
287
+ #: options/panel1.php:169
288
+ msgid "All Comments"
 
 
 
 
 
289
  msgstr ""
 
 
 
 
 
 
 
 
 
290
 
291
+ #: options/panel1.php:170
292
+ msgid "Unconfirmed"
 
 
293
  msgstr ""
294
 
295
+ #: options/panel1.php:171
296
+ msgid "Inactive"
297
+ msgstr "Актыўна"
 
 
 
 
 
 
 
298
 
299
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
300
+ #: templates/user.php:70
301
+ msgid "Delete"
302
+ msgstr "Выдаліць"
303
 
304
+ #: options/panel1.php:201 options/panel1.php:211
305
+ msgid "Edit"
306
+ msgstr "Рэдагаваць"
307
 
308
+ #: options/panel1.php:203 options/panel1.php:209
309
+ msgid "Subscription"
310
+ msgstr "Падпіскі"
311
 
312
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
313
+ msgid "Action:"
314
+ msgstr "Дзеянне:"
 
315
 
316
+ #: options/panel1.php:226
317
+ msgid "Delete forever"
318
+ msgstr "Выдаліць назаўжды"
319
 
320
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
321
+ msgid "Suspend"
322
+ msgstr "Прыпыніць"
323
 
324
+ #: options/panel1.php:228
325
+ msgid "Activate and set to Y"
326
+ msgstr "Уключыць і ўсталяваць на Y"
327
 
328
+ #: options/panel1.php:229
329
+ msgid "Activate and set to R"
330
+ msgstr "Уключыць і ўсталяваць на R"
331
 
332
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
333
+ msgid "Activate"
334
+ msgstr "Уключыць"
 
 
 
 
335
 
336
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
337
+ msgid "Update subscriptions"
338
+ msgstr "Абнавіць падпіскі"
339
 
340
+ #: options/panel1.php:237
341
+ msgid "Sorry, no subscriptions match your search criteria."
342
+ msgstr "Выбачыце, ніводная падпіска не адпавядае вашаму пошукаваму запыту."
 
 
 
 
343
 
344
+ #: options/panel10.php:22 options/panel10.php:23
345
+ msgid "System Information"
 
346
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
347
 
348
  #: options/panel2.php:12 options/panel2.php:63
349
  msgid "Enable default checkbox"
385
  msgid "Author label"
386
  msgstr "Цэтлік аўтара"
387
 
388
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
389
+ #: options/panel5.php:18 options/panel5.php:60
390
  msgid "Your settings have been successfully updated."
391
  msgstr "Вашы налады паспяхова абноўлены."
392
 
393
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
394
+ #: options/panel5.php:20 options/panel5.php:62
395
  msgid "There was an error updating the following fields:"
396
  msgstr "Адбылася памылка ў абнаўленні наступных палёў:"
397
 
402
  msgid "Yes"
403
  msgstr "Так"
404
 
405
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
406
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
407
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
408
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
409
+ #: utils/stcr_manage.php:784
410
+ msgid "No"
411
+ msgstr "Не"
412
+
413
  #: options/panel2.php:68
414
  msgid ""
415
  "Disable this option if you want to move the subscription checkbox to a "
454
  msgid "None"
455
  msgstr ""
456
 
457
+ #: options/panel2.php:124
458
+ msgid ""
459
+ "The default subscription type that should be selected when Advanced "
460
+ "subscriptions are enable."
461
+ msgstr ""
462
+
463
+ #: options/panel2.php:135
464
+ msgid "Custom inline CSS to add to the checkbox."
465
+ msgstr "Змяняны Inline CSS для дадання да акенца выбару"
466
+
467
+ #: options/panel2.php:152
468
+ msgid ""
469
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
470
+ "[checkbox_field], [checkbox_label]"
471
+ msgstr ""
472
+ "Уласны код HTML для выкарыстання пры адлюстраванні акенца выбару. Дазволеныя "
473
+ "тэгі: [checkbox_field], [checkbox_label]"
474
+
475
+ #: options/panel2.php:158
476
+ msgid "Messages for your visitors"
477
+ msgstr "Паведамленні вашым наведвальнікам"
478
+
479
+ #: options/panel2.php:162
480
+ msgid "Default label"
481
+ msgstr "Стандартны цэтлік"
482
+
483
+ #: options/panel2.php:175
484
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
485
+ msgstr "Тэкст побач з акенцам выбару. Дазволены тэг: [subscribe_link]"
486
+
487
+ #: options/panel2.php:192
488
+ msgid ""
489
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
490
+ "[manager_link]"
491
+ msgstr "Тэкст, бачны якія падпісаліся чытачам. Дазволены тэг: [manager_link]"
492
+
493
+ #: options/panel2.php:197
494
+ msgid "Pending label"
495
+ msgstr "Цэтлік \"У чаканні\" "
496
+
497
+ #: options/panel2.php:209
498
+ msgid ""
499
+ "Label shown to those who are already subscribed, but haven't clicked on the "
500
+ "confirmation link yet. Allowed tag: [manager_link]"
501
+ msgstr ""
502
+ "Тэкст, бачны чытачам, яшчэ не якія пацвердзілі сваю падпіску. Дазволены тэг: "
503
+ "[manager_link]"
504
+
505
+ #: options/panel2.php:225
506
+ msgid ""
507
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
508
+ msgstr "Тэст, бачны аўтарам і адміністратарам. Дазволены тэг: [manager_link]"
509
+
510
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
511
+ #: options/panel5.php:195
512
+ msgid "Save Changes"
513
+ msgstr "Захаваць змены"
514
+
515
+ #: options/panel3.php:13 options/panel3.php:87
516
+ msgid "Virtual Management Page"
517
+ msgstr "Віртуальная старонка кіравання"
518
+
519
+ #: options/panel3.php:18 options/panel3.php:96
520
+ msgid "Page title"
521
+ msgstr "Загаловак старонкі"
522
+
523
+ #: options/panel3.php:23 options/panel3.php:105
524
+ msgid "Management URL"
525
+ msgstr "URL кіраванні"
526
+
527
+ #: options/panel3.php:28 options/panel3.php:117
528
+ msgid "Custom HEAD meta"
529
+ msgstr "Уласны HEAD meta-тэг"
530
+
531
+ #: options/panel3.php:34 options/panel3.php:131
532
+ msgid "Request link"
533
+ msgstr "Спасылка на запыт"
534
+
535
+ #: options/panel3.php:39 options/panel3.php:149
536
+ msgid "Request submitted"
537
+ msgstr "Запыт адпраўлены"
538
+
539
+ #: options/panel3.php:44 options/panel3.php:167
540
+ msgid "Subscribe without commenting"
541
+ msgstr "Падпіска без каментавання"
542
+
543
+ #: options/panel3.php:49 options/panel3.php:185
544
+ msgid "Subscription processed"
545
+ msgstr "Падпіска аформлена"
546
+
547
+ #: options/panel3.php:54 options/panel3.php:203
548
+ msgid "Subscription processed (DCI)"
549
+ msgstr "Падпіска аформлена (DCI)"
550
+
551
+ #: options/panel3.php:59 options/panel3.php:220
552
+ msgid "Authors"
553
+ msgstr "Аўтары"
554
+
555
+ #: options/panel3.php:64 options/panel3.php:236
556
+ msgid "Users"
557
+ msgstr "Карыстачы"
558
+
559
+ #: options/panel3.php:90
560
+ msgid "Enabled"
561
+ msgstr "Уключана"
562
+
563
+ #: options/panel3.php:91
564
+ msgid "Disabled"
565
+ msgstr "Выключана"
566
+
567
+ #: options/panel3.php:92
568
+ msgid ""
569
+ "Disable the virtual management page if you need to create a <a href="
570
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
571
+ "real-management-page\">real page</a> to make your theme happy."
572
+ msgstr ""
573
+ "Адменіце віртуальную старонку кіравання, калі вам трэба стварыць <a href="
574
+ "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">сапраўдную "
575
+ "старонку</a> для карэктнай працы ўбудовы з вашай тэмай афармлення."
576
+
577
+ #: options/panel3.php:101
578
+ msgid "Title of the page your visitors will use to manage their subscriptions."
579
+ msgstr "Загаловак старонкі, на якой карыстачы будуць рэдагаваць свае падпіскі."
580
+
581
+ #: options/panel3.php:109
582
  msgid ""
583
+ "The permalink for your management page (something like <code>/manage-"
584
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
585
+ "b> actually exist in the system, but its link must follow your permalink "
586
+ "structure."
587
  msgstr ""
588
+ "Сталая спасылка на вашу старонку кіравання (штосьці накшталт <code>/manage-"
589
+ "subscriptions</code> ці <code>/page_id=345</code>). Гэта старонка фактычна "
590
+ "<b>не існуе</b> у сістэме, але сталая спасылка на яе павінна адпавядаць "
591
+ "вашым усталёўкам сталых спасылак у Wordpress."
592
 
593
+ #: options/panel3.php:111
 
 
 
 
594
  msgid ""
595
+ "Warning: it looks like the value you are using may be incompatible with your "
596
+ "permalink structure"
597
  msgstr ""
598
+ "Увага: магчыма, выкарыстоўванае вамі значэнне несумяшчальна з вашай "
599
+ "структурай сталых спасылак"
600
 
601
+ #: options/panel3.php:121
602
+ msgid ""
603
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
604
+ "Use <strong>single</strong> quotes for values."
605
+ msgstr ""
606
+ "Пакажыце свой код HTML для дадання ў HEAD старонкі. Выкарыстоўвайце "
607
+ "<strong>адзінарныя</strong> двукоссі для значэнняў."
608
 
609
+ #: options/panel3.php:127 options/panel4.php:135
610
+ msgid "Messages"
611
+ msgstr "Паведамленні"
612
 
613
+ #: options/panel3.php:144
614
+ msgid "Text shown to those who request to manage their subscriptions."
615
+ msgstr "Тэкст, бачны якія зрабілі запыт на кіраванне падпіскамі."
616
 
617
+ #: options/panel3.php:162
618
  msgid ""
619
+ "Thank you note shown after the request here above has been processed. "
620
+ "Allowed tags: [post_title], [post_permalink]"
621
+ msgstr ""
622
+ "Тэкст падзякі, які выводзіцца пасля апрацоўкі зробленага запыту. Дазволены "
623
+ "тэгі: [post_title], [post_permalink]"
 
 
624
 
625
+ #: options/panel3.php:180
626
  msgid ""
627
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
628
+ "[post_title], [post_permalink]"
629
  msgstr ""
630
+ "Тэкст для ахвотнікаў падпісацца без каментавання. Дазволены тэгі: "
631
+ "[post_title], [post_permalink]"
632
 
633
+ #: options/panel3.php:198
634
  msgid ""
635
+ "Thank you note shown after the subscription request has been processed "
636
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
 
 
 
 
 
 
 
 
637
  msgstr ""
638
+ "Тэкст падзякі, які выводзіцца пасля апрацоўкі запыту на падпіску (падвойнае "
639
+ "пацверджанне адключана). Дазволены тэгі: [post_title], [post_permalink]"
640
 
641
+ #: options/panel3.php:216
642
  msgid ""
643
+ "Thank you note shown after the subscription request has been processed "
644
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
645
  msgstr ""
646
+ "Тэкст падзякі, які выводзіцца пасля апрацоўкі запыту на падпіску (падвойнае "
647
+ "пацверджанне ўключана). Дазволены тэгі: [post_title], [post_permalink]"
648
+
649
+ #: options/panel3.php:232
650
+ msgid "Introductory text for the authors' management page."
651
+ msgstr "Уступны тэкст на старонцы кіравання падпіскамі для аўтараў."
652
+
653
+ #: options/panel3.php:248
654
+ msgid "Introductory text for the users' management page."
655
+ msgstr "Уступны тэкст на старонцы кіравання падпіскамі для падпісантаў."
656
 
657
  #: options/panel4.php:15 options/panel4.php:94
658
  msgid "Sender name"
712
  "will be the same as the Sender email address."
713
  msgstr ""
714
 
 
 
 
 
715
  #: options/panel4.php:147
716
  msgid "Subject of the notification email. Allowed tag: [post_title]"
717
  msgstr "Тэма ліста з апавяшчэннем. Дазволены тэг: [post_title]"
743
  "Тэкст ліста пра подтвеждении. Дазволеныя тэгі: [post_permalink], "
744
  "[confirm_link], [post_title], [manager_link]"
745
 
746
+ #: options/panel4.php:217
747
+ msgid ""
748
+ "Subject of the mail sent to those who request to access their management "
749
+ "page. Allowed tag: [blog_name]"
750
+ msgstr ""
751
+ "Тэма ліста падпісанту, які зрабіў запыт на доступ да старонкі кіравання "
752
+ "падпіскамі. Дазволены тэг: [blog_name]"
753
+
754
+ #: options/panel4.php:223
755
+ msgid "Management Page message"
756
+ msgstr ""
757
+
758
+ #: options/panel4.php:237
759
+ msgid "Content of the management Page message. Allowed tags: [blog_name]."
760
+ msgstr ""
761
+
762
+ #: options/panel4.php:257
763
+ msgid ""
764
+ "Content of the management email message. Allowed tags: [blog_name], "
765
+ "[manager_link]."
766
+ msgstr ""
767
+
768
+ #: options/panel4.php:263
769
+ msgid "One Click Unsubscribe"
770
+ msgstr "Дазволіць адміну падпісвацца"
771
+
772
+ #: options/panel4.php:277
773
+ msgid ""
774
+ "Content of the One Click confirmation. Allowed tags: [post_title], "
775
+ "[blog_name]"
776
+ msgstr "Тэма ліста пра пацверджанне. Дазволены тэг: [post_title]"
777
+
778
+ #: options/panel5.php:28
779
+ msgid "Safetly Uninstall"
780
+ msgstr ""
781
+
782
+ #: options/panel5.php:31 options/panel5.php:84
783
+ msgid "Autopurge requests"
784
+ msgstr "Аўтаматычна выдаляць запыты"
785
+
786
+ #: options/panel5.php:34 options/panel5.php:93
787
+ msgid "Enable double check"
788
+ msgstr "Уключыць падвойнае пацверджанне"
789
+
790
+ #: options/panel5.php:37 options/panel5.php:101
791
+ msgid "Subscribe authors"
792
+ msgstr ""
793
+
794
+ #: options/panel5.php:40 options/panel5.php:111
795
+ msgid "Enable HTML emails"
796
+ msgstr "Выкарыстоўваць HTML лісты"
797
+
798
+ #: options/panel5.php:43
799
+ msgid "HTMLify Links in HTML emails"
800
+ msgstr ""
801
+
802
+ #: options/panel5.php:46
803
+ msgid "Send trackbacks"
804
+ msgstr "Адпраўляць трэкбеки"
805
+
806
+ #: options/panel5.php:49
807
+ msgid "Notify admin"
808
+ msgstr "Апавясціць адміна"
809
+
810
+ #: options/panel5.php:52 options/panel5.php:149
811
+ msgid "Let admin subscribe"
812
+ msgstr "Дазволіць адміну падпісвацца"
813
+
814
+ #: options/panel5.php:55 options/panel5.php:158
815
+ msgid "BCC admin on Notifications"
816
+ msgstr "Апавяшчэнні"
817
+
818
+ #: options/panel5.php:76
819
+ msgid "Safely Uninstall"
820
+ msgstr ""
821
+
822
+ #: options/panel5.php:80
823
+ msgid ""
824
+ "This option will allow you to delete the plugin with WordPress without "
825
+ "loosing your subscribers. Any database table and plugin options are wipeout."
826
+ msgstr ""
827
+
828
+ #: options/panel5.php:87
829
+ msgid "days"
830
+ msgstr "дзён"
831
+
832
+ #: options/panel5.php:88
833
+ msgid ""
834
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
835
+ "this feature."
836
+ msgstr ""
837
+ "Выдаляць якія чакаюць пацверджанні (не пацверджаныя) падпіскі праз Х дзён. "
838
+ "Нуль адключае гэту функцыю."
839
+
840
+ #: options/panel5.php:97
841
+ msgid ""
842
+ "Send a notification email to confirm the subscription (to avoid addresses "
843
+ "misuse)."
844
+ msgstr ""
845
+ "Адпраўляць ліст з просьбай пацвердзіць падпіску (каб пазбегнуць выкарыстанні "
846
+ "эл. адрасы без вядзёная ўладальніка)"
847
+
848
+ #: options/panel5.php:106
849
+ msgid ""
850
+ "Automatically subscribe authors to their own articles (not retroactive)."
851
+ msgstr ""
852
+
853
+ #: options/panel5.php:115
854
+ msgid ""
855
+ "If enabled, will send email messages with content-type = text/html instead "
856
+ "of text/plain"
857
+ msgstr ""
858
+ "Пры выбары гэтай функцыі паведамлення будуць адпраўляцца ў фармаце тэкст/"
859
+ "html замест звычайнага тэксту"
860
+
861
+ #: options/panel5.php:120
862
+ msgid "HTMLify links in emails"
863
+ msgstr ""
864
+
865
+ #: options/panel5.php:125
866
+ msgid ""
867
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
868
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
869
+ msgstr ""
870
+
871
+ #: options/panel5.php:130
872
+ msgid "Process trackbacks"
873
+ msgstr "Апрацоўваць трэкбеки"
874
+
875
+ #: options/panel5.php:134
876
+ msgid ""
877
+ "Notify users when a new trackback or pingback is added to the discussion."
878
+ msgstr ""
879
+ "Апавяшчаць падпісантаў пра новыя трэкбеках ці пингбэках да абмеркавання"
880
+
881
+ #: options/panel5.php:139
882
+ msgid "Track all subscriptions"
883
+ msgstr "Адсачыць усе падпіскі"
884
+
885
+ #: options/panel5.php:144
886
+ msgid "Notify the administrator when users subscribe without commenting."
887
+ msgstr "Апавяшчаць адміністратара, калі карыстачы падпісваюцца без каментара."
888
+
889
+ #: options/panel5.php:153
890
+ msgid "Let the administrator subscribe to comments when logged in."
891
+ msgstr "Дазволіць адміну падпісвацца, калі ён аўтарызаваны."
892
 
893
+ #: options/panel5.php:162
894
+ msgid "Send a copy of all Notifications to the administrator."
895
  msgstr ""
896
 
897
+ #: options/panel5.php:167
898
+ msgid "StCR Unique Key"
899
  msgstr ""
900
 
901
+ #: options/panel5.php:172
902
+ msgid "This Unique Key is not set, please click the following button to "
 
 
903
  msgstr ""
904
 
905
+ #: options/panel5.php:176 options/panel5.php:187
906
+ msgid "Generate"
907
+ msgstr "Tasso di rimbalzo"
908
 
909
+ #: options/panel5.php:184
910
  msgid ""
911
+ "This Unique Key will be use to send the notification to your subscribers "
912
+ "with more security."
913
+ msgstr ""
914
 
915
  #: options/panel7.php:8 options/panel8.php:8
916
  msgid "Support the developers"
980
  "\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
981
  "\">Ацэніце</a> яго ў частцы ўбудоў на сайце Wordpress."
982
 
983
+ #: options/panel8.php:18
984
+ msgid "Did you find a Bug on the plugin?"
985
+ msgstr ""
 
 
 
 
986
 
987
+ #: options/panel8.php:19
988
+ msgid ""
989
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
990
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
991
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
992
+ "WordPress Support page."
993
+ msgstr ""
994
 
995
+ #: options/panel9.php:11
996
+ msgid "Support Subscribe to Comments Reloaded"
997
+ msgstr ""
998
+ "Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
999
+ "Наведаеце наш афіцыйны"
1000
 
1001
+ #: options/panel9.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
+ #: templates/author.php:57
1009
+ msgid "Title"
1010
+ msgstr "Загаловак"
 
 
1011
 
1012
+ #: templates/author.php:58 templates/user.php:58
1013
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1014
+ msgstr "Расшыфроўка: Y = усе каментары, R = толькі адказы, C = неактыўныя"
1015
 
1016
+ #: templates/author.php:69 templates/user.php:67
1017
+ msgid "Select all"
1018
+ msgstr "Абраць усё"
 
 
1019
 
1020
+ #: templates/author.php:70 templates/user.php:68
1021
+ msgid "Invert selection"
1022
+ msgstr "Абраць зваротнае"
 
 
1023
 
1024
+ #: templates/author.php:74 templates/user.php:72
1025
+ msgid "All comments"
1026
+ msgstr ""
1027
 
1028
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1029
+ msgid "Replies to my comments"
1030
+ msgstr "Адказы на мае каментары"
 
1031
 
1032
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1033
+ #: templates/user.php:79
1034
+ msgid "No subscriptions match your search criteria."
1035
+ msgstr "Ніводная падпіска не адпавядае пошукаваму запыту."
1036
 
1037
+ #: templates/key_expired.php:8
1038
  msgid ""
1039
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1040
+ "enter your email below and a new link will be send."
1041
  msgstr ""
1042
 
1043
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1044
+ #: templates/subscribe.php:106
1045
+ msgid "Send"
1046
+ msgstr "Адправіць"
1047
 
1048
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1049
+ msgid "New subscription to"
1050
+ msgstr "Новая падпіска на"
1051
 
1052
+ #: templates/subscribe.php:44
1053
+ msgid "User:"
1054
+ msgstr "Карыстач:"
1055
 
1056
+ #: templates/user.php:63
1057
+ msgid "F j, Y"
1058
+ msgstr ""
1059
 
1060
+ #: templates/wrong-request.php:9
1061
+ msgid "You have request to manage another email address and this is forbidden."
1062
+ msgstr ""
1063
 
1064
+ #: utils/stcr_manage.php:246
 
1065
  msgid ""
1066
+ "Notify me of followup comments via e-mail. You can also <a "
1067
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1068
  msgstr ""
1069
+ "Атрымліваць новыя каментары па электроннай пошце. Вы можаце <a "
1070
+ "href='[subscribe_link]'>падпісацца</a> без каментавання."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1071
 
1072
+ #: utils/stcr_manage.php:247
1073
+ msgid ""
1074
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1075
+ "subscriptions."
1076
+ msgstr ""
1077
+ "Вы падпісаны на гэты артыкул. <a href='[manager_link]'>Рэдагаваць</a> свае "
1078
+ "падпіскі."
1079
 
1080
+ #: utils/stcr_manage.php:248
1081
+ msgid ""
1082
+ "Your subscription to this post needs to be confirmed. <a "
1083
+ "href='[manager_link]'>Manage your subscriptions</a>."
1084
+ msgstr ""
1085
+ "Ваша падпіска на гэты артыкул мае патрэбу ў пацверджанні. <a "
1086
+ "href='[manager_link]'>Рэдагаваць</a> свае падпіскі."
1087
 
1088
+ #: utils/stcr_manage.php:249
1089
+ msgid ""
1090
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1091
+ msgstr ""
1092
+ "Вы можаце <a href='[manager_link]'>кіраваць падпіскамі</a> на гэты запіс."
1093
 
1094
+ #: utils/stcr_manage.php:255
1095
+ msgid ""
1096
+ "To manage your subscriptions, please enter your email address here below. We "
1097
+ "will send you a message containing the link to access your personal "
1098
+ "management page."
1099
+ msgstr ""
1100
+ "Для кіравання сваімі падпіскамі, калі ласка, увядзіце свой электронны адрас "
1101
+ "у форму ніжэй. Мы адправім вам паведамленне са спасылкай на вашу "
1102
+ "персанальную старонку кіравання."
1103
 
1104
+ #: utils/stcr_manage.php:256
1105
+ msgid ""
1106
+ "Thank you for using our subscription service. Your request has been "
1107
+ "completed, and you should receive an email with the management link in a few "
1108
+ "minutes."
1109
+ msgstr ""
1110
+ "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. На "
1111
+ "працягу некалькіх хвілін вы павінны атрымаць ліст са спасылкай на старонку "
1112
+ "кіравання падпіскамі."
1113
 
1114
+ #: utils/stcr_manage.php:257
1115
+ msgid ""
1116
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1117
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1118
+ "form here below and you're all set."
1119
  msgstr ""
1120
+ "Вы можаце сачыць за абмеркаваннем артыкула <strong>[post_title]</strong>, не "
1121
+ "пакідаючы свайго каментара. Выдатна, ці не праўда? Проста ўвядзіце свой "
1122
+ "электронны адрас у форму ніжэй, і гатова!"
1123
 
1124
+ #: utils/stcr_manage.php:258
1125
+ msgid ""
1126
+ "Thank you for using our subscription service. Your request has been "
1127
+ "completed. You will receive a notification email every time a new comment to "
1128
+ "this article is approved and posted by the administrator."
1129
  msgstr ""
1130
+ "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. Вы "
1131
+ "будзеце атрымліваць апавяшчэнні кожных разоў, як новы каментар да гэты "
1132
+ "артыкулу будзе ўхвалены і апублікаваны адміністратарам сайта."
1133
 
1134
+ #: utils/stcr_manage.php:259
1135
+ msgid ""
1136
+ "Thank you for using our subscription service. In order to confirm your "
1137
+ "request, please check your email for the verification message and follow the "
1138
+ "instructions."
1139
+ msgstr ""
1140
+ "Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Каб пацвердзіць свой "
1141
+ "запыт, калі ласка, праверце сваю пошту і вынікайце інструкцыям у лісце пра "
1142
+ "пацверджанне."
1143
 
1144
+ #: utils/stcr_manage.php:260
1145
+ msgid ""
1146
+ "In order to cancel or suspend one or more notifications, select the "
1147
+ "corresponding checkbox(es) and click on the button at the end of the list."
1148
+ msgstr ""
1149
+ "Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
1150
+ "адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу."
1151
 
1152
+ #: utils/stcr_manage.php:261
1153
+ msgid ""
1154
+ "In order to cancel or suspend one or more notifications, select the "
1155
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1156
+ "You are currently subscribed to:"
1157
+ msgstr ""
1158
+ "Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
1159
+ "адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу. На дадзены "
1160
+ "момант вы падпісаны на:"
1161
 
1162
+ #: utils/stcr_manage.php:265
1163
+ msgid "There is a new comment to [post_title]"
1164
+ msgstr "З'явіўся новы каментар да артыкула [post_title]"
1165
 
1166
+ #: utils/stcr_manage.php:266
1167
+ msgid ""
1168
+ "There is a new comment to [post_title].\n"
1169
+ "Comment Link: [comment_permalink]\n"
1170
+ "Author: [comment_author]\n"
1171
+ "Comment:\n"
1172
+ "[comment_content]\n"
1173
+ "Permalink: [post_permalink]\n"
1174
+ "Manage your subscriptions: [manager_link]"
1175
+ msgstr ""
1176
+ "З'явіўся новы каментар да артыкула [post_title].\n"
1177
+ "Спасылка на каментар: [comment_permalink]\n"
1178
+ "Аўтар: [comment_author]\n"
1179
+ "Каментар:\n"
1180
+ "[comment_content]\n"
1181
+ "\n"
1182
+ "Спасылка на артыкул: [post_permalink]\n"
1183
+ "Кіраванне падпіскамі: [manager_link]"
1184
 
1185
+ #: utils/stcr_manage.php:267
1186
+ msgid "Please confirm your subscription to [post_title]"
1187
+ msgstr "Калі ласка, пацвердзіце сваю падпіску на артыкул [post_title]"
1188
 
1189
+ #: utils/stcr_manage.php:268
1190
+ msgid ""
1191
+ "You have requested to be notified every time a new comment is added to:\n"
1192
+ "[post_permalink]\n"
1193
+ "\n"
1194
+ "Please confirm your request by clicking on this link:\n"
1195
+ "[confirm_link]"
1196
+ msgstr ""
1197
+ "Вы зрабілі запыт на атрыманне новых каментароў да артыкула:\n"
1198
+ "[post_permalink]\n"
1199
+ "\n"
1200
+ "Калі ласка, перайдзіце па наступнай спасылцы, каб пацвердзіць падпіску:\n"
1201
+ "[confirm_link]"
1202
 
1203
+ #: utils/stcr_manage.php:269
1204
+ msgid "Manage your subscriptions on [blog_name]"
1205
+ msgstr "Рэдагаваць свае падпіскі на сайце [blog_name]"
1206
 
1207
+ #: utils/stcr_manage.php:270
1208
+ msgid ""
1209
+ "You have requested to manage your subscriptions to the articles on "
1210
+ "[blog_name]. Please check the Subscriptions management link in your email"
1211
+ msgstr ""
1212
 
1213
+ #: utils/stcr_manage.php:271
1214
+ msgid ""
1215
+ "You have requested to manage your subscriptions to the articles on "
1216
+ "[blog_name]. Follow this link to access your personal page:\n"
1217
+ "[manager_link]"
1218
+ msgstr ""
1219
+ "Вы зрабілі запыт на рэдагаванне сваіх падпісак на каментары да артыкулаў на "
1220
+ "сайце [blog_name]. Вось спасылка на вашу асабістую старонку кіравання "
1221
+ "падпіскамі:\n"
1222
+ "[manager_link]"
1223
 
1224
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1225
+ msgid "StCR System"
1226
+ msgstr ""
1227
 
1228
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1229
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1230
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1231
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1232
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1233
+ msgid "You do not have sufficient permissions to access this page."
1234
+ msgstr ""
1235
 
1236
+ #: utils/stcr_manage.php:755
1237
+ msgid "Subscriptions"
1238
+ msgstr "Падпіскі"
 
1239
 
1240
+ #: utils/stcr_manage.php:811
1241
+ msgid ""
1242
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1243
  msgstr ""
1244
+ "Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
1245
+ "Наведаеце наш афіцыйны"
1246
 
1247
+ #: utils/stcr_manage.php:811
1248
+ msgid "support forum"
1249
+ msgstr "форум падтрымкі"
 
 
 
 
1250
 
1251
+ #: utils/stcr_manage.php:812
1252
+ msgid "Feeling generous?"
1253
+ msgstr "Жадаеце выявіць шчодрасць?"
1254
 
1255
+ #: utils/stcr_manage.php:812
1256
+ msgid "Donate a few bucks!"
1257
+ msgstr "Ахвяруйце пару баксаў!"
1258
 
1259
+ #: utils/stcr_upgrade.php:55
1260
+ msgid "Important Notice"
1261
  msgstr ""
1262
 
1263
+ #: utils/stcr_upgrade.php:103
1264
+ msgid ""
1265
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1266
+ "database has been sanitized to prevent the raw html messages. <a class="
1267
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1268
+ "src=\""
1269
+ msgstr ""
1270
 
1271
+ #: utils/stcr_upgrade.php:158
1272
+ msgid ""
1273
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1274
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1275
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1276
+ msgstr ""
1277
 
1278
+ #: utils/stcr_upgrade.php:158
1279
+ msgid ""
1280
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1281
+ "Comments to prevent confusion between the two plugins."
1282
+ msgstr ""
1283
 
1284
+ #: utils/stcr_upgrade.php:159
1285
+ msgid ""
1286
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1287
+ "that you want to import, you'll need to import that data manually, as only "
1288
+ "one import routine will ever run to prevent data loss."
1289
  msgstr ""
1290
 
1291
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1292
+ #: utils/stcr_upgrade.php:381
1293
  msgid ""
1294
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1295
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1296
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1297
+ "\"stcr-loading-animation\" src=\""
1298
  msgstr ""
1299
 
1300
+ #: utils/stcr_upgrade.php:231
1301
+ msgid ""
1302
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1303
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1304
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1305
+ msgstr ""
1306
 
1307
+ #: utils/stcr_upgrade.php:231
1308
  msgid ""
1309
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1310
+ "Notification to prevent confusion between the two plugins."
1311
  msgstr ""
 
 
1312
 
1313
+ #: utils/stcr_upgrade.php:378
1314
  msgid ""
1315
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1316
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1317
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1318
+ "Reloaded</strong>."
1319
  msgstr ""
 
 
1320
 
1321
+ #: utils/stcr_upgrade.php:378
1322
  msgid ""
1323
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1324
+ "Subscriptions to prevent confusion between the two plugins."
1325
  msgstr ""
1326
 
1327
+ #: utils/stcr_upgrade.php:379
1328
  msgid ""
1329
+ "If you have subscription data from another plugin (such as Subscribe to "
1330
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1331
+ "you'll need to import that data manually, as only one import routine will "
1332
+ "ever run to prevent data loss."
1333
  msgstr ""
 
 
1334
 
1335
+ #: utils/stcr_upgrade.php:380
1336
+ msgid ""
1337
+ "<strong>Note:</strong> If you were previously using the "
1338
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1339
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1340
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1341
+ "respectively."
1342
  msgstr ""
1343
 
1344
+ #: utils/stcr_upgrade.php:394
1345
  msgid ""
1346
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
 
1347
  msgstr ""
1348
 
1349
+ #: utils/stcr_upgrade.php:395
 
 
 
 
1350
  msgid ""
1351
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1352
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1353
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
1354
 
1355
+ #: utils/stcr_upgrade.php:396
1356
+ msgid ""
1357
+ "Please consider to make a donation to support the plugin, you can donate via "
1358
+ "<a href=\"\n"
1359
+ "https://www.paypal.com/cgi-bin/webscr?"
1360
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1361
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1362
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1363
  msgstr ""
1364
 
1365
+ #: utils/stcr_upgrade.php:398
1366
+ msgid ""
1367
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1368
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1369
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1370
+ "a><img class=\"stcr-loading-animation\" src=\""
1371
  msgstr ""
1372
 
1373
+ #: utils/stcr_upgrade.php:409
1374
+ msgid ""
1375
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1376
+ "160106."
1377
  msgstr ""
1378
 
1379
+ #: utils/stcr_upgrade.php:410
 
 
 
 
1380
  msgid ""
1381
+ "This version includes many changes and fixes to improve your experience with "
1382
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1383
+ "email templates, Subscription Checkbox position, and more!"
1384
  msgstr ""
1385
 
1386
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1387
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1388
+ msgid ""
1389
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1390
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1391
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1392
+ "class=\"stcr-loading-animation\" src=\""
1393
  msgstr ""
1394
 
1395
+ #: utils/stcr_upgrade.php:424
1396
  msgid ""
1397
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1398
+ "160115."
 
 
1399
  msgstr ""
1400
 
1401
+ #: utils/stcr_upgrade.php:425
1402
+ msgid ""
1403
+ "This version includes fixes to broken links while managing your subscriptions"
 
 
 
 
 
 
 
 
 
 
1404
  msgstr ""
1405
 
1406
+ #: utils/stcr_upgrade.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1407
  msgid ""
1408
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1409
+ "160831"
 
1410
  msgstr ""
 
 
 
1411
 
1412
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1413
+ msgid "This version includes fixes to many bugs and also new features, "
1414
+ msgstr ""
1415
 
1416
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1417
  msgid ""
1418
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1419
+ "address. This will help the subscribers to use the Reply option in their "
1420
+ "email agents."
 
1421
  msgstr ""
 
 
 
 
1422
 
1423
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1424
  msgid ""
1425
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1426
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1427
  msgstr ""
 
 
1428
 
1429
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1430
  msgid ""
1431
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1432
+ "without loosing your subscriptions. You can use this option also for reset "
1433
+ "all the settings, see the FAQ."
1434
  msgstr ""
 
 
 
 
 
 
1435
 
1436
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1437
  msgid ""
1438
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1439
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1440
+ "Post Type."
1441
  msgstr ""
 
 
1442
 
1443
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1444
  msgid ""
1445
+ "<strong>New Feature</strong> A new field was added under the notification "
1446
+ "options to and the management link only by email and not to display it on "
1447
+ "the request link page."
1448
  msgstr ""
 
 
1449
 
1450
+ #: utils/stcr_upgrade.php:461
1451
  msgid ""
1452
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1453
+ "160902"
1454
  msgstr ""
 
 
1455
 
1456
+ #: utils/stcr_upgrade.php:464
1457
  msgid ""
1458
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1459
+ "previous 160831 version."
1460
  msgstr ""
 
 
1461
 
1462
+ #: utils/stcr_utils.php:195
1463
+ msgid "StCR Notification"
1464
+ msgstr "Апавяшчэнні"
1465
 
1466
+ #: wp_subscribe_reloaded.php:114
1467
+ msgid "Settings"
1468
+ msgstr "Scegli ordine"
1469
+
1470
+ #: wp_subscribe_reloaded.php:1086
1471
+ msgid "Don't subscribe"
1472
+ msgstr "Не падпісвацца"
1473
+
1474
+ #: wp_subscribe_reloaded.php:1087
1475
+ msgid "All"
1476
+ msgstr "Усё"
1477
 
1478
  #~ msgid "StCR Subscription Box Position"
1479
  #~ msgstr "Новая падпіска на"
langs/subscribe-reloaded-cs_CZ.mo CHANGED
Binary file
langs/subscribe-reloaded-cs_CZ.po CHANGED
@@ -2,568 +2,346 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: subscribe-reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:20-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:20-0700\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.6\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: wp_subscribe_reloaded.php:114
20
- msgid "Settings"
21
- msgstr ""
 
22
 
23
- #: wp_subscribe_reloaded.php:1060
24
- msgid "Don't subscribe"
25
- msgstr "Neodebírat"
26
 
27
- #: wp_subscribe_reloaded.php:1061
28
- msgid "All"
29
- msgstr "Odebírat (na všechny komentáře)"
30
 
31
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
32
- #: templates/author.php:75
33
- msgid "Replies to my comments"
34
- msgstr "Odebírat (jen na moje komentáře)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
- #: templates/request-management-link.php:71 templates/key_expired.php:71
37
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
38
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
 
 
 
 
 
39
  msgid "Email"
40
  msgstr "E-mail"
41
 
42
- #: templates/request-management-link.php:73 templates/key_expired.php:73
43
- #: templates/subscribe.php:92
44
- msgid "Send"
45
- msgstr "Odeslat"
 
46
 
47
- #: templates/key_expired.php:8
48
- msgid ""
49
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
50
- "enter your email below and a new link will be send."
51
- msgstr ""
52
 
53
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
54
- #: templates/author.php:80
55
- msgid "No subscriptions match your search criteria."
56
- msgstr "Žádné odběry."
 
57
 
58
- #: templates/subscribe.php:42 templates/subscribe.php:43
59
- msgid "New subscription to"
60
- msgstr "Nový odběr k"
61
 
62
- #: templates/subscribe.php:43
63
- msgid "User:"
64
- msgstr "Uživatel:"
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- #: templates/user.php:23 templates/author.php:23
67
- #: options/panel1-business-logic.php:70
68
  msgid "Subscriptions deleted:"
69
  msgstr "Vymazáno odběrů:"
70
 
71
- #: templates/user.php:27 templates/author.php:27
72
- #: options/panel1-business-logic.php:74
73
  msgid "Subscriptions suspended:"
74
  msgstr "Odběry pozastaveny."
75
 
76
- #: templates/user.php:31 templates/author.php:31
77
- #: options/panel1-business-logic.php:78
78
  msgid "Subscriptions activated:"
79
  msgstr "Odběry aktivovány."
80
 
81
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
82
- #: templates/author.php:39 options/panel1-business-logic.php:82
83
- #: options/panel1-business-logic.php:86
84
  msgid "Subscriptions updated:"
85
  msgstr "Odběry aktualizovány."
86
 
87
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
88
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
89
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
90
  msgid ""
91
  "Please remember: this operation cannot be undone. Are you sure you want to "
92
  "proceed?"
93
  msgstr "Tuto akci nelze vzít zpět, provést?"
94
 
95
- #: templates/user.php:58 templates/author.php:58
96
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
97
- msgstr ""
98
- "Legenda: Y = odebírat vše, R = odebírat pouze vlastní komentáře, C = "
99
- "neaktivní"
100
-
101
- #: templates/user.php:63
102
- msgid "F j, Y"
103
- msgstr ""
104
-
105
- #: templates/user.php:67 templates/author.php:69
106
- msgid "Select all"
107
- msgstr "Vybrat vše"
108
 
109
- #: templates/user.php:68 templates/author.php:70
110
- msgid "Invert selection"
111
- msgstr "Obrátit výběr"
112
 
113
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
114
- msgid "Action:"
115
- msgstr "Akce:"
116
 
117
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
118
- #: options/panel1.php:212
119
- msgid "Delete"
120
- msgstr "Vymazat"
121
 
122
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
123
- msgid "Suspend"
124
- msgstr "Pozastavit"
125
 
126
- #: templates/user.php:72 templates/author.php:74
127
- msgid "All comments"
128
  msgstr ""
129
 
130
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
131
- msgid "Activate"
132
- msgstr "Aktivovat"
133
-
134
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
135
- msgid "Update subscriptions"
136
- msgstr "Aktualizovat odběry"
137
-
138
- #: templates/author.php:57
139
- msgid "Title"
140
- msgstr "Titulek"
141
-
142
- #: utils/stcr_upgrade.php:55
143
- msgid "Important Notice"
144
  msgstr ""
145
 
146
- #: utils/stcr_upgrade.php:103
147
- msgid ""
148
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
149
- "database has been sanitized to prevent the raw html messages. <a class="
150
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
151
- "src=\""
152
  msgstr ""
153
 
154
- #: utils/stcr_upgrade.php:158
155
  msgid ""
156
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
157
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
158
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
159
  msgstr ""
160
 
161
- #: utils/stcr_upgrade.php:158
162
- msgid ""
163
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
164
- "Comments to prevent confusion between the two plugins."
165
- msgstr ""
166
 
167
- #: utils/stcr_upgrade.php:159
168
- msgid ""
169
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
170
- "that you want to import, you'll need to import that data manually, as only "
171
- "one import routine will ever run to prevent data loss."
172
- msgstr ""
173
 
174
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
175
- #: utils/stcr_upgrade.php:381
176
- msgid ""
177
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
178
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
179
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
180
- "\"stcr-loading-animation\" src=\""
181
- msgstr ""
182
 
183
- #: utils/stcr_upgrade.php:231
 
184
  msgid ""
185
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
186
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
187
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
188
  msgstr ""
 
189
 
190
- #: utils/stcr_upgrade.php:231
191
- msgid ""
192
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
193
- "Notification to prevent confusion between the two plugins."
194
- msgstr ""
195
 
196
- #: utils/stcr_upgrade.php:378
197
- msgid ""
198
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
199
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
200
- "were detected and automatically imported into <strong>Subscribe to Comments "
201
- "Reloaded</strong>."
202
- msgstr ""
203
 
204
- #: utils/stcr_upgrade.php:378
205
- msgid ""
206
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
207
- "Subscriptions to prevent confusion between the two plugins."
208
- msgstr ""
209
 
210
- #: utils/stcr_upgrade.php:379
211
- msgid ""
212
- "If you have subscription data from another plugin (such as Subscribe to "
213
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
214
- "you'll need to import that data manually, as only one import routine will "
215
- "ever run to prevent data loss."
216
- msgstr ""
217
 
218
- #: utils/stcr_upgrade.php:380
219
- msgid ""
220
- "<strong>Note:</strong> If you were previously using the "
221
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
222
- "subscribe-url]</code> shortcode, you'll need to replace those with "
223
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
224
- "respectively."
225
- msgstr ""
226
 
227
- #: utils/stcr_upgrade.php:394
228
- msgid ""
229
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
230
- msgstr ""
231
 
232
- #: utils/stcr_upgrade.php:395
233
- msgid ""
234
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
235
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
236
- msgstr ""
237
 
238
- #: utils/stcr_upgrade.php:396
239
- msgid ""
240
- "If you want to donate you can do it via <a href=\"\n"
241
- "https://www.paypal.com/cgi-bin/webscr?"
242
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
243
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
244
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
245
- msgstr ""
246
-
247
- #: utils/stcr_upgrade.php:398
248
- msgid ""
249
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
250
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
251
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
252
- "a><img class=\"stcr-loading-animation\" src=\""
253
- msgstr ""
254
-
255
- #: utils/stcr_upgrade.php:409
256
- msgid ""
257
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
258
- "160106."
259
- msgstr ""
260
-
261
- #: utils/stcr_upgrade.php:410
262
- msgid ""
263
- "This version includes many changes and fixes to improve your experience with "
264
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
265
- "email templates, Subscription Checkbox position, and more!"
266
- msgstr ""
267
-
268
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
269
- #: utils/stcr_upgrade.php:448
270
- msgid ""
271
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
272
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
273
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
274
- "class=\"stcr-loading-animation\" src=\""
275
- msgstr ""
276
-
277
- #: utils/stcr_upgrade.php:424
278
- msgid ""
279
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
280
- "160115."
281
- msgstr ""
282
-
283
- #: utils/stcr_upgrade.php:425
284
- msgid ""
285
- "This version includes fixes to broken links while managing your subscriptions"
286
- msgstr ""
287
-
288
- #: utils/stcr_upgrade.php:439
289
- msgid ""
290
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
291
- "160831"
292
- msgstr ""
293
-
294
- #: utils/stcr_upgrade.php:440
295
- msgid "This version includes fixes to many bugs and also new features, "
296
- msgstr ""
297
-
298
- #: utils/stcr_upgrade.php:442
299
- msgid ""
300
- "<strong>New Feature</strong> Add new option to set the Reply To email "
301
- "address. This will help the subscribers to use the Reply option in their "
302
- "email agents."
303
- msgstr ""
304
-
305
- #: utils/stcr_upgrade.php:443
306
- msgid ""
307
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
308
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
309
- msgstr ""
310
-
311
- #: utils/stcr_upgrade.php:444
312
- msgid ""
313
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
314
- "without loosing your subscriptions. You can use this option also for reset "
315
- "all the settings, see the FAQ."
316
- msgstr ""
317
-
318
- #: utils/stcr_upgrade.php:445
319
- msgid ""
320
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
321
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
322
- "Post Type."
323
- msgstr ""
324
-
325
- #: utils/stcr_upgrade.php:446
326
- msgid ""
327
- "<strong>New Feature</strong> A new field was added under the notification "
328
- "options to and the management link only by email and not to display it on "
329
- "the request link page."
330
- msgstr ""
331
-
332
- #: utils/stcr_manage.php:246
333
- msgid ""
334
- "Notify me of followup comments via e-mail. You can also <a "
335
- "href='[subscribe_link]'>subscribe</a> without commenting."
336
- msgstr ""
337
- "<span class='comment_label_afterselect'> upozornění na nové komentáře k "
338
- "tomuto článku.</span> <span class='comment_label_nocom'> Chcete dostávat "
339
- "upozornění na nové komentáře a sami článek nekomentovat? <a "
340
- "href='[subscribe_link]'>Přihlaste se k odběru</a>.</span>"
341
-
342
- #: utils/stcr_manage.php:247
343
- msgid ""
344
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
345
- "subscriptions."
346
- msgstr ""
347
- "Jste přihlášen k odběru upozornění na nové komentáře k tomuto článku. Můžete "
348
- "<a href='[manager_link]'>upravit</a> vaše odběry."
349
-
350
- #: utils/stcr_manage.php:248
351
- msgid ""
352
- "Your subscription to this post needs to be confirmed. <a "
353
- "href='[manager_link]'>Manage your subscriptions</a>."
354
- msgstr ""
355
- "Vaše žádost k odběru upozornění na nové komentáře čeká na schválení. <a "
356
- "href='[manager_link]'>Upravit vaše žádosti</a>."
357
-
358
- #: utils/stcr_manage.php:249
359
- msgid ""
360
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
361
- msgstr ""
362
- "<a href='[manager_link]'>Zde můžete spravovat</a> odběry upozornění na nové "
363
- "komentáře k tomuto článku."
364
-
365
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
366
- #: utils/stcr_manage.php:383 options/index.php:59
367
- msgid "Manage subscriptions"
368
- msgstr "Správa odběrů"
369
 
370
- #: utils/stcr_manage.php:255
371
- msgid ""
372
- "To manage your subscriptions, please enter your email address here below. We "
373
- "will send you a message containing the link to access your personal "
374
- "management page."
375
- msgstr ""
376
- "Pro správu vašich upozornění zadejte e-mailovou adresu do pole níže. Bude "
377
- "vám zaslán editační odkaz."
378
 
379
- #: utils/stcr_manage.php:256
380
- msgid ""
381
- "Thank you for using our subscription service. Your request has been "
382
- "completed, and you should receive an email with the management link in a few "
383
- "minutes."
384
- msgstr ""
385
- "Váš požadavek byl zpracován. V nejbližší době by jste měli obdržet odkaz v "
386
- "emailu."
387
 
388
- #: utils/stcr_manage.php:257
389
- msgid ""
390
- "You can follow the discussion on <strong>[post_title]</strong> without "
391
- "having to leave a comment. Cool, huh? Just enter your email address in the "
392
- "form here below and you're all set."
393
- msgstr ""
394
- "Zasílat upozornění na nové komentáře k článku » [post_title] « .\n"
395
- " E-mailovou adresu vyplňte do pole níže. Bude vám zaslán potvrzovací odkaz. "
396
 
397
- #: utils/stcr_manage.php:258
398
- msgid ""
399
- "Thank you for using our subscription service. Your request has been "
400
- "completed. You will receive a notification email every time a new comment to "
401
- "this article is approved and posted by the administrator."
402
- msgstr ""
403
- "Váš požadavek byl zpracován. Váš odběr upozornění na nové komentáře k tomuto "
404
- "článku je aktivní."
405
 
406
- #: utils/stcr_manage.php:259
407
- msgid ""
408
- "Thank you for using our subscription service. In order to confirm your "
409
- "request, please check your email for the verification message and follow the "
410
- "instructions."
411
- msgstr ""
412
- "Váš požadavek byl zpracován. Pro potvrzení požadavku naleznete ve vašem "
413
- "emailu potvrzovací odkaz."
414
 
415
- #: utils/stcr_manage.php:260
416
- msgid ""
417
- "In order to cancel or suspend one or more notifications, select the "
418
- "corresponding checkbox(es) and click on the button at the end of the list."
419
- msgstr ""
420
- "Pro editaci upozornění vyberte odpovídající odběr, zaškrtněte volbu a "
421
- "potvrďte."
422
 
423
- #: utils/stcr_manage.php:261
424
- msgid ""
425
- "In order to cancel or suspend one or more notifications, select the "
426
- "corresponding checkbox(es) and click on the button at the end of the list. "
427
- "You are currently subscribed to:"
428
- msgstr ""
429
- "Aktuálně odebíráte upozornění na nové komentáře k těmto článkům (pokud je "
430
- "chcete změnit či zrušit zaškrtněte volbu a klikntěte na tlačítko "
431
- "aktualizovat, pokud změnu nechcete pokračujte třeba přes menu):"
432
 
433
- #: utils/stcr_manage.php:265
434
- msgid "There is a new comment to [post_title]"
435
- msgstr "Nový komentář k článku: [post_title]"
436
 
437
- #: utils/stcr_manage.php:266
438
- msgid ""
439
- "There is a new comment to [post_title].\n"
440
- "Comment Link: [comment_permalink]\n"
441
- "Author: [comment_author]\n"
442
- "Comment:\n"
443
- "[comment_content]\n"
444
- "Permalink: [post_permalink]\n"
445
- "Manage your subscriptions: [manager_link]"
446
- msgstr ""
447
- "Nový komentář k článku: [post_title].\n"
448
- "Odkaz na komentář: [comment_permalink]\n"
449
- "Autor: [comment_author]\n"
450
- "Znění komentáře:\n"
451
- "[comment_content]\n"
452
- "Odkaz na článek: [post_permalink]\n"
453
- "Upravit odběry upozornění: [manager_link]\n"
454
- "\t\t\t\t\t"
455
 
456
- #: utils/stcr_manage.php:267
457
- msgid "Please confirm your subscription to [post_title]"
458
- msgstr "Potvrďte odběr upozornění na nové komentáře k článku [post_title]"
459
 
460
- #: utils/stcr_manage.php:268
461
- msgid ""
462
- "You have requested to be notified every time a new comment is added to:\n"
463
- "[post_permalink]\n"
464
- "\n"
465
- "Please confirm your request by clicking on this link:\n"
466
- "[confirm_link]"
467
  msgstr ""
468
- "Dobrý den, přihlásili jste se k odběru upozornění na nové komentáře k "
469
- "článku: \n"
470
- " [post_permalink] .\n"
471
- "\n"
472
- "Požadavek potvrďte prosím kliknutím na odkaz:\n"
473
- "[confirm_link] "
474
-
475
- #: utils/stcr_manage.php:269
476
- msgid "Manage your subscriptions on [blog_name]"
477
- msgstr "Upravit odběr upozornění na nové komentáře z [blog_name]"
478
 
479
- #: utils/stcr_manage.php:270
480
- msgid ""
481
- "You have requested to manage your subscriptions to the articles on "
482
- "[blog_name]. Please check the Subscriptions management link in your email"
483
  msgstr ""
484
 
485
- #: utils/stcr_manage.php:271
486
- msgid ""
487
- "You have requested to manage your subscriptions to the articles on "
488
- "[blog_name]. Follow this link to access your personal page:\n"
489
- "[manager_link]"
490
  msgstr ""
491
- "Váš požadavek spravovat odběr upozornění na nové komentáře článků na "
492
- "[blog_name] byl zpracován. Klikněte prosím zde pro úpravy:\n"
493
- " [manager_link]"
494
 
495
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
496
- msgid "Comment Form"
497
- msgstr "Formulář komentářů"
498
-
499
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
500
- msgid "Management Page"
501
- msgstr "Nastavení"
502
-
503
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
504
- msgid "Notifications"
505
- msgstr "Oznámení"
506
-
507
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
508
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
509
- msgid "Options"
510
- msgstr "Možnosti"
511
-
512
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
513
- msgid "You can help"
514
- msgstr "Jak nám pomoci?"
515
 
516
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
517
- msgid "Support"
518
- msgstr "fórum podpory"
519
 
520
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
521
- msgid "Donate"
522
  msgstr ""
523
 
524
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
525
- msgid "StCR System"
526
- msgstr ""
527
 
528
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
529
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
530
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
531
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
532
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
533
- msgid "You do not have sufficient permissions to access this page."
534
- msgstr ""
535
 
536
- #: utils/stcr_manage.php:755
537
- msgid "Subscriptions"
538
- msgstr "Odběry "
539
 
540
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
541
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
542
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
543
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
544
- #: options/panel5.php:161
545
- msgid "No"
546
- msgstr "Ne"
547
 
548
- #: utils/stcr_manage.php:811
549
- msgid ""
550
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
551
- msgstr "Potřebujete pomoci? Navštivte oficiální"
552
 
553
- #: utils/stcr_manage.php:811
554
- msgid "support forum"
555
- msgstr "fórum podpory"
556
 
557
- #: utils/stcr_manage.php:812
558
- msgid "Feeling generous?"
559
- msgstr "Chcete být štědrý?"
560
 
561
- #: utils/stcr_manage.php:812
562
- msgid "Donate a few bucks!"
563
- msgstr "Přispět několika chechtáky!"
564
 
565
- #: utils/stcr_utils.php:195
566
- msgid "StCR Notification"
567
  msgstr ""
568
 
569
  #: options/panel2.php:12 options/panel2.php:63
@@ -606,13 +384,13 @@ msgstr "Popisek checkboxu (čekající)"
606
  msgid "Author label"
607
  msgstr "Popisek checkboxu (autor)"
608
 
609
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
610
- #: options/panel5.php:60 options/panel3.php:70
611
  msgid "Your settings have been successfully updated."
612
  msgstr "Vaše nastavení bylo úspěšně aktualizováno."
613
 
614
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
615
- #: options/panel5.php:62 options/panel3.php:72
616
  msgid "There was an error updating the following fields:"
617
  msgstr "Chyba při aktualizaci těchto polí:"
618
 
@@ -623,6 +401,14 @@ msgstr "Chyba při aktualizaci těchto polí:"
623
  msgid "Yes"
624
  msgstr "Ano"
625
 
 
 
 
 
 
 
 
 
626
  #: options/panel2.php:68
627
  msgid ""
628
  "Disable this option if you want to move the subscription checkbox to a "
@@ -655,91 +441,220 @@ msgid ""
655
  "like to be subscribed to all the post."
656
  msgstr ""
657
 
658
- #: options/panel2.php:107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
659
  msgid ""
660
- "Allow users to choose from different subscription types (all, replies only)."
 
 
661
  msgstr ""
662
- "Pokud zaškrtnete ANO, uživatelé uvidí roletku, kde si mohou vybrat zda "
663
- "odebírat všechna nebo jen upozornění na vlastní komentáře."
664
 
665
- #: options/panel2.php:115
666
- msgid "Advanced default"
667
  msgstr ""
 
668
 
669
- #: options/panel2.php:119
670
- msgid "None"
 
 
 
 
671
  msgstr ""
 
 
 
 
672
 
673
- #: options/panel2.php:124
674
  msgid ""
675
- "The default subscription type that should be selected when Advanced "
676
- "subscriptions are enable."
677
  msgstr ""
 
 
678
 
679
- #: options/panel2.php:135
680
- msgid "Custom inline CSS to add to the checkbox."
681
- msgstr "Uživatelský CSS inline styl který se přiřadí k checkboxu."
682
-
683
- #: options/panel2.php:152
684
  msgid ""
685
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
686
- "[checkbox_field], [checkbox_label]"
687
  msgstr ""
688
- "Můžete nadefinovat vlastní HTML kód který se použije pro checkbox. Povolené "
689
- "tagy: [checkbox_field], [checkbox_label]"
690
-
691
- #: options/panel2.php:158
692
- msgid "Messages for your visitors"
693
- msgstr "Popisky u roletky nebo checkboxu dle situace:"
694
 
695
- #: options/panel2.php:162
696
- msgid "Default label"
697
- msgstr "Popisek (výchozí)"
698
 
699
- #: options/panel2.php:175
700
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
701
- msgstr "Popisek checkboxu. Povelené tagy: [subscribe_link]"
702
 
703
- #: options/panel2.php:192
704
  msgid ""
705
- "Label shown to those who are already subscribed to a post. Allowed tag: "
706
- "[manager_link]"
707
  msgstr ""
708
- "Popisek který vidí ti, jenž se již přihlásili k odběru. Povolené tagy: "
709
- "[manager_link]"
710
-
711
- #: options/panel2.php:197
712
- msgid "Pending label"
713
- msgstr "Popisek (čekající)"
714
 
715
- #: options/panel2.php:209
716
  msgid ""
717
- "Label shown to those who are already subscribed, but haven't clicked on the "
718
- "confirmation link yet. Allowed tag: [manager_link]"
719
  msgstr ""
720
- "Popisek vidí ti, co se již přihlásili ,ale ještě neklikli v emailu na "
721
- "potvrzení. Povolené tagy: [manager_link]"
722
 
723
- #: options/panel2.php:225
724
  msgid ""
725
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
726
- msgstr "Popisek vidí autoři a administrátoři. Povolené tagy: [manager_link]"
727
-
728
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
729
- #: options/panel3.php:253
730
- msgid "Save Changes"
731
- msgstr "Uložit změny"
732
-
733
- #: options/panel9.php:11
734
- msgid "Support Subscribe to Comments Reloaded"
735
  msgstr ""
 
 
736
 
737
- #: options/panel9.php:12
738
  msgid ""
739
- "Every contribution that you make is high valuable, so if you consider this "
740
- "plugin a helpful tool we will use your donation to invest on support and "
741
- "developing time."
742
  msgstr ""
 
 
 
 
 
 
 
 
 
 
743
 
744
  #: options/panel4.php:15 options/panel4.php:94
745
  msgid "Sender name"
@@ -802,10 +717,6 @@ msgid ""
802
  "will be the same as the Sender email address."
803
  msgstr ""
804
 
805
- #: options/panel4.php:135 options/panel3.php:127
806
- msgid "Messages"
807
- msgstr "Zprávy"
808
-
809
  #: options/panel4.php:147
810
  msgid "Subject of the notification email. Allowed tag: [post_title]"
811
  msgstr "Předmět emailu s upozorněním. Povolené tagy: [post_title]"
@@ -826,47 +737,185 @@ msgid ""
826
  "the options.</strong></p>"
827
  msgstr ""
828
 
829
- #: options/panel4.php:184
830
- msgid "Subject of the confirmation email. Allowed tag: [post_title]"
831
- msgstr "Předmět potvrzujícího emailu. Povolené tagy: [post_title]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
832
 
833
- #: options/panel4.php:204
834
  msgid ""
835
- "Content of the confirmation email. Allowed tags: [post_permalink], "
836
- "[confirm_link], [post_title], [manager_link]"
837
  msgstr ""
838
- "Obsah potvrzujícího emailu. Povolené tagy: [post_permalink], [confirm_link], "
839
- "[post_title], [manager_link]"
840
 
841
- #: options/panel4.php:217
842
- msgid ""
843
- "Subject of the mail sent to those who request to access their management "
844
- "page. Allowed tag: [blog_name]"
 
 
845
  msgstr ""
846
- "Předmět emailu s odkazem na stránku správy odběrů. Povolené tagy: [blog_name]"
 
847
 
848
- #: options/panel4.php:223
849
- msgid "Management Page message"
 
 
 
 
850
  msgstr ""
851
 
852
- #: options/panel4.php:237
853
- msgid "Content of the management Page message. Allowed tags: [blog_name]."
854
  msgstr ""
855
 
856
- #: options/panel4.php:257
857
- msgid ""
858
- "Content of the management email message. Allowed tags: [blog_name], "
859
- "[manager_link]."
860
  msgstr ""
861
 
862
- #: options/panel4.php:263
863
- msgid "One Click Unsubscribe"
864
  msgstr ""
865
 
866
- #: options/panel4.php:277
867
  msgid ""
868
- "Content of the One Click confirmation. Allowed tags: [post_title], "
869
- "[blog_name]"
870
  msgstr ""
871
 
872
  #: options/panel7.php:8 options/panel8.php:8
@@ -919,528 +968,496 @@ msgid ""
919
  "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
920
  msgstr ""
921
 
922
- #: options/panel1.php:20
923
- msgid "Mass Update Subscriptions"
924
- msgstr "Hromadné úpravy"
925
-
926
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
927
- msgid "From"
928
- msgstr "Od"
929
-
930
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
931
- msgid "email address"
932
  msgstr ""
933
 
934
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
935
- msgid "To"
936
- msgstr "Komu"
937
-
938
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
939
- msgid "optional - new email address"
940
  msgstr ""
941
 
942
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
943
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
944
- #: options/panel1-edit-subscription.php:26
945
- msgid "Status"
946
- msgstr "Status"
947
-
948
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
949
- msgid "Keep unchanged"
950
- msgstr "Neměnit"
951
-
952
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
953
- #: options/panel1-add-subscription.php:22
954
- #: options/panel1-edit-subscription.php:29
955
- msgid "Active"
956
- msgstr "Aktivní"
957
-
958
- #: options/panel1.php:43 options/panel1.php:80
959
- #: options/panel1-add-subscription.php:23
960
- #: options/panel1-edit-subscription.php:30
961
- msgid "Replies only"
962
- msgstr "Pouze reakce"
963
-
964
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
965
- msgid "Suspended"
966
- msgstr "Pozastaveno"
967
-
968
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
969
- #: options/panel1-edit-subscription.php:33
970
- msgid "Update"
971
- msgstr "Aktualizovat "
972
-
973
- #: options/panel1.php:49
974
- msgid "More info"
975
  msgstr ""
976
 
977
- #: options/panel1.php:55
978
  msgid ""
979
- "This option will allow you to change an email address for another one or to "
980
- "update the same status for all the subscription on a specific email address."
 
981
  msgstr ""
982
 
983
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
984
- msgid "Add New Subscription"
985
- msgstr "Přidat nový odběr (podle ID článku)"
986
-
987
- #: options/panel1.php:68
988
- msgid "Post ID"
989
- msgstr "Příspěvek"
990
-
991
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
992
- msgid "Ask user to confirm"
993
- msgstr "Zeptat se uživatele na pozvrzení"
994
-
995
- #: options/panel1.php:83
996
- msgid "Add"
997
- msgstr "Přidat "
998
-
999
- #: options/panel1.php:98
1000
- msgid "Search subscriptions"
1001
- msgstr "Hledat odběry"
1002
 
1003
- #: options/panel1.php:102
1004
- #, php-format
1005
- msgid ""
1006
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1007
- "where the"
1008
  msgstr ""
1009
- "Můžete zobrazit <a href=\"%s\">přehled všech odběrů</a> nebo najít podle"
1010
-
1011
- #: options/panel1.php:106
1012
- msgid "email"
1013
- msgstr "Email"
1014
-
1015
- #: options/panel1.php:107
1016
- msgid "post ID"
1017
- msgstr "Příspěvek"
1018
-
1019
- #: options/panel1.php:108
1020
- msgid "status"
1021
- msgstr "status"
1022
 
1023
- #: options/panel1.php:111
1024
- msgid "equals"
1025
- msgstr "rovnající se"
1026
 
1027
- #: options/panel1.php:112
1028
- msgid "contains"
1029
- msgstr "obsahuje"
1030
 
1031
- #: options/panel1.php:113
1032
- msgid "does not contain"
1033
- msgstr "neobsahuje"
1034
 
1035
- #: options/panel1.php:114
1036
- msgid "starts with"
1037
- msgstr "začíná na"
1038
 
1039
- #: options/panel1.php:115
1040
- msgid "ends with"
1041
- msgstr "končí na"
 
1042
 
1043
- #: options/panel1.php:118
1044
- msgid "results per page:"
1045
- msgstr "výsledků na stránku"
 
 
1046
 
1047
- #: options/panel1.php:120
1048
- msgid "Search"
1049
- msgstr "Hledat"
 
1050
 
1051
- #: options/panel1.php:128
1052
- msgid "Reverse the order by Post ID"
1053
- msgstr "Obrátit pořadí dle ID příspěvku"
1054
 
1055
- #: options/panel1.php:129 options/panel1.php:130
1056
- msgid "Reverse the order by Date/Time"
1057
- msgstr "Obrátit pořadí dle data"
1058
 
1059
- #: options/panel1.php:132
1060
- msgid "Post (ID)"
1061
- msgstr "Post ID"
1062
 
1063
- #: options/panel1.php:135
1064
- msgid "Search query:"
1065
- msgstr "vyhledávací řetězec"
1066
 
1067
- #: options/panel1.php:135
1068
- msgid "Rows:"
1069
- msgstr "Řádky:"
 
 
 
 
 
 
1070
 
1071
- #: options/panel1.php:135
1072
- msgid "of"
1073
- msgstr "z"
 
 
 
 
1074
 
1075
- #: options/panel1.php:142 options/panel1.php:158
1076
- msgid "Date and Time"
1077
- msgstr "Datum a čas"
 
 
 
 
1078
 
1079
- #: options/panel1.php:168
1080
- msgid "Replies"
1081
- msgstr "Reakce"
 
 
 
1082
 
1083
- #: options/panel1.php:169
1084
- msgid "All Comments"
 
 
 
1085
  msgstr ""
 
 
1086
 
1087
- #: options/panel1.php:170
1088
- msgid "Unconfirmed"
 
 
 
1089
  msgstr ""
 
 
1090
 
1091
- #: options/panel1.php:171
1092
- msgid "Inactive"
 
 
 
1093
  msgstr ""
 
 
1094
 
1095
- #: options/panel1.php:201 options/panel1.php:211
1096
- msgid "Edit"
1097
- msgstr "Editovat"
 
 
 
 
 
1098
 
1099
- #: options/panel1.php:203 options/panel1.php:209
1100
- msgid "Subscription"
 
 
 
1101
  msgstr ""
 
 
1102
 
1103
- #: options/panel1.php:226
1104
- msgid "Delete forever"
1105
- msgstr "Vymazat navždy"
 
 
 
 
1106
 
1107
- #: options/panel1.php:228
1108
- msgid "Activate and set to Y"
1109
- msgstr "Nastavit a aktivovat na Y"
 
 
 
 
 
 
1110
 
1111
- #: options/panel1.php:229
1112
- msgid "Activate and set to R"
1113
- msgstr "Nastavit a aktivovat na R"
1114
 
1115
- #: options/panel1.php:237
1116
- msgid "Sorry, no subscriptions match your search criteria."
1117
- msgstr "Nenalezeny žádné odběry."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1118
 
1119
- #: options/panel1-business-logic.php:23
1120
- msgid "Subscription added."
1121
- msgstr "Odběr přidán."
1122
 
1123
- #: options/panel1-business-logic.php:39
1124
- msgid "Subscriptions updated."
1125
- msgstr "Odběry aktualizovány."
 
 
 
 
 
 
 
 
 
 
 
1126
 
1127
- #: options/panel1-business-logic.php:51
1128
- msgid "Subscription deleted."
1129
- msgstr "Odběr vymazán."
1130
 
1131
- #: options/panel1-business-logic.php:110
1132
- msgid "&laquo; Previous"
1133
- msgstr "&laquo; Předchozí"
 
 
1134
 
1135
- #: options/panel1-business-logic.php:114
1136
- msgid "Next &raquo;"
1137
- msgstr "další &raquo;"
 
 
 
 
 
 
1138
 
1139
- #: options/panel1-add-subscription.php:13
1140
- #: options/panel1-edit-subscription.php:13
1141
- msgid "Post:"
1142
- msgstr "Příspěvek:"
1143
 
1144
- #: options/panel5.php:28
1145
- msgid "Safetly Uninstall"
 
 
 
 
1146
  msgstr ""
1147
 
1148
- #: options/panel5.php:31 options/panel5.php:84
1149
- msgid "Autopurge requests"
1150
- msgstr "Autočištění požadavků"
1151
 
1152
- #: options/panel5.php:34 options/panel5.php:93
1153
- msgid "Enable double check"
1154
- msgstr "Povolit dvojí kontrolu emailu"
 
1155
 
1156
- #: options/panel5.php:37 options/panel5.php:101
1157
- msgid "Subscribe authors"
1158
- msgstr ""
1159
 
1160
- #: options/panel5.php:40 options/panel5.php:111
1161
- msgid "Enable HTML emails"
1162
- msgstr "Povolit HTML formát emailů"
1163
 
1164
- #: options/panel5.php:43
1165
- msgid "HTMLify Links in HTML emails"
1166
- msgstr ""
1167
 
1168
- #: options/panel5.php:46
1169
- msgid "Send trackbacks"
1170
- msgstr "Odeslat trackacky"
1171
 
1172
- #: options/panel5.php:49
1173
- msgid "Notify admin"
1174
- msgstr "Upozornit administrátora"
 
 
 
 
1175
 
1176
- #: options/panel5.php:52 options/panel5.php:149
1177
- msgid "Let admin subscribe"
1178
- msgstr "Povolit odběry pro administrátora"
 
 
 
1179
 
1180
- #: options/panel5.php:55 options/panel5.php:158
1181
- msgid "BCC admin on Notifications"
 
 
1182
  msgstr ""
1183
 
1184
- #: options/panel5.php:76
1185
- msgid "Safely Uninstall"
 
 
 
1186
  msgstr ""
1187
 
1188
- #: options/panel5.php:80
 
1189
  msgid ""
1190
- "This option will allow you to delete the plugin with WordPress without "
1191
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
 
1192
  msgstr ""
1193
 
1194
- #: options/panel5.php:87
1195
- msgid "days"
1196
- msgstr "dní"
 
 
 
1197
 
1198
- #: options/panel5.php:88
1199
  msgid ""
1200
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1201
- "this feature."
1202
  msgstr ""
1203
- "Vymazat požadavky na odběry (neschválené) po X dnech. 0 znamená vypnuto. "
1204
 
1205
- #: options/panel5.php:97
1206
  msgid ""
1207
- "Send a notification email to confirm the subscription (to avoid addresses "
1208
- "misuse)."
 
 
1209
  msgstr ""
1210
- "Zašle upozorňovací email pro potvrzení odběru aby se zamezilo zneužití adres."
1211
 
1212
- #: options/panel5.php:106
1213
  msgid ""
1214
- "Automatically subscribe authors to their own articles (not retroactive)."
 
1215
  msgstr ""
1216
 
1217
- #: options/panel5.php:115
1218
  msgid ""
1219
- "If enabled, will send email messages with content-type = text/html instead "
1220
- "of text/plain"
 
 
1221
  msgstr ""
1222
- "Pokud je povoleno, budou emaily zasílány ve formátu <code>content-type = "
1223
- "text/html</code> namísto <code>content-type = text/plain</code>"
1224
 
1225
- #: options/panel5.php:120
1226
- msgid "HTMLify links in emails"
 
 
 
 
 
1227
  msgstr ""
1228
 
1229
- #: options/panel5.php:125
1230
  msgid ""
1231
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1232
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1233
  msgstr ""
1234
 
1235
- #: options/panel5.php:130
1236
- msgid "Process trackbacks"
1237
- msgstr "Zpracovat trackbacky"
1238
-
1239
- #: options/panel5.php:134
1240
  msgid ""
1241
- "Notify users when a new trackback or pingback is added to the discussion."
 
1242
  msgstr ""
1243
- "Upozornit odběratele pokud je do diskuse zapojen nový trackback nebo "
1244
- "pingback."
1245
-
1246
- #: options/panel5.php:139
1247
- msgid "Track all subscriptions"
1248
- msgstr "Sledovat všechny odběry"
1249
 
1250
- #: options/panel5.php:144
1251
- msgid "Notify the administrator when users subscribe without commenting."
 
 
 
 
 
 
1252
  msgstr ""
1253
- "Upozornit administrátora pokud se uživatel přihlásí k odběrům a sám "
1254
- "nekomentuje."
1255
 
1256
- #: options/panel5.php:153
1257
- msgid "Let the administrator subscribe to comments when logged in."
1258
- msgstr "Povolit odběry pro administrátora pokud je přihlášen."
1259
-
1260
- #: options/panel5.php:162
1261
- msgid "Send a copy of all Notifications to the administrator."
1262
  msgstr ""
1263
 
1264
- #: options/panel5.php:167
1265
- msgid "StCR Unique Key"
 
 
1266
  msgstr ""
1267
 
1268
- #: options/panel5.php:172
1269
- msgid "This Unique Key is not set, please click the following button to "
 
 
 
1270
  msgstr ""
1271
 
1272
- #: options/panel5.php:176 options/panel5.php:187
1273
- msgid "Generate"
 
 
 
 
 
1274
  msgstr ""
1275
 
1276
- #: options/panel5.php:184
1277
  msgid ""
1278
- "This Unique Key will be use to send the notification to your subscribers "
1279
- "with more security."
1280
  msgstr ""
1281
 
1282
- #: options/panel8.php:18
1283
- msgid "Did you find a Bug on the plugin?"
 
1284
  msgstr ""
1285
 
1286
- #: options/panel8.php:19
1287
  msgid ""
1288
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1289
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1290
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1291
- "WordPress Support page."
1292
  msgstr ""
1293
 
1294
- #: options/panel1-edit-subscription.php:8
1295
- msgid "Update Subscription"
1296
- msgstr "Aktualizovat odběry."
1297
-
1298
- #: options/panel1-edit-subscription.php:11
1299
- #: options/panel1-edit-subscription.php:21
1300
- #: options/panel1-edit-subscription.php:22
1301
- #: options/panel1-edit-subscription.php:23
1302
- msgid "optional"
1303
- msgstr "volitelné"
1304
-
1305
- #: options/panel10.php:22 options/panel10.php:23
1306
- msgid "System Information"
1307
  msgstr ""
1308
 
1309
- #: options/panel3.php:13 options/panel3.php:87
1310
- msgid "Virtual Management Page"
1311
- msgstr "Virtuální stránka správy"
1312
-
1313
- #: options/panel3.php:18 options/panel3.php:96
1314
- msgid "Page title"
1315
- msgstr "Titulek stránky"
1316
-
1317
- #: options/panel3.php:23 options/panel3.php:105
1318
- msgid "Management URL"
1319
- msgstr "Správa URL"
1320
-
1321
- #: options/panel3.php:28 options/panel3.php:117
1322
- msgid "Custom HEAD meta"
1323
- msgstr "Uživatelské HEAD meta tagy"
1324
-
1325
- #: options/panel3.php:34 options/panel3.php:131
1326
- msgid "Request link"
1327
- msgstr "Požadavek na odkaz pro odběr"
1328
-
1329
- #: options/panel3.php:39 options/panel3.php:149
1330
- msgid "Request submitted"
1331
- msgstr "Požadavek odeslán"
1332
-
1333
- #: options/panel3.php:44 options/panel3.php:167
1334
- msgid "Subscribe without commenting"
1335
- msgstr "Odebírat bez komentování"
1336
-
1337
- #: options/panel3.php:49 options/panel3.php:185
1338
- msgid "Subscription processed"
1339
- msgstr "Odběr zpracován"
1340
-
1341
- #: options/panel3.php:54 options/panel3.php:203
1342
- msgid "Subscription processed (DCI)"
1343
- msgstr "Odběr zpracován (DCI)"
1344
-
1345
- #: options/panel3.php:59 options/panel3.php:220
1346
- msgid "Authors"
1347
- msgstr "Autoři"
1348
-
1349
- #: options/panel3.php:64 options/panel3.php:236
1350
- msgid "Users"
1351
- msgstr "Uživatelé"
1352
-
1353
- #: options/panel3.php:90
1354
- msgid "Enabled"
1355
- msgstr "Povoleno"
1356
-
1357
- #: options/panel3.php:91
1358
- msgid "Disabled"
1359
- msgstr "Zakázáno"
1360
-
1361
- #: options/panel3.php:92
1362
  msgid ""
1363
- "Disable the virtual management page if you need to create a <a href="
1364
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1365
- "real-management-page\">real page</a> to make your theme happy."
1366
  msgstr ""
1367
 
1368
- #: options/panel3.php:101
1369
- msgid "Title of the page your visitors will use to manage their subscriptions."
 
 
1370
  msgstr ""
1371
- "Titulek stránky, kterou vaši odběratelé budou používat ke správě odběrů."
1372
 
1373
- #: options/panel3.php:109
1374
  msgid ""
1375
- "The permalink for your management page (something like <code>/manage-"
1376
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1377
- "b> actually exist in the system, but its link must follow your permalink "
1378
- "structure."
1379
  msgstr ""
1380
- "Permalink k vaší virtuální stránce správy odběrů (například <code>/manage-"
1381
- "subscriptions</code> nebo <code>/?page_id=345</code>). Tato stránka "
1382
- "fyzicky(není vytvořena jako soubor) neexistuje v systému, avšak aby "
1383
- "funguvala musí být podle pravidel struktury vašich permalinků."
1384
 
1385
- #: options/panel3.php:111
1386
  msgid ""
1387
- "Warning: it looks like the value you are using may be incompatible with your "
1388
- "permalink structure"
 
1389
  msgstr ""
1390
- "Varování: vypadá to že vámi zadaná hodnota není kompatibilní se strukturou "
1391
- "vašich permalinků"
1392
 
1393
- #: options/panel3.php:121
1394
  msgid ""
1395
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1396
- "Use <strong>single</strong> quotes for values."
 
1397
  msgstr ""
1398
- "Specifikujte HTML kód který se přidá do sekce HEAD stránky. Pro hodnoty "
1399
- "použijte <strong>jednoduché</strong> uvozovky <code>'příklad'</code>."
1400
-
1401
- #: options/panel3.php:144
1402
- msgid "Text shown to those who request to manage their subscriptions."
1403
- msgstr "Text co uvidí ti, kteří požádali o správu jejich odběrů."
1404
 
1405
- #: options/panel3.php:162
1406
  msgid ""
1407
- "Thank you note shown after the request here above has been processed. "
1408
- "Allowed tags: [post_title], [post_permalink]"
1409
  msgstr ""
1410
- "Text zobrazený po zpracování výše uvedeného požadavku. Povolené tagy: "
1411
- "[post_title], [post_permalink]"
1412
 
1413
- #: options/panel3.php:180
1414
  msgid ""
1415
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1416
- "[post_title], [post_permalink]"
1417
  msgstr ""
1418
- "Text zobrazen těm, co chtějí odebírat upozornění bez komentování. Povolené "
1419
- "tagy: [post_title], [post_permalink]"
1420
 
1421
- #: options/panel3.php:198
1422
- msgid ""
1423
- "Thank you note shown after the subscription request has been processed "
1424
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1425
  msgstr ""
1426
- "Text zobrazen po zpracování požadavku na odběr (bez dvojí kontroly emailu). "
1427
- "Povolené tagy: [post_title], [post_permalink]"
1428
 
1429
- #: options/panel3.php:216
1430
- msgid ""
1431
- "Thank you note shown after the subscription request has been processed "
1432
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
1433
  msgstr ""
1434
- "Text zobrazen po zpracování požadavku na odběr (s dvojí kontrolou emailu). "
1435
- "Povolené tagy: [post_title], [post_permalink]"
1436
 
1437
- #: options/panel3.php:232
1438
- msgid "Introductory text for the authors' management page."
1439
- msgstr "Text pro stránku správy odběrů autorů."
1440
 
1441
- #: options/panel3.php:248
1442
- msgid "Introductory text for the users' management page."
1443
- msgstr "Text pro stránku správy odběrů uživatelů."
1444
 
1445
  #~ msgid "Daily digest"
1446
  #~ msgstr "Denní přehled"
2
  msgstr ""
3
  "Project-Id-Version: subscribe-reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:26-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:26-0600\n"
7
+ "Last-Translator: Reedyseth - 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.8.7.1\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
20
+ #: utils/stcr_manage.php:383
21
+ msgid "Manage subscriptions"
22
+ msgstr "Správa odběrů"
23
 
24
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
25
+ msgid "Comment Form"
26
+ msgstr "Formulář komentářů"
27
 
28
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
29
+ msgid "Management Page"
30
+ msgstr "Nastavení"
31
 
32
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
33
+ msgid "Notifications"
34
+ msgstr "Oznámení"
35
+
36
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
37
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
38
+ msgid "Options"
39
+ msgstr "Možnosti"
40
+
41
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
42
+ msgid "You can help"
43
+ msgstr "Jak nám pomoci?"
44
+
45
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
46
+ msgid "Support"
47
+ msgstr "fórum podpory"
48
+
49
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
50
+ msgid "Donate"
51
+ msgstr ""
52
+
53
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
54
+ msgid "Add New Subscription"
55
+ msgstr "Přidat nový odběr (podle ID článku)"
56
 
57
+ #: options/panel1-add-subscription.php:13
58
+ #: options/panel1-edit-subscription.php:13
59
+ msgid "Post:"
60
+ msgstr "Příspěvek:"
61
+
62
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
63
+ #: options/panel1.php:133 templates/key_expired.php:84
64
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
65
+ #: templates/user.php:57
66
  msgid "Email"
67
  msgstr "E-mail"
68
 
69
+ #: options/panel1-add-subscription.php:20
70
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
71
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
72
+ msgid "Status"
73
+ msgstr "Status"
74
 
75
+ #: options/panel1-add-subscription.php:22
76
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
77
+ #: options/panel1.php:79 options/panel1.php:172
78
+ msgid "Active"
79
+ msgstr "Aktivní"
80
 
81
+ #: options/panel1-add-subscription.php:23
82
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
83
+ #: options/panel1.php:80
84
+ msgid "Replies only"
85
+ msgstr "Pouze reakce"
86
 
87
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
88
+ msgid "Ask user to confirm"
89
+ msgstr "Zeptat se uživatele na pozvrzení"
90
 
91
+ #: options/panel1-add-subscription.php:26
92
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
93
+ msgid "Update"
94
+ msgstr "Aktualizovat "
95
+
96
+ #: options/panel1-business-logic.php:23
97
+ msgid "Subscription added."
98
+ msgstr "Odběr přidán."
99
+
100
+ #: options/panel1-business-logic.php:39
101
+ msgid "Subscriptions updated."
102
+ msgstr "Odběry aktualizovány."
103
+
104
+ #: options/panel1-business-logic.php:51
105
+ msgid "Subscription deleted."
106
+ msgstr "Odběr vymazán."
107
 
108
+ #: options/panel1-business-logic.php:70 templates/author.php:23
109
+ #: templates/user.php:23
110
  msgid "Subscriptions deleted:"
111
  msgstr "Vymazáno odběrů:"
112
 
113
+ #: options/panel1-business-logic.php:74 templates/author.php:27
114
+ #: templates/user.php:27
115
  msgid "Subscriptions suspended:"
116
  msgstr "Odběry pozastaveny."
117
 
118
+ #: options/panel1-business-logic.php:78 templates/author.php:31
119
+ #: templates/user.php:31
120
  msgid "Subscriptions activated:"
121
  msgstr "Odběry aktivovány."
122
 
123
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
124
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
125
+ #: templates/user.php:39
126
  msgid "Subscriptions updated:"
127
  msgstr "Odběry aktualizovány."
128
 
129
+ #: options/panel1-business-logic.php:110
130
+ msgid "&laquo; Previous"
131
+ msgstr "&laquo; Předchozí"
132
+
133
+ #: options/panel1-business-logic.php:114
134
+ msgid "Next &raquo;"
135
+ msgstr "další &raquo;"
136
+
137
+ #: options/panel1-edit-subscription.php:8
138
+ msgid "Update Subscription"
139
+ msgstr "Aktualizovat odběry."
140
+
141
  #: options/panel1-edit-subscription.php:11
142
+ #: options/panel1-edit-subscription.php:21
143
+ #: options/panel1-edit-subscription.php:22
144
+ #: options/panel1-edit-subscription.php:23
145
+ msgid "optional"
146
+ msgstr "volitelné"
147
+
148
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
149
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
150
+ #: templates/author.php:52 templates/user.php:52
151
  msgid ""
152
  "Please remember: this operation cannot be undone. Are you sure you want to "
153
  "proceed?"
154
  msgstr "Tuto akci nelze vzít zpět, provést?"
155
 
156
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
157
+ msgid "From"
158
+ msgstr "Od"
 
 
 
 
 
 
 
 
 
 
159
 
160
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
161
+ msgid "To"
162
+ msgstr "Komu"
163
 
164
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
165
+ msgid "Keep unchanged"
166
+ msgstr "Neměnit"
167
 
168
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
169
+ msgid "Suspended"
170
+ msgstr "Pozastaveno"
 
171
 
172
+ #: options/panel1.php:20
173
+ msgid "Mass Update Subscriptions"
174
+ msgstr "Hromadné úpravy"
175
 
176
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
177
+ msgid "email address"
178
  msgstr ""
179
 
180
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
181
+ msgid "optional - new email address"
 
 
 
 
 
 
 
 
 
 
 
 
182
  msgstr ""
183
 
184
+ #: options/panel1.php:49
185
+ msgid "More info"
 
 
 
 
186
  msgstr ""
187
 
188
+ #: options/panel1.php:55
189
  msgid ""
190
+ "This option will allow you to change an email address for another one or to "
191
+ "update the same status for all the subscription on a specific email address."
 
192
  msgstr ""
193
 
194
+ #: options/panel1.php:68
195
+ msgid "Post ID"
196
+ msgstr "Příspěvek"
 
 
197
 
198
+ #: options/panel1.php:83
199
+ msgid "Add"
200
+ msgstr "Přidat "
 
 
 
201
 
202
+ #: options/panel1.php:98
203
+ msgid "Search subscriptions"
204
+ msgstr "Hledat odběry"
 
 
 
 
 
205
 
206
+ #: options/panel1.php:102
207
+ #, php-format
208
  msgid ""
209
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
210
+ "where the"
 
211
  msgstr ""
212
+ "Můžete zobrazit <a href=\"%s\">přehled všech odběrů</a> nebo najít podle"
213
 
214
+ #: options/panel1.php:106
215
+ msgid "email"
216
+ msgstr "Email"
 
 
217
 
218
+ #: options/panel1.php:107
219
+ msgid "post ID"
220
+ msgstr "Příspěvek"
 
 
 
 
221
 
222
+ #: options/panel1.php:108
223
+ msgid "status"
224
+ msgstr "status"
 
 
225
 
226
+ #: options/panel1.php:111
227
+ msgid "equals"
228
+ msgstr "rovnající se"
 
 
 
 
229
 
230
+ #: options/panel1.php:112
231
+ msgid "contains"
232
+ msgstr "obsahuje"
 
 
 
 
 
233
 
234
+ #: options/panel1.php:113
235
+ msgid "does not contain"
236
+ msgstr "neobsahuje"
 
237
 
238
+ #: options/panel1.php:114
239
+ msgid "starts with"
240
+ msgstr "začíná na"
 
 
241
 
242
+ #: options/panel1.php:115
243
+ msgid "ends with"
244
+ msgstr "končí na"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
 
246
+ #: options/panel1.php:118
247
+ msgid "results per page:"
248
+ msgstr "výsledků na stránku"
 
 
 
 
 
249
 
250
+ #: options/panel1.php:120
251
+ msgid "Search"
252
+ msgstr "Hledat"
 
 
 
 
 
253
 
254
+ #: options/panel1.php:128
255
+ msgid "Reverse the order by Post ID"
256
+ msgstr "Obrátit pořadí dle ID příspěvku"
 
 
 
 
 
257
 
258
+ #: options/panel1.php:129 options/panel1.php:130
259
+ msgid "Reverse the order by Date/Time"
260
+ msgstr "Obrátit pořadí dle data"
 
 
 
 
 
261
 
262
+ #: options/panel1.php:132
263
+ msgid "Post (ID)"
264
+ msgstr "Post ID"
 
 
 
 
 
265
 
266
+ #: options/panel1.php:135
267
+ msgid "Search query:"
268
+ msgstr "vyhledávací řetězec"
 
 
 
 
269
 
270
+ #: options/panel1.php:135
271
+ msgid "Rows:"
272
+ msgstr "Řádky:"
 
 
 
 
 
 
273
 
274
+ #: options/panel1.php:135
275
+ msgid "of"
276
+ msgstr "z"
277
 
278
+ #: options/panel1.php:142 options/panel1.php:158
279
+ msgid "Date and Time"
280
+ msgstr "Datum a čas"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
 
282
+ #: options/panel1.php:168
283
+ msgid "Replies"
284
+ msgstr "Reakce"
285
 
286
+ #: options/panel1.php:169
287
+ msgid "All Comments"
 
 
 
 
 
288
  msgstr ""
 
 
 
 
 
 
 
 
 
 
289
 
290
+ #: options/panel1.php:170
291
+ msgid "Unconfirmed"
 
 
292
  msgstr ""
293
 
294
+ #: options/panel1.php:171
295
+ msgid "Inactive"
 
 
 
296
  msgstr ""
 
 
 
297
 
298
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
299
+ #: templates/user.php:70
300
+ msgid "Delete"
301
+ msgstr "Vymazat"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
 
303
+ #: options/panel1.php:201 options/panel1.php:211
304
+ msgid "Edit"
305
+ msgstr "Editovat"
306
 
307
+ #: options/panel1.php:203 options/panel1.php:209
308
+ msgid "Subscription"
309
  msgstr ""
310
 
311
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
312
+ msgid "Action:"
313
+ msgstr "Akce:"
314
 
315
+ #: options/panel1.php:226
316
+ msgid "Delete forever"
317
+ msgstr "Vymazat navždy"
 
 
 
 
318
 
319
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
320
+ msgid "Suspend"
321
+ msgstr "Pozastavit"
322
 
323
+ #: options/panel1.php:228
324
+ msgid "Activate and set to Y"
325
+ msgstr "Nastavit a aktivovat na Y"
 
 
 
 
326
 
327
+ #: options/panel1.php:229
328
+ msgid "Activate and set to R"
329
+ msgstr "Nastavit a aktivovat na R"
 
330
 
331
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
332
+ msgid "Activate"
333
+ msgstr "Aktivovat"
334
 
335
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
336
+ msgid "Update subscriptions"
337
+ msgstr "Aktualizovat odběry"
338
 
339
+ #: options/panel1.php:237
340
+ msgid "Sorry, no subscriptions match your search criteria."
341
+ msgstr "Nenalezeny žádné odběry."
342
 
343
+ #: options/panel10.php:22 options/panel10.php:23
344
+ msgid "System Information"
345
  msgstr ""
346
 
347
  #: options/panel2.php:12 options/panel2.php:63
384
  msgid "Author label"
385
  msgstr "Popisek checkboxu (autor)"
386
 
387
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
388
+ #: options/panel5.php:18 options/panel5.php:60
389
  msgid "Your settings have been successfully updated."
390
  msgstr "Vaše nastavení bylo úspěšně aktualizováno."
391
 
392
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
393
+ #: options/panel5.php:20 options/panel5.php:62
394
  msgid "There was an error updating the following fields:"
395
  msgstr "Chyba při aktualizaci těchto polí:"
396
 
401
  msgid "Yes"
402
  msgstr "Ano"
403
 
404
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
405
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
406
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
407
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
408
+ #: utils/stcr_manage.php:784
409
+ msgid "No"
410
+ msgstr "Ne"
411
+
412
  #: options/panel2.php:68
413
  msgid ""
414
  "Disable this option if you want to move the subscription checkbox to a "
441
  "like to be subscribed to all the post."
442
  msgstr ""
443
 
444
+ #: options/panel2.php:107
445
+ msgid ""
446
+ "Allow users to choose from different subscription types (all, replies only)."
447
+ msgstr ""
448
+ "Pokud zaškrtnete ANO, uživatelé uvidí roletku, kde si mohou vybrat zda "
449
+ "odebírat všechna nebo jen upozornění na vlastní komentáře."
450
+
451
+ #: options/panel2.php:115
452
+ msgid "Advanced default"
453
+ msgstr ""
454
+
455
+ #: options/panel2.php:119
456
+ msgid "None"
457
+ msgstr ""
458
+
459
+ #: options/panel2.php:124
460
+ msgid ""
461
+ "The default subscription type that should be selected when Advanced "
462
+ "subscriptions are enable."
463
+ msgstr ""
464
+
465
+ #: options/panel2.php:135
466
+ msgid "Custom inline CSS to add to the checkbox."
467
+ msgstr "Uživatelský CSS inline styl který se přiřadí k checkboxu."
468
+
469
+ #: options/panel2.php:152
470
+ msgid ""
471
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
472
+ "[checkbox_field], [checkbox_label]"
473
+ msgstr ""
474
+ "Můžete nadefinovat vlastní HTML kód který se použije pro checkbox. Povolené "
475
+ "tagy: [checkbox_field], [checkbox_label]"
476
+
477
+ #: options/panel2.php:158
478
+ msgid "Messages for your visitors"
479
+ msgstr "Popisky u roletky nebo checkboxu dle situace:"
480
+
481
+ #: options/panel2.php:162
482
+ msgid "Default label"
483
+ msgstr "Popisek (výchozí)"
484
+
485
+ #: options/panel2.php:175
486
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
487
+ msgstr "Popisek checkboxu. Povelené tagy: [subscribe_link]"
488
+
489
+ #: options/panel2.php:192
490
+ msgid ""
491
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
492
+ "[manager_link]"
493
+ msgstr ""
494
+ "Popisek který vidí ti, jenž se již přihlásili k odběru. Povolené tagy: "
495
+ "[manager_link]"
496
+
497
+ #: options/panel2.php:197
498
+ msgid "Pending label"
499
+ msgstr "Popisek (čekající)"
500
+
501
+ #: options/panel2.php:209
502
+ msgid ""
503
+ "Label shown to those who are already subscribed, but haven't clicked on the "
504
+ "confirmation link yet. Allowed tag: [manager_link]"
505
+ msgstr ""
506
+ "Popisek vidí ti, co se již přihlásili ,ale ještě neklikli v emailu na "
507
+ "potvrzení. Povolené tagy: [manager_link]"
508
+
509
+ #: options/panel2.php:225
510
+ msgid ""
511
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
512
+ msgstr "Popisek vidí autoři a administrátoři. Povolené tagy: [manager_link]"
513
+
514
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
515
+ #: options/panel5.php:195
516
+ msgid "Save Changes"
517
+ msgstr "Uložit změny"
518
+
519
+ #: options/panel3.php:13 options/panel3.php:87
520
+ msgid "Virtual Management Page"
521
+ msgstr "Virtuální stránka správy"
522
+
523
+ #: options/panel3.php:18 options/panel3.php:96
524
+ msgid "Page title"
525
+ msgstr "Titulek stránky"
526
+
527
+ #: options/panel3.php:23 options/panel3.php:105
528
+ msgid "Management URL"
529
+ msgstr "Správa URL"
530
+
531
+ #: options/panel3.php:28 options/panel3.php:117
532
+ msgid "Custom HEAD meta"
533
+ msgstr "Uživatelské HEAD meta tagy"
534
+
535
+ #: options/panel3.php:34 options/panel3.php:131
536
+ msgid "Request link"
537
+ msgstr "Požadavek na odkaz pro odběr"
538
+
539
+ #: options/panel3.php:39 options/panel3.php:149
540
+ msgid "Request submitted"
541
+ msgstr "Požadavek odeslán"
542
+
543
+ #: options/panel3.php:44 options/panel3.php:167
544
+ msgid "Subscribe without commenting"
545
+ msgstr "Odebírat bez komentování"
546
+
547
+ #: options/panel3.php:49 options/panel3.php:185
548
+ msgid "Subscription processed"
549
+ msgstr "Odběr zpracován"
550
+
551
+ #: options/panel3.php:54 options/panel3.php:203
552
+ msgid "Subscription processed (DCI)"
553
+ msgstr "Odběr zpracován (DCI)"
554
+
555
+ #: options/panel3.php:59 options/panel3.php:220
556
+ msgid "Authors"
557
+ msgstr "Autoři"
558
+
559
+ #: options/panel3.php:64 options/panel3.php:236
560
+ msgid "Users"
561
+ msgstr "Uživatelé"
562
+
563
+ #: options/panel3.php:90
564
+ msgid "Enabled"
565
+ msgstr "Povoleno"
566
+
567
+ #: options/panel3.php:91
568
+ msgid "Disabled"
569
+ msgstr "Zakázáno"
570
+
571
+ #: options/panel3.php:92
572
  msgid ""
573
+ "Disable the virtual management page if you need to create a <a href="
574
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
575
+ "real-management-page\">real page</a> to make your theme happy."
576
  msgstr ""
 
 
577
 
578
+ #: options/panel3.php:101
579
+ msgid "Title of the page your visitors will use to manage their subscriptions."
580
  msgstr ""
581
+ "Titulek stránky, kterou vaši odběratelé budou používat ke správě odběrů."
582
 
583
+ #: options/panel3.php:109
584
+ msgid ""
585
+ "The permalink for your management page (something like <code>/manage-"
586
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
587
+ "b> actually exist in the system, but its link must follow your permalink "
588
+ "structure."
589
  msgstr ""
590
+ "Permalink k vaší virtuální stránce správy odběrů (například <code>/manage-"
591
+ "subscriptions</code> nebo <code>/?page_id=345</code>). Tato stránka "
592
+ "fyzicky(není vytvořena jako soubor) neexistuje v systému, avšak aby "
593
+ "funguvala musí být podle pravidel struktury vašich permalinků."
594
 
595
+ #: options/panel3.php:111
596
  msgid ""
597
+ "Warning: it looks like the value you are using may be incompatible with your "
598
+ "permalink structure"
599
  msgstr ""
600
+ "Varování: vypadá to že vámi zadaná hodnota není kompatibilní se strukturou "
601
+ "vašich permalinků"
602
 
603
+ #: options/panel3.php:121
 
 
 
 
604
  msgid ""
605
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
606
+ "Use <strong>single</strong> quotes for values."
607
  msgstr ""
608
+ "Specifikujte HTML kód který se přidá do sekce HEAD stránky. Pro hodnoty "
609
+ "použijte <strong>jednoduché</strong> uvozovky <code>'příklad'</code>."
 
 
 
 
610
 
611
+ #: options/panel3.php:127 options/panel4.php:135
612
+ msgid "Messages"
613
+ msgstr "Zprávy"
614
 
615
+ #: options/panel3.php:144
616
+ msgid "Text shown to those who request to manage their subscriptions."
617
+ msgstr "Text co uvidí ti, kteří požádali o správu jejich odběrů."
618
 
619
+ #: options/panel3.php:162
620
  msgid ""
621
+ "Thank you note shown after the request here above has been processed. "
622
+ "Allowed tags: [post_title], [post_permalink]"
623
  msgstr ""
624
+ "Text zobrazený po zpracování výše uvedeného požadavku. Povolené tagy: "
625
+ "[post_title], [post_permalink]"
 
 
 
 
626
 
627
+ #: options/panel3.php:180
628
  msgid ""
629
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
630
+ "[post_title], [post_permalink]"
631
  msgstr ""
632
+ "Text zobrazen těm, co chtějí odebírat upozornění bez komentování. Povolené "
633
+ "tagy: [post_title], [post_permalink]"
634
 
635
+ #: options/panel3.php:198
636
  msgid ""
637
+ "Thank you note shown after the subscription request has been processed "
638
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
 
 
 
 
 
 
 
 
639
  msgstr ""
640
+ "Text zobrazen po zpracování požadavku na odběr (bez dvojí kontroly emailu). "
641
+ "Povolené tagy: [post_title], [post_permalink]"
642
 
643
+ #: options/panel3.php:216
644
  msgid ""
645
+ "Thank you note shown after the subscription request has been processed "
646
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
647
  msgstr ""
648
+ "Text zobrazen po zpracování požadavku na odběr (s dvojí kontrolou emailu). "
649
+ "Povolené tagy: [post_title], [post_permalink]"
650
+
651
+ #: options/panel3.php:232
652
+ msgid "Introductory text for the authors' management page."
653
+ msgstr "Text pro stránku správy odběrů autorů."
654
+
655
+ #: options/panel3.php:248
656
+ msgid "Introductory text for the users' management page."
657
+ msgstr "Text pro stránku správy odběrů uživatelů."
658
 
659
  #: options/panel4.php:15 options/panel4.php:94
660
  msgid "Sender name"
717
  "will be the same as the Sender email address."
718
  msgstr ""
719
 
 
 
 
 
720
  #: options/panel4.php:147
721
  msgid "Subject of the notification email. Allowed tag: [post_title]"
722
  msgstr "Předmět emailu s upozorněním. Povolené tagy: [post_title]"
737
  "the options.</strong></p>"
738
  msgstr ""
739
 
740
+ #: options/panel4.php:184
741
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
742
+ msgstr "Předmět potvrzujícího emailu. Povolené tagy: [post_title]"
743
+
744
+ #: options/panel4.php:204
745
+ msgid ""
746
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
747
+ "[confirm_link], [post_title], [manager_link]"
748
+ msgstr ""
749
+ "Obsah potvrzujícího emailu. Povolené tagy: [post_permalink], [confirm_link], "
750
+ "[post_title], [manager_link]"
751
+
752
+ #: options/panel4.php:217
753
+ msgid ""
754
+ "Subject of the mail sent to those who request to access their management "
755
+ "page. Allowed tag: [blog_name]"
756
+ msgstr ""
757
+ "Předmět emailu s odkazem na stránku správy odběrů. Povolené tagy: [blog_name]"
758
+
759
+ #: options/panel4.php:223
760
+ msgid "Management Page message"
761
+ msgstr ""
762
+
763
+ #: options/panel4.php:237
764
+ msgid "Content of the management Page message. Allowed tags: [blog_name]."
765
+ msgstr ""
766
+
767
+ #: options/panel4.php:257
768
+ msgid ""
769
+ "Content of the management email message. Allowed tags: [blog_name], "
770
+ "[manager_link]."
771
+ msgstr ""
772
+
773
+ #: options/panel4.php:263
774
+ msgid "One Click Unsubscribe"
775
+ msgstr ""
776
+
777
+ #: options/panel4.php:277
778
+ msgid ""
779
+ "Content of the One Click confirmation. Allowed tags: [post_title], "
780
+ "[blog_name]"
781
+ msgstr ""
782
+
783
+ #: options/panel5.php:28
784
+ msgid "Safetly Uninstall"
785
+ msgstr ""
786
+
787
+ #: options/panel5.php:31 options/panel5.php:84
788
+ msgid "Autopurge requests"
789
+ msgstr "Autočištění požadavků"
790
+
791
+ #: options/panel5.php:34 options/panel5.php:93
792
+ msgid "Enable double check"
793
+ msgstr "Povolit dvojí kontrolu emailu"
794
+
795
+ #: options/panel5.php:37 options/panel5.php:101
796
+ msgid "Subscribe authors"
797
+ msgstr ""
798
+
799
+ #: options/panel5.php:40 options/panel5.php:111
800
+ msgid "Enable HTML emails"
801
+ msgstr "Povolit HTML formát emailů"
802
+
803
+ #: options/panel5.php:43
804
+ msgid "HTMLify Links in HTML emails"
805
+ msgstr ""
806
+
807
+ #: options/panel5.php:46
808
+ msgid "Send trackbacks"
809
+ msgstr "Odeslat trackacky"
810
+
811
+ #: options/panel5.php:49
812
+ msgid "Notify admin"
813
+ msgstr "Upozornit administrátora"
814
+
815
+ #: options/panel5.php:52 options/panel5.php:149
816
+ msgid "Let admin subscribe"
817
+ msgstr "Povolit odběry pro administrátora"
818
+
819
+ #: options/panel5.php:55 options/panel5.php:158
820
+ msgid "BCC admin on Notifications"
821
+ msgstr ""
822
+
823
+ #: options/panel5.php:76
824
+ msgid "Safely Uninstall"
825
+ msgstr ""
826
+
827
+ #: options/panel5.php:80
828
+ msgid ""
829
+ "This option will allow you to delete the plugin with WordPress without "
830
+ "loosing your subscribers. Any database table and plugin options are wipeout."
831
+ msgstr ""
832
+
833
+ #: options/panel5.php:87
834
+ msgid "days"
835
+ msgstr "dní"
836
+
837
+ #: options/panel5.php:88
838
+ msgid ""
839
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
840
+ "this feature."
841
+ msgstr ""
842
+ "Vymazat požadavky na odběry (neschválené) po X dnech. 0 znamená vypnuto. "
843
+
844
+ #: options/panel5.php:97
845
+ msgid ""
846
+ "Send a notification email to confirm the subscription (to avoid addresses "
847
+ "misuse)."
848
+ msgstr ""
849
+ "Zašle upozorňovací email pro potvrzení odběru aby se zamezilo zneužití adres."
850
+
851
+ #: options/panel5.php:106
852
+ msgid ""
853
+ "Automatically subscribe authors to their own articles (not retroactive)."
854
+ msgstr ""
855
+
856
+ #: options/panel5.php:115
857
+ msgid ""
858
+ "If enabled, will send email messages with content-type = text/html instead "
859
+ "of text/plain"
860
+ msgstr ""
861
+ "Pokud je povoleno, budou emaily zasílány ve formátu <code>content-type = "
862
+ "text/html</code> namísto <code>content-type = text/plain</code>"
863
+
864
+ #: options/panel5.php:120
865
+ msgid "HTMLify links in emails"
866
+ msgstr ""
867
+
868
+ #: options/panel5.php:125
869
+ msgid ""
870
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
871
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
872
+ msgstr ""
873
+
874
+ #: options/panel5.php:130
875
+ msgid "Process trackbacks"
876
+ msgstr "Zpracovat trackbacky"
877
 
878
+ #: options/panel5.php:134
879
  msgid ""
880
+ "Notify users when a new trackback or pingback is added to the discussion."
 
881
  msgstr ""
882
+ "Upozornit odběratele pokud je do diskuse zapojen nový trackback nebo "
883
+ "pingback."
884
 
885
+ #: options/panel5.php:139
886
+ msgid "Track all subscriptions"
887
+ msgstr "Sledovat všechny odběry"
888
+
889
+ #: options/panel5.php:144
890
+ msgid "Notify the administrator when users subscribe without commenting."
891
  msgstr ""
892
+ "Upozornit administrátora pokud se uživatel přihlásí k odběrům a sám "
893
+ "nekomentuje."
894
 
895
+ #: options/panel5.php:153
896
+ msgid "Let the administrator subscribe to comments when logged in."
897
+ msgstr "Povolit odběry pro administrátora pokud je přihlášen."
898
+
899
+ #: options/panel5.php:162
900
+ msgid "Send a copy of all Notifications to the administrator."
901
  msgstr ""
902
 
903
+ #: options/panel5.php:167
904
+ msgid "StCR Unique Key"
905
  msgstr ""
906
 
907
+ #: options/panel5.php:172
908
+ msgid "This Unique Key is not set, please click the following button to "
 
 
909
  msgstr ""
910
 
911
+ #: options/panel5.php:176 options/panel5.php:187
912
+ msgid "Generate"
913
  msgstr ""
914
 
915
+ #: options/panel5.php:184
916
  msgid ""
917
+ "This Unique Key will be use to send the notification to your subscribers "
918
+ "with more security."
919
  msgstr ""
920
 
921
  #: options/panel7.php:8 options/panel8.php:8
968
  "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
969
  msgstr ""
970
 
971
+ #: options/panel8.php:18
972
+ msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
 
 
 
973
  msgstr ""
974
 
975
+ #: options/panel8.php:19
976
+ msgid ""
977
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
978
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
979
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
980
+ "WordPress Support page."
981
  msgstr ""
982
 
983
+ #: options/panel9.php:11
984
+ msgid "Support Subscribe to Comments Reloaded"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
985
  msgstr ""
986
 
987
+ #: options/panel9.php:12
988
  msgid ""
989
+ "Every contribution that you make is high valuable, so if you consider this "
990
+ "plugin a helpful tool we will use your donation to invest on support and "
991
+ "developing time."
992
  msgstr ""
993
 
994
+ #: templates/author.php:57
995
+ msgid "Title"
996
+ msgstr "Titulek"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
997
 
998
+ #: templates/author.php:58 templates/user.php:58
999
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
 
 
 
1000
  msgstr ""
1001
+ "Legenda: Y = odebírat vše, R = odebírat pouze vlastní komentáře, C = "
1002
+ "neaktivní"
 
 
 
 
 
 
 
 
 
 
 
1003
 
1004
+ #: templates/author.php:69 templates/user.php:67
1005
+ msgid "Select all"
1006
+ msgstr "Vybrat vše"
1007
 
1008
+ #: templates/author.php:70 templates/user.php:68
1009
+ msgid "Invert selection"
1010
+ msgstr "Obrátit výběr"
1011
 
1012
+ #: templates/author.php:74 templates/user.php:72
1013
+ msgid "All comments"
1014
+ msgstr ""
1015
 
1016
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1017
+ msgid "Replies to my comments"
1018
+ msgstr "Odebírat (jen na moje komentáře)"
1019
 
1020
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1021
+ #: templates/user.php:79
1022
+ msgid "No subscriptions match your search criteria."
1023
+ msgstr "Žádné odběry."
1024
 
1025
+ #: templates/key_expired.php:8
1026
+ msgid ""
1027
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1028
+ "enter your email below and a new link will be send."
1029
+ msgstr ""
1030
 
1031
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1032
+ #: templates/subscribe.php:106
1033
+ msgid "Send"
1034
+ msgstr "Odeslat"
1035
 
1036
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1037
+ msgid "New subscription to"
1038
+ msgstr "Nový odběr k"
1039
 
1040
+ #: templates/subscribe.php:44
1041
+ msgid "User:"
1042
+ msgstr "Uživatel:"
1043
 
1044
+ #: templates/user.php:63
1045
+ msgid "F j, Y"
1046
+ msgstr ""
1047
 
1048
+ #: templates/wrong-request.php:9
1049
+ msgid "You have request to manage another email address and this is forbidden."
1050
+ msgstr ""
1051
 
1052
+ #: utils/stcr_manage.php:246
1053
+ msgid ""
1054
+ "Notify me of followup comments via e-mail. You can also <a "
1055
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1056
+ msgstr ""
1057
+ "<span class='comment_label_afterselect'> upozornění na nové komentáře k "
1058
+ "tomuto článku.</span> <span class='comment_label_nocom'> Chcete dostávat "
1059
+ "upozornění na nové komentáře a sami článek nekomentovat? <a "
1060
+ "href='[subscribe_link]'>Přihlaste se k odběru</a>.</span>"
1061
 
1062
+ #: utils/stcr_manage.php:247
1063
+ msgid ""
1064
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1065
+ "subscriptions."
1066
+ msgstr ""
1067
+ "Jste přihlášen k odběru upozornění na nové komentáře k tomuto článku. Můžete "
1068
+ "<a href='[manager_link]'>upravit</a> vaše odběry."
1069
 
1070
+ #: utils/stcr_manage.php:248
1071
+ msgid ""
1072
+ "Your subscription to this post needs to be confirmed. <a "
1073
+ "href='[manager_link]'>Manage your subscriptions</a>."
1074
+ msgstr ""
1075
+ "Vaše žádost k odběru upozornění na nové komentáře čeká na schválení. <a "
1076
+ "href='[manager_link]'>Upravit vaše žádosti</a>."
1077
 
1078
+ #: utils/stcr_manage.php:249
1079
+ msgid ""
1080
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1081
+ msgstr ""
1082
+ "<a href='[manager_link]'>Zde můžete spravovat</a> odběry upozornění na nové "
1083
+ "komentáře k tomuto článku."
1084
 
1085
+ #: utils/stcr_manage.php:255
1086
+ msgid ""
1087
+ "To manage your subscriptions, please enter your email address here below. We "
1088
+ "will send you a message containing the link to access your personal "
1089
+ "management page."
1090
  msgstr ""
1091
+ "Pro správu vašich upozornění zadejte e-mailovou adresu do pole níže. Bude "
1092
+ "vám zaslán editační odkaz."
1093
 
1094
+ #: utils/stcr_manage.php:256
1095
+ msgid ""
1096
+ "Thank you for using our subscription service. Your request has been "
1097
+ "completed, and you should receive an email with the management link in a few "
1098
+ "minutes."
1099
  msgstr ""
1100
+ "Váš požadavek byl zpracován. V nejbližší době by jste měli obdržet odkaz v "
1101
+ "emailu."
1102
 
1103
+ #: utils/stcr_manage.php:257
1104
+ msgid ""
1105
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1106
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1107
+ "form here below and you're all set."
1108
  msgstr ""
1109
+ "Zasílat upozornění na nové komentáře k článku » [post_title] « .\n"
1110
+ " E-mailovou adresu vyplňte do pole níže. Bude vám zaslán potvrzovací odkaz. "
1111
 
1112
+ #: utils/stcr_manage.php:258
1113
+ msgid ""
1114
+ "Thank you for using our subscription service. Your request has been "
1115
+ "completed. You will receive a notification email every time a new comment to "
1116
+ "this article is approved and posted by the administrator."
1117
+ msgstr ""
1118
+ "Váš požadavek byl zpracován. Váš odběr upozornění na nové komentáře k tomuto "
1119
+ "článku je aktivní."
1120
 
1121
+ #: utils/stcr_manage.php:259
1122
+ msgid ""
1123
+ "Thank you for using our subscription service. In order to confirm your "
1124
+ "request, please check your email for the verification message and follow the "
1125
+ "instructions."
1126
  msgstr ""
1127
+ "Váš požadavek byl zpracován. Pro potvrzení požadavku naleznete ve vašem "
1128
+ "emailu potvrzovací odkaz."
1129
 
1130
+ #: utils/stcr_manage.php:260
1131
+ msgid ""
1132
+ "In order to cancel or suspend one or more notifications, select the "
1133
+ "corresponding checkbox(es) and click on the button at the end of the list."
1134
+ msgstr ""
1135
+ "Pro editaci upozornění vyberte odpovídající odběr, zaškrtněte volbu a "
1136
+ "potvrďte."
1137
 
1138
+ #: utils/stcr_manage.php:261
1139
+ msgid ""
1140
+ "In order to cancel or suspend one or more notifications, select the "
1141
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1142
+ "You are currently subscribed to:"
1143
+ msgstr ""
1144
+ "Aktuálně odebíráte upozornění na nové komentáře k těmto článkům (pokud je "
1145
+ "chcete změnit či zrušit zaškrtněte volbu a klikntěte na tlačítko "
1146
+ "aktualizovat, pokud změnu nechcete pokračujte třeba přes menu):"
1147
 
1148
+ #: utils/stcr_manage.php:265
1149
+ msgid "There is a new comment to [post_title]"
1150
+ msgstr "Nový komentář k článku: [post_title]"
1151
 
1152
+ #: utils/stcr_manage.php:266
1153
+ msgid ""
1154
+ "There is a new comment to [post_title].\n"
1155
+ "Comment Link: [comment_permalink]\n"
1156
+ "Author: [comment_author]\n"
1157
+ "Comment:\n"
1158
+ "[comment_content]\n"
1159
+ "Permalink: [post_permalink]\n"
1160
+ "Manage your subscriptions: [manager_link]"
1161
+ msgstr ""
1162
+ "Nový komentář k článku: [post_title].\n"
1163
+ "Odkaz na komentář: [comment_permalink]\n"
1164
+ "Autor: [comment_author]\n"
1165
+ "Znění komentáře:\n"
1166
+ "[comment_content]\n"
1167
+ "Odkaz na článek: [post_permalink]\n"
1168
+ "Upravit odběry upozornění: [manager_link]\n"
1169
+ "\t\t\t\t\t"
1170
 
1171
+ #: utils/stcr_manage.php:267
1172
+ msgid "Please confirm your subscription to [post_title]"
1173
+ msgstr "Potvrďte odběr upozornění na nové komentáře k článku [post_title]"
1174
 
1175
+ #: utils/stcr_manage.php:268
1176
+ msgid ""
1177
+ "You have requested to be notified every time a new comment is added to:\n"
1178
+ "[post_permalink]\n"
1179
+ "\n"
1180
+ "Please confirm your request by clicking on this link:\n"
1181
+ "[confirm_link]"
1182
+ msgstr ""
1183
+ "Dobrý den, přihlásili jste se k odběru upozornění na nové komentáře k "
1184
+ "článku: \n"
1185
+ " [post_permalink] .\n"
1186
+ "\n"
1187
+ "Požadavek potvrďte prosím kliknutím na odkaz:\n"
1188
+ "[confirm_link] "
1189
 
1190
+ #: utils/stcr_manage.php:269
1191
+ msgid "Manage your subscriptions on [blog_name]"
1192
+ msgstr "Upravit odběr upozornění na nové komentáře z [blog_name]"
1193
 
1194
+ #: utils/stcr_manage.php:270
1195
+ msgid ""
1196
+ "You have requested to manage your subscriptions to the articles on "
1197
+ "[blog_name]. Please check the Subscriptions management link in your email"
1198
+ msgstr ""
1199
 
1200
+ #: utils/stcr_manage.php:271
1201
+ msgid ""
1202
+ "You have requested to manage your subscriptions to the articles on "
1203
+ "[blog_name]. Follow this link to access your personal page:\n"
1204
+ "[manager_link]"
1205
+ msgstr ""
1206
+ "Váš požadavek spravovat odběr upozornění na nové komentáře článků na "
1207
+ "[blog_name] byl zpracován. Klikněte prosím zde pro úpravy:\n"
1208
+ " [manager_link]"
1209
 
1210
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1211
+ msgid "StCR System"
1212
+ msgstr ""
 
1213
 
1214
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1215
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1216
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1217
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1218
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1219
+ msgid "You do not have sufficient permissions to access this page."
1220
  msgstr ""
1221
 
1222
+ #: utils/stcr_manage.php:755
1223
+ msgid "Subscriptions"
1224
+ msgstr "Odběry "
1225
 
1226
+ #: utils/stcr_manage.php:811
1227
+ msgid ""
1228
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1229
+ msgstr "Potřebujete pomoci? Navštivte oficiální"
1230
 
1231
+ #: utils/stcr_manage.php:811
1232
+ msgid "support forum"
1233
+ msgstr "fórum podpory"
1234
 
1235
+ #: utils/stcr_manage.php:812
1236
+ msgid "Feeling generous?"
1237
+ msgstr "Chcete být štědrý?"
1238
 
1239
+ #: utils/stcr_manage.php:812
1240
+ msgid "Donate a few bucks!"
1241
+ msgstr "Přispět několika chechtáky!"
1242
 
1243
+ #: utils/stcr_upgrade.php:55
1244
+ msgid "Important Notice"
1245
+ msgstr ""
1246
 
1247
+ #: utils/stcr_upgrade.php:103
1248
+ msgid ""
1249
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1250
+ "database has been sanitized to prevent the raw html messages. <a class="
1251
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1252
+ "src=\""
1253
+ msgstr ""
1254
 
1255
+ #: utils/stcr_upgrade.php:158
1256
+ msgid ""
1257
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1258
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1259
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1260
+ msgstr ""
1261
 
1262
+ #: utils/stcr_upgrade.php:158
1263
+ msgid ""
1264
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1265
+ "Comments to prevent confusion between the two plugins."
1266
  msgstr ""
1267
 
1268
+ #: utils/stcr_upgrade.php:159
1269
+ msgid ""
1270
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1271
+ "that you want to import, you'll need to import that data manually, as only "
1272
+ "one import routine will ever run to prevent data loss."
1273
  msgstr ""
1274
 
1275
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1276
+ #: utils/stcr_upgrade.php:381
1277
  msgid ""
1278
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1279
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1280
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1281
+ "\"stcr-loading-animation\" src=\""
1282
  msgstr ""
1283
 
1284
+ #: utils/stcr_upgrade.php:231
1285
+ msgid ""
1286
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1287
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1288
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1289
+ msgstr ""
1290
 
1291
+ #: utils/stcr_upgrade.php:231
1292
  msgid ""
1293
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1294
+ "Notification to prevent confusion between the two plugins."
1295
  msgstr ""
 
1296
 
1297
+ #: utils/stcr_upgrade.php:378
1298
  msgid ""
1299
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1300
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1301
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1302
+ "Reloaded</strong>."
1303
  msgstr ""
 
1304
 
1305
+ #: utils/stcr_upgrade.php:378
1306
  msgid ""
1307
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1308
+ "Subscriptions to prevent confusion between the two plugins."
1309
  msgstr ""
1310
 
1311
+ #: utils/stcr_upgrade.php:379
1312
  msgid ""
1313
+ "If you have subscription data from another plugin (such as Subscribe to "
1314
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1315
+ "you'll need to import that data manually, as only one import routine will "
1316
+ "ever run to prevent data loss."
1317
  msgstr ""
 
 
1318
 
1319
+ #: utils/stcr_upgrade.php:380
1320
+ msgid ""
1321
+ "<strong>Note:</strong> If you were previously using the "
1322
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1323
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1324
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1325
+ "respectively."
1326
  msgstr ""
1327
 
1328
+ #: utils/stcr_upgrade.php:394
1329
  msgid ""
1330
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
 
1331
  msgstr ""
1332
 
1333
+ #: utils/stcr_upgrade.php:395
 
 
 
 
1334
  msgid ""
1335
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1336
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1337
  msgstr ""
 
 
 
 
 
 
1338
 
1339
+ #: utils/stcr_upgrade.php:396
1340
+ msgid ""
1341
+ "Please consider to make a donation to support the plugin, you can donate via "
1342
+ "<a href=\"\n"
1343
+ "https://www.paypal.com/cgi-bin/webscr?"
1344
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1345
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1346
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1347
  msgstr ""
 
 
1348
 
1349
+ #: utils/stcr_upgrade.php:398
1350
+ msgid ""
1351
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1352
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1353
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1354
+ "a><img class=\"stcr-loading-animation\" src=\""
1355
  msgstr ""
1356
 
1357
+ #: utils/stcr_upgrade.php:409
1358
+ msgid ""
1359
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1360
+ "160106."
1361
  msgstr ""
1362
 
1363
+ #: utils/stcr_upgrade.php:410
1364
+ msgid ""
1365
+ "This version includes many changes and fixes to improve your experience with "
1366
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1367
+ "email templates, Subscription Checkbox position, and more!"
1368
  msgstr ""
1369
 
1370
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1371
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1372
+ msgid ""
1373
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1374
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1375
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1376
+ "class=\"stcr-loading-animation\" src=\""
1377
  msgstr ""
1378
 
1379
+ #: utils/stcr_upgrade.php:424
1380
  msgid ""
1381
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1382
+ "160115."
1383
  msgstr ""
1384
 
1385
+ #: utils/stcr_upgrade.php:425
1386
+ msgid ""
1387
+ "This version includes fixes to broken links while managing your subscriptions"
1388
  msgstr ""
1389
 
1390
+ #: utils/stcr_upgrade.php:439
1391
  msgid ""
1392
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1393
+ "160831"
 
 
1394
  msgstr ""
1395
 
1396
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1397
+ msgid "This version includes fixes to many bugs and also new features, "
 
 
 
 
 
 
 
 
 
 
 
1398
  msgstr ""
1399
 
1400
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1401
  msgid ""
1402
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1403
+ "address. This will help the subscribers to use the Reply option in their "
1404
+ "email agents."
1405
  msgstr ""
1406
 
1407
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1408
+ msgid ""
1409
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1410
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1411
  msgstr ""
 
1412
 
1413
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1414
  msgid ""
1415
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1416
+ "without loosing your subscriptions. You can use this option also for reset "
1417
+ "all the settings, see the FAQ."
 
1418
  msgstr ""
 
 
 
 
1419
 
1420
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1421
  msgid ""
1422
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1423
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1424
+ "Post Type."
1425
  msgstr ""
 
 
1426
 
1427
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1428
  msgid ""
1429
+ "<strong>New Feature</strong> A new field was added under the notification "
1430
+ "options to and the management link only by email and not to display it on "
1431
+ "the request link page."
1432
  msgstr ""
 
 
 
 
 
 
1433
 
1434
+ #: utils/stcr_upgrade.php:461
1435
  msgid ""
1436
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1437
+ "160902"
1438
  msgstr ""
 
 
1439
 
1440
+ #: utils/stcr_upgrade.php:464
1441
  msgid ""
1442
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1443
+ "previous 160831 version."
1444
  msgstr ""
 
 
1445
 
1446
+ #: utils/stcr_utils.php:195
1447
+ msgid "StCR Notification"
 
 
1448
  msgstr ""
 
 
1449
 
1450
+ #: wp_subscribe_reloaded.php:114
1451
+ msgid "Settings"
 
 
1452
  msgstr ""
 
 
1453
 
1454
+ #: wp_subscribe_reloaded.php:1086
1455
+ msgid "Don't subscribe"
1456
+ msgstr "Neodebírat"
1457
 
1458
+ #: wp_subscribe_reloaded.php:1087
1459
+ msgid "All"
1460
+ msgstr "Odebírat (na všechny komentáře)"
1461
 
1462
  #~ msgid "Daily digest"
1463
  #~ msgstr "Denní přehled"
langs/subscribe-reloaded-da_DK.mo CHANGED
Binary file
langs/subscribe-reloaded-da_DK.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:21-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:21-0700\n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: da_DK\n"
10
  "MIME-Version: 1.0\n"
@@ -12,80 +12,141 @@ msgstr ""
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
- #: wp_subscribe_reloaded.php:114
19
- msgid "Settings"
20
- msgstr ""
 
21
 
22
- #: wp_subscribe_reloaded.php:1060
23
- msgid "Don't subscribe"
24
- msgstr "Lad administrator abonnere"
25
 
26
- #: wp_subscribe_reloaded.php:1061
27
- msgid "All"
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  msgstr ""
29
 
30
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
31
- #: templates/author.php:75
32
- msgid "Replies to my comments"
 
 
 
33
  msgstr ""
34
 
35
- #: templates/request-management-link.php:71 templates/key_expired.php:71
36
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
37
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
 
 
 
 
 
 
 
 
 
38
  msgid "Email"
39
  msgstr "E-mail"
40
 
41
- #: templates/request-management-link.php:73 templates/key_expired.php:73
42
- #: templates/subscribe.php:92
43
- msgid "Send"
44
- msgstr "Send"
 
45
 
46
- #: templates/key_expired.php:8
47
- msgid ""
48
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
49
- "enter your email below and a new link will be send."
 
 
 
 
 
 
50
  msgstr ""
51
 
52
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
53
- #: templates/author.php:80
54
- msgid "No subscriptions match your search criteria."
55
  msgstr ""
56
 
57
- #: templates/subscribe.php:42 templates/subscribe.php:43
58
- msgid "New subscription to"
59
- msgstr "Ny abonnent til"
 
60
 
61
- #: templates/subscribe.php:43
62
- msgid "User:"
63
- msgstr "Bruger:"
 
 
 
 
 
 
 
 
64
 
65
- #: templates/user.php:23 templates/author.php:23
66
- #: options/panel1-business-logic.php:70
67
  msgid "Subscriptions deleted:"
68
  msgstr "Abonnementer til:"
69
 
70
- #: templates/user.php:27 templates/author.php:27
71
- #: options/panel1-business-logic.php:74
72
  msgid "Subscriptions suspended:"
73
  msgstr "Abonnement udført"
74
 
75
- #: templates/user.php:31 templates/author.php:31
76
- #: options/panel1-business-logic.php:78
77
  msgid "Subscriptions activated:"
78
  msgstr "Abonnementer til:"
79
 
80
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
81
- #: templates/author.php:39 options/panel1-business-logic.php:82
82
- #: options/panel1-business-logic.php:86
83
  msgid "Subscriptions updated:"
84
  msgstr "Abonnementer pr. dag"
85
 
86
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
87
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
88
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
89
  msgid ""
90
  "Please remember: this operation cannot be undone. Are you sure you want to "
91
  "proceed?"
@@ -93,473 +154,197 @@ msgstr ""
93
  "Vær opmærksom: Denne operation kan ikke fortrydes! Er du sikker på at du vil "
94
  "fortsætte?"
95
 
96
- #: templates/user.php:58 templates/author.php:58
97
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
98
- msgstr ""
99
-
100
- #: templates/user.php:63
101
- msgid "F j, Y"
102
- msgstr ""
103
-
104
- #: templates/user.php:67 templates/author.php:69
105
- msgid "Select all"
106
- msgstr "Vælg alt"
107
-
108
- #: templates/user.php:68 templates/author.php:70
109
- msgid "Invert selection"
110
- msgstr "Vend det udvalgte"
111
-
112
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
113
- msgid "Action:"
114
- msgstr "Opgave:"
115
-
116
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
117
- #: options/panel1.php:212
118
- msgid "Delete"
119
- msgstr "Slet"
120
 
121
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
122
- msgid "Suspend"
123
- msgstr "Annuller"
124
 
125
- #: templates/user.php:72 templates/author.php:74
126
- msgid "All comments"
127
  msgstr ""
128
 
129
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
130
- msgid "Activate"
131
- msgstr ""
132
 
133
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
134
- msgid "Update subscriptions"
135
  msgstr "Opdater abonnementer"
136
 
137
- #: templates/author.php:57
138
- msgid "Title"
139
- msgstr "Titel"
140
 
141
- #: utils/stcr_upgrade.php:55
142
- msgid "Important Notice"
143
- msgstr ""
144
 
145
- #: utils/stcr_upgrade.php:103
146
- msgid ""
147
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
148
- "database has been sanitized to prevent the raw html messages. <a class="
149
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
150
- "src=\""
151
  msgstr ""
152
 
153
- #: utils/stcr_upgrade.php:158
154
  msgid ""
155
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
156
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
157
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
158
  msgstr ""
159
 
160
- #: utils/stcr_upgrade.php:158
161
- msgid ""
162
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
163
- "Comments to prevent confusion between the two plugins."
164
- msgstr ""
165
 
166
- #: utils/stcr_upgrade.php:159
167
- msgid ""
168
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
169
- "that you want to import, you'll need to import that data manually, as only "
170
- "one import routine will ever run to prevent data loss."
171
  msgstr ""
172
 
173
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
174
- #: utils/stcr_upgrade.php:381
175
- msgid ""
176
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
177
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
178
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
179
- "\"stcr-loading-animation\" src=\""
180
- msgstr ""
181
 
182
- #: utils/stcr_upgrade.php:231
 
183
  msgid ""
184
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
185
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
186
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
187
  msgstr ""
 
 
188
 
189
- #: utils/stcr_upgrade.php:231
190
- msgid ""
191
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
192
- "Notification to prevent confusion between the two plugins."
193
- msgstr ""
194
 
195
- #: utils/stcr_upgrade.php:378
196
- msgid ""
197
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
198
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
199
- "were detected and automatically imported into <strong>Subscribe to Comments "
200
- "Reloaded</strong>."
201
- msgstr ""
202
 
203
- #: utils/stcr_upgrade.php:378
204
- msgid ""
205
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
206
- "Subscriptions to prevent confusion between the two plugins."
207
- msgstr ""
208
 
209
- #: utils/stcr_upgrade.php:379
210
- msgid ""
211
- "If you have subscription data from another plugin (such as Subscribe to "
212
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
213
- "you'll need to import that data manually, as only one import routine will "
214
- "ever run to prevent data loss."
215
- msgstr ""
216
 
217
- #: utils/stcr_upgrade.php:380
218
- msgid ""
219
- "<strong>Note:</strong> If you were previously using the "
220
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
221
- "subscribe-url]</code> shortcode, you'll need to replace those with "
222
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
223
- "respectively."
224
- msgstr ""
225
 
226
- #: utils/stcr_upgrade.php:394
227
- msgid ""
228
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
 
 
 
229
  msgstr ""
230
 
231
- #: utils/stcr_upgrade.php:395
232
- msgid ""
233
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
234
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
235
  msgstr ""
236
 
237
- #: utils/stcr_upgrade.php:396
238
- msgid ""
239
- "If you want to donate you can do it via <a href=\"\n"
240
- "https://www.paypal.com/cgi-bin/webscr?"
241
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
242
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
243
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
244
  msgstr ""
245
 
246
- #: utils/stcr_upgrade.php:398
247
- msgid ""
248
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
249
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
250
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
251
- "a><img class=\"stcr-loading-animation\" src=\""
252
- msgstr ""
253
-
254
- #: utils/stcr_upgrade.php:409
255
- msgid ""
256
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
257
- "160106."
258
- msgstr ""
259
-
260
- #: utils/stcr_upgrade.php:410
261
- msgid ""
262
- "This version includes many changes and fixes to improve your experience with "
263
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
264
- "email templates, Subscription Checkbox position, and more!"
265
- msgstr ""
266
-
267
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
268
- #: utils/stcr_upgrade.php:448
269
- msgid ""
270
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
271
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
272
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
273
- "class=\"stcr-loading-animation\" src=\""
274
- msgstr ""
275
-
276
- #: utils/stcr_upgrade.php:424
277
- msgid ""
278
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
279
- "160115."
280
- msgstr ""
281
-
282
- #: utils/stcr_upgrade.php:425
283
- msgid ""
284
- "This version includes fixes to broken links while managing your subscriptions"
285
- msgstr ""
286
-
287
- #: utils/stcr_upgrade.php:439
288
- msgid ""
289
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
290
- "160831"
291
- msgstr ""
292
-
293
- #: utils/stcr_upgrade.php:440
294
- msgid "This version includes fixes to many bugs and also new features, "
295
- msgstr ""
296
-
297
- #: utils/stcr_upgrade.php:442
298
- msgid ""
299
- "<strong>New Feature</strong> Add new option to set the Reply To email "
300
- "address. This will help the subscribers to use the Reply option in their "
301
- "email agents."
302
- msgstr ""
303
-
304
- #: utils/stcr_upgrade.php:443
305
- msgid ""
306
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
307
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
308
- msgstr ""
309
-
310
- #: utils/stcr_upgrade.php:444
311
- msgid ""
312
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
313
- "without loosing your subscriptions. You can use this option also for reset "
314
- "all the settings, see the FAQ."
315
- msgstr ""
316
-
317
- #: utils/stcr_upgrade.php:445
318
- msgid ""
319
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
320
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
321
- "Post Type."
322
- msgstr ""
323
-
324
- #: utils/stcr_upgrade.php:446
325
- msgid ""
326
- "<strong>New Feature</strong> A new field was added under the notification "
327
- "options to and the management link only by email and not to display it on "
328
- "the request link page."
329
- msgstr ""
330
-
331
- #: utils/stcr_manage.php:246
332
- msgid ""
333
- "Notify me of followup comments via e-mail. You can also <a "
334
- "href='[subscribe_link]'>subscribe</a> without commenting."
335
- msgstr ""
336
- "Giv mig besked ved andre kommentarer via e-mail. Du kan også <a "
337
- "href='[subscribe_link]'>abonnere</a> uden at kommentere."
338
-
339
- #: utils/stcr_manage.php:247
340
- msgid ""
341
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
342
- "subscriptions."
343
- msgstr ""
344
- "Du abonnerer på dette indlæg. <a href='[manager_link]'>Rediger</a> dine "
345
- "abonnementer."
346
-
347
- #: utils/stcr_manage.php:248
348
- msgid ""
349
- "Your subscription to this post needs to be confirmed. <a "
350
- "href='[manager_link]'>Manage your subscriptions</a>."
351
- msgstr ""
352
- "Dit abonnement til dette indlæg kræver bekræftelse. <a "
353
- "href='[manager_link]'>Rediger dine abonnementer</a>."
354
-
355
- #: utils/stcr_manage.php:249
356
- msgid ""
357
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
358
- msgstr ""
359
- "Du kan <a href='[manager_link]'>redigere abonnementerne</a> til dette indlæg."
360
 
361
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
362
- #: utils/stcr_manage.php:383 options/index.php:59
363
- msgid "Manage subscriptions"
364
- msgstr "Rediger dine abonnementer"
365
 
366
- #: utils/stcr_manage.php:255
367
- msgid ""
368
- "To manage your subscriptions, please enter your email address here below. We "
369
- "will send you a message containing the link to access your personal "
370
- "management page."
371
- msgstr ""
372
- "For at redigere dine abonnementer, så indtast venligst din e-mail adresse "
373
- "herunder. Vi sender dig en besked med et link til din personlige abonnement "
374
- "side."
375
 
376
- #: utils/stcr_manage.php:256
377
- msgid ""
378
- "Thank you for using our subscription service. Your request has been "
379
- "completed, and you should receive an email with the management link in a few "
380
- "minutes."
381
- msgstr ""
382
- "Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
383
- "vil modtage en e-mail med et link med adgang til din personlige abonnements "
384
- "side."
385
 
386
- #: utils/stcr_manage.php:257
387
- msgid ""
388
- "You can follow the discussion on <strong>[post_title]</strong> without "
389
- "having to leave a comment. Cool, huh? Just enter your email address in the "
390
- "form here below and you're all set."
391
- msgstr ""
392
- "Du kan abonnere på diskussionen på <strong>[post_title]</strong> uden at du "
393
- "behøver at skrive en kommentar. Bare indtast din e-mail adresse i felter "
394
- "nedenfor og du vil blive orienteret ved nye kommentarer."
395
 
396
- #: utils/stcr_manage.php:258
397
- msgid ""
398
- "Thank you for using our subscription service. Your request has been "
399
- "completed. You will receive a notification email every time a new comment to "
400
- "this article is approved and posted by the administrator."
401
- msgstr ""
402
- "Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
403
- "vil modtage en e-mail hver gang en ny kommentar bliver godkendt af "
404
- "administrator."
405
 
406
- #: utils/stcr_manage.php:259
407
- msgid ""
408
- "Thank you for using our subscription service. In order to confirm your "
409
- "request, please check your email for the verification message and follow the "
410
- "instructions."
411
- msgstr ""
412
- "Tak for at bruge vores abonnements service. For at kunne udføre din "
413
- "forespørgsel, tjek din e-mail for en bekræftelses e-mail og følg "
414
- "instruktionerne i denne e-mail."
415
 
416
- #: utils/stcr_manage.php:260
417
- msgid ""
418
- "In order to cancel or suspend one or more notifications, select the "
419
- "corresponding checkbox(es) and click on the button at the end of the list."
420
- msgstr ""
421
- "For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
422
- "korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
423
- "listen."
424
 
425
- #: utils/stcr_manage.php:261
426
- msgid ""
427
- "In order to cancel or suspend one or more notifications, select the "
428
- "corresponding checkbox(es) and click on the button at the end of the list. "
429
- "You are currently subscribed to:"
430
  msgstr ""
431
- "For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
432
- "korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
433
- "listen. Du abonnerer i øjeblikket på:"
434
-
435
- #: utils/stcr_manage.php:265
436
- msgid "There is a new comment to [post_title]"
437
- msgstr "Der er en ny kommentar til [post_title]"
438
 
439
- #: utils/stcr_manage.php:266
440
- msgid ""
441
- "There is a new comment to [post_title].\n"
442
- "Comment Link: [comment_permalink]\n"
443
- "Author: [comment_author]\n"
444
- "Comment:\n"
445
- "[comment_content]\n"
446
- "Permalink: [post_permalink]\n"
447
- "Manage your subscriptions: [manager_link]"
448
  msgstr ""
449
- "Der er en ny kommentar til [post_title].Kommentar Link: "
450
- "[comment_permalink]Forfatter: [comment_author]Kommentar:"
451
- "[comment_content]Link til indlæg: [post_permalink]Rediger dit abonnement på "
452
- "kommentarer: [manager_link]"
453
-
454
- #: utils/stcr_manage.php:267
455
- msgid "Please confirm your subscription to [post_title]"
456
- msgstr "Venligst bekræft dit abonnement på kommentarer til [post_title]"
457
 
458
- #: utils/stcr_manage.php:268
459
- msgid ""
460
- "You have requested to be notified every time a new comment is added to:\n"
461
- "[post_permalink]\n"
462
- "\n"
463
- "Please confirm your request by clicking on this link:\n"
464
- "[confirm_link]"
465
  msgstr ""
466
- "Du har bedt om at blive adviseret hver gang der kommer en ny kommentar til: "
467
- "[post_permalink]Venligst bekræft dette ved at følge dette link:[confirm_link]"
468
 
469
- #: utils/stcr_manage.php:269
470
- msgid "Manage your subscriptions on [blog_name]"
471
- msgstr "Rediger dit abonnement på kommentarer på [blog_name]"
472
 
473
- #: utils/stcr_manage.php:270
474
- msgid ""
475
- "You have requested to manage your subscriptions to the articles on "
476
- "[blog_name]. Please check the Subscriptions management link in your email"
477
- msgstr ""
478
 
479
- #: utils/stcr_manage.php:271
480
- msgid ""
481
- "You have requested to manage your subscriptions to the articles on "
482
- "[blog_name]. Follow this link to access your personal page:\n"
483
- "[manager_link]"
484
  msgstr ""
485
- "Du har bedt om at redigere dit abonnement på kommentarer på [blog_name].Følg "
486
- "dette link for at komme til din personlige abonnements side:[manager_link]"
487
-
488
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
489
- msgid "Comment Form"
490
- msgstr "Kommentar skema"
491
 
492
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
493
- msgid "Management Page"
494
- msgstr "Administrations side"
495
-
496
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
497
- msgid "Notifications"
498
- msgstr "E-mail emne"
499
 
500
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
501
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
502
- msgid "Options"
503
- msgstr "Indstillinger"
504
 
505
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
506
- msgid "You can help"
507
- msgstr ""
508
 
509
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
510
- msgid "Support"
511
- msgstr "Support"
512
 
513
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
514
- msgid "Donate"
515
  msgstr ""
516
 
517
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
518
- msgid "StCR System"
519
  msgstr ""
520
 
521
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
522
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
523
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
524
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
525
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
526
- msgid "You do not have sufficient permissions to access this page."
527
  msgstr ""
528
 
529
- #: utils/stcr_manage.php:755
530
- msgid "Subscriptions"
531
- msgstr "Abonnementer til"
532
 
533
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
534
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
535
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
536
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
537
- #: options/panel5.php:161
538
- msgid "No"
539
- msgstr "Nej"
540
 
541
- #: utils/stcr_manage.php:811
542
- msgid ""
543
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
544
  msgstr ""
545
- "Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
546
- "officielle"
547
-
548
- #: utils/stcr_manage.php:811
549
- msgid "support forum"
550
- msgstr "support forum"
551
-
552
- #: utils/stcr_manage.php:812
553
- msgid "Feeling generous?"
554
- msgstr "Føler du dig generøs?"
555
-
556
- #: utils/stcr_manage.php:812
557
- msgid "Donate a few bucks!"
558
- msgstr "Doner et par dollar!"
559
-
560
- #: utils/stcr_utils.php:195
561
- msgid "StCR Notification"
562
- msgstr "E-mail emne"
563
 
564
  #: options/panel2.php:12 options/panel2.php:63
565
  msgid "Enable default checkbox"
@@ -601,13 +386,13 @@ msgstr "Afventer besked"
601
  msgid "Author label"
602
  msgstr "Forfatter besked"
603
 
604
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
605
- #: options/panel5.php:60 options/panel3.php:70
606
  msgid "Your settings have been successfully updated."
607
  msgstr "Dine indstillinger er blevet opdateret."
608
 
609
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
610
- #: options/panel5.php:62 options/panel3.php:72
611
  msgid "There was an error updating the following fields:"
612
  msgstr "Der var en fejl i opdateringen af disse felter:"
613
 
@@ -618,6 +403,14 @@ msgstr "Der var en fejl i opdateringen af disse felter:"
618
  msgid "Yes"
619
  msgstr "Ja"
620
 
 
 
 
 
 
 
 
 
621
  #: options/panel2.php:68
622
  msgid ""
623
  "Disable this option if you want to move the subscription checkbox to a "
@@ -659,79 +452,204 @@ msgstr "Default afkrydset"
659
  msgid "None"
660
  msgstr ""
661
 
662
- #: options/panel2.php:124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
663
  msgid ""
664
- "The default subscription type that should be selected when Advanced "
665
- "subscriptions are enable."
 
666
  msgstr ""
667
 
668
- #: options/panel2.php:135
669
- msgid "Custom inline CSS to add to the checkbox."
670
- msgstr "Tilpasset inline CSS til at tilføje til tjekboksen."
 
671
 
672
- #: options/panel2.php:152
673
  msgid ""
674
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
675
- "[checkbox_field], [checkbox_label]"
 
 
676
  msgstr ""
677
- "Tilpasset HTML kode til brug ved visning af tjekboksen. Tilladte tags: "
678
- "[checkbox_field], [checkbox_label]"
 
 
679
 
680
- #: options/panel2.php:158
681
- msgid "Messages for your visitors"
 
 
682
  msgstr ""
 
 
683
 
684
- #: options/panel2.php:162
685
- msgid "Default label"
686
- msgstr "Forfatter besked"
687
-
688
- #: options/panel2.php:175
689
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
690
- msgstr "Besked vist ved tjekboksen: Tilladt tag: [subscribe_link]"
691
-
692
- #: options/panel2.php:192
693
  msgid ""
694
- "Label shown to those who are already subscribed to a post. Allowed tag: "
695
- "[manager_link]"
696
  msgstr ""
697
- "Besked vist til dem der allerede abonnerer på et indlæg. Tilladt tag: "
698
- "[manager_link]"
699
 
700
- #: options/panel2.php:197
701
- msgid "Pending label"
702
- msgstr "Afventer besked"
703
 
704
- #: options/panel2.php:209
 
 
 
 
705
  msgid ""
706
- "Label shown to those who are already subscribed, but haven't clicked on the "
707
- "confirmation link yet. Allowed tag: [manager_link]"
708
  msgstr ""
709
- "Besked vist til dem der allerede abonnerer et indlæg, men som ikke har "
710
- "bekræftet abonnementet endnu. Tilladt tag: [manager_link]"
711
 
712
- #: options/panel2.php:225
713
  msgid ""
714
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
715
  msgstr ""
716
- "Besked vist til forfattere (og administratorer). Tilladt tag: [manager_link]"
717
-
718
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
719
- #: options/panel3.php:253
720
- msgid "Save Changes"
721
- msgstr "Gem ændringer"
722
 
723
- #: options/panel9.php:11
724
- msgid "Support Subscribe to Comments Reloaded"
 
 
725
  msgstr ""
726
- "Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
727
- "officielle"
728
 
729
- #: options/panel9.php:12
730
  msgid ""
731
- "Every contribution that you make is high valuable, so if you consider this "
732
- "plugin a helpful tool we will use your donation to invest on support and "
733
- "developing time."
734
  msgstr ""
 
 
 
 
 
 
 
 
 
 
735
 
736
  #: options/panel4.php:15 options/panel4.php:94
737
  msgid "Sender name"
@@ -794,73 +712,208 @@ msgid ""
794
  "will be the same as the Sender email address."
795
  msgstr ""
796
 
797
- #: options/panel4.php:135 options/panel3.php:127
798
- msgid "Messages"
799
- msgstr "E-mail beskeder"
800
-
801
  #: options/panel4.php:147
802
  msgid "Subject of the notification email. Allowed tag: [post_title]"
803
  msgstr "Emne til adviserings e-mail. Tilladt tag: [post_title]"
804
 
805
- #: options/panel4.php:170
806
- msgid ""
807
- "Content of the notification email. Allowed tags: [post_title], "
808
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
809
- "[manager_link]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
810
  msgstr ""
811
- "Indhold af adviserings e-mailen. Tilladte tags: [post_title], "
812
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
813
- "[manager_link]"
814
 
815
- #: options/panel4.php:171
816
  msgid ""
817
- "<p><strong>Note: To get a default template clear all the content and save "
818
- "the options.</strong></p>"
819
  msgstr ""
820
 
821
- #: options/panel4.php:184
822
- msgid "Subject of the confirmation email. Allowed tag: [post_title]"
823
- msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
824
 
825
- #: options/panel4.php:204
826
  msgid ""
827
- "Content of the confirmation email. Allowed tags: [post_permalink], "
828
- "[confirm_link], [post_title], [manager_link]"
829
  msgstr ""
830
- "Indhold af bekræftelses e-mailen. Tilladte tags: [post_permalink], "
831
- "[confirm_link], [post_title], [manager_link]"
832
 
833
- #: options/panel4.php:217
834
- msgid ""
835
- "Subject of the mail sent to those who request to access their management "
836
- "page. Allowed tag: [blog_name]"
 
 
 
 
 
 
837
  msgstr ""
838
- "Emnet i e-mailen sendt til dem der beder om adgang til deres administrations "
839
- "side. Tilladt tag: [blog_name]"
840
 
841
- #: options/panel4.php:223
842
- msgid "Management Page message"
843
  msgstr ""
844
 
845
- #: options/panel4.php:237
846
- msgid "Content of the management Page message. Allowed tags: [blog_name]."
847
  msgstr ""
848
 
849
- #: options/panel4.php:257
850
- msgid ""
851
- "Content of the management email message. Allowed tags: [blog_name], "
852
- "[manager_link]."
853
  msgstr ""
854
 
855
- #: options/panel4.php:263
856
- msgid "One Click Unsubscribe"
857
- msgstr "Lad administrator abonnere"
858
 
859
- #: options/panel4.php:277
860
  msgid ""
861
- "Content of the One Click confirmation. Allowed tags: [post_title], "
862
- "[blog_name]"
863
- msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
864
 
865
  #: options/panel7.php:8 options/panel8.php:8
866
  msgid "Support the developers"
@@ -926,528 +979,492 @@ msgstr ""
926
  "den er. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
927
  "reloaded/\">Rate den</a> på Plugin Directory siden."
928
 
929
- #: options/panel1.php:20
930
- msgid "Mass Update Subscriptions"
931
- msgstr "Opdater abonnementer"
932
-
933
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
934
- msgid "From"
935
- msgstr "Fra"
936
-
937
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
938
- msgid "email address"
939
- msgstr "Afsender e-mail adresse"
940
-
941
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
942
- msgid "To"
943
- msgstr "Til"
944
-
945
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
946
- msgid "optional - new email address"
947
- msgstr "Opdater e-mail adresse"
948
-
949
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
950
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
951
- #: options/panel1-edit-subscription.php:26
952
- msgid "Status"
953
- msgstr "Status"
954
-
955
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
956
- msgid "Keep unchanged"
957
  msgstr ""
958
 
959
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
960
- #: options/panel1-add-subscription.php:22
961
- #: options/panel1-edit-subscription.php:29
962
- msgid "Active"
963
- msgstr "Opgave"
964
-
965
- #: options/panel1.php:43 options/panel1.php:80
966
- #: options/panel1-add-subscription.php:23
967
- #: options/panel1-edit-subscription.php:30
968
- msgid "Replies only"
969
  msgstr ""
970
 
971
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
972
- msgid "Suspended"
973
- msgstr "Annuller"
974
-
975
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
976
- #: options/panel1-edit-subscription.php:33
977
- msgid "Update"
978
- msgstr "Opdater"
979
-
980
- #: options/panel1.php:49
981
- msgid "More info"
982
  msgstr ""
 
 
983
 
984
- #: options/panel1.php:55
985
  msgid ""
986
- "This option will allow you to change an email address for another one or to "
987
- "update the same status for all the subscription on a specific email address."
 
988
  msgstr ""
989
 
990
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
991
- msgid "Add New Subscription"
992
- msgstr "Ny abonnent til"
993
-
994
- #: options/panel1.php:68
995
- msgid "Post ID"
996
- msgstr "Indlæg (ID)"
997
 
998
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
999
- msgid "Ask user to confirm"
1000
  msgstr ""
1001
 
1002
- #: options/panel1.php:83
1003
- msgid "Add"
1004
- msgstr ""
1005
 
1006
- #: options/panel1.php:98
1007
- msgid "Search subscriptions"
1008
- msgstr "Abonnementer"
1009
 
1010
- #: options/panel1.php:102
1011
- #, php-format
1012
- msgid ""
1013
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1014
- "where the"
1015
  msgstr ""
1016
- "Du kan enten <a href=\"%s\">liste alle abonnementer</a> eller finde dem hvor "
1017
- "<b>e-mail</b>"
1018
-
1019
- #: options/panel1.php:106
1020
- msgid "email"
1021
- msgstr "E-mail"
1022
-
1023
- #: options/panel1.php:107
1024
- msgid "post ID"
1025
- msgstr "Indlæg (ID)"
1026
-
1027
- #: options/panel1.php:108
1028
- msgid "status"
1029
- msgstr "Status"
1030
-
1031
- #: options/panel1.php:111
1032
- msgid "equals"
1033
- msgstr "er lig med"
1034
-
1035
- #: options/panel1.php:112
1036
- msgid "contains"
1037
- msgstr "indeholder"
1038
-
1039
- #: options/panel1.php:113
1040
- msgid "does not contain"
1041
- msgstr "ikke indeholder"
1042
 
1043
- #: options/panel1.php:114
1044
- msgid "starts with"
1045
  msgstr ""
1046
 
1047
- #: options/panel1.php:115
1048
- msgid "ends with"
 
1049
  msgstr ""
1050
 
1051
- #: options/panel1.php:118
1052
- msgid "results per page:"
 
 
1053
  msgstr ""
1054
 
1055
- #: options/panel1.php:120
1056
- msgid "Search"
1057
- msgstr "Søg"
 
1058
 
1059
- #: options/panel1.php:128
1060
- msgid "Reverse the order by Post ID"
1061
- msgstr "Omvend rækkefølgen til indlægs ID"
1062
 
1063
- #: options/panel1.php:129 options/panel1.php:130
1064
- msgid "Reverse the order by Date/Time"
1065
- msgstr "Omvend rækkefølgen til Dato/tid"
1066
 
1067
- #: options/panel1.php:132
1068
- msgid "Post (ID)"
1069
- msgstr "Indlæg (ID)"
1070
 
1071
- #: options/panel1.php:135
1072
- msgid "Search query:"
1073
- msgstr "Søg"
1074
 
1075
- #: options/panel1.php:135
1076
- msgid "Rows:"
1077
- msgstr "Rækker:"
 
 
 
 
1078
 
1079
- #: options/panel1.php:135
1080
- msgid "of"
1081
- msgstr "af"
 
 
 
 
1082
 
1083
- #: options/panel1.php:142 options/panel1.php:158
1084
- msgid "Date and Time"
1085
- msgstr "Dato og tid"
 
 
 
 
1086
 
1087
- #: options/panel1.php:168
1088
- msgid "Replies"
 
1089
  msgstr ""
 
1090
 
1091
- #: options/panel1.php:169
1092
- msgid "All Comments"
 
 
 
1093
  msgstr ""
 
 
 
1094
 
1095
- #: options/panel1.php:170
1096
- msgid "Unconfirmed"
 
 
 
1097
  msgstr ""
 
 
 
1098
 
1099
- #: options/panel1.php:171
1100
- msgid "Inactive"
1101
- msgstr "Opgave"
1102
-
1103
- #: options/panel1.php:201 options/panel1.php:211
1104
- msgid "Edit"
1105
  msgstr ""
 
 
 
1106
 
1107
- #: options/panel1.php:203 options/panel1.php:209
1108
- msgid "Subscription"
1109
- msgstr "Abonnementer til"
1110
-
1111
- #: options/panel1.php:226
1112
- msgid "Delete forever"
1113
- msgstr "Slet for altid"
1114
-
1115
- #: options/panel1.php:228
1116
- msgid "Activate and set to Y"
1117
  msgstr ""
 
 
 
1118
 
1119
- #: options/panel1.php:229
1120
- msgid "Activate and set to R"
 
 
 
1121
  msgstr ""
 
 
 
1122
 
1123
- #: options/panel1.php:237
1124
- msgid "Sorry, no subscriptions match your search criteria."
1125
- msgstr "Beklager, der er ikke fundet nogle abonnenter til"
 
 
 
 
 
1126
 
1127
- #: options/panel1-business-logic.php:23
1128
- msgid "Subscription added."
1129
- msgstr "Abonnementer"
 
 
 
 
 
 
1130
 
1131
- #: options/panel1-business-logic.php:39
1132
- msgid "Subscriptions updated."
1133
- msgstr "Abonnementer pr. dag"
1134
 
1135
- #: options/panel1-business-logic.php:51
1136
- msgid "Subscription deleted."
1137
- msgstr "Abonnement udført"
 
 
 
 
 
 
 
 
 
 
 
1138
 
1139
- #: options/panel1-business-logic.php:110
1140
- msgid "&laquo; Previous"
1141
- msgstr "&laquo; Forrige"
1142
 
1143
- #: options/panel1-business-logic.php:114
1144
- msgid "Next &raquo;"
1145
- msgstr "Næste &raquo;"
 
 
 
 
 
 
 
1146
 
1147
- #: options/panel1-add-subscription.php:13
1148
- #: options/panel1-edit-subscription.php:13
1149
- msgid "Post:"
1150
- msgstr "Rækker:"
1151
 
1152
- #: options/panel5.php:28
1153
- msgid "Safetly Uninstall"
 
 
1154
  msgstr ""
1155
 
1156
- #: options/panel5.php:31 options/panel5.php:84
1157
- msgid "Autopurge requests"
1158
- msgstr "Autoslet forespørgsler"
 
 
 
 
 
1159
 
1160
- #: options/panel5.php:34 options/panel5.php:93
1161
- msgid "Enable double check"
1162
- msgstr "Slå bekræftelse til"
1163
 
1164
- #: options/panel5.php:37 options/panel5.php:101
1165
- msgid "Subscribe authors"
1166
- msgstr "Abonnements besked"
 
 
 
 
1167
 
1168
- #: options/panel5.php:40 options/panel5.php:111
1169
- msgid "Enable HTML emails"
1170
- msgstr "Slå HTML e-mails til"
1171
 
1172
- #: options/panel5.php:43
1173
- msgid "HTMLify Links in HTML emails"
 
1174
  msgstr ""
 
 
1175
 
1176
- #: options/panel5.php:46
1177
- msgid "Send trackbacks"
1178
- msgstr "Send trackbacks"
1179
 
1180
- #: options/panel5.php:49
1181
- msgid "Notify admin"
1182
- msgstr "Adviser administrator"
1183
 
1184
- #: options/panel5.php:52 options/panel5.php:149
1185
- msgid "Let admin subscribe"
1186
- msgstr "Lad administrator abonnere"
1187
 
1188
- #: options/panel5.php:55 options/panel5.php:158
1189
- msgid "BCC admin on Notifications"
1190
- msgstr "E-mail emne"
1191
 
1192
- #: options/panel5.php:76
1193
- msgid "Safely Uninstall"
 
 
 
 
1194
  msgstr ""
1195
 
1196
- #: options/panel5.php:80
1197
  msgid ""
1198
- "This option will allow you to delete the plugin with WordPress without "
1199
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
1200
  msgstr ""
1201
 
1202
- #: options/panel5.php:87
1203
- msgid "days"
1204
- msgstr "dage"
 
 
1205
 
1206
- #: options/panel5.php:88
1207
  msgid ""
1208
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1209
- "this feature."
 
1210
  msgstr ""
1211
- "Slet afventende abonnementer (ikke bekræftede) after X dage. 0 slår denne "
1212
- "funktion fra."
1213
 
1214
- #: options/panel5.php:97
 
1215
  msgid ""
1216
- "Send a notification email to confirm the subscription (to avoid addresses "
1217
- "misuse)."
 
 
1218
  msgstr ""
1219
- "Send en bekræftelses e-mail for at bekræfte abonnement (for at undgå e-mail "
1220
- "adresse misbrug)."
1221
 
1222
- #: options/panel5.php:106
1223
  msgid ""
1224
- "Automatically subscribe authors to their own articles (not retroactive)."
 
 
1225
  msgstr ""
1226
 
1227
- #: options/panel5.php:115
1228
  msgid ""
1229
- "If enabled, will send email messages with content-type = text/html instead "
1230
- "of text/plain"
1231
  msgstr ""
1232
- "Hvis slået til, så vil e-mail beskeder indeholde = tekst/html i stedet for "
1233
- "tekst/plain"
1234
 
1235
- #: options/panel5.php:120
1236
- msgid "HTMLify links in emails"
 
 
 
 
1237
  msgstr ""
1238
 
1239
- #: options/panel5.php:125
1240
  msgid ""
1241
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1242
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1243
  msgstr ""
1244
 
1245
- #: options/panel5.php:130
1246
- msgid "Process trackbacks"
1247
- msgstr "Send trackbacks"
1248
-
1249
- #: options/panel5.php:134
1250
  msgid ""
1251
- "Notify users when a new trackback or pingback is added to the discussion."
 
 
 
1252
  msgstr ""
1253
- "Adviser abonnenter når en ny trackback eller pingback er tilføjet til "
1254
- "kommentarer."
1255
-
1256
- #: options/panel5.php:139
1257
- msgid "Track all subscriptions"
1258
- msgstr "Advisering ved abonnementer"
1259
-
1260
- #: options/panel5.php:144
1261
- msgid "Notify the administrator when users subscribe without commenting."
1262
- msgstr "Adviser administrator når brugere abonnerer uden at kommentere."
1263
 
1264
- #: options/panel5.php:153
1265
- msgid "Let the administrator subscribe to comments when logged in."
 
 
 
 
 
1266
  msgstr ""
1267
- "Lad administrator abonnere på kommentarer når administrator er logget ind."
1268
 
1269
- #: options/panel5.php:162
1270
- msgid "Send a copy of all Notifications to the administrator."
 
1271
  msgstr ""
1272
 
1273
- #: options/panel5.php:167
1274
- msgid "StCR Unique Key"
 
 
1275
  msgstr ""
1276
 
1277
- #: options/panel5.php:172
1278
- msgid "This Unique Key is not set, please click the following button to "
 
 
 
 
 
 
1279
  msgstr ""
1280
 
1281
- #: options/panel5.php:176 options/panel5.php:187
1282
- msgid "Generate"
 
 
 
 
1283
  msgstr ""
1284
 
1285
- #: options/panel5.php:184
1286
  msgid ""
1287
- "This Unique Key will be use to send the notification to your subscribers "
1288
- "with more security."
1289
  msgstr ""
1290
 
1291
- #: options/panel8.php:18
1292
- msgid "Did you find a Bug on the plugin?"
 
 
 
1293
  msgstr ""
1294
 
1295
- #: options/panel8.php:19
 
1296
  msgid ""
1297
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1298
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1299
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1300
- "WordPress Support page."
1301
  msgstr ""
1302
 
1303
- #: options/panel1-edit-subscription.php:8
1304
- msgid "Update Subscription"
1305
- msgstr "Opdater abonnement"
1306
-
1307
- #: options/panel1-edit-subscription.php:11
1308
- #: options/panel1-edit-subscription.php:21
1309
- #: options/panel1-edit-subscription.php:22
1310
- #: options/panel1-edit-subscription.php:23
1311
- msgid "optional"
1312
- msgstr "Indstillinger"
1313
-
1314
- #: options/panel10.php:22 options/panel10.php:23
1315
- msgid "System Information"
1316
  msgstr ""
1317
 
1318
- #: options/panel3.php:13 options/panel3.php:87
1319
- msgid "Virtual Management Page"
1320
- msgstr "Administrations side"
1321
-
1322
- #: options/panel3.php:18 options/panel3.php:96
1323
- msgid "Page title"
1324
- msgstr "Side titel"
1325
-
1326
- #: options/panel3.php:23 options/panel3.php:105
1327
- msgid "Management URL"
1328
- msgstr "Administrations side"
1329
-
1330
- #: options/panel3.php:28 options/panel3.php:117
1331
- msgid "Custom HEAD meta"
1332
  msgstr ""
1333
 
1334
- #: options/panel3.php:34 options/panel3.php:131
1335
- msgid "Request link"
1336
- msgstr "Anmod om link"
1337
-
1338
- #: options/panel3.php:39 options/panel3.php:149
1339
- msgid "Request submitted"
1340
- msgstr "Forespørgsel afsendt"
1341
-
1342
- #: options/panel3.php:44 options/panel3.php:167
1343
- msgid "Subscribe without commenting"
1344
- msgstr "Abonner uden at kommentere"
1345
-
1346
- #: options/panel3.php:49 options/panel3.php:185
1347
- msgid "Subscription processed"
1348
- msgstr "Abonnement udført"
1349
-
1350
- #: options/panel3.php:54 options/panel3.php:203
1351
- msgid "Subscription processed (DCI)"
1352
- msgstr "Abonnement udført (Bekræftelse)"
1353
-
1354
- #: options/panel3.php:59 options/panel3.php:220
1355
- msgid "Authors"
1356
- msgstr "Forfattere"
1357
-
1358
- #: options/panel3.php:64 options/panel3.php:236
1359
- msgid "Users"
1360
- msgstr "Brugere"
1361
-
1362
- #: options/panel3.php:90
1363
- msgid "Enabled"
1364
  msgstr ""
1365
 
1366
- #: options/panel3.php:91
1367
- msgid "Disabled"
1368
  msgstr ""
1369
 
1370
- #: options/panel3.php:92
1371
  msgid ""
1372
- "Disable the virtual management page if you need to create a <a href="
1373
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1374
- "real-management-page\">real page</a> to make your theme happy."
1375
- msgstr ""
1376
-
1377
- #: options/panel3.php:101
1378
- msgid "Title of the page your visitors will use to manage their subscriptions."
1379
  msgstr ""
1380
- "Titel på siden de besøgende bruger til at administrere deres abonnementer."
1381
 
1382
- #: options/panel3.php:109
1383
  msgid ""
1384
- "The permalink for your management page (something like <code>/manage-"
1385
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1386
- "b> actually exist in the system, but its link must follow your permalink "
1387
- "structure."
1388
  msgstr ""
1389
- "Permalink til din administrations side (f.eks. som <code>/administrer-"
1390
- "abonnement</code> eller <code>/?page_id=345</code>). Denne side "
1391
- "<b>eksisterer ikke</b> ikke i dit system, men linket skal følge dine "
1392
- "permalink indstillinger."
1393
 
1394
- #: options/panel3.php:111
1395
  msgid ""
1396
- "Warning: it looks like the value you are using may be incompatible with your "
1397
- "permalink structure"
 
1398
  msgstr ""
1399
- "Advarsel: Det ser ud til at der format du bruger, måske ikke er matcher dine "
1400
- "permalink indstillinger"
1401
 
1402
- #: options/panel3.php:121
1403
  msgid ""
1404
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1405
- "Use <strong>single</strong> quotes for values."
 
1406
  msgstr ""
1407
 
1408
- #: options/panel3.php:144
1409
- msgid "Text shown to those who request to manage their subscriptions."
1410
- msgstr "Tekst vist til dem der forespørger om adgang til deres abonnementer."
1411
-
1412
- #: options/panel3.php:162
1413
  msgid ""
1414
- "Thank you note shown after the request here above has been processed. "
1415
- "Allowed tags: [post_title], [post_permalink]"
 
1416
  msgstr ""
1417
- "Kvitteringsbesked vist efter forespørgslen ovenfor er udført. Tilladte tags: "
1418
- "[post_title], [post_permalink]"
1419
 
1420
- #: options/panel3.php:180
1421
  msgid ""
1422
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1423
- "[post_title], [post_permalink]"
1424
  msgstr ""
1425
- "Tekst vist til dem der abonnerer uden at kommentere. Tilladte tags: "
1426
- "[post_title], [post_permalink]"
1427
 
1428
- #: options/panel3.php:198
1429
  msgid ""
1430
- "Thank you note shown after the subscription request has been processed "
1431
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1432
  msgstr ""
1433
- "Kvitteringsbesked vist efter abonnements forespørgslen er udført "
1434
- "(bekræftelse slået fra). Tilladte tags: [post_title], [post_permalink]"
1435
 
1436
- #: options/panel3.php:216
1437
- msgid ""
1438
- "Thank you note shown after the subscription request has been processed "
1439
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
 
1440
  msgstr ""
1441
- "Kvitteringsbesked vist efter abonnements forespørgslen er udført "
1442
- "(bekræftelse slået til). Tilladte tags: [post_title], [post_permalink]"
1443
 
1444
- #: options/panel3.php:232
1445
- msgid "Introductory text for the authors' management page."
1446
- msgstr "Introduktions tekst til forfatterens administrations side."
1447
 
1448
- #: options/panel3.php:248
1449
- msgid "Introductory text for the users' management page."
1450
- msgstr "Introduktions tekst til brugerens administrations side."
1451
 
1452
  #~ msgid "StCR Subscription Box Position"
1453
  #~ msgstr "Ny abonnent til"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:27-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:27-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: da_DK\n"
10
  "MIME-Version: 1.0\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
+ "X-Generator: Poedit 1.8.7.1\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
19
+ #: utils/stcr_manage.php:383
20
+ msgid "Manage subscriptions"
21
+ msgstr "Rediger dine abonnementer"
22
 
23
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
24
+ msgid "Comment Form"
25
+ msgstr "Kommentar skema"
26
 
27
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
28
+ msgid "Management Page"
29
+ msgstr "Administrations side"
30
+
31
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
32
+ msgid "Notifications"
33
+ msgstr "E-mail emne"
34
+
35
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
36
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
37
+ msgid "Options"
38
+ msgstr "Indstillinger"
39
+
40
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
41
+ msgid "You can help"
42
  msgstr ""
43
 
44
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
45
+ msgid "Support"
46
+ msgstr "Support"
47
+
48
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
49
+ msgid "Donate"
50
  msgstr ""
51
 
52
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
53
+ msgid "Add New Subscription"
54
+ msgstr "Ny abonnent til"
55
+
56
+ #: options/panel1-add-subscription.php:13
57
+ #: options/panel1-edit-subscription.php:13
58
+ msgid "Post:"
59
+ msgstr "Rækker:"
60
+
61
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
62
+ #: options/panel1.php:133 templates/key_expired.php:84
63
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
64
+ #: templates/user.php:57
65
  msgid "Email"
66
  msgstr "E-mail"
67
 
68
+ #: options/panel1-add-subscription.php:20
69
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
70
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
71
+ msgid "Status"
72
+ msgstr "Status"
73
 
74
+ #: options/panel1-add-subscription.php:22
75
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
76
+ #: options/panel1.php:79 options/panel1.php:172
77
+ msgid "Active"
78
+ msgstr "Opgave"
79
+
80
+ #: options/panel1-add-subscription.php:23
81
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
82
+ #: options/panel1.php:80
83
+ msgid "Replies only"
84
  msgstr ""
85
 
86
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
87
+ msgid "Ask user to confirm"
 
88
  msgstr ""
89
 
90
+ #: options/panel1-add-subscription.php:26
91
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
92
+ msgid "Update"
93
+ msgstr "Opdater"
94
 
95
+ #: options/panel1-business-logic.php:23
96
+ msgid "Subscription added."
97
+ msgstr "Abonnementer"
98
+
99
+ #: options/panel1-business-logic.php:39
100
+ msgid "Subscriptions updated."
101
+ msgstr "Abonnementer pr. dag"
102
+
103
+ #: options/panel1-business-logic.php:51
104
+ msgid "Subscription deleted."
105
+ msgstr "Abonnement udført"
106
 
107
+ #: options/panel1-business-logic.php:70 templates/author.php:23
108
+ #: templates/user.php:23
109
  msgid "Subscriptions deleted:"
110
  msgstr "Abonnementer til:"
111
 
112
+ #: options/panel1-business-logic.php:74 templates/author.php:27
113
+ #: templates/user.php:27
114
  msgid "Subscriptions suspended:"
115
  msgstr "Abonnement udført"
116
 
117
+ #: options/panel1-business-logic.php:78 templates/author.php:31
118
+ #: templates/user.php:31
119
  msgid "Subscriptions activated:"
120
  msgstr "Abonnementer til:"
121
 
122
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
123
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
124
+ #: templates/user.php:39
125
  msgid "Subscriptions updated:"
126
  msgstr "Abonnementer pr. dag"
127
 
128
+ #: options/panel1-business-logic.php:110
129
+ msgid "&laquo; Previous"
130
+ msgstr "&laquo; Forrige"
131
+
132
+ #: options/panel1-business-logic.php:114
133
+ msgid "Next &raquo;"
134
+ msgstr "Næste &raquo;"
135
+
136
+ #: options/panel1-edit-subscription.php:8
137
+ msgid "Update Subscription"
138
+ msgstr "Opdater abonnement"
139
+
140
  #: options/panel1-edit-subscription.php:11
141
+ #: options/panel1-edit-subscription.php:21
142
+ #: options/panel1-edit-subscription.php:22
143
+ #: options/panel1-edit-subscription.php:23
144
+ msgid "optional"
145
+ msgstr "Indstillinger"
146
+
147
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
148
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
149
+ #: templates/author.php:52 templates/user.php:52
150
  msgid ""
151
  "Please remember: this operation cannot be undone. Are you sure you want to "
152
  "proceed?"
154
  "Vær opmærksom: Denne operation kan ikke fortrydes! Er du sikker på at du vil "
155
  "fortsætte?"
156
 
157
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
158
+ msgid "From"
159
+ msgstr "Fra"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
 
161
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
162
+ msgid "To"
163
+ msgstr "Til"
164
 
165
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
166
+ msgid "Keep unchanged"
167
  msgstr ""
168
 
169
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
170
+ msgid "Suspended"
171
+ msgstr "Annuller"
172
 
173
+ #: options/panel1.php:20
174
+ msgid "Mass Update Subscriptions"
175
  msgstr "Opdater abonnementer"
176
 
177
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
178
+ msgid "email address"
179
+ msgstr "Afsender e-mail adresse"
180
 
181
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
182
+ msgid "optional - new email address"
183
+ msgstr "Opdater e-mail adresse"
184
 
185
+ #: options/panel1.php:49
186
+ msgid "More info"
 
 
 
 
187
  msgstr ""
188
 
189
+ #: options/panel1.php:55
190
  msgid ""
191
+ "This option will allow you to change an email address for another one or to "
192
+ "update the same status for all the subscription on a specific email address."
 
193
  msgstr ""
194
 
195
+ #: options/panel1.php:68
196
+ msgid "Post ID"
197
+ msgstr "Indlæg (ID)"
 
 
198
 
199
+ #: options/panel1.php:83
200
+ msgid "Add"
 
 
 
201
  msgstr ""
202
 
203
+ #: options/panel1.php:98
204
+ msgid "Search subscriptions"
205
+ msgstr "Abonnementer"
 
 
 
 
 
206
 
207
+ #: options/panel1.php:102
208
+ #, php-format
209
  msgid ""
210
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
211
+ "where the"
 
212
  msgstr ""
213
+ "Du kan enten <a href=\"%s\">liste alle abonnementer</a> eller finde dem hvor "
214
+ "<b>e-mail</b>"
215
 
216
+ #: options/panel1.php:106
217
+ msgid "email"
218
+ msgstr "E-mail"
 
 
219
 
220
+ #: options/panel1.php:107
221
+ msgid "post ID"
222
+ msgstr "Indlæg (ID)"
 
 
 
 
223
 
224
+ #: options/panel1.php:108
225
+ msgid "status"
226
+ msgstr "Status"
 
 
227
 
228
+ #: options/panel1.php:111
229
+ msgid "equals"
230
+ msgstr "er lig med"
 
 
 
 
231
 
232
+ #: options/panel1.php:112
233
+ msgid "contains"
234
+ msgstr "indeholder"
 
 
 
 
 
235
 
236
+ #: options/panel1.php:113
237
+ msgid "does not contain"
238
+ msgstr "ikke indeholder"
239
+
240
+ #: options/panel1.php:114
241
+ msgid "starts with"
242
  msgstr ""
243
 
244
+ #: options/panel1.php:115
245
+ msgid "ends with"
 
 
246
  msgstr ""
247
 
248
+ #: options/panel1.php:118
249
+ msgid "results per page:"
 
 
 
 
 
250
  msgstr ""
251
 
252
+ #: options/panel1.php:120
253
+ msgid "Search"
254
+ msgstr "Søg"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
+ #: options/panel1.php:128
257
+ msgid "Reverse the order by Post ID"
258
+ msgstr "Omvend rækkefølgen til indlægs ID"
 
259
 
260
+ #: options/panel1.php:129 options/panel1.php:130
261
+ msgid "Reverse the order by Date/Time"
262
+ msgstr "Omvend rækkefølgen til Dato/tid"
 
 
 
 
 
 
263
 
264
+ #: options/panel1.php:132
265
+ msgid "Post (ID)"
266
+ msgstr "Indlæg (ID)"
 
 
 
 
 
 
267
 
268
+ #: options/panel1.php:135
269
+ msgid "Search query:"
270
+ msgstr "Søg"
 
 
 
 
 
 
271
 
272
+ #: options/panel1.php:135
273
+ msgid "Rows:"
274
+ msgstr "Rækker:"
 
 
 
 
 
 
275
 
276
+ #: options/panel1.php:135
277
+ msgid "of"
278
+ msgstr "af"
 
 
 
 
 
 
279
 
280
+ #: options/panel1.php:142 options/panel1.php:158
281
+ msgid "Date and Time"
282
+ msgstr "Dato og tid"
 
 
 
 
 
283
 
284
+ #: options/panel1.php:168
285
+ msgid "Replies"
 
 
 
286
  msgstr ""
 
 
 
 
 
 
 
287
 
288
+ #: options/panel1.php:169
289
+ msgid "All Comments"
 
 
 
 
 
 
 
290
  msgstr ""
 
 
 
 
 
 
 
 
291
 
292
+ #: options/panel1.php:170
293
+ msgid "Unconfirmed"
 
 
 
 
 
294
  msgstr ""
 
 
295
 
296
+ #: options/panel1.php:171
297
+ msgid "Inactive"
298
+ msgstr "Opgave"
299
 
300
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
301
+ #: templates/user.php:70
302
+ msgid "Delete"
303
+ msgstr "Slet"
 
304
 
305
+ #: options/panel1.php:201 options/panel1.php:211
306
+ msgid "Edit"
 
 
 
307
  msgstr ""
 
 
 
 
 
 
308
 
309
+ #: options/panel1.php:203 options/panel1.php:209
310
+ msgid "Subscription"
311
+ msgstr "Abonnementer til"
 
 
 
 
312
 
313
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
314
+ msgid "Action:"
315
+ msgstr "Opgave:"
 
316
 
317
+ #: options/panel1.php:226
318
+ msgid "Delete forever"
319
+ msgstr "Slet for altid"
320
 
321
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
322
+ msgid "Suspend"
323
+ msgstr "Annuller"
324
 
325
+ #: options/panel1.php:228
326
+ msgid "Activate and set to Y"
327
  msgstr ""
328
 
329
+ #: options/panel1.php:229
330
+ msgid "Activate and set to R"
331
  msgstr ""
332
 
333
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
334
+ msgid "Activate"
 
 
 
 
335
  msgstr ""
336
 
337
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
338
+ msgid "Update subscriptions"
339
+ msgstr "Opdater abonnementer"
340
 
341
+ #: options/panel1.php:237
342
+ msgid "Sorry, no subscriptions match your search criteria."
343
+ msgstr "Beklager, der er ikke fundet nogle abonnenter til"
 
 
 
 
344
 
345
+ #: options/panel10.php:22 options/panel10.php:23
346
+ msgid "System Information"
 
347
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
348
 
349
  #: options/panel2.php:12 options/panel2.php:63
350
  msgid "Enable default checkbox"
386
  msgid "Author label"
387
  msgstr "Forfatter besked"
388
 
389
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
390
+ #: options/panel5.php:18 options/panel5.php:60
391
  msgid "Your settings have been successfully updated."
392
  msgstr "Dine indstillinger er blevet opdateret."
393
 
394
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
395
+ #: options/panel5.php:20 options/panel5.php:62
396
  msgid "There was an error updating the following fields:"
397
  msgstr "Der var en fejl i opdateringen af disse felter:"
398
 
403
  msgid "Yes"
404
  msgstr "Ja"
405
 
406
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
407
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
408
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
409
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
410
+ #: utils/stcr_manage.php:784
411
+ msgid "No"
412
+ msgstr "Nej"
413
+
414
  #: options/panel2.php:68
415
  msgid ""
416
  "Disable this option if you want to move the subscription checkbox to a "
452
  msgid "None"
453
  msgstr ""
454
 
455
+ #: options/panel2.php:124
456
+ msgid ""
457
+ "The default subscription type that should be selected when Advanced "
458
+ "subscriptions are enable."
459
+ msgstr ""
460
+
461
+ #: options/panel2.php:135
462
+ msgid "Custom inline CSS to add to the checkbox."
463
+ msgstr "Tilpasset inline CSS til at tilføje til tjekboksen."
464
+
465
+ #: options/panel2.php:152
466
+ msgid ""
467
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
468
+ "[checkbox_field], [checkbox_label]"
469
+ msgstr ""
470
+ "Tilpasset HTML kode til brug ved visning af tjekboksen. Tilladte tags: "
471
+ "[checkbox_field], [checkbox_label]"
472
+
473
+ #: options/panel2.php:158
474
+ msgid "Messages for your visitors"
475
+ msgstr ""
476
+
477
+ #: options/panel2.php:162
478
+ msgid "Default label"
479
+ msgstr "Forfatter besked"
480
+
481
+ #: options/panel2.php:175
482
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
483
+ msgstr "Besked vist ved tjekboksen: Tilladt tag: [subscribe_link]"
484
+
485
+ #: options/panel2.php:192
486
+ msgid ""
487
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
488
+ "[manager_link]"
489
+ msgstr ""
490
+ "Besked vist til dem der allerede abonnerer på et indlæg. Tilladt tag: "
491
+ "[manager_link]"
492
+
493
+ #: options/panel2.php:197
494
+ msgid "Pending label"
495
+ msgstr "Afventer besked"
496
+
497
+ #: options/panel2.php:209
498
+ msgid ""
499
+ "Label shown to those who are already subscribed, but haven't clicked on the "
500
+ "confirmation link yet. Allowed tag: [manager_link]"
501
+ msgstr ""
502
+ "Besked vist til dem der allerede abonnerer på et indlæg, men som ikke har "
503
+ "bekræftet abonnementet endnu. Tilladt tag: [manager_link]"
504
+
505
+ #: options/panel2.php:225
506
+ msgid ""
507
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
508
+ msgstr ""
509
+ "Besked vist til forfattere (og administratorer). Tilladt tag: [manager_link]"
510
+
511
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
512
+ #: options/panel5.php:195
513
+ msgid "Save Changes"
514
+ msgstr "Gem ændringer"
515
+
516
+ #: options/panel3.php:13 options/panel3.php:87
517
+ msgid "Virtual Management Page"
518
+ msgstr "Administrations side"
519
+
520
+ #: options/panel3.php:18 options/panel3.php:96
521
+ msgid "Page title"
522
+ msgstr "Side titel"
523
+
524
+ #: options/panel3.php:23 options/panel3.php:105
525
+ msgid "Management URL"
526
+ msgstr "Administrations side"
527
+
528
+ #: options/panel3.php:28 options/panel3.php:117
529
+ msgid "Custom HEAD meta"
530
+ msgstr ""
531
+
532
+ #: options/panel3.php:34 options/panel3.php:131
533
+ msgid "Request link"
534
+ msgstr "Anmod om link"
535
+
536
+ #: options/panel3.php:39 options/panel3.php:149
537
+ msgid "Request submitted"
538
+ msgstr "Forespørgsel afsendt"
539
+
540
+ #: options/panel3.php:44 options/panel3.php:167
541
+ msgid "Subscribe without commenting"
542
+ msgstr "Abonner uden at kommentere"
543
+
544
+ #: options/panel3.php:49 options/panel3.php:185
545
+ msgid "Subscription processed"
546
+ msgstr "Abonnement udført"
547
+
548
+ #: options/panel3.php:54 options/panel3.php:203
549
+ msgid "Subscription processed (DCI)"
550
+ msgstr "Abonnement udført (Bekræftelse)"
551
+
552
+ #: options/panel3.php:59 options/panel3.php:220
553
+ msgid "Authors"
554
+ msgstr "Forfattere"
555
+
556
+ #: options/panel3.php:64 options/panel3.php:236
557
+ msgid "Users"
558
+ msgstr "Brugere"
559
+
560
+ #: options/panel3.php:90
561
+ msgid "Enabled"
562
+ msgstr ""
563
+
564
+ #: options/panel3.php:91
565
+ msgid "Disabled"
566
+ msgstr ""
567
+
568
+ #: options/panel3.php:92
569
  msgid ""
570
+ "Disable the virtual management page if you need to create a <a href="
571
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
572
+ "real-management-page\">real page</a> to make your theme happy."
573
  msgstr ""
574
 
575
+ #: options/panel3.php:101
576
+ msgid "Title of the page your visitors will use to manage their subscriptions."
577
+ msgstr ""
578
+ "Titel på siden de besøgende bruger til at administrere deres abonnementer."
579
 
580
+ #: options/panel3.php:109
581
  msgid ""
582
+ "The permalink for your management page (something like <code>/manage-"
583
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
584
+ "b> actually exist in the system, but its link must follow your permalink "
585
+ "structure."
586
  msgstr ""
587
+ "Permalink til din administrations side (f.eks. som <code>/administrer-"
588
+ "abonnement</code> eller <code>/?page_id=345</code>). Denne side "
589
+ "<b>eksisterer ikke</b> ikke i dit system, men linket skal følge dine "
590
+ "permalink indstillinger."
591
 
592
+ #: options/panel3.php:111
593
+ msgid ""
594
+ "Warning: it looks like the value you are using may be incompatible with your "
595
+ "permalink structure"
596
  msgstr ""
597
+ "Advarsel: Det ser ud til at der format du bruger, måske ikke er matcher dine "
598
+ "permalink indstillinger"
599
 
600
+ #: options/panel3.php:121
 
 
 
 
 
 
 
 
601
  msgid ""
602
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
603
+ "Use <strong>single</strong> quotes for values."
604
  msgstr ""
 
 
605
 
606
+ #: options/panel3.php:127 options/panel4.php:135
607
+ msgid "Messages"
608
+ msgstr "E-mail beskeder"
609
 
610
+ #: options/panel3.php:144
611
+ msgid "Text shown to those who request to manage their subscriptions."
612
+ msgstr "Tekst vist til dem der forespørger om adgang til deres abonnementer."
613
+
614
+ #: options/panel3.php:162
615
  msgid ""
616
+ "Thank you note shown after the request here above has been processed. "
617
+ "Allowed tags: [post_title], [post_permalink]"
618
  msgstr ""
619
+ "Kvitteringsbesked vist efter forespørgslen ovenfor er udført. Tilladte tags: "
620
+ "[post_title], [post_permalink]"
621
 
622
+ #: options/panel3.php:180
623
  msgid ""
624
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
625
+ "[post_title], [post_permalink]"
626
  msgstr ""
627
+ "Tekst vist til dem der abonnerer uden at kommentere. Tilladte tags: "
628
+ "[post_title], [post_permalink]"
 
 
 
 
629
 
630
+ #: options/panel3.php:198
631
+ msgid ""
632
+ "Thank you note shown after the subscription request has been processed "
633
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
634
  msgstr ""
635
+ "Kvitteringsbesked vist efter abonnements forespørgslen er udført "
636
+ "(bekræftelse slået fra). Tilladte tags: [post_title], [post_permalink]"
637
 
638
+ #: options/panel3.php:216
639
  msgid ""
640
+ "Thank you note shown after the subscription request has been processed "
641
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
642
  msgstr ""
643
+ "Kvitteringsbesked vist efter abonnements forespørgslen er udført "
644
+ "(bekræftelse slået til). Tilladte tags: [post_title], [post_permalink]"
645
+
646
+ #: options/panel3.php:232
647
+ msgid "Introductory text for the authors' management page."
648
+ msgstr "Introduktions tekst til forfatterens administrations side."
649
+
650
+ #: options/panel3.php:248
651
+ msgid "Introductory text for the users' management page."
652
+ msgstr "Introduktions tekst til brugerens administrations side."
653
 
654
  #: options/panel4.php:15 options/panel4.php:94
655
  msgid "Sender name"
712
  "will be the same as the Sender email address."
713
  msgstr ""
714
 
 
 
 
 
715
  #: options/panel4.php:147
716
  msgid "Subject of the notification email. Allowed tag: [post_title]"
717
  msgstr "Emne til adviserings e-mail. Tilladt tag: [post_title]"
718
 
719
+ #: options/panel4.php:170
720
+ msgid ""
721
+ "Content of the notification email. Allowed tags: [post_title], "
722
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
723
+ "[manager_link]"
724
+ msgstr ""
725
+ "Indhold af adviserings e-mailen. Tilladte tags: [post_title], "
726
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
727
+ "[manager_link]"
728
+
729
+ #: options/panel4.php:171
730
+ msgid ""
731
+ "<p><strong>Note: To get a default template clear all the content and save "
732
+ "the options.</strong></p>"
733
+ msgstr ""
734
+
735
+ #: options/panel4.php:184
736
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
737
+ msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
738
+
739
+ #: options/panel4.php:204
740
+ msgid ""
741
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
742
+ "[confirm_link], [post_title], [manager_link]"
743
+ msgstr ""
744
+ "Indhold af bekræftelses e-mailen. Tilladte tags: [post_permalink], "
745
+ "[confirm_link], [post_title], [manager_link]"
746
+
747
+ #: options/panel4.php:217
748
+ msgid ""
749
+ "Subject of the mail sent to those who request to access their management "
750
+ "page. Allowed tag: [blog_name]"
751
+ msgstr ""
752
+ "Emnet i e-mailen sendt til dem der beder om adgang til deres administrations "
753
+ "side. Tilladt tag: [blog_name]"
754
+
755
+ #: options/panel4.php:223
756
+ msgid "Management Page message"
757
+ msgstr ""
758
+
759
+ #: options/panel4.php:237
760
+ msgid "Content of the management Page message. Allowed tags: [blog_name]."
761
+ msgstr ""
762
+
763
+ #: options/panel4.php:257
764
+ msgid ""
765
+ "Content of the management email message. Allowed tags: [blog_name], "
766
+ "[manager_link]."
767
+ msgstr ""
768
+
769
+ #: options/panel4.php:263
770
+ msgid "One Click Unsubscribe"
771
+ msgstr "Lad administrator abonnere"
772
+
773
+ #: options/panel4.php:277
774
+ msgid ""
775
+ "Content of the One Click confirmation. Allowed tags: [post_title], "
776
+ "[blog_name]"
777
+ msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
778
+
779
+ #: options/panel5.php:28
780
+ msgid "Safetly Uninstall"
781
+ msgstr ""
782
+
783
+ #: options/panel5.php:31 options/panel5.php:84
784
+ msgid "Autopurge requests"
785
+ msgstr "Autoslet forespørgsler"
786
+
787
+ #: options/panel5.php:34 options/panel5.php:93
788
+ msgid "Enable double check"
789
+ msgstr "Slå bekræftelse til"
790
+
791
+ #: options/panel5.php:37 options/panel5.php:101
792
+ msgid "Subscribe authors"
793
+ msgstr "Abonnements besked"
794
+
795
+ #: options/panel5.php:40 options/panel5.php:111
796
+ msgid "Enable HTML emails"
797
+ msgstr "Slå HTML e-mails til"
798
+
799
+ #: options/panel5.php:43
800
+ msgid "HTMLify Links in HTML emails"
801
+ msgstr ""
802
+
803
+ #: options/panel5.php:46
804
+ msgid "Send trackbacks"
805
+ msgstr "Send trackbacks"
806
+
807
+ #: options/panel5.php:49
808
+ msgid "Notify admin"
809
+ msgstr "Adviser administrator"
810
+
811
+ #: options/panel5.php:52 options/panel5.php:149
812
+ msgid "Let admin subscribe"
813
+ msgstr "Lad administrator abonnere"
814
+
815
+ #: options/panel5.php:55 options/panel5.php:158
816
+ msgid "BCC admin on Notifications"
817
+ msgstr "E-mail emne"
818
+
819
+ #: options/panel5.php:76
820
+ msgid "Safely Uninstall"
821
+ msgstr ""
822
+
823
+ #: options/panel5.php:80
824
+ msgid ""
825
+ "This option will allow you to delete the plugin with WordPress without "
826
+ "loosing your subscribers. Any database table and plugin options are wipeout."
827
+ msgstr ""
828
+
829
+ #: options/panel5.php:87
830
+ msgid "days"
831
+ msgstr "dage"
832
+
833
+ #: options/panel5.php:88
834
+ msgid ""
835
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
836
+ "this feature."
837
+ msgstr ""
838
+ "Slet afventende abonnementer (ikke bekræftede) after X dage. 0 slår denne "
839
+ "funktion fra."
840
+
841
+ #: options/panel5.php:97
842
+ msgid ""
843
+ "Send a notification email to confirm the subscription (to avoid addresses "
844
+ "misuse)."
845
+ msgstr ""
846
+ "Send en bekræftelses e-mail for at bekræfte abonnement (for at undgå e-mail "
847
+ "adresse misbrug)."
848
+
849
+ #: options/panel5.php:106
850
+ msgid ""
851
+ "Automatically subscribe authors to their own articles (not retroactive)."
852
+ msgstr ""
853
+
854
+ #: options/panel5.php:115
855
+ msgid ""
856
+ "If enabled, will send email messages with content-type = text/html instead "
857
+ "of text/plain"
858
+ msgstr ""
859
+ "Hvis slået til, så vil e-mail beskeder indeholde = tekst/html i stedet for "
860
+ "tekst/plain"
861
+
862
+ #: options/panel5.php:120
863
+ msgid "HTMLify links in emails"
864
  msgstr ""
 
 
 
865
 
866
+ #: options/panel5.php:125
867
  msgid ""
868
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
869
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
870
  msgstr ""
871
 
872
+ #: options/panel5.php:130
873
+ msgid "Process trackbacks"
874
+ msgstr "Send trackbacks"
875
 
876
+ #: options/panel5.php:134
877
  msgid ""
878
+ "Notify users when a new trackback or pingback is added to the discussion."
 
879
  msgstr ""
880
+ "Adviser abonnenter når en ny trackback eller pingback er tilføjet til "
881
+ "kommentarer."
882
 
883
+ #: options/panel5.php:139
884
+ msgid "Track all subscriptions"
885
+ msgstr "Advisering ved abonnementer"
886
+
887
+ #: options/panel5.php:144
888
+ msgid "Notify the administrator when users subscribe without commenting."
889
+ msgstr "Adviser administrator når brugere abonnerer uden at kommentere."
890
+
891
+ #: options/panel5.php:153
892
+ msgid "Let the administrator subscribe to comments when logged in."
893
  msgstr ""
894
+ "Lad administrator abonnere kommentarer når administrator er logget ind."
 
895
 
896
+ #: options/panel5.php:162
897
+ msgid "Send a copy of all Notifications to the administrator."
898
  msgstr ""
899
 
900
+ #: options/panel5.php:167
901
+ msgid "StCR Unique Key"
902
  msgstr ""
903
 
904
+ #: options/panel5.php:172
905
+ msgid "This Unique Key is not set, please click the following button to "
 
 
906
  msgstr ""
907
 
908
+ #: options/panel5.php:176 options/panel5.php:187
909
+ msgid "Generate"
910
+ msgstr ""
911
 
912
+ #: options/panel5.php:184
913
  msgid ""
914
+ "This Unique Key will be use to send the notification to your subscribers "
915
+ "with more security."
916
+ msgstr ""
917
 
918
  #: options/panel7.php:8 options/panel8.php:8
919
  msgid "Support the developers"
979
  "den er. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
980
  "reloaded/\">Rate den</a> på Plugin Directory siden."
981
 
982
+ #: options/panel8.php:18
983
+ msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
984
  msgstr ""
985
 
986
+ #: options/panel8.php:19
987
+ msgid ""
988
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
989
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
990
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
991
+ "WordPress Support page."
 
 
 
 
992
  msgstr ""
993
 
994
+ #: options/panel9.php:11
995
+ msgid "Support Subscribe to Comments Reloaded"
 
 
 
 
 
 
 
 
 
996
  msgstr ""
997
+ "Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
998
+ "officielle"
999
 
1000
+ #: options/panel9.php:12
1001
  msgid ""
1002
+ "Every contribution that you make is high valuable, so if you consider this "
1003
+ "plugin a helpful tool we will use your donation to invest on support and "
1004
+ "developing time."
1005
  msgstr ""
1006
 
1007
+ #: templates/author.php:57
1008
+ msgid "Title"
1009
+ msgstr "Titel"
 
 
 
 
1010
 
1011
+ #: templates/author.php:58 templates/user.php:58
1012
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1013
  msgstr ""
1014
 
1015
+ #: templates/author.php:69 templates/user.php:67
1016
+ msgid "Select all"
1017
+ msgstr "Vælg alt"
1018
 
1019
+ #: templates/author.php:70 templates/user.php:68
1020
+ msgid "Invert selection"
1021
+ msgstr "Vend det udvalgte"
1022
 
1023
+ #: templates/author.php:74 templates/user.php:72
1024
+ msgid "All comments"
 
 
 
1025
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1026
 
1027
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1028
+ msgid "Replies to my comments"
1029
  msgstr ""
1030
 
1031
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1032
+ #: templates/user.php:79
1033
+ msgid "No subscriptions match your search criteria."
1034
  msgstr ""
1035
 
1036
+ #: templates/key_expired.php:8
1037
+ msgid ""
1038
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1039
+ "enter your email below and a new link will be send."
1040
  msgstr ""
1041
 
1042
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1043
+ #: templates/subscribe.php:106
1044
+ msgid "Send"
1045
+ msgstr "Send"
1046
 
1047
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1048
+ msgid "New subscription to"
1049
+ msgstr "Ny abonnent til"
1050
 
1051
+ #: templates/subscribe.php:44
1052
+ msgid "User:"
1053
+ msgstr "Bruger:"
1054
 
1055
+ #: templates/user.php:63
1056
+ msgid "F j, Y"
1057
+ msgstr ""
1058
 
1059
+ #: templates/wrong-request.php:9
1060
+ msgid "You have request to manage another email address and this is forbidden."
1061
+ msgstr ""
1062
 
1063
+ #: utils/stcr_manage.php:246
1064
+ msgid ""
1065
+ "Notify me of followup comments via e-mail. You can also <a "
1066
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1067
+ msgstr ""
1068
+ "Giv mig besked ved andre kommentarer via e-mail. Du kan også <a "
1069
+ "href='[subscribe_link]'>abonnere</a> uden at kommentere."
1070
 
1071
+ #: utils/stcr_manage.php:247
1072
+ msgid ""
1073
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1074
+ "subscriptions."
1075
+ msgstr ""
1076
+ "Du abonnerer på dette indlæg. <a href='[manager_link]'>Rediger</a> dine "
1077
+ "abonnementer."
1078
 
1079
+ #: utils/stcr_manage.php:248
1080
+ msgid ""
1081
+ "Your subscription to this post needs to be confirmed. <a "
1082
+ "href='[manager_link]'>Manage your subscriptions</a>."
1083
+ msgstr ""
1084
+ "Dit abonnement til dette indlæg kræver bekræftelse. <a "
1085
+ "href='[manager_link]'>Rediger dine abonnementer</a>."
1086
 
1087
+ #: utils/stcr_manage.php:249
1088
+ msgid ""
1089
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1090
  msgstr ""
1091
+ "Du kan <a href='[manager_link]'>redigere abonnementerne</a> til dette indlæg."
1092
 
1093
+ #: utils/stcr_manage.php:255
1094
+ msgid ""
1095
+ "To manage your subscriptions, please enter your email address here below. We "
1096
+ "will send you a message containing the link to access your personal "
1097
+ "management page."
1098
  msgstr ""
1099
+ "For at redigere dine abonnementer, så indtast venligst din e-mail adresse "
1100
+ "herunder. Vi sender dig en besked med et link til din personlige abonnement "
1101
+ "side."
1102
 
1103
+ #: utils/stcr_manage.php:256
1104
+ msgid ""
1105
+ "Thank you for using our subscription service. Your request has been "
1106
+ "completed, and you should receive an email with the management link in a few "
1107
+ "minutes."
1108
  msgstr ""
1109
+ "Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
1110
+ "vil modtage en e-mail med et link med adgang til din personlige abonnements "
1111
+ "side."
1112
 
1113
+ #: utils/stcr_manage.php:257
1114
+ msgid ""
1115
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1116
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1117
+ "form here below and you're all set."
 
1118
  msgstr ""
1119
+ "Du kan abonnere på diskussionen på <strong>[post_title]</strong> uden at du "
1120
+ "behøver at skrive en kommentar. Bare indtast din e-mail adresse i felter "
1121
+ "nedenfor og du vil blive orienteret ved nye kommentarer."
1122
 
1123
+ #: utils/stcr_manage.php:258
1124
+ msgid ""
1125
+ "Thank you for using our subscription service. Your request has been "
1126
+ "completed. You will receive a notification email every time a new comment to "
1127
+ "this article is approved and posted by the administrator."
 
 
 
 
 
1128
  msgstr ""
1129
+ "Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
1130
+ "vil modtage en e-mail hver gang en ny kommentar bliver godkendt af "
1131
+ "administrator."
1132
 
1133
+ #: utils/stcr_manage.php:259
1134
+ msgid ""
1135
+ "Thank you for using our subscription service. In order to confirm your "
1136
+ "request, please check your email for the verification message and follow the "
1137
+ "instructions."
1138
  msgstr ""
1139
+ "Tak for at bruge vores abonnements service. For at kunne udføre din "
1140
+ "forespørgsel, tjek din e-mail for en bekræftelses e-mail og følg "
1141
+ "instruktionerne i denne e-mail."
1142
 
1143
+ #: utils/stcr_manage.php:260
1144
+ msgid ""
1145
+ "In order to cancel or suspend one or more notifications, select the "
1146
+ "corresponding checkbox(es) and click on the button at the end of the list."
1147
+ msgstr ""
1148
+ "For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
1149
+ "korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
1150
+ "listen."
1151
 
1152
+ #: utils/stcr_manage.php:261
1153
+ msgid ""
1154
+ "In order to cancel or suspend one or more notifications, select the "
1155
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1156
+ "You are currently subscribed to:"
1157
+ msgstr ""
1158
+ "For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
1159
+ "korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
1160
+ "listen. Du abonnerer i øjeblikket på:"
1161
 
1162
+ #: utils/stcr_manage.php:265
1163
+ msgid "There is a new comment to [post_title]"
1164
+ msgstr "Der er en ny kommentar til [post_title]"
1165
 
1166
+ #: utils/stcr_manage.php:266
1167
+ msgid ""
1168
+ "There is a new comment to [post_title].\n"
1169
+ "Comment Link: [comment_permalink]\n"
1170
+ "Author: [comment_author]\n"
1171
+ "Comment:\n"
1172
+ "[comment_content]\n"
1173
+ "Permalink: [post_permalink]\n"
1174
+ "Manage your subscriptions: [manager_link]"
1175
+ msgstr ""
1176
+ "Der er en ny kommentar til [post_title].Kommentar Link: "
1177
+ "[comment_permalink]Forfatter: [comment_author]Kommentar:"
1178
+ "[comment_content]Link til indlæg: [post_permalink]Rediger dit abonnement på "
1179
+ "kommentarer: [manager_link]"
1180
 
1181
+ #: utils/stcr_manage.php:267
1182
+ msgid "Please confirm your subscription to [post_title]"
1183
+ msgstr "Venligst bekræft dit abonnement på kommentarer til [post_title]"
1184
 
1185
+ #: utils/stcr_manage.php:268
1186
+ msgid ""
1187
+ "You have requested to be notified every time a new comment is added to:\n"
1188
+ "[post_permalink]\n"
1189
+ "\n"
1190
+ "Please confirm your request by clicking on this link:\n"
1191
+ "[confirm_link]"
1192
+ msgstr ""
1193
+ "Du har bedt om at blive adviseret hver gang der kommer en ny kommentar til: "
1194
+ "[post_permalink]Venligst bekræft dette ved at følge dette link:[confirm_link]"
1195
 
1196
+ #: utils/stcr_manage.php:269
1197
+ msgid "Manage your subscriptions on [blog_name]"
1198
+ msgstr "Rediger dit abonnement på kommentarer på [blog_name]"
 
1199
 
1200
+ #: utils/stcr_manage.php:270
1201
+ msgid ""
1202
+ "You have requested to manage your subscriptions to the articles on "
1203
+ "[blog_name]. Please check the Subscriptions management link in your email"
1204
  msgstr ""
1205
 
1206
+ #: utils/stcr_manage.php:271
1207
+ msgid ""
1208
+ "You have requested to manage your subscriptions to the articles on "
1209
+ "[blog_name]. Follow this link to access your personal page:\n"
1210
+ "[manager_link]"
1211
+ msgstr ""
1212
+ "Du har bedt om at redigere dit abonnement på kommentarer på [blog_name].Følg "
1213
+ "dette link for at komme til din personlige abonnements side:[manager_link]"
1214
 
1215
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1216
+ msgid "StCR System"
1217
+ msgstr ""
1218
 
1219
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1220
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1221
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1222
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1223
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1224
+ msgid "You do not have sufficient permissions to access this page."
1225
+ msgstr ""
1226
 
1227
+ #: utils/stcr_manage.php:755
1228
+ msgid "Subscriptions"
1229
+ msgstr "Abonnementer til"
1230
 
1231
+ #: utils/stcr_manage.php:811
1232
+ msgid ""
1233
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1234
  msgstr ""
1235
+ "Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
1236
+ "officielle"
1237
 
1238
+ #: utils/stcr_manage.php:811
1239
+ msgid "support forum"
1240
+ msgstr "support forum"
1241
 
1242
+ #: utils/stcr_manage.php:812
1243
+ msgid "Feeling generous?"
1244
+ msgstr "Føler du dig generøs?"
1245
 
1246
+ #: utils/stcr_manage.php:812
1247
+ msgid "Donate a few bucks!"
1248
+ msgstr "Doner et par dollar!"
1249
 
1250
+ #: utils/stcr_upgrade.php:55
1251
+ msgid "Important Notice"
1252
+ msgstr ""
1253
 
1254
+ #: utils/stcr_upgrade.php:103
1255
+ msgid ""
1256
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1257
+ "database has been sanitized to prevent the raw html messages. <a class="
1258
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1259
+ "src=\""
1260
  msgstr ""
1261
 
1262
+ #: utils/stcr_upgrade.php:158
1263
  msgid ""
1264
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1265
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1266
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1267
  msgstr ""
1268
 
1269
+ #: utils/stcr_upgrade.php:158
1270
+ msgid ""
1271
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1272
+ "Comments to prevent confusion between the two plugins."
1273
+ msgstr ""
1274
 
1275
+ #: utils/stcr_upgrade.php:159
1276
  msgid ""
1277
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1278
+ "that you want to import, you'll need to import that data manually, as only "
1279
+ "one import routine will ever run to prevent data loss."
1280
  msgstr ""
 
 
1281
 
1282
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1283
+ #: utils/stcr_upgrade.php:381
1284
  msgid ""
1285
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1286
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1287
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1288
+ "\"stcr-loading-animation\" src=\""
1289
  msgstr ""
 
 
1290
 
1291
+ #: utils/stcr_upgrade.php:231
1292
  msgid ""
1293
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1294
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1295
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1296
  msgstr ""
1297
 
1298
+ #: utils/stcr_upgrade.php:231
1299
  msgid ""
1300
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1301
+ "Notification to prevent confusion between the two plugins."
1302
  msgstr ""
 
 
1303
 
1304
+ #: utils/stcr_upgrade.php:378
1305
+ msgid ""
1306
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1307
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1308
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1309
+ "Reloaded</strong>."
1310
  msgstr ""
1311
 
1312
+ #: utils/stcr_upgrade.php:378
1313
  msgid ""
1314
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1315
+ "Subscriptions to prevent confusion between the two plugins."
1316
  msgstr ""
1317
 
1318
+ #: utils/stcr_upgrade.php:379
 
 
 
 
1319
  msgid ""
1320
+ "If you have subscription data from another plugin (such as Subscribe to "
1321
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1322
+ "you'll need to import that data manually, as only one import routine will "
1323
+ "ever run to prevent data loss."
1324
  msgstr ""
 
 
 
 
 
 
 
 
 
 
1325
 
1326
+ #: utils/stcr_upgrade.php:380
1327
+ msgid ""
1328
+ "<strong>Note:</strong> If you were previously using the "
1329
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1330
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1331
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1332
+ "respectively."
1333
  msgstr ""
 
1334
 
1335
+ #: utils/stcr_upgrade.php:394
1336
+ msgid ""
1337
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
1338
  msgstr ""
1339
 
1340
+ #: utils/stcr_upgrade.php:395
1341
+ msgid ""
1342
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1343
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1344
  msgstr ""
1345
 
1346
+ #: utils/stcr_upgrade.php:396
1347
+ msgid ""
1348
+ "Please consider to make a donation to support the plugin, you can donate via "
1349
+ "<a href=\"\n"
1350
+ "https://www.paypal.com/cgi-bin/webscr?"
1351
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1352
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1353
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1354
  msgstr ""
1355
 
1356
+ #: utils/stcr_upgrade.php:398
1357
+ msgid ""
1358
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1359
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1360
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1361
+ "a><img class=\"stcr-loading-animation\" src=\""
1362
  msgstr ""
1363
 
1364
+ #: utils/stcr_upgrade.php:409
1365
  msgid ""
1366
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1367
+ "160106."
1368
  msgstr ""
1369
 
1370
+ #: utils/stcr_upgrade.php:410
1371
+ msgid ""
1372
+ "This version includes many changes and fixes to improve your experience with "
1373
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1374
+ "email templates, Subscription Checkbox position, and more!"
1375
  msgstr ""
1376
 
1377
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1378
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1379
  msgid ""
1380
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1381
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1382
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1383
+ "class=\"stcr-loading-animation\" src=\""
1384
  msgstr ""
1385
 
1386
+ #: utils/stcr_upgrade.php:424
1387
+ msgid ""
1388
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1389
+ "160115."
 
 
 
 
 
 
 
 
 
1390
  msgstr ""
1391
 
1392
+ #: utils/stcr_upgrade.php:425
1393
+ msgid ""
1394
+ "This version includes fixes to broken links while managing your subscriptions"
 
 
 
 
 
 
 
 
 
 
 
1395
  msgstr ""
1396
 
1397
+ #: utils/stcr_upgrade.php:439
1398
+ msgid ""
1399
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1400
+ "160831"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1401
  msgstr ""
1402
 
1403
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1404
+ msgid "This version includes fixes to many bugs and also new features, "
1405
  msgstr ""
1406
 
1407
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1408
  msgid ""
1409
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1410
+ "address. This will help the subscribers to use the Reply option in their "
1411
+ "email agents."
 
 
 
 
1412
  msgstr ""
 
1413
 
1414
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1415
  msgid ""
1416
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1417
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
 
 
1418
  msgstr ""
 
 
 
 
1419
 
1420
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1421
  msgid ""
1422
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1423
+ "without loosing your subscriptions. You can use this option also for reset "
1424
+ "all the settings, see the FAQ."
1425
  msgstr ""
 
 
1426
 
1427
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1428
  msgid ""
1429
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1430
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1431
+ "Post Type."
1432
  msgstr ""
1433
 
1434
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
 
 
 
 
1435
  msgid ""
1436
+ "<strong>New Feature</strong> A new field was added under the notification "
1437
+ "options to and the management link only by email and not to display it on "
1438
+ "the request link page."
1439
  msgstr ""
 
 
1440
 
1441
+ #: utils/stcr_upgrade.php:461
1442
  msgid ""
1443
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1444
+ "160902"
1445
  msgstr ""
 
 
1446
 
1447
+ #: utils/stcr_upgrade.php:464
1448
  msgid ""
1449
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1450
+ "previous 160831 version."
1451
  msgstr ""
 
 
1452
 
1453
+ #: utils/stcr_utils.php:195
1454
+ msgid "StCR Notification"
1455
+ msgstr "E-mail emne"
1456
+
1457
+ #: wp_subscribe_reloaded.php:114
1458
+ msgid "Settings"
1459
  msgstr ""
 
 
1460
 
1461
+ #: wp_subscribe_reloaded.php:1086
1462
+ msgid "Don't subscribe"
1463
+ msgstr "Lad administrator abonnere"
1464
 
1465
+ #: wp_subscribe_reloaded.php:1087
1466
+ msgid "All"
1467
+ msgstr ""
1468
 
1469
  #~ msgid "StCR Subscription Box Position"
1470
  #~ msgstr "Ny abonnent til"
langs/subscribe-reloaded-de_DE.mo CHANGED
Binary file
langs/subscribe-reloaded-de_DE.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:21-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:21-0700\n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: de\n"
10
  "MIME-Version: 1.0\n"
@@ -19,569 +19,436 @@ msgstr ""
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: de_DE\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
- #: wp_subscribe_reloaded.php:114
27
- msgid "Settings"
28
  msgstr ""
29
 
30
- #: wp_subscribe_reloaded.php:1060
31
- msgid "Don't subscribe"
32
- msgstr "Nicht abbonieren"
33
-
34
- #: wp_subscribe_reloaded.php:1061
35
- msgid "All"
36
- msgstr "Alle"
37
-
38
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
39
- #: templates/author.php:75
40
- msgid "Replies to my comments"
41
- msgstr "Nur Antworten"
42
-
43
- #: templates/request-management-link.php:71 templates/key_expired.php:71
44
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
45
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
46
- msgid "Email"
47
- msgstr "E-Mail"
48
-
49
- #: templates/request-management-link.php:73 templates/key_expired.php:73
50
- #: templates/subscribe.php:92
51
- msgid "Send"
52
- msgstr "Abschicken"
53
-
54
- #: templates/key_expired.php:8
55
  msgid ""
56
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
57
- "enter your email below and a new link will be send."
58
  msgstr ""
59
 
60
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
61
- #: templates/author.php:80
62
- msgid "No subscriptions match your search criteria."
63
- msgstr "Keine passenden Abos gefunden."
64
-
65
- #: templates/subscribe.php:42 templates/subscribe.php:43
66
- msgid "New subscription to"
67
- msgstr "Neue Benachrichtigung"
68
-
69
- #: templates/subscribe.php:43
70
- msgid "User:"
71
- msgstr "Besucher:"
72
-
73
- #: templates/user.php:23 templates/author.php:23
74
- #: options/panel1-business-logic.php:70
75
- msgid "Subscriptions deleted:"
76
- msgstr "Abos gelöscht:"
77
-
78
- #: templates/user.php:27 templates/author.php:27
79
- #: options/panel1-business-logic.php:74
80
- msgid "Subscriptions suspended:"
81
- msgstr "Abos deaktiviert:"
82
-
83
- #: templates/user.php:31 templates/author.php:31
84
- #: options/panel1-business-logic.php:78
85
- msgid "Subscriptions activated:"
86
- msgstr "Aktivierte Benachrichtigungen:"
87
-
88
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
89
- #: templates/author.php:39 options/panel1-business-logic.php:82
90
- #: options/panel1-business-logic.php:86
91
- msgid "Subscriptions updated:"
92
- msgstr "Aktualisierte Benachrichtigungen:"
93
-
94
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
95
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
96
- #: options/panel1-edit-subscription.php:11
97
  msgid ""
98
- "Please remember: this operation cannot be undone. Are you sure you want to "
99
- "proceed?"
100
- msgstr ""
101
- "Bitte beachte: Diese Aktion kann nicht widerrufen werden. Bist Du sicher, "
102
- "dass Du fortfahren möchtest?"
103
-
104
- #: templates/user.php:58 templates/author.php:58
105
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
106
- msgstr "Legende: Y = Alle Kommentare, R = Nur Antworten, C = Inaktiv"
107
-
108
- #: templates/user.php:63
109
- msgid "F j, Y"
110
  msgstr ""
111
 
112
- #: templates/user.php:67 templates/author.php:69
113
- msgid "Select all"
114
- msgstr "Alle auswählen"
115
-
116
- #: templates/user.php:68 templates/author.php:70
117
- msgid "Invert selection"
118
- msgstr "Auswahl umkehren"
119
-
120
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
121
- msgid "Action:"
122
- msgstr "Aktion:"
123
-
124
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
125
- #: options/panel1.php:212
126
- msgid "Delete"
127
- msgstr "Löschen"
128
-
129
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
130
- msgid "Suspend"
131
- msgstr "Deaktivieren"
132
-
133
- #: templates/user.php:72 templates/author.php:74
134
- msgid "All comments"
135
  msgstr ""
136
 
137
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
138
- msgid "Activate"
139
- msgstr "Aktivieren"
140
-
141
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
142
- msgid "Update subscriptions"
143
- msgstr "Abos aktualisieren"
144
-
145
- #: templates/author.php:57
146
- msgid "Title"
147
- msgstr "Titel"
148
-
149
- #: utils/stcr_upgrade.php:55
150
- msgid "Important Notice"
151
  msgstr ""
152
 
153
- #: utils/stcr_upgrade.php:103
154
  msgid ""
155
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
156
- "database has been sanitized to prevent the raw html messages. <a class="
157
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
158
- "src=\""
159
  msgstr ""
160
 
161
- #: utils/stcr_upgrade.php:158
162
- msgid ""
163
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
164
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
165
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
166
  msgstr ""
167
 
168
- #: utils/stcr_upgrade.php:158
169
- msgid ""
170
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
171
- "Comments to prevent confusion between the two plugins."
172
  msgstr ""
173
 
174
- #: utils/stcr_upgrade.php:159
175
- msgid ""
176
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
177
- "that you want to import, you'll need to import that data manually, as only "
178
- "one import routine will ever run to prevent data loss."
179
  msgstr ""
180
 
181
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
182
- #: utils/stcr_upgrade.php:381
183
- msgid ""
184
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
185
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
186
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
187
- "\"stcr-loading-animation\" src=\""
188
  msgstr ""
189
 
190
- #: utils/stcr_upgrade.php:231
191
- msgid ""
192
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
193
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
194
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
195
  msgstr ""
196
 
197
- #: utils/stcr_upgrade.php:231
198
- msgid ""
199
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
200
- "Notification to prevent confusion between the two plugins."
201
  msgstr ""
202
 
203
- #: utils/stcr_upgrade.php:378
204
- msgid ""
205
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
206
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
207
- "were detected and automatically imported into <strong>Subscribe to Comments "
208
- "Reloaded</strong>."
209
  msgstr ""
210
 
211
- #: utils/stcr_upgrade.php:378
212
- msgid ""
213
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
214
- "Subscriptions to prevent confusion between the two plugins."
215
  msgstr ""
216
 
217
- #: utils/stcr_upgrade.php:379
218
- msgid ""
219
- "If you have subscription data from another plugin (such as Subscribe to "
220
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
221
- "you'll need to import that data manually, as only one import routine will "
222
- "ever run to prevent data loss."
223
  msgstr ""
224
 
225
- #: utils/stcr_upgrade.php:380
226
- msgid ""
227
- "<strong>Note:</strong> If you were previously using the "
228
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
229
- "subscribe-url]</code> shortcode, you'll need to replace those with "
230
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
231
- "respectively."
232
  msgstr ""
233
 
234
- #: utils/stcr_upgrade.php:394
235
- msgid ""
236
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
237
  msgstr ""
238
- "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
239
- "offizielle"
240
 
241
- #: utils/stcr_upgrade.php:395
242
- msgid ""
243
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
244
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
245
  msgstr ""
246
 
247
- #: utils/stcr_upgrade.php:396
248
- msgid ""
249
- "If you want to donate you can do it via <a href=\"\n"
250
- "https://www.paypal.com/cgi-bin/webscr?"
251
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
252
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
253
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
254
  msgstr ""
255
 
256
- #: utils/stcr_upgrade.php:398
257
- msgid ""
258
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
259
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
260
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
261
- "a><img class=\"stcr-loading-animation\" src=\""
262
  msgstr ""
263
 
264
- #: utils/stcr_upgrade.php:409
265
- msgid ""
266
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
267
- "160106."
268
  msgstr ""
269
 
270
- #: utils/stcr_upgrade.php:410
271
- msgid ""
272
- "This version includes many changes and fixes to improve your experience with "
273
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
274
- "email templates, Subscription Checkbox position, and more!"
275
  msgstr ""
276
 
277
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
278
- #: utils/stcr_upgrade.php:448
279
- msgid ""
280
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
281
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
282
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
283
- "class=\"stcr-loading-animation\" src=\""
284
- msgstr ""
285
 
286
- #: utils/stcr_upgrade.php:424
287
- msgid ""
288
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
289
- "160115."
290
- msgstr ""
291
- "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
292
- "offizielle"
293
 
294
- #: utils/stcr_upgrade.php:425
295
- msgid ""
296
- "This version includes fixes to broken links while managing your subscriptions"
297
- msgstr ""
298
 
299
- #: utils/stcr_upgrade.php:439
300
- #, fuzzy
301
- msgid ""
302
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
303
- "160831"
304
- msgstr ""
305
- "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
306
- "offizielle"
307
 
308
- #: utils/stcr_upgrade.php:440
309
- msgid "This version includes fixes to many bugs and also new features, "
310
- msgstr ""
 
311
 
312
- #: utils/stcr_upgrade.php:442
313
- msgid ""
314
- "<strong>New Feature</strong> Add new option to set the Reply To email "
315
- "address. This will help the subscribers to use the Reply option in their "
316
- "email agents."
317
- msgstr ""
318
 
319
- #: utils/stcr_upgrade.php:443
320
- msgid ""
321
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
322
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
323
- msgstr ""
324
 
325
- #: utils/stcr_upgrade.php:444
326
- msgid ""
327
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
328
- "without loosing your subscriptions. You can use this option also for reset "
329
- "all the settings, see the FAQ."
330
  msgstr ""
331
 
332
- #: utils/stcr_upgrade.php:445
333
- msgid ""
334
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
335
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
336
- "Post Type."
337
- msgstr ""
338
 
339
- #: utils/stcr_upgrade.php:446
340
- msgid ""
341
- "<strong>New Feature</strong> A new field was added under the notification "
342
- "options to and the management link only by email and not to display it on "
343
- "the request link page."
344
- msgstr ""
345
 
346
- #: utils/stcr_manage.php:246
347
- msgid ""
348
- "Notify me of followup comments via e-mail. You can also <a "
349
- "href='[subscribe_link]'>subscribe</a> without commenting."
350
- msgstr ""
351
- "E-Mail-Benachrichtigung bei weiteren Kommentaren.<br>Auch möglich: <a "
352
- "href='[subscribe_link]'>Abo ohne Kommentar</a>."
353
 
354
- #: utils/stcr_manage.php:247
355
- msgid ""
356
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
357
- "subscriptions."
358
- msgstr ""
359
- "Du erhältst Benachrichtigungen zu diesem Thema. <a "
360
- "href='[manager_link]'>Verwalte Deine Abonnements</a>."
361
 
362
- #: utils/stcr_manage.php:248
363
- msgid ""
364
- "Your subscription to this post needs to be confirmed. <a "
365
- "href='[manager_link]'>Manage your subscriptions</a>."
366
- msgstr ""
367
- "Dein Benachrichtigungswunsch muss bestätigt werden. <a "
368
- "href='[manager_link]'>Verwalte Deine Abonnements</a>."
369
 
370
- #: utils/stcr_manage.php:249
371
- msgid ""
372
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
373
- msgstr ""
374
- "Deine <a href='[manager_link]'>Benachrichtigungs-Einstellungen</a> zu diesem "
375
- "Beitrag anpassen."
376
 
377
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
378
- #: utils/stcr_manage.php:383 options/index.php:59
379
- msgid "Manage subscriptions"
380
- msgstr "Verwalte Abonnements"
381
 
382
- #: utils/stcr_manage.php:255
383
- msgid ""
384
- "To manage your subscriptions, please enter your email address here below. We "
385
- "will send you a message containing the link to access your personal "
386
- "management page."
387
- msgstr ""
388
- "Um Deine Abonnements zu verwalten, gib bitte hier Deine E-Mail-Adresse ein. "
389
- "Du bekommst dann eine E-Mail mit einem weiterführenden Link."
390
 
391
- #: utils/stcr_manage.php:256
392
- msgid ""
393
- "Thank you for using our subscription service. Your request has been "
394
- "completed, and you should receive an email with the management link in a few "
395
- "minutes."
396
- msgstr ""
397
- "Danke für das Nutzen des Benachrichtigungsdienstes. Deine Anfrage wird "
398
- "bearbeitet und eine E-Mail an Dich verschickt."
399
 
400
- #: utils/stcr_manage.php:257
401
- msgid ""
402
- "You can follow the discussion on <strong>[post_title]</strong> without "
403
- "having to leave a comment. Cool, huh? Just enter your email address in the "
404
- "form here below and you're all set."
405
- msgstr ""
406
- "Du kannst der Diskussion zum Thema <strong>[post_title]</strong> auch "
407
- "folgen, ohne bisher selbst etwas geschrieben zu haben. Hierzu einfach Deine "
408
- "E-Mail-Adresse in das dafür vorgesehene Feld eintragen."
409
 
410
- #: utils/stcr_manage.php:258
411
- msgid ""
412
- "Thank you for using our subscription service. Your request has been "
413
- "completed. You will receive a notification email every time a new comment to "
414
- "this article is approved and posted by the administrator."
415
- msgstr ""
416
- "Danke für das Nutzen des Benachrichtigungsdienstes. Du wirst nun bei jedem "
417
- "neuen Kommentar per E-Mail informiert."
418
 
419
- #: utils/stcr_manage.php:259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
420
  msgid ""
421
- "Thank you for using our subscription service. In order to confirm your "
422
- "request, please check your email for the verification message and follow the "
423
- "instructions."
424
  msgstr ""
425
- "Danke für das Nutzen des Benachrichtigungsdienstes. Bitte bestätige Deine "
426
- "Anfrage durch den Link in der E-Mail, die Dir gerade zugestellt wird."
427
 
428
- #: utils/stcr_manage.php:260
429
- msgid ""
430
- "In order to cancel or suspend one or more notifications, select the "
431
- "corresponding checkbox(es) and click on the button at the end of the list."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
432
  msgstr ""
433
- "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
434
- "entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste."
435
 
436
- #: utils/stcr_manage.php:261
437
  msgid ""
438
- "In order to cancel or suspend one or more notifications, select the "
439
- "corresponding checkbox(es) and click on the button at the end of the list. "
440
- "You are currently subscribed to:"
441
  msgstr ""
442
- "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
443
- "entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste. Du "
444
- "hast derzeit abboniert:"
445
 
446
- #: utils/stcr_manage.php:265
447
- msgid "There is a new comment to [post_title]"
448
- msgstr "Neuer Kommentar zum Artikel: [post_title]"
449
 
450
- #: utils/stcr_manage.php:266
451
- msgid ""
452
- "There is a new comment to [post_title].\n"
453
- "Comment Link: [comment_permalink]\n"
454
- "Author: [comment_author]\n"
455
- "Comment:\n"
456
- "[comment_content]\n"
457
- "Permalink: [post_permalink]\n"
458
- "Manage your subscriptions: [manager_link]"
459
- msgstr ""
460
- "Hallo,\n"
461
- "es gibt einen neuen Kommentar zum Artikel: [post_title].\n"
462
- "[post_permalink]\n"
463
- "\n"
464
- "[comment_author] schrieb gerade:\n"
465
- "[comment_content]\n"
466
- "\n"
467
- "Hier antworten: [comment_permalink]\n"
468
- "Verwalte Deine Benachrichtigungen: [manager_link]"
469
 
470
- #: utils/stcr_manage.php:267
471
- msgid "Please confirm your subscription to [post_title]"
472
- msgstr "Bitte bestätige Deinen Benachrichtigungswunsch zum Thema [post_title]"
473
 
474
- #: utils/stcr_manage.php:268
 
475
  msgid ""
476
- "You have requested to be notified every time a new comment is added to:\n"
477
- "[post_permalink]\n"
478
- "\n"
479
- "Please confirm your request by clicking on this link:\n"
480
- "[confirm_link]"
481
  msgstr ""
482
- "Hallo,\n"
483
- "Du möchtest bei jedem neuen Kommentar benachrichtigt werden, der zu diesem "
484
- "Beitrag geschrieben wird:\n"
485
- "[post_permalink]\n"
486
- "\n"
487
- "Bitte bestätigte diese Anfrage durch einen Klick auf diesen Link:\n"
488
- "[confirm_link]"
489
 
490
- #: utils/stcr_manage.php:269
491
- msgid "Manage your subscriptions on [blog_name]"
492
- msgstr "Benachrichtigungs-Einstellungen von [blog_name]"
493
 
494
- #: utils/stcr_manage.php:270
495
- msgid ""
496
- "You have requested to manage your subscriptions to the articles on "
497
- "[blog_name]. Please check the Subscriptions management link in your email"
498
- msgstr ""
499
 
500
- #: utils/stcr_manage.php:271
501
- msgid ""
502
- "You have requested to manage your subscriptions to the articles on "
503
- "[blog_name]. Follow this link to access your personal page:\n"
504
- "[manager_link]"
505
- msgstr ""
506
- "Du möchtest Deine Benachrichtigungs-Einstellungen von [blog_name] ändern. "
507
- "Nutze dazu bitte diesen Link:\n"
508
- "[manager_link]"
509
 
510
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
511
- msgid "Comment Form"
512
- msgstr "Kommentarformular"
513
 
514
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
515
- msgid "Management Page"
516
- msgstr "Verwaltungsseite"
517
 
518
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
519
- msgid "Notifications"
520
- msgstr "Benachrichtigungen"
521
 
522
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
523
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
524
- msgid "Options"
525
- msgstr "Optionen"
526
 
527
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
528
- msgid "You can help"
529
- msgstr "Du kannst helfen"
530
 
531
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
532
- msgid "Support"
533
- msgstr "Support-Forum"
534
 
535
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
536
- msgid "Donate"
537
- msgstr ""
538
 
539
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
540
- msgid "StCR System"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
541
  msgstr ""
542
 
543
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
544
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
545
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
546
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
547
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
548
- msgid "You do not have sufficient permissions to access this page."
549
  msgstr ""
550
 
551
- #: utils/stcr_manage.php:755
552
- msgid "Subscriptions"
 
 
 
 
 
 
 
 
 
 
 
 
 
553
  msgstr "Abonnements"
554
 
555
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
556
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
557
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
558
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
559
- #: options/panel5.php:161
560
- msgid "No"
561
- msgstr "Nein"
562
 
563
- #: utils/stcr_manage.php:811
564
- msgid ""
565
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
566
- msgstr ""
567
- "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
568
- "offizielle"
569
 
570
- #: utils/stcr_manage.php:811
571
- msgid "support forum"
572
- msgstr "Support-Forum"
573
 
574
- #: utils/stcr_manage.php:812
575
- msgid "Feeling generous?"
576
- msgstr "Bist du spendabel?"
577
 
578
- #: utils/stcr_manage.php:812
579
- msgid "Donate a few bucks!"
580
- msgstr "Gib mir ein Trinkgeld!"
581
 
582
- #: utils/stcr_utils.php:195
583
- msgid "StCR Notification"
584
- msgstr "Benachrichtigungen"
 
 
 
 
 
 
 
 
 
 
 
 
585
 
586
  #: options/panel2.php:12 options/panel2.php:63
587
  msgid "Enable default checkbox"
@@ -623,13 +490,13 @@ msgstr "Bestätigung"
623
  msgid "Author label"
624
  msgstr "Autor"
625
 
626
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
627
- #: options/panel5.php:60 options/panel3.php:70
628
  msgid "Your settings have been successfully updated."
629
  msgstr "Deine Einstellungen wurden erfolgreich gespeichert."
630
 
631
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
632
- #: options/panel5.php:62 options/panel3.php:72
633
  msgid "There was an error updating the following fields:"
634
  msgstr ""
635
  "Bei der Aktualisierung der folgenden Felder ist ein Fehler aufgetreten:"
@@ -641,6 +508,14 @@ msgstr ""
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 "
@@ -687,80 +562,214 @@ msgstr "Standardmäßig ausgewählt"
687
  msgid "None"
688
  msgstr ""
689
 
690
- #: options/panel2.php:124
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
  msgid ""
692
- "The default subscription type that should be selected when Advanced "
693
- "subscriptions are enable."
 
 
694
  msgstr ""
 
 
 
 
695
 
696
- #: options/panel2.php:135
697
- msgid "Custom inline CSS to add to the checkbox."
698
- msgstr "Eigene Inline-CSS Stile für die Auswahlbox."
699
-
700
- #: options/panel2.php:152
701
  msgid ""
702
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
703
- "[checkbox_field], [checkbox_label]"
704
  msgstr ""
705
- "Eigener HTML-Code für die Auswahlbox. Erlaubt sind diese Tags: "
706
- "[checkbox_field], [checkbox_label]"
707
-
708
- #: options/panel2.php:158
709
- msgid "Messages for your visitors"
710
- msgstr "Nachricht an Deine Besucher"
711
-
712
- #: options/panel2.php:162
713
- msgid "Default label"
714
- msgstr "Standard Mitteilung"
715
-
716
- #: options/panel2.php:175
717
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
718
- msgstr "Beschriftung der Auswahlbox. Erlaubte Tags: [subscribe_link]"
719
 
720
- #: options/panel2.php:192
721
  msgid ""
722
- "Label shown to those who are already subscribed to a post. Allowed tag: "
723
- "[manager_link]"
724
  msgstr ""
725
- "Text, der angezeigt wird, wenn die Benachrichtigung bereits aktiviert wurde. "
726
- "Erlaubte Tags: [manager_link]"
 
727
 
728
- #: options/panel2.php:197
729
- msgid "Pending label"
730
- msgstr "Warteschlange Mitteilung"
731
 
732
- #: options/panel2.php:209
733
- msgid ""
734
- "Label shown to those who are already subscribed, but haven't clicked on the "
735
- "confirmation link yet. Allowed tag: [manager_link]"
736
  msgstr ""
737
- "Text, der angezeigt wird, wenn eine Bestätigung durch den Besucher noch "
738
- "aussteht. Erlaubte Tags: [manager_link]"
739
 
740
- #: options/panel2.php:225
741
  msgid ""
742
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
743
  msgstr ""
744
- "Text, der Autoren und Administratoren angezeigt wird. Erlaubte Tags: "
745
- "[manager_link]"
746
 
747
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
748
- #: options/panel3.php:253
749
- msgid "Save Changes"
750
- msgstr "Alle Änderungen speichern"
 
 
 
751
 
752
- #: options/panel9.php:11
753
- msgid "Support Subscribe to Comments Reloaded"
 
 
754
  msgstr ""
755
- "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
756
- "offizielle"
 
757
 
758
- #: options/panel9.php:12
759
  msgid ""
760
- "Every contribution that you make is high valuable, so if you consider this "
761
- "plugin a helpful tool we will use your donation to invest on support and "
762
- "developing time."
763
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
764
 
765
  #: options/panel4.php:15 options/panel4.php:94
766
  msgid "Sender name"
@@ -820,10 +829,6 @@ msgid ""
820
  "will be the same as the Sender email address."
821
  msgstr ""
822
 
823
- #: options/panel4.php:135 options/panel3.php:127
824
- msgid "Messages"
825
- msgstr "Nachrichten"
826
-
827
  #: options/panel4.php:147
828
  msgid "Subject of the notification email. Allowed tag: [post_title]"
829
  msgstr "Betreff-Zeile einer Benachrichtigung. Erlaubte Tags: [post_title]"
@@ -873,23 +878,161 @@ msgstr ""
873
  msgid "Content of the management Page message. Allowed tags: [blog_name]."
874
  msgstr ""
875
 
876
- #: options/panel4.php:257
877
- msgid ""
878
- "Content of the management email message. Allowed tags: [blog_name], "
879
- "[manager_link]."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
880
  msgstr ""
881
 
882
- #: options/panel4.php:263
883
- msgid "One Click Unsubscribe"
884
- msgstr "Admin-Anmeldung"
885
 
886
- #: options/panel4.php:277
887
  msgid ""
888
- "Content of the One Click confirmation. Allowed tags: [post_title], "
889
- "[blog_name]"
890
  msgstr ""
891
- "Text der E-Mail, die den Link zur Verwaltungsseite enthält. Erlaubte Tags: "
892
- "[blog_name], [manager_link]"
893
 
894
  #: options/panel7.php:8 options/panel8.php:8
895
  msgid "Support the developers"
@@ -956,536 +1099,506 @@ msgstr ""
956
  "du es einsetzt. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
957
  "comments-reloaded/\">Bewerte es</a> auf seiner Seite im Plugin-Verzeichnis."
958
 
959
- #: options/panel1.php:20
960
- msgid "Mass Update Subscriptions"
961
- msgstr "Mehrere Abos aktualisieren"
962
-
963
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
964
- msgid "From"
965
- msgstr "Von"
966
-
967
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
968
- msgid "email address"
969
- msgstr "E-Mail-Adresse des Absenders"
970
-
971
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
972
- msgid "To"
973
- msgstr "ersetze durch"
974
-
975
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
976
- msgid "optional - new email address"
977
- msgstr "E-Mail-Adresse des Absenders"
978
-
979
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
980
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
981
- #: options/panel1-edit-subscription.php:26
982
- msgid "Status"
983
- msgstr "Status"
984
-
985
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
986
- msgid "Keep unchanged"
987
- msgstr "Unverändert belassen"
988
-
989
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
990
- #: options/panel1-add-subscription.php:22
991
- #: options/panel1-edit-subscription.php:29
992
- msgid "Active"
993
- msgstr "Aktiv"
994
-
995
- #: options/panel1.php:43 options/panel1.php:80
996
- #: options/panel1-add-subscription.php:23
997
- #: options/panel1-edit-subscription.php:30
998
- msgid "Replies only"
999
- msgstr "Nur Antworten"
1000
-
1001
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
1002
- msgid "Suspended"
1003
- msgstr "Deaktiviert"
1004
-
1005
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
1006
- #: options/panel1-edit-subscription.php:33
1007
- msgid "Update"
1008
- msgstr "Aktualisieren"
1009
-
1010
- #: options/panel1.php:49
1011
- msgid "More info"
1012
  msgstr ""
1013
 
1014
- #: options/panel1.php:55
1015
  msgid ""
1016
- "This option will allow you to change an email address for another one or to "
1017
- "update the same status for all the subscription on a specific email address."
 
 
1018
  msgstr ""
1019
 
1020
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1021
- msgid "Add New Subscription"
1022
- msgstr "Neues Abo hinzufügen"
1023
-
1024
- #: options/panel1.php:68
1025
- msgid "Post ID"
1026
- msgstr "Post ID"
1027
-
1028
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1029
- msgid "Ask user to confirm"
1030
- msgstr "Benutzer nach Bestätigung fragen"
1031
-
1032
- #: options/panel1.php:83
1033
- msgid "Add"
1034
- msgstr "Hinzufügen"
1035
-
1036
- #: options/panel1.php:98
1037
- msgid "Search subscriptions"
1038
- msgstr "Abos suchen"
1039
 
1040
- #: options/panel1.php:102
1041
- #, php-format
1042
  msgid ""
1043
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1044
- "where the"
 
1045
  msgstr ""
1046
- "Du kannst entweder <a href=\"%s\">alle Abos auflisten</a> oder die einer "
1047
- "bestimmten <b>E-Mail-Adresse finden</b>"
1048
-
1049
- #: options/panel1.php:106
1050
- msgid "email"
1051
- msgstr "E-Mail"
1052
-
1053
- #: options/panel1.php:107
1054
- msgid "post ID"
1055
- msgstr "Beitrag (ID)"
1056
-
1057
- #: options/panel1.php:108
1058
- msgid "status"
1059
- msgstr "Status"
1060
-
1061
- #: options/panel1.php:111
1062
- msgid "equals"
1063
- msgstr "entspricht"
1064
-
1065
- #: options/panel1.php:112
1066
- msgid "contains"
1067
- msgstr "enthällt"
1068
-
1069
- #: options/panel1.php:113
1070
- msgid "does not contain"
1071
- msgstr "enthällt nicht"
1072
-
1073
- #: options/panel1.php:114
1074
- msgid "starts with"
1075
- msgstr "Beginnt mit"
1076
 
1077
- #: options/panel1.php:115
1078
- msgid "ends with"
1079
- msgstr "Endet mit"
1080
 
1081
- #: options/panel1.php:118
1082
- msgid "results per page:"
1083
- msgstr "Ergebnisse pro Seite:"
1084
 
1085
- #: options/panel1.php:120
1086
- msgid "Search"
1087
- msgstr "Suchen"
1088
 
1089
- #: options/panel1.php:128
1090
- msgid "Reverse the order by Post ID"
1091
- msgstr "Sortiert nach Post-ID"
1092
 
1093
- #: options/panel1.php:129 options/panel1.php:130
1094
- msgid "Reverse the order by Date/Time"
1095
- msgstr "Sortierung umkehren nach Datum/Uhrzeit"
1096
 
1097
- #: options/panel1.php:132
1098
- msgid "Post (ID)"
1099
- msgstr "Post (ID)"
1100
 
1101
- #: options/panel1.php:135
1102
- msgid "Search query:"
1103
- msgstr "Suchabfrage:"
 
1104
 
1105
- #: options/panel1.php:135
1106
- msgid "Rows:"
1107
- msgstr "Zeilen:"
 
 
1108
 
1109
- #: options/panel1.php:135
1110
- msgid "of"
1111
- msgstr "von"
 
1112
 
1113
- #: options/panel1.php:142 options/panel1.php:158
1114
- msgid "Date and Time"
1115
- msgstr "Datum und Uhrzeit"
1116
 
1117
- #: options/panel1.php:168
1118
- msgid "Replies"
1119
- msgstr "Antworten"
1120
 
1121
- #: options/panel1.php:169
1122
- msgid "All Comments"
1123
  msgstr ""
1124
 
1125
- #: options/panel1.php:170
1126
- msgid "Unconfirmed"
1127
  msgstr ""
1128
 
1129
- #: options/panel1.php:171
1130
- msgid "Inactive"
1131
- msgstr "Aktiv"
1132
-
1133
- #: options/panel1.php:201 options/panel1.php:211
1134
- msgid "Edit"
1135
- msgstr "Bearbeiten"
1136
-
1137
- #: options/panel1.php:203 options/panel1.php:209
1138
- msgid "Subscription"
1139
- msgstr "Abonnements"
1140
-
1141
- #: options/panel1.php:226
1142
- msgid "Delete forever"
1143
- msgstr "Endgültig löschen"
1144
-
1145
- #: options/panel1.php:228
1146
- msgid "Activate and set to Y"
1147
- msgstr "Aktivieren und auf Y setzen"
1148
-
1149
- #: options/panel1.php:229
1150
- msgid "Activate and set to R"
1151
- msgstr "Aktivieren und auf R setzen"
1152
-
1153
- #: options/panel1.php:237
1154
- msgid "Sorry, no subscriptions match your search criteria."
1155
- msgstr "Keine passenden Abonnements gefunden."
1156
-
1157
- #: options/panel1-business-logic.php:23
1158
- msgid "Subscription added."
1159
- msgstr "Abo hinzugefügt."
1160
-
1161
- #: options/panel1-business-logic.php:39
1162
- msgid "Subscriptions updated."
1163
- msgstr "Abos aktualisiert."
1164
-
1165
- #: options/panel1-business-logic.php:51
1166
- msgid "Subscription deleted."
1167
- msgstr "Abo gelöscht."
1168
-
1169
- #: options/panel1-business-logic.php:110
1170
- msgid "&laquo; Previous"
1171
- msgstr "&laquo; Vorherige"
1172
-
1173
- #: options/panel1-business-logic.php:114
1174
- msgid "Next &raquo;"
1175
- msgstr "Nächste &raquo;"
1176
 
1177
- #: options/panel1-add-subscription.php:13
1178
- #: options/panel1-edit-subscription.php:13
1179
- msgid "Post:"
1180
- msgstr "Beitrag:"
 
 
 
1181
 
1182
- #: options/panel5.php:28
1183
- msgid "Safetly Uninstall"
 
 
1184
  msgstr ""
 
 
1185
 
1186
- #: options/panel5.php:31 options/panel5.php:84
1187
- msgid "Autopurge requests"
1188
- msgstr "Anfragen automatisch löschen"
 
 
 
1189
 
1190
- #: options/panel5.php:34 options/panel5.php:93
1191
- msgid "Enable double check"
1192
- msgstr "Bestätigung erforderlich (double check)"
 
 
 
 
 
1193
 
1194
- #: options/panel5.php:37 options/panel5.php:101
1195
- msgid "Subscribe authors"
1196
- msgstr "Abonniert"
 
 
 
 
 
1197
 
1198
- #: options/panel5.php:40 options/panel5.php:111
1199
- msgid "Enable HTML emails"
1200
- msgstr "Aktiviere HTML E-Mails"
 
 
 
 
 
 
1201
 
1202
- #: options/panel5.php:43
1203
- msgid "HTMLify Links in HTML emails"
 
 
 
1204
  msgstr ""
 
 
1205
 
1206
- #: options/panel5.php:46
1207
- msgid "Send trackbacks"
1208
- msgstr "Trackbacks senden"
 
 
 
 
 
1209
 
1210
- #: options/panel5.php:49
1211
- msgid "Notify admin"
1212
- msgstr "Administrator informieren"
 
 
 
 
1213
 
1214
- #: options/panel5.php:52 options/panel5.php:149
1215
- msgid "Let admin subscribe"
1216
- msgstr "Admin-Anmeldung"
 
 
 
 
 
 
1217
 
1218
- #: options/panel5.php:55 options/panel5.php:158
1219
- msgid "BCC admin on Notifications"
1220
- msgstr "Benachrichtigungen"
1221
 
1222
- #: options/panel5.php:76
1223
- msgid "Safely Uninstall"
 
 
 
 
 
 
 
1224
  msgstr ""
 
 
 
 
 
 
 
 
 
1225
 
1226
- #: options/panel5.php:80
 
 
 
 
1227
  msgid ""
1228
- "This option will allow you to delete the plugin with WordPress without "
1229
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
 
 
1230
  msgstr ""
 
 
 
 
 
 
 
1231
 
1232
- #: options/panel5.php:87
1233
- msgid "days"
1234
- msgstr "Tage"
1235
 
1236
- #: options/panel5.php:88
1237
  msgid ""
1238
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1239
- "this feature."
1240
  msgstr ""
1241
- "Lösche wartende, nicht bestätigte Anfragen nach x Tagen. Verwende die 0, um "
1242
- "nie zu löschen."
1243
 
1244
- #: options/panel5.php:97
1245
  msgid ""
1246
- "Send a notification email to confirm the subscription (to avoid addresses "
1247
- "misuse)."
 
1248
  msgstr ""
1249
- "Sende eine Bestätigungsnachricht, um die Gültigkeit der E-Mail-Adresse zu "
1250
- "verifizieren."
 
1251
 
1252
- #: options/panel5.php:106
1253
- msgid ""
1254
- "Automatically subscribe authors to their own articles (not retroactive)."
1255
  msgstr ""
1256
 
1257
- #: options/panel5.php:115
 
 
 
 
 
 
 
 
 
 
 
 
1258
  msgid ""
1259
- "If enabled, will send email messages with content-type = text/html instead "
1260
- "of text/plain"
1261
- msgstr "Wenn aktiviert, wird HTML-Inhalt, statt Nur-Text verwendet"
 
1262
 
1263
- #: options/panel5.php:120
1264
- msgid "HTMLify links in emails"
 
 
 
 
 
 
 
 
 
 
 
 
1265
  msgstr ""
1266
 
1267
- #: options/panel5.php:125
1268
  msgid ""
1269
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1270
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
 
 
1271
  msgstr ""
1272
 
1273
- #: options/panel5.php:130
1274
- msgid "Process trackbacks"
1275
- msgstr "Trackbacks senden"
1276
-
1277
- #: options/panel5.php:134
1278
  msgid ""
1279
- "Notify users when a new trackback or pingback is added to the discussion."
 
 
1280
  msgstr ""
1281
- "Benachrichtigung an die Besucher, wenn ein Trackback oder Pingback eingeht."
1282
 
1283
- #: options/panel5.php:139
1284
- msgid "Track all subscriptions"
1285
- msgstr "Verfolge alle Benachrichtigungen"
 
 
1286
 
1287
- #: options/panel5.php:144
1288
- msgid "Notify the administrator when users subscribe without commenting."
 
 
 
1289
  msgstr ""
1290
- "Benachrichtigung an den Administrator, wenn ohne Kommentar ein Abo "
1291
- "eingerichtet wurde."
1292
 
1293
- #: options/panel5.php:153
1294
- msgid "Let the administrator subscribe to comments when logged in."
 
 
 
 
 
1295
  msgstr ""
1296
- "Erlaube dem Administrator Kommentare zu Abonnieren, wenn er eingeloggt ist."
1297
 
1298
- #: options/panel5.php:162
1299
- msgid "Send a copy of all Notifications to the administrator."
 
 
 
1300
  msgstr ""
1301
 
1302
- #: options/panel5.php:167
1303
- msgid "StCR Unique Key"
 
 
1304
  msgstr ""
1305
 
1306
- #: options/panel5.php:172
1307
- msgid "This Unique Key is not set, please click the following button to "
 
 
 
 
1308
  msgstr ""
1309
 
1310
- #: options/panel5.php:176 options/panel5.php:187
1311
- msgid "Generate"
 
 
1312
  msgstr ""
1313
 
1314
- #: options/panel5.php:184
1315
  msgid ""
1316
- "This Unique Key will be use to send the notification to your subscribers "
1317
- "with more security."
 
 
1318
  msgstr ""
1319
 
1320
- #: options/panel8.php:18
1321
- msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
1322
  msgstr ""
1323
 
1324
- #: options/panel8.php:19
1325
  msgid ""
1326
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1327
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1328
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1329
- "WordPress Support page."
1330
  msgstr ""
 
 
1331
 
1332
- #: options/panel1-edit-subscription.php:8
1333
- msgid "Update Subscription"
1334
- msgstr "Aktualisiere Abonnement"
1335
-
1336
- #: options/panel1-edit-subscription.php:11
1337
- #: options/panel1-edit-subscription.php:21
1338
- #: options/panel1-edit-subscription.php:22
1339
- #: options/panel1-edit-subscription.php:23
1340
- msgid "optional"
1341
- msgstr "optional"
1342
-
1343
- #: options/panel10.php:22 options/panel10.php:23
1344
- msgid "System Information"
1345
  msgstr ""
1346
 
1347
- #: options/panel3.php:13 options/panel3.php:87
1348
- msgid "Virtual Management Page"
1349
- msgstr "Verwaltungsseite"
1350
-
1351
- #: options/panel3.php:18 options/panel3.php:96
1352
- msgid "Page title"
1353
- msgstr "Seiten-Titel"
1354
-
1355
- #: options/panel3.php:23 options/panel3.php:105
1356
- msgid "Management URL"
1357
- msgstr "Link zur Verwaltungsseite"
1358
-
1359
- #: options/panel3.php:28 options/panel3.php:117
1360
- msgid "Custom HEAD meta"
1361
- msgstr "Benutzerdefinierte HEAD Meta-Tags"
1362
-
1363
- #: options/panel3.php:34 options/panel3.php:131
1364
- msgid "Request link"
1365
- msgstr "Link-Anfrage"
1366
-
1367
- #: options/panel3.php:39 options/panel3.php:149
1368
- msgid "Request submitted"
1369
- msgstr "Anfrage ausgeführt"
1370
-
1371
- #: options/panel3.php:44 options/panel3.php:167
1372
- msgid "Subscribe without commenting"
1373
- msgstr "Abo ohne Kommentar"
1374
 
1375
- #: options/panel3.php:49 options/panel3.php:185
1376
- msgid "Subscription processed"
1377
- msgstr "Abo eingetragen"
 
 
 
 
1378
 
1379
- #: options/panel3.php:54 options/panel3.php:203
1380
- msgid "Subscription processed (DCI)"
1381
- msgstr "Abo eingetragen (DCI)"
 
 
1382
 
1383
- #: options/panel3.php:59 options/panel3.php:220
1384
- msgid "Authors"
1385
- msgstr "Autoren"
 
 
 
1386
 
1387
- #: options/panel3.php:64 options/panel3.php:236
1388
- msgid "Users"
1389
- msgstr "Besucher"
 
 
 
 
 
1390
 
1391
- #: options/panel3.php:90
1392
- msgid "Enabled"
1393
- msgstr "Aktiviert"
 
 
 
 
1394
 
1395
- #: options/panel3.php:91
1396
- msgid "Disabled"
1397
- msgstr "Deaktiviert"
 
1398
 
1399
- #: options/panel3.php:92
 
1400
  msgid ""
1401
- "Disable the virtual management page if you need to create a <a href="
1402
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1403
- "real-management-page\">real page</a> to make your theme happy."
1404
  msgstr ""
1405
- "Deaktiviere die virtuelle Verwaltungsseite, wenn du für dein Theme eine <a "
1406
- "href=\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">richtige "
1407
- "Seite</a> anlegen musst."
1408
 
1409
- #: options/panel3.php:101
1410
- msgid "Title of the page your visitors will use to manage their subscriptions."
1411
- msgstr "Titel der Verwaltungsseite."
1412
 
1413
- #: options/panel3.php:109
1414
  msgid ""
1415
- "The permalink for your management page (something like <code>/manage-"
1416
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1417
- "b> actually exist in the system, but its link must follow your permalink "
1418
- "structure."
1419
  msgstr ""
1420
- "Der Permalink zur Verwaltungs-Seite (etwa <code>/comment-subscriptions</"
1421
- "code> oder <code>/?page_id=345</code>).<br/>Diese Seite existiert <b>nicht</"
1422
- "b> wirklich im System, aber muss der Permalink-Struktur von Wordpress "
1423
- "entsprechen."
1424
 
1425
- #: options/panel3.php:111
1426
  msgid ""
1427
- "Warning: it looks like the value you are using may be incompatible with your "
1428
- "permalink structure"
1429
  msgstr ""
1430
- "Warnung: Der eingegebene Wert scheint inkompatibel zu sein mit Deiner "
1431
- "Permalink-Struktur."
1432
 
1433
- #: options/panel3.php:121
1434
  msgid ""
1435
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1436
- "Use <strong>single</strong> quotes for values."
 
1437
  msgstr ""
1438
- "Gib hier einen benutzerdefinierten HTML Code ein, der in Deinem HEAD-Bereich "
1439
- "eingefügt werden soll. Nutze <strong>einfache </strong> Anführungszeichen in "
1440
- "den Werten."
1441
 
1442
- #: options/panel3.php:144
1443
- msgid "Text shown to those who request to manage their subscriptions."
 
 
 
1444
  msgstr ""
1445
- "Text, der angezeigt wird, wenn ein Link zur Verwaltungs-Seite angefordert "
1446
- "wurde."
1447
 
1448
- #: options/panel3.php:162
1449
  msgid ""
1450
- "Thank you note shown after the request here above has been processed. "
1451
- "Allowed tags: [post_title], [post_permalink]"
 
1452
  msgstr ""
1453
- "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
1454
- "gespeichert wurden. Erlaubte tags: [post_title], [post_permalink]"
1455
 
1456
- #: options/panel3.php:180
1457
  msgid ""
1458
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1459
- "[post_title], [post_permalink]"
1460
  msgstr ""
1461
- "Text, der angezeigt wird, wenn ohne weiteren Kommentar die "
1462
- "Benachrichtigungen aktiviert wurden. Erlaubte Tags: [post_title]"
1463
 
1464
- #: options/panel3.php:198
1465
  msgid ""
1466
- "Thank you note shown after the subscription request has been processed "
1467
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1468
  msgstr ""
1469
- "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
1470
- "gespeichert wurden (Bestätigung nicht erforderlich). Erlaubte Tags: "
1471
- "[post_title], [post_permalink]"
1472
 
1473
- #: options/panel3.php:216
1474
- msgid ""
1475
- "Thank you note shown after the subscription request has been processed "
1476
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
 
1477
  msgstr ""
1478
- "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
1479
- "gespeichert wurden (Bestätigung erforderlich). Erlaubte Tags: [post_title], "
1480
- "[post_permalink]"
1481
 
1482
- #: options/panel3.php:232
1483
- msgid "Introductory text for the authors' management page."
1484
- msgstr "Erläuterungstext der Verwaltungs-Seite für Autoren."
1485
 
1486
- #: options/panel3.php:248
1487
- msgid "Introductory text for the users' management page."
1488
- msgstr "Erläuterungstext der Verwaltungs-Seite der Besucher."
1489
 
1490
  #~ msgid "StCR Subscription Box Position"
1491
  #~ msgstr "Neue Benachrichtigung"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:27-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:27-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: de\n"
10
  "MIME-Version: 1.0\n"
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.8.7.1\n"
23
  "X-Loco-Target-Locale: de_DE\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: includes/js/tinymce-lite/tinymce.min.js:3
27
+ msgid "id accesskey class dir lang style tabindex title"
28
  msgstr ""
29
 
30
+ #: includes/js/tinymce-lite/tinymce.min.js:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  msgid ""
32
+ "address blockquote div dl fieldset form h1 h2 h3 h4 h5 h6 hr menu ol p pre "
33
+ "table ul"
34
  msgstr ""
35
 
36
+ #: includes/js/tinymce-lite/tinymce.min.js:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  msgid ""
38
+ "a abbr b bdo br button cite code del dfn em embed i iframe img input ins kbd "
39
+ "label map noscript object q s samp script select small span strong sub sup "
40
+ "textarea u var #text #comment"
 
 
 
 
 
 
 
 
 
41
  msgstr ""
42
 
43
+ #: includes/js/tinymce-lite/tinymce.min.js:3
44
+ msgid ""
45
+ "contenteditable contextmenu draggable dropzone hidden spellcheck translate"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  msgstr ""
47
 
48
+ #: includes/js/tinymce-lite/tinymce.min.js:3
49
+ msgid "article aside details dialog figure header footer hgroup section nav"
 
 
 
 
 
 
 
 
 
 
 
 
50
  msgstr ""
51
 
52
+ #: includes/js/tinymce-lite/tinymce.min.js:3
53
  msgid ""
54
+ "audio canvas command datalist mark meter output progress time wbr video ruby "
55
+ "bdi keygen"
 
 
56
  msgstr ""
57
 
58
+ #: includes/js/tinymce-lite/tinymce.min.js:3
59
+ msgid "acronym applet basefont big font strike tt"
 
 
 
60
  msgstr ""
61
 
62
+ #: includes/js/tinymce-lite/tinymce.min.js:3
63
+ msgid "center dir isindex noframes"
 
 
64
  msgstr ""
65
 
66
+ #: includes/js/tinymce-lite/tinymce.min.js:4
67
+ msgid "a form meter progress dfn"
 
 
 
68
  msgstr ""
69
 
70
+ #: includes/js/tinymce-lite/tinymce.min.js:4
71
+ msgid "strong/b em/i"
 
 
 
 
 
72
  msgstr ""
73
 
74
+ #: includes/js/tinymce-lite/tinymce.min.js:4
75
+ msgid "ol ul sub sup blockquote span font a table tbody tr strong em b i"
 
 
 
76
  msgstr ""
77
 
78
+ #: includes/js/tinymce-lite/tinymce.min.js:4
79
+ msgid "p h1 h2 h3 h4 h5 h6 th td pre div address caption"
 
 
80
  msgstr ""
81
 
82
+ #: includes/js/tinymce-lite/tinymce.min.js:4
83
+ msgid "span"
 
 
 
 
84
  msgstr ""
85
 
86
+ #: includes/js/tinymce-lite/tinymce.min.js:6
87
+ msgid "previousSibling"
 
 
88
  msgstr ""
89
 
90
+ #: includes/js/tinymce-lite/tinymce.min.js:6
91
+ msgid "nextSibling"
 
 
 
 
92
  msgstr ""
93
 
94
+ #: includes/js/tinymce-lite/tinymce.min.js:7
95
+ msgid "h"
 
 
 
 
 
96
  msgstr ""
97
 
98
+ #: includes/js/tinymce-lite/tinymce.min.js:7
99
+ msgid "v"
 
100
  msgstr ""
 
 
101
 
102
+ #: includes/js/tinymce-lite/tinymce.min.js:7
103
+ msgid "t"
 
 
104
  msgstr ""
105
 
106
+ #: includes/js/tinymce-lite/tinymce.min.js:8
107
+ msgid "flex"
 
 
 
 
 
108
  msgstr ""
109
 
110
+ #: includes/js/tinymce-lite/tinymce.min.js:9
111
+ msgid "tooltip"
 
 
 
 
112
  msgstr ""
113
 
114
+ #: includes/js/tinymce-lite/tinymce.min.js:10
115
+ msgid "-sv"
 
 
116
  msgstr ""
117
 
118
+ #: includes/js/tinymce-lite/tinymce.min.js:10
119
+ msgid "-h"
 
 
 
120
  msgstr ""
121
 
122
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
123
+ #: utils/stcr_manage.php:383
124
+ msgid "Manage subscriptions"
125
+ msgstr "Verwalte Abonnements"
 
 
 
 
126
 
127
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
128
+ msgid "Comment Form"
129
+ msgstr "Kommentarformular"
 
 
 
 
130
 
131
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
132
+ msgid "Management Page"
133
+ msgstr "Verwaltungsseite"
 
134
 
135
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
136
+ msgid "Notifications"
137
+ msgstr "Benachrichtigungen"
 
 
 
 
 
138
 
139
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
140
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
141
+ msgid "Options"
142
+ msgstr "Optionen"
143
 
144
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
145
+ msgid "You can help"
146
+ msgstr "Du kannst helfen"
 
 
 
147
 
148
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
149
+ msgid "Support"
150
+ msgstr "Support-Forum"
 
 
151
 
152
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
153
+ msgid "Donate"
 
 
 
154
  msgstr ""
155
 
156
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
157
+ msgid "Add New Subscription"
158
+ msgstr "Neues Abo hinzufügen"
 
 
 
159
 
160
+ #: options/panel1-add-subscription.php:13
161
+ #: options/panel1-edit-subscription.php:13
162
+ msgid "Post:"
163
+ msgstr "Beitrag:"
 
 
164
 
165
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
166
+ #: options/panel1.php:133 templates/key_expired.php:84
167
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
168
+ #: templates/user.php:57
169
+ msgid "Email"
170
+ msgstr "E-Mail"
 
171
 
172
+ #: options/panel1-add-subscription.php:20
173
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
174
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
175
+ msgid "Status"
176
+ msgstr "Status"
 
 
177
 
178
+ #: options/panel1-add-subscription.php:22
179
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
180
+ #: options/panel1.php:79 options/panel1.php:172
181
+ msgid "Active"
182
+ msgstr "Aktiv"
 
 
183
 
184
+ #: options/panel1-add-subscription.php:23
185
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
186
+ #: options/panel1.php:80
187
+ msgid "Replies only"
188
+ msgstr "Nur Antworten"
 
189
 
190
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
191
+ msgid "Ask user to confirm"
192
+ msgstr "Benutzer nach Bestätigung fragen"
 
193
 
194
+ #: options/panel1-add-subscription.php:26
195
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
196
+ msgid "Update"
197
+ msgstr "Aktualisieren"
 
 
 
 
198
 
199
+ #: options/panel1-business-logic.php:23
200
+ msgid "Subscription added."
201
+ msgstr "Abo hinzugefügt."
 
 
 
 
 
202
 
203
+ #: options/panel1-business-logic.php:39
204
+ msgid "Subscriptions updated."
205
+ msgstr "Abos aktualisiert."
 
 
 
 
 
 
206
 
207
+ #: options/panel1-business-logic.php:51
208
+ msgid "Subscription deleted."
209
+ msgstr "Abo gelöscht."
 
 
 
 
 
210
 
211
+ #: options/panel1-business-logic.php:70 templates/author.php:23
212
+ #: templates/user.php:23
213
+ msgid "Subscriptions deleted:"
214
+ msgstr "Abos gelöscht:"
215
+
216
+ #: options/panel1-business-logic.php:74 templates/author.php:27
217
+ #: templates/user.php:27
218
+ msgid "Subscriptions suspended:"
219
+ msgstr "Abos deaktiviert:"
220
+
221
+ #: options/panel1-business-logic.php:78 templates/author.php:31
222
+ #: templates/user.php:31
223
+ msgid "Subscriptions activated:"
224
+ msgstr "Aktivierte Benachrichtigungen:"
225
+
226
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
227
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
228
+ #: templates/user.php:39
229
+ msgid "Subscriptions updated:"
230
+ msgstr "Aktualisierte Benachrichtigungen:"
231
+
232
+ #: options/panel1-business-logic.php:110
233
+ msgid "&laquo; Previous"
234
+ msgstr "&laquo; Vorherige"
235
+
236
+ #: options/panel1-business-logic.php:114
237
+ msgid "Next &raquo;"
238
+ msgstr "Nächste &raquo;"
239
+
240
+ #: options/panel1-edit-subscription.php:8
241
+ msgid "Update Subscription"
242
+ msgstr "Aktualisiere Abonnement"
243
+
244
+ #: options/panel1-edit-subscription.php:11
245
+ #: options/panel1-edit-subscription.php:21
246
+ #: options/panel1-edit-subscription.php:22
247
+ #: options/panel1-edit-subscription.php:23
248
+ msgid "optional"
249
+ msgstr "optional"
250
+
251
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
252
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
253
+ #: templates/author.php:52 templates/user.php:52
254
  msgid ""
255
+ "Please remember: this operation cannot be undone. Are you sure you want to "
256
+ "proceed?"
 
257
  msgstr ""
258
+ "Bitte beachte: Diese Aktion kann nicht widerrufen werden. Bist Du sicher, "
259
+ "dass Du fortfahren möchtest?"
260
 
261
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
262
+ msgid "From"
263
+ msgstr "Von"
264
+
265
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
266
+ msgid "To"
267
+ msgstr "ersetze durch"
268
+
269
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
270
+ msgid "Keep unchanged"
271
+ msgstr "Unverändert belassen"
272
+
273
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
274
+ msgid "Suspended"
275
+ msgstr "Deaktiviert"
276
+
277
+ #: options/panel1.php:20
278
+ msgid "Mass Update Subscriptions"
279
+ msgstr "Mehrere Abos aktualisieren"
280
+
281
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
282
+ msgid "email address"
283
+ msgstr "E-Mail-Adresse des Absenders"
284
+
285
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
286
+ msgid "optional - new email address"
287
+ msgstr "E-Mail-Adresse des Absenders"
288
+
289
+ #: options/panel1.php:49
290
+ msgid "More info"
291
  msgstr ""
 
 
292
 
293
+ #: options/panel1.php:55
294
  msgid ""
295
+ "This option will allow you to change an email address for another one or to "
296
+ "update the same status for all the subscription on a specific email address."
 
297
  msgstr ""
 
 
 
298
 
299
+ #: options/panel1.php:68
300
+ msgid "Post ID"
301
+ msgstr "Post ID"
302
 
303
+ #: options/panel1.php:83
304
+ msgid "Add"
305
+ msgstr "Hinzufügen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
 
307
+ #: options/panel1.php:98
308
+ msgid "Search subscriptions"
309
+ msgstr "Abos suchen"
310
 
311
+ #: options/panel1.php:102
312
+ #, php-format
313
  msgid ""
314
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
315
+ "where the"
 
 
 
316
  msgstr ""
317
+ "Du kannst entweder <a href=\"%s\">alle Abos auflisten</a> oder die einer "
318
+ "bestimmten <b>E-Mail-Adresse finden</b>"
 
 
 
 
 
319
 
320
+ #: options/panel1.php:106
321
+ msgid "email"
322
+ msgstr "E-Mail"
323
 
324
+ #: options/panel1.php:107
325
+ msgid "post ID"
326
+ msgstr "Beitrag (ID)"
 
 
327
 
328
+ #: options/panel1.php:108
329
+ msgid "status"
330
+ msgstr "Status"
 
 
 
 
 
 
331
 
332
+ #: options/panel1.php:111
333
+ msgid "equals"
334
+ msgstr "entspricht"
335
 
336
+ #: options/panel1.php:112
337
+ msgid "contains"
338
+ msgstr "enthällt"
339
 
340
+ #: options/panel1.php:113
341
+ msgid "does not contain"
342
+ msgstr "enthällt nicht"
343
 
344
+ #: options/panel1.php:114
345
+ msgid "starts with"
346
+ msgstr "Beginnt mit"
 
347
 
348
+ #: options/panel1.php:115
349
+ msgid "ends with"
350
+ msgstr "Endet mit"
351
 
352
+ #: options/panel1.php:118
353
+ msgid "results per page:"
354
+ msgstr "Ergebnisse pro Seite:"
355
 
356
+ #: options/panel1.php:120
357
+ msgid "Search"
358
+ msgstr "Suchen"
359
 
360
+ #: options/panel1.php:128
361
+ msgid "Reverse the order by Post ID"
362
+ msgstr "Sortiert nach Post-ID"
363
+
364
+ #: options/panel1.php:129 options/panel1.php:130
365
+ msgid "Reverse the order by Date/Time"
366
+ msgstr "Sortierung umkehren nach Datum/Uhrzeit"
367
+
368
+ #: options/panel1.php:132
369
+ msgid "Post (ID)"
370
+ msgstr "Post (ID)"
371
+
372
+ #: options/panel1.php:135
373
+ msgid "Search query:"
374
+ msgstr "Suchabfrage:"
375
+
376
+ #: options/panel1.php:135
377
+ msgid "Rows:"
378
+ msgstr "Zeilen:"
379
+
380
+ #: options/panel1.php:135
381
+ msgid "of"
382
+ msgstr "von"
383
+
384
+ #: options/panel1.php:142 options/panel1.php:158
385
+ msgid "Date and Time"
386
+ msgstr "Datum und Uhrzeit"
387
+
388
+ #: options/panel1.php:168
389
+ msgid "Replies"
390
+ msgstr "Antworten"
391
+
392
+ #: options/panel1.php:169
393
+ msgid "All Comments"
394
  msgstr ""
395
 
396
+ #: options/panel1.php:170
397
+ msgid "Unconfirmed"
 
 
 
 
398
  msgstr ""
399
 
400
+ #: options/panel1.php:171
401
+ msgid "Inactive"
402
+ msgstr "Aktiv"
403
+
404
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
405
+ #: templates/user.php:70
406
+ msgid "Delete"
407
+ msgstr "Löschen"
408
+
409
+ #: options/panel1.php:201 options/panel1.php:211
410
+ msgid "Edit"
411
+ msgstr "Bearbeiten"
412
+
413
+ #: options/panel1.php:203 options/panel1.php:209
414
+ msgid "Subscription"
415
  msgstr "Abonnements"
416
 
417
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
418
+ msgid "Action:"
419
+ msgstr "Aktion:"
 
 
 
 
420
 
421
+ #: options/panel1.php:226
422
+ msgid "Delete forever"
423
+ msgstr "Endgültig löschen"
 
 
 
424
 
425
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
426
+ msgid "Suspend"
427
+ msgstr "Deaktivieren"
428
 
429
+ #: options/panel1.php:228
430
+ msgid "Activate and set to Y"
431
+ msgstr "Aktivieren und auf Y setzen"
432
 
433
+ #: options/panel1.php:229
434
+ msgid "Activate and set to R"
435
+ msgstr "Aktivieren und auf R setzen"
436
 
437
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
438
+ msgid "Activate"
439
+ msgstr "Aktivieren"
440
+
441
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
442
+ msgid "Update subscriptions"
443
+ msgstr "Abos aktualisieren"
444
+
445
+ #: options/panel1.php:237
446
+ msgid "Sorry, no subscriptions match your search criteria."
447
+ msgstr "Keine passenden Abonnements gefunden."
448
+
449
+ #: options/panel10.php:22 options/panel10.php:23
450
+ msgid "System Information"
451
+ msgstr ""
452
 
453
  #: options/panel2.php:12 options/panel2.php:63
454
  msgid "Enable default checkbox"
490
  msgid "Author label"
491
  msgstr "Autor"
492
 
493
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
494
+ #: options/panel5.php:18 options/panel5.php:60
495
  msgid "Your settings have been successfully updated."
496
  msgstr "Deine Einstellungen wurden erfolgreich gespeichert."
497
 
498
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
499
+ #: options/panel5.php:20 options/panel5.php:62
500
  msgid "There was an error updating the following fields:"
501
  msgstr ""
502
  "Bei der Aktualisierung der folgenden Felder ist ein Fehler aufgetreten:"
508
  msgid "Yes"
509
  msgstr "Ja"
510
 
511
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
512
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
513
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
514
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
515
+ #: utils/stcr_manage.php:784
516
+ msgid "No"
517
+ msgstr "Nein"
518
+
519
  #: options/panel2.php:68
520
  msgid ""
521
  "Disable this option if you want to move the subscription checkbox to a "
562
  msgid "None"
563
  msgstr ""
564
 
565
+ #: options/panel2.php:124
566
+ msgid ""
567
+ "The default subscription type that should be selected when Advanced "
568
+ "subscriptions are enable."
569
+ msgstr ""
570
+
571
+ #: options/panel2.php:135
572
+ msgid "Custom inline CSS to add to the checkbox."
573
+ msgstr "Eigene Inline-CSS Stile für die Auswahlbox."
574
+
575
+ #: options/panel2.php:152
576
+ msgid ""
577
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
578
+ "[checkbox_field], [checkbox_label]"
579
+ msgstr ""
580
+ "Eigener HTML-Code für die Auswahlbox. Erlaubt sind diese Tags: "
581
+ "[checkbox_field], [checkbox_label]"
582
+
583
+ #: options/panel2.php:158
584
+ msgid "Messages for your visitors"
585
+ msgstr "Nachricht an Deine Besucher"
586
+
587
+ #: options/panel2.php:162
588
+ msgid "Default label"
589
+ msgstr "Standard Mitteilung"
590
+
591
+ #: options/panel2.php:175
592
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
593
+ msgstr "Beschriftung der Auswahlbox. Erlaubte Tags: [subscribe_link]"
594
+
595
+ #: options/panel2.php:192
596
+ msgid ""
597
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
598
+ "[manager_link]"
599
+ msgstr ""
600
+ "Text, der angezeigt wird, wenn die Benachrichtigung bereits aktiviert wurde. "
601
+ "Erlaubte Tags: [manager_link]"
602
+
603
+ #: options/panel2.php:197
604
+ msgid "Pending label"
605
+ msgstr "Warteschlange Mitteilung"
606
+
607
+ #: options/panel2.php:209
608
+ msgid ""
609
+ "Label shown to those who are already subscribed, but haven't clicked on the "
610
+ "confirmation link yet. Allowed tag: [manager_link]"
611
+ msgstr ""
612
+ "Text, der angezeigt wird, wenn eine Bestätigung durch den Besucher noch "
613
+ "aussteht. Erlaubte Tags: [manager_link]"
614
+
615
+ #: options/panel2.php:225
616
+ msgid ""
617
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
618
+ msgstr ""
619
+ "Text, der Autoren und Administratoren angezeigt wird. Erlaubte Tags: "
620
+ "[manager_link]"
621
+
622
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
623
+ #: options/panel5.php:195
624
+ msgid "Save Changes"
625
+ msgstr "Alle Änderungen speichern"
626
+
627
+ #: options/panel3.php:13 options/panel3.php:87
628
+ msgid "Virtual Management Page"
629
+ msgstr "Verwaltungsseite"
630
+
631
+ #: options/panel3.php:18 options/panel3.php:96
632
+ msgid "Page title"
633
+ msgstr "Seiten-Titel"
634
+
635
+ #: options/panel3.php:23 options/panel3.php:105
636
+ msgid "Management URL"
637
+ msgstr "Link zur Verwaltungsseite"
638
+
639
+ #: options/panel3.php:28 options/panel3.php:117
640
+ msgid "Custom HEAD meta"
641
+ msgstr "Benutzerdefinierte HEAD Meta-Tags"
642
+
643
+ #: options/panel3.php:34 options/panel3.php:131
644
+ msgid "Request link"
645
+ msgstr "Link-Anfrage"
646
+
647
+ #: options/panel3.php:39 options/panel3.php:149
648
+ msgid "Request submitted"
649
+ msgstr "Anfrage ausgeführt"
650
+
651
+ #: options/panel3.php:44 options/panel3.php:167
652
+ msgid "Subscribe without commenting"
653
+ msgstr "Abo ohne Kommentar"
654
+
655
+ #: options/panel3.php:49 options/panel3.php:185
656
+ msgid "Subscription processed"
657
+ msgstr "Abo eingetragen"
658
+
659
+ #: options/panel3.php:54 options/panel3.php:203
660
+ msgid "Subscription processed (DCI)"
661
+ msgstr "Abo eingetragen (DCI)"
662
+
663
+ #: options/panel3.php:59 options/panel3.php:220
664
+ msgid "Authors"
665
+ msgstr "Autoren"
666
+
667
+ #: options/panel3.php:64 options/panel3.php:236
668
+ msgid "Users"
669
+ msgstr "Besucher"
670
+
671
+ #: options/panel3.php:90
672
+ msgid "Enabled"
673
+ msgstr "Aktiviert"
674
+
675
+ #: options/panel3.php:91
676
+ msgid "Disabled"
677
+ msgstr "Deaktiviert"
678
+
679
+ #: options/panel3.php:92
680
+ msgid ""
681
+ "Disable the virtual management page if you need to create a <a href="
682
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
683
+ "real-management-page\">real page</a> to make your theme happy."
684
+ msgstr ""
685
+ "Deaktiviere die virtuelle Verwaltungsseite, wenn du für dein Theme eine <a "
686
+ "href=\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">richtige "
687
+ "Seite</a> anlegen musst."
688
+
689
+ #: options/panel3.php:101
690
+ msgid "Title of the page your visitors will use to manage their subscriptions."
691
+ msgstr "Titel der Verwaltungsseite."
692
+
693
+ #: options/panel3.php:109
694
  msgid ""
695
+ "The permalink for your management page (something like <code>/manage-"
696
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
697
+ "b> actually exist in the system, but its link must follow your permalink "
698
+ "structure."
699
  msgstr ""
700
+ "Der Permalink zur Verwaltungs-Seite (etwa <code>/comment-subscriptions</"
701
+ "code> oder <code>/?page_id=345</code>).<br/>Diese Seite existiert <b>nicht</"
702
+ "b> wirklich im System, aber muss der Permalink-Struktur von Wordpress "
703
+ "entsprechen."
704
 
705
+ #: options/panel3.php:111
 
 
 
 
706
  msgid ""
707
+ "Warning: it looks like the value you are using may be incompatible with your "
708
+ "permalink structure"
709
  msgstr ""
710
+ "Warnung: Der eingegebene Wert scheint inkompatibel zu sein mit Deiner "
711
+ "Permalink-Struktur."
 
 
 
 
 
 
 
 
 
 
 
 
712
 
713
+ #: options/panel3.php:121
714
  msgid ""
715
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
716
+ "Use <strong>single</strong> quotes for values."
717
  msgstr ""
718
+ "Gib hier einen benutzerdefinierten HTML Code ein, der in Deinem HEAD-Bereich "
719
+ "eingefügt werden soll. Nutze <strong>einfache </strong> Anführungszeichen in "
720
+ "den Werten."
721
 
722
+ #: options/panel3.php:127 options/panel4.php:135
723
+ msgid "Messages"
724
+ msgstr "Nachrichten"
725
 
726
+ #: options/panel3.php:144
727
+ msgid "Text shown to those who request to manage their subscriptions."
 
 
728
  msgstr ""
729
+ "Text, der angezeigt wird, wenn ein Link zur Verwaltungs-Seite angefordert "
730
+ "wurde."
731
 
732
+ #: options/panel3.php:162
733
  msgid ""
734
+ "Thank you note shown after the request here above has been processed. "
735
+ "Allowed tags: [post_title], [post_permalink]"
736
  msgstr ""
737
+ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
738
+ "gespeichert wurden. Erlaubte tags: [post_title], [post_permalink]"
739
 
740
+ #: options/panel3.php:180
741
+ msgid ""
742
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
743
+ "[post_title], [post_permalink]"
744
+ msgstr ""
745
+ "Text, der angezeigt wird, wenn ohne weiteren Kommentar die "
746
+ "Benachrichtigungen aktiviert wurden. Erlaubte Tags: [post_title]"
747
 
748
+ #: options/panel3.php:198
749
+ msgid ""
750
+ "Thank you note shown after the subscription request has been processed "
751
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
752
  msgstr ""
753
+ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
754
+ "gespeichert wurden (Bestätigung nicht erforderlich). Erlaubte Tags: "
755
+ "[post_title], [post_permalink]"
756
 
757
+ #: options/panel3.php:216
758
  msgid ""
759
+ "Thank you note shown after the subscription request has been processed "
760
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
761
  msgstr ""
762
+ "Text, der angezeigt wird, wenn die Benachrichtigungs-Einstellungen "
763
+ "gespeichert wurden (Bestätigung erforderlich). Erlaubte Tags: [post_title], "
764
+ "[post_permalink]"
765
+
766
+ #: options/panel3.php:232
767
+ msgid "Introductory text for the authors' management page."
768
+ msgstr "Erläuterungstext der Verwaltungs-Seite für Autoren."
769
+
770
+ #: options/panel3.php:248
771
+ msgid "Introductory text for the users' management page."
772
+ msgstr "Erläuterungstext der Verwaltungs-Seite der Besucher."
773
 
774
  #: options/panel4.php:15 options/panel4.php:94
775
  msgid "Sender name"
829
  "will be the same as the Sender email address."
830
  msgstr ""
831
 
 
 
 
 
832
  #: options/panel4.php:147
833
  msgid "Subject of the notification email. Allowed tag: [post_title]"
834
  msgstr "Betreff-Zeile einer Benachrichtigung. Erlaubte Tags: [post_title]"
878
  msgid "Content of the management Page message. Allowed tags: [blog_name]."
879
  msgstr ""
880
 
881
+ #: options/panel4.php:257
882
+ msgid ""
883
+ "Content of the management email message. Allowed tags: [blog_name], "
884
+ "[manager_link]."
885
+ msgstr ""
886
+
887
+ #: options/panel4.php:263
888
+ msgid "One Click Unsubscribe"
889
+ msgstr "Admin-Anmeldung"
890
+
891
+ #: options/panel4.php:277
892
+ msgid ""
893
+ "Content of the One Click confirmation. Allowed tags: [post_title], "
894
+ "[blog_name]"
895
+ msgstr ""
896
+ "Text der E-Mail, die den Link zur Verwaltungsseite enthält. Erlaubte Tags: "
897
+ "[blog_name], [manager_link]"
898
+
899
+ #: options/panel5.php:28
900
+ msgid "Safetly Uninstall"
901
+ msgstr ""
902
+
903
+ #: options/panel5.php:31 options/panel5.php:84
904
+ msgid "Autopurge requests"
905
+ msgstr "Anfragen automatisch löschen"
906
+
907
+ #: options/panel5.php:34 options/panel5.php:93
908
+ msgid "Enable double check"
909
+ msgstr "Bestätigung erforderlich (double check)"
910
+
911
+ #: options/panel5.php:37 options/panel5.php:101
912
+ msgid "Subscribe authors"
913
+ msgstr "Abonniert"
914
+
915
+ #: options/panel5.php:40 options/panel5.php:111
916
+ msgid "Enable HTML emails"
917
+ msgstr "Aktiviere HTML E-Mails"
918
+
919
+ #: options/panel5.php:43
920
+ msgid "HTMLify Links in HTML emails"
921
+ msgstr ""
922
+
923
+ #: options/panel5.php:46
924
+ msgid "Send trackbacks"
925
+ msgstr "Trackbacks senden"
926
+
927
+ #: options/panel5.php:49
928
+ msgid "Notify admin"
929
+ msgstr "Administrator informieren"
930
+
931
+ #: options/panel5.php:52 options/panel5.php:149
932
+ msgid "Let admin subscribe"
933
+ msgstr "Admin-Anmeldung"
934
+
935
+ #: options/panel5.php:55 options/panel5.php:158
936
+ msgid "BCC admin on Notifications"
937
+ msgstr "Benachrichtigungen"
938
+
939
+ #: options/panel5.php:76
940
+ msgid "Safely Uninstall"
941
+ msgstr ""
942
+
943
+ #: options/panel5.php:80
944
+ msgid ""
945
+ "This option will allow you to delete the plugin with WordPress without "
946
+ "loosing your subscribers. Any database table and plugin options are wipeout."
947
+ msgstr ""
948
+
949
+ #: options/panel5.php:87
950
+ msgid "days"
951
+ msgstr "Tage"
952
+
953
+ #: options/panel5.php:88
954
+ msgid ""
955
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
956
+ "this feature."
957
+ msgstr ""
958
+ "Lösche wartende, nicht bestätigte Anfragen nach x Tagen. Verwende die 0, um "
959
+ "nie zu löschen."
960
+
961
+ #: options/panel5.php:97
962
+ msgid ""
963
+ "Send a notification email to confirm the subscription (to avoid addresses "
964
+ "misuse)."
965
+ msgstr ""
966
+ "Sende eine Bestätigungsnachricht, um die Gültigkeit der E-Mail-Adresse zu "
967
+ "verifizieren."
968
+
969
+ #: options/panel5.php:106
970
+ msgid ""
971
+ "Automatically subscribe authors to their own articles (not retroactive)."
972
+ msgstr ""
973
+
974
+ #: options/panel5.php:115
975
+ msgid ""
976
+ "If enabled, will send email messages with content-type = text/html instead "
977
+ "of text/plain"
978
+ msgstr "Wenn aktiviert, wird HTML-Inhalt, statt Nur-Text verwendet"
979
+
980
+ #: options/panel5.php:120
981
+ msgid "HTMLify links in emails"
982
+ msgstr ""
983
+
984
+ #: options/panel5.php:125
985
+ msgid ""
986
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
987
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
988
+ msgstr ""
989
+
990
+ #: options/panel5.php:130
991
+ msgid "Process trackbacks"
992
+ msgstr "Trackbacks senden"
993
+
994
+ #: options/panel5.php:134
995
+ msgid ""
996
+ "Notify users when a new trackback or pingback is added to the discussion."
997
+ msgstr ""
998
+ "Benachrichtigung an die Besucher, wenn ein Trackback oder Pingback eingeht."
999
+
1000
+ #: options/panel5.php:139
1001
+ msgid "Track all subscriptions"
1002
+ msgstr "Verfolge alle Benachrichtigungen"
1003
+
1004
+ #: options/panel5.php:144
1005
+ msgid "Notify the administrator when users subscribe without commenting."
1006
+ msgstr ""
1007
+ "Benachrichtigung an den Administrator, wenn ohne Kommentar ein Abo "
1008
+ "eingerichtet wurde."
1009
+
1010
+ #: options/panel5.php:153
1011
+ msgid "Let the administrator subscribe to comments when logged in."
1012
+ msgstr ""
1013
+ "Erlaube dem Administrator Kommentare zu Abonnieren, wenn er eingeloggt ist."
1014
+
1015
+ #: options/panel5.php:162
1016
+ msgid "Send a copy of all Notifications to the administrator."
1017
+ msgstr ""
1018
+
1019
+ #: options/panel5.php:167
1020
+ msgid "StCR Unique Key"
1021
+ msgstr ""
1022
+
1023
+ #: options/panel5.php:172
1024
+ msgid "This Unique Key is not set, please click the following button to "
1025
  msgstr ""
1026
 
1027
+ #: options/panel5.php:176 options/panel5.php:187
1028
+ msgid "Generate"
1029
+ msgstr ""
1030
 
1031
+ #: options/panel5.php:184
1032
  msgid ""
1033
+ "This Unique Key will be use to send the notification to your subscribers "
1034
+ "with more security."
1035
  msgstr ""
 
 
1036
 
1037
  #: options/panel7.php:8 options/panel8.php:8
1038
  msgid "Support the developers"
1099
  "du es einsetzt. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
1100
  "comments-reloaded/\">Bewerte es</a> auf seiner Seite im Plugin-Verzeichnis."
1101
 
1102
+ #: options/panel8.php:18
1103
+ msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1104
  msgstr ""
1105
 
1106
+ #: options/panel8.php:19
1107
  msgid ""
1108
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1109
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1110
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1111
+ "WordPress Support page."
1112
  msgstr ""
1113
 
1114
+ #: options/panel9.php:11
1115
+ msgid "Support Subscribe to Comments Reloaded"
1116
+ msgstr ""
1117
+ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
1118
+ "offizielle"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1119
 
1120
+ #: options/panel9.php:12
 
1121
  msgid ""
1122
+ "Every contribution that you make is high valuable, so if you consider this "
1123
+ "plugin a helpful tool we will use your donation to invest on support and "
1124
+ "developing time."
1125
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1126
 
1127
+ #: templates/author.php:57
1128
+ msgid "Title"
1129
+ msgstr "Titel"
1130
 
1131
+ #: templates/author.php:58 templates/user.php:58
1132
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1133
+ msgstr "Legende: Y = Alle Kommentare, R = Nur Antworten, C = Inaktiv"
1134
 
1135
+ #: templates/author.php:69 templates/user.php:67
1136
+ msgid "Select all"
1137
+ msgstr "Alle auswählen"
1138
 
1139
+ #: templates/author.php:70 templates/user.php:68
1140
+ msgid "Invert selection"
1141
+ msgstr "Auswahl umkehren"
1142
 
1143
+ #: templates/author.php:74 templates/user.php:72
1144
+ msgid "All comments"
1145
+ msgstr ""
1146
 
1147
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1148
+ msgid "Replies to my comments"
1149
+ msgstr "Nur Antworten"
1150
 
1151
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1152
+ #: templates/user.php:79
1153
+ msgid "No subscriptions match your search criteria."
1154
+ msgstr "Keine passenden Abos gefunden."
1155
 
1156
+ #: templates/key_expired.php:8
1157
+ msgid ""
1158
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1159
+ "enter your email below and a new link will be send."
1160
+ msgstr ""
1161
 
1162
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1163
+ #: templates/subscribe.php:106
1164
+ msgid "Send"
1165
+ msgstr "Abschicken"
1166
 
1167
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1168
+ msgid "New subscription to"
1169
+ msgstr "Neue Benachrichtigung"
1170
 
1171
+ #: templates/subscribe.php:44
1172
+ msgid "User:"
1173
+ msgstr "Besucher:"
1174
 
1175
+ #: templates/user.php:63
1176
+ msgid "F j, Y"
1177
  msgstr ""
1178
 
1179
+ #: templates/wrong-request.php:9
1180
+ msgid "You have request to manage another email address and this is forbidden."
1181
  msgstr ""
1182
 
1183
+ #: utils/stcr_manage.php:246
1184
+ msgid ""
1185
+ "Notify me of followup comments via e-mail. You can also <a "
1186
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1187
+ msgstr ""
1188
+ "E-Mail-Benachrichtigung bei weiteren Kommentaren.<br>Auch möglich: <a "
1189
+ "href='[subscribe_link]'>Abo ohne Kommentar</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1190
 
1191
+ #: utils/stcr_manage.php:247
1192
+ msgid ""
1193
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1194
+ "subscriptions."
1195
+ msgstr ""
1196
+ "Du erhältst Benachrichtigungen zu diesem Thema. <a "
1197
+ "href='[manager_link]'>Verwalte Deine Abonnements</a>."
1198
 
1199
+ #: utils/stcr_manage.php:248
1200
+ msgid ""
1201
+ "Your subscription to this post needs to be confirmed. <a "
1202
+ "href='[manager_link]'>Manage your subscriptions</a>."
1203
  msgstr ""
1204
+ "Dein Benachrichtigungswunsch muss bestätigt werden. <a "
1205
+ "href='[manager_link]'>Verwalte Deine Abonnements</a>."
1206
 
1207
+ #: utils/stcr_manage.php:249
1208
+ msgid ""
1209
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1210
+ msgstr ""
1211
+ "Deine <a href='[manager_link]'>Benachrichtigungs-Einstellungen</a> zu diesem "
1212
+ "Beitrag anpassen."
1213
 
1214
+ #: utils/stcr_manage.php:255
1215
+ msgid ""
1216
+ "To manage your subscriptions, please enter your email address here below. We "
1217
+ "will send you a message containing the link to access your personal "
1218
+ "management page."
1219
+ msgstr ""
1220
+ "Um Deine Abonnements zu verwalten, gib bitte hier Deine E-Mail-Adresse ein. "
1221
+ "Du bekommst dann eine E-Mail mit einem weiterführenden Link."
1222
 
1223
+ #: utils/stcr_manage.php:256
1224
+ msgid ""
1225
+ "Thank you for using our subscription service. Your request has been "
1226
+ "completed, and you should receive an email with the management link in a few "
1227
+ "minutes."
1228
+ msgstr ""
1229
+ "Danke für das Nutzen des Benachrichtigungsdienstes. Deine Anfrage wird "
1230
+ "bearbeitet und eine E-Mail an Dich verschickt."
1231
 
1232
+ #: utils/stcr_manage.php:257
1233
+ msgid ""
1234
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1235
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1236
+ "form here below and you're all set."
1237
+ msgstr ""
1238
+ "Du kannst der Diskussion zum Thema <strong>[post_title]</strong> auch "
1239
+ "folgen, ohne bisher selbst etwas geschrieben zu haben. Hierzu einfach Deine "
1240
+ "E-Mail-Adresse in das dafür vorgesehene Feld eintragen."
1241
 
1242
+ #: utils/stcr_manage.php:258
1243
+ msgid ""
1244
+ "Thank you for using our subscription service. Your request has been "
1245
+ "completed. You will receive a notification email every time a new comment to "
1246
+ "this article is approved and posted by the administrator."
1247
  msgstr ""
1248
+ "Danke für das Nutzen des Benachrichtigungsdienstes. Du wirst nun bei jedem "
1249
+ "neuen Kommentar per E-Mail informiert."
1250
 
1251
+ #: utils/stcr_manage.php:259
1252
+ msgid ""
1253
+ "Thank you for using our subscription service. In order to confirm your "
1254
+ "request, please check your email for the verification message and follow the "
1255
+ "instructions."
1256
+ msgstr ""
1257
+ "Danke für das Nutzen des Benachrichtigungsdienstes. Bitte bestätige Deine "
1258
+ "Anfrage durch den Link in der E-Mail, die Dir gerade zugestellt wird."
1259
 
1260
+ #: utils/stcr_manage.php:260
1261
+ msgid ""
1262
+ "In order to cancel or suspend one or more notifications, select the "
1263
+ "corresponding checkbox(es) and click on the button at the end of the list."
1264
+ msgstr ""
1265
+ "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
1266
+ "entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste."
1267
 
1268
+ #: utils/stcr_manage.php:261
1269
+ msgid ""
1270
+ "In order to cancel or suspend one or more notifications, select the "
1271
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1272
+ "You are currently subscribed to:"
1273
+ msgstr ""
1274
+ "Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
1275
+ "entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste. Du "
1276
+ "hast derzeit abboniert:"
1277
 
1278
+ #: utils/stcr_manage.php:265
1279
+ msgid "There is a new comment to [post_title]"
1280
+ msgstr "Neuer Kommentar zum Artikel: [post_title]"
1281
 
1282
+ #: utils/stcr_manage.php:266
1283
+ msgid ""
1284
+ "There is a new comment to [post_title].\n"
1285
+ "Comment Link: [comment_permalink]\n"
1286
+ "Author: [comment_author]\n"
1287
+ "Comment:\n"
1288
+ "[comment_content]\n"
1289
+ "Permalink: [post_permalink]\n"
1290
+ "Manage your subscriptions: [manager_link]"
1291
  msgstr ""
1292
+ "Hallo,\n"
1293
+ "es gibt einen neuen Kommentar zum Artikel: [post_title].\n"
1294
+ "[post_permalink]\n"
1295
+ "\n"
1296
+ "[comment_author] schrieb gerade:\n"
1297
+ "[comment_content]\n"
1298
+ "\n"
1299
+ "Hier antworten: [comment_permalink]\n"
1300
+ "Verwalte Deine Benachrichtigungen: [manager_link]"
1301
 
1302
+ #: utils/stcr_manage.php:267
1303
+ msgid "Please confirm your subscription to [post_title]"
1304
+ msgstr "Bitte bestätige Deinen Benachrichtigungswunsch zum Thema [post_title]"
1305
+
1306
+ #: utils/stcr_manage.php:268
1307
  msgid ""
1308
+ "You have requested to be notified every time a new comment is added to:\n"
1309
+ "[post_permalink]\n"
1310
+ "\n"
1311
+ "Please confirm your request by clicking on this link:\n"
1312
+ "[confirm_link]"
1313
  msgstr ""
1314
+ "Hallo,\n"
1315
+ "Du möchtest bei jedem neuen Kommentar benachrichtigt werden, der zu diesem "
1316
+ "Beitrag geschrieben wird:\n"
1317
+ "[post_permalink]\n"
1318
+ "\n"
1319
+ "Bitte bestätigte diese Anfrage durch einen Klick auf diesen Link:\n"
1320
+ "[confirm_link]"
1321
 
1322
+ #: utils/stcr_manage.php:269
1323
+ msgid "Manage your subscriptions on [blog_name]"
1324
+ msgstr "Benachrichtigungs-Einstellungen von [blog_name]"
1325
 
1326
+ #: utils/stcr_manage.php:270
1327
  msgid ""
1328
+ "You have requested to manage your subscriptions to the articles on "
1329
+ "[blog_name]. Please check the Subscriptions management link in your email"
1330
  msgstr ""
 
 
1331
 
1332
+ #: utils/stcr_manage.php:271
1333
  msgid ""
1334
+ "You have requested to manage your subscriptions to the articles on "
1335
+ "[blog_name]. Follow this link to access your personal page:\n"
1336
+ "[manager_link]"
1337
  msgstr ""
1338
+ "Du möchtest Deine Benachrichtigungs-Einstellungen von [blog_name] ändern. "
1339
+ "Nutze dazu bitte diesen Link:\n"
1340
+ "[manager_link]"
1341
 
1342
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1343
+ msgid "StCR System"
 
1344
  msgstr ""
1345
 
1346
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1347
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1348
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1349
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1350
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1351
+ msgid "You do not have sufficient permissions to access this page."
1352
+ msgstr ""
1353
+
1354
+ #: utils/stcr_manage.php:755
1355
+ msgid "Subscriptions"
1356
+ msgstr "Abonnements"
1357
+
1358
+ #: utils/stcr_manage.php:811
1359
  msgid ""
1360
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1361
+ msgstr ""
1362
+ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
1363
+ "offizielle"
1364
 
1365
+ #: utils/stcr_manage.php:811
1366
+ msgid "support forum"
1367
+ msgstr "Support-Forum"
1368
+
1369
+ #: utils/stcr_manage.php:812
1370
+ msgid "Feeling generous?"
1371
+ msgstr "Bist du spendabel?"
1372
+
1373
+ #: utils/stcr_manage.php:812
1374
+ msgid "Donate a few bucks!"
1375
+ msgstr "Gib mir ein Trinkgeld!"
1376
+
1377
+ #: utils/stcr_upgrade.php:55
1378
+ msgid "Important Notice"
1379
  msgstr ""
1380
 
1381
+ #: utils/stcr_upgrade.php:103
1382
  msgid ""
1383
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1384
+ "database has been sanitized to prevent the raw html messages. <a class="
1385
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1386
+ "src=\""
1387
  msgstr ""
1388
 
1389
+ #: utils/stcr_upgrade.php:158
 
 
 
 
1390
  msgid ""
1391
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1392
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1393
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1394
  msgstr ""
 
1395
 
1396
+ #: utils/stcr_upgrade.php:158
1397
+ msgid ""
1398
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1399
+ "Comments to prevent confusion between the two plugins."
1400
+ msgstr ""
1401
 
1402
+ #: utils/stcr_upgrade.php:159
1403
+ msgid ""
1404
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1405
+ "that you want to import, you'll need to import that data manually, as only "
1406
+ "one import routine will ever run to prevent data loss."
1407
  msgstr ""
 
 
1408
 
1409
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1410
+ #: utils/stcr_upgrade.php:381
1411
+ msgid ""
1412
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1413
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1414
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1415
+ "\"stcr-loading-animation\" src=\""
1416
  msgstr ""
 
1417
 
1418
+ #: utils/stcr_upgrade.php:231
1419
+ msgid ""
1420
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1421
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1422
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1423
  msgstr ""
1424
 
1425
+ #: utils/stcr_upgrade.php:231
1426
+ msgid ""
1427
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1428
+ "Notification to prevent confusion between the two plugins."
1429
  msgstr ""
1430
 
1431
+ #: utils/stcr_upgrade.php:378
1432
+ msgid ""
1433
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1434
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1435
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1436
+ "Reloaded</strong>."
1437
  msgstr ""
1438
 
1439
+ #: utils/stcr_upgrade.php:378
1440
+ msgid ""
1441
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1442
+ "Subscriptions to prevent confusion between the two plugins."
1443
  msgstr ""
1444
 
1445
+ #: utils/stcr_upgrade.php:379
1446
  msgid ""
1447
+ "If you have subscription data from another plugin (such as Subscribe to "
1448
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1449
+ "you'll need to import that data manually, as only one import routine will "
1450
+ "ever run to prevent data loss."
1451
  msgstr ""
1452
 
1453
+ #: utils/stcr_upgrade.php:380
1454
+ msgid ""
1455
+ "<strong>Note:</strong> If you were previously using the "
1456
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1457
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1458
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1459
+ "respectively."
1460
  msgstr ""
1461
 
1462
+ #: utils/stcr_upgrade.php:394
1463
  msgid ""
1464
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
 
 
 
1465
  msgstr ""
1466
+ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
1467
+ "offizielle"
1468
 
1469
+ #: utils/stcr_upgrade.php:395
1470
+ msgid ""
1471
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1472
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
 
 
 
 
 
 
 
 
 
1473
  msgstr ""
1474
 
1475
+ #: utils/stcr_upgrade.php:396
1476
+ msgid ""
1477
+ "Please consider to make a donation to support the plugin, you can donate via "
1478
+ "<a href=\"\n"
1479
+ "https://www.paypal.com/cgi-bin/webscr?"
1480
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1481
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1482
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1483
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1484
 
1485
+ #: utils/stcr_upgrade.php:398
1486
+ msgid ""
1487
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1488
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1489
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1490
+ "a><img class=\"stcr-loading-animation\" src=\""
1491
+ msgstr ""
1492
 
1493
+ #: utils/stcr_upgrade.php:409
1494
+ msgid ""
1495
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1496
+ "160106."
1497
+ msgstr ""
1498
 
1499
+ #: utils/stcr_upgrade.php:410
1500
+ msgid ""
1501
+ "This version includes many changes and fixes to improve your experience with "
1502
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1503
+ "email templates, Subscription Checkbox position, and more!"
1504
+ msgstr ""
1505
 
1506
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1507
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1508
+ msgid ""
1509
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1510
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1511
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1512
+ "class=\"stcr-loading-animation\" src=\""
1513
+ msgstr ""
1514
 
1515
+ #: utils/stcr_upgrade.php:424
1516
+ msgid ""
1517
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1518
+ "160115."
1519
+ msgstr ""
1520
+ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
1521
+ "offizielle"
1522
 
1523
+ #: utils/stcr_upgrade.php:425
1524
+ msgid ""
1525
+ "This version includes fixes to broken links while managing your subscriptions"
1526
+ msgstr ""
1527
 
1528
+ #: utils/stcr_upgrade.php:439
1529
+ #, fuzzy
1530
  msgid ""
1531
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1532
+ "160831"
 
1533
  msgstr ""
1534
+ "Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
1535
+ "offizielle"
 
1536
 
1537
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1538
+ msgid "This version includes fixes to many bugs and also new features, "
1539
+ msgstr ""
1540
 
1541
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1542
  msgid ""
1543
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1544
+ "address. This will help the subscribers to use the Reply option in their "
1545
+ "email agents."
 
1546
  msgstr ""
 
 
 
 
1547
 
1548
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1549
  msgid ""
1550
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1551
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1552
  msgstr ""
 
 
1553
 
1554
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1555
  msgid ""
1556
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1557
+ "without loosing your subscriptions. You can use this option also for reset "
1558
+ "all the settings, see the FAQ."
1559
  msgstr ""
 
 
 
1560
 
1561
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1562
+ msgid ""
1563
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1564
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1565
+ "Post Type."
1566
  msgstr ""
 
 
1567
 
1568
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1569
  msgid ""
1570
+ "<strong>New Feature</strong> A new field was added under the notification "
1571
+ "options to and the management link only by email and not to display it on "
1572
+ "the request link page."
1573
  msgstr ""
 
 
1574
 
1575
+ #: utils/stcr_upgrade.php:461
1576
  msgid ""
1577
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1578
+ "160902"
1579
  msgstr ""
 
 
1580
 
1581
+ #: utils/stcr_upgrade.php:464
1582
  msgid ""
1583
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1584
+ "previous 160831 version."
1585
  msgstr ""
 
 
 
1586
 
1587
+ #: utils/stcr_utils.php:195
1588
+ msgid "StCR Notification"
1589
+ msgstr "Benachrichtigungen"
1590
+
1591
+ #: wp_subscribe_reloaded.php:114
1592
+ msgid "Settings"
1593
  msgstr ""
 
 
 
1594
 
1595
+ #: wp_subscribe_reloaded.php:1086
1596
+ msgid "Don't subscribe"
1597
+ msgstr "Nicht abbonieren"
1598
 
1599
+ #: wp_subscribe_reloaded.php:1087
1600
+ msgid "All"
1601
+ msgstr "Alle"
1602
 
1603
  #~ msgid "StCR Subscription Box Position"
1604
  #~ msgstr "Neue Benachrichtigung"
langs/subscribe-reloaded-es_ES.mo CHANGED
Binary file
langs/subscribe-reloaded-es_ES.po CHANGED
@@ -3,8 +3,8 @@ 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-08-31 11:21-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:21-0700\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"
@@ -15,7 +15,7 @@ msgstr ""
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.6\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: wp_subscribe_reloaded.php:114
@@ -30,8 +30,7 @@ msgstr "No Suscribirse"
30
  msgid "All"
31
  msgstr "Todo"
32
 
33
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
34
- #: templates/author.php:75
35
  msgid "Replies to my comments"
36
  msgstr "Respuestas a mis comentarios"
37
 
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-08-31 11:21-0700\n"
6
+ "PO-Revision-Date: 2016-09-02 19:27-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <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"
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.8.7.1\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  #: wp_subscribe_reloaded.php:114
30
  msgid "All"
31
  msgstr "Todo"
32
 
33
+ #: wp_subscribe_reloaded.php:1062 templates/user.php:73 templates/author.php:75
 
34
  msgid "Replies to my comments"
35
  msgstr "Respuestas a mis comentarios"
36
 
langs/subscribe-reloaded-fa_IR.mo CHANGED
Binary file
langs/subscribe-reloaded-fa_IR.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:21-0700\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"
@@ -13,602 +13,339 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=1; plural=0;\n"
16
- "X-Generator: Poedit 1.6\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: wp_subscribe_reloaded.php:114
20
- msgid "Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr "تنظیمات"
22
 
23
- #: wp_subscribe_reloaded.php:1060
24
- msgid "Don't subscribe"
25
- msgstr "مشترک نمی شوم"
26
 
27
- #: wp_subscribe_reloaded.php:1061
28
- msgid "All"
29
- msgstr "دریافت همه دیدگاه های این نوشته"
30
 
31
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
32
- #: templates/author.php:75
33
- msgid "Replies to my comments"
34
- msgstr "فقط دریافت پاسخ دیدگاه های خودم "
 
 
 
 
 
 
 
 
35
 
36
- #: templates/request-management-link.php:71 templates/key_expired.php:71
37
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
38
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
39
  msgid "Email"
40
  msgstr "ایمیل"
41
 
42
- #: templates/request-management-link.php:73 templates/key_expired.php:73
43
- #: templates/subscribe.php:92
44
- msgid "Send"
45
- msgstr "ارسال"
 
46
 
47
- #: templates/key_expired.php:8
48
- msgid ""
49
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
50
- "enter your email below and a new link will be send."
51
- msgstr ""
52
 
53
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
54
- #: templates/author.php:80
55
- msgid "No subscriptions match your search criteria."
56
- msgstr "هیچ اشتراکی با معیار جستجوی شما انطباق ندارد."
 
57
 
58
- #: templates/subscribe.php:42 templates/subscribe.php:43
59
- msgid "New subscription to"
60
- msgstr "اشتراک جدید در"
61
 
62
- #: templates/subscribe.php:43
63
- msgid "User:"
64
- msgstr "کاربر:"
 
 
 
 
 
65
 
66
- #: templates/user.php:23 templates/author.php:23
67
- #: options/panel1-business-logic.php:70
 
 
 
 
 
 
 
 
68
  msgid "Subscriptions deleted:"
69
  msgstr "این اشتراک ها حذف شدند: "
70
 
71
- #: templates/user.php:27 templates/author.php:27
72
- #: options/panel1-business-logic.php:74
73
  msgid "Subscriptions suspended:"
74
  msgstr "این اشتراک ها معلق گشتند: "
75
 
76
- #: templates/user.php:31 templates/author.php:31
77
- #: options/panel1-business-logic.php:78
78
  msgid "Subscriptions activated:"
79
  msgstr "این اشتراک ها فعال شده اند: "
80
 
81
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
82
- #: templates/author.php:39 options/panel1-business-logic.php:82
83
- #: options/panel1-business-logic.php:86
84
  msgid "Subscriptions updated:"
85
  msgstr "این اشتراک ها به روزرسانی شدند: "
86
 
87
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
88
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
89
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
90
  msgid ""
91
  "Please remember: this operation cannot be undone. Are you sure you want to "
92
  "proceed?"
93
  msgstr ""
94
- "به خاطر داشته باشید این عملیات غیرقابل برگشت است. آیا مطمئنید می خواهید "
95
- "انجام شود؟"
96
 
97
- #: templates/user.php:58 templates/author.php:58
98
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
99
- msgstr "راهنما: Y= همه ی دیدگاه ها، R=فقط پاسخ ها به دیدگاه خودم، C= غیرفعال "
100
-
101
- #: templates/user.php:63
102
- msgid "F j, Y"
103
- msgstr "F j, Y"
104
 
105
- #: templates/user.php:67 templates/author.php:69
106
- msgid "Select all"
107
- msgstr "انتخاب همه"
108
 
109
- #: templates/user.php:68 templates/author.php:70
110
- msgid "Invert selection"
111
- msgstr "عدم انتخاب"
112
 
113
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
114
- msgid "Action:"
115
- msgstr "اقدام"
116
 
117
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
118
- #: options/panel1.php:212
119
- msgid "Delete"
120
- msgstr "پاک کردن"
121
 
122
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
123
- msgid "Suspend"
124
- msgstr "تعلیق"
125
 
126
- #: templates/user.php:72 templates/author.php:74
127
- msgid "All comments"
128
- msgstr "تمام دیدگاه ها"
129
 
130
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
131
- msgid "Activate"
132
- msgstr "فعال کن"
133
 
134
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
135
- msgid "Update subscriptions"
136
- msgstr "به روزرسانی اشتراک ها"
 
 
137
 
138
- #: templates/author.php:57
139
- msgid "Title"
140
- msgstr "عنوان"
141
 
142
- #: utils/stcr_upgrade.php:55
143
- msgid "Important Notice"
144
- msgstr "نکته مهم"
145
 
146
- #: utils/stcr_upgrade.php:103
147
- msgid ""
148
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
149
- "database has been sanitized to prevent the raw html messages. <a class="
150
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
151
- "src=\""
152
- msgstr ""
153
 
154
- #: utils/stcr_upgrade.php:158
 
155
  msgid ""
156
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
157
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
158
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
159
  msgstr ""
160
- "<strong>Subscribe to Comments Reloaded:</strong> داده های اشتراک در افزونه "
161
- "<strong>Subscribe to Comments</strong> شناسایی شد و به طور خودکار وارد "
162
- "<strong>Subscribe to Comments Reloaded</strong> شد."
163
 
164
- #: utils/stcr_upgrade.php:158
165
- msgid ""
166
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
167
- "Comments to prevent confusion between the two plugins."
168
- msgstr ""
169
- "توصیه می شود که شما اکنون Subscribe to Comments را <strong>غیرفعال</"
170
- "strong> کنید تا از مشکلات تداخل دو افزونه در امان باشید."
171
 
172
- #: utils/stcr_upgrade.php:159
173
- msgid ""
174
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
175
- "that you want to import, you'll need to import that data manually, as only "
176
- "one import routine will ever run to prevent data loss."
177
- msgstr ""
178
- "اگر داده های شما برای افزونه Subscribe to Comments Reloaded < v2.0 می باشد "
179
- "و بخواهید داده ها را وارد کنید شما نیاز خواهید داشت به صورت دستی این کار را "
180
- "انجام دهید تا مانع از دست دادن داده ها شوید."
181
 
182
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
183
- #: utils/stcr_upgrade.php:381
184
- msgid ""
185
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
186
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
187
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
188
- "\"stcr-loading-animation\" src=\""
189
- msgstr ""
190
 
191
- #: utils/stcr_upgrade.php:231
192
- msgid ""
193
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
194
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
195
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
196
- msgstr ""
197
- "<strong>Subscribe to Comments Reloaded:</strong> داده های اشتراک در افزونه "
198
- "<strong>Comment Reply Notification</strong> شناسایی شد و به طور خودکار وارد "
199
- "<strong>Subscribe to Comments Reloaded</strong> شد."
200
 
201
- #: utils/stcr_upgrade.php:231
202
- msgid ""
203
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
204
- "Notification to prevent confusion between the two plugins."
205
- msgstr ""
206
- "توصیه می شود که شما اکنون Subscribe to Comments را <strong>غیرفعال</"
207
- "strong> کنید تا از مشکلات تداخل دو افزونه در امان باشید."
208
 
209
- #: utils/stcr_upgrade.php:378
210
- msgid ""
211
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
212
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
213
- "were detected and automatically imported into <strong>Subscribe to Comments "
214
- "Reloaded</strong>."
215
- msgstr ""
216
- "<strong>Subscribe to Comments Reloaded:</strong> داده های اشتراک در افزونه "
217
- "<strong>WP Comment Subscriptions</strong> شناسایی شد و به طور خودکار وارد "
218
- "<strong>Subscribe to Comments Reloaded</strong> شد."
219
 
220
- #: utils/stcr_upgrade.php:378
221
- msgid ""
222
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
223
- "Subscriptions to prevent confusion between the two plugins."
224
- msgstr ""
225
- "توصیه می شود که شما اکنون WP Comment Subscriptions را <strong>غیرفعال</"
226
- "strong> کنید تا از مشکلات تداخل دو افزونه در امان باشید."
227
 
228
- #: utils/stcr_upgrade.php:379
229
- msgid ""
230
- "If you have subscription data from another plugin (such as Subscribe to "
231
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
232
- "you'll need to import that data manually, as only one import routine will "
233
- "ever run to prevent data loss."
234
- msgstr ""
235
- "اگر داده های اشتراک شما برای افزونه دیگری Subscribe to Comments یا "
236
- "Subscribe to Comments Reloaded < v2.0 می باشد و بخواهید داده ها را وارد کنید "
237
- "شما نیاز خواهید داشت به صورت دستی این کار را انجام دهید تا مانع از دست دادن "
238
- "داده ها شوید."
239
 
240
- #: utils/stcr_upgrade.php:380
241
- msgid ""
242
- "<strong>Note:</strong> If you were previously using the "
243
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
244
- "subscribe-url]</code> shortcode, you'll need to replace those with "
245
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
246
- "respectively."
247
- msgstr ""
248
- "<strong>نکته :</strong> اگر شما قبلأ از "
249
- "<code>wp_comment_subscriptions_show()</code> بعنوان تابع یا از <code>[wpcs-"
250
- "subscribe-url]</code> به عنوان shortcode استفاده می کردید شما نیاز دارید آن "
251
- "ها را به ترتیب با <code>subscribe_reloaded_show()</code> و <code>[subscribe-"
252
- "url]</code> عوض کنید."
253
-
254
- #: utils/stcr_upgrade.php:394
255
- msgid ""
256
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
257
- msgstr "<strong>بابت نصب Subscribe to Comments Reloaded! متشکریم! </strong>."
258
-
259
- #: utils/stcr_upgrade.php:395
260
- msgid ""
261
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
262
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
263
- msgstr ""
264
- "اگر به ایراد یا مشکلی برخوردید می توانید آن را <a href=\"https://github.com/"
265
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">اینجا</a> "
266
- "مطرح کنید."
267
-
268
- #: utils/stcr_upgrade.php:396
269
- msgid ""
270
- "If you want to donate you can do it via <a href=\"\n"
271
- "https://www.paypal.com/cgi-bin/webscr?"
272
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
273
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
274
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
275
- msgstr ""
276
- "اگر مایل به پرداخت وجه به ما هستید می توانید از طریق <a href=\"\n"
277
- "https://www.paypal.com/cgi-bin/webscr?"
278
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
279
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
280
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a> اقدام کنید."
281
-
282
- #: utils/stcr_upgrade.php:398
283
- msgid ""
284
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
285
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
286
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
287
- "a><img class=\"stcr-loading-animation\" src=\""
288
- msgstr ""
289
-
290
- #: utils/stcr_upgrade.php:409
291
- msgid ""
292
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
293
- "160106."
294
- msgstr ""
295
- "<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
296
- "ارتقاء یافت."
297
-
298
- #: utils/stcr_upgrade.php:410
299
- msgid ""
300
- "This version includes many changes and fixes to improve your experience with "
301
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
302
- "email templates, Subscription Checkbox position, and more!"
303
- msgstr ""
304
- "این ویرایش شامل تغییرات و اصلاحات بیشماری از قبیل، لغو اشتراک با یک کلیک ، "
305
- "ویرایشگر متنی پیشرفته جهت ایجاد قالب های ایمیل HTML ، موقعیت چک باکس اشتراک، "
306
- "و موارد بیشتر است!"
307
-
308
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
309
- #: utils/stcr_upgrade.php:448
310
- msgid ""
311
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
312
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
313
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
314
- "class=\"stcr-loading-animation\" src=\""
315
- msgstr ""
316
-
317
- #: utils/stcr_upgrade.php:424
318
- msgid ""
319
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
320
- "160115."
321
- msgstr ""
322
- "<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
323
- "ارتقاء یافت."
324
-
325
- #: utils/stcr_upgrade.php:425
326
- msgid ""
327
- "This version includes fixes to broken links while managing your subscriptions"
328
- msgstr ""
329
-
330
- #: utils/stcr_upgrade.php:439
331
- #, fuzzy
332
- msgid ""
333
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
334
- "160831"
335
- msgstr ""
336
- "<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
337
- "ارتقاء یافت."
338
-
339
- #: utils/stcr_upgrade.php:440
340
- msgid "This version includes fixes to many bugs and also new features, "
341
- msgstr ""
342
-
343
- #: utils/stcr_upgrade.php:442
344
- msgid ""
345
- "<strong>New Feature</strong> Add new option to set the Reply To email "
346
- "address. This will help the subscribers to use the Reply option in their "
347
- "email agents."
348
- msgstr ""
349
-
350
- #: utils/stcr_upgrade.php:443
351
- msgid ""
352
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
353
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
354
- msgstr ""
355
-
356
- #: utils/stcr_upgrade.php:444
357
- msgid ""
358
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
359
- "without loosing your subscriptions. You can use this option also for reset "
360
- "all the settings, see the FAQ."
361
- msgstr ""
362
-
363
- #: utils/stcr_upgrade.php:445
364
- msgid ""
365
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
366
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
367
- "Post Type."
368
- msgstr ""
369
-
370
- #: utils/stcr_upgrade.php:446
371
- msgid ""
372
- "<strong>New Feature</strong> A new field was added under the notification "
373
- "options to and the management link only by email and not to display it on "
374
- "the request link page."
375
- msgstr ""
376
-
377
- #: utils/stcr_manage.php:246
378
- msgid ""
379
- "Notify me of followup comments via e-mail. You can also <a "
380
- "href='[subscribe_link]'>subscribe</a> without commenting."
381
- msgstr ""
382
- "مرا با ایمیل از دیدگاه های آتی این نوشته مطلع کن. همچنین می توانید بدون "
383
- "ارسال دیدگاه <a href='[subscribe_link]'>مشترک شوید.</a>"
384
-
385
- #: utils/stcr_manage.php:247
386
- msgid ""
387
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
388
- "subscriptions."
389
- msgstr ""
390
- "شما در این نوشته مشترک شده اید. <a href='[manager_link]'> تغییر اشتراک </a>"
391
-
392
- #: utils/stcr_manage.php:248
393
- msgid ""
394
- "Your subscription to this post needs to be confirmed. <a "
395
- "href='[manager_link]'>Manage your subscriptions</a>."
396
- msgstr ""
397
- "اشتراک شما در این پست منتظر تایید است. <a href='[manager_link]'> اشتراک خود "
398
- "را مدیریت کنید </a>"
399
-
400
- #: utils/stcr_manage.php:249
401
- msgid ""
402
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
403
- msgstr ""
404
- "شما می توانید در این یادداشت <a href='[manager_link]'>اشتراک ها را مدیریت "
405
- "کنید</a> ."
406
-
407
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
408
- #: utils/stcr_manage.php:383 options/index.php:59
409
- msgid "Manage subscriptions"
410
- msgstr "مدیریت اشتراک ها"
411
-
412
- #: utils/stcr_manage.php:255
413
- msgid ""
414
- "To manage your subscriptions, please enter your email address here below. We "
415
- "will send you a message containing the link to access your personal "
416
- "management page."
417
- msgstr ""
418
- "جهت مدیریت اشتراک هایتان لطفاً نشانی ایمیل خود را در زیر وارد کنید. سپس یک "
419
- "ایمیل برایتان می فرستیم که حاوی لینک دسترسی به صفحه ی شخصی مدیریت شما است."
420
-
421
- #: utils/stcr_manage.php:256
422
- msgid ""
423
- "Thank you for using our subscription service. Your request has been "
424
- "completed, and you should receive an email with the management link in a few "
425
- "minutes."
426
- msgstr ""
427
- "ممنون که سرویس اشتراک ما را مورد استفاده قرار دادید. درخواست شما تکمیل شد و "
428
- "طی حداکثر چند دقیقه یک ایمیل حاوی پیوند صفحه ی مدیریت اشتراک ها دریافت می "
429
- "کنید."
430
 
431
- #: utils/stcr_manage.php:257
432
- msgid ""
433
- "You can follow the discussion on <strong>[post_title]</strong> without "
434
- "having to leave a comment. Cool, huh? Just enter your email address in the "
435
- "form here below and you're all set."
436
- msgstr ""
437
- "می تونی بحث درباره <strong>[post_title]</strong> را بدون گذاشتن هیچ دیدگاهی "
438
- "دنبال کنی. خوشت اومد، هان؟! فقط آدرس ایمیلتو در کادر زیر بنویس و تمام! "
439
 
440
- #: utils/stcr_manage.php:258
441
- msgid ""
442
- "Thank you for using our subscription service. Your request has been "
443
- "completed. You will receive a notification email every time a new comment to "
444
- "this article is approved and posted by the administrator."
445
- msgstr ""
446
- "ممنون که از سرویس اشتراک ما استفاده کردید. درخواست شما تکمیل شد. هر گاه "
447
- "دیدگاهی راجع به این یادداشت توسط سرپرست تایید یا منتشر شود با ایمیل از آن "
448
- "مطلع می گردید."
449
 
450
- #: utils/stcr_manage.php:259
451
- msgid ""
452
- "Thank you for using our subscription service. In order to confirm your "
453
- "request, please check your email for the verification message and follow the "
454
- "instructions."
455
- msgstr ""
456
- "ممنون که از سرویس اشتراک ما استفاده کردید. برای تایید درخواست خود لطفاً صندوق "
457
- "اینباکس یا اسپم ایمیلتان را ببینید و دستورالعمل پیام تاییدیه را دنبال نمایید."
458
 
459
- #: utils/stcr_manage.php:260
460
- msgid ""
461
- "In order to cancel or suspend one or more notifications, select the "
462
- "corresponding checkbox(es) and click on the button at the end of the list."
463
- msgstr ""
464
- "برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
465
- "کنید و دکمه ی پایین صفحه را کلیک نمایید."
466
 
467
- #: utils/stcr_manage.php:261
468
- msgid ""
469
- "In order to cancel or suspend one or more notifications, select the "
470
- "corresponding checkbox(es) and click on the button at the end of the list. "
471
- "You are currently subscribed to:"
472
- msgstr ""
473
- "برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
474
- "کنید و دکمه ی پایین صفحه را کلیک نمایید. شما هم اکنون در اینجاها مشترک هستید:"
475
 
476
- #: utils/stcr_manage.php:265
477
- msgid "There is a new comment to [post_title]"
478
- msgstr "دیدگاه تازه در نوشته [post_title]"
479
 
480
- #: utils/stcr_manage.php:266
481
- msgid ""
482
- "There is a new comment to [post_title].\n"
483
- "Comment Link: [comment_permalink]\n"
484
- "Author: [comment_author]\n"
485
- "Comment:\n"
486
- "[comment_content]\n"
487
- "Permalink: [post_permalink]\n"
488
- "Manage your subscriptions: [manager_link]"
489
- msgstr ""
490
- "یک دیدگاه جدید در [post_title] وجود دارد. \n"
491
- "پیوند به دیدگاه : [comment_permalink] \n"
492
- "نویسنده : [comment_author] \n"
493
- "محتوای دیدگاه : \n"
494
- "[comment_content] \n"
495
- "پیوند به یادداشت : [post_permalink] \n"
496
- "اشتراک خود را مدیریت کنید : [manager_link]"
497
 
498
- #: utils/stcr_manage.php:267
499
- msgid "Please confirm your subscription to [post_title]"
500
- msgstr "لطفاً اشتراک خود در این نوشته را تایید کنید: [post_title]"
501
 
502
- #: utils/stcr_manage.php:268
503
- msgid ""
504
- "You have requested to be notified every time a new comment is added to:\n"
505
- "[post_permalink]\n"
506
- "\n"
507
- "Please confirm your request by clicking on this link:\n"
508
- "[confirm_link]"
509
- msgstr ""
510
- "شما درخواست کرده اید که هرگاه دیدگاه جدیدی در این موضوع اضافه شود به طور "
511
- "خودکار آگاه گردید:\n"
512
- "[post_permalink]\n"
513
- "\n"
514
- "لطفاً با کلیک روی لینک زیر، درخواست خود را تایید کنید:\n"
515
- "[confirm_link]"
516
 
517
- #: utils/stcr_manage.php:269
518
- msgid "Manage your subscriptions on [blog_name]"
519
- msgstr "اشتراک های خود را در [blog_name] مدیریت کنید"
520
 
521
- #: utils/stcr_manage.php:270
522
- msgid ""
523
- "You have requested to manage your subscriptions to the articles on "
524
- "[blog_name]. Please check the Subscriptions management link in your email"
525
  msgstr ""
526
 
527
- #: utils/stcr_manage.php:271
528
- msgid ""
529
- "You have requested to manage your subscriptions to the articles on "
530
- "[blog_name]. Follow this link to access your personal page:\n"
531
- "[manager_link]"
532
- msgstr ""
533
- "شما درخواست مدیریت اشتراک های خود را در مقالات [blog_name] کرده اید. روی "
534
- "لینک زیر کلیک نمایید تا به صفحه ی شخصی خود بروید: \n"
535
- "[manager_link]"
536
 
537
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
538
- msgid "Comment Form"
539
- msgstr "فرم دیدگاه‌ها"
 
540
 
541
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
542
- msgid "Management Page"
543
- msgstr "صفحه‌ی مدیریت"
544
 
545
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
546
- msgid "Notifications"
547
- msgstr "آگاه سازی ها"
548
 
549
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
550
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
551
- msgid "Options"
552
- msgstr "تنظیمات"
553
 
554
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
555
- msgid "You can help"
556
- msgstr "شما هم می توانید کمک کنید"
557
 
558
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
559
- msgid "Support"
560
- msgstr " پشتیبانی"
561
 
562
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
563
- msgid "Donate"
564
- msgstr "حمایت مالی / فنی"
565
 
566
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
567
- msgid "StCR System"
568
- msgstr ""
569
 
570
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
571
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
572
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
573
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
574
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
575
- msgid "You do not have sufficient permissions to access this page."
576
- msgstr ""
577
 
578
- #: utils/stcr_manage.php:755
579
- msgid "Subscriptions"
580
- msgstr "اشتراک ‌ها"
581
 
582
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
583
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
584
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
585
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
586
- #: options/panel5.php:161
587
- msgid "No"
588
- msgstr "نه"
589
 
590
- #: utils/stcr_manage.php:811
591
- msgid ""
592
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
593
  msgstr ""
594
- "آیا برای استفاده از افزونه ی «اشتراک در دیدگاه‌ها نسخه ی جدید» نیاز به کمک "
595
- "دارید؟ سایت رسمی را ببینید."
596
-
597
- #: utils/stcr_manage.php:811
598
- msgid "support forum"
599
- msgstr "تالار گفتگوی پشتیبانی"
600
-
601
- #: utils/stcr_manage.php:812
602
- msgid "Feeling generous?"
603
- msgstr "احساس دست و دلبازی می کنید؟"
604
-
605
- #: utils/stcr_manage.php:812
606
- msgid "Donate a few bucks!"
607
- msgstr "چند دلار اهدا نمایید!"
608
-
609
- #: utils/stcr_utils.php:195
610
- msgid "StCR Notification"
611
- msgstr "آگاه سازی ها"
612
 
613
  #: options/panel2.php:12 options/panel2.php:63
614
  msgid "Enable default checkbox"
@@ -650,13 +387,13 @@ msgstr "برچسب حالت در انتظار"
650
  msgid "Author label"
651
  msgstr "برچسب مخصوص نویسنده ی نوشته "
652
 
653
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
654
- #: options/panel5.php:60 options/panel3.php:70
655
  msgid "Your settings have been successfully updated."
656
  msgstr "تنظیمات شما با موفقیت به روز شد."
657
 
658
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
659
- #: options/panel5.php:62 options/panel3.php:72
660
  msgid "There was an error updating the following fields:"
661
  msgstr "یک خطا در به روزرسانی فیلدهای زیر رخ داد:"
662
 
@@ -667,6 +404,14 @@ msgstr "یک خطا در به روزرسانی فیلدهای زیر رخ داد
667
  msgid "Yes"
668
  msgstr "بله"
669
 
 
 
 
 
 
 
 
 
670
  #: options/panel2.php:68
671
  msgid ""
672
  "Disable this option if you want to move the subscription checkbox to a "
@@ -674,9 +419,9 @@ msgid ""
674
  msgstr ""
675
  "اگر می خواهید کادر تیک زدنی را به قسمت دیگری از صفحه ی خود انتقال دهید این "
676
  "گزینه را غیرفعال نمایید. برای انتقال کادر تیک زدنی به بالای دکمه ی ارسال می "
677
- "توانید کد زیر را به خط 2355 از فایل Wordpress> WP-includes> "
678
- "comments_template.php اضافه کنید. شماره ی خط شاید عوض شود لذا دنبال تابع با "
679
- "اسم comment_form بگردید.\n"
680
  "if (function_exists('subscribe_reloaded_show')) subscribe_reloaded_show();"
681
 
682
  #: options/panel2.php:78
@@ -696,106 +441,233 @@ msgstr "تمام دیدگاه های جدید"
696
  msgid "Replies to this comment"
697
  msgstr "پاسخ های به این دیدگاه"
698
 
699
- #: options/panel2.php:94
700
- msgid ""
701
- "Select the default option for the Checkbox. Be careful! Some users might "
702
- "like to be subscribed to all the post."
703
- msgstr ""
704
- "انتخاب پیشفرض برای چک باکس را تعیین کنید. دقت داشته باشید که بازدیدکنندگان "
705
- "شاید مایل باشند مشترک تمام دیدگاه ها شوند."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
706
 
707
- #: options/panel2.php:107
708
  msgid ""
709
- "Allow users to choose from different subscription types (all, replies only)."
 
 
710
  msgstr ""
711
- "به کاربران امکان می دهد گزینه های مختلف اشتراک مثلاً دریافت همه ی دیدگاه ها "
712
- "یا فقط دریافت پاسخ به دیدگاه های خود را انتخاب نمایند."
713
-
714
- #: options/panel2.php:115
715
- msgid "Advanced default"
716
- msgstr "پیشفرض پیشرفته"
717
 
718
- #: options/panel2.php:119
719
- msgid "None"
720
- msgstr "هیچ کدام"
 
 
721
 
722
- #: options/panel2.php:124
723
  msgid ""
724
- "The default subscription type that should be selected when Advanced "
725
- "subscriptions are enable."
 
 
726
  msgstr ""
727
- "نوع اشتراک پیشفرض در حالتی که اشتراک پیشرفته فعال شده است، باید انتخاب شود."
 
 
728
 
729
- #: options/panel2.php:135
730
- msgid "Custom inline CSS to add to the checkbox."
 
 
731
  msgstr ""
732
- "جلوه ی CSS سفارشی که فقط برای خط مربوط به کادر تیک زدنی استفاده می شود."
 
733
 
734
- #: options/panel2.php:152
735
  msgid ""
736
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
737
- "[checkbox_field], [checkbox_label]"
738
  msgstr ""
739
- "کد HTML سفارشی برای استفاده هنگام نمایش کادر تیک زدنی! تگ های مجاز: "
740
- "[checkbox_field], [checkbox_label]"
741
 
742
- #: options/panel2.php:158
743
- msgid "Messages for your visitors"
744
- msgstr "پیغام برای بازدیدکنندگان شما"
745
 
746
- #: options/panel2.php:162
747
- msgid "Default label"
748
- msgstr "برچسب پیشفرض"
749
 
750
- #: options/panel2.php:175
751
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
 
 
752
  msgstr ""
753
- "برچسبی که به کادر تیک زدنی اختصاص داده می شود. تگ های مجاز: [subscribe_link]"
 
754
 
755
- #: options/panel2.php:192
756
  msgid ""
757
- "Label shown to those who are already subscribed to a post. Allowed tag: "
758
- "[manager_link]"
759
  msgstr ""
760
- "برچسبی که به افراد پیشاپیش مشترک شده در یک نوشته نشان داده می شود. تگ های "
761
- "مجاز: [manager_link]"
762
-
763
- #: options/panel2.php:197
764
- msgid "Pending label"
765
- msgstr "برچسب حالت منتظر در صف"
766
 
767
- #: options/panel2.php:209
768
  msgid ""
769
- "Label shown to those who are already subscribed, but haven't clicked on the "
770
- "confirmation link yet. Allowed tag: [manager_link]"
771
  msgstr ""
772
- "این برچسب به افرادی نشان داده می شود که درخواست مشترک شدن کرده ولی هنوز لینک "
773
- "تایید را در ایمیل خود کلیک ننموده اند. تگ های مجاز: [manager_link]"
774
 
775
- #: options/panel2.php:225
776
  msgid ""
777
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
778
  msgstr ""
779
- "این برچسب به نویسندگان و مدیران نشان داده می شود. تگ های مجاز: [manager_link]"
780
-
781
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
782
- #: options/panel3.php:253
783
- msgid "Save Changes"
784
- msgstr "ذخیره ی تغییرات"
785
 
786
- #: options/panel9.php:11
787
- msgid "Support Subscribe to Comments Reloaded"
788
- msgstr "Subscribe to Comments Reloaded را پشتیبانی کنید"
789
 
790
- #: options/panel9.php:12
791
- msgid ""
792
- "Every contribution that you make is high valuable, so if you consider this "
793
- "plugin a helpful tool we will use your donation to invest on support and "
794
- "developing time."
795
- msgstr ""
796
- "هر گونه مشارکت شما بسیار ارزشمند است، پس چنانچه این افزونه را ارزشمند می "
797
- "دانید ما از حمایت های مالی شما جهت سرمایه گذاری در پشتیبانی و توسعه استفاده "
798
- "خواهیم کرد."
799
 
800
  #: options/panel4.php:15 options/panel4.php:94
801
  msgid "Sender name"
@@ -855,10 +727,6 @@ msgid ""
855
  "will be the same as the Sender email address."
856
  msgstr ""
857
 
858
- #: options/panel4.php:135 options/panel3.php:127
859
- msgid "Messages"
860
- msgstr "پیام ها"
861
-
862
  #: options/panel4.php:147
863
  msgid "Subject of the notification email. Allowed tag: [post_title]"
864
  msgstr ""
@@ -876,8 +744,8 @@ msgstr ""
876
 
877
  #: options/panel4.php:171
878
  msgid ""
879
- "<p><strong>Note: To get a default template clear all the content and save "
880
- "the options.</strong></p>"
881
  msgstr ""
882
  "<p><strong>توجه : برای داشتن یک قالب تمیز، محتوا را پاک کنید و تنظیمات را "
883
  "ذخیره نمایید.</strong></p>"
@@ -916,15 +784,160 @@ msgid ""
916
  "[manager_link]."
917
  msgstr ""
918
 
919
- #: options/panel4.php:263
920
- msgid "One Click Unsubscribe"
921
- msgstr "لغو اشتراک با یک کلیک"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
922
 
923
- #: options/panel4.php:277
924
  msgid ""
925
- "Content of the One Click confirmation. Allowed tags: [post_title], "
926
- "[blog_name]"
927
- msgstr "محتوای تأیید با یک کلیک. تگ های مجاز: [post_title]"
 
 
928
 
929
  #: options/panel7.php:8 options/panel8.php:8
930
  msgid "Support the developers"
@@ -941,8 +954,8 @@ msgstr ""
941
  "قابلیت هایی که توسط این افزونه ارائه شده اند چقدر برای بازدید کنندگان شما "
942
  "ارزش دارد؟ لطفاً چنانچه این افزونه سایت شما را بهتر کرده است از نویسنده آن "
943
  "حمایت کنید، به خصوص با پرداخت وجه در قبال آن. هر وجه کمکی که دریافت می شود "
944
- "دوباره جهت توسعه <strong>Subscribe to Comments Reloaded</strong> سرمایه "
945
- "گذاری می شود ، و بخش کوچکی از آن نیز صرف خرید غذا برای خانواده ام می شود."
946
 
947
  #: options/panel7.php:20
948
  msgid "Don't want to donate? You can still help"
@@ -952,13 +965,13 @@ msgstr "تمایل به اهدا ندارید؟ هنوز هم می توانید
952
  msgid ""
953
  "If you don't want to donate money, please consider blogging about my plugin "
954
  "with a link to the plugin's page. Please let your readers know what makes "
955
- "your blog better. You can also contribute donating your time: do not "
956
- "hesitate to send me bug reports, your localization files, ideas on how to "
957
- "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
958
- "you do, thanks for using my plugin!"
959
  msgstr ""
960
- "اگر شما قصد پرداخت وجه در قبال این افزونه را ندارید لطفأ با قرار دادن لینک "
961
- "آن در سایت یا وبلاگ خود و معرفی آن حمایتش کنید؛ شما همچنین به خوانندگان خود "
962
  "خواهید گفت چگونه بلاگتان بهتر شده است. شما همچنین می توانید برای این افزونه "
963
  "وقت بگذارید و با ارسال گزارش ایراد ها، فایل های محلی شده و ایده های بهبود "
964
  "<strong>Subscribe to Comments Reloaded</strong> حمایتش کنید. فارغ از همه این "
@@ -972,13 +985,12 @@ msgstr "به تست کنندگان نسخه بتا بپیوندید"
972
  msgid ""
973
  "Before a new Update we release a Beta version so that our current users can "
974
  "give us feedback if they find a bug, If you want to join the tester list you "
975
- "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
976
- "a>"
977
  msgstr ""
978
  "قبل از ارسال به روز رسانی جدید افزونه ما یک نسخه بتا توزیع می کنیم بنابراین "
979
- "کاربران فعلی ما می توانند به ما بازخورد بدهند اگر که ایرادی پیدا کنند، اگر "
980
- "می خواهید به جمع تست کنندگان بپیوندید شما می توانید ایمیل خود را <a "
981
- "href='http://eepurl.com/biCk1b' target='_blank'>از اینجا</a> اضافه کنید."
982
 
983
  #: options/panel7.php:26
984
  msgid "Vote and show your appreciation"
@@ -994,545 +1006,553 @@ msgstr ""
994
  "که برای شما خوب کار می کند. در صفحه افزونه نیز لطفأ به آن <a href=\"http://"
995
  "wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">رأی بدهید</a>."
996
 
997
- #: options/panel1.php:20
998
- msgid "Mass Update Subscriptions"
999
- msgstr "به روزرسانی اشتراک ها به صورت انبوه"
1000
-
1001
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
1002
- msgid "From"
1003
- msgstr "از"
1004
 
1005
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
1006
- msgid "email address"
1007
- msgstr "نشانی رایان‌نامه فرستنده"
 
 
 
 
 
 
 
 
1008
 
1009
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
1010
- msgid "To"
1011
- msgstr "تا"
1012
 
1013
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
1014
- msgid "optional - new email address"
1015
- msgstr "نشانی رایان‌نامه فرستنده"
 
 
 
 
 
 
1016
 
1017
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
1018
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
1019
- #: options/panel1-edit-subscription.php:26
1020
- msgid "Status"
1021
- msgstr "وضعیت"
1022
 
1023
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
1024
- msgid "Keep unchanged"
1025
- msgstr "بدون تغییر رها کن"
1026
 
1027
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
1028
- #: options/panel1-add-subscription.php:22
1029
- #: options/panel1-edit-subscription.php:29
1030
- msgid "Active"
1031
- msgstr "فعال"
1032
 
1033
- #: options/panel1.php:43 options/panel1.php:80
1034
- #: options/panel1-add-subscription.php:23
1035
- #: options/panel1-edit-subscription.php:30
1036
- msgid "Replies only"
1037
- msgstr "فقط پاسخ ها"
1038
 
1039
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
1040
- msgid "Suspended"
1041
- msgstr "معلق"
1042
 
1043
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
1044
- #: options/panel1-edit-subscription.php:33
1045
- msgid "Update"
1046
- msgstr "به روزرسانی"
1047
 
1048
- #: options/panel1.php:49
1049
- msgid "More info"
1050
- msgstr ""
 
1051
 
1052
- #: options/panel1.php:55
1053
  msgid ""
1054
- "This option will allow you to change an email address for another one or to "
1055
- "update the same status for all the subscription on a specific email address."
1056
  msgstr ""
1057
 
1058
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1059
- msgid "Add New Subscription"
1060
- msgstr "افزودن اشتراک جدید"
 
1061
 
1062
- #: options/panel1.php:68
1063
- msgid "Post ID"
1064
- msgstr "شناسه‌ی نوشته"
1065
 
1066
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1067
- msgid "Ask user to confirm"
1068
- msgstr "پرسش از کاربر برای تایید"
1069
 
1070
- #: options/panel1.php:83
1071
- msgid "Add"
1072
- msgstr "افزودن"
1073
 
1074
- #: options/panel1.php:98
1075
- msgid "Search subscriptions"
1076
- msgstr "جستجوی اشتراک ها"
1077
 
1078
- #: options/panel1.php:102
1079
- #, php-format
1080
  msgid ""
1081
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1082
- "where the"
1083
  msgstr ""
1084
- "می توانید یا <a href=\"%s\">تمام اشتراک ها را ببینید</a> یا فقط مواردی را "
1085
- "پیدا کنید که "
1086
 
1087
- #: options/panel1.php:106
1088
- msgid "email"
1089
- msgstr "ایمیل"
1090
-
1091
- #: options/panel1.php:107
1092
- msgid "post ID"
1093
- msgstr "شناسه ی نوشته"
1094
-
1095
- #: options/panel1.php:108
1096
- msgid "status"
1097
- msgstr "وضعیت"
1098
-
1099
- #: options/panel1.php:111
1100
- msgid "equals"
1101
- msgstr "مساوی است با"
1102
-
1103
- #: options/panel1.php:112
1104
- msgid "contains"
1105
- msgstr "محتوی"
1106
-
1107
- #: options/panel1.php:113
1108
- msgid "does not contain"
1109
- msgstr "غیرمحتوی"
1110
-
1111
- #: options/panel1.php:114
1112
- msgid "starts with"
1113
- msgstr "شروع می شود با"
1114
-
1115
- #: options/panel1.php:115
1116
- msgid "ends with"
1117
- msgstr "پایان می یابد با"
1118
-
1119
- #: options/panel1.php:118
1120
- msgid "results per page:"
1121
- msgstr "نتایج در هر صفحه"
1122
-
1123
- #: options/panel1.php:120
1124
- msgid "Search"
1125
- msgstr "جستجو"
1126
 
1127
- #: options/panel1.php:128
1128
- msgid "Reverse the order by Post ID"
1129
- msgstr "ترتیب را بر اساس شناسه ی نوشته ها برعکس کن"
 
 
 
 
1130
 
1131
- #: options/panel1.php:129 options/panel1.php:130
1132
- msgid "Reverse the order by Date/Time"
1133
- msgstr "ترتیب را بر اساس تاریخ و ساعت برعکس کن"
 
 
 
1134
 
1135
- #: options/panel1.php:132
1136
- msgid "Post (ID)"
1137
- msgstr "نوشته (شناسه)"
 
 
 
 
 
1138
 
1139
- #: options/panel1.php:135
1140
- msgid "Search query:"
1141
- msgstr "عبارت مورد جستجو: "
 
 
 
 
 
 
1142
 
1143
- #: options/panel1.php:135
1144
- msgid "Rows:"
1145
- msgstr "ردیف ها:"
 
 
 
 
 
1146
 
1147
- #: options/panel1.php:135
1148
- msgid "of"
1149
- msgstr "از"
 
 
 
 
 
 
1150
 
1151
- #: options/panel1.php:142 options/panel1.php:158
1152
- msgid "Date and Time"
1153
- msgstr "تاریخ و ساعت"
 
 
 
 
 
1154
 
1155
- #: options/panel1.php:168
1156
- msgid "Replies"
1157
- msgstr "پاسخ ها"
 
 
 
 
1158
 
1159
- #: options/panel1.php:169
1160
- msgid "All Comments"
1161
- msgstr "تمام دیدگاه ها"
 
 
 
 
 
1162
 
1163
- #: options/panel1.php:170
1164
- msgid "Unconfirmed"
 
 
 
 
 
 
 
 
 
 
 
1165
  msgstr ""
 
 
 
 
 
 
 
1166
 
1167
- #: options/panel1.php:171
1168
- msgid "Inactive"
1169
- msgstr "فعال"
1170
 
1171
- #: options/panel1.php:201 options/panel1.php:211
1172
- msgid "Edit"
1173
- msgstr "ویرایش"
 
 
 
 
 
 
 
 
 
 
 
1174
 
1175
- #: options/panel1.php:203 options/panel1.php:209
1176
- msgid "Subscription"
1177
- msgstr "اشتراک‌"
1178
 
1179
- #: options/panel1.php:226
1180
- msgid "Delete forever"
1181
- msgstr "پاک کردن برای همیشه"
 
 
1182
 
1183
- #: options/panel1.php:228
1184
- msgid "Activate and set to Y"
1185
- msgstr "فعال کن و روی حالت Y بگذار"
 
 
 
 
 
 
1186
 
1187
- #: options/panel1.php:229
1188
- msgid "Activate and set to R"
1189
- msgstr "فعال کن و روی حالت R بگذار"
1190
 
1191
- #: options/panel1.php:237
1192
- msgid "Sorry, no subscriptions match your search criteria."
1193
- msgstr "متاسفانه هیچ اشتراکی با معیار شما انطباق نداشت."
 
 
 
1194
 
1195
- #: options/panel1-business-logic.php:23
1196
- msgid "Subscription added."
1197
- msgstr "اشتراک افزوده شد. "
1198
 
1199
- #: options/panel1-business-logic.php:39
1200
- msgid "Subscriptions updated."
1201
- msgstr "اشتراک ها به روزرسانی شد."
 
 
 
1202
 
1203
- #: options/panel1-business-logic.php:51
1204
- msgid "Subscription deleted."
1205
- msgstr "اشتراک حذف شد. "
1206
 
1207
- #: options/panel1-business-logic.php:110
1208
- msgid "&laquo; Previous"
1209
- msgstr "&laquo; قبلی"
1210
 
1211
- #: options/panel1-business-logic.php:114
1212
- msgid "Next &raquo;"
1213
- msgstr "بعدی &raquo;"
1214
 
1215
- #: options/panel1-add-subscription.php:13
1216
- #: options/panel1-edit-subscription.php:13
1217
- msgid "Post:"
1218
- msgstr "نوشته:"
1219
 
1220
- #: options/panel5.php:28
1221
- msgid "Safetly Uninstall"
 
 
 
 
1222
  msgstr ""
1223
 
1224
- #: options/panel5.php:31 options/panel5.php:84
1225
- msgid "Autopurge requests"
 
 
 
1226
  msgstr ""
1227
- "زوال خودکار درخواست های اشتراک که طی مدت معین مورد تایید کاربر قرار نگرفته"
1228
-
1229
- #: options/panel5.php:34 options/panel5.php:93
1230
- msgid "Enable double check"
1231
- msgstr "حالت بررسی مضاعف را فعال کن"
1232
-
1233
- #: options/panel5.php:37 options/panel5.php:101
1234
- msgid "Subscribe authors"
1235
- msgstr "اشتراک مؤلفان"
1236
-
1237
- #: options/panel5.php:40 options/panel5.php:111
1238
- msgid "Enable HTML emails"
1239
- msgstr "فعال کردن ایمیل های HTML"
1240
-
1241
- #: options/panel5.php:43
1242
- msgid "HTMLify Links in HTML emails"
1243
- msgstr "پیوند های HTMLify در ایمیل های HTML"
1244
 
1245
- #: options/panel5.php:46
1246
- msgid "Send trackbacks"
1247
- msgstr "ارسال بازآگاهی"
 
 
 
 
1248
 
1249
- #: options/panel5.php:49
1250
- msgid "Notify admin"
1251
- msgstr "سرپرست را مطلع کن"
 
 
 
 
 
 
1252
 
1253
- #: options/panel5.php:52 options/panel5.php:149
1254
- msgid "Let admin subscribe"
1255
- msgstr "به سرپرست اجازه ی مشترک شدن بده"
 
 
 
 
 
1256
 
1257
- #: options/panel5.php:55 options/panel5.php:158
1258
- msgid "BCC admin on Notifications"
1259
- msgstr "مدیر را در BCC یادآوری ها قرار بده"
 
 
 
 
 
 
1260
 
1261
- #: options/panel5.php:76
1262
- msgid "Safely Uninstall"
 
 
1263
  msgstr ""
 
 
1264
 
1265
- #: options/panel5.php:80
1266
  msgid ""
1267
- "This option will allow you to delete the plugin with WordPress without "
1268
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
 
1269
  msgstr ""
 
 
 
1270
 
1271
- #: options/panel5.php:87
1272
- msgid "days"
1273
- msgstr "روز"
 
 
 
 
1274
 
1275
- #: options/panel5.php:88
1276
  msgid ""
1277
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1278
- "this feature."
 
 
1279
  msgstr ""
1280
- "اشتراک هایی که بیش از این تعداد روز منتظر تایید مانده و پاسخی نگرفته اند را "
1281
- "حذف کن. عدد 0 به معنای عدم استفاده از این قابلیت است."
 
 
1282
 
1283
- #: options/panel5.php:97
1284
  msgid ""
1285
- "Send a notification email to confirm the subscription (to avoid addresses "
1286
- "misuse)."
 
 
 
1287
  msgstr ""
1288
- "ارسال یک ایمیل آگاه سازی جهت تأیید مشترک ( به منظور جلوگیری از استفاده از "
1289
- "آدرس ایمیل غیرمرتبط)"
 
 
 
1290
 
1291
- #: options/panel5.php:106
1292
  msgid ""
1293
- "Automatically subscribe authors to their own articles (not retroactive)."
1294
- msgstr ""
1295
- "به طور خودکار نویسندگان را مشترک یادداشت هایشان کن ( شامل یادداشت های موجود "
1296
- "از قبل نمی شود )"
1297
 
1298
- #: options/panel5.php:115
1299
  msgid ""
1300
- "If enabled, will send email messages with content-type = text/html instead "
1301
- "of text/plain"
1302
  msgstr ""
1303
- "اگر فعال شود ما پیام ها را با content-type = text/html به جای text/plain "
1304
- "ایمیل می کنیم."
1305
-
1306
- #: options/panel5.php:120
1307
- msgid "HTMLify links in emails"
1308
- msgstr "پیوند های HTMLify در ایمیل ها"
1309
 
1310
- #: options/panel5.php:125
1311
  msgid ""
1312
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1313
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
 
 
 
 
1314
  msgstr ""
1315
- "اگر فعال شود ما تمام پیوند ها را با <code>&lt;a href=\"\"&gt;&lt;/a&gt;</"
1316
- "code> احاطه می کنیم. ( فقط هنگام فعال بودن ایمیل HTML)"
1317
-
1318
- #: options/panel5.php:130
1319
- msgid "Process trackbacks"
1320
- msgstr "بازآگاهی فرآیند"
1321
 
1322
- #: options/panel5.php:134
1323
  msgid ""
1324
- "Notify users when a new trackback or pingback is added to the discussion."
 
 
 
1325
  msgstr ""
1326
- "کاربران را مطلع کن اگر یک بازآگاهی یا ارجاع مستقیم به دیدگاه ها اضافه شود."
1327
-
1328
- #: options/panel5.php:139
1329
- msgid "Track all subscriptions"
1330
- msgstr "تمام اشتراک ها را رهگیری کن"
1331
-
1332
- #: options/panel5.php:144
1333
- msgid "Notify the administrator when users subscribe without commenting."
1334
- msgstr "وقتی کاربران بدون دیدگاه گذاری مشترک می شوند سرپرست را مطلع کن."
1335
 
1336
- #: options/panel5.php:153
1337
- msgid "Let the administrator subscribe to comments when logged in."
 
 
1338
  msgstr ""
1339
- "وقتی سرپرست وارد سایت می گردد به او اجازه ی مشترک شدن در دیدگاه ها را بده."
1340
-
1341
- #: options/panel5.php:162
1342
- msgid "Send a copy of all Notifications to the administrator."
1343
- msgstr "یک کپی از تمام آگاه سازی ها برای مدیر سایت بفرست."
1344
-
1345
- #: options/panel5.php:167
1346
- msgid "StCR Unique Key"
1347
- msgstr "شناسه منحصر بفرد StCR"
1348
 
1349
- #: options/panel5.php:172
1350
- msgid "This Unique Key is not set, please click the following button to "
 
 
 
1351
  msgstr ""
1352
- "این شناسه منحصر بفرد تنظیم نشده است، برای این منظور لطفاً روی این دکمه کلیک "
1353
- "کنید"
1354
-
1355
- #: options/panel5.php:176 options/panel5.php:187
1356
- msgid "Generate"
1357
- msgstr "ایجاد"
1358
 
1359
- #: options/panel5.php:184
 
1360
  msgid ""
1361
- "This Unique Key will be use to send the notification to your subscribers "
1362
- "with more security."
 
 
1363
  msgstr ""
1364
- "این شناسه منحصر بفرد جهت ارسال آگاه سازی ها به مشترکین با امنیت بیشتر "
1365
- "استفاده می شود."
1366
-
1367
- #: options/panel8.php:18
1368
- msgid "Did you find a Bug on the plugin?"
1369
- msgstr "آیا ایرادی بر روی افزونه یافته اید؟"
1370
 
1371
- #: options/panel8.php:19
1372
  msgid ""
1373
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1374
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1375
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1376
- "WordPress Support page."
1377
  msgstr ""
1378
- "لطفاً هر گونه ایرادی را در <a href=\"https://github.com/stcr/subscribe-to-"
1379
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1380
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> مطرح کنید تا صفحه پشتیبانی "
1381
- "وردپرس."
1382
-
1383
- #: options/panel1-edit-subscription.php:8
1384
- msgid "Update Subscription"
1385
- msgstr "به روزرسانی اشتراک"
1386
-
1387
- #: options/panel1-edit-subscription.php:11
1388
- #: options/panel1-edit-subscription.php:21
1389
- #: options/panel1-edit-subscription.php:22
1390
- #: options/panel1-edit-subscription.php:23
1391
- msgid "optional"
1392
- msgstr "دلبخواهی"
1393
 
1394
- #: options/panel10.php:22 options/panel10.php:23
1395
- msgid "System Information"
 
1396
  msgstr ""
1397
 
1398
- #: options/panel3.php:13 options/panel3.php:87
1399
- msgid "Virtual Management Page"
1400
- msgstr "صفحه ی مدیریت مجازی"
1401
-
1402
- #: options/panel3.php:18 options/panel3.php:96
1403
- msgid "Page title"
1404
- msgstr "عنوان صفحه"
1405
-
1406
- #: options/panel3.php:23 options/panel3.php:105
1407
- msgid "Management URL"
1408
- msgstr "پیوند به صفحه مدیریت"
1409
-
1410
- #: options/panel3.php:28 options/panel3.php:117
1411
- msgid "Custom HEAD meta"
1412
- msgstr "تگ های متا به صورت سفارشی برای قسمت سربرگ"
1413
-
1414
- #: options/panel3.php:34 options/panel3.php:131
1415
- msgid "Request link"
1416
- msgstr "پیوند درخواست"
1417
-
1418
- #: options/panel3.php:39 options/panel3.php:149
1419
- msgid "Request submitted"
1420
- msgstr "درخواست ارسال شد"
1421
-
1422
- #: options/panel3.php:44 options/panel3.php:167
1423
- msgid "Subscribe without commenting"
1424
- msgstr "اشتراک بدون دیدگاه نویسی"
1425
-
1426
- #: options/panel3.php:49 options/panel3.php:185
1427
- msgid "Subscription processed"
1428
- msgstr "عملیات اشتراک انجام شد"
1429
-
1430
- #: options/panel3.php:54 options/panel3.php:203
1431
- msgid "Subscription processed (DCI)"
1432
- msgstr "اشتراک پردازش شده (DCI)"
1433
-
1434
- #: options/panel3.php:59 options/panel3.php:220
1435
- msgid "Authors"
1436
- msgstr "نویسندگان"
1437
-
1438
- #: options/panel3.php:64 options/panel3.php:236
1439
- msgid "Users"
1440
- msgstr "کاربران"
1441
-
1442
- #: options/panel3.php:90
1443
- msgid "Enabled"
1444
- msgstr "فعال"
1445
-
1446
- #: options/panel3.php:91
1447
- msgid "Disabled"
1448
- msgstr "غیرفعال"
1449
-
1450
- #: options/panel3.php:92
1451
  msgid ""
1452
- "Disable the virtual management page if you need to create a <a href="
1453
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1454
- "real-management-page\">real page</a> to make your theme happy."
1455
  msgstr ""
1456
- "چنانچه می خواهید یک <a href=\"http://behstant.com/subscribe-reloaded/"
1457
- "realMgnPage.php\"> صفحه ی واقعی </a> به وجود آورید و پوسته ی خود را خوشحال "
1458
- "کنید صفحه ی مجازی مدیریت را غیر فعال نمایید."
1459
 
1460
- #: options/panel3.php:101
1461
- msgid "Title of the page your visitors will use to manage their subscriptions."
1462
  msgstr ""
1463
- "عنوان صفحه ای که بازدیدکنندگان شما برای مدیریت اشتراک های خود استفاده می "
1464
- "نمایند."
1465
 
1466
- #: options/panel3.php:109
1467
  msgid ""
1468
- "The permalink for your management page (something like <code>/manage-"
1469
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1470
- "b> actually exist in the system, but its link must follow your permalink "
1471
- "structure."
1472
  msgstr ""
1473
- "پیوند یکتا به صفحه ی مدیریت شما، (چیزی شبیه <code>/manage-subscriptions</"
1474
- "code> یا <code>/?page_id=345</code>). این صفحه واقعاً در سیستم شما وجود "
1475
- "<b>ندارد</b> ولی باید از ساختار پیوندهای یکتای سایت تبعیت کند."
1476
 
1477
- #: options/panel3.php:111
1478
  msgid ""
1479
- "Warning: it looks like the value you are using may be incompatible with your "
1480
- "permalink structure"
1481
  msgstr ""
1482
- "هشدار: شاید مقداری که قرار داده اید با ساختار پیوندهای یکتای سایت همخوانی "
1483
- "نداشته باشد."
1484
 
1485
- #: options/panel3.php:121
1486
  msgid ""
1487
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1488
- "Use <strong>single</strong> quotes for values."
 
1489
  msgstr ""
1490
- "کدهای HTML سفارشی را که می خواهید به بخش head در صفحه اضافه شود تعیین کنید. "
1491
- "برای مقادیر پارامترها فقط از کوتیشن <strong>تکی </strong> استفاده نمایید."
1492
-
1493
- #: options/panel3.php:144
1494
- msgid "Text shown to those who request to manage their subscriptions."
1495
- msgstr "متن نمایش داده شده به کسانی که درخواست مدیریت اشتراک های خود را دارند"
1496
 
1497
- #: options/panel3.php:162
1498
  msgid ""
1499
- "Thank you note shown after the request here above has been processed. "
1500
- "Allowed tags: [post_title], [post_permalink]"
 
1501
  msgstr ""
1502
- "پیام تشکر پس از تایید شدن درخواست مشروح در بالا! تگ های مجاز: [post_title], "
1503
- "[post_permalink]"
1504
 
1505
- #: options/panel3.php:180
1506
  msgid ""
1507
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1508
- "[post_title], [post_permalink]"
 
1509
  msgstr ""
1510
- "این متن به کسانی که می خواهند بدون دیدگاه نویسی مشترک گردند نشان داده می "
1511
- "شود. تگ های مجاز: [post_title], [post_permalink]"
1512
 
1513
- #: options/panel3.php:198
1514
  msgid ""
1515
- "Thank you note shown after the subscription request has been processed "
1516
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1517
  msgstr ""
1518
- "پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت غیرفعال بودن نیاز "
1519
- "به تایید ایمیلی). برچسب های مجاز: [post_title], [post_permalink]"
1520
 
1521
- #: options/panel3.php:216
1522
  msgid ""
1523
- "Thank you note shown after the subscription request has been processed "
1524
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
1525
  msgstr ""
1526
- "پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت فعال بودن نیاز به "
1527
- "تایید ایمیلی). تگ های مجاز: [post_title], [post_permalink]"
1528
 
1529
- #: options/panel3.php:232
1530
- msgid "Introductory text for the authors' management page."
1531
- msgstr "متن معرفی برای صفحه ی مدیریت نویسندگان."
1532
 
1533
- #: options/panel3.php:248
1534
- msgid "Introductory text for the users' management page."
1535
- msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1536
 
1537
  #~ msgid ""
1538
  #~ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
@@ -1540,9 +1560,9 @@ msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
1540
  #~ "\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-animation\" "
1541
  #~ "src=\""
1542
  #~ msgstr ""
1543
- #~ "<strong>Subscribe to Comments Reloaded:</strong> داده ها در دیتابیس شما "
1544
- #~ "به خوبی تیمار شده اند تا از ایجاد پیغام های ناپخته HTML ممانعت بعمل آید. "
1545
- #~ "<a class=\"dismiss\" href=\"#\">فهمیدم. </a><img class=\"stcr-loading-"
1546
  #~ "animation\" src=\""
1547
 
1548
  #~ msgid ""
@@ -1559,8 +1579,8 @@ msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
1559
  #~ msgid ""
1560
  #~ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1561
  #~ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for "
1562
- #~ "detailed information on plugin changes.<a class=\"dismiss\" href=\"#"
1563
- #~ "\">Got it. </a><img class=\"stcr-loading-animation\" src=\""
1564
  #~ msgstr ""
1565
  #~ "لطفأ <a href=\"https://wordpress.org/plugins/subscribe-to-comments-"
1566
  #~ "reloaded/changelog/\" target=\"_blank\">تغییرات</a> را برای مشاهده جزییات "
@@ -1570,8 +1590,8 @@ msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
1570
  #~ msgid ""
1571
  #~ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1572
  #~ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1573
- #~ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </"
1574
- #~ "a><img class=\"stcr-loading-animation\" src=\""
1575
  #~ msgstr ""
1576
  #~ "لطفأ <a href=\"https://wordpress.org/plugins/subscribe-to-comments-"
1577
  #~ "reloaded/changelog/\" target=\"_blank\">تغییرات</a> را برای مشاهده کامل "
@@ -1589,8 +1609,8 @@ msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
1589
  #~ msgstr ""
1590
  #~ "<strong><a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
1591
  #~ "\">Comment Mail</strong></a> یک افزونه رایگان جدید بر مبنای "
1592
- #~ "<strong>Subscribe to Comments Reloaded</strong> است و شامل تمام قابلیت "
1593
- #~ "های هسته ی StCR می باشد."
1594
 
1595
  #~ msgid ""
1596
  #~ "A powerful StCR importer lets you import your StCR settings and "
@@ -1601,20 +1621,20 @@ msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
1601
 
1602
  #~ msgid ""
1603
  #~ "Need more powerful features to manage your subscriptions but can't wait "
1604
- #~ "for StCR? <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target="
1605
- #~ "\"_blank\">Take a look at Comment Mail!</a>"
1606
  #~ msgstr ""
1607
- #~ "به قابلیت های قدرتمند بیشتری نیاز دارید اما نمی توانید منتظر StCR "
1608
- #~ "بمانید؟ <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
1609
- #~ "\">نگاهی به Comment Mail بیاندازید !</a>"
1610
 
1611
  #~ msgid ""
1612
  #~ "<em>Note: Subscribe to Comments Reloaded remains in active development.</"
1613
  #~ "em><a class=\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-"
1614
  #~ "animation\" src=\""
1615
  #~ msgstr ""
1616
- #~ "<em>توجه : Subscribe to Comments Reloaded در توسعه فعال باقی خواهد ماند. "
1617
- #~ "</em><a class=\"dismiss\" href=\"#\">گرفتم </a><img class=\"stcr-loading-"
1618
  #~ "animation\" src=\""
1619
 
1620
  #~ msgid "StCR Subscription Box Position"
@@ -1695,5 +1715,5 @@ msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
1695
  #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1696
  #~ "its style."
1697
  #~ msgstr ""
1698
- #~ "کلاس CSS سفارشی برای افزودن به کادر تیک زدنی در صورتی که بخواهید جلوه ی "
1699
- #~ "آن را تغییر دهید."
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:27-0600\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: fa\n"
10
  "MIME-Version: 1.0\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.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
20
+ #: utils/stcr_manage.php:383
21
+ msgid "Manage subscriptions"
22
+ msgstr "مدیریت اشتراک ها"
23
+
24
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
25
+ msgid "Comment Form"
26
+ msgstr "فرم دیدگاه‌ها"
27
+
28
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
29
+ msgid "Management Page"
30
+ msgstr "صفحه‌ی مدیریت"
31
+
32
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
33
+ msgid "Notifications"
34
+ msgstr "آگاه سازی ها"
35
+
36
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
37
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
38
+ msgid "Options"
39
  msgstr "تنظیمات"
40
 
41
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
42
+ msgid "You can help"
43
+ msgstr "شما هم می توانید کمک کنید"
44
 
45
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
46
+ msgid "Support"
47
+ msgstr " پشتیبانی"
48
 
49
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
50
+ msgid "Donate"
51
+ msgstr "حمایت مالی / فنی"
52
+
53
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
54
+ msgid "Add New Subscription"
55
+ msgstr "افزودن اشتراک جدید"
56
+
57
+ #: options/panel1-add-subscription.php:13
58
+ #: options/panel1-edit-subscription.php:13
59
+ msgid "Post:"
60
+ msgstr "نوشته:"
61
 
62
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
63
+ #: options/panel1.php:133 templates/key_expired.php:84
64
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
65
+ #: templates/user.php:57
66
  msgid "Email"
67
  msgstr "ایمیل"
68
 
69
+ #: options/panel1-add-subscription.php:20
70
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
71
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
72
+ msgid "Status"
73
+ msgstr "وضعیت"
74
 
75
+ #: options/panel1-add-subscription.php:22
76
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
77
+ #: options/panel1.php:79 options/panel1.php:172
78
+ msgid "Active"
79
+ msgstr "فعال"
80
 
81
+ #: options/panel1-add-subscription.php:23
82
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
83
+ #: options/panel1.php:80
84
+ msgid "Replies only"
85
+ msgstr "فقط پاسخ ها"
86
 
87
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
88
+ msgid "Ask user to confirm"
89
+ msgstr "پرسش از کاربر برای تایید"
90
 
91
+ #: options/panel1-add-subscription.php:26
92
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
93
+ msgid "Update"
94
+ msgstr "به روزرسانی"
95
+
96
+ #: options/panel1-business-logic.php:23
97
+ msgid "Subscription added."
98
+ msgstr "اشتراک افزوده شد. "
99
 
100
+ #: options/panel1-business-logic.php:39
101
+ msgid "Subscriptions updated."
102
+ msgstr "اشتراک ها به روزرسانی شد."
103
+
104
+ #: options/panel1-business-logic.php:51
105
+ msgid "Subscription deleted."
106
+ msgstr "اشتراک حذف شد. "
107
+
108
+ #: options/panel1-business-logic.php:70 templates/author.php:23
109
+ #: templates/user.php:23
110
  msgid "Subscriptions deleted:"
111
  msgstr "این اشتراک ها حذف شدند: "
112
 
113
+ #: options/panel1-business-logic.php:74 templates/author.php:27
114
+ #: templates/user.php:27
115
  msgid "Subscriptions suspended:"
116
  msgstr "این اشتراک ها معلق گشتند: "
117
 
118
+ #: options/panel1-business-logic.php:78 templates/author.php:31
119
+ #: templates/user.php:31
120
  msgid "Subscriptions activated:"
121
  msgstr "این اشتراک ها فعال شده اند: "
122
 
123
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
124
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
125
+ #: templates/user.php:39
126
  msgid "Subscriptions updated:"
127
  msgstr "این اشتراک ها به روزرسانی شدند: "
128
 
129
+ #: options/panel1-business-logic.php:110
130
+ msgid "&laquo; Previous"
131
+ msgstr "&laquo; قبلی"
132
+
133
+ #: options/panel1-business-logic.php:114
134
+ msgid "Next &raquo;"
135
+ msgstr "بعدی &raquo;"
136
+
137
+ #: options/panel1-edit-subscription.php:8
138
+ msgid "Update Subscription"
139
+ msgstr "به روزرسانی اشتراک"
140
+
141
  #: options/panel1-edit-subscription.php:11
142
+ #: options/panel1-edit-subscription.php:21
143
+ #: options/panel1-edit-subscription.php:22
144
+ #: options/panel1-edit-subscription.php:23
145
+ msgid "optional"
146
+ msgstr "دلبخواهی"
147
+
148
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
149
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
150
+ #: templates/author.php:52 templates/user.php:52
151
  msgid ""
152
  "Please remember: this operation cannot be undone. Are you sure you want to "
153
  "proceed?"
154
  msgstr ""
155
+ "به خاطر داشته باشید این عملیات غیرقابل برگشت است. آیا مطمئنید می خواهید انجام "
156
+ "شود؟"
157
 
158
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
159
+ msgid "From"
160
+ msgstr "از"
 
 
 
 
161
 
162
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
163
+ msgid "To"
164
+ msgstr "تا"
165
 
166
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
167
+ msgid "Keep unchanged"
168
+ msgstr "بدون تغییر رها کن"
169
 
170
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
171
+ msgid "Suspended"
172
+ msgstr "معلق"
173
 
174
+ #: options/panel1.php:20
175
+ msgid "Mass Update Subscriptions"
176
+ msgstr "به روزرسانی اشتراک ها به صورت انبوه"
 
177
 
178
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
179
+ msgid "email address"
180
+ msgstr "نشانی رایان‌نامه فرستنده"
181
 
182
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
183
+ msgid "optional - new email address"
184
+ msgstr "نشانی رایان‌نامه فرستنده"
185
 
186
+ #: options/panel1.php:49
187
+ msgid "More info"
188
+ msgstr ""
189
 
190
+ #: options/panel1.php:55
191
+ msgid ""
192
+ "This option will allow you to change an email address for another one or to "
193
+ "update the same status for all the subscription on a specific email address."
194
+ msgstr ""
195
 
196
+ #: options/panel1.php:68
197
+ msgid "Post ID"
198
+ msgstr "شناسه‌ی نوشته"
199
 
200
+ #: options/panel1.php:83
201
+ msgid "Add"
202
+ msgstr "افزودن"
203
 
204
+ #: options/panel1.php:98
205
+ msgid "Search subscriptions"
206
+ msgstr "جستجوی اشتراک ها"
 
 
 
 
207
 
208
+ #: options/panel1.php:102
209
+ #, php-format
210
  msgid ""
211
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
212
+ "where the"
 
213
  msgstr ""
214
+ "می توانید یا <a href=\"%s\">تمام اشتراک ها را ببینید</a> یا فقط مواردی را "
215
+ "پیدا کنید که "
 
216
 
217
+ #: options/panel1.php:106
218
+ msgid "email"
219
+ msgstr "ایمیل"
 
 
 
 
220
 
221
+ #: options/panel1.php:107
222
+ msgid "post ID"
223
+ msgstr "شناسه ی نوشته"
 
 
 
 
 
 
224
 
225
+ #: options/panel1.php:108
226
+ msgid "status"
227
+ msgstr "وضعیت"
 
 
 
 
 
228
 
229
+ #: options/panel1.php:111
230
+ msgid "equals"
231
+ msgstr "مساوی است با"
 
 
 
 
 
 
232
 
233
+ #: options/panel1.php:112
234
+ msgid "contains"
235
+ msgstr "محتوی"
 
 
 
 
236
 
237
+ #: options/panel1.php:113
238
+ msgid "does not contain"
239
+ msgstr "غیرمحتوی"
 
 
 
 
 
 
 
240
 
241
+ #: options/panel1.php:114
242
+ msgid "starts with"
243
+ msgstr "شروع می شود با"
 
 
 
 
244
 
245
+ #: options/panel1.php:115
246
+ msgid "ends with"
247
+ msgstr "پایان می یابد با"
 
 
 
 
 
 
 
 
248
 
249
+ #: options/panel1.php:118
250
+ msgid "results per page:"
251
+ msgstr "نتایج در هر صفحه"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
 
253
+ #: options/panel1.php:120
254
+ msgid "Search"
255
+ msgstr "جستجو"
 
 
 
 
 
256
 
257
+ #: options/panel1.php:128
258
+ msgid "Reverse the order by Post ID"
259
+ msgstr "ترتیب را بر اساس شناسه ی نوشته ها برعکس کن"
 
 
 
 
 
 
260
 
261
+ #: options/panel1.php:129 options/panel1.php:130
262
+ msgid "Reverse the order by Date/Time"
263
+ msgstr "ترتیب را بر اساس تاریخ و ساعت برعکس کن"
 
 
 
 
 
264
 
265
+ #: options/panel1.php:132
266
+ msgid "Post (ID)"
267
+ msgstr "نوشته (شناسه)"
 
 
 
 
268
 
269
+ #: options/panel1.php:135
270
+ msgid "Search query:"
271
+ msgstr "عبارت مورد جستجو: "
 
 
 
 
 
272
 
273
+ #: options/panel1.php:135
274
+ msgid "Rows:"
275
+ msgstr "ردیف ها:"
276
 
277
+ #: options/panel1.php:135
278
+ msgid "of"
279
+ msgstr "از"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
 
281
+ #: options/panel1.php:142 options/panel1.php:158
282
+ msgid "Date and Time"
283
+ msgstr "تاریخ و ساعت"
284
 
285
+ #: options/panel1.php:168
286
+ msgid "Replies"
287
+ msgstr "پاسخ ها"
 
 
 
 
 
 
 
 
 
 
 
288
 
289
+ #: options/panel1.php:169
290
+ msgid "All Comments"
291
+ msgstr "تمام دیدگاه ها"
292
 
293
+ #: options/panel1.php:170
294
+ msgid "Unconfirmed"
 
 
295
  msgstr ""
296
 
297
+ #: options/panel1.php:171
298
+ msgid "Inactive"
299
+ msgstr "فعال"
 
 
 
 
 
 
300
 
301
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
302
+ #: templates/user.php:70
303
+ msgid "Delete"
304
+ msgstr "پاک کردن"
305
 
306
+ #: options/panel1.php:201 options/panel1.php:211
307
+ msgid "Edit"
308
+ msgstr "ویرایش"
309
 
310
+ #: options/panel1.php:203 options/panel1.php:209
311
+ msgid "Subscription"
312
+ msgstr "اشتراک‌"
313
 
314
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
315
+ msgid "Action:"
316
+ msgstr "اقدام"
 
317
 
318
+ #: options/panel1.php:226
319
+ msgid "Delete forever"
320
+ msgstr "پاک کردن برای همیشه"
321
 
322
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
323
+ msgid "Suspend"
324
+ msgstr "تعلیق"
325
 
326
+ #: options/panel1.php:228
327
+ msgid "Activate and set to Y"
328
+ msgstr "فعال کن و روی حالت Y بگذار"
329
 
330
+ #: options/panel1.php:229
331
+ msgid "Activate and set to R"
332
+ msgstr "فعال کن و روی حالت R بگذار"
333
 
334
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
335
+ msgid "Activate"
336
+ msgstr "فعال کن"
 
 
 
 
337
 
338
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
339
+ msgid "Update subscriptions"
340
+ msgstr "به روزرسانی اشتراک ها"
341
 
342
+ #: options/panel1.php:237
343
+ msgid "Sorry, no subscriptions match your search criteria."
344
+ msgstr "متاسفانه هیچ اشتراکی با معیار شما انطباق نداشت."
 
 
 
 
345
 
346
+ #: options/panel10.php:22 options/panel10.php:23
347
+ msgid "System Information"
 
348
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
 
350
  #: options/panel2.php:12 options/panel2.php:63
351
  msgid "Enable default checkbox"
387
  msgid "Author label"
388
  msgstr "برچسب مخصوص نویسنده ی نوشته "
389
 
390
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
391
+ #: options/panel5.php:18 options/panel5.php:60
392
  msgid "Your settings have been successfully updated."
393
  msgstr "تنظیمات شما با موفقیت به روز شد."
394
 
395
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
396
+ #: options/panel5.php:20 options/panel5.php:62
397
  msgid "There was an error updating the following fields:"
398
  msgstr "یک خطا در به روزرسانی فیلدهای زیر رخ داد:"
399
 
404
  msgid "Yes"
405
  msgstr "بله"
406
 
407
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
408
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
409
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
410
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
411
+ #: utils/stcr_manage.php:784
412
+ msgid "No"
413
+ msgstr "نه"
414
+
415
  #: options/panel2.php:68
416
  msgid ""
417
  "Disable this option if you want to move the subscription checkbox to a "
419
  msgstr ""
420
  "اگر می خواهید کادر تیک زدنی را به قسمت دیگری از صفحه ی خود انتقال دهید این "
421
  "گزینه را غیرفعال نمایید. برای انتقال کادر تیک زدنی به بالای دکمه ی ارسال می "
422
+ "توانید کد زیر را به خط 2355 از فایل Wordpress> WP-includes> comments_template."
423
+ "php اضافه کنید. شماره ی خط شاید عوض شود لذا دنبال تابع با اسم comment_form "
424
+ "بگردید.\n"
425
  "if (function_exists('subscribe_reloaded_show')) subscribe_reloaded_show();"
426
 
427
  #: options/panel2.php:78
441
  msgid "Replies to this comment"
442
  msgstr "پاسخ های به این دیدگاه"
443
 
444
+ #: options/panel2.php:94
445
+ msgid ""
446
+ "Select the default option for the Checkbox. Be careful! Some users might like "
447
+ "to be subscribed to all the post."
448
+ msgstr ""
449
+ "انتخاب پیشفرض برای چک باکس را تعیین کنید. دقت داشته باشید که بازدیدکنندگان "
450
+ "شاید مایل باشند مشترک تمام دیدگاه ها شوند."
451
+
452
+ #: options/panel2.php:107
453
+ msgid ""
454
+ "Allow users to choose from different subscription types (all, replies only)."
455
+ msgstr ""
456
+ "به کاربران امکان می دهد گزینه های مختلف اشتراک مثلاً دریافت همه ی دیدگاه ها یا "
457
+ "فقط دریافت پاسخ به دیدگاه های خود را انتخاب نمایند."
458
+
459
+ #: options/panel2.php:115
460
+ msgid "Advanced default"
461
+ msgstr "پیشفرض پیشرفته"
462
+
463
+ #: options/panel2.php:119
464
+ msgid "None"
465
+ msgstr "هیچ کدام"
466
+
467
+ #: options/panel2.php:124
468
+ msgid ""
469
+ "The default subscription type that should be selected when Advanced "
470
+ "subscriptions are enable."
471
+ msgstr ""
472
+ "نوع اشتراک پیشفرض در حالتی که اشتراک پیشرفته فعال شده است، باید انتخاب شود."
473
+
474
+ #: options/panel2.php:135
475
+ msgid "Custom inline CSS to add to the checkbox."
476
+ msgstr "جلوه ی CSS سفارشی که فقط برای خط مربوط به کادر تیک زدنی استفاده می شود."
477
+
478
+ #: options/panel2.php:152
479
+ msgid ""
480
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
481
+ "[checkbox_field], [checkbox_label]"
482
+ msgstr ""
483
+ "کد HTML سفارشی برای استفاده هنگام نمایش کادر تیک زدنی! تگ های مجاز: "
484
+ "[checkbox_field], [checkbox_label]"
485
+
486
+ #: options/panel2.php:158
487
+ msgid "Messages for your visitors"
488
+ msgstr "پیغام برای بازدیدکنندگان شما"
489
+
490
+ #: options/panel2.php:162
491
+ msgid "Default label"
492
+ msgstr "برچسب پیشفرض"
493
+
494
+ #: options/panel2.php:175
495
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
496
+ msgstr ""
497
+ "برچسبی که به کادر تیک زدنی اختصاص داده می شود. تگ های مجاز: [subscribe_link]"
498
+
499
+ #: options/panel2.php:192
500
+ msgid ""
501
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
502
+ "[manager_link]"
503
+ msgstr ""
504
+ "برچسبی که به افراد پیشاپیش مشترک شده در یک نوشته نشان داده می شود. تگ های "
505
+ "مجاز: [manager_link]"
506
+
507
+ #: options/panel2.php:197
508
+ msgid "Pending label"
509
+ msgstr "برچسب حالت منتظر در صف"
510
+
511
+ #: options/panel2.php:209
512
+ msgid ""
513
+ "Label shown to those who are already subscribed, but haven't clicked on the "
514
+ "confirmation link yet. Allowed tag: [manager_link]"
515
+ msgstr ""
516
+ "این برچسب به افرادی نشان داده می شود که درخواست مشترک شدن کرده ولی هنوز لینک "
517
+ "تایید را در ایمیل خود کلیک ننموده اند. تگ های مجاز: [manager_link]"
518
+
519
+ #: options/panel2.php:225
520
+ msgid "Label shown to authors (and administrators). Allowed tag: [manager_link]"
521
+ msgstr ""
522
+ "این برچسب به نویسندگان و مدیران نشان داده می شود. تگ های مجاز: [manager_link]"
523
+
524
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
525
+ #: options/panel5.php:195
526
+ msgid "Save Changes"
527
+ msgstr "ذخیره ی تغییرات"
528
+
529
+ #: options/panel3.php:13 options/panel3.php:87
530
+ msgid "Virtual Management Page"
531
+ msgstr "صفحه ی مدیریت مجازی"
532
+
533
+ #: options/panel3.php:18 options/panel3.php:96
534
+ msgid "Page title"
535
+ msgstr "عنوان صفحه"
536
+
537
+ #: options/panel3.php:23 options/panel3.php:105
538
+ msgid "Management URL"
539
+ msgstr "پیوند به صفحه مدیریت"
540
+
541
+ #: options/panel3.php:28 options/panel3.php:117
542
+ msgid "Custom HEAD meta"
543
+ msgstr "تگ های متا به صورت سفارشی برای قسمت سربرگ"
544
+
545
+ #: options/panel3.php:34 options/panel3.php:131
546
+ msgid "Request link"
547
+ msgstr "پیوند درخواست"
548
+
549
+ #: options/panel3.php:39 options/panel3.php:149
550
+ msgid "Request submitted"
551
+ msgstr "درخواست ارسال شد"
552
+
553
+ #: options/panel3.php:44 options/panel3.php:167
554
+ msgid "Subscribe without commenting"
555
+ msgstr "اشتراک بدون دیدگاه نویسی"
556
+
557
+ #: options/panel3.php:49 options/panel3.php:185
558
+ msgid "Subscription processed"
559
+ msgstr "عملیات اشتراک انجام شد"
560
+
561
+ #: options/panel3.php:54 options/panel3.php:203
562
+ msgid "Subscription processed (DCI)"
563
+ msgstr "اشتراک پردازش شده (DCI)"
564
+
565
+ #: options/panel3.php:59 options/panel3.php:220
566
+ msgid "Authors"
567
+ msgstr "نویسندگان"
568
+
569
+ #: options/panel3.php:64 options/panel3.php:236
570
+ msgid "Users"
571
+ msgstr "کاربران"
572
+
573
+ #: options/panel3.php:90
574
+ msgid "Enabled"
575
+ msgstr "فعال"
576
+
577
+ #: options/panel3.php:91
578
+ msgid "Disabled"
579
+ msgstr "غیرفعال"
580
 
581
+ #: options/panel3.php:92
582
  msgid ""
583
+ "Disable the virtual management page if you need to create a <a href=\"https://"
584
+ "github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-real-"
585
+ "management-page\">real page</a> to make your theme happy."
586
  msgstr ""
587
+ "چنانچه می خواهید یک <a href=\"http://behstant.com/subscribe-reloaded/"
588
+ "realMgnPage.php\"> صفحه ی واقعی </a> به وجود آورید و پوسته ی خود را خوشحال "
589
+ "کنید صفحه ی مجازی مدیریت را غیر فعال نمایید."
 
 
 
590
 
591
+ #: options/panel3.php:101
592
+ msgid "Title of the page your visitors will use to manage their subscriptions."
593
+ msgstr ""
594
+ "عنوان صفحه ای که بازدیدکنندگان شما برای مدیریت اشتراک های خود استفاده می "
595
+ "نمایند."
596
 
597
+ #: options/panel3.php:109
598
  msgid ""
599
+ "The permalink for your management page (something like <code>/manage-"
600
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
601
+ "b> actually exist in the system, but its link must follow your permalink "
602
+ "structure."
603
  msgstr ""
604
+ "پیوند یکتا به صفحه ی مدیریت شما، (چیزی شبیه <code>/manage-subscriptions</"
605
+ "code> یا <code>/?page_id=345</code>). این صفحه واقعاً در سیستم شما وجود "
606
+ "<b>ندارد</b> ولی باید از ساختار پیوندهای یکتای سایت تبعیت کند."
607
 
608
+ #: options/panel3.php:111
609
+ msgid ""
610
+ "Warning: it looks like the value you are using may be incompatible with your "
611
+ "permalink structure"
612
  msgstr ""
613
+ "هشدار: شاید مقداری که قرار داده اید با ساختار پیوندهای یکتای سایت همخوانی "
614
+ "نداشته باشد."
615
 
616
+ #: options/panel3.php:121
617
  msgid ""
618
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
619
+ "Use <strong>single</strong> quotes for values."
620
  msgstr ""
621
+ "کدهای HTML سفارشی را که می خواهید به بخش head در صفحه اضافه شود تعیین کنید. "
622
+ "برای مقادیر پارامترها فقط از کوتیشن <strong>تکی </strong> استفاده نمایید."
623
 
624
+ #: options/panel3.php:127 options/panel4.php:135
625
+ msgid "Messages"
626
+ msgstr "پیام ها"
627
 
628
+ #: options/panel3.php:144
629
+ msgid "Text shown to those who request to manage their subscriptions."
630
+ msgstr "متن نمایش داده شده به کسانی که درخواست مدیریت اشتراک های خود را دارند"
631
 
632
+ #: options/panel3.php:162
633
+ msgid ""
634
+ "Thank you note shown after the request here above has been processed. Allowed "
635
+ "tags: [post_title], [post_permalink]"
636
  msgstr ""
637
+ "پیام تشکر پس از تایید شدن درخواست مشروح در بالا! تگ های مجاز: [post_title], "
638
+ "[post_permalink]"
639
 
640
+ #: options/panel3.php:180
641
  msgid ""
642
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
643
+ "[post_title], [post_permalink]"
644
  msgstr ""
645
+ "این متن به کسانی که می خواهند بدون دیدگاه نویسی مشترک گردند نشان داده می شود. "
646
+ "تگ های مجاز: [post_title], [post_permalink]"
 
 
 
 
647
 
648
+ #: options/panel3.php:198
649
  msgid ""
650
+ "Thank you note shown after the subscription request has been processed "
651
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
652
  msgstr ""
653
+ "پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت غیرفعال بودن نیاز به "
654
+ "تایید ایمیلی). برچسب های مجاز: [post_title], [post_permalink]"
655
 
656
+ #: options/panel3.php:216
657
  msgid ""
658
+ "Thank you note shown after the subscription request has been processed "
659
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
660
  msgstr ""
661
+ "پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت فعال بودن نیاز به "
662
+ "تایید ایمیلی). تگ های مجاز: [post_title], [post_permalink]"
 
 
 
 
663
 
664
+ #: options/panel3.php:232
665
+ msgid "Introductory text for the authors' management page."
666
+ msgstr "متن معرفی برای صفحه ی مدیریت نویسندگان."
667
 
668
+ #: options/panel3.php:248
669
+ msgid "Introductory text for the users' management page."
670
+ msgstr "متن معرفی برای صفحه ی مدیریت کاربران."
 
 
 
 
 
 
671
 
672
  #: options/panel4.php:15 options/panel4.php:94
673
  msgid "Sender name"
727
  "will be the same as the Sender email address."
728
  msgstr ""
729
 
 
 
 
 
730
  #: options/panel4.php:147
731
  msgid "Subject of the notification email. Allowed tag: [post_title]"
732
  msgstr ""
744
 
745
  #: options/panel4.php:171
746
  msgid ""
747
+ "<p><strong>Note: To get a default template clear all the content and save the "
748
+ "options.</strong></p>"
749
  msgstr ""
750
  "<p><strong>توجه : برای داشتن یک قالب تمیز، محتوا را پاک کنید و تنظیمات را "
751
  "ذخیره نمایید.</strong></p>"
784
  "[manager_link]."
785
  msgstr ""
786
 
787
+ #: options/panel4.php:263
788
+ msgid "One Click Unsubscribe"
789
+ msgstr "لغو اشتراک با یک کلیک"
790
+
791
+ #: options/panel4.php:277
792
+ msgid ""
793
+ "Content of the One Click confirmation. Allowed tags: [post_title], [blog_name]"
794
+ msgstr "محتوای تأیید با یک کلیک. تگ های مجاز: [post_title]"
795
+
796
+ #: options/panel5.php:28
797
+ msgid "Safetly Uninstall"
798
+ msgstr ""
799
+
800
+ #: options/panel5.php:31 options/panel5.php:84
801
+ msgid "Autopurge requests"
802
+ msgstr ""
803
+ "زوال خودکار درخواست های اشتراک که طی مدت معین مورد تایید کاربر قرار نگرفته"
804
+
805
+ #: options/panel5.php:34 options/panel5.php:93
806
+ msgid "Enable double check"
807
+ msgstr "حالت بررسی مضاعف را فعال کن"
808
+
809
+ #: options/panel5.php:37 options/panel5.php:101
810
+ msgid "Subscribe authors"
811
+ msgstr "اشتراک مؤلفان"
812
+
813
+ #: options/panel5.php:40 options/panel5.php:111
814
+ msgid "Enable HTML emails"
815
+ msgstr "فعال کردن ایمیل های HTML"
816
+
817
+ #: options/panel5.php:43
818
+ msgid "HTMLify Links in HTML emails"
819
+ msgstr "پیوند های HTMLify در ایمیل های HTML"
820
+
821
+ #: options/panel5.php:46
822
+ msgid "Send trackbacks"
823
+ msgstr "ارسال بازآگاهی"
824
+
825
+ #: options/panel5.php:49
826
+ msgid "Notify admin"
827
+ msgstr "سرپرست را مطلع کن"
828
+
829
+ #: options/panel5.php:52 options/panel5.php:149
830
+ msgid "Let admin subscribe"
831
+ msgstr "به سرپرست اجازه ی مشترک شدن بده"
832
+
833
+ #: options/panel5.php:55 options/panel5.php:158
834
+ msgid "BCC admin on Notifications"
835
+ msgstr "مدیر را در BCC یادآوری ها قرار بده"
836
+
837
+ #: options/panel5.php:76
838
+ msgid "Safely Uninstall"
839
+ msgstr ""
840
+
841
+ #: options/panel5.php:80
842
+ msgid ""
843
+ "This option will allow you to delete the plugin with WordPress without "
844
+ "loosing your subscribers. Any database table and plugin options are wipeout."
845
+ msgstr ""
846
+
847
+ #: options/panel5.php:87
848
+ msgid "days"
849
+ msgstr "روز"
850
+
851
+ #: options/panel5.php:88
852
+ msgid ""
853
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables this "
854
+ "feature."
855
+ msgstr ""
856
+ "اشتراک هایی که بیش از این تعداد روز منتظر تایید مانده و پاسخی نگرفته اند را "
857
+ "حذف کن. عدد 0 به معنای عدم استفاده از این قابلیت است."
858
+
859
+ #: options/panel5.php:97
860
+ msgid ""
861
+ "Send a notification email to confirm the subscription (to avoid addresses "
862
+ "misuse)."
863
+ msgstr ""
864
+ "ارسال یک ایمیل آگاه سازی جهت تأیید مشترک ( به منظور جلوگیری از استفاده از "
865
+ "آدرس ایمیل غیرمرتبط)"
866
+
867
+ #: options/panel5.php:106
868
+ msgid "Automatically subscribe authors to their own articles (not retroactive)."
869
+ msgstr ""
870
+ "به طور خودکار نویسندگان را مشترک یادداشت هایشان کن ( شامل یادداشت های موجود "
871
+ "از قبل نمی شود )"
872
+
873
+ #: options/panel5.php:115
874
+ msgid ""
875
+ "If enabled, will send email messages with content-type = text/html instead of "
876
+ "text/plain"
877
+ msgstr ""
878
+ "اگر فعال شود ما پیام ها را با content-type = text/html به جای text/plain "
879
+ "ایمیل می کنیم."
880
+
881
+ #: options/panel5.php:120
882
+ msgid "HTMLify links in emails"
883
+ msgstr "پیوند های HTMLify در ایمیل ها"
884
+
885
+ #: options/panel5.php:125
886
+ msgid ""
887
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
888
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
889
+ msgstr ""
890
+ "اگر فعال شود ما تمام پیوند ها را با <code>&lt;a href=\"\"&gt;&lt;/a&gt;</"
891
+ "code> احاطه می کنیم. ( فقط هنگام فعال بودن ایمیل HTML)"
892
+
893
+ #: options/panel5.php:130
894
+ msgid "Process trackbacks"
895
+ msgstr "بازآگاهی فرآیند"
896
+
897
+ #: options/panel5.php:134
898
+ msgid ""
899
+ "Notify users when a new trackback or pingback is added to the discussion."
900
+ msgstr ""
901
+ "کاربران را مطلع کن اگر یک بازآگاهی یا ارجاع مستقیم به دیدگاه ها اضافه شود."
902
+
903
+ #: options/panel5.php:139
904
+ msgid "Track all subscriptions"
905
+ msgstr "تمام اشتراک ها را رهگیری کن"
906
+
907
+ #: options/panel5.php:144
908
+ msgid "Notify the administrator when users subscribe without commenting."
909
+ msgstr "وقتی کاربران بدون دیدگاه گذاری مشترک می شوند سرپرست را مطلع کن."
910
+
911
+ #: options/panel5.php:153
912
+ msgid "Let the administrator subscribe to comments when logged in."
913
+ msgstr ""
914
+ "وقتی سرپرست وارد سایت می گردد به او اجازه ی مشترک شدن در دیدگاه ها را بده."
915
+
916
+ #: options/panel5.php:162
917
+ msgid "Send a copy of all Notifications to the administrator."
918
+ msgstr "یک کپی از تمام آگاه سازی ها برای مدیر سایت بفرست."
919
+
920
+ #: options/panel5.php:167
921
+ msgid "StCR Unique Key"
922
+ msgstr "شناسه منحصر بفرد StCR"
923
+
924
+ #: options/panel5.php:172
925
+ msgid "This Unique Key is not set, please click the following button to "
926
+ msgstr ""
927
+ "این شناسه منحصر بفرد تنظیم نشده است، برای این منظور لطفاً روی این دکمه کلیک "
928
+ "کنید"
929
+
930
+ #: options/panel5.php:176 options/panel5.php:187
931
+ msgid "Generate"
932
+ msgstr "ایجاد"
933
 
934
+ #: options/panel5.php:184
935
  msgid ""
936
+ "This Unique Key will be use to send the notification to your subscribers with "
937
+ "more security."
938
+ msgstr ""
939
+ "این شناسه منحصر بفرد جهت ارسال آگاه سازی ها به مشترکین با امنیت بیشتر استفاده "
940
+ "می شود."
941
 
942
  #: options/panel7.php:8 options/panel8.php:8
943
  msgid "Support the developers"
954
  "قابلیت هایی که توسط این افزونه ارائه شده اند چقدر برای بازدید کنندگان شما "
955
  "ارزش دارد؟ لطفاً چنانچه این افزونه سایت شما را بهتر کرده است از نویسنده آن "
956
  "حمایت کنید، به خصوص با پرداخت وجه در قبال آن. هر وجه کمکی که دریافت می شود "
957
+ "دوباره جهت توسعه <strong>Subscribe to Comments Reloaded</strong> سرمایه گذاری "
958
+ "می شود ، و بخش کوچکی از آن نیز صرف خرید غذا برای خانواده ام می شود."
959
 
960
  #: options/panel7.php:20
961
  msgid "Don't want to donate? You can still help"
965
  msgid ""
966
  "If you don't want to donate money, please consider blogging about my plugin "
967
  "with a link to the plugin's page. Please let your readers know what makes "
968
+ "your blog better. You can also contribute donating your time: do not hesitate "
969
+ "to send me bug reports, your localization files, ideas on how to improve "
970
+ "<strong>Subscribe to Comments Reloaded</strong> and so on. Whatever you do, "
971
+ "thanks for using my plugin!"
972
  msgstr ""
973
+ "اگر شما قصد پرداخت وجه در قبال این افزونه را ندارید لطفأ با قرار دادن لینک آن "
974
+ "در سایت یا وبلاگ خود و معرفی آن حمایتش کنید؛ شما همچنین به خوانندگان خود "
975
  "خواهید گفت چگونه بلاگتان بهتر شده است. شما همچنین می توانید برای این افزونه "
976
  "وقت بگذارید و با ارسال گزارش ایراد ها، فایل های محلی شده و ایده های بهبود "
977
  "<strong>Subscribe to Comments Reloaded</strong> حمایتش کنید. فارغ از همه این "
985
  msgid ""
986
  "Before a new Update we release a Beta version so that our current users can "
987
  "give us feedback if they find a bug, If you want to join the tester list you "
988
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</a>"
 
989
  msgstr ""
990
  "قبل از ارسال به روز رسانی جدید افزونه ما یک نسخه بتا توزیع می کنیم بنابراین "
991
+ "کاربران فعلی ما می توانند به ما بازخورد بدهند اگر که ایرادی پیدا کنند، اگر می "
992
+ "خواهید به جمع تست کنندگان بپیوندید شما می توانید ایمیل خود را <a href='http://"
993
+ "eepurl.com/biCk1b' target='_blank'>از اینجا</a> اضافه کنید."
994
 
995
  #: options/panel7.php:26
996
  msgid "Vote and show your appreciation"
1006
  "که برای شما خوب کار می کند. در صفحه افزونه نیز لطفأ به آن <a href=\"http://"
1007
  "wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">رأی بدهید</a>."
1008
 
1009
+ #: options/panel8.php:18
1010
+ msgid "Did you find a Bug on the plugin?"
1011
+ msgstr "آیا ایرادی بر روی افزونه یافته اید؟"
 
 
 
 
1012
 
1013
+ #: options/panel8.php:19
1014
+ msgid ""
1015
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1016
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1017
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1018
+ "WordPress Support page."
1019
+ msgstr ""
1020
+ "لطفاً هر گونه ایرادی را در <a href=\"https://github.com/stcr/subscribe-to-"
1021
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1022
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> مطرح کنید تا صفحه پشتیبانی "
1023
+ "وردپرس."
1024
 
1025
+ #: options/panel9.php:11
1026
+ msgid "Support Subscribe to Comments Reloaded"
1027
+ msgstr "Subscribe to Comments Reloaded را پشتیبانی کنید"
1028
 
1029
+ #: options/panel9.php:12
1030
+ msgid ""
1031
+ "Every contribution that you make is high valuable, so if you consider this "
1032
+ "plugin a helpful tool we will use your donation to invest on support and "
1033
+ "developing time."
1034
+ msgstr ""
1035
+ "هر گونه مشارکت شما بسیار ارزشمند است، پس چنانچه این افزونه را ارزشمند می "
1036
+ "دانید ما از حمایت های مالی شما جهت سرمایه گذاری در پشتیبانی و توسعه استفاده "
1037
+ "خواهیم کرد."
1038
 
1039
+ #: templates/author.php:57
1040
+ msgid "Title"
1041
+ msgstr "عنوان"
 
 
1042
 
1043
+ #: templates/author.php:58 templates/user.php:58
1044
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1045
+ msgstr "راهنما: Y= همه ی دیدگاه ها، R=فقط پاسخ ها به دیدگاه خودم، C= غیرفعال "
1046
 
1047
+ #: templates/author.php:69 templates/user.php:67
1048
+ msgid "Select all"
1049
+ msgstr "انتخاب همه"
 
 
1050
 
1051
+ #: templates/author.php:70 templates/user.php:68
1052
+ msgid "Invert selection"
1053
+ msgstr "عدم انتخاب"
 
 
1054
 
1055
+ #: templates/author.php:74 templates/user.php:72
1056
+ msgid "All comments"
1057
+ msgstr "تمام دیدگاه ها"
1058
 
1059
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1060
+ msgid "Replies to my comments"
1061
+ msgstr "فقط دریافت پاسخ دیدگاه های خودم "
 
1062
 
1063
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1064
+ #: templates/user.php:79
1065
+ msgid "No subscriptions match your search criteria."
1066
+ msgstr "هیچ اشتراکی با معیار جستجوی شما انطباق ندارد."
1067
 
1068
+ #: templates/key_expired.php:8
1069
  msgid ""
1070
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1071
+ "enter your email below and a new link will be send."
1072
  msgstr ""
1073
 
1074
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1075
+ #: templates/subscribe.php:106
1076
+ msgid "Send"
1077
+ msgstr "ارسال"
1078
 
1079
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1080
+ msgid "New subscription to"
1081
+ msgstr "اشتراک جدید در"
1082
 
1083
+ #: templates/subscribe.php:44
1084
+ msgid "User:"
1085
+ msgstr "کاربر:"
1086
 
1087
+ #: templates/user.php:63
1088
+ msgid "F j, Y"
1089
+ msgstr "F j, Y"
1090
 
1091
+ #: templates/wrong-request.php:9
1092
+ msgid "You have request to manage another email address and this is forbidden."
1093
+ msgstr ""
1094
 
1095
+ #: utils/stcr_manage.php:246
 
1096
  msgid ""
1097
+ "Notify me of followup comments via e-mail. You can also <a "
1098
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1099
  msgstr ""
1100
+ "مرا با ایمیل از دیدگاه های آتی این نوشته مطلع کن. همچنین می توانید بدون ارسال "
1101
+ "دیدگاه <a href='[subscribe_link]'>مشترک شوید.</a>"
1102
 
1103
+ #: utils/stcr_manage.php:247
1104
+ msgid ""
1105
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1106
+ "subscriptions."
1107
+ msgstr ""
1108
+ "شما در این نوشته مشترک شده اید. <a href='[manager_link]'> تغییر اشتراک </a>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1109
 
1110
+ #: utils/stcr_manage.php:248
1111
+ msgid ""
1112
+ "Your subscription to this post needs to be confirmed. <a "
1113
+ "href='[manager_link]'>Manage your subscriptions</a>."
1114
+ msgstr ""
1115
+ "اشتراک شما در این پست منتظر تایید است. <a href='[manager_link]'> اشتراک خود "
1116
+ "را مدیریت کنید </a>"
1117
 
1118
+ #: utils/stcr_manage.php:249
1119
+ msgid ""
1120
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1121
+ msgstr ""
1122
+ "شما می توانید در این یادداشت <a href='[manager_link]'>اشتراک ها را مدیریت "
1123
+ "کنید</a> ."
1124
 
1125
+ #: utils/stcr_manage.php:255
1126
+ msgid ""
1127
+ "To manage your subscriptions, please enter your email address here below. We "
1128
+ "will send you a message containing the link to access your personal "
1129
+ "management page."
1130
+ msgstr ""
1131
+ "جهت مدیریت اشتراک هایتان لطفاً نشانی ایمیل خود را در زیر وارد کنید. سپس یک "
1132
+ "ایمیل برایتان می فرستیم که حاوی لینک دسترسی به صفحه ی شخصی مدیریت شما است."
1133
 
1134
+ #: utils/stcr_manage.php:256
1135
+ msgid ""
1136
+ "Thank you for using our subscription service. Your request has been "
1137
+ "completed, and you should receive an email with the management link in a few "
1138
+ "minutes."
1139
+ msgstr ""
1140
+ "ممنون که سرویس اشتراک ما را مورد استفاده قرار دادید. درخواست شما تکمیل شد و "
1141
+ "طی حداکثر چند دقیقه یک ایمیل حاوی پیوند صفحه ی مدیریت اشتراک ها دریافت می "
1142
+ "کنید."
1143
 
1144
+ #: utils/stcr_manage.php:257
1145
+ msgid ""
1146
+ "You can follow the discussion on <strong>[post_title]</strong> without having "
1147
+ "to leave a comment. Cool, huh? Just enter your email address in the form here "
1148
+ "below and you're all set."
1149
+ msgstr ""
1150
+ "می تونی بحث درباره <strong>[post_title]</strong> را بدون گذاشتن هیچ دیدگاهی "
1151
+ "دنبال کنی. خوشت اومد، هان؟! فقط آدرس ایمیلتو در کادر زیر بنویس و تمام! "
1152
 
1153
+ #: utils/stcr_manage.php:258
1154
+ msgid ""
1155
+ "Thank you for using our subscription service. Your request has been "
1156
+ "completed. You will receive a notification email every time a new comment to "
1157
+ "this article is approved and posted by the administrator."
1158
+ msgstr ""
1159
+ "ممنون که از سرویس اشتراک ما استفاده کردید. درخواست شما تکمیل شد. هر گاه "
1160
+ "دیدگاهی راجع به این یادداشت توسط سرپرست تایید یا منتشر شود با ایمیل از آن "
1161
+ "مطلع می گردید."
1162
 
1163
+ #: utils/stcr_manage.php:259
1164
+ msgid ""
1165
+ "Thank you for using our subscription service. In order to confirm your "
1166
+ "request, please check your email for the verification message and follow the "
1167
+ "instructions."
1168
+ msgstr ""
1169
+ "ممنون که از سرویس اشتراک ما استفاده کردید. برای تایید درخواست خود لطفاً صندوق "
1170
+ "اینباکس یا اسپم ایمیلتان را ببینید و دستورالعمل پیام تاییدیه را دنبال نمایید."
1171
 
1172
+ #: utils/stcr_manage.php:260
1173
+ msgid ""
1174
+ "In order to cancel or suspend one or more notifications, select the "
1175
+ "corresponding checkbox(es) and click on the button at the end of the list."
1176
+ msgstr ""
1177
+ "برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
1178
+ "کنید و دکمه ی پایین صفحه را کلیک نمایید."
1179
 
1180
+ #: utils/stcr_manage.php:261
1181
+ msgid ""
1182
+ "In order to cancel or suspend one or more notifications, select the "
1183
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1184
+ "You are currently subscribed to:"
1185
+ msgstr ""
1186
+ "برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
1187
+ "کنید و دکمه ی پایین صفحه را کلیک نمایید. شما هم اکنون در اینجاها مشترک هستید:"
1188
 
1189
+ #: utils/stcr_manage.php:265
1190
+ msgid "There is a new comment to [post_title]"
1191
+ msgstr "دیدگاه تازه در نوشته [post_title]"
1192
+
1193
+ #: utils/stcr_manage.php:266
1194
+ msgid ""
1195
+ "There is a new comment to [post_title].\n"
1196
+ "Comment Link: [comment_permalink]\n"
1197
+ "Author: [comment_author]\n"
1198
+ "Comment:\n"
1199
+ "[comment_content]\n"
1200
+ "Permalink: [post_permalink]\n"
1201
+ "Manage your subscriptions: [manager_link]"
1202
  msgstr ""
1203
+ "یک دیدگاه جدید در [post_title] وجود دارد. \n"
1204
+ "پیوند به دیدگاه : [comment_permalink] \n"
1205
+ "نویسنده : [comment_author] \n"
1206
+ "محتوای دیدگاه : \n"
1207
+ "[comment_content] \n"
1208
+ "پیوند به یادداشت : [post_permalink] \n"
1209
+ "اشتراک خود را مدیریت کنید : [manager_link]"
1210
 
1211
+ #: utils/stcr_manage.php:267
1212
+ msgid "Please confirm your subscription to [post_title]"
1213
+ msgstr "لطفاً اشتراک خود در این نوشته را تایید کنید: [post_title]"
1214
 
1215
+ #: utils/stcr_manage.php:268
1216
+ msgid ""
1217
+ "You have requested to be notified every time a new comment is added to:\n"
1218
+ "[post_permalink]\n"
1219
+ "\n"
1220
+ "Please confirm your request by clicking on this link:\n"
1221
+ "[confirm_link]"
1222
+ msgstr ""
1223
+ "شما درخواست کرده اید که هرگاه دیدگاه جدیدی در این موضوع اضافه شود به طور "
1224
+ "خودکار آگاه گردید:\n"
1225
+ "[post_permalink]\n"
1226
+ "\n"
1227
+ "لطفاً با کلیک روی لینک زیر، درخواست خود را تایید کنید:\n"
1228
+ "[confirm_link]"
1229
 
1230
+ #: utils/stcr_manage.php:269
1231
+ msgid "Manage your subscriptions on [blog_name]"
1232
+ msgstr "اشتراک های خود را در [blog_name] مدیریت کنید"
1233
 
1234
+ #: utils/stcr_manage.php:270
1235
+ msgid ""
1236
+ "You have requested to manage your subscriptions to the articles on "
1237
+ "[blog_name]. Please check the Subscriptions management link in your email"
1238
+ msgstr ""
1239
 
1240
+ #: utils/stcr_manage.php:271
1241
+ msgid ""
1242
+ "You have requested to manage your subscriptions to the articles on "
1243
+ "[blog_name]. Follow this link to access your personal page:\n"
1244
+ "[manager_link]"
1245
+ msgstr ""
1246
+ "شما درخواست مدیریت اشتراک های خود را در مقالات [blog_name] کرده اید. روی لینک "
1247
+ "زیر کلیک نمایید تا به صفحه ی شخصی خود بروید: \n"
1248
+ "[manager_link]"
1249
 
1250
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1251
+ msgid "StCR System"
1252
+ msgstr ""
1253
 
1254
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488 utils/stcr_manage.php:515
1255
+ #: utils/stcr_manage.php:542 utils/stcr_manage.php:569 utils/stcr_manage.php:596
1256
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650 utils/stcr_manage.php:677
1257
+ #: utils/stcr_manage.php:705
1258
+ msgid "You do not have sufficient permissions to access this page."
1259
+ msgstr ""
1260
 
1261
+ #: utils/stcr_manage.php:755
1262
+ msgid "Subscriptions"
1263
+ msgstr "اشتراک ‌ها"
1264
 
1265
+ #: utils/stcr_manage.php:811
1266
+ msgid ""
1267
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1268
+ msgstr ""
1269
+ "آیا برای استفاده از افزونه ی «اشتراک در دیدگاه‌ها نسخه ی جدید» نیاز به کمک "
1270
+ "دارید؟ سایت رسمی را ببینید."
1271
 
1272
+ #: utils/stcr_manage.php:811
1273
+ msgid "support forum"
1274
+ msgstr "تالار گفتگوی پشتیبانی"
1275
 
1276
+ #: utils/stcr_manage.php:812
1277
+ msgid "Feeling generous?"
1278
+ msgstr "احساس دست و دلبازی می کنید؟"
1279
 
1280
+ #: utils/stcr_manage.php:812
1281
+ msgid "Donate a few bucks!"
1282
+ msgstr "چند دلار اهدا نمایید!"
1283
 
1284
+ #: utils/stcr_upgrade.php:55
1285
+ msgid "Important Notice"
1286
+ msgstr "نکته مهم"
 
1287
 
1288
+ #: utils/stcr_upgrade.php:103
1289
+ msgid ""
1290
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1291
+ "database has been sanitized to prevent the raw html messages. <a class="
1292
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1293
+ "src=\""
1294
  msgstr ""
1295
 
1296
+ #: utils/stcr_upgrade.php:158
1297
+ msgid ""
1298
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1299
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1300
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1301
  msgstr ""
1302
+ "<strong>Subscribe to Comments Reloaded:</strong> داده های اشتراک در افزونه "
1303
+ "<strong>Subscribe to Comments</strong> شناسایی شد و به طور خودکار وارد "
1304
+ "<strong>Subscribe to Comments Reloaded</strong> شد."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1305
 
1306
+ #: utils/stcr_upgrade.php:158
1307
+ msgid ""
1308
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1309
+ "Comments to prevent confusion between the two plugins."
1310
+ msgstr ""
1311
+ "توصیه می شود که شما اکنون Subscribe to Comments را <strong>غیرفعال</strong> "
1312
+ "کنید تا از مشکلات تداخل دو افزونه در امان باشید."
1313
 
1314
+ #: utils/stcr_upgrade.php:159
1315
+ msgid ""
1316
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 that "
1317
+ "you want to import, you'll need to import that data manually, as only one "
1318
+ "import routine will ever run to prevent data loss."
1319
+ msgstr ""
1320
+ "اگر داده های شما برای افزونه Subscribe to Comments Reloaded < v2.0 می باشد و "
1321
+ "بخواهید داده ها را وارد کنید شما نیاز خواهید داشت به صورت دستی این کار را "
1322
+ "انجام دهید تا مانع از دست دادن داده ها شوید."
1323
 
1324
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1325
+ #: utils/stcr_upgrade.php:381
1326
+ msgid ""
1327
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1328
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1329
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1330
+ "\"stcr-loading-animation\" src=\""
1331
+ msgstr ""
1332
 
1333
+ #: utils/stcr_upgrade.php:231
1334
+ msgid ""
1335
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1336
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1337
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1338
+ msgstr ""
1339
+ "<strong>Subscribe to Comments Reloaded:</strong> داده های اشتراک در افزونه "
1340
+ "<strong>Comment Reply Notification</strong> شناسایی شد و به طور خودکار وارد "
1341
+ "<strong>Subscribe to Comments Reloaded</strong> شد."
1342
 
1343
+ #: utils/stcr_upgrade.php:231
1344
+ msgid ""
1345
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1346
+ "Notification to prevent confusion between the two plugins."
1347
  msgstr ""
1348
+ "توصیه می شود که شما اکنون Subscribe to Comments را <strong>غیرفعال</strong> "
1349
+ "کنید تا از مشکلات تداخل دو افزونه در امان باشید."
1350
 
1351
+ #: utils/stcr_upgrade.php:378
1352
  msgid ""
1353
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1354
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1355
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1356
+ "Reloaded</strong>."
1357
  msgstr ""
1358
+ "<strong>Subscribe to Comments Reloaded:</strong> داده های اشتراک در افزونه "
1359
+ "<strong>WP Comment Subscriptions</strong> شناسایی شد و به طور خودکار وارد "
1360
+ "<strong>Subscribe to Comments Reloaded</strong> شد."
1361
 
1362
+ #: utils/stcr_upgrade.php:378
1363
+ msgid ""
1364
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1365
+ "Subscriptions to prevent confusion between the two plugins."
1366
+ msgstr ""
1367
+ "توصیه می شود که شما اکنون WP Comment Subscriptions را <strong>غیرفعال</"
1368
+ "strong> کنید تا از مشکلات تداخل دو افزونه در امان باشید."
1369
 
1370
+ #: utils/stcr_upgrade.php:379
1371
  msgid ""
1372
+ "If you have subscription data from another plugin (such as Subscribe to "
1373
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1374
+ "you'll need to import that data manually, as only one import routine will "
1375
+ "ever run to prevent data loss."
1376
  msgstr ""
1377
+ "اگر داده های اشتراک شما برای افزونه دیگری Subscribe to Comments یا Subscribe "
1378
+ "to Comments Reloaded < v2.0 می باشد و بخواهید داده ها را وارد کنید شما نیاز "
1379
+ "خواهید داشت به صورت دستی این کار را انجام دهید تا مانع از دست دادن داده ها "
1380
+ "شوید."
1381
 
1382
+ #: utils/stcr_upgrade.php:380
1383
  msgid ""
1384
+ "<strong>Note:</strong> If you were previously using the "
1385
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1386
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1387
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1388
+ "respectively."
1389
  msgstr ""
1390
+ "<strong>نکته :</strong> اگر شما قبلأ از "
1391
+ "<code>wp_comment_subscriptions_show()</code> بعنوان تابع یا از <code>[wpcs-"
1392
+ "subscribe-url]</code> به عنوان shortcode استفاده می کردید شما نیاز دارید آن "
1393
+ "ها را به ترتیب با <code>subscribe_reloaded_show()</code> و <code>[subscribe-"
1394
+ "url]</code> عوض کنید."
1395
 
1396
+ #: utils/stcr_upgrade.php:394
1397
  msgid ""
1398
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
1399
+ msgstr "<strong>بابت نصب Subscribe to Comments Reloaded! متشکریم! </strong>."
 
 
1400
 
1401
+ #: utils/stcr_upgrade.php:395
1402
  msgid ""
1403
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1404
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1405
  msgstr ""
1406
+ "اگر به ایراد یا مشکلی برخوردید می توانید آن را <a href=\"https://github.com/"
1407
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">اینجا</a> مطرح "
1408
+ "کنید."
 
 
 
1409
 
1410
+ #: utils/stcr_upgrade.php:396
1411
  msgid ""
1412
+ "Please consider to make a donation to support the plugin, you can donate via "
1413
+ "<a href=\"\n"
1414
+ "https://www.paypal.com/cgi-bin/webscr?"
1415
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1416
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1417
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1418
  msgstr ""
 
 
 
 
 
 
1419
 
1420
+ #: utils/stcr_upgrade.php:398
1421
  msgid ""
1422
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1423
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1424
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1425
+ "a><img class=\"stcr-loading-animation\" src=\""
1426
  msgstr ""
 
 
 
 
 
 
 
 
 
1427
 
1428
+ #: utils/stcr_upgrade.php:409
1429
+ msgid ""
1430
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1431
+ "160106."
1432
  msgstr ""
1433
+ "<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
1434
+ "ارتقاء یافت."
 
 
 
 
 
 
 
1435
 
1436
+ #: utils/stcr_upgrade.php:410
1437
+ msgid ""
1438
+ "This version includes many changes and fixes to improve your experience with "
1439
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1440
+ "email templates, Subscription Checkbox position, and more!"
1441
  msgstr ""
1442
+ "این ویرایش شامل تغییرات و اصلاحات بیشماری از قبیل، لغو اشتراک با یک کلیک ، "
1443
+ "ویرایشگر متنی پیشرفته جهت ایجاد قالب های ایمیل HTML ، موقعیت چک باکس اشتراک، "
1444
+ "و موارد بیشتر است!"
 
 
 
1445
 
1446
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1447
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1448
  msgid ""
1449
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1450
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a complete "
1451
+ "list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1452
+ "\"stcr-loading-animation\" src=\""
1453
  msgstr ""
 
 
 
 
 
 
1454
 
1455
+ #: utils/stcr_upgrade.php:424
1456
  msgid ""
1457
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1458
+ "160115."
 
 
1459
  msgstr ""
1460
+ "<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
1461
+ "ارتقاء یافت."
 
 
 
 
 
 
 
 
 
 
 
 
 
1462
 
1463
+ #: utils/stcr_upgrade.php:425
1464
+ msgid ""
1465
+ "This version includes fixes to broken links while managing your subscriptions"
1466
  msgstr ""
1467
 
1468
+ #: utils/stcr_upgrade.php:439
1469
+ #, fuzzy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1470
  msgid ""
1471
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1472
+ "160831"
 
1473
  msgstr ""
1474
+ "<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
1475
+ "ارتقاء یافت."
 
1476
 
1477
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1478
+ msgid "This version includes fixes to many bugs and also new features, "
1479
  msgstr ""
 
 
1480
 
1481
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1482
  msgid ""
1483
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1484
+ "address. This will help the subscribers to use the Reply option in their "
1485
+ "email agents."
 
1486
  msgstr ""
 
 
 
1487
 
1488
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1489
  msgid ""
1490
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1491
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1492
  msgstr ""
 
 
1493
 
1494
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1495
  msgid ""
1496
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1497
+ "without loosing your subscriptions. You can use this option also for reset "
1498
+ "all the settings, see the FAQ."
1499
  msgstr ""
 
 
 
 
 
 
1500
 
1501
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1502
  msgid ""
1503
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1504
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom Post "
1505
+ "Type."
1506
  msgstr ""
 
 
1507
 
1508
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1509
  msgid ""
1510
+ "<strong>New Feature</strong> A new field was added under the notification "
1511
+ "options to and the management link only by email and not to display it on the "
1512
+ "request link page."
1513
  msgstr ""
 
 
1514
 
1515
+ #: utils/stcr_upgrade.php:461
1516
  msgid ""
1517
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1518
+ "160902"
1519
  msgstr ""
 
 
1520
 
1521
+ #: utils/stcr_upgrade.php:464
1522
  msgid ""
1523
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1524
+ "previous 160831 version."
1525
  msgstr ""
 
 
1526
 
1527
+ #: utils/stcr_utils.php:195
1528
+ msgid "StCR Notification"
1529
+ msgstr "آگاه سازی ها"
1530
 
1531
+ #: wp_subscribe_reloaded.php:114
1532
+ msgid "Settings"
1533
+ msgstr "تنظیمات"
1534
+
1535
+ #: wp_subscribe_reloaded.php:1086
1536
+ msgid "Don't subscribe"
1537
+ msgstr "مشترک نمی شوم"
1538
+
1539
+ #: wp_subscribe_reloaded.php:1087
1540
+ msgid "All"
1541
+ msgstr "دریافت همه دیدگاه های این نوشته"
1542
+
1543
+ #~ msgid ""
1544
+ #~ "If you want to donate you can do it via <a href=\"\n"
1545
+ #~ "https://www.paypal.com/cgi-bin/webscr?"
1546
+ #~ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1547
+ #~ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1548
+ #~ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1549
+ #~ msgstr ""
1550
+ #~ "اگر مایل به پرداخت وجه به ما هستید می توانید از طریق <a href=\"\n"
1551
+ #~ "https://www.paypal.com/cgi-bin/webscr?"
1552
+ #~ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1553
+ #~ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1554
+ #~ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a> اقدام "
1555
+ #~ "کنید."
1556
 
1557
  #~ msgid ""
1558
  #~ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1560
  #~ "\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-animation\" "
1561
  #~ "src=\""
1562
  #~ msgstr ""
1563
+ #~ "<strong>Subscribe to Comments Reloaded:</strong> داده ها در دیتابیس شما به "
1564
+ #~ "خوبی تیمار شده اند تا از ایجاد پیغام های ناپخته HTML ممانعت بعمل آید. <a "
1565
+ #~ "class=\"dismiss\" href=\"#\">فهمیدم. </a><img class=\"stcr-loading-"
1566
  #~ "animation\" src=\""
1567
 
1568
  #~ msgid ""
1579
  #~ msgid ""
1580
  #~ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1581
  #~ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for "
1582
+ #~ "detailed information on plugin changes.<a class=\"dismiss\" href=\"#\">Got "
1583
+ #~ "it. </a><img class=\"stcr-loading-animation\" src=\""
1584
  #~ msgstr ""
1585
  #~ "لطفأ <a href=\"https://wordpress.org/plugins/subscribe-to-comments-"
1586
  #~ "reloaded/changelog/\" target=\"_blank\">تغییرات</a> را برای مشاهده جزییات "
1590
  #~ msgid ""
1591
  #~ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1592
  #~ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1593
+ #~ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
1594
+ #~ "class=\"stcr-loading-animation\" src=\""
1595
  #~ msgstr ""
1596
  #~ "لطفأ <a href=\"https://wordpress.org/plugins/subscribe-to-comments-"
1597
  #~ "reloaded/changelog/\" target=\"_blank\">تغییرات</a> را برای مشاهده کامل "
1609
  #~ msgstr ""
1610
  #~ "<strong><a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
1611
  #~ "\">Comment Mail</strong></a> یک افزونه رایگان جدید بر مبنای "
1612
+ #~ "<strong>Subscribe to Comments Reloaded</strong> است و شامل تمام قابلیت های "
1613
+ #~ "هسته ی StCR می باشد."
1614
 
1615
  #~ msgid ""
1616
  #~ "A powerful StCR importer lets you import your StCR settings and "
1621
 
1622
  #~ msgid ""
1623
  #~ "Need more powerful features to manage your subscriptions but can't wait "
1624
+ #~ "for StCR? <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
1625
+ #~ "\">Take a look at Comment Mail!</a>"
1626
  #~ msgstr ""
1627
+ #~ "به قابلیت های قدرتمند بیشتری نیاز دارید اما نمی توانید منتظر StCR بمانید؟ "
1628
+ #~ "<a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank\">نگاهی "
1629
+ #~ "به Comment Mail بیاندازید !</a>"
1630
 
1631
  #~ msgid ""
1632
  #~ "<em>Note: Subscribe to Comments Reloaded remains in active development.</"
1633
  #~ "em><a class=\"dismiss\" href=\"#\">Got it. </a><img class=\"stcr-loading-"
1634
  #~ "animation\" src=\""
1635
  #~ msgstr ""
1636
+ #~ "<em>توجه : Subscribe to Comments Reloaded در توسعه فعال باقی خواهد ماند. </"
1637
+ #~ "em><a class=\"dismiss\" href=\"#\">گرفتم </a><img class=\"stcr-loading-"
1638
  #~ "animation\" src=\""
1639
 
1640
  #~ msgid "StCR Subscription Box Position"
1715
  #~ "Custom CSS class to associate to the checkbox, if you want to customize "
1716
  #~ "its style."
1717
  #~ msgstr ""
1718
+ #~ "کلاس CSS سفارشی برای افزودن به کادر تیک زدنی در صورتی که بخواهید جلوه ی آن "
1719
+ #~ "را تغییر دهید."
langs/subscribe-reloaded-fr_FR.mo CHANGED
Binary file
langs/subscribe-reloaded-fr_FR.po CHANGED
@@ -2,9 +2,9 @@ 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: 2016-08-31 11:21-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:21-0700\n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: fr\n"
10
  "MIME-Version: 1.0\n"
@@ -19,593 +19,436 @@ msgstr ""
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
- #: wp_subscribe_reloaded.php:114
27
- msgid "Settings"
28
- msgstr "Réglages"
29
-
30
- #: wp_subscribe_reloaded.php:1060
31
- msgid "Don't subscribe"
32
- msgstr "Ne pas s'abonner"
33
-
34
- #: wp_subscribe_reloaded.php:1061
35
- msgid "All"
36
- msgstr "S'abonner"
37
-
38
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
39
- #: templates/author.php:75
40
- msgid "Replies to my comments"
41
- msgstr "Seulement les réponses à mes commentaires"
42
-
43
- #: templates/request-management-link.php:71 templates/key_expired.php:71
44
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
45
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
46
- msgid "Email"
47
- msgstr "Email"
48
-
49
- #: templates/request-management-link.php:73 templates/key_expired.php:73
50
- #: templates/subscribe.php:92
51
- msgid "Send"
52
- msgstr "Envoyer"
53
 
54
- #: templates/key_expired.php:8
55
  msgid ""
56
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
57
- "enter your email below and a new link will be send."
58
  msgstr ""
59
 
60
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
61
- #: templates/author.php:80
62
- msgid "No subscriptions match your search criteria."
63
- msgstr "Aucun abonnement ne correspond à votre recherche."
64
-
65
- #: templates/subscribe.php:42 templates/subscribe.php:43
66
- msgid "New subscription to"
67
- msgstr "Nouvel abonnement à"
68
-
69
- #: templates/subscribe.php:43
70
- msgid "User:"
71
- msgstr "Utilisateur :"
72
-
73
- #: templates/user.php:23 templates/author.php:23
74
- #: options/panel1-business-logic.php:70
75
- msgid "Subscriptions deleted:"
76
- msgstr "Abonnements effacés :"
77
-
78
- #: templates/user.php:27 templates/author.php:27
79
- #: options/panel1-business-logic.php:74
80
- msgid "Subscriptions suspended:"
81
- msgstr "Abonnements suspendus :"
82
-
83
- #: templates/user.php:31 templates/author.php:31
84
- #: options/panel1-business-logic.php:78
85
- msgid "Subscriptions activated:"
86
- msgstr "Abonnements activés :"
87
-
88
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
89
- #: templates/author.php:39 options/panel1-business-logic.php:82
90
- #: options/panel1-business-logic.php:86
91
- msgid "Subscriptions updated:"
92
- msgstr "Abonnements mis à jour :"
93
-
94
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
95
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
96
- #: options/panel1-edit-subscription.php:11
97
  msgid ""
98
- "Please remember: this operation cannot be undone. Are you sure you want to "
99
- "proceed?"
 
100
  msgstr ""
101
- "Rappelez-vous : cette opération ne peut pas être annulée. Êtes-vous sûr de "
102
- "vouloir l'effectuer ?"
103
 
104
- #: templates/user.php:58 templates/author.php:58
105
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
 
106
  msgstr ""
107
- "Légende : Y = tous les commentaires, R = réponses seulement, C = inactif"
108
 
109
- #: templates/user.php:63
110
- msgid "F j, Y"
111
  msgstr ""
112
 
113
- #: templates/user.php:67 templates/author.php:69
114
- msgid "Select all"
115
- msgstr "Sélectionner tout"
116
-
117
- #: templates/user.php:68 templates/author.php:70
118
- msgid "Invert selection"
119
- msgstr "Inverser la sélection"
120
-
121
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
122
- msgid "Action:"
123
- msgstr "Action :"
124
-
125
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
126
- #: options/panel1.php:212
127
- msgid "Delete"
128
- msgstr "Supprimer"
129
-
130
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
131
- msgid "Suspend"
132
- msgstr "Suspendre"
133
-
134
- #: templates/user.php:72 templates/author.php:74
135
- msgid "All comments"
136
- msgstr "Tous les commentaires"
137
-
138
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
139
- msgid "Activate"
140
- msgstr "Activer"
141
-
142
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
143
- msgid "Update subscriptions"
144
- msgstr "Mettre à jour les abonnements"
145
-
146
- #: templates/author.php:57
147
- msgid "Title"
148
- msgstr "Titre"
149
-
150
- #: utils/stcr_upgrade.php:55
151
- msgid "Important Notice"
152
- msgstr "Remarque importante"
153
-
154
- #: utils/stcr_upgrade.php:103
155
  msgid ""
156
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
157
- "database has been sanitized to prevent the raw html messages. <a class="
158
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
159
- "src=\""
160
  msgstr ""
161
 
162
- #: utils/stcr_upgrade.php:158
163
- msgid ""
164
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
165
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
166
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
167
  msgstr ""
168
- "Les données de souscription aux commentaires du plugin <strong>Subscribe to "
169
- "Comments</strong> ont été détectées et automatiquement importées dans "
170
- "<strong>Subscribe to Comments Reloaded</strong>."
171
 
172
- #: utils/stcr_upgrade.php:158
173
- msgid ""
174
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
175
- "Comments to prevent confusion between the two plugins."
176
  msgstr ""
177
- "Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
178
- "Comments pour éviter toute confusion entre les deux plugins."
179
 
180
- #: utils/stcr_upgrade.php:159
181
- msgid ""
182
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
183
- "that you want to import, you'll need to import that data manually, as only "
184
- "one import routine will ever run to prevent data loss."
185
  msgstr ""
186
- "Si vous avez des données de souscription de Subscribe to Comments Reloaded < "
187
- "v2.0 que vous désirez importer, vous devrez importer ces données "
188
- "manuellement car il n'y a qu'une seule routine d'importation qui "
189
- "fonctionnera pour éviter la perte de données."
190
 
191
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
192
- #: utils/stcr_upgrade.php:381
193
- msgid ""
194
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
195
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
196
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
197
- "\"stcr-loading-animation\" src=\""
198
  msgstr ""
199
 
200
- #: utils/stcr_upgrade.php:231
201
- msgid ""
202
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
203
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
204
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
205
  msgstr ""
206
- "Les données de souscription aux commentaires du plugin <strong>Comment Reply "
207
- "Notification</strong> ont été détectées et automatiquement importées dans "
208
- "<strong>Subscribe to Comments Reloaded</strong>."
209
 
210
- #: utils/stcr_upgrade.php:231
211
- msgid ""
212
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
213
- "Notification to prevent confusion between the two plugins."
214
  msgstr ""
215
- "Il est recommandé que vous <strong>désactiviez</strong> Comment Reply "
216
- "Notification pour éviter toute confusion entre les deux plugins."
217
 
218
- #: utils/stcr_upgrade.php:378
219
- msgid ""
220
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
221
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
222
- "were detected and automatically imported into <strong>Subscribe to Comments "
223
- "Reloaded</strong>."
224
  msgstr ""
225
- "Les données de souscription aux commentaires du plugin <strong>WP Comment "
226
- "Subscriptions<</strong> ont été détectées et automatiquement importées dans "
227
- "<strong>Subscribe to Comments Reloaded</strong>."
228
 
229
- #: utils/stcr_upgrade.php:378
230
- msgid ""
231
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
232
- "Subscriptions to prevent confusion between the two plugins."
233
  msgstr ""
234
- "Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
235
- "Comments pour éviter toute confusion entre les deux plugins."
236
 
237
- #: utils/stcr_upgrade.php:379
238
- msgid ""
239
- "If you have subscription data from another plugin (such as Subscribe to "
240
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
241
- "you'll need to import that data manually, as only one import routine will "
242
- "ever run to prevent data loss."
243
  msgstr ""
244
- "Si vous avez des données de souscription d'un autre plugin (tel que "
245
- "Subscribe to Comments ou Subscribe to Comments Reloaded < v2.0) que vous "
246
- "désirez importer, vous devrez importer ces données manuellement car il n'y a "
247
- "qu'une seule routine d'importation qui fonctionnera pour éviter la perte de "
248
- "données."
249
 
250
- #: utils/stcr_upgrade.php:380
251
- msgid ""
252
- "<strong>Note:</strong> If you were previously using the "
253
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
254
- "subscribe-url]</code> shortcode, you'll need to replace those with "
255
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
256
- "respectively."
257
  msgstr ""
258
- "<strong>Remarque:</strong> si vous utilisiez précédemment la fonction "
259
- "<code>wp_comment_subscriptions_show()</code> ou le shortcode <code>[wpcs-"
260
- "subscribe-url]</code>, vous devez les remplacer respectivement par "
261
- "<code>subscribe_reloaded_show()</code> et <code>[subscribe-url]</code>."
262
 
263
- #: utils/stcr_upgrade.php:394
264
- msgid ""
265
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
266
  msgstr ""
267
 
268
- #: utils/stcr_upgrade.php:395
269
- msgid ""
270
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
271
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
272
  msgstr ""
273
 
274
- #: utils/stcr_upgrade.php:396
275
- msgid ""
276
- "If you want to donate you can do it via <a href=\"\n"
277
- "https://www.paypal.com/cgi-bin/webscr?"
278
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
279
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
280
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
281
  msgstr ""
282
 
283
- #: utils/stcr_upgrade.php:398
284
- msgid ""
285
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
286
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
287
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
288
- "a><img class=\"stcr-loading-animation\" src=\""
289
  msgstr ""
290
 
291
- #: utils/stcr_upgrade.php:409
292
- msgid ""
293
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
294
- "160106."
295
  msgstr ""
296
 
297
- #: utils/stcr_upgrade.php:410
298
- msgid ""
299
- "This version includes many changes and fixes to improve your experience with "
300
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
301
- "email templates, Subscription Checkbox position, and more!"
302
  msgstr ""
303
 
304
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
305
- #: utils/stcr_upgrade.php:448
306
- msgid ""
307
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
308
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
309
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
310
- "class=\"stcr-loading-animation\" src=\""
311
- msgstr ""
312
 
313
- #: utils/stcr_upgrade.php:424
314
- msgid ""
315
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
316
- "160115."
317
- msgstr ""
318
 
319
- #: utils/stcr_upgrade.php:425
320
- msgid ""
321
- "This version includes fixes to broken links while managing your subscriptions"
322
- msgstr ""
323
 
324
- #: utils/stcr_upgrade.php:439
325
- msgid ""
326
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
327
- "160831"
328
- msgstr ""
329
 
330
- #: utils/stcr_upgrade.php:440
331
- msgid "This version includes fixes to many bugs and also new features, "
332
- msgstr ""
 
333
 
334
- #: utils/stcr_upgrade.php:442
335
- msgid ""
336
- "<strong>New Feature</strong> Add new option to set the Reply To email "
337
- "address. This will help the subscribers to use the Reply option in their "
338
- "email agents."
339
- msgstr ""
340
 
341
- #: utils/stcr_upgrade.php:443
342
- msgid ""
343
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
344
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
345
- msgstr ""
346
 
347
- #: utils/stcr_upgrade.php:444
348
- msgid ""
349
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
350
- "without loosing your subscriptions. You can use this option also for reset "
351
- "all the settings, see the FAQ."
352
  msgstr ""
353
 
354
- #: utils/stcr_upgrade.php:445
355
- msgid ""
356
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
357
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
358
- "Post Type."
359
- msgstr ""
360
 
361
- #: utils/stcr_upgrade.php:446
362
- msgid ""
363
- "<strong>New Feature</strong> A new field was added under the notification "
364
- "options to and the management link only by email and not to display it on "
365
- "the request link page."
366
- msgstr ""
367
 
368
- #: utils/stcr_manage.php:246
369
- msgid ""
370
- "Notify me of followup comments via e-mail. You can also <a "
371
- "href='[subscribe_link]'>subscribe</a> without commenting."
372
- msgstr ""
373
- "Notifiez-moi des commentaires à venir via émail. Vous pouvez aussi <a "
374
- "href='[subscribe_link]'>vous abonner</a> sans commenter."
375
 
376
- #: utils/stcr_manage.php:247
377
- msgid ""
378
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
379
- "subscriptions."
380
- msgstr ""
381
- "Vous êtes abonné(e) aux commentaires de ce billet.<a "
382
- "href='[manager_link]'>Gérer vos abonnements</a>.\""
383
 
384
- #: utils/stcr_manage.php:248
385
- msgid ""
386
- "Your subscription to this post needs to be confirmed. <a "
387
- "href='[manager_link]'>Manage your subscriptions</a>."
388
- msgstr ""
389
- "Votre abonnement aux commentaires de ce billet a besoin d'être confirmé. <a "
390
- "href='[manager_link]'>Gérer vos abonnements</a>."
391
 
392
- #: utils/stcr_manage.php:249
393
- msgid ""
394
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
395
- msgstr ""
396
- "Vous pouvez <a href='[manager_link]'>gérer les abonnements</a> aux "
397
- "commentaires de ce billet."
398
 
399
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
400
- #: utils/stcr_manage.php:383 options/index.php:59
401
- msgid "Manage subscriptions"
402
- msgstr "Gérer les abonnements"
403
 
404
- #: utils/stcr_manage.php:255
405
- msgid ""
406
- "To manage your subscriptions, please enter your email address here below. We "
407
- "will send you a message containing the link to access your personal "
408
- "management page."
409
- msgstr ""
410
- "Pour gérer vos abonnements, veuillez entrer votre adresse email ci-dessous. "
411
- "Nous vous enverrons un message contenant le lien pour accéder à votre page "
412
- "personnelle de gestion."
413
 
414
- #: utils/stcr_manage.php:256
415
- msgid ""
416
- "Thank you for using our subscription service. Your request has been "
417
- "completed, and you should receive an email with the management link in a few "
418
- "minutes."
419
- msgstr ""
420
- "Merci d'utiliser notre service d'abonnement. Votre requête a été complétée "
421
- "et vous devriez recevoir un email avec un lien de gestion dans quelques "
422
- "minutes."
423
 
424
- #: utils/stcr_manage.php:257
425
- msgid ""
426
- "You can follow the discussion on <strong>[post_title]</strong> without "
427
- "having to leave a comment. Cool, huh? Just enter your email address in the "
428
- "form here below and you're all set."
429
- msgstr ""
430
- "Vous pouvez suivre la discussion sur <strong>[post_title]</strong> sans "
431
- "avoir à laisser un commentaire. Chouette, pas vrai ? Entrez simplement votre "
432
- "adresse email dans le champ ci-dessous."
433
 
434
- #: utils/stcr_manage.php:258
435
- msgid ""
436
- "Thank you for using our subscription service. Your request has been "
437
- "completed. You will receive a notification email every time a new comment to "
438
- "this article is approved and posted by the administrator."
439
- msgstr ""
440
- "Merci d'utiliser notre service d'abonnement. Votre requête a abouti. Vous "
441
- "recevrez une notification par email à chaque fois qu'un nouveau commentaire "
442
- "sur cet article sera posté et approuvé par l'administrateur."
443
 
444
- #: utils/stcr_manage.php:259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445
  msgid ""
446
- "Thank you for using our subscription service. In order to confirm your "
447
- "request, please check your email for the verification message and follow the "
448
- "instructions."
449
  msgstr ""
450
- "Merci d'utiliser notre service d'abonnement. Afin de confirmer votre "
451
- "requête, veuillez vérifier votre courrier email pour le message de "
452
- "vérification et suivre les instructions."
453
 
454
- #: utils/stcr_manage.php:260
455
- msgid ""
456
- "In order to cancel or suspend one or more notifications, select the "
457
- "corresponding checkbox(es) and click on the button at the end of the list."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
458
  msgstr ""
459
- "Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
460
- "la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
461
- "la liste."
462
 
463
- #: utils/stcr_manage.php:261
464
  msgid ""
465
- "In order to cancel or suspend one or more notifications, select the "
466
- "corresponding checkbox(es) and click on the button at the end of the list. "
467
- "You are currently subscribed to:"
468
  msgstr ""
469
- "Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
470
- "la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
471
- "la liste. Vous êtes actuellement abonné(e) à:"
472
 
473
- #: utils/stcr_manage.php:265
474
- msgid "There is a new comment to [post_title]"
475
- msgstr "Il y a un nouveau commentaire à [post_title]"
476
 
477
- #: utils/stcr_manage.php:266
478
- msgid ""
479
- "There is a new comment to [post_title].\n"
480
- "Comment Link: [comment_permalink]\n"
481
- "Author: [comment_author]\n"
482
- "Comment:\n"
483
- "[comment_content]\n"
484
- "Permalink: [post_permalink]\n"
485
- "Manage your subscriptions: [manager_link]"
486
- msgstr ""
487
- "Il y a un nouveau commentaire à [post_title].\n"
488
- "Lien du commentaire : [comment_permalink]\n"
489
- "Auteur : [comment_author]\n"
490
- "Commentaire :\n"
491
- "[comment_content]\n"
492
- "Lien permanent : [post_permalink]\n"
493
- "Gérer vos abonnements : [manager_link]"
494
 
495
- #: utils/stcr_manage.php:267
496
- msgid "Please confirm your subscription to [post_title]"
497
- msgstr "Veuillez confirmer votre abonnement à [post_title]"
498
 
499
- #: utils/stcr_manage.php:268
 
500
  msgid ""
501
- "You have requested to be notified every time a new comment is added to:\n"
502
- "[post_permalink]\n"
503
- "\n"
504
- "Please confirm your request by clicking on this link:\n"
505
- "[confirm_link]"
506
  msgstr ""
507
- "Vous avez demandé à être averti à chaque fois qu'un nouveau commentaire est "
508
- "ajouté à :\n"
509
- "[post_permalink]\n"
510
- "\n"
511
- "Veuillez confirmer votre demande en cliquant sur ce lien :\n"
512
- "[confirm_link]"
513
 
514
- #: utils/stcr_manage.php:269
515
- msgid "Manage your subscriptions on [blog_name]"
516
- msgstr "Gestion de vos abonnements sur [blog_name]"
517
 
518
- #: utils/stcr_manage.php:270
519
- msgid ""
520
- "You have requested to manage your subscriptions to the articles on "
521
- "[blog_name]. Please check the Subscriptions management link in your email"
522
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
 
524
- #: utils/stcr_manage.php:271
525
- msgid ""
526
- "You have requested to manage your subscriptions to the articles on "
527
- "[blog_name]. Follow this link to access your personal page:\n"
528
- "[manager_link]"
529
- msgstr ""
530
- "Vous avez demandé à gérer vos abonnements aux articles sur [blog_name]. "
531
- "Suivez ce lien pour accéder à votre page personnelle :\n"
532
- "[manager_link]"
533
 
534
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
535
- msgid "Comment Form"
536
- msgstr "Formulaire de commentaire"
537
 
538
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
539
- msgid "Management Page"
540
- msgstr "Page de gestion"
541
 
542
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
543
- msgid "Notifications"
544
- msgstr "Notifications"
545
 
546
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
547
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
548
- msgid "Options"
549
- msgstr "Options"
550
 
551
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
552
- msgid "You can help"
553
- msgstr "Vous pouvez aider"
554
 
555
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
556
- msgid "Support"
557
- msgstr "Support"
558
 
559
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
560
- msgid "Donate"
561
  msgstr ""
562
 
563
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
564
- msgid "StCR System"
565
- msgstr ""
566
 
567
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
568
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
569
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
570
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
571
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
572
- msgid "You do not have sufficient permissions to access this page."
573
- msgstr ""
574
 
575
- #: utils/stcr_manage.php:755
576
- msgid "Subscriptions"
 
 
 
 
577
  msgstr "Abonnements"
578
 
579
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
580
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
581
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
582
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
583
- #: options/panel5.php:161
584
- msgid "No"
585
- msgstr "Non"
586
 
587
- #: utils/stcr_manage.php:811
588
- msgid ""
589
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
590
- msgstr ""
591
- "Vous avez besoin d'aide pour utiliser Subscribe to Comments Reloaded ? "
592
- "Visiter le "
593
 
594
- #: utils/stcr_manage.php:811
595
- msgid "support forum"
596
- msgstr "forum de support officiel"
597
 
598
- #: utils/stcr_manage.php:812
599
- msgid "Feeling generous?"
600
- msgstr "Vous vous sentez d'humeur généreuse ?"
601
 
602
- #: utils/stcr_manage.php:812
603
- msgid "Donate a few bucks!"
604
- msgstr "Faîtes don de quelques euros !"
605
 
606
- #: utils/stcr_utils.php:195
607
- msgid "StCR Notification"
608
- msgstr "Notifications"
 
 
 
 
 
 
 
 
 
 
 
 
609
 
610
  #: options/panel2.php:12 options/panel2.php:63
611
  msgid "Enable default checkbox"
@@ -647,13 +490,13 @@ msgstr "Texte pour l'attente de modération"
647
  msgid "Author label"
648
  msgstr "Texte pour l'auteur"
649
 
650
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
651
- #: options/panel5.php:60 options/panel3.php:70
652
  msgid "Your settings have been successfully updated."
653
  msgstr "Vos réglages ont été sauvegardés avec succès."
654
 
655
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
656
- #: options/panel5.php:62 options/panel3.php:72
657
  msgid "There was an error updating the following fields:"
658
  msgstr "Une erreur est apparue lors de la mise à jour des champs suivants :"
659
 
@@ -664,6 +507,14 @@ msgstr "Une erreur est apparue lors de la mise à jour des champs suivants :"
664
  msgid "Yes"
665
  msgstr "Oui"
666
 
 
 
 
 
 
 
 
 
667
  #: options/panel2.php:68
668
  msgid ""
669
  "Disable this option if you want to move the subscription checkbox to a "
@@ -761,31 +612,166 @@ msgid ""
761
  "Label shown to those who are already subscribed, but haven't clicked on the "
762
  "confirmation link yet. Allowed tag: [manager_link]"
763
  msgstr ""
764
- "Message affiché à ceux qui sont déjà abonnés mais n'ont pas encore cliqué "
765
- "sur le lien de confirmation. Tag autorisé : [manager_link]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
 
767
- #: options/panel2.php:225
768
  msgid ""
769
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
770
  msgstr ""
771
- "Message affiché aux auteurs (et administrateurs). Tag autorisé: "
772
- "[manager_link]"
773
-
774
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
775
- #: options/panel3.php:253
776
- msgid "Save Changes"
777
- msgstr "Sauvegarder les modifications"
778
 
779
- #: options/panel9.php:11
780
- msgid "Support Subscribe to Comments Reloaded"
781
- msgstr "Remarque importante concernant Subscribe to Comments Reloaded"
782
 
783
- #: options/panel9.php:12
784
- msgid ""
785
- "Every contribution that you make is high valuable, so if you consider this "
786
- "plugin a helpful tool we will use your donation to invest on support and "
787
- "developing time."
788
- msgstr ""
789
 
790
  #: options/panel4.php:15 options/panel4.php:94
791
  msgid "Sender name"
@@ -849,10 +835,6 @@ msgid ""
849
  "will be the same as the Sender email address."
850
  msgstr ""
851
 
852
- #: options/panel4.php:135 options/panel3.php:127
853
- msgid "Messages"
854
- msgstr "Messages"
855
-
856
  #: options/panel4.php:147
857
  msgid "Subject of the notification email. Allowed tag: [post_title]"
858
  msgstr "Sujet de l'email de notification. Tag autorisé : [post_title]"
@@ -917,6 +899,156 @@ msgid ""
917
  "[blog_name]"
918
  msgstr "Sujet de l'email de confirmation. Tag autorisé : [post_title]"
919
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
920
  #: options/panel7.php:8 options/panel8.php:8
921
  msgid "Support the developers"
922
  msgstr "Soutenez l'auteur"
@@ -956,578 +1088,559 @@ msgstr ""
956
  "<strong>Subscribe to Comments Reloaded</strong> etc... Quoi que vous "
957
  "fassiez, merci d'utiliser mon plugin !"
958
 
959
- #: options/panel7.php:23
960
- msgid "Subscribe to the Beta testers"
961
- msgstr "Abonné(e)"
962
-
963
- #: options/panel7.php:24
964
- msgid ""
965
- "Before a new Update we release a Beta version so that our current users can "
966
- "give us feedback if they find a bug, If you want to join the tester list you "
967
- "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
968
- "a>"
969
- msgstr ""
970
-
971
- #: options/panel7.php:26
972
- msgid "Vote and show your appreciation"
973
- msgstr "Votez et montrez votre satisfaction"
974
-
975
- #: options/panel7.php:27
976
- msgid ""
977
- "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
978
- "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
979
- "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
980
- msgstr ""
981
- "Faites savoir que <strong>Subscribe to Comments Reloaded</strong> fonctionne "
982
- "pour vous et à quel point il est bon. <a href=\"http://wordpress.org/extend/"
983
- "plugins/subscribe-to-comments-reloaded/\">Notez le</a>sur sa page de dépôt "
984
- "de plugins."
985
-
986
- #: options/panel1.php:20
987
- msgid "Mass Update Subscriptions"
988
- msgstr "Mise à jour globale des abonnements"
989
-
990
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
991
- msgid "From"
992
- msgstr "De"
993
-
994
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
995
- msgid "email address"
996
- msgstr "Adresse email de l'expéditeur"
997
-
998
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
999
- msgid "To"
1000
- msgstr "À"
1001
-
1002
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
1003
- msgid "optional - new email address"
1004
- msgstr "Adresse email de l'expéditeur"
1005
-
1006
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
1007
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
1008
- #: options/panel1-edit-subscription.php:26
1009
- msgid "Status"
1010
- msgstr "Statut"
1011
-
1012
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
1013
- msgid "Keep unchanged"
1014
- msgstr "Garder inchangé"
1015
-
1016
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
1017
- #: options/panel1-add-subscription.php:22
1018
- #: options/panel1-edit-subscription.php:29
1019
- msgid "Active"
1020
- msgstr "Actif"
1021
-
1022
- #: options/panel1.php:43 options/panel1.php:80
1023
- #: options/panel1-add-subscription.php:23
1024
- #: options/panel1-edit-subscription.php:30
1025
- msgid "Replies only"
1026
- msgstr "Réponses seulement"
1027
-
1028
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
1029
- msgid "Suspended"
1030
- msgstr "Suspendu"
1031
-
1032
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
1033
- #: options/panel1-edit-subscription.php:33
1034
- msgid "Update"
1035
- msgstr "Mise à jour"
1036
-
1037
- #: options/panel1.php:49
1038
- msgid "More info"
1039
- msgstr ""
1040
-
1041
- #: options/panel1.php:55
1042
  msgid ""
1043
- "This option will allow you to change an email address for another one or to "
1044
- "update the same status for all the subscription on a specific email address."
 
 
1045
  msgstr ""
1046
 
1047
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1048
- msgid "Add New Subscription"
1049
- msgstr "Ajouter un nouvel abonnement"
1050
 
1051
- #: options/panel1.php:68
1052
- msgid "Post ID"
1053
- msgstr "Billet (ID)"
 
 
 
 
 
 
 
1054
 
1055
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1056
- msgid "Ask user to confirm"
1057
- msgstr "Demander à l'utilisateur de confirmer"
1058
 
1059
- #: options/panel1.php:83
1060
- msgid "Add"
1061
- msgstr "Ajouter"
 
 
 
 
 
 
 
 
1062
 
1063
- #: options/panel1.php:98
1064
- msgid "Search subscriptions"
1065
- msgstr "Chercher les abonnements"
1066
 
1067
- #: options/panel1.php:102
1068
- #, php-format
1069
  msgid ""
1070
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1071
- "where the"
 
1072
  msgstr ""
1073
- "Vous pouvez soit <a href=\"%s\">lister tous les abonnements</a> soit trouver "
1074
- "ceux avec"
1075
-
1076
- #: options/panel1.php:106
1077
- msgid "email"
1078
- msgstr "Email"
1079
 
1080
- #: options/panel1.php:107
1081
- msgid "post ID"
1082
- msgstr "Billet (ID)"
1083
 
1084
- #: options/panel1.php:108
1085
- msgid "status"
1086
- msgstr "Statut"
 
1087
 
1088
- #: options/panel1.php:111
1089
- msgid "equals"
1090
- msgstr "égal à"
1091
 
1092
- #: options/panel1.php:112
1093
- msgid "contains"
1094
- msgstr "contient"
1095
 
1096
- #: options/panel1.php:113
1097
- msgid "does not contain"
1098
- msgstr "ne contient pas"
1099
 
1100
- #: options/panel1.php:114
1101
- msgid "starts with"
1102
- msgstr "commence par"
1103
 
1104
- #: options/panel1.php:115
1105
- msgid "ends with"
1106
- msgstr "finit par"
 
1107
 
1108
- #: options/panel1.php:118
1109
- msgid "results per page:"
1110
- msgstr "Résultats par page :"
 
 
1111
 
1112
- #: options/panel1.php:120
1113
- msgid "Search"
1114
- msgstr "Recherche"
 
1115
 
1116
- #: options/panel1.php:128
1117
- msgid "Reverse the order by Post ID"
1118
- msgstr "Inverser l'ordre par ID de billet"
1119
 
1120
- #: options/panel1.php:129 options/panel1.php:130
1121
- msgid "Reverse the order by Date/Time"
1122
- msgstr "Inverser l'ordre par date/heure"
1123
 
1124
- #: options/panel1.php:132
1125
- msgid "Post (ID)"
1126
- msgstr "Billet (ID)"
1127
 
1128
- #: options/panel1.php:135
1129
- msgid "Search query:"
1130
- msgstr "Recherche"
1131
 
1132
- #: options/panel1.php:135
1133
- msgid "Rows:"
1134
- msgstr "Lignes :"
 
 
 
 
1135
 
1136
- #: options/panel1.php:135
1137
- msgid "of"
1138
- msgstr "de"
 
 
 
 
1139
 
1140
- #: options/panel1.php:142 options/panel1.php:158
1141
- msgid "Date and Time"
1142
- msgstr "Date et heure"
 
 
 
 
1143
 
1144
- #: options/panel1.php:168
1145
- msgid "Replies"
1146
- msgstr "Réponses seulement"
 
 
 
1147
 
1148
- #: options/panel1.php:169
1149
- msgid "All Comments"
1150
- msgstr "Tous les commentaires"
 
 
 
 
 
 
1151
 
1152
- #: options/panel1.php:170
1153
- msgid "Unconfirmed"
 
 
 
1154
  msgstr ""
 
 
 
1155
 
1156
- #: options/panel1.php:171
1157
- msgid "Inactive"
1158
- msgstr "Actif"
 
 
 
 
 
 
1159
 
1160
- #: options/panel1.php:201 options/panel1.php:211
1161
- msgid "Edit"
1162
- msgstr "Modifier"
 
 
 
 
 
 
1163
 
1164
- #: options/panel1.php:203 options/panel1.php:209
1165
- msgid "Subscription"
1166
- msgstr "Abonnements"
 
 
 
 
 
 
1167
 
1168
- #: options/panel1.php:226
1169
- msgid "Delete forever"
1170
- msgstr "Suppression définitive"
 
 
 
 
 
1171
 
1172
- #: options/panel1.php:228
1173
- msgid "Activate and set to Y"
1174
- msgstr "Activer et mettre à Y"
 
 
 
 
 
 
1175
 
1176
- #: options/panel1.php:229
1177
- msgid "Activate and set to R"
1178
- msgstr "Activer et mettre à R"
1179
 
1180
- #: options/panel1.php:237
1181
- msgid "Sorry, no subscriptions match your search criteria."
1182
- msgstr "Désolé, aucun abonnement ne correspond à votre recherche."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1183
 
1184
- #: options/panel1-business-logic.php:23
1185
- msgid "Subscription added."
1186
- msgstr "Abonnement ajouté."
1187
 
1188
- #: options/panel1-business-logic.php:39
1189
- msgid "Subscriptions updated."
1190
- msgstr "Abonnement mis à jour."
 
 
 
 
 
 
 
 
 
 
 
1191
 
1192
- #: options/panel1-business-logic.php:51
1193
- msgid "Subscription deleted."
1194
- msgstr "Abonnement effacé."
1195
 
1196
- #: options/panel1-business-logic.php:110
1197
- msgid "&laquo; Previous"
1198
- msgstr "&laquo; Précédent"
 
 
1199
 
1200
- #: options/panel1-business-logic.php:114
1201
- msgid "Next &raquo;"
1202
- msgstr "Suivant &raquo;"
 
 
 
 
 
 
1203
 
1204
- #: options/panel1-add-subscription.php:13
1205
- #: options/panel1-edit-subscription.php:13
1206
- msgid "Post:"
1207
- msgstr "Billet :"
1208
 
1209
- #: options/panel5.php:28
1210
- msgid "Safetly Uninstall"
 
 
 
 
1211
  msgstr ""
1212
 
1213
- #: options/panel5.php:31 options/panel5.php:84
1214
- msgid "Autopurge requests"
1215
- msgstr "Purger automatiquement les requêtes"
1216
 
1217
- #: options/panel5.php:34 options/panel5.php:93
1218
- msgid "Enable double check"
1219
- msgstr "Autoriser la vérification"
 
 
 
1220
 
1221
- #: options/panel5.php:37 options/panel5.php:101
1222
- msgid "Subscribe authors"
1223
- msgstr "Abonné(e)"
1224
 
1225
- #: options/panel5.php:40 options/panel5.php:111
1226
- msgid "Enable HTML emails"
1227
- msgstr "Activer les émails en HTML"
1228
 
1229
- #: options/panel5.php:43
1230
- msgid "HTMLify Links in HTML emails"
1231
- msgstr "HTMliser les liens dans les emails HTML"
1232
 
1233
- #: options/panel5.php:46
1234
- msgid "Send trackbacks"
1235
- msgstr "Envoyer les trackbacks"
1236
 
1237
- #: options/panel5.php:49
1238
- msgid "Notify admin"
1239
- msgstr "Notifier l'admin"
 
 
 
 
1240
 
1241
- #: options/panel5.php:52 options/panel5.php:149
1242
- msgid "Let admin subscribe"
1243
- msgstr "Permettre aux admins de s'abonner"
 
 
 
 
 
 
1244
 
1245
- #: options/panel5.php:55 options/panel5.php:158
1246
- msgid "BCC admin on Notifications"
1247
- msgstr "Notifications"
 
 
 
 
1248
 
1249
- #: options/panel5.php:76
1250
- msgid "Safely Uninstall"
 
 
 
1251
  msgstr ""
 
 
 
 
1252
 
1253
- #: options/panel5.php:80
 
1254
  msgid ""
1255
- "This option will allow you to delete the plugin with WordPress without "
1256
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
 
1257
  msgstr ""
1258
 
1259
- #: options/panel5.php:87
1260
- msgid "days"
1261
- msgstr "jours"
 
 
 
 
 
 
1262
 
1263
- #: options/panel5.php:88
1264
  msgid ""
1265
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1266
- "this feature."
1267
  msgstr ""
1268
- "Effacer les abonnements en attente (non confirmés) après X jours. Zéro "
1269
- "désactivera cette fonction."
1270
 
1271
- #: options/panel5.php:97
1272
  msgid ""
1273
- "Send a notification email to confirm the subscription (to avoid addresses "
1274
- "misuse)."
 
 
1275
  msgstr ""
1276
- "Envoyer une notification par email pour confirmer l'abonnement (afin "
1277
- "d'éviter les fausses adresses)."
 
1278
 
1279
- #: options/panel5.php:106
1280
  msgid ""
1281
- "Automatically subscribe authors to their own articles (not retroactive)."
 
1282
  msgstr ""
1283
- "Abonner automatiquement les auteurs à leurs propres articles (non "
1284
- "rétroactif)."
1285
 
1286
- #: options/panel5.php:115
1287
  msgid ""
1288
- "If enabled, will send email messages with content-type = text/html instead "
1289
- "of text/plain"
 
 
1290
  msgstr ""
1291
- "Si activé, enverra les messages avec content-type = text/html au lieu de "
1292
- "text/plain"
 
 
 
1293
 
1294
- #: options/panel5.php:120
1295
- msgid "HTMLify links in emails"
1296
- msgstr "HTMLliser les liens dans les emails"
 
 
 
 
 
 
 
 
 
1297
 
1298
- #: options/panel5.php:125
1299
  msgid ""
1300
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1301
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1302
  msgstr ""
1303
- "Si activé, encadrera tous les liens dans les messages avec <code>&lt;a href="
1304
- "\"\"&gt;&lt;/a&gt;</code> (uniquement quand les mails HTML sont activés)."
1305
-
1306
- #: options/panel5.php:130
1307
- msgid "Process trackbacks"
1308
- msgstr "Envoyer les trackbacks"
1309
 
1310
- #: options/panel5.php:134
1311
  msgid ""
1312
- "Notify users when a new trackback or pingback is added to the discussion."
 
1313
  msgstr ""
1314
- "Notifier les utilisateurs quand un nouveau trackback ou pingback est ajouté "
1315
- "à la discussion."
1316
-
1317
- #: options/panel5.php:139
1318
- msgid "Track all subscriptions"
1319
- msgstr "Envoyer abonnements sans commentaire"
1320
 
1321
- #: options/panel5.php:144
1322
- msgid "Notify the administrator when users subscribe without commenting."
 
 
 
 
 
 
1323
  msgstr ""
1324
- "Notifier l'administrateur quand les utilisateurs souscrivent sans commenter."
1325
 
1326
- #: options/panel5.php:153
1327
- msgid "Let the administrator subscribe to comments when logged in."
 
 
 
 
1328
  msgstr ""
1329
- "Permettre à l'administrateur de s'abonner aux commentaires quand il est "
1330
- "connecté."
1331
-
1332
- #: options/panel5.php:162
1333
- msgid "Send a copy of all Notifications to the administrator."
1334
- msgstr "Envoyer une copie de toutes les notifications à l'administrateur."
1335
-
1336
- #: options/panel5.php:167
1337
- msgid "StCR Unique Key"
1338
- msgstr "Clef unique StCR"
1339
 
1340
- #: options/panel5.php:172
1341
- msgid "This Unique Key is not set, please click the following button to "
 
 
1342
  msgstr ""
1343
- "Cette clef unique n'est pas définie, veuillez cliquer sur le bouton suivant "
1344
- "pour"
1345
-
1346
- #: options/panel5.php:176 options/panel5.php:187
1347
- msgid "Generate"
1348
- msgstr "générer"
1349
 
1350
- #: options/panel5.php:184
1351
  msgid ""
1352
- "This Unique Key will be use to send the notification to your subscribers "
1353
- "with more security."
 
1354
  msgstr ""
1355
- "Cette ckef unique sera utilisée pour envoyer les notifications à vos abonnés "
1356
- "avec plus de\n"
1357
- "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsecurity."
1358
-
1359
- #: options/panel8.php:18
1360
- msgid "Did you find a Bug on the plugin?"
1361
- msgstr "Avez-vous trouvé un bug dans ce plugin ?"
1362
 
1363
- #: options/panel8.php:19
 
1364
  msgid ""
1365
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1366
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1367
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1368
- "WordPress Support page."
1369
  msgstr ""
1370
- "Veuillez reporter tout bug à la <a href=\"https://github.com/stcr/subscribe-"
1371
- "to-comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1372
- "%3E&labels=bug\" target=\"_blank\">page GitHub</a> plutôt que sur la page de "
1373
- "support de Wordpress.org."
1374
-
1375
- #: options/panel1-edit-subscription.php:8
1376
- msgid "Update Subscription"
1377
- msgstr "Mise à jour de l'abonnement"
1378
-
1379
- #: options/panel1-edit-subscription.php:11
1380
- #: options/panel1-edit-subscription.php:21
1381
- #: options/panel1-edit-subscription.php:22
1382
- #: options/panel1-edit-subscription.php:23
1383
- msgid "optional"
1384
- msgstr "Optionnel"
1385
 
1386
- #: options/panel10.php:22 options/panel10.php:23
1387
- msgid "System Information"
 
 
1388
  msgstr ""
1389
 
1390
- #: options/panel3.php:13 options/panel3.php:87
1391
- msgid "Virtual Management Page"
1392
- msgstr "Page de gestion virtuelle"
1393
-
1394
- #: options/panel3.php:18 options/panel3.php:96
1395
- msgid "Page title"
1396
- msgstr "Titre de la page"
1397
-
1398
- #: options/panel3.php:23 options/panel3.php:105
1399
- msgid "Management URL"
1400
- msgstr "Page de gestion"
1401
-
1402
- #: options/panel3.php:28 options/panel3.php:117
1403
- msgid "Custom HEAD meta"
1404
- msgstr "Meta HEAD personnalisé"
1405
-
1406
- #: options/panel3.php:34 options/panel3.php:131
1407
- msgid "Request link"
1408
- msgstr "Demande de lien"
1409
-
1410
- #: options/panel3.php:39 options/panel3.php:149
1411
- msgid "Request submitted"
1412
- msgstr "Demande envoyée"
1413
-
1414
- #: options/panel3.php:44 options/panel3.php:167
1415
- msgid "Subscribe without commenting"
1416
- msgstr "S'abonner sans commenter"
1417
-
1418
- #: options/panel3.php:49 options/panel3.php:185
1419
- msgid "Subscription processed"
1420
- msgstr "Abonnement traité"
1421
-
1422
- #: options/panel3.php:54 options/panel3.php:203
1423
- msgid "Subscription processed (DCI)"
1424
- msgstr "Abonnement traité (DCI)"
1425
-
1426
- #: options/panel3.php:59 options/panel3.php:220
1427
- msgid "Authors"
1428
- msgstr "Auteurs"
1429
-
1430
- #: options/panel3.php:64 options/panel3.php:236
1431
- msgid "Users"
1432
- msgstr "Utilisateurs"
1433
-
1434
- #: options/panel3.php:90
1435
- msgid "Enabled"
1436
- msgstr "Activé"
1437
-
1438
- #: options/panel3.php:91
1439
- msgid "Disabled"
1440
- msgstr "Désactivé"
1441
 
1442
- #: options/panel3.php:92
1443
  msgid ""
1444
- "Disable the virtual management page if you need to create a <a href="
1445
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1446
- "real-management-page\">real page</a> to make your theme happy."
1447
  msgstr ""
1448
- "Désactivez la page de gestion virtuelle si vous devez créer une <a href="
1449
- "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">vraie page</a> "
1450
- "pour coller avec votre thème."
1451
 
1452
- #: options/panel3.php:101
1453
- msgid "Title of the page your visitors will use to manage their subscriptions."
1454
  msgstr ""
1455
- "Titre de la page que vos visiteurs vont utiliser pour gérer leurs "
1456
- "abonnements."
1457
 
1458
- #: options/panel3.php:109
1459
  msgid ""
1460
- "The permalink for your management page (something like <code>/manage-"
1461
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1462
- "b> actually exist in the system, but its link must follow your permalink "
1463
- "structure."
1464
  msgstr ""
1465
- "Le permalien pour votre page de gestion (quelque chose comme<code>/comment-"
1466
- "subscriptions</code> ou <code>/?page_id=345</code>). Cette page <b>n'existe "
1467
- "pas</b> actuellement dans le système mais son permalien doit respecter vos "
1468
- "réglages de permaliens de Wordpress."
1469
 
1470
- #: options/panel3.php:111
1471
  msgid ""
1472
- "Warning: it looks like the value you are using may be incompatible with your "
1473
- "permalink structure"
1474
  msgstr ""
1475
- "Attention: il semble que la valeur que vous utilisez pourrait être "
1476
- "incompatible avec votre structure de permalien."
1477
 
1478
- #: options/panel3.php:121
1479
  msgid ""
1480
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1481
- "Use <strong>single</strong> quotes for values."
 
1482
  msgstr ""
1483
- "Indiquer le code HTML que vous voulez ajouter dans la section HEAD de la "
1484
- "page. Utilisez des <strong>simples</strong> quotes pour les valeurs."
1485
-
1486
- #: options/panel3.php:144
1487
- msgid "Text shown to those who request to manage their subscriptions."
1488
- msgstr "Texte présenté à ceux qui demandent à gérer leurs abonnements."
1489
 
1490
- #: options/panel3.php:162
1491
  msgid ""
1492
- "Thank you note shown after the request here above has been processed. "
1493
- "Allowed tags: [post_title], [post_permalink]"
 
1494
  msgstr ""
1495
- "Note de remerciement affichée après que la requête ait été traitée. Tags "
1496
- "autorisés : [post_title], [post_permalink]"
1497
 
1498
- #: options/panel3.php:180
1499
  msgid ""
1500
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1501
- "[post_title], [post_permalink]"
 
1502
  msgstr ""
1503
- "Texte affiché à ceux qui désirent s'abonner sans commenter. Tags autorisés : "
1504
- "[post_title], [post_permalink]"
1505
 
1506
- #: options/panel3.php:198
1507
  msgid ""
1508
- "Thank you note shown after the subscription request has been processed "
1509
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1510
  msgstr ""
1511
- "Note de remerciement affichée après que la requête d'abonnement ait été "
1512
- "traitée (vérification désactivée). Tags autorisés : [post_title], "
1513
- "[post_permalink]"
1514
 
1515
- #: options/panel3.php:216
1516
  msgid ""
1517
- "Thank you note shown after the subscription request has been processed "
1518
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
1519
  msgstr ""
1520
- "Note de remerciement affichée après que la requête d'abonnement ait été "
1521
- "traitée (vérification activée). Tags autorisés : [post_title], "
1522
- "[post_permalink]"
1523
 
1524
- #: options/panel3.php:232
1525
- msgid "Introductory text for the authors' management page."
1526
- msgstr "Texte d'introduction pour la page de gestion des auteurs."
1527
 
1528
- #: options/panel3.php:248
1529
- msgid "Introductory text for the users' management page."
1530
- msgstr "Texte d'introduction pour la page de gestion des utilisateurs."
 
 
 
 
 
 
 
 
1531
 
1532
  #~ msgid ""
1533
  #~ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded v2.0.6\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:28-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:28-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: fr\n"
10
  "MIME-Version: 1.0\n"
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.8.7.1\n"
23
  "X-Loco-Target-Locale: fr_FR\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
 
26
+ #: includes/js/tinymce-lite/tinymce.min.js:3
27
+ msgid "id accesskey class dir lang style tabindex title"
28
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
+ #: includes/js/tinymce-lite/tinymce.min.js:3
31
  msgid ""
32
+ "address blockquote div dl fieldset form h1 h2 h3 h4 h5 h6 hr menu ol p pre "
33
+ "table ul"
34
  msgstr ""
35
 
36
+ #: includes/js/tinymce-lite/tinymce.min.js:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  msgid ""
38
+ "a abbr b bdo br button cite code del dfn em embed i iframe img input ins kbd "
39
+ "label map noscript object q s samp script select small span strong sub sup "
40
+ "textarea u var #text #comment"
41
  msgstr ""
 
 
42
 
43
+ #: includes/js/tinymce-lite/tinymce.min.js:3
44
+ msgid ""
45
+ "contenteditable contextmenu draggable dropzone hidden spellcheck translate"
46
  msgstr ""
 
47
 
48
+ #: includes/js/tinymce-lite/tinymce.min.js:3
49
+ msgid "article aside details dialog figure header footer hgroup section nav"
50
  msgstr ""
51
 
52
+ #: includes/js/tinymce-lite/tinymce.min.js:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  msgid ""
54
+ "audio canvas command datalist mark meter output progress time wbr video ruby "
55
+ "bdi keygen"
 
 
56
  msgstr ""
57
 
58
+ #: includes/js/tinymce-lite/tinymce.min.js:3
59
+ msgid "acronym applet basefont big font strike tt"
 
 
 
60
  msgstr ""
 
 
 
61
 
62
+ #: includes/js/tinymce-lite/tinymce.min.js:3
63
+ msgid "center dir isindex noframes"
 
 
64
  msgstr ""
 
 
65
 
66
+ #: includes/js/tinymce-lite/tinymce.min.js:4
67
+ msgid "a form meter progress dfn"
 
 
 
68
  msgstr ""
 
 
 
 
69
 
70
+ #: includes/js/tinymce-lite/tinymce.min.js:4
71
+ msgid "strong/b em/i"
 
 
 
 
 
72
  msgstr ""
73
 
74
+ #: includes/js/tinymce-lite/tinymce.min.js:4
75
+ msgid "ol ul sub sup blockquote span font a table tbody tr strong em b i"
 
 
 
76
  msgstr ""
 
 
 
77
 
78
+ #: includes/js/tinymce-lite/tinymce.min.js:4
79
+ msgid "p h1 h2 h3 h4 h5 h6 th td pre div address caption"
 
 
80
  msgstr ""
 
 
81
 
82
+ #: includes/js/tinymce-lite/tinymce.min.js:4
83
+ msgid "span"
 
 
 
 
84
  msgstr ""
 
 
 
85
 
86
+ #: includes/js/tinymce-lite/tinymce.min.js:6
87
+ msgid "previousSibling"
 
 
88
  msgstr ""
 
 
89
 
90
+ #: includes/js/tinymce-lite/tinymce.min.js:6
91
+ msgid "nextSibling"
 
 
 
 
92
  msgstr ""
 
 
 
 
 
93
 
94
+ #: includes/js/tinymce-lite/tinymce.min.js:7
95
+ msgid "h"
 
 
 
 
 
96
  msgstr ""
 
 
 
 
97
 
98
+ #: includes/js/tinymce-lite/tinymce.min.js:7
99
+ msgid "v"
 
100
  msgstr ""
101
 
102
+ #: includes/js/tinymce-lite/tinymce.min.js:7
103
+ msgid "t"
 
 
104
  msgstr ""
105
 
106
+ #: includes/js/tinymce-lite/tinymce.min.js:8
107
+ msgid "flex"
 
 
 
 
 
108
  msgstr ""
109
 
110
+ #: includes/js/tinymce-lite/tinymce.min.js:9
111
+ msgid "tooltip"
 
 
 
 
112
  msgstr ""
113
 
114
+ #: includes/js/tinymce-lite/tinymce.min.js:10
115
+ msgid "-sv"
 
 
116
  msgstr ""
117
 
118
+ #: includes/js/tinymce-lite/tinymce.min.js:10
119
+ msgid "-h"
 
 
 
120
  msgstr ""
121
 
122
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
123
+ #: utils/stcr_manage.php:383
124
+ msgid "Manage subscriptions"
125
+ msgstr "Gérer les abonnements"
 
 
 
 
126
 
127
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
128
+ msgid "Comment Form"
129
+ msgstr "Formulaire de commentaire"
 
 
130
 
131
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
132
+ msgid "Management Page"
133
+ msgstr "Page de gestion"
 
134
 
135
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
136
+ msgid "Notifications"
137
+ msgstr "Notifications"
 
 
138
 
139
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
140
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
141
+ msgid "Options"
142
+ msgstr "Options"
143
 
144
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
145
+ msgid "You can help"
146
+ msgstr "Vous pouvez aider"
 
 
 
147
 
148
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
149
+ msgid "Support"
150
+ msgstr "Support"
 
 
151
 
152
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
153
+ msgid "Donate"
 
 
 
154
  msgstr ""
155
 
156
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
157
+ msgid "Add New Subscription"
158
+ msgstr "Ajouter un nouvel abonnement"
 
 
 
159
 
160
+ #: options/panel1-add-subscription.php:13
161
+ #: options/panel1-edit-subscription.php:13
162
+ msgid "Post:"
163
+ msgstr "Billet :"
 
 
164
 
165
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
166
+ #: options/panel1.php:133 templates/key_expired.php:84
167
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
168
+ #: templates/user.php:57
169
+ msgid "Email"
170
+ msgstr "Email"
 
171
 
172
+ #: options/panel1-add-subscription.php:20
173
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
174
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
175
+ msgid "Status"
176
+ msgstr "Statut"
 
 
177
 
178
+ #: options/panel1-add-subscription.php:22
179
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
180
+ #: options/panel1.php:79 options/panel1.php:172
181
+ msgid "Active"
182
+ msgstr "Actif"
 
 
183
 
184
+ #: options/panel1-add-subscription.php:23
185
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
186
+ #: options/panel1.php:80
187
+ msgid "Replies only"
188
+ msgstr "Réponses seulement"
 
189
 
190
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
191
+ msgid "Ask user to confirm"
192
+ msgstr "Demander à l'utilisateur de confirmer"
 
193
 
194
+ #: options/panel1-add-subscription.php:26
195
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
196
+ msgid "Update"
197
+ msgstr "Mise à jour"
 
 
 
 
 
198
 
199
+ #: options/panel1-business-logic.php:23
200
+ msgid "Subscription added."
201
+ msgstr "Abonnement ajouté."
 
 
 
 
 
 
202
 
203
+ #: options/panel1-business-logic.php:39
204
+ msgid "Subscriptions updated."
205
+ msgstr "Abonnement mis à jour."
 
 
 
 
 
 
206
 
207
+ #: options/panel1-business-logic.php:51
208
+ msgid "Subscription deleted."
209
+ msgstr "Abonnement effacé."
 
 
 
 
 
 
210
 
211
+ #: options/panel1-business-logic.php:70 templates/author.php:23
212
+ #: templates/user.php:23
213
+ msgid "Subscriptions deleted:"
214
+ msgstr "Abonnements effacés :"
215
+
216
+ #: options/panel1-business-logic.php:74 templates/author.php:27
217
+ #: templates/user.php:27
218
+ msgid "Subscriptions suspended:"
219
+ msgstr "Abonnements suspendus :"
220
+
221
+ #: options/panel1-business-logic.php:78 templates/author.php:31
222
+ #: templates/user.php:31
223
+ msgid "Subscriptions activated:"
224
+ msgstr "Abonnements activés :"
225
+
226
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
227
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
228
+ #: templates/user.php:39
229
+ msgid "Subscriptions updated:"
230
+ msgstr "Abonnements mis à jour :"
231
+
232
+ #: options/panel1-business-logic.php:110
233
+ msgid "&laquo; Previous"
234
+ msgstr "&laquo; Précédent"
235
+
236
+ #: options/panel1-business-logic.php:114
237
+ msgid "Next &raquo;"
238
+ msgstr "Suivant &raquo;"
239
+
240
+ #: options/panel1-edit-subscription.php:8
241
+ msgid "Update Subscription"
242
+ msgstr "Mise à jour de l'abonnement"
243
+
244
+ #: options/panel1-edit-subscription.php:11
245
+ #: options/panel1-edit-subscription.php:21
246
+ #: options/panel1-edit-subscription.php:22
247
+ #: options/panel1-edit-subscription.php:23
248
+ msgid "optional"
249
+ msgstr "Optionnel"
250
+
251
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
252
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
253
+ #: templates/author.php:52 templates/user.php:52
254
  msgid ""
255
+ "Please remember: this operation cannot be undone. Are you sure you want to "
256
+ "proceed?"
 
257
  msgstr ""
258
+ "Rappelez-vous : cette opération ne peut pas être annulée. Êtes-vous sûr de "
259
+ "vouloir l'effectuer ?"
 
260
 
261
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
262
+ msgid "From"
263
+ msgstr "De"
264
+
265
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
266
+ msgid "To"
267
+ msgstr "À"
268
+
269
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
270
+ msgid "Keep unchanged"
271
+ msgstr "Garder inchangé"
272
+
273
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
274
+ msgid "Suspended"
275
+ msgstr "Suspendu"
276
+
277
+ #: options/panel1.php:20
278
+ msgid "Mass Update Subscriptions"
279
+ msgstr "Mise à jour globale des abonnements"
280
+
281
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
282
+ msgid "email address"
283
+ msgstr "Adresse email de l'expéditeur"
284
+
285
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
286
+ msgid "optional - new email address"
287
+ msgstr "Adresse email de l'expéditeur"
288
+
289
+ #: options/panel1.php:49
290
+ msgid "More info"
291
  msgstr ""
 
 
 
292
 
293
+ #: options/panel1.php:55
294
  msgid ""
295
+ "This option will allow you to change an email address for another one or to "
296
+ "update the same status for all the subscription on a specific email address."
 
297
  msgstr ""
 
 
 
298
 
299
+ #: options/panel1.php:68
300
+ msgid "Post ID"
301
+ msgstr "Billet (ID)"
302
 
303
+ #: options/panel1.php:83
304
+ msgid "Add"
305
+ msgstr "Ajouter"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
 
307
+ #: options/panel1.php:98
308
+ msgid "Search subscriptions"
309
+ msgstr "Chercher les abonnements"
310
 
311
+ #: options/panel1.php:102
312
+ #, php-format
313
  msgid ""
314
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
315
+ "where the"
 
 
 
316
  msgstr ""
317
+ "Vous pouvez soit <a href=\"%s\">lister tous les abonnements</a> soit trouver "
318
+ "ceux avec"
 
 
 
 
319
 
320
+ #: options/panel1.php:106
321
+ msgid "email"
322
+ msgstr "Email"
323
 
324
+ #: options/panel1.php:107
325
+ msgid "post ID"
326
+ msgstr "Billet (ID)"
327
+
328
+ #: options/panel1.php:108
329
+ msgid "status"
330
+ msgstr "Statut"
331
+
332
+ #: options/panel1.php:111
333
+ msgid "equals"
334
+ msgstr "égal à"
335
+
336
+ #: options/panel1.php:112
337
+ msgid "contains"
338
+ msgstr "contient"
339
+
340
+ #: options/panel1.php:113
341
+ msgid "does not contain"
342
+ msgstr "ne contient pas"
343
+
344
+ #: options/panel1.php:114
345
+ msgid "starts with"
346
+ msgstr "commence par"
347
+
348
+ #: options/panel1.php:115
349
+ msgid "ends with"
350
+ msgstr "finit par"
351
+
352
+ #: options/panel1.php:118
353
+ msgid "results per page:"
354
+ msgstr "Résultats par page :"
355
+
356
+ #: options/panel1.php:120
357
+ msgid "Search"
358
+ msgstr "Recherche"
359
+
360
+ #: options/panel1.php:128
361
+ msgid "Reverse the order by Post ID"
362
+ msgstr "Inverser l'ordre par ID de billet"
363
+
364
+ #: options/panel1.php:129 options/panel1.php:130
365
+ msgid "Reverse the order by Date/Time"
366
+ msgstr "Inverser l'ordre par date/heure"
367
 
368
+ #: options/panel1.php:132
369
+ msgid "Post (ID)"
370
+ msgstr "Billet (ID)"
 
 
 
 
 
 
371
 
372
+ #: options/panel1.php:135
373
+ msgid "Search query:"
374
+ msgstr "Recherche"
375
 
376
+ #: options/panel1.php:135
377
+ msgid "Rows:"
378
+ msgstr "Lignes :"
379
 
380
+ #: options/panel1.php:135
381
+ msgid "of"
382
+ msgstr "de"
383
 
384
+ #: options/panel1.php:142 options/panel1.php:158
385
+ msgid "Date and Time"
386
+ msgstr "Date et heure"
 
387
 
388
+ #: options/panel1.php:168
389
+ msgid "Replies"
390
+ msgstr "Réponses seulement"
391
 
392
+ #: options/panel1.php:169
393
+ msgid "All Comments"
394
+ msgstr "Tous les commentaires"
395
 
396
+ #: options/panel1.php:170
397
+ msgid "Unconfirmed"
398
  msgstr ""
399
 
400
+ #: options/panel1.php:171
401
+ msgid "Inactive"
402
+ msgstr "Actif"
403
 
404
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
405
+ #: templates/user.php:70
406
+ msgid "Delete"
407
+ msgstr "Supprimer"
 
 
 
408
 
409
+ #: options/panel1.php:201 options/panel1.php:211
410
+ msgid "Edit"
411
+ msgstr "Modifier"
412
+
413
+ #: options/panel1.php:203 options/panel1.php:209
414
+ msgid "Subscription"
415
  msgstr "Abonnements"
416
 
417
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
418
+ msgid "Action:"
419
+ msgstr "Action :"
 
 
 
 
420
 
421
+ #: options/panel1.php:226
422
+ msgid "Delete forever"
423
+ msgstr "Suppression définitive"
 
 
 
424
 
425
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
426
+ msgid "Suspend"
427
+ msgstr "Suspendre"
428
 
429
+ #: options/panel1.php:228
430
+ msgid "Activate and set to Y"
431
+ msgstr "Activer et mettre à Y"
432
 
433
+ #: options/panel1.php:229
434
+ msgid "Activate and set to R"
435
+ msgstr "Activer et mettre à R"
436
 
437
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
438
+ msgid "Activate"
439
+ msgstr "Activer"
440
+
441
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
442
+ msgid "Update subscriptions"
443
+ msgstr "Mettre à jour les abonnements"
444
+
445
+ #: options/panel1.php:237
446
+ msgid "Sorry, no subscriptions match your search criteria."
447
+ msgstr "Désolé, aucun abonnement ne correspond à votre recherche."
448
+
449
+ #: options/panel10.php:22 options/panel10.php:23
450
+ msgid "System Information"
451
+ msgstr ""
452
 
453
  #: options/panel2.php:12 options/panel2.php:63
454
  msgid "Enable default checkbox"
490
  msgid "Author label"
491
  msgstr "Texte pour l'auteur"
492
 
493
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
494
+ #: options/panel5.php:18 options/panel5.php:60
495
  msgid "Your settings have been successfully updated."
496
  msgstr "Vos réglages ont été sauvegardés avec succès."
497
 
498
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
499
+ #: options/panel5.php:20 options/panel5.php:62
500
  msgid "There was an error updating the following fields:"
501
  msgstr "Une erreur est apparue lors de la mise à jour des champs suivants :"
502
 
507
  msgid "Yes"
508
  msgstr "Oui"
509
 
510
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
511
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
512
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
513
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
514
+ #: utils/stcr_manage.php:784
515
+ msgid "No"
516
+ msgstr "Non"
517
+
518
  #: options/panel2.php:68
519
  msgid ""
520
  "Disable this option if you want to move the subscription checkbox to a "
612
  "Label shown to those who are already subscribed, but haven't clicked on the "
613
  "confirmation link yet. Allowed tag: [manager_link]"
614
  msgstr ""
615
+ "Message affiché à ceux qui sont déjà abonnés mais n'ont pas encore cliqué "
616
+ "sur le lien de confirmation. Tag autorisé : [manager_link]"
617
+
618
+ #: options/panel2.php:225
619
+ msgid ""
620
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
621
+ msgstr ""
622
+ "Message affiché aux auteurs (et administrateurs). Tag autorisé: "
623
+ "[manager_link]"
624
+
625
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
626
+ #: options/panel5.php:195
627
+ msgid "Save Changes"
628
+ msgstr "Sauvegarder les modifications"
629
+
630
+ #: options/panel3.php:13 options/panel3.php:87
631
+ msgid "Virtual Management Page"
632
+ msgstr "Page de gestion virtuelle"
633
+
634
+ #: options/panel3.php:18 options/panel3.php:96
635
+ msgid "Page title"
636
+ msgstr "Titre de la page"
637
+
638
+ #: options/panel3.php:23 options/panel3.php:105
639
+ msgid "Management URL"
640
+ msgstr "Page de gestion"
641
+
642
+ #: options/panel3.php:28 options/panel3.php:117
643
+ msgid "Custom HEAD meta"
644
+ msgstr "Meta HEAD personnalisé"
645
+
646
+ #: options/panel3.php:34 options/panel3.php:131
647
+ msgid "Request link"
648
+ msgstr "Demande de lien"
649
+
650
+ #: options/panel3.php:39 options/panel3.php:149
651
+ msgid "Request submitted"
652
+ msgstr "Demande envoyée"
653
+
654
+ #: options/panel3.php:44 options/panel3.php:167
655
+ msgid "Subscribe without commenting"
656
+ msgstr "S'abonner sans commenter"
657
+
658
+ #: options/panel3.php:49 options/panel3.php:185
659
+ msgid "Subscription processed"
660
+ msgstr "Abonnement traité"
661
+
662
+ #: options/panel3.php:54 options/panel3.php:203
663
+ msgid "Subscription processed (DCI)"
664
+ msgstr "Abonnement traité (DCI)"
665
+
666
+ #: options/panel3.php:59 options/panel3.php:220
667
+ msgid "Authors"
668
+ msgstr "Auteurs"
669
+
670
+ #: options/panel3.php:64 options/panel3.php:236
671
+ msgid "Users"
672
+ msgstr "Utilisateurs"
673
+
674
+ #: options/panel3.php:90
675
+ msgid "Enabled"
676
+ msgstr "Activé"
677
+
678
+ #: options/panel3.php:91
679
+ msgid "Disabled"
680
+ msgstr "Désactivé"
681
+
682
+ #: options/panel3.php:92
683
+ msgid ""
684
+ "Disable the virtual management page if you need to create a <a href="
685
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
686
+ "real-management-page\">real page</a> to make your theme happy."
687
+ msgstr ""
688
+ "Désactivez la page de gestion virtuelle si vous devez créer une <a href="
689
+ "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">vraie page</a> "
690
+ "pour coller avec votre thème."
691
+
692
+ #: options/panel3.php:101
693
+ msgid "Title of the page your visitors will use to manage their subscriptions."
694
+ msgstr ""
695
+ "Titre de la page que vos visiteurs vont utiliser pour gérer leurs "
696
+ "abonnements."
697
+
698
+ #: options/panel3.php:109
699
+ msgid ""
700
+ "The permalink for your management page (something like <code>/manage-"
701
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
702
+ "b> actually exist in the system, but its link must follow your permalink "
703
+ "structure."
704
+ msgstr ""
705
+ "Le permalien pour votre page de gestion (quelque chose comme<code>/comment-"
706
+ "subscriptions</code> ou <code>/?page_id=345</code>). Cette page <b>n'existe "
707
+ "pas</b> actuellement dans le système mais son permalien doit respecter vos "
708
+ "réglages de permaliens de Wordpress."
709
+
710
+ #: options/panel3.php:111
711
+ msgid ""
712
+ "Warning: it looks like the value you are using may be incompatible with your "
713
+ "permalink structure"
714
+ msgstr ""
715
+ "Attention: il semble que la valeur que vous utilisez pourrait être "
716
+ "incompatible avec votre structure de permalien."
717
+
718
+ #: options/panel3.php:121
719
+ msgid ""
720
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
721
+ "Use <strong>single</strong> quotes for values."
722
+ msgstr ""
723
+ "Indiquer le code HTML que vous voulez ajouter dans la section HEAD de la "
724
+ "page. Utilisez des <strong>simples</strong> quotes pour les valeurs."
725
+
726
+ #: options/panel3.php:127 options/panel4.php:135
727
+ msgid "Messages"
728
+ msgstr "Messages"
729
+
730
+ #: options/panel3.php:144
731
+ msgid "Text shown to those who request to manage their subscriptions."
732
+ msgstr "Texte présenté à ceux qui demandent à gérer leurs abonnements."
733
+
734
+ #: options/panel3.php:162
735
+ msgid ""
736
+ "Thank you note shown after the request here above has been processed. "
737
+ "Allowed tags: [post_title], [post_permalink]"
738
+ msgstr ""
739
+ "Note de remerciement affichée après que la requête ait été traitée. Tags "
740
+ "autorisés : [post_title], [post_permalink]"
741
+
742
+ #: options/panel3.php:180
743
+ msgid ""
744
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
745
+ "[post_title], [post_permalink]"
746
+ msgstr ""
747
+ "Texte affiché à ceux qui désirent s'abonner sans commenter. Tags autorisés : "
748
+ "[post_title], [post_permalink]"
749
+
750
+ #: options/panel3.php:198
751
+ msgid ""
752
+ "Thank you note shown after the subscription request has been processed "
753
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
754
+ msgstr ""
755
+ "Note de remerciement affichée après que la requête d'abonnement ait été "
756
+ "traitée (vérification désactivée). Tags autorisés : [post_title], "
757
+ "[post_permalink]"
758
 
759
+ #: options/panel3.php:216
760
  msgid ""
761
+ "Thank you note shown after the subscription request has been processed "
762
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
763
  msgstr ""
764
+ "Note de remerciement affichée après que la requête d'abonnement ait été "
765
+ "traitée (vérification activée). Tags autorisés : [post_title], "
766
+ "[post_permalink]"
 
 
 
 
767
 
768
+ #: options/panel3.php:232
769
+ msgid "Introductory text for the authors' management page."
770
+ msgstr "Texte d'introduction pour la page de gestion des auteurs."
771
 
772
+ #: options/panel3.php:248
773
+ msgid "Introductory text for the users' management page."
774
+ msgstr "Texte d'introduction pour la page de gestion des utilisateurs."
 
 
 
775
 
776
  #: options/panel4.php:15 options/panel4.php:94
777
  msgid "Sender name"
835
  "will be the same as the Sender email address."
836
  msgstr ""
837
 
 
 
 
 
838
  #: options/panel4.php:147
839
  msgid "Subject of the notification email. Allowed tag: [post_title]"
840
  msgstr "Sujet de l'email de notification. Tag autorisé : [post_title]"
899
  "[blog_name]"
900
  msgstr "Sujet de l'email de confirmation. Tag autorisé : [post_title]"
901
 
902
+ #: options/panel5.php:28
903
+ msgid "Safetly Uninstall"
904
+ msgstr ""
905
+
906
+ #: options/panel5.php:31 options/panel5.php:84
907
+ msgid "Autopurge requests"
908
+ msgstr "Purger automatiquement les requêtes"
909
+
910
+ #: options/panel5.php:34 options/panel5.php:93
911
+ msgid "Enable double check"
912
+ msgstr "Autoriser la vérification"
913
+
914
+ #: options/panel5.php:37 options/panel5.php:101
915
+ msgid "Subscribe authors"
916
+ msgstr "Abonné(e)"
917
+
918
+ #: options/panel5.php:40 options/panel5.php:111
919
+ msgid "Enable HTML emails"
920
+ msgstr "Activer les émails en HTML"
921
+
922
+ #: options/panel5.php:43
923
+ msgid "HTMLify Links in HTML emails"
924
+ msgstr "HTMliser les liens dans les emails HTML"
925
+
926
+ #: options/panel5.php:46
927
+ msgid "Send trackbacks"
928
+ msgstr "Envoyer les trackbacks"
929
+
930
+ #: options/panel5.php:49
931
+ msgid "Notify admin"
932
+ msgstr "Notifier l'admin"
933
+
934
+ #: options/panel5.php:52 options/panel5.php:149
935
+ msgid "Let admin subscribe"
936
+ msgstr "Permettre aux admins de s'abonner"
937
+
938
+ #: options/panel5.php:55 options/panel5.php:158
939
+ msgid "BCC admin on Notifications"
940
+ msgstr "Notifications"
941
+
942
+ #: options/panel5.php:76
943
+ msgid "Safely Uninstall"
944
+ msgstr ""
945
+
946
+ #: options/panel5.php:80
947
+ msgid ""
948
+ "This option will allow you to delete the plugin with WordPress without "
949
+ "loosing your subscribers. Any database table and plugin options are wipeout."
950
+ msgstr ""
951
+
952
+ #: options/panel5.php:87
953
+ msgid "days"
954
+ msgstr "jours"
955
+
956
+ #: options/panel5.php:88
957
+ msgid ""
958
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
959
+ "this feature."
960
+ msgstr ""
961
+ "Effacer les abonnements en attente (non confirmés) après X jours. Zéro "
962
+ "désactivera cette fonction."
963
+
964
+ #: options/panel5.php:97
965
+ msgid ""
966
+ "Send a notification email to confirm the subscription (to avoid addresses "
967
+ "misuse)."
968
+ msgstr ""
969
+ "Envoyer une notification par email pour confirmer l'abonnement (afin "
970
+ "d'éviter les fausses adresses)."
971
+
972
+ #: options/panel5.php:106
973
+ msgid ""
974
+ "Automatically subscribe authors to their own articles (not retroactive)."
975
+ msgstr ""
976
+ "Abonner automatiquement les auteurs à leurs propres articles (non "
977
+ "rétroactif)."
978
+
979
+ #: options/panel5.php:115
980
+ msgid ""
981
+ "If enabled, will send email messages with content-type = text/html instead "
982
+ "of text/plain"
983
+ msgstr ""
984
+ "Si activé, enverra les messages avec content-type = text/html au lieu de "
985
+ "text/plain"
986
+
987
+ #: options/panel5.php:120
988
+ msgid "HTMLify links in emails"
989
+ msgstr "HTMLliser les liens dans les emails"
990
+
991
+ #: options/panel5.php:125
992
+ msgid ""
993
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
994
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
995
+ msgstr ""
996
+ "Si activé, encadrera tous les liens dans les messages avec <code>&lt;a href="
997
+ "\"\"&gt;&lt;/a&gt;</code> (uniquement quand les mails HTML sont activés)."
998
+
999
+ #: options/panel5.php:130
1000
+ msgid "Process trackbacks"
1001
+ msgstr "Envoyer les trackbacks"
1002
+
1003
+ #: options/panel5.php:134
1004
+ msgid ""
1005
+ "Notify users when a new trackback or pingback is added to the discussion."
1006
+ msgstr ""
1007
+ "Notifier les utilisateurs quand un nouveau trackback ou pingback est ajouté "
1008
+ "à la discussion."
1009
+
1010
+ #: options/panel5.php:139
1011
+ msgid "Track all subscriptions"
1012
+ msgstr "Envoyer abonnements sans commentaire"
1013
+
1014
+ #: options/panel5.php:144
1015
+ msgid "Notify the administrator when users subscribe without commenting."
1016
+ msgstr ""
1017
+ "Notifier l'administrateur quand les utilisateurs souscrivent sans commenter."
1018
+
1019
+ #: options/panel5.php:153
1020
+ msgid "Let the administrator subscribe to comments when logged in."
1021
+ msgstr ""
1022
+ "Permettre à l'administrateur de s'abonner aux commentaires quand il est "
1023
+ "connecté."
1024
+
1025
+ #: options/panel5.php:162
1026
+ msgid "Send a copy of all Notifications to the administrator."
1027
+ msgstr "Envoyer une copie de toutes les notifications à l'administrateur."
1028
+
1029
+ #: options/panel5.php:167
1030
+ msgid "StCR Unique Key"
1031
+ msgstr "Clef unique StCR"
1032
+
1033
+ #: options/panel5.php:172
1034
+ msgid "This Unique Key is not set, please click the following button to "
1035
+ msgstr ""
1036
+ "Cette clef unique n'est pas définie, veuillez cliquer sur le bouton suivant "
1037
+ "pour"
1038
+
1039
+ #: options/panel5.php:176 options/panel5.php:187
1040
+ msgid "Generate"
1041
+ msgstr "générer"
1042
+
1043
+ #: options/panel5.php:184
1044
+ msgid ""
1045
+ "This Unique Key will be use to send the notification to your subscribers "
1046
+ "with more security."
1047
+ msgstr ""
1048
+ "Cette ckef unique sera utilisée pour envoyer les notifications à vos abonnés "
1049
+ "avec plus de\n"
1050
+ "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsecurity."
1051
+
1052
  #: options/panel7.php:8 options/panel8.php:8
1053
  msgid "Support the developers"
1054
  msgstr "Soutenez l'auteur"
1088
  "<strong>Subscribe to Comments Reloaded</strong> etc... Quoi que vous "
1089
  "fassiez, merci d'utiliser mon plugin !"
1090
 
1091
+ #: options/panel7.php:23
1092
+ msgid "Subscribe to the Beta testers"
1093
+ msgstr "Abonné(e)"
1094
+
1095
+ #: options/panel7.php:24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1096
  msgid ""
1097
+ "Before a new Update we release a Beta version so that our current users can "
1098
+ "give us feedback if they find a bug, If you want to join the tester list you "
1099
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
1100
+ "a>"
1101
  msgstr ""
1102
 
1103
+ #: options/panel7.php:26
1104
+ msgid "Vote and show your appreciation"
1105
+ msgstr "Votez et montrez votre satisfaction"
1106
 
1107
+ #: options/panel7.php:27
1108
+ msgid ""
1109
+ "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
1110
+ "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
1111
+ "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
1112
+ msgstr ""
1113
+ "Faites savoir que <strong>Subscribe to Comments Reloaded</strong> fonctionne "
1114
+ "pour vous et à quel point il est bon. <a href=\"http://wordpress.org/extend/"
1115
+ "plugins/subscribe-to-comments-reloaded/\">Notez le</a>sur sa page de dépôt "
1116
+ "de plugins."
1117
 
1118
+ #: options/panel8.php:18
1119
+ msgid "Did you find a Bug on the plugin?"
1120
+ msgstr "Avez-vous trouvé un bug dans ce plugin ?"
1121
 
1122
+ #: options/panel8.php:19
1123
+ msgid ""
1124
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1125
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1126
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1127
+ "WordPress Support page."
1128
+ msgstr ""
1129
+ "Veuillez reporter tout bug à la <a href=\"https://github.com/stcr/subscribe-"
1130
+ "to-comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1131
+ "%3E&labels=bug\" target=\"_blank\">page GitHub</a> plutôt que sur la page de "
1132
+ "support de Wordpress.org."
1133
 
1134
+ #: options/panel9.php:11
1135
+ msgid "Support Subscribe to Comments Reloaded"
1136
+ msgstr "Remarque importante concernant Subscribe to Comments Reloaded"
1137
 
1138
+ #: options/panel9.php:12
 
1139
  msgid ""
1140
+ "Every contribution that you make is high valuable, so if you consider this "
1141
+ "plugin a helpful tool we will use your donation to invest on support and "
1142
+ "developing time."
1143
  msgstr ""
 
 
 
 
 
 
1144
 
1145
+ #: templates/author.php:57
1146
+ msgid "Title"
1147
+ msgstr "Titre"
1148
 
1149
+ #: templates/author.php:58 templates/user.php:58
1150
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1151
+ msgstr ""
1152
+ "Légende : Y = tous les commentaires, R = réponses seulement, C = inactif"
1153
 
1154
+ #: templates/author.php:69 templates/user.php:67
1155
+ msgid "Select all"
1156
+ msgstr "Sélectionner tout"
1157
 
1158
+ #: templates/author.php:70 templates/user.php:68
1159
+ msgid "Invert selection"
1160
+ msgstr "Inverser la sélection"
1161
 
1162
+ #: templates/author.php:74 templates/user.php:72
1163
+ msgid "All comments"
1164
+ msgstr "Tous les commentaires"
1165
 
1166
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1167
+ msgid "Replies to my comments"
1168
+ msgstr "Seulement les réponses à mes commentaires"
1169
 
1170
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1171
+ #: templates/user.php:79
1172
+ msgid "No subscriptions match your search criteria."
1173
+ msgstr "Aucun abonnement ne correspond à votre recherche."
1174
 
1175
+ #: templates/key_expired.php:8
1176
+ msgid ""
1177
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1178
+ "enter your email below and a new link will be send."
1179
+ msgstr ""
1180
 
1181
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1182
+ #: templates/subscribe.php:106
1183
+ msgid "Send"
1184
+ msgstr "Envoyer"
1185
 
1186
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1187
+ msgid "New subscription to"
1188
+ msgstr "Nouvel abonnement à"
1189
 
1190
+ #: templates/subscribe.php:44
1191
+ msgid "User:"
1192
+ msgstr "Utilisateur :"
1193
 
1194
+ #: templates/user.php:63
1195
+ msgid "F j, Y"
1196
+ msgstr ""
1197
 
1198
+ #: templates/wrong-request.php:9
1199
+ msgid "You have request to manage another email address and this is forbidden."
1200
+ msgstr ""
1201
 
1202
+ #: utils/stcr_manage.php:246
1203
+ msgid ""
1204
+ "Notify me of followup comments via e-mail. You can also <a "
1205
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1206
+ msgstr ""
1207
+ "Notifiez-moi des commentaires à venir via émail. Vous pouvez aussi <a "
1208
+ "href='[subscribe_link]'>vous abonner</a> sans commenter."
1209
 
1210
+ #: utils/stcr_manage.php:247
1211
+ msgid ""
1212
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1213
+ "subscriptions."
1214
+ msgstr ""
1215
+ "Vous êtes abonné(e) aux commentaires de ce billet.<a "
1216
+ "href='[manager_link]'>Gérer vos abonnements</a>.\""
1217
 
1218
+ #: utils/stcr_manage.php:248
1219
+ msgid ""
1220
+ "Your subscription to this post needs to be confirmed. <a "
1221
+ "href='[manager_link]'>Manage your subscriptions</a>."
1222
+ msgstr ""
1223
+ "Votre abonnement aux commentaires de ce billet a besoin d'être confirmé. <a "
1224
+ "href='[manager_link]'>Gérer vos abonnements</a>."
1225
 
1226
+ #: utils/stcr_manage.php:249
1227
+ msgid ""
1228
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1229
+ msgstr ""
1230
+ "Vous pouvez <a href='[manager_link]'>gérer les abonnements</a> aux "
1231
+ "commentaires de ce billet."
1232
 
1233
+ #: utils/stcr_manage.php:255
1234
+ msgid ""
1235
+ "To manage your subscriptions, please enter your email address here below. We "
1236
+ "will send you a message containing the link to access your personal "
1237
+ "management page."
1238
+ msgstr ""
1239
+ "Pour gérer vos abonnements, veuillez entrer votre adresse email ci-dessous. "
1240
+ "Nous vous enverrons un message contenant le lien pour accéder à votre page "
1241
+ "personnelle de gestion."
1242
 
1243
+ #: utils/stcr_manage.php:256
1244
+ msgid ""
1245
+ "Thank you for using our subscription service. Your request has been "
1246
+ "completed, and you should receive an email with the management link in a few "
1247
+ "minutes."
1248
  msgstr ""
1249
+ "Merci d'utiliser notre service d'abonnement. Votre requête a été complétée "
1250
+ "et vous devriez recevoir un email avec un lien de gestion dans quelques "
1251
+ "minutes."
1252
 
1253
+ #: utils/stcr_manage.php:257
1254
+ msgid ""
1255
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1256
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1257
+ "form here below and you're all set."
1258
+ msgstr ""
1259
+ "Vous pouvez suivre la discussion sur <strong>[post_title]</strong> sans "
1260
+ "avoir à laisser un commentaire. Chouette, pas vrai ? Entrez simplement votre "
1261
+ "adresse email dans le champ ci-dessous."
1262
 
1263
+ #: utils/stcr_manage.php:258
1264
+ msgid ""
1265
+ "Thank you for using our subscription service. Your request has been "
1266
+ "completed. You will receive a notification email every time a new comment to "
1267
+ "this article is approved and posted by the administrator."
1268
+ msgstr ""
1269
+ "Merci d'utiliser notre service d'abonnement. Votre requête a abouti. Vous "
1270
+ "recevrez une notification par email à chaque fois qu'un nouveau commentaire "
1271
+ "sur cet article sera posté et approuvé par l'administrateur."
1272
 
1273
+ #: utils/stcr_manage.php:259
1274
+ msgid ""
1275
+ "Thank you for using our subscription service. In order to confirm your "
1276
+ "request, please check your email for the verification message and follow the "
1277
+ "instructions."
1278
+ msgstr ""
1279
+ "Merci d'utiliser notre service d'abonnement. Afin de confirmer votre "
1280
+ "requête, veuillez vérifier votre courrier email pour le message de "
1281
+ "vérification et suivre les instructions."
1282
 
1283
+ #: utils/stcr_manage.php:260
1284
+ msgid ""
1285
+ "In order to cancel or suspend one or more notifications, select the "
1286
+ "corresponding checkbox(es) and click on the button at the end of the list."
1287
+ msgstr ""
1288
+ "Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
1289
+ "la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
1290
+ "la liste."
1291
 
1292
+ #: utils/stcr_manage.php:261
1293
+ msgid ""
1294
+ "In order to cancel or suspend one or more notifications, select the "
1295
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1296
+ "You are currently subscribed to:"
1297
+ msgstr ""
1298
+ "Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
1299
+ "la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
1300
+ "la liste. Vous êtes actuellement abonné(e) à:"
1301
 
1302
+ #: utils/stcr_manage.php:265
1303
+ msgid "There is a new comment to [post_title]"
1304
+ msgstr "Il y a un nouveau commentaire à [post_title]"
1305
 
1306
+ #: utils/stcr_manage.php:266
1307
+ msgid ""
1308
+ "There is a new comment to [post_title].\n"
1309
+ "Comment Link: [comment_permalink]\n"
1310
+ "Author: [comment_author]\n"
1311
+ "Comment:\n"
1312
+ "[comment_content]\n"
1313
+ "Permalink: [post_permalink]\n"
1314
+ "Manage your subscriptions: [manager_link]"
1315
+ msgstr ""
1316
+ "Il y a un nouveau commentaire à [post_title].\n"
1317
+ "Lien du commentaire : [comment_permalink]\n"
1318
+ "Auteur : [comment_author]\n"
1319
+ "Commentaire :\n"
1320
+ "[comment_content]\n"
1321
+ "Lien permanent : [post_permalink]\n"
1322
+ "Gérer vos abonnements : [manager_link]"
1323
 
1324
+ #: utils/stcr_manage.php:267
1325
+ msgid "Please confirm your subscription to [post_title]"
1326
+ msgstr "Veuillez confirmer votre abonnement à [post_title]"
1327
 
1328
+ #: utils/stcr_manage.php:268
1329
+ msgid ""
1330
+ "You have requested to be notified every time a new comment is added to:\n"
1331
+ "[post_permalink]\n"
1332
+ "\n"
1333
+ "Please confirm your request by clicking on this link:\n"
1334
+ "[confirm_link]"
1335
+ msgstr ""
1336
+ "Vous avez demandé à être averti à chaque fois qu'un nouveau commentaire est "
1337
+ "ajouté à :\n"
1338
+ "[post_permalink]\n"
1339
+ "\n"
1340
+ "Veuillez confirmer votre demande en cliquant sur ce lien :\n"
1341
+ "[confirm_link]"
1342
 
1343
+ #: utils/stcr_manage.php:269
1344
+ msgid "Manage your subscriptions on [blog_name]"
1345
+ msgstr "Gestion de vos abonnements sur [blog_name]"
1346
 
1347
+ #: utils/stcr_manage.php:270
1348
+ msgid ""
1349
+ "You have requested to manage your subscriptions to the articles on "
1350
+ "[blog_name]. Please check the Subscriptions management link in your email"
1351
+ msgstr ""
1352
 
1353
+ #: utils/stcr_manage.php:271
1354
+ msgid ""
1355
+ "You have requested to manage your subscriptions to the articles on "
1356
+ "[blog_name]. Follow this link to access your personal page:\n"
1357
+ "[manager_link]"
1358
+ msgstr ""
1359
+ "Vous avez demandé à gérer vos abonnements aux articles sur [blog_name]. "
1360
+ "Suivez ce lien pour accéder à votre page personnelle :\n"
1361
+ "[manager_link]"
1362
 
1363
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1364
+ msgid "StCR System"
1365
+ msgstr ""
 
1366
 
1367
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1368
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1369
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1370
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1371
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1372
+ msgid "You do not have sufficient permissions to access this page."
1373
  msgstr ""
1374
 
1375
+ #: utils/stcr_manage.php:755
1376
+ msgid "Subscriptions"
1377
+ msgstr "Abonnements"
1378
 
1379
+ #: utils/stcr_manage.php:811
1380
+ msgid ""
1381
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1382
+ msgstr ""
1383
+ "Vous avez besoin d'aide pour utiliser Subscribe to Comments Reloaded ? "
1384
+ "Visiter le "
1385
 
1386
+ #: utils/stcr_manage.php:811
1387
+ msgid "support forum"
1388
+ msgstr "forum de support officiel"
1389
 
1390
+ #: utils/stcr_manage.php:812
1391
+ msgid "Feeling generous?"
1392
+ msgstr "Vous vous sentez d'humeur généreuse ?"
1393
 
1394
+ #: utils/stcr_manage.php:812
1395
+ msgid "Donate a few bucks!"
1396
+ msgstr "Faîtes don de quelques euros !"
1397
 
1398
+ #: utils/stcr_upgrade.php:55
1399
+ msgid "Important Notice"
1400
+ msgstr "Remarque importante"
1401
 
1402
+ #: utils/stcr_upgrade.php:103
1403
+ msgid ""
1404
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1405
+ "database has been sanitized to prevent the raw html messages. <a class="
1406
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1407
+ "src=\""
1408
+ msgstr ""
1409
 
1410
+ #: utils/stcr_upgrade.php:158
1411
+ msgid ""
1412
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1413
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1414
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1415
+ msgstr ""
1416
+ "Les données de souscription aux commentaires du plugin <strong>Subscribe to "
1417
+ "Comments</strong> ont été détectées et automatiquement importées dans "
1418
+ "<strong>Subscribe to Comments Reloaded</strong>."
1419
 
1420
+ #: utils/stcr_upgrade.php:158
1421
+ msgid ""
1422
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1423
+ "Comments to prevent confusion between the two plugins."
1424
+ msgstr ""
1425
+ "Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
1426
+ "Comments pour éviter toute confusion entre les deux plugins."
1427
 
1428
+ #: utils/stcr_upgrade.php:159
1429
+ msgid ""
1430
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1431
+ "that you want to import, you'll need to import that data manually, as only "
1432
+ "one import routine will ever run to prevent data loss."
1433
  msgstr ""
1434
+ "Si vous avez des données de souscription de Subscribe to Comments Reloaded < "
1435
+ "v2.0 que vous désirez importer, vous devrez importer ces données "
1436
+ "manuellement car il n'y a qu'une seule routine d'importation qui "
1437
+ "fonctionnera pour éviter la perte de données."
1438
 
1439
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1440
+ #: utils/stcr_upgrade.php:381
1441
  msgid ""
1442
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1443
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1444
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1445
+ "\"stcr-loading-animation\" src=\""
1446
  msgstr ""
1447
 
1448
+ #: utils/stcr_upgrade.php:231
1449
+ msgid ""
1450
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1451
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1452
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1453
+ msgstr ""
1454
+ "Les données de souscription aux commentaires du plugin <strong>Comment Reply "
1455
+ "Notification</strong> ont été détectées et automatiquement importées dans "
1456
+ "<strong>Subscribe to Comments Reloaded</strong>."
1457
 
1458
+ #: utils/stcr_upgrade.php:231
1459
  msgid ""
1460
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1461
+ "Notification to prevent confusion between the two plugins."
1462
  msgstr ""
1463
+ "Il est recommandé que vous <strong>désactiviez</strong> Comment Reply "
1464
+ "Notification pour éviter toute confusion entre les deux plugins."
1465
 
1466
+ #: utils/stcr_upgrade.php:378
1467
  msgid ""
1468
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1469
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1470
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1471
+ "Reloaded</strong>."
1472
  msgstr ""
1473
+ "Les données de souscription aux commentaires du plugin <strong>WP Comment "
1474
+ "Subscriptions<</strong> ont été détectées et automatiquement importées dans "
1475
+ "<strong>Subscribe to Comments Reloaded</strong>."
1476
 
1477
+ #: utils/stcr_upgrade.php:378
1478
  msgid ""
1479
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1480
+ "Subscriptions to prevent confusion between the two plugins."
1481
  msgstr ""
1482
+ "Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
1483
+ "Comments pour éviter toute confusion entre les deux plugins."
1484
 
1485
+ #: utils/stcr_upgrade.php:379
1486
  msgid ""
1487
+ "If you have subscription data from another plugin (such as Subscribe to "
1488
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1489
+ "you'll need to import that data manually, as only one import routine will "
1490
+ "ever run to prevent data loss."
1491
  msgstr ""
1492
+ "Si vous avez des données de souscription d'un autre plugin (tel que "
1493
+ "Subscribe to Comments ou Subscribe to Comments Reloaded < v2.0) que vous "
1494
+ "désirez importer, vous devrez importer ces données manuellement car il n'y a "
1495
+ "qu'une seule routine d'importation qui fonctionnera pour éviter la perte de "
1496
+ "données."
1497
 
1498
+ #: utils/stcr_upgrade.php:380
1499
+ msgid ""
1500
+ "<strong>Note:</strong> If you were previously using the "
1501
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1502
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1503
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1504
+ "respectively."
1505
+ msgstr ""
1506
+ "<strong>Remarque:</strong> si vous utilisiez précédemment la fonction "
1507
+ "<code>wp_comment_subscriptions_show()</code> ou le shortcode <code>[wpcs-"
1508
+ "subscribe-url]</code>, vous devez les remplacer respectivement par "
1509
+ "<code>subscribe_reloaded_show()</code> et <code>[subscribe-url]</code>."
1510
 
1511
+ #: utils/stcr_upgrade.php:394
1512
  msgid ""
1513
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
 
1514
  msgstr ""
 
 
 
 
 
 
1515
 
1516
+ #: utils/stcr_upgrade.php:395
1517
  msgid ""
1518
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1519
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1520
  msgstr ""
 
 
 
 
 
 
1521
 
1522
+ #: utils/stcr_upgrade.php:396
1523
+ msgid ""
1524
+ "Please consider to make a donation to support the plugin, you can donate via "
1525
+ "<a href=\"\n"
1526
+ "https://www.paypal.com/cgi-bin/webscr?"
1527
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1528
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1529
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1530
  msgstr ""
 
1531
 
1532
+ #: utils/stcr_upgrade.php:398
1533
+ msgid ""
1534
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1535
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1536
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1537
+ "a><img class=\"stcr-loading-animation\" src=\""
1538
  msgstr ""
 
 
 
 
 
 
 
 
 
 
1539
 
1540
+ #: utils/stcr_upgrade.php:409
1541
+ msgid ""
1542
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1543
+ "160106."
1544
  msgstr ""
 
 
 
 
 
 
1545
 
1546
+ #: utils/stcr_upgrade.php:410
1547
  msgid ""
1548
+ "This version includes many changes and fixes to improve your experience with "
1549
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1550
+ "email templates, Subscription Checkbox position, and more!"
1551
  msgstr ""
 
 
 
 
 
 
 
1552
 
1553
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1554
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1555
  msgid ""
1556
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1557
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1558
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1559
+ "class=\"stcr-loading-animation\" src=\""
1560
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1561
 
1562
+ #: utils/stcr_upgrade.php:424
1563
+ msgid ""
1564
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1565
+ "160115."
1566
  msgstr ""
1567
 
1568
+ #: utils/stcr_upgrade.php:425
1569
+ msgid ""
1570
+ "This version includes fixes to broken links while managing your subscriptions"
1571
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1572
 
1573
+ #: utils/stcr_upgrade.php:439
1574
  msgid ""
1575
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1576
+ "160831"
 
1577
  msgstr ""
 
 
 
1578
 
1579
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1580
+ msgid "This version includes fixes to many bugs and also new features, "
1581
  msgstr ""
 
 
1582
 
1583
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1584
  msgid ""
1585
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1586
+ "address. This will help the subscribers to use the Reply option in their "
1587
+ "email agents."
 
1588
  msgstr ""
 
 
 
 
1589
 
1590
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1591
  msgid ""
1592
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1593
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1594
  msgstr ""
 
 
1595
 
1596
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1597
  msgid ""
1598
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1599
+ "without loosing your subscriptions. You can use this option also for reset "
1600
+ "all the settings, see the FAQ."
1601
  msgstr ""
 
 
 
 
 
 
1602
 
1603
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1604
  msgid ""
1605
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1606
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1607
+ "Post Type."
1608
  msgstr ""
 
 
1609
 
1610
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1611
  msgid ""
1612
+ "<strong>New Feature</strong> A new field was added under the notification "
1613
+ "options to and the management link only by email and not to display it on "
1614
+ "the request link page."
1615
  msgstr ""
 
 
1616
 
1617
+ #: utils/stcr_upgrade.php:461
1618
  msgid ""
1619
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1620
+ "160902"
1621
  msgstr ""
 
 
 
1622
 
1623
+ #: utils/stcr_upgrade.php:464
1624
  msgid ""
1625
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1626
+ "previous 160831 version."
1627
  msgstr ""
 
 
 
1628
 
1629
+ #: utils/stcr_utils.php:195
1630
+ msgid "StCR Notification"
1631
+ msgstr "Notifications"
1632
 
1633
+ #: wp_subscribe_reloaded.php:114
1634
+ msgid "Settings"
1635
+ msgstr "Réglages"
1636
+
1637
+ #: wp_subscribe_reloaded.php:1086
1638
+ msgid "Don't subscribe"
1639
+ msgstr "Ne pas s'abonner"
1640
+
1641
+ #: wp_subscribe_reloaded.php:1087
1642
+ msgid "All"
1643
+ msgstr "S'abonner"
1644
 
1645
  #~ msgid ""
1646
  #~ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
langs/subscribe-reloaded-he_IL.mo CHANGED
Binary file
langs/subscribe-reloaded-he_IL.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: subscribe-to-comments-reloaded\n"
4
- "POT-Creation-Date: 2016-08-31 11:21-0700\n"
5
  "PO-Revision-Date: \n"
6
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
7
  "Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>\n"
8
  "Language: he\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.6\n"
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
15
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
@@ -19,578 +19,435 @@ msgstr ""
19
  "X-Poedit-Basepath: ..\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
- #: wp_subscribe_reloaded.php:114
23
- msgid "Settings"
24
- msgstr "הגדרות"
25
-
26
- #: wp_subscribe_reloaded.php:1060
27
- msgid "Don't subscribe"
28
- msgstr "א להירשם"
29
-
30
- #: wp_subscribe_reloaded.php:1061
31
- msgid "All"
32
- msgstr "הכול"
33
-
34
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
35
- #: templates/author.php:75
36
- msgid "Replies to my comments"
37
- msgstr "תגובות להערות שלי"
38
-
39
- #: templates/request-management-link.php:71 templates/key_expired.php:71
40
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
41
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
42
- msgid "Email"
43
- msgstr "אימייל"
44
-
45
- #: templates/request-management-link.php:73 templates/key_expired.php:73
46
- #: templates/subscribe.php:92
47
- msgid "Send"
48
- msgstr "שלח"
49
-
50
- #: templates/key_expired.php:8
51
- msgid ""
52
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
53
- "enter your email below and a new link will be send."
54
  msgstr ""
55
 
56
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
57
- #: templates/author.php:80
58
- msgid "No subscriptions match your search criteria."
59
- msgstr "אין הרשמה התואמת את קריטריון החיפוש שלך."
60
-
61
- #: templates/subscribe.php:42 templates/subscribe.php:43
62
- msgid "New subscription to"
63
- msgstr "הרשמה חדשה ל"
64
-
65
- #: templates/subscribe.php:43
66
- msgid "User:"
67
- msgstr "משתמש:"
68
-
69
- #: templates/user.php:23 templates/author.php:23
70
- #: options/panel1-business-logic.php:70
71
- msgid "Subscriptions deleted:"
72
- msgstr "הרשמות שנמחקו:"
73
-
74
- #: templates/user.php:27 templates/author.php:27
75
- #: options/panel1-business-logic.php:74
76
- msgid "Subscriptions suspended:"
77
- msgstr "הרשמות שהושעו:"
78
-
79
- #: templates/user.php:31 templates/author.php:31
80
- #: options/panel1-business-logic.php:78
81
- msgid "Subscriptions activated:"
82
- msgstr "הרשמות שהופעלו:"
83
-
84
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
85
- #: templates/author.php:39 options/panel1-business-logic.php:82
86
- #: options/panel1-business-logic.php:86
87
- msgid "Subscriptions updated:"
88
- msgstr "ההרשמה עודכנה:"
89
-
90
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
91
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
92
- #: options/panel1-edit-subscription.php:11
93
  msgid ""
94
- "Please remember: this operation cannot be undone. Are you sure you want to "
95
- "proceed?"
96
- msgstr "נא לזכור: פעולה זו אינה הפיכה. בטוח שרוצה להמשיך?"
97
-
98
- #: templates/user.php:58 templates/author.php:58
99
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
100
- msgstr "מקרא: Y = כל ההערות, R = תגובות בלבד, C = לא פעיל"
101
-
102
- #: templates/user.php:63
103
- msgid "F j, Y"
104
  msgstr ""
105
 
106
- #: templates/user.php:67 templates/author.php:69
107
- msgid "Select all"
108
- msgstr "הכל"
109
-
110
- #: templates/user.php:68 templates/author.php:70
111
- msgid "Invert selection"
112
- msgstr "היפוך הבחירה"
113
-
114
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
115
- msgid "Action:"
116
- msgstr "פעולה:"
117
-
118
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
119
- #: options/panel1.php:212
120
- msgid "Delete"
121
- msgstr "מחק"
122
-
123
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
124
- msgid "Suspend"
125
- msgstr "השעה"
126
-
127
- #: templates/user.php:72 templates/author.php:74
128
- #, fuzzy
129
- msgid "All comments"
130
- msgstr "כל התגובות החדשות"
131
-
132
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
133
- msgid "Activate"
134
- msgstr "הפעל"
135
-
136
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
137
- msgid "Update subscriptions"
138
- msgstr "עדכון ההרשמות"
139
-
140
- #: templates/author.php:57
141
- msgid "Title"
142
- msgstr "כותרת"
143
-
144
- #: utils/stcr_upgrade.php:55
145
- msgid "Important Notice"
146
- msgstr "הודעה חשובה"
147
-
148
- #: utils/stcr_upgrade.php:103
149
  msgid ""
150
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
151
- "database has been sanitized to prevent the raw html messages. <a class="
152
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
153
- "src=\""
154
  msgstr ""
155
 
156
- #: utils/stcr_upgrade.php:158
157
- #, fuzzy
158
  msgid ""
159
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
160
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
161
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
162
  msgstr ""
163
- "נתוני הרשמה מתוסף <strong>Subscribe to Comments</strong> זוהו ויובאו "
164
- "אוטומטית ל <strong>Subscribe to Comments Reloaded</strong>."
165
 
166
- #: utils/stcr_upgrade.php:158
167
- msgid ""
168
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
169
- "Comments to prevent confusion between the two plugins."
170
  msgstr ""
171
- " מומלץ כעת <strong>לכבות</strong> את Subscribe to Comments כדי למנוע בלבול "
172
- "בין שני התוספים."
173
 
174
- #: utils/stcr_upgrade.php:159
175
  msgid ""
176
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
177
- "that you want to import, you'll need to import that data manually, as only "
178
- "one import routine will ever run to prevent data loss."
179
  msgstr ""
180
- "אם יש לך נתוני הרשמה מ Subscribe to Comments Reloaded < v2.0 ליבוא, יהיה "
181
- "צורך לייבא אותם ידנית, כי רק שגרת יבוא אחת תפעל, כדי למנוע אבדן נתונים."
182
 
183
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
184
- #: utils/stcr_upgrade.php:381
185
- msgid ""
186
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
187
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
188
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
189
- "\"stcr-loading-animation\" src=\""
190
  msgstr ""
191
 
192
- #: utils/stcr_upgrade.php:231
193
- #, fuzzy
194
- msgid ""
195
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
196
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
197
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
198
  msgstr ""
199
- "נתוני הרשמה מתוסף <strong>Comment Reply Notification</strong> זוהו ויובאו "
200
- "אוטומטית ל <strong>Subscribe to Comments Reloaded</strong>."
201
 
202
- #: utils/stcr_upgrade.php:231
203
- msgid ""
204
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
205
- "Notification to prevent confusion between the two plugins."
206
  msgstr ""
207
- " מומלץ כעת <strong>לכבות</strong> את Comment Reply Notification כדי למנוע "
208
- "בלבול בין התוספים."
209
 
210
- #: utils/stcr_upgrade.php:378
211
- #, fuzzy
212
- msgid ""
213
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
214
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
215
- "were detected and automatically imported into <strong>Subscribe to Comments "
216
- "Reloaded</strong>."
217
  msgstr ""
218
- "אפשרויות התוסף ונתוני הרשמה מתוסף <strong>WP Comment Subscriptions</strong> "
219
- "זוהו ויובאו אוטומטית אל <strong>Subscribe to Comments Reloaded</strong>."
220
 
221
- #: utils/stcr_upgrade.php:378
222
- msgid ""
223
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
224
- "Subscriptions to prevent confusion between the two plugins."
225
  msgstr ""
226
- " מומלץ כעת <strong>לכבות</strong> את WP Comment Subscriptions כדי למנוע "
227
- "בלבול בין שני התוספים."
228
 
229
- #: utils/stcr_upgrade.php:379
230
- msgid ""
231
- "If you have subscription data from another plugin (such as Subscribe to "
232
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
233
- "you'll need to import that data manually, as only one import routine will "
234
- "ever run to prevent data loss."
235
  msgstr ""
236
- "אם יש לך מידע הרשמה מתוסף אחר (כמו Subscribe to Comments או Subscribe to "
237
- "Comments Reloaded < v2.0) שתרצה לייבא, יהיה צורך לייבא את הנתונים באופן "
238
- "ידני, כי תמיד תפעל רק שגרת יבוא אחת כדי למנוע אבדן נתונים."
239
 
240
- #: utils/stcr_upgrade.php:380
241
- msgid ""
242
- "<strong>Note:</strong> If you were previously using the "
243
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
244
- "subscribe-url]</code> shortcode, you'll need to replace those with "
245
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
246
- "respectively."
247
  msgstr ""
248
- "<strong>הערה:</strong> אם השתמשת קודם בפונקציית "
249
- "<code>wp_comment_subscriptions_show()</code> או בפונקציית קיצור הקוד "
250
- "<code>[wpcs-subscribe-url]</code> , תצטרך להחליף אותו ב "
251
- "<code>subscribe_reloaded_show()</code> וב <code>[subscribe-url]</code> "
252
- "בהתאמה."
253
 
254
- #: utils/stcr_upgrade.php:394
255
- msgid ""
256
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
257
  msgstr ""
258
 
259
- #: utils/stcr_upgrade.php:395
260
- #, fuzzy
261
- msgid ""
262
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
263
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
264
  msgstr ""
265
- "נא לדווח על כל באג בעמוד <a href=\"https://github.com/stcr/subscribe-to-"
266
- "comments-reloaded/issues/\" target=\"_blank\">GitHub</a> עדיף על עמוד התמיכה "
267
- "בוורדפרס."
268
 
269
- #: utils/stcr_upgrade.php:396
270
- msgid ""
271
- "If you want to donate you can do it via <a href=\"\n"
272
- "https://www.paypal.com/cgi-bin/webscr?"
273
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
274
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
275
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
276
  msgstr ""
277
 
278
- #: utils/stcr_upgrade.php:398
279
- msgid ""
280
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
281
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
282
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
283
- "a><img class=\"stcr-loading-animation\" src=\""
284
  msgstr ""
285
 
286
- #: utils/stcr_upgrade.php:409
287
- msgid ""
288
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
289
- "160106."
290
  msgstr ""
291
 
292
- #: utils/stcr_upgrade.php:410
293
- msgid ""
294
- "This version includes many changes and fixes to improve your experience with "
295
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
296
- "email templates, Subscription Checkbox position, and more!"
297
  msgstr ""
298
 
299
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
300
- #: utils/stcr_upgrade.php:448
301
- msgid ""
302
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
303
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
304
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
305
- "class=\"stcr-loading-animation\" src=\""
306
  msgstr ""
307
 
308
- #: utils/stcr_upgrade.php:424
309
- msgid ""
310
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
311
- "160115."
312
  msgstr ""
313
 
314
- #: utils/stcr_upgrade.php:425
315
- msgid ""
316
- "This version includes fixes to broken links while managing your subscriptions"
317
  msgstr ""
318
 
319
- #: utils/stcr_upgrade.php:439
320
- msgid ""
321
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
322
- "160831"
323
- msgstr ""
324
 
325
- #: utils/stcr_upgrade.php:440
326
- msgid "This version includes fixes to many bugs and also new features, "
327
- msgstr ""
328
 
329
- #: utils/stcr_upgrade.php:442
330
- msgid ""
331
- "<strong>New Feature</strong> Add new option to set the Reply To email "
332
- "address. This will help the subscribers to use the Reply option in their "
333
- "email agents."
334
- msgstr ""
335
 
336
- #: utils/stcr_upgrade.php:443
337
- msgid ""
338
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
339
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
340
- msgstr ""
341
 
342
- #: utils/stcr_upgrade.php:444
343
- msgid ""
344
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
345
- "without loosing your subscriptions. You can use this option also for reset "
346
- "all the settings, see the FAQ."
347
- msgstr ""
348
 
349
- #: utils/stcr_upgrade.php:445
350
- msgid ""
351
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
352
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
353
- "Post Type."
354
- msgstr ""
355
 
356
- #: utils/stcr_upgrade.php:446
357
- msgid ""
358
- "<strong>New Feature</strong> A new field was added under the notification "
359
- "options to and the management link only by email and not to display it on "
360
- "the request link page."
361
- msgstr ""
362
 
363
- #: utils/stcr_manage.php:246
364
- msgid ""
365
- "Notify me of followup comments via e-mail. You can also <a "
366
- "href='[subscribe_link]'>subscribe</a> without commenting."
367
  msgstr ""
368
- "נא לעדכן אותי במייל על תגובות נוספות. אפשר גם <a "
369
- "href='[subscribe_link]'>להירשם</a> מבלי להגיב."
370
 
371
- #: utils/stcr_manage.php:247
372
- msgid ""
373
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
374
- "subscriptions."
375
- msgstr ""
376
- "ההרשמה שלך לפוסט זה פעילה. <a href='[manager_link]'>ניהול ההרשמות שלך</a>. "
377
 
378
- #: utils/stcr_manage.php:248
379
- msgid ""
380
- "Your subscription to this post needs to be confirmed. <a "
381
- "href='[manager_link]'>Manage your subscriptions</a>."
382
- msgstr ""
383
- "ההרשמה שלך לפוסט זה צריכה אישור. <a href='[manager_link]'>לניהול ההרשמות "
384
- "שלך</a>."
385
 
386
- #: utils/stcr_manage.php:249
387
- msgid ""
388
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
389
- msgstr "אפשר <a href='[manager_link]'>לנהל את ההרשמה</a> של פוסט זה."
 
 
390
 
391
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
392
- #: utils/stcr_manage.php:383 options/index.php:59
393
- msgid "Manage subscriptions"
394
- msgstr "Manage subscriptions"
 
395
 
396
- #: utils/stcr_manage.php:255
397
- msgid ""
398
- "To manage your subscriptions, please enter your email address here below. We "
399
- "will send you a message containing the link to access your personal "
400
- "management page."
401
- msgstr ""
402
- "כדי לנהל את ההרשמות שלך, נא להזין את האימייל שלך להלן. נשלח לך הודעה המכילה "
403
- "קישור לעמוד הניהול האישי שלך."
404
 
405
- #: utils/stcr_manage.php:256
406
- msgid ""
407
- "Thank you for using our subscription service. Your request has been "
408
- "completed, and you should receive an email with the management link in a few "
409
- "minutes."
410
- msgstr ""
411
- "תודה שהשתמשת בשירות ההרשמה שלנו. בקשתך הושלמה ותוך דקות יישלח אליך אימייל עם "
412
- "קישור ניהול הרשמה שלך."
413
 
414
- #: utils/stcr_manage.php:257
415
- msgid ""
416
- "You can follow the discussion on <strong>[post_title]</strong> without "
417
- "having to leave a comment. Cool, huh? Just enter your email address in the "
418
- "form here below and you're all set."
419
- msgstr ""
420
- "אפשר לעקוב אחר הדיון ב <strong>[post_title]</strong> ללא צורך לשלוח תגובה. "
421
- "מגניב, אה? רק להזין את כתובת האימייל שלך בשדה שלהלן."
422
 
423
- #: utils/stcr_manage.php:258
424
- msgid ""
425
- "Thank you for using our subscription service. Your request has been "
426
- "completed. You will receive a notification email every time a new comment to "
427
- "this article is approved and posted by the administrator."
428
- msgstr ""
429
- "תודה שהשתמש בשירות ההרשמה שלנו. בקשתך הושלמה. התראה באימייל תישלח על כל "
430
- "תגובה חדשה שתאושר על-ידי ההנהלה לפוסט זה."
431
 
432
- #: utils/stcr_manage.php:259
433
- msgid ""
434
- "Thank you for using our subscription service. In order to confirm your "
435
- "request, please check your email for the verification message and follow the "
436
- "instructions."
437
- msgstr ""
438
- "תודה על השימוש בשירות ההרשמה שלנו. כדי לאשר את הבקשה שלך, נא לבדוק ת האימייל "
439
- "שלך כדי לאשר את ההרשמה לפי ההנחיות במייל ."
440
 
441
- #: utils/stcr_manage.php:260
442
- msgid ""
443
- "In order to cancel or suspend one or more notifications, select the "
444
- "corresponding checkbox(es) and click on the button at the end of the list."
445
- msgstr ""
446
- "כדי לבטל או להשעות הודעה אחת או יותר נא לבחור תיבת(ות) סימון בהתאמה וללחוץ "
447
- "על הכפתור שבסוף הרשימה."
448
 
449
- #: utils/stcr_manage.php:261
450
- msgid ""
451
- "In order to cancel or suspend one or more notifications, select the "
452
- "corresponding checkbox(es) and click on the button at the end of the list. "
453
- "You are currently subscribed to:"
454
- msgstr ""
455
- "כדי לבטל או להשעות התראה אחת או יותר, נא לבחור בתיבת(ות) הסימון המתאימה(ות) "
456
- "וללחוץ על הכפתור שבסוף הרשימה. כעת יש הרשמות ל:"
457
 
458
- #: utils/stcr_manage.php:265
459
- msgid "There is a new comment to [post_title]"
460
- msgstr "יש תגובה חדשה ל [post_title]"
 
461
 
462
- #: utils/stcr_manage.php:266
463
- msgid ""
464
- "There is a new comment to [post_title].\n"
465
- "Comment Link: [comment_permalink]\n"
466
- "Author: [comment_author]\n"
467
- "Comment:\n"
468
- "[comment_content]\n"
469
- "Permalink: [post_permalink]\n"
470
- "Manage your subscriptions: [manager_link]"
471
- msgstr ""
472
- "יש תגובה חדשה ל [post_title].\n"
473
- "קישור לתגובה: [comment_permalink]\n"
474
- "מחבר: [comment_author]\n"
475
- "תגובה:\n"
476
- "[comment_content]\n"
477
- "מבנה קישור: [post_permalink]\n"
478
- "ניהול ההרשמות שלך: [manager_link]"
479
 
480
- #: utils/stcr_manage.php:267
481
- msgid "Please confirm your subscription to [post_title]"
482
- msgstr "נא לאשר את ההרשמה שלך ל [post_title]"
 
483
 
484
- #: utils/stcr_manage.php:268
485
- msgid ""
486
- "You have requested to be notified every time a new comment is added to:\n"
487
- "[post_permalink]\n"
488
- "\n"
489
- "Please confirm your request by clicking on this link:\n"
490
- "[confirm_link]"
491
- msgstr ""
492
- "ביקשת לקבל הודעות על הוספת תגובות חדשות ל:\n"
493
- "[post_permalink]\n"
494
- "\n"
495
- "נא לאמת את הבקשה באמצעות לחיצה על הקישור:\n"
496
- "[confirm_link]"
497
 
498
- #: utils/stcr_manage.php:269
499
- msgid "Manage your subscriptions on [blog_name]"
500
- msgstr "ניהול ההרשמות שלך ב [blog_name]"
 
501
 
502
- #: utils/stcr_manage.php:270
503
- msgid ""
504
- "You have requested to manage your subscriptions to the articles on "
505
- "[blog_name]. Please check the Subscriptions management link in your email"
506
  msgstr ""
507
 
508
- #: utils/stcr_manage.php:271
 
 
 
 
 
 
 
 
 
 
 
 
 
509
  msgid ""
510
- "You have requested to manage your subscriptions to the articles on "
511
- "[blog_name]. Follow this link to access your personal page:\n"
512
- "[manager_link]"
513
- msgstr ""
514
- "ביקשת לנהל את ההרשמות שלך למאמרים ב [blog_name]. קישור זה יוביל אותך לעמוד "
515
- "הניהול שלך:\n"
516
- "[manager_link]"
517
 
518
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
519
- msgid "Comment Form"
520
- msgstr "טופס תגובה"
521
 
522
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
523
- msgid "Management Page"
524
- msgstr "עמוד הניהול"
525
 
526
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
527
- msgid "Notifications"
528
- msgstr "הודעות"
529
 
530
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
531
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
532
- msgid "Options"
533
- msgstr "אפשרויות"
534
 
535
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
536
- msgid "You can help"
537
- msgstr "אפשר לעזור"
538
 
539
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
540
  #, fuzzy
541
- msgid "Support"
542
- msgstr "פורום התמיכה הרשמי"
543
 
544
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
545
- msgid "Donate"
546
- msgstr ""
 
547
 
548
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
549
- msgid "StCR System"
550
  msgstr ""
551
 
552
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
553
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
554
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
555
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
556
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
557
- msgid "You do not have sufficient permissions to access this page."
558
  msgstr ""
559
 
560
- #: utils/stcr_manage.php:755
561
- #, fuzzy
562
- msgid "Subscriptions"
563
- msgstr "הרשמה"
564
 
565
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
566
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
567
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
568
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
569
- #: options/panel5.php:161
570
- msgid "No"
571
- msgstr "לא"
572
 
573
- #: utils/stcr_manage.php:811
574
- msgid ""
575
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
576
- msgstr "זקוק לעזרה ב כיצד להירשם ל Comments Reloaded? בקר ב"
577
 
578
- #: utils/stcr_manage.php:811
579
- msgid "support forum"
580
- msgstr "פורום התמיכה הרשמי"
 
 
 
581
 
582
- #: utils/stcr_manage.php:812
583
- msgid "Feeling generous?"
584
- msgstr "מרגיש נדיב?"
585
 
586
- #: utils/stcr_manage.php:812
587
- msgid "Donate a few bucks!"
588
- msgstr "תרום קצת!"
589
 
590
- #: utils/stcr_utils.php:195
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
  #, fuzzy
592
- msgid "StCR Notification"
593
- msgstr "הודעות"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
594
 
595
  #: options/panel2.php:12 options/panel2.php:63
596
  msgid "Enable default checkbox"
@@ -632,13 +489,13 @@ msgstr "תווית בהמתנה"
632
  msgid "Author label"
633
  msgstr "תווית מחבר"
634
 
635
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
636
- #: options/panel5.php:60 options/panel3.php:70
637
  msgid "Your settings have been successfully updated."
638
  msgstr "ההגדרות שלך עודכנו בהצלחה"
639
 
640
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
641
- #: options/panel5.php:62 options/panel3.php:72
642
  msgid "There was an error updating the following fields:"
643
  msgstr "היתה שגיאה בעדכון השדות שלהלן:"
644
 
@@ -649,6 +506,14 @@ msgstr "היתה שגיאה בעדכון השדות שלהלן:"
649
  msgid "Yes"
650
  msgstr "כן"
651
 
 
 
 
 
 
 
 
 
652
  #: options/panel2.php:68
653
  msgid ""
654
  "Disable this option if you want to move the subscription checkbox to a "
@@ -745,87 +610,211 @@ msgid ""
745
  "Label shown to authors (and administrators). Allowed tag: [manager_link]"
746
  msgstr "תווית המוצגת למחברים (ולמנהלים). תגית אפשרית: [manager_link]"
747
 
748
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
749
- #: options/panel3.php:253
750
  msgid "Save Changes"
751
  msgstr ""
752
 
753
- #: options/panel9.php:11
754
- #, fuzzy
755
- msgid "Support Subscribe to Comments Reloaded"
756
- msgstr "זקוק לעזרה ב כיצד להירשם ל Comments Reloaded? בקר ב"
757
 
758
- #: options/panel9.php:12
759
- msgid ""
760
- "Every contribution that you make is high valuable, so if you consider this "
761
- "plugin a helpful tool we will use your donation to invest on support and "
762
- "developing time."
763
- msgstr ""
764
 
765
- #: options/panel4.php:15 options/panel4.php:94
766
- msgid "Sender name"
767
- msgstr "שם השולח"
768
 
769
- #: options/panel4.php:20 options/panel4.php:25 options/panel4.php:107
770
- msgid "Sender email address"
771
- msgstr "כתובת המייל של השולח"
772
 
773
- #: options/panel4.php:30 options/panel4.php:140
774
- msgid "Notification subject"
775
- msgstr "נושא ההתראה"
776
 
777
- #: options/panel4.php:36 options/panel4.php:42 options/panel4.php:153
778
- msgid "Notification message"
779
- msgstr "הודעת התראה"
780
 
781
- #: options/panel4.php:47 options/panel4.php:177
782
- msgid "Double check subject"
783
- msgstr "בדיקה כפולה של הנושא"
784
 
785
- #: options/panel4.php:52 options/panel4.php:190
786
- msgid "Double check message"
787
- msgstr "בדיקה כפולה של ההודעה"
788
 
789
- #: options/panel4.php:57 options/panel4.php:210
790
- msgid "Management subject"
791
- msgstr "נושא הניהול"
792
 
793
- #: options/panel4.php:62 options/panel4.php:67
794
- msgid "Management message"
795
- msgstr "הודעת הניהול"
796
 
797
- #: options/panel4.php:72 options/panel4.php:243
798
- msgid "Management Email message"
799
- msgstr ""
800
 
801
- #: options/panel4.php:101
802
- msgid ""
803
- "Name to use for the \"from\" field when sending a new notification to the "
804
- "user."
805
- msgstr "השם לשימוש בשדה \"מאת\" בשליחת הודעה חדשה למשתמש."
806
 
807
- #: options/panel4.php:115
808
- msgid ""
809
- "Email address to use for the \"from\" field when sending a new notification "
810
- "to the user."
811
- msgstr "כתובת אימייל לשימוש עבור שדה \"מאת\" בשליחת התראה הודעה חדשה למשתמש."
812
 
813
- #: options/panel4.php:121
814
  #, fuzzy
815
- msgid "Reply To"
816
- msgstr "תגובות בלבד"
817
-
818
- #: options/panel4.php:128
819
  msgid ""
820
- "This will be use when the user click reply on their email agent. If not set "
821
- "will be the same as the Sender email address."
 
822
  msgstr ""
 
 
 
823
 
824
- #: options/panel4.php:135 options/panel3.php:127
825
- msgid "Messages"
826
- msgstr "הודעות"
827
 
828
- #: options/panel4.php:147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
829
  msgid "Subject of the notification email. Allowed tag: [post_title]"
830
  msgstr "נושא מייל ההתראה. תגית אפשרית: [post_title]"
831
 
@@ -888,356 +877,65 @@ msgid ""
888
  "[blog_name]"
889
  msgstr "נושא מייל האישור. תגית אפשרית: [post_title]"
890
 
891
- #: options/panel7.php:8 options/panel8.php:8
892
- msgid "Support the developers"
893
- msgstr "תמיכה במפתחים"
894
-
895
- #: options/panel7.php:18
896
- #, fuzzy
897
- msgid ""
898
- "How valuable is the feature offered by this plugin to your visitors? please "
899
- "consider supporting the author if this plugin made your web site better, "
900
- "especially if you are making money out of it. Any donation received will be "
901
- "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
902
- "strong>, and to buy some food for my hungry family."
903
  msgstr ""
904
- "כמה ערך מוסיף התוסף למבקרים באתר שלך? <strong>הירשם ל Comments Reloaded</"
905
- "strong> תהיה תמיד ללא תשלום, אבל שקול לתמוך במחבר אם התוסף הזה שיפר את האתר "
906
- "שלך, במיוחד אם אתה מרוויח ממנו. כל תרומה שתתקבל תושקע מחדש בפיתוח של "
907
- "<strong>Subscribe to Comments Reloaded</strong>, ותקנה קצת אוכל למשפחתי "
908
- "הרעבה."
909
 
910
- #: options/panel7.php:20
911
- msgid "Don't want to donate? You can still help"
912
- msgstr "לא רוצה לתרום? עדיין אפשר לעזור"
913
 
914
- #: options/panel7.php:21
915
- msgid ""
916
- "If you don't want to donate money, please consider blogging about my plugin "
917
- "with a link to the plugin's page. Please let your readers know what makes "
918
- "your blog better. You can also contribute donating your time: do not "
919
- "hesitate to send me bug reports, your localization files, ideas on how to "
920
- "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
921
- "you do, thanks for using my plugin!"
922
- msgstr ""
923
- "אם אינך מעוניין לתרום כסף,. נא לשקול לפרסם אותו לקוראים שלך בבלוג עם קישור "
924
- "לעמוד התוסף. אפשר גם לתרום זמן: לא להסס לשלוח לי דיווחי באגים, קבצי תרגום, "
925
- "רעיונות לשיפור, איך לשפר את <strong>Subscribe to Comments Reloaded</strong> "
926
- "וכו'. בכל מקרה, תודה שבחרת להשתמש בתוסף שלי!"
927
 
928
- #: options/panel7.php:23
929
- #, fuzzy
930
- msgid "Subscribe to the Beta testers"
931
  msgstr "רשום את המחברים"
932
 
933
- #: options/panel7.php:24
934
- msgid ""
935
- "Before a new Update we release a Beta version so that our current users can "
936
- "give us feedback if they find a bug, If you want to join the tester list you "
937
- "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
938
- "a>"
939
- msgstr ""
940
-
941
- #: options/panel7.php:26
942
- msgid "Vote and show your appreciation"
943
- msgstr "דרגו והראו הערכה"
944
 
945
- #: options/panel7.php:27
946
- msgid ""
947
- "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
948
- "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
949
- "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
950
- msgstr ""
951
- "שתף אנשים נוספים איך <strong>Subscribe to Comments Reloaded</strong> פועל "
952
- "עבורך וכמה הוא טוב. <a href=\"http://wordpress.org/extend/plugins/subscribe-"
953
- "to-comments-reloaded/\">דרג אותו</a> בעמוד התוסף."
954
 
955
- #: options/panel1.php:20
956
- msgid "Mass Update Subscriptions"
957
- msgstr "עדכון כמותי של הרשמות"
958
 
959
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
960
- msgid "From"
961
- msgstr "מאת"
962
 
963
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
964
- #, fuzzy
965
- msgid "email address"
966
- msgstr "כתובת המייל של השולח"
967
 
968
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
969
- msgid "To"
970
- msgstr "אל"
971
 
972
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
973
- #, fuzzy
974
- msgid "optional - new email address"
975
- msgstr "כתובת המייל של השולח"
976
 
977
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
978
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
979
- #: options/panel1-edit-subscription.php:26
980
- msgid "Status"
981
- msgstr "מצב"
982
 
983
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
984
- msgid "Keep unchanged"
985
- msgstr "השאר ללא שינוי"
986
 
987
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
988
- #: options/panel1-add-subscription.php:22
989
- #: options/panel1-edit-subscription.php:29
990
- msgid "Active"
991
- msgstr "פעיל"
992
-
993
- #: options/panel1.php:43 options/panel1.php:80
994
- #: options/panel1-add-subscription.php:23
995
- #: options/panel1-edit-subscription.php:30
996
- msgid "Replies only"
997
- msgstr "תגובות בלבד"
998
-
999
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
1000
- msgid "Suspended"
1001
- msgstr "מושעה"
1002
-
1003
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
1004
- #: options/panel1-edit-subscription.php:33
1005
- msgid "Update"
1006
- msgstr "עדכן"
1007
-
1008
- #: options/panel1.php:49
1009
- msgid "More info"
1010
- msgstr ""
1011
-
1012
- #: options/panel1.php:55
1013
- msgid ""
1014
- "This option will allow you to change an email address for another one or to "
1015
- "update the same status for all the subscription on a specific email address."
1016
- msgstr ""
1017
-
1018
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1019
- msgid "Add New Subscription"
1020
- msgstr "הוספת הרשמה חדשה"
1021
-
1022
- #: options/panel1.php:68
1023
- msgid "Post ID"
1024
- msgstr "מזהה פוסט"
1025
-
1026
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1027
- msgid "Ask user to confirm"
1028
- msgstr "בקשת המשתמש לאשר"
1029
-
1030
- #: options/panel1.php:83
1031
- msgid "Add"
1032
- msgstr "הוסף"
1033
-
1034
- #: options/panel1.php:98
1035
- msgid "Search subscriptions"
1036
- msgstr "חיפוש הרשמות"
1037
-
1038
- #: options/panel1.php:102
1039
- #, php-format
1040
- msgid ""
1041
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1042
- "where the"
1043
- msgstr "אפשר <a href=\"%s\">להציג את כל ההרשמות שלך</a> או למצוא את אלו ש"
1044
-
1045
- #: options/panel1.php:106
1046
- msgid "email"
1047
- msgstr "אימייל"
1048
-
1049
- #: options/panel1.php:107
1050
- msgid "post ID"
1051
- msgstr "מזהה פוסט"
1052
-
1053
- #: options/panel1.php:108
1054
- msgid "status"
1055
- msgstr "מצב"
1056
-
1057
- #: options/panel1.php:111
1058
- msgid "equals"
1059
- msgstr "שווה"
1060
-
1061
- #: options/panel1.php:112
1062
- msgid "contains"
1063
- msgstr "מכיל"
1064
-
1065
- #: options/panel1.php:113
1066
- msgid "does not contain"
1067
- msgstr "אינו מכיל"
1068
-
1069
- #: options/panel1.php:114
1070
- msgid "starts with"
1071
- msgstr "מתחיל ב"
1072
-
1073
- #: options/panel1.php:115
1074
- msgid "ends with"
1075
- msgstr "מסתיים ב"
1076
-
1077
- #: options/panel1.php:118
1078
- msgid "results per page:"
1079
- msgstr "תוצאות לעמוד"
1080
-
1081
- #: options/panel1.php:120
1082
- msgid "Search"
1083
- msgstr "חפש"
1084
-
1085
- #: options/panel1.php:128
1086
- msgid "Reverse the order by Post ID"
1087
- msgstr "הפוך את הסדר הנוכחי לפי מזהה פוסט"
1088
-
1089
- #: options/panel1.php:129 options/panel1.php:130
1090
- msgid "Reverse the order by Date/Time"
1091
- msgstr "הפוך את הסדר לפי תאריך/שעה"
1092
-
1093
- #: options/panel1.php:132
1094
- msgid "Post (ID)"
1095
- msgstr "מזהה פוסט"
1096
-
1097
- #: options/panel1.php:135
1098
- msgid "Search query:"
1099
- msgstr "שאילתת חיפוש"
1100
-
1101
- #: options/panel1.php:135
1102
- msgid "Rows:"
1103
- msgstr "שורות:"
1104
-
1105
- #: options/panel1.php:135
1106
- msgid "of"
1107
- msgstr "של"
1108
-
1109
- #: options/panel1.php:142 options/panel1.php:158
1110
- msgid "Date and Time"
1111
- msgstr "תאריך ושעה"
1112
-
1113
- #: options/panel1.php:168
1114
- #, fuzzy
1115
- msgid "Replies"
1116
- msgstr "תגובות בלבד"
1117
-
1118
- #: options/panel1.php:169
1119
- #, fuzzy
1120
- msgid "All Comments"
1121
- msgstr "כל התגובות החדשות"
1122
-
1123
- #: options/panel1.php:170
1124
- msgid "Unconfirmed"
1125
- msgstr ""
1126
-
1127
- #: options/panel1.php:171
1128
- #, fuzzy
1129
- msgid "Inactive"
1130
- msgstr "פעיל"
1131
-
1132
- #: options/panel1.php:201 options/panel1.php:211
1133
- msgid "Edit"
1134
- msgstr "ערוך"
1135
-
1136
- #: options/panel1.php:203 options/panel1.php:209
1137
- msgid "Subscription"
1138
- msgstr "הרשמה"
1139
-
1140
- #: options/panel1.php:226
1141
- msgid "Delete forever"
1142
- msgstr "למחוק לצמיתות"
1143
-
1144
- #: options/panel1.php:228
1145
- msgid "Activate and set to Y"
1146
- msgstr "הפעלה והגדרה ל Y"
1147
-
1148
- #: options/panel1.php:229
1149
- msgid "Activate and set to R"
1150
- msgstr "הפעלה והגדרה ל R"
1151
-
1152
- #: options/panel1.php:237
1153
- msgid "Sorry, no subscriptions match your search criteria."
1154
- msgstr "מצטערים, אין הרשמות התואמות את קריטריון החיפוש שלך."
1155
-
1156
- #: options/panel1-business-logic.php:23
1157
- msgid "Subscription added."
1158
- msgstr "ההרשמה נוספה."
1159
-
1160
- #: options/panel1-business-logic.php:39
1161
- msgid "Subscriptions updated."
1162
- msgstr "ההרשמה עודכנה."
1163
-
1164
- #: options/panel1-business-logic.php:51
1165
- msgid "Subscription deleted."
1166
- msgstr "ההרשמה נמחקה."
1167
-
1168
- #: options/panel1-business-logic.php:110
1169
- #, fuzzy
1170
- msgid "&laquo; Previous"
1171
- msgstr "« הקודם"
1172
-
1173
- #: options/panel1-business-logic.php:114
1174
- msgid "Next &raquo;"
1175
- msgstr ""
1176
-
1177
- #: options/panel1-add-subscription.php:13
1178
- #: options/panel1-edit-subscription.php:13
1179
- msgid "Post:"
1180
- msgstr "פוסט:"
1181
-
1182
- #: options/panel5.php:28
1183
- msgid "Safetly Uninstall"
1184
- msgstr ""
1185
-
1186
- #: options/panel5.php:31 options/panel5.php:84
1187
- msgid "Autopurge requests"
1188
- msgstr "ניקוי אוטומטי של בקשות"
1189
-
1190
- #: options/panel5.php:34 options/panel5.php:93
1191
- msgid "Enable double check"
1192
- msgstr "הפעל בדיקה כפולה"
1193
-
1194
- #: options/panel5.php:37 options/panel5.php:101
1195
- msgid "Subscribe authors"
1196
- msgstr "רשום את המחברים"
1197
-
1198
- #: options/panel5.php:40 options/panel5.php:111
1199
- msgid "Enable HTML emails"
1200
- msgstr "הפעל HTML בהודעות מייל"
1201
-
1202
- #: options/panel5.php:43
1203
- msgid "HTMLify Links in HTML emails"
1204
- msgstr "הפעל קישורי HTML באימיילים עם HTML"
1205
-
1206
- #: options/panel5.php:46
1207
- msgid "Send trackbacks"
1208
- msgstr "שלח טראקבקים"
1209
-
1210
- #: options/panel5.php:49
1211
- msgid "Notify admin"
1212
- msgstr "הודע למנהל"
1213
-
1214
- #: options/panel5.php:52 options/panel5.php:149
1215
- msgid "Let admin subscribe"
1216
- msgstr "אפשר למנהל להירשם"
1217
-
1218
- #: options/panel5.php:55 options/panel5.php:158
1219
- msgid "BCC admin on Notifications"
1220
- msgstr "שלח עותק נסתר של הוהודעות להנהלה"
1221
-
1222
- #: options/panel5.php:76
1223
- msgid "Safely Uninstall"
1224
- msgstr ""
1225
-
1226
- #: options/panel5.php:80
1227
- msgid ""
1228
- "This option will allow you to delete the plugin with WordPress without "
1229
- "loosing your subscribers. Any database table and plugin options are wipeout."
1230
- msgstr ""
1231
-
1232
- #: options/panel5.php:87
1233
- msgid "days"
1234
- msgstr "ימים"
1235
-
1236
- #: options/panel5.php:88
1237
- msgid ""
1238
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1239
- "this feature."
1240
- msgstr "מחק הרשמות בהמתנה (שלא אושרו) לאחר X ימים. אפס מבטל אפשרות זו."
1241
 
1242
  #: options/panel5.php:97
1243
  msgid ""
@@ -1297,189 +995,604 @@ msgstr "שלח למנהל עותק של כל ההודעות."
1297
  msgid "StCR Unique Key"
1298
  msgstr "מפתח StCR ייחודי"
1299
 
1300
- #: options/panel5.php:172
1301
- msgid "This Unique Key is not set, please click the following button to "
1302
- msgstr "מפתח ייחודי זה אינו מוגדר, נא ללחוץ על הכפתור שלהלן כדי "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1303
 
1304
- #: options/panel5.php:176 options/panel5.php:187
1305
- msgid "Generate"
 
 
1306
  msgstr ""
 
 
1307
 
1308
- #: options/panel5.php:184
1309
- #, fuzzy
1310
  msgid ""
1311
- "This Unique Key will be use to send the notification to your subscribers "
1312
- "with more security."
 
 
1313
  msgstr ""
1314
- "זהו מפתח ייחודי שישמש כדי לשלוח את ההודעה עבור הנרשמים שלך עם יותר\n"
1315
- "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tאבטחה."
 
1316
 
1317
- #: options/panel8.php:18
1318
- msgid "Did you find a Bug on the plugin?"
1319
- msgstr "מצאתם באג בתוסף?"
 
 
 
 
 
 
 
 
 
 
1320
 
1321
- #: options/panel8.php:19
 
 
 
 
 
1322
  #, fuzzy
1323
  msgid ""
1324
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1325
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1326
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1327
- "WordPress Support page."
1328
  msgstr ""
1329
  "נא לדווח על כל באג בעמוד <a href=\"https://github.com/stcr/subscribe-to-"
1330
  "comments-reloaded/issues/\" target=\"_blank\">GitHub</a> עדיף על עמוד התמיכה "
1331
  "בוורדפרס."
1332
 
1333
- #: options/panel1-edit-subscription.php:8
1334
- msgid "Update Subscription"
1335
- msgstr "עדכון ההרשמה"
1336
-
1337
- #: options/panel1-edit-subscription.php:11
1338
- #: options/panel1-edit-subscription.php:21
1339
- #: options/panel1-edit-subscription.php:22
1340
- #: options/panel1-edit-subscription.php:23
1341
- msgid "optional"
1342
- msgstr "רשות"
1343
-
1344
- #: options/panel10.php:22 options/panel10.php:23
1345
- msgid "System Information"
1346
  msgstr ""
1347
 
1348
- #: options/panel3.php:13 options/panel3.php:87
1349
- msgid "Virtual Management Page"
1350
- msgstr "עמוד הניהול הויזואלי"
1351
-
1352
- #: options/panel3.php:18 options/panel3.php:96
1353
- msgid "Page title"
1354
- msgstr "כותרת העמוד"
1355
-
1356
- #: options/panel3.php:23 options/panel3.php:105
1357
- msgid "Management URL"
1358
- msgstr "כתובת ה URL של הניהול"
1359
-
1360
- #: options/panel3.php:28 options/panel3.php:117
1361
- msgid "Custom HEAD meta"
1362
- msgstr "תיאור"
1363
-
1364
- #: options/panel3.php:34 options/panel3.php:131
1365
- msgid "Request link"
1366
- msgstr "קישור הבקשה"
1367
-
1368
- #: options/panel3.php:39 options/panel3.php:149
1369
- msgid "Request submitted"
1370
- msgstr "הבקשה נשלחה"
1371
-
1372
- #: options/panel3.php:44 options/panel3.php:167
1373
- msgid "Subscribe without commenting"
1374
- msgstr "הרשמה ללא כתיבת תגובה"
1375
-
1376
- #: options/panel3.php:49 options/panel3.php:185
1377
- msgid "Subscription processed"
1378
- msgstr "ההרשמה עובדה"
1379
 
1380
- #: options/panel3.php:54 options/panel3.php:203
1381
- msgid "Subscription processed (DCI)"
1382
- msgstr "ההרשמה עובדה(DCI)"
 
 
1383
 
1384
- #: options/panel3.php:59 options/panel3.php:220
1385
- msgid "Authors"
1386
- msgstr "מחברים"
 
 
 
1387
 
1388
- #: options/panel3.php:64 options/panel3.php:236
1389
- msgid "Users"
1390
- msgstr "משתמשים"
 
 
 
 
 
1391
 
1392
- #: options/panel3.php:90
1393
- msgid "Enabled"
1394
- msgstr "מופעל"
 
 
1395
 
1396
- #: options/panel3.php:91
1397
- msgid "Disabled"
1398
- msgstr "כבוי"
 
1399
 
1400
- #: options/panel3.php:92
1401
- #, fuzzy
1402
  msgid ""
1403
- "Disable the virtual management page if you need to create a <a href="
1404
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1405
- "real-management-page\">real page</a> to make your theme happy."
1406
  msgstr ""
1407
- "בטל את עמוד הניהול הוירטואלי עם יצירת <a href=\"http://behstant.com/"
1408
- "subscribe-reloaded/realMgnPage.php\">עמוד אמתי</a> כדי לשמח את ערכת הנושא "
1409
- "שלך."
1410
 
1411
- #: options/panel3.php:101
1412
- msgid "Title of the page your visitors will use to manage their subscriptions."
1413
- msgstr "כותרת העמוד בו ישתמשו המבקרים שלך לניהול הרשמות שלהם."
1414
 
1415
- #: options/panel3.php:109
1416
  msgid ""
1417
- "The permalink for your management page (something like <code>/manage-"
1418
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1419
- "b> actually exist in the system, but its link must follow your permalink "
1420
- "structure."
1421
  msgstr ""
1422
- "מבנה הקישור של של דף הניהול שלך (משהו כמו <code>/ניהול-הרשמות</code> או "
1423
- "<code>/?page_id=345</code>). עמוד זה <b>אינו</b> קיים באמת במערכת שלך, אבל "
1424
- "הקישור שלו חייב לתאום את מבנה הקישורים שלך."
1425
 
1426
- #: options/panel3.php:111
1427
  msgid ""
1428
- "Warning: it looks like the value you are using may be incompatible with your "
1429
- "permalink structure"
1430
- msgstr "אזהרה: נראה שהערך בשימוש אינו מתאים למבנה הקישורים שלך"
1431
 
1432
- #: options/panel3.php:121
1433
  msgid ""
1434
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1435
- "Use <strong>single</strong> quotes for values."
 
1436
  msgstr ""
1437
- "ציין קוד HTML משלך להוספה למקטע HEAD של העמוד. השתמש כערכים בציטוט "
1438
- "<strong>יחיד</strong>."
1439
-
1440
- #: options/panel3.php:144
1441
- msgid "Text shown to those who request to manage their subscriptions."
1442
- msgstr "טקסט המוצג לאלו המבקשים לנהל את ההרשמות שלהם."
1443
 
1444
- #: options/panel3.php:162
1445
  msgid ""
1446
- "Thank you note shown after the request here above has been processed. "
1447
- "Allowed tags: [post_title], [post_permalink]"
 
1448
  msgstr ""
1449
- "הודעת תודה המוצגת לאחר שהבקשה עובדה. תגיות מותרות: [post_title], "
1450
- "[post_permalink]"
1451
 
1452
- #: options/panel3.php:180
1453
  msgid ""
1454
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1455
- "[post_title], [post_permalink]"
 
1456
  msgstr ""
1457
- "טקסט המוצג לאלו המבקשים להירשם מבלי להגיב. תגיות מותרות: [post_title], "
1458
- "[post_permalink]"
1459
 
1460
- #: options/panel3.php:198
1461
  msgid ""
1462
- "Thank you note shown after the subscription request has been processed "
1463
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1464
  msgstr ""
1465
- "הודעת תודה המוצגת לאחר שעובדה בקשת ההרשמה (ללא אימות כפול). תגיות מותרות: "
1466
- "[post_title], [post_permalink]"
1467
 
1468
- #: options/panel3.php:216
1469
  msgid ""
1470
- "Thank you note shown after the subscription request has been processed "
1471
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
1472
  msgstr ""
1473
- "הודעת תודה המוצגת לאחר עיבוד בקשת הרשמה (כאשר מופעל אימות כפול). תגיות "
1474
- "מותרות: [post_title], [post_permalink]"
1475
 
1476
- #: options/panel3.php:232
1477
- msgid "Introductory text for the authors' management page."
1478
- msgstr "טקסט היכרות למחברים בעמוד הניהול."
 
1479
 
1480
- #: options/panel3.php:248
1481
- msgid "Introductory text for the users' management page."
1482
- msgstr "טקסט היכרות למשתמשים בעמוד הניהול."
 
 
 
 
 
 
 
 
1483
 
1484
  #, fuzzy
1485
  #~ msgid ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: subscribe-to-comments-reloaded\n"
4
+ "POT-Creation-Date: 2016-09-02 19:28-0600\n"
5
  "PO-Revision-Date: \n"
6
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
7
  "Language-Team: Ahrale | Atar4U.com <contact@atar4u.com>\n"
8
  "Language: he\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7.1\n"
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
15
  "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
  "X-Poedit-Basepath: ..\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
+ #: includes/js/tinymce-lite/tinymce.min.js:3
23
+ msgid "id accesskey class dir lang style tabindex title"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  msgstr ""
25
 
26
+ #: includes/js/tinymce-lite/tinymce.min.js:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid ""
28
+ "address blockquote div dl fieldset form h1 h2 h3 h4 h5 h6 hr menu ol p pre "
29
+ "table ul"
 
 
 
 
 
 
 
 
30
  msgstr ""
31
 
32
+ #: includes/js/tinymce-lite/tinymce.min.js:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  msgid ""
34
+ "a abbr b bdo br button cite code del dfn em embed i iframe img input ins kbd "
35
+ "label map noscript object q s samp script select small span strong sub sup "
36
+ "textarea u var #text #comment"
 
37
  msgstr ""
38
 
39
+ #: includes/js/tinymce-lite/tinymce.min.js:3
 
40
  msgid ""
41
+ "contenteditable contextmenu draggable dropzone hidden spellcheck translate"
 
 
42
  msgstr ""
 
 
43
 
44
+ #: includes/js/tinymce-lite/tinymce.min.js:3
45
+ msgid "article aside details dialog figure header footer hgroup section nav"
 
 
46
  msgstr ""
 
 
47
 
48
+ #: includes/js/tinymce-lite/tinymce.min.js:3
49
  msgid ""
50
+ "audio canvas command datalist mark meter output progress time wbr video ruby "
51
+ "bdi keygen"
 
52
  msgstr ""
 
 
53
 
54
+ #: includes/js/tinymce-lite/tinymce.min.js:3
55
+ msgid "acronym applet basefont big font strike tt"
 
 
 
 
 
56
  msgstr ""
57
 
58
+ #: includes/js/tinymce-lite/tinymce.min.js:3
59
+ msgid "center dir isindex noframes"
 
 
 
 
60
  msgstr ""
 
 
61
 
62
+ #: includes/js/tinymce-lite/tinymce.min.js:4
63
+ msgid "a form meter progress dfn"
 
 
64
  msgstr ""
 
 
65
 
66
+ #: includes/js/tinymce-lite/tinymce.min.js:4
67
+ msgid "strong/b em/i"
 
 
 
 
 
68
  msgstr ""
 
 
69
 
70
+ #: includes/js/tinymce-lite/tinymce.min.js:4
71
+ msgid "ol ul sub sup blockquote span font a table tbody tr strong em b i"
 
 
72
  msgstr ""
 
 
73
 
74
+ #: includes/js/tinymce-lite/tinymce.min.js:4
75
+ msgid "p h1 h2 h3 h4 h5 h6 th td pre div address caption"
 
 
 
 
76
  msgstr ""
 
 
 
77
 
78
+ #: includes/js/tinymce-lite/tinymce.min.js:4
79
+ msgid "span"
 
 
 
 
 
80
  msgstr ""
 
 
 
 
 
81
 
82
+ #: includes/js/tinymce-lite/tinymce.min.js:6
83
+ msgid "previousSibling"
 
84
  msgstr ""
85
 
86
+ #: includes/js/tinymce-lite/tinymce.min.js:6
87
+ msgid "nextSibling"
 
 
 
88
  msgstr ""
 
 
 
89
 
90
+ #: includes/js/tinymce-lite/tinymce.min.js:7
91
+ msgid "h"
 
 
 
 
 
92
  msgstr ""
93
 
94
+ #: includes/js/tinymce-lite/tinymce.min.js:7
95
+ msgid "v"
 
 
 
 
96
  msgstr ""
97
 
98
+ #: includes/js/tinymce-lite/tinymce.min.js:7
99
+ msgid "t"
 
 
100
  msgstr ""
101
 
102
+ #: includes/js/tinymce-lite/tinymce.min.js:8
103
+ msgid "flex"
 
 
 
104
  msgstr ""
105
 
106
+ #: includes/js/tinymce-lite/tinymce.min.js:9
107
+ msgid "tooltip"
 
 
 
 
 
108
  msgstr ""
109
 
110
+ #: includes/js/tinymce-lite/tinymce.min.js:10
111
+ msgid "-sv"
 
 
112
  msgstr ""
113
 
114
+ #: includes/js/tinymce-lite/tinymce.min.js:10
115
+ msgid "-h"
 
116
  msgstr ""
117
 
118
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
119
+ #: utils/stcr_manage.php:383
120
+ msgid "Manage subscriptions"
121
+ msgstr "Manage subscriptions"
 
122
 
123
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
124
+ msgid "Comment Form"
125
+ msgstr "טופס תגובה"
126
 
127
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
128
+ msgid "Management Page"
129
+ msgstr "עמוד הניהול"
 
 
 
130
 
131
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
132
+ msgid "Notifications"
133
+ msgstr "הודעות"
 
 
134
 
135
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
136
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
137
+ msgid "Options"
138
+ msgstr "אפשרויות"
 
 
139
 
140
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
141
+ msgid "You can help"
142
+ msgstr "אפשר לעזור"
 
 
 
143
 
144
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
145
+ #, fuzzy
146
+ msgid "Support"
147
+ msgstr "פורום התמיכה הרשמי"
 
 
148
 
149
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
150
+ msgid "Donate"
 
 
151
  msgstr ""
 
 
152
 
153
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
154
+ msgid "Add New Subscription"
155
+ msgstr "הוספת הרשמה חדשה"
 
 
 
156
 
157
+ #: options/panel1-add-subscription.php:13
158
+ #: options/panel1-edit-subscription.php:13
159
+ msgid "Post:"
160
+ msgstr "פוסט:"
 
 
 
161
 
162
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
163
+ #: options/panel1.php:133 templates/key_expired.php:84
164
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
165
+ #: templates/user.php:57
166
+ msgid "Email"
167
+ msgstr "אימייל"
168
 
169
+ #: options/panel1-add-subscription.php:20
170
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
171
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
172
+ msgid "Status"
173
+ msgstr "מצב"
174
 
175
+ #: options/panel1-add-subscription.php:22
176
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
177
+ #: options/panel1.php:79 options/panel1.php:172
178
+ msgid "Active"
179
+ msgstr "פעיל"
 
 
 
180
 
181
+ #: options/panel1-add-subscription.php:23
182
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
183
+ #: options/panel1.php:80
184
+ msgid "Replies only"
185
+ msgstr "תגובות בלבד"
 
 
 
186
 
187
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
188
+ msgid "Ask user to confirm"
189
+ msgstr "בקשת המשתמש לאשר"
 
 
 
 
 
190
 
191
+ #: options/panel1-add-subscription.php:26
192
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
193
+ msgid "Update"
194
+ msgstr "עדכן"
 
 
 
 
195
 
196
+ #: options/panel1-business-logic.php:23
197
+ msgid "Subscription added."
198
+ msgstr "ההרשמה נוספה."
 
 
 
 
 
199
 
200
+ #: options/panel1-business-logic.php:39
201
+ msgid "Subscriptions updated."
202
+ msgstr "ההרשמה עודכנה."
 
 
 
 
203
 
204
+ #: options/panel1-business-logic.php:51
205
+ msgid "Subscription deleted."
206
+ msgstr "ההרשמה נמחקה."
 
 
 
 
 
207
 
208
+ #: options/panel1-business-logic.php:70 templates/author.php:23
209
+ #: templates/user.php:23
210
+ msgid "Subscriptions deleted:"
211
+ msgstr "הרשמות שנמחקו:"
212
 
213
+ #: options/panel1-business-logic.php:74 templates/author.php:27
214
+ #: templates/user.php:27
215
+ msgid "Subscriptions suspended:"
216
+ msgstr "הרשמות שהושעו:"
 
 
 
 
 
 
 
 
 
 
 
 
 
217
 
218
+ #: options/panel1-business-logic.php:78 templates/author.php:31
219
+ #: templates/user.php:31
220
+ msgid "Subscriptions activated:"
221
+ msgstr "הרשמות שהופעלו:"
222
 
223
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
224
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
225
+ #: templates/user.php:39
226
+ msgid "Subscriptions updated:"
227
+ msgstr "ההרשמה עודכנה:"
 
 
 
 
 
 
 
 
228
 
229
+ #: options/panel1-business-logic.php:110
230
+ #, fuzzy
231
+ msgid "&laquo; Previous"
232
+ msgstr "« הקודם"
233
 
234
+ #: options/panel1-business-logic.php:114
235
+ msgid "Next &raquo;"
 
 
236
  msgstr ""
237
 
238
+ #: options/panel1-edit-subscription.php:8
239
+ msgid "Update Subscription"
240
+ msgstr "עדכון ההרשמה"
241
+
242
+ #: options/panel1-edit-subscription.php:11
243
+ #: options/panel1-edit-subscription.php:21
244
+ #: options/panel1-edit-subscription.php:22
245
+ #: options/panel1-edit-subscription.php:23
246
+ msgid "optional"
247
+ msgstr "רשות"
248
+
249
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
250
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
251
+ #: templates/author.php:52 templates/user.php:52
252
  msgid ""
253
+ "Please remember: this operation cannot be undone. Are you sure you want to "
254
+ "proceed?"
255
+ msgstr "נא לזכור: פעולה זו אינה הפיכה. בטוח שרוצה להמשיך?"
 
 
 
 
256
 
257
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
258
+ msgid "From"
259
+ msgstr "מאת"
260
 
261
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
262
+ msgid "To"
263
+ msgstr "אל"
264
 
265
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
266
+ msgid "Keep unchanged"
267
+ msgstr "השאר ללא שינוי"
268
 
269
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
270
+ msgid "Suspended"
271
+ msgstr "מושעה"
 
272
 
273
+ #: options/panel1.php:20
274
+ msgid "Mass Update Subscriptions"
275
+ msgstr "עדכון כמותי של הרשמות"
276
 
277
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
278
  #, fuzzy
279
+ msgid "email address"
280
+ msgstr "כתובת המייל של השולח"
281
 
282
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
283
+ #, fuzzy
284
+ msgid "optional - new email address"
285
+ msgstr "כתובת המייל של השולח"
286
 
287
+ #: options/panel1.php:49
288
+ msgid "More info"
289
  msgstr ""
290
 
291
+ #: options/panel1.php:55
292
+ msgid ""
293
+ "This option will allow you to change an email address for another one or to "
294
+ "update the same status for all the subscription on a specific email address."
 
 
295
  msgstr ""
296
 
297
+ #: options/panel1.php:68
298
+ msgid "Post ID"
299
+ msgstr "מזהה פוסט"
 
300
 
301
+ #: options/panel1.php:83
302
+ msgid "Add"
303
+ msgstr "הוסף"
 
 
 
 
304
 
305
+ #: options/panel1.php:98
306
+ msgid "Search subscriptions"
307
+ msgstr "חיפוש הרשמות"
 
308
 
309
+ #: options/panel1.php:102
310
+ #, php-format
311
+ msgid ""
312
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
313
+ "where the"
314
+ msgstr "אפשר <a href=\"%s\">להציג את כל ההרשמות שלך</a> או למצוא את אלו ש"
315
 
316
+ #: options/panel1.php:106
317
+ msgid "email"
318
+ msgstr "אימייל"
319
 
320
+ #: options/panel1.php:107
321
+ msgid "post ID"
322
+ msgstr "מזהה פוסט"
323
 
324
+ #: options/panel1.php:108
325
+ msgid "status"
326
+ msgstr "מצב"
327
+
328
+ #: options/panel1.php:111
329
+ msgid "equals"
330
+ msgstr "שווה"
331
+
332
+ #: options/panel1.php:112
333
+ msgid "contains"
334
+ msgstr "מכיל"
335
+
336
+ #: options/panel1.php:113
337
+ msgid "does not contain"
338
+ msgstr "אינו מכיל"
339
+
340
+ #: options/panel1.php:114
341
+ msgid "starts with"
342
+ msgstr "מתחיל ב"
343
+
344
+ #: options/panel1.php:115
345
+ msgid "ends with"
346
+ msgstr "מסתיים ב"
347
+
348
+ #: options/panel1.php:118
349
+ msgid "results per page:"
350
+ msgstr "תוצאות לעמוד"
351
+
352
+ #: options/panel1.php:120
353
+ msgid "Search"
354
+ msgstr "חפש"
355
+
356
+ #: options/panel1.php:128
357
+ msgid "Reverse the order by Post ID"
358
+ msgstr "הפוך את הסדר הנוכחי לפי מזהה פוסט"
359
+
360
+ #: options/panel1.php:129 options/panel1.php:130
361
+ msgid "Reverse the order by Date/Time"
362
+ msgstr "הפוך את הסדר לפי תאריך/שעה"
363
+
364
+ #: options/panel1.php:132
365
+ msgid "Post (ID)"
366
+ msgstr "מזהה פוסט"
367
+
368
+ #: options/panel1.php:135
369
+ msgid "Search query:"
370
+ msgstr "שאילתת חיפוש"
371
+
372
+ #: options/panel1.php:135
373
+ msgid "Rows:"
374
+ msgstr "שורות:"
375
+
376
+ #: options/panel1.php:135
377
+ msgid "of"
378
+ msgstr "של"
379
+
380
+ #: options/panel1.php:142 options/panel1.php:158
381
+ msgid "Date and Time"
382
+ msgstr "תאריך ושעה"
383
+
384
+ #: options/panel1.php:168
385
  #, fuzzy
386
+ msgid "Replies"
387
+ msgstr "תגובות בלבד"
388
+
389
+ #: options/panel1.php:169
390
+ #, fuzzy
391
+ msgid "All Comments"
392
+ msgstr "כל התגובות החדשות"
393
+
394
+ #: options/panel1.php:170
395
+ msgid "Unconfirmed"
396
+ msgstr ""
397
+
398
+ #: options/panel1.php:171
399
+ #, fuzzy
400
+ msgid "Inactive"
401
+ msgstr "פעיל"
402
+
403
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
404
+ #: templates/user.php:70
405
+ msgid "Delete"
406
+ msgstr "מחק"
407
+
408
+ #: options/panel1.php:201 options/panel1.php:211
409
+ msgid "Edit"
410
+ msgstr "ערוך"
411
+
412
+ #: options/panel1.php:203 options/panel1.php:209
413
+ msgid "Subscription"
414
+ msgstr "הרשמה"
415
+
416
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
417
+ msgid "Action:"
418
+ msgstr "פעולה:"
419
+
420
+ #: options/panel1.php:226
421
+ msgid "Delete forever"
422
+ msgstr "למחוק לצמיתות"
423
+
424
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
425
+ msgid "Suspend"
426
+ msgstr "השעה"
427
+
428
+ #: options/panel1.php:228
429
+ msgid "Activate and set to Y"
430
+ msgstr "הפעלה והגדרה ל Y"
431
+
432
+ #: options/panel1.php:229
433
+ msgid "Activate and set to R"
434
+ msgstr "הפעלה והגדרה ל R"
435
+
436
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
437
+ msgid "Activate"
438
+ msgstr "הפעל"
439
+
440
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
441
+ msgid "Update subscriptions"
442
+ msgstr "עדכון ההרשמות"
443
+
444
+ #: options/panel1.php:237
445
+ msgid "Sorry, no subscriptions match your search criteria."
446
+ msgstr "מצטערים, אין הרשמות התואמות את קריטריון החיפוש שלך."
447
+
448
+ #: options/panel10.php:22 options/panel10.php:23
449
+ msgid "System Information"
450
+ msgstr ""
451
 
452
  #: options/panel2.php:12 options/panel2.php:63
453
  msgid "Enable default checkbox"
489
  msgid "Author label"
490
  msgstr "תווית מחבר"
491
 
492
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
493
+ #: options/panel5.php:18 options/panel5.php:60
494
  msgid "Your settings have been successfully updated."
495
  msgstr "ההגדרות שלך עודכנו בהצלחה"
496
 
497
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
498
+ #: options/panel5.php:20 options/panel5.php:62
499
  msgid "There was an error updating the following fields:"
500
  msgstr "היתה שגיאה בעדכון השדות שלהלן:"
501
 
506
  msgid "Yes"
507
  msgstr "כן"
508
 
509
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
510
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
511
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
512
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
513
+ #: utils/stcr_manage.php:784
514
+ msgid "No"
515
+ msgstr "לא"
516
+
517
  #: options/panel2.php:68
518
  msgid ""
519
  "Disable this option if you want to move the subscription checkbox to a "
610
  "Label shown to authors (and administrators). Allowed tag: [manager_link]"
611
  msgstr "תווית המוצגת למחברים (ולמנהלים). תגית אפשרית: [manager_link]"
612
 
613
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
614
+ #: options/panel5.php:195
615
  msgid "Save Changes"
616
  msgstr ""
617
 
618
+ #: options/panel3.php:13 options/panel3.php:87
619
+ msgid "Virtual Management Page"
620
+ msgstr "עמוד הניהול הויזואלי"
 
621
 
622
+ #: options/panel3.php:18 options/panel3.php:96
623
+ msgid "Page title"
624
+ msgstr "כותרת העמוד"
 
 
 
625
 
626
+ #: options/panel3.php:23 options/panel3.php:105
627
+ msgid "Management URL"
628
+ msgstr "כתובת ה URL של הניהול"
629
 
630
+ #: options/panel3.php:28 options/panel3.php:117
631
+ msgid "Custom HEAD meta"
632
+ msgstr "תיאור"
633
 
634
+ #: options/panel3.php:34 options/panel3.php:131
635
+ msgid "Request link"
636
+ msgstr "קישור הבקשה"
637
 
638
+ #: options/panel3.php:39 options/panel3.php:149
639
+ msgid "Request submitted"
640
+ msgstr "הבקשה נשלחה"
641
 
642
+ #: options/panel3.php:44 options/panel3.php:167
643
+ msgid "Subscribe without commenting"
644
+ msgstr "הרשמה ללא כתיבת תגובה"
645
 
646
+ #: options/panel3.php:49 options/panel3.php:185
647
+ msgid "Subscription processed"
648
+ msgstr "ההרשמה עובדה"
649
 
650
+ #: options/panel3.php:54 options/panel3.php:203
651
+ msgid "Subscription processed (DCI)"
652
+ msgstr "ההרשמה עובדה(DCI)"
653
 
654
+ #: options/panel3.php:59 options/panel3.php:220
655
+ msgid "Authors"
656
+ msgstr "מחברים"
657
 
658
+ #: options/panel3.php:64 options/panel3.php:236
659
+ msgid "Users"
660
+ msgstr "משתמשים"
661
 
662
+ #: options/panel3.php:90
663
+ msgid "Enabled"
664
+ msgstr "מופעל"
 
 
665
 
666
+ #: options/panel3.php:91
667
+ msgid "Disabled"
668
+ msgstr "כבוי"
 
 
669
 
670
+ #: options/panel3.php:92
671
  #, fuzzy
 
 
 
 
672
  msgid ""
673
+ "Disable the virtual management page if you need to create a <a href="
674
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
675
+ "real-management-page\">real page</a> to make your theme happy."
676
  msgstr ""
677
+ "בטל את עמוד הניהול הוירטואלי עם יצירת <a href=\"http://behstant.com/"
678
+ "subscribe-reloaded/realMgnPage.php\">עמוד אמתי</a> כדי לשמח את ערכת הנושא "
679
+ "שלך."
680
 
681
+ #: options/panel3.php:101
682
+ msgid "Title of the page your visitors will use to manage their subscriptions."
683
+ msgstr "כותרת העמוד בו ישתמשו המבקרים שלך לניהול הרשמות שלהם."
684
 
685
+ #: options/panel3.php:109
686
+ msgid ""
687
+ "The permalink for your management page (something like <code>/manage-"
688
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
689
+ "b> actually exist in the system, but its link must follow your permalink "
690
+ "structure."
691
+ msgstr ""
692
+ "מבנה הקישור של של דף הניהול שלך (משהו כמו <code>/ניהול-הרשמות</code> או "
693
+ "<code>/?page_id=345</code>). עמוד זה <b>אינו</b> קיים באמת במערכת שלך, אבל "
694
+ "הקישור שלו חייב לתאום את מבנה הקישורים שלך."
695
+
696
+ #: options/panel3.php:111
697
+ msgid ""
698
+ "Warning: it looks like the value you are using may be incompatible with your "
699
+ "permalink structure"
700
+ msgstr "אזהרה: נראה שהערך בשימוש אינו מתאים למבנה הקישורים שלך"
701
+
702
+ #: options/panel3.php:121
703
+ msgid ""
704
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
705
+ "Use <strong>single</strong> quotes for values."
706
+ msgstr ""
707
+ "ציין קוד HTML משלך להוספה למקטע HEAD של העמוד. השתמש כערכים בציטוט "
708
+ "<strong>יחיד</strong>."
709
+
710
+ #: options/panel3.php:127 options/panel4.php:135
711
+ msgid "Messages"
712
+ msgstr "הודעות"
713
+
714
+ #: options/panel3.php:144
715
+ msgid "Text shown to those who request to manage their subscriptions."
716
+ msgstr "טקסט המוצג לאלו המבקשים לנהל את ההרשמות שלהם."
717
+
718
+ #: options/panel3.php:162
719
+ msgid ""
720
+ "Thank you note shown after the request here above has been processed. "
721
+ "Allowed tags: [post_title], [post_permalink]"
722
+ msgstr ""
723
+ "הודעת תודה המוצגת לאחר שהבקשה עובדה. תגיות מותרות: [post_title], "
724
+ "[post_permalink]"
725
+
726
+ #: options/panel3.php:180
727
+ msgid ""
728
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
729
+ "[post_title], [post_permalink]"
730
+ msgstr ""
731
+ "טקסט המוצג לאלו המבקשים להירשם מבלי להגיב. תגיות מותרות: [post_title], "
732
+ "[post_permalink]"
733
+
734
+ #: options/panel3.php:198
735
+ msgid ""
736
+ "Thank you note shown after the subscription request has been processed "
737
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
738
+ msgstr ""
739
+ "הודעת תודה המוצגת לאחר שעובדה בקשת ההרשמה (ללא אימות כפול). תגיות מותרות: "
740
+ "[post_title], [post_permalink]"
741
+
742
+ #: options/panel3.php:216
743
+ msgid ""
744
+ "Thank you note shown after the subscription request has been processed "
745
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
746
+ msgstr ""
747
+ "הודעת תודה המוצגת לאחר עיבוד בקשת הרשמה (כאשר מופעל אימות כפול). תגיות "
748
+ "מותרות: [post_title], [post_permalink]"
749
+
750
+ #: options/panel3.php:232
751
+ msgid "Introductory text for the authors' management page."
752
+ msgstr "טקסט היכרות למחברים בעמוד הניהול."
753
+
754
+ #: options/panel3.php:248
755
+ msgid "Introductory text for the users' management page."
756
+ msgstr "טקסט היכרות למשתמשים בעמוד הניהול."
757
+
758
+ #: options/panel4.php:15 options/panel4.php:94
759
+ msgid "Sender name"
760
+ msgstr "שם השולח"
761
+
762
+ #: options/panel4.php:20 options/panel4.php:25 options/panel4.php:107
763
+ msgid "Sender email address"
764
+ msgstr "כתובת המייל של השולח"
765
+
766
+ #: options/panel4.php:30 options/panel4.php:140
767
+ msgid "Notification subject"
768
+ msgstr "נושא ההתראה"
769
+
770
+ #: options/panel4.php:36 options/panel4.php:42 options/panel4.php:153
771
+ msgid "Notification message"
772
+ msgstr "הודעת התראה"
773
+
774
+ #: options/panel4.php:47 options/panel4.php:177
775
+ msgid "Double check subject"
776
+ msgstr "בדיקה כפולה של הנושא"
777
+
778
+ #: options/panel4.php:52 options/panel4.php:190
779
+ msgid "Double check message"
780
+ msgstr "בדיקה כפולה של ההודעה"
781
+
782
+ #: options/panel4.php:57 options/panel4.php:210
783
+ msgid "Management subject"
784
+ msgstr "נושא הניהול"
785
+
786
+ #: options/panel4.php:62 options/panel4.php:67
787
+ msgid "Management message"
788
+ msgstr "הודעת הניהול"
789
+
790
+ #: options/panel4.php:72 options/panel4.php:243
791
+ msgid "Management Email message"
792
+ msgstr ""
793
+
794
+ #: options/panel4.php:101
795
+ msgid ""
796
+ "Name to use for the \"from\" field when sending a new notification to the "
797
+ "user."
798
+ msgstr "השם לשימוש בשדה \"מאת\" בשליחת הודעה חדשה למשתמש."
799
+
800
+ #: options/panel4.php:115
801
+ msgid ""
802
+ "Email address to use for the \"from\" field when sending a new notification "
803
+ "to the user."
804
+ msgstr "כתובת אימייל לשימוש עבור שדה \"מאת\" בשליחת התראה הודעה חדשה למשתמש."
805
+
806
+ #: options/panel4.php:121
807
+ #, fuzzy
808
+ msgid "Reply To"
809
+ msgstr "תגובות בלבד"
810
+
811
+ #: options/panel4.php:128
812
+ msgid ""
813
+ "This will be use when the user click reply on their email agent. If not set "
814
+ "will be the same as the Sender email address."
815
+ msgstr ""
816
+
817
+ #: options/panel4.php:147
818
  msgid "Subject of the notification email. Allowed tag: [post_title]"
819
  msgstr "נושא מייל ההתראה. תגית אפשרית: [post_title]"
820
 
877
  "[blog_name]"
878
  msgstr "נושא מייל האישור. תגית אפשרית: [post_title]"
879
 
880
+ #: options/panel5.php:28
881
+ msgid "Safetly Uninstall"
 
 
 
 
 
 
 
 
 
 
882
  msgstr ""
 
 
 
 
 
883
 
884
+ #: options/panel5.php:31 options/panel5.php:84
885
+ msgid "Autopurge requests"
886
+ msgstr "ניקוי אוטומטי של בקשות"
887
 
888
+ #: options/panel5.php:34 options/panel5.php:93
889
+ msgid "Enable double check"
890
+ msgstr "הפעל בדיקה כפולה"
 
 
 
 
 
 
 
 
 
 
891
 
892
+ #: options/panel5.php:37 options/panel5.php:101
893
+ msgid "Subscribe authors"
 
894
  msgstr "רשום את המחברים"
895
 
896
+ #: options/panel5.php:40 options/panel5.php:111
897
+ msgid "Enable HTML emails"
898
+ msgstr "הפעל HTML בהודעות מייל"
 
 
 
 
 
 
 
 
899
 
900
+ #: options/panel5.php:43
901
+ msgid "HTMLify Links in HTML emails"
902
+ msgstr "הפעל קישורי HTML באימיילים עם HTML"
 
 
 
 
 
 
903
 
904
+ #: options/panel5.php:46
905
+ msgid "Send trackbacks"
906
+ msgstr "שלח טראקבקים"
907
 
908
+ #: options/panel5.php:49
909
+ msgid "Notify admin"
910
+ msgstr "הודע למנהל"
911
 
912
+ #: options/panel5.php:52 options/panel5.php:149
913
+ msgid "Let admin subscribe"
914
+ msgstr "אפשר למנהל להירשם"
 
915
 
916
+ #: options/panel5.php:55 options/panel5.php:158
917
+ msgid "BCC admin on Notifications"
918
+ msgstr "שלח עותק נסתר של הוהודעות להנהלה"
919
 
920
+ #: options/panel5.php:76
921
+ msgid "Safely Uninstall"
922
+ msgstr ""
 
923
 
924
+ #: options/panel5.php:80
925
+ msgid ""
926
+ "This option will allow you to delete the plugin with WordPress without "
927
+ "loosing your subscribers. Any database table and plugin options are wipeout."
928
+ msgstr ""
929
 
930
+ #: options/panel5.php:87
931
+ msgid "days"
932
+ msgstr "ימים"
933
 
934
+ #: options/panel5.php:88
935
+ msgid ""
936
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
937
+ "this feature."
938
+ msgstr "מחק הרשמות בהמתנה (שלא אושרו) לאחר X ימים. אפס מבטל אפשרות זו."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
939
 
940
  #: options/panel5.php:97
941
  msgid ""
995
  msgid "StCR Unique Key"
996
  msgstr "מפתח StCR ייחודי"
997
 
998
+ #: options/panel5.php:172
999
+ msgid "This Unique Key is not set, please click the following button to "
1000
+ msgstr "מפתח ייחודי זה אינו מוגדר, נא ללחוץ על הכפתור שלהלן כדי "
1001
+
1002
+ #: options/panel5.php:176 options/panel5.php:187
1003
+ msgid "Generate"
1004
+ msgstr ""
1005
+
1006
+ #: options/panel5.php:184
1007
+ #, fuzzy
1008
+ msgid ""
1009
+ "This Unique Key will be use to send the notification to your subscribers "
1010
+ "with more security."
1011
+ msgstr ""
1012
+ "זהו מפתח ייחודי שישמש כדי לשלוח את ההודעה עבור הנרשמים שלך עם יותר\n"
1013
+ "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tאבטחה."
1014
+
1015
+ #: options/panel7.php:8 options/panel8.php:8
1016
+ msgid "Support the developers"
1017
+ msgstr "תמיכה במפתחים"
1018
+
1019
+ #: options/panel7.php:18
1020
+ #, fuzzy
1021
+ msgid ""
1022
+ "How valuable is the feature offered by this plugin to your visitors? please "
1023
+ "consider supporting the author if this plugin made your web site better, "
1024
+ "especially if you are making money out of it. Any donation received will be "
1025
+ "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
1026
+ "strong>, and to buy some food for my hungry family."
1027
+ msgstr ""
1028
+ "כמה ערך מוסיף התוסף למבקרים באתר שלך? <strong>הירשם ל Comments Reloaded</"
1029
+ "strong> תהיה תמיד ללא תשלום, אבל שקול לתמוך במחבר אם התוסף הזה שיפר את האתר "
1030
+ "שלך, במיוחד אם אתה מרוויח ממנו. כל תרומה שתתקבל תושקע מחדש בפיתוח של "
1031
+ "<strong>Subscribe to Comments Reloaded</strong>, ותקנה קצת אוכל למשפחתי "
1032
+ "הרעבה."
1033
+
1034
+ #: options/panel7.php:20
1035
+ msgid "Don't want to donate? You can still help"
1036
+ msgstr "לא רוצה לתרום? עדיין אפשר לעזור"
1037
+
1038
+ #: options/panel7.php:21
1039
+ msgid ""
1040
+ "If you don't want to donate money, please consider blogging about my plugin "
1041
+ "with a link to the plugin's page. Please let your readers know what makes "
1042
+ "your blog better. You can also contribute donating your time: do not "
1043
+ "hesitate to send me bug reports, your localization files, ideas on how to "
1044
+ "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
1045
+ "you do, thanks for using my plugin!"
1046
+ msgstr ""
1047
+ "אם אינך מעוניין לתרום כסף,. נא לשקול לפרסם אותו לקוראים שלך בבלוג עם קישור "
1048
+ "לעמוד התוסף. אפשר גם לתרום זמן: לא להסס לשלוח לי דיווחי באגים, קבצי תרגום, "
1049
+ "רעיונות לשיפור, איך לשפר את <strong>Subscribe to Comments Reloaded</strong> "
1050
+ "וכו'. בכל מקרה, תודה שבחרת להשתמש בתוסף שלי!"
1051
+
1052
+ #: options/panel7.php:23
1053
+ #, fuzzy
1054
+ msgid "Subscribe to the Beta testers"
1055
+ msgstr "רשום את המחברים"
1056
+
1057
+ #: options/panel7.php:24
1058
+ msgid ""
1059
+ "Before a new Update we release a Beta version so that our current users can "
1060
+ "give us feedback if they find a bug, If you want to join the tester list you "
1061
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
1062
+ "a>"
1063
+ msgstr ""
1064
+
1065
+ #: options/panel7.php:26
1066
+ msgid "Vote and show your appreciation"
1067
+ msgstr "דרגו והראו הערכה"
1068
+
1069
+ #: options/panel7.php:27
1070
+ msgid ""
1071
+ "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
1072
+ "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
1073
+ "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
1074
+ msgstr ""
1075
+ "שתף אנשים נוספים איך <strong>Subscribe to Comments Reloaded</strong> פועל "
1076
+ "עבורך וכמה הוא טוב. <a href=\"http://wordpress.org/extend/plugins/subscribe-"
1077
+ "to-comments-reloaded/\">דרג אותו</a> בעמוד התוסף."
1078
+
1079
+ #: options/panel8.php:18
1080
+ msgid "Did you find a Bug on the plugin?"
1081
+ msgstr "מצאתם באג בתוסף?"
1082
+
1083
+ #: options/panel8.php:19
1084
+ #, fuzzy
1085
+ msgid ""
1086
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1087
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1088
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1089
+ "WordPress Support page."
1090
+ msgstr ""
1091
+ "נא לדווח על כל באג בעמוד <a href=\"https://github.com/stcr/subscribe-to-"
1092
+ "comments-reloaded/issues/\" target=\"_blank\">GitHub</a> עדיף על עמוד התמיכה "
1093
+ "בוורדפרס."
1094
+
1095
+ #: options/panel9.php:11
1096
+ #, fuzzy
1097
+ msgid "Support Subscribe to Comments Reloaded"
1098
+ msgstr "זקוק לעזרה ב כיצד להירשם ל Comments Reloaded? בקר ב"
1099
+
1100
+ #: options/panel9.php:12
1101
+ msgid ""
1102
+ "Every contribution that you make is high valuable, so if you consider this "
1103
+ "plugin a helpful tool we will use your donation to invest on support and "
1104
+ "developing time."
1105
+ msgstr ""
1106
+
1107
+ #: templates/author.php:57
1108
+ msgid "Title"
1109
+ msgstr "כותרת"
1110
+
1111
+ #: templates/author.php:58 templates/user.php:58
1112
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1113
+ msgstr "מקרא: Y = כל ההערות, R = תגובות בלבד, C = לא פעיל"
1114
+
1115
+ #: templates/author.php:69 templates/user.php:67
1116
+ msgid "Select all"
1117
+ msgstr "הכל"
1118
+
1119
+ #: templates/author.php:70 templates/user.php:68
1120
+ msgid "Invert selection"
1121
+ msgstr "היפוך הבחירה"
1122
+
1123
+ #: templates/author.php:74 templates/user.php:72
1124
+ #, fuzzy
1125
+ msgid "All comments"
1126
+ msgstr "כל התגובות החדשות"
1127
+
1128
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1129
+ msgid "Replies to my comments"
1130
+ msgstr "תגובות להערות שלי"
1131
+
1132
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1133
+ #: templates/user.php:79
1134
+ msgid "No subscriptions match your search criteria."
1135
+ msgstr "אין הרשמה התואמת את קריטריון החיפוש שלך."
1136
+
1137
+ #: templates/key_expired.php:8
1138
+ msgid ""
1139
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1140
+ "enter your email below and a new link will be send."
1141
+ msgstr ""
1142
+
1143
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1144
+ #: templates/subscribe.php:106
1145
+ msgid "Send"
1146
+ msgstr "שלח"
1147
+
1148
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1149
+ msgid "New subscription to"
1150
+ msgstr "הרשמה חדשה ל"
1151
+
1152
+ #: templates/subscribe.php:44
1153
+ msgid "User:"
1154
+ msgstr "משתמש:"
1155
+
1156
+ #: templates/user.php:63
1157
+ msgid "F j, Y"
1158
+ msgstr ""
1159
+
1160
+ #: templates/wrong-request.php:9
1161
+ msgid "You have request to manage another email address and this is forbidden."
1162
+ msgstr ""
1163
+
1164
+ #: utils/stcr_manage.php:246
1165
+ msgid ""
1166
+ "Notify me of followup comments via e-mail. You can also <a "
1167
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1168
+ msgstr ""
1169
+ "נא לעדכן אותי במייל על תגובות נוספות. אפשר גם <a "
1170
+ "href='[subscribe_link]'>להירשם</a> מבלי להגיב."
1171
+
1172
+ #: utils/stcr_manage.php:247
1173
+ msgid ""
1174
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1175
+ "subscriptions."
1176
+ msgstr ""
1177
+ "ההרשמה שלך לפוסט זה פעילה. <a href='[manager_link]'>ניהול ההרשמות שלך</a>. "
1178
+
1179
+ #: utils/stcr_manage.php:248
1180
+ msgid ""
1181
+ "Your subscription to this post needs to be confirmed. <a "
1182
+ "href='[manager_link]'>Manage your subscriptions</a>."
1183
+ msgstr ""
1184
+ "ההרשמה שלך לפוסט זה צריכה אישור. <a href='[manager_link]'>לניהול ההרשמות "
1185
+ "שלך</a>."
1186
+
1187
+ #: utils/stcr_manage.php:249
1188
+ msgid ""
1189
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1190
+ msgstr "אפשר <a href='[manager_link]'>לנהל את ההרשמה</a> של פוסט זה."
1191
+
1192
+ #: utils/stcr_manage.php:255
1193
+ msgid ""
1194
+ "To manage your subscriptions, please enter your email address here below. We "
1195
+ "will send you a message containing the link to access your personal "
1196
+ "management page."
1197
+ msgstr ""
1198
+ "כדי לנהל את ההרשמות שלך, נא להזין את האימייל שלך להלן. נשלח לך הודעה המכילה "
1199
+ "קישור לעמוד הניהול האישי שלך."
1200
+
1201
+ #: utils/stcr_manage.php:256
1202
+ msgid ""
1203
+ "Thank you for using our subscription service. Your request has been "
1204
+ "completed, and you should receive an email with the management link in a few "
1205
+ "minutes."
1206
+ msgstr ""
1207
+ "תודה שהשתמשת בשירות ההרשמה שלנו. בקשתך הושלמה ותוך דקות יישלח אליך אימייל עם "
1208
+ "קישור ניהול הרשמה שלך."
1209
+
1210
+ #: utils/stcr_manage.php:257
1211
+ msgid ""
1212
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1213
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1214
+ "form here below and you're all set."
1215
+ msgstr ""
1216
+ "אפשר לעקוב אחר הדיון ב <strong>[post_title]</strong> ללא צורך לשלוח תגובה. "
1217
+ "מגניב, אה? רק להזין את כתובת האימייל שלך בשדה שלהלן."
1218
+
1219
+ #: utils/stcr_manage.php:258
1220
+ msgid ""
1221
+ "Thank you for using our subscription service. Your request has been "
1222
+ "completed. You will receive a notification email every time a new comment to "
1223
+ "this article is approved and posted by the administrator."
1224
+ msgstr ""
1225
+ "תודה שהשתמש בשירות ההרשמה שלנו. בקשתך הושלמה. התראה באימייל תישלח על כל "
1226
+ "תגובה חדשה שתאושר על-ידי ההנהלה לפוסט זה."
1227
+
1228
+ #: utils/stcr_manage.php:259
1229
+ msgid ""
1230
+ "Thank you for using our subscription service. In order to confirm your "
1231
+ "request, please check your email for the verification message and follow the "
1232
+ "instructions."
1233
+ msgstr ""
1234
+ "תודה על השימוש בשירות ההרשמה שלנו. כדי לאשר את הבקשה שלך, נא לבדוק ת האימייל "
1235
+ "שלך כדי לאשר את ההרשמה לפי ההנחיות במייל ."
1236
+
1237
+ #: utils/stcr_manage.php:260
1238
+ msgid ""
1239
+ "In order to cancel or suspend one or more notifications, select the "
1240
+ "corresponding checkbox(es) and click on the button at the end of the list."
1241
+ msgstr ""
1242
+ "כדי לבטל או להשעות הודעה אחת או יותר נא לבחור תיבת(ות) סימון בהתאמה וללחוץ "
1243
+ "על הכפתור שבסוף הרשימה."
1244
+
1245
+ #: utils/stcr_manage.php:261
1246
+ msgid ""
1247
+ "In order to cancel or suspend one or more notifications, select the "
1248
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1249
+ "You are currently subscribed to:"
1250
+ msgstr ""
1251
+ "כדי לבטל או להשעות התראה אחת או יותר, נא לבחור בתיבת(ות) הסימון המתאימה(ות) "
1252
+ "וללחוץ על הכפתור שבסוף הרשימה. כעת יש הרשמות ל:"
1253
+
1254
+ #: utils/stcr_manage.php:265
1255
+ msgid "There is a new comment to [post_title]"
1256
+ msgstr "יש תגובה חדשה ל [post_title]"
1257
+
1258
+ #: utils/stcr_manage.php:266
1259
+ msgid ""
1260
+ "There is a new comment to [post_title].\n"
1261
+ "Comment Link: [comment_permalink]\n"
1262
+ "Author: [comment_author]\n"
1263
+ "Comment:\n"
1264
+ "[comment_content]\n"
1265
+ "Permalink: [post_permalink]\n"
1266
+ "Manage your subscriptions: [manager_link]"
1267
+ msgstr ""
1268
+ "יש תגובה חדשה ל [post_title].\n"
1269
+ "קישור לתגובה: [comment_permalink]\n"
1270
+ "מחבר: [comment_author]\n"
1271
+ "תגובה:\n"
1272
+ "[comment_content]\n"
1273
+ "מבנה קישור: [post_permalink]\n"
1274
+ "ניהול ההרשמות שלך: [manager_link]"
1275
+
1276
+ #: utils/stcr_manage.php:267
1277
+ msgid "Please confirm your subscription to [post_title]"
1278
+ msgstr "נא לאשר את ההרשמה שלך ל [post_title]"
1279
+
1280
+ #: utils/stcr_manage.php:268
1281
+ msgid ""
1282
+ "You have requested to be notified every time a new comment is added to:\n"
1283
+ "[post_permalink]\n"
1284
+ "\n"
1285
+ "Please confirm your request by clicking on this link:\n"
1286
+ "[confirm_link]"
1287
+ msgstr ""
1288
+ "ביקשת לקבל הודעות על הוספת תגובות חדשות ל:\n"
1289
+ "[post_permalink]\n"
1290
+ "\n"
1291
+ "נא לאמת את הבקשה באמצעות לחיצה על הקישור:\n"
1292
+ "[confirm_link]"
1293
+
1294
+ #: utils/stcr_manage.php:269
1295
+ msgid "Manage your subscriptions on [blog_name]"
1296
+ msgstr "ניהול ההרשמות שלך ב [blog_name]"
1297
+
1298
+ #: utils/stcr_manage.php:270
1299
+ msgid ""
1300
+ "You have requested to manage your subscriptions to the articles on "
1301
+ "[blog_name]. Please check the Subscriptions management link in your email"
1302
+ msgstr ""
1303
+
1304
+ #: utils/stcr_manage.php:271
1305
+ msgid ""
1306
+ "You have requested to manage your subscriptions to the articles on "
1307
+ "[blog_name]. Follow this link to access your personal page:\n"
1308
+ "[manager_link]"
1309
+ msgstr ""
1310
+ "ביקשת לנהל את ההרשמות שלך למאמרים ב [blog_name]. קישור זה יוביל אותך לעמוד "
1311
+ "הניהול שלך:\n"
1312
+ "[manager_link]"
1313
+
1314
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1315
+ msgid "StCR System"
1316
+ msgstr ""
1317
+
1318
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1319
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1320
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1321
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1322
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1323
+ msgid "You do not have sufficient permissions to access this page."
1324
+ msgstr ""
1325
+
1326
+ #: utils/stcr_manage.php:755
1327
+ #, fuzzy
1328
+ msgid "Subscriptions"
1329
+ msgstr "הרשמה"
1330
+
1331
+ #: utils/stcr_manage.php:811
1332
+ msgid ""
1333
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1334
+ msgstr "זקוק לעזרה ב כיצד להירשם ל Comments Reloaded? בקר ב"
1335
+
1336
+ #: utils/stcr_manage.php:811
1337
+ msgid "support forum"
1338
+ msgstr "פורום התמיכה הרשמי"
1339
+
1340
+ #: utils/stcr_manage.php:812
1341
+ msgid "Feeling generous?"
1342
+ msgstr "מרגיש נדיב?"
1343
+
1344
+ #: utils/stcr_manage.php:812
1345
+ msgid "Donate a few bucks!"
1346
+ msgstr "תרום קצת!"
1347
+
1348
+ #: utils/stcr_upgrade.php:55
1349
+ msgid "Important Notice"
1350
+ msgstr "הודעה חשובה"
1351
+
1352
+ #: utils/stcr_upgrade.php:103
1353
+ msgid ""
1354
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1355
+ "database has been sanitized to prevent the raw html messages. <a class="
1356
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1357
+ "src=\""
1358
+ msgstr ""
1359
+
1360
+ #: utils/stcr_upgrade.php:158
1361
+ #, fuzzy
1362
+ msgid ""
1363
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1364
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1365
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1366
+ msgstr ""
1367
+ "נתוני הרשמה מתוסף <strong>Subscribe to Comments</strong> זוהו ויובאו "
1368
+ "אוטומטית ל <strong>Subscribe to Comments Reloaded</strong>."
1369
+
1370
+ #: utils/stcr_upgrade.php:158
1371
+ msgid ""
1372
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1373
+ "Comments to prevent confusion between the two plugins."
1374
+ msgstr ""
1375
+ " מומלץ כעת <strong>לכבות</strong> את Subscribe to Comments כדי למנוע בלבול "
1376
+ "בין שני התוספים."
1377
+
1378
+ #: utils/stcr_upgrade.php:159
1379
+ msgid ""
1380
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1381
+ "that you want to import, you'll need to import that data manually, as only "
1382
+ "one import routine will ever run to prevent data loss."
1383
+ msgstr ""
1384
+ "אם יש לך נתוני הרשמה מ Subscribe to Comments Reloaded < v2.0 ליבוא, יהיה "
1385
+ "צורך לייבא אותם ידנית, כי רק שגרת יבוא אחת תפעל, כדי למנוע אבדן נתונים."
1386
+
1387
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1388
+ #: utils/stcr_upgrade.php:381
1389
+ msgid ""
1390
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1391
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1392
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1393
+ "\"stcr-loading-animation\" src=\""
1394
+ msgstr ""
1395
+
1396
+ #: utils/stcr_upgrade.php:231
1397
+ #, fuzzy
1398
+ msgid ""
1399
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1400
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1401
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1402
+ msgstr ""
1403
+ "נתוני הרשמה מתוסף <strong>Comment Reply Notification</strong> זוהו ויובאו "
1404
+ "אוטומטית ל <strong>Subscribe to Comments Reloaded</strong>."
1405
+
1406
+ #: utils/stcr_upgrade.php:231
1407
+ msgid ""
1408
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1409
+ "Notification to prevent confusion between the two plugins."
1410
+ msgstr ""
1411
+ " מומלץ כעת <strong>לכבות</strong> את Comment Reply Notification כדי למנוע "
1412
+ "בלבול בין התוספים."
1413
+
1414
+ #: utils/stcr_upgrade.php:378
1415
+ #, fuzzy
1416
+ msgid ""
1417
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1418
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1419
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1420
+ "Reloaded</strong>."
1421
+ msgstr ""
1422
+ "אפשרויות התוסף ונתוני הרשמה מתוסף <strong>WP Comment Subscriptions</strong> "
1423
+ "זוהו ויובאו אוטומטית אל <strong>Subscribe to Comments Reloaded</strong>."
1424
 
1425
+ #: utils/stcr_upgrade.php:378
1426
+ msgid ""
1427
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1428
+ "Subscriptions to prevent confusion between the two plugins."
1429
  msgstr ""
1430
+ " מומלץ כעת <strong>לכבות</strong> את WP Comment Subscriptions כדי למנוע "
1431
+ "בלבול בין שני התוספים."
1432
 
1433
+ #: utils/stcr_upgrade.php:379
 
1434
  msgid ""
1435
+ "If you have subscription data from another plugin (such as Subscribe to "
1436
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1437
+ "you'll need to import that data manually, as only one import routine will "
1438
+ "ever run to prevent data loss."
1439
  msgstr ""
1440
+ "אם יש לך מידע הרשמה מתוסף אחר (כמו Subscribe to Comments או Subscribe to "
1441
+ "Comments Reloaded < v2.0) שתרצה לייבא, יהיה צורך לייבא את הנתונים באופן "
1442
+ "ידני, כי תמיד תפעל רק שגרת יבוא אחת כדי למנוע אבדן נתונים."
1443
 
1444
+ #: utils/stcr_upgrade.php:380
1445
+ msgid ""
1446
+ "<strong>Note:</strong> If you were previously using the "
1447
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1448
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1449
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1450
+ "respectively."
1451
+ msgstr ""
1452
+ "<strong>הערה:</strong> אם השתמשת קודם בפונקציית "
1453
+ "<code>wp_comment_subscriptions_show()</code> או בפונקציית קיצור הקוד "
1454
+ "<code>[wpcs-subscribe-url]</code> , תצטרך להחליף אותו ב "
1455
+ "<code>subscribe_reloaded_show()</code> וב <code>[subscribe-url]</code> "
1456
+ "בהתאמה."
1457
 
1458
+ #: utils/stcr_upgrade.php:394
1459
+ msgid ""
1460
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
1461
+ msgstr ""
1462
+
1463
+ #: utils/stcr_upgrade.php:395
1464
  #, fuzzy
1465
  msgid ""
1466
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1467
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
 
 
1468
  msgstr ""
1469
  "נא לדווח על כל באג בעמוד <a href=\"https://github.com/stcr/subscribe-to-"
1470
  "comments-reloaded/issues/\" target=\"_blank\">GitHub</a> עדיף על עמוד התמיכה "
1471
  "בוורדפרס."
1472
 
1473
+ #: utils/stcr_upgrade.php:396
1474
+ msgid ""
1475
+ "Please consider to make a donation to support the plugin, you can donate via "
1476
+ "<a href=\"\n"
1477
+ "https://www.paypal.com/cgi-bin/webscr?"
1478
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1479
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1480
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
 
 
 
 
 
1481
  msgstr ""
1482
 
1483
+ #: utils/stcr_upgrade.php:398
1484
+ msgid ""
1485
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1486
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1487
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1488
+ "a><img class=\"stcr-loading-animation\" src=\""
1489
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1490
 
1491
+ #: utils/stcr_upgrade.php:409
1492
+ msgid ""
1493
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1494
+ "160106."
1495
+ msgstr ""
1496
 
1497
+ #: utils/stcr_upgrade.php:410
1498
+ msgid ""
1499
+ "This version includes many changes and fixes to improve your experience with "
1500
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1501
+ "email templates, Subscription Checkbox position, and more!"
1502
+ msgstr ""
1503
 
1504
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1505
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1506
+ msgid ""
1507
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1508
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1509
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1510
+ "class=\"stcr-loading-animation\" src=\""
1511
+ msgstr ""
1512
 
1513
+ #: utils/stcr_upgrade.php:424
1514
+ msgid ""
1515
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1516
+ "160115."
1517
+ msgstr ""
1518
 
1519
+ #: utils/stcr_upgrade.php:425
1520
+ msgid ""
1521
+ "This version includes fixes to broken links while managing your subscriptions"
1522
+ msgstr ""
1523
 
1524
+ #: utils/stcr_upgrade.php:439
 
1525
  msgid ""
1526
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1527
+ "160831"
 
1528
  msgstr ""
 
 
 
1529
 
1530
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1531
+ msgid "This version includes fixes to many bugs and also new features, "
1532
+ msgstr ""
1533
 
1534
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1535
  msgid ""
1536
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1537
+ "address. This will help the subscribers to use the Reply option in their "
1538
+ "email agents."
 
1539
  msgstr ""
 
 
 
1540
 
1541
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1542
  msgid ""
1543
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1544
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1545
+ msgstr ""
1546
 
1547
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1548
  msgid ""
1549
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1550
+ "without loosing your subscriptions. You can use this option also for reset "
1551
+ "all the settings, see the FAQ."
1552
  msgstr ""
 
 
 
 
 
 
1553
 
1554
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1555
  msgid ""
1556
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1557
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1558
+ "Post Type."
1559
  msgstr ""
 
 
1560
 
1561
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1562
  msgid ""
1563
+ "<strong>New Feature</strong> A new field was added under the notification "
1564
+ "options to and the management link only by email and not to display it on "
1565
+ "the request link page."
1566
  msgstr ""
 
 
1567
 
1568
+ #: utils/stcr_upgrade.php:461
1569
  msgid ""
1570
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1571
+ "160902"
1572
  msgstr ""
 
 
1573
 
1574
+ #: utils/stcr_upgrade.php:464
1575
  msgid ""
1576
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1577
+ "previous 160831 version."
1578
  msgstr ""
 
 
1579
 
1580
+ #: utils/stcr_utils.php:195
1581
+ #, fuzzy
1582
+ msgid "StCR Notification"
1583
+ msgstr "הודעות"
1584
 
1585
+ #: wp_subscribe_reloaded.php:114
1586
+ msgid "Settings"
1587
+ msgstr "הגדרות"
1588
+
1589
+ #: wp_subscribe_reloaded.php:1086
1590
+ msgid "Don't subscribe"
1591
+ msgstr "א להירשם"
1592
+
1593
+ #: wp_subscribe_reloaded.php:1087
1594
+ msgid "All"
1595
+ msgstr "הכול"
1596
 
1597
  #, fuzzy
1598
  #~ msgid ""
langs/subscribe-reloaded-hu_HU.mo CHANGED
Binary file
langs/subscribe-reloaded-hu_HU.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:21-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:21-0700\n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: Web Geeks <epoxhun@gmail.com>\n"
9
  "Language: hu\n"
10
  "MIME-Version: 1.0\n"
@@ -13,588 +13,338 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
- "X-Generator: Poedit 1.6\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: wp_subscribe_reloaded.php:114
20
- msgid "Settings"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr "Beállítások"
22
 
23
- #: wp_subscribe_reloaded.php:1060
24
- msgid "Don't subscribe"
25
- msgstr "Nem iratkozom fel"
26
 
27
- #: wp_subscribe_reloaded.php:1061
28
- msgid "All"
29
- msgstr "Mindenre"
30
 
31
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
32
- #: templates/author.php:75
33
- msgid "Replies to my comments"
34
- msgstr "Csak a válaszokra"
 
 
 
 
 
 
 
 
35
 
36
- #: templates/request-management-link.php:71 templates/key_expired.php:71
37
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
38
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
39
  msgid "Email"
40
  msgstr "Email"
41
 
42
- #: templates/request-management-link.php:73 templates/key_expired.php:73
43
- #: templates/subscribe.php:92
44
- msgid "Send"
45
- msgstr "Küldés"
 
46
 
47
- #: templates/key_expired.php:8
48
- msgid ""
49
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
50
- "enter your email below and a new link will be send."
51
- msgstr ""
52
 
53
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
54
- #: templates/author.php:80
55
- msgid "No subscriptions match your search criteria."
56
- msgstr "Nincs a keresésnek megfelelő feliratkozás."
 
57
 
58
- #: templates/subscribe.php:42 templates/subscribe.php:43
59
- msgid "New subscription to"
60
- msgstr "Új feliratkozás erre"
61
 
62
- #: templates/subscribe.php:43
63
- msgid "User:"
64
- msgstr "Felhasználó:"
 
 
 
 
 
65
 
66
- #: templates/user.php:23 templates/author.php:23
67
- #: options/panel1-business-logic.php:70
 
 
 
 
 
 
 
 
68
  msgid "Subscriptions deleted:"
69
  msgstr "Feliratkozások törölve:"
70
 
71
- #: templates/user.php:27 templates/author.php:27
72
- #: options/panel1-business-logic.php:74
73
  msgid "Subscriptions suspended:"
74
  msgstr "Feliratkozások kikapcsolva:"
75
 
76
- #: templates/user.php:31 templates/author.php:31
77
- #: options/panel1-business-logic.php:78
78
  msgid "Subscriptions activated:"
79
  msgstr "Feliratkozások bekapcsolva:"
80
 
81
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
82
- #: templates/author.php:39 options/panel1-business-logic.php:82
83
- #: options/panel1-business-logic.php:86
84
  msgid "Subscriptions updated:"
85
  msgstr "Feliratkozások frissítva:"
86
 
87
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
88
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
89
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
90
  msgid ""
91
  "Please remember: this operation cannot be undone. Are you sure you want to "
92
  "proceed?"
93
  msgstr ""
94
  "Kérlek vedd figyelembe, hogy ezt nem tudod visszavonni. Biztos folytatod?"
95
 
96
- #: templates/user.php:58 templates/author.php:58
97
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
98
- msgstr ""
99
- "Magyarázat: Y = minden hozzászólás, R = csak az enyémre adott válaszok, C = "
100
- "kikapcsolva"
101
-
102
- #: templates/user.php:63
103
- msgid "F j, Y"
104
- msgstr ""
105
 
106
- #: templates/user.php:67 templates/author.php:69
107
- msgid "Select all"
108
- msgstr "Mind kiválasztása"
109
 
110
- #: templates/user.php:68 templates/author.php:70
111
- msgid "Invert selection"
112
- msgstr "Fordított kiválasztás"
113
 
114
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
115
- msgid "Action:"
116
- msgstr "Tevékenység:"
117
 
118
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
119
- #: options/panel1.php:212
120
- msgid "Delete"
121
- msgstr "Törlés"
122
 
123
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
124
- msgid "Suspend"
125
- msgstr "Kikapcsolás"
126
 
127
- #: templates/user.php:72 templates/author.php:74
128
- msgid "All comments"
129
- msgstr "Minden új hozzászólás"
130
 
131
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
132
- msgid "Activate"
133
- msgstr "Aktiválás"
134
 
135
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
136
- msgid "Update subscriptions"
137
- msgstr "Feliratkozások frissítése"
 
 
138
 
139
- #: templates/author.php:57
140
- msgid "Title"
141
- msgstr "Cím"
142
 
143
- #: utils/stcr_upgrade.php:55
144
- msgid "Important Notice"
145
- msgstr "Fontos Közlendő"
146
 
147
- #: utils/stcr_upgrade.php:103
148
- msgid ""
149
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
150
- "database has been sanitized to prevent the raw html messages. <a class="
151
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
152
- "src=\""
153
- msgstr ""
154
 
155
- #: utils/stcr_upgrade.php:158
 
156
  msgid ""
157
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
158
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
159
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
160
  msgstr ""
161
- "<strong>Subscribe to Comments</strong> által kezelt feliratkozási adatokat "
162
- "találtunk és importáltunk is őket a <strong>Subscribe to Comments Reloaded</"
163
- "strong>-be."
164
 
165
- #: utils/stcr_upgrade.php:158
166
- msgid ""
167
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
168
- "Comments to prevent confusion between the two plugins."
169
- msgstr ""
170
- "Javasoljuk, hogy most <strong>kapcsold ki</strong> a Subscribe to Comments-"
171
- "et, hogy megelőzzük a két plugin összeakadását."
172
 
173
- #: utils/stcr_upgrade.php:159
174
- msgid ""
175
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
176
- "that you want to import, you'll need to import that data manually, as only "
177
- "one import routine will ever run to prevent data loss."
178
- msgstr ""
179
- "Ha a Subscribe to Comments Reloaded v2.0 előtti verzióban vannak "
180
- "importálandó feliratkozási adataid, ezeket manuálisan kell importálnod, mert "
181
- "az adatvesztés megelőzése érdekében csak egyetlen importálási folyamatot "
182
- "alkalmazunk."
183
 
184
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
185
- #: utils/stcr_upgrade.php:381
186
- msgid ""
187
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
188
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
189
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
190
- "\"stcr-loading-animation\" src=\""
191
- msgstr ""
192
 
193
- #: utils/stcr_upgrade.php:231
194
- msgid ""
195
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
196
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
197
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
198
- msgstr ""
199
- "<strong>Comment Reply Notification</strong> által kezelt feliratkozási "
200
- "adatokat találtunk és importáltunk is őket a <strong>Subscribe to Comments "
201
- "Reloaded</strong>-be."
202
 
203
- #: utils/stcr_upgrade.php:231
204
- msgid ""
205
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
206
- "Notification to prevent confusion between the two plugins."
207
- msgstr ""
208
- "Javasoljuk, hogy most <strong>kapcsold ki</strong> a Comment Reply "
209
- "Notification-t, hogy megelőzzük a két plugin összeakadását."
210
 
211
- #: utils/stcr_upgrade.php:378
212
- msgid ""
213
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
214
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
215
- "were detected and automatically imported into <strong>Subscribe to Comments "
216
- "Reloaded</strong>."
217
- msgstr ""
218
- "<strong>WP Comment Subscriptions</strong> által kezelt feliratkozási "
219
- "adatokat és beállításokat találtunk és importáltunk is őket a "
220
- "<strong>Subscribe to Comments Reloaded</strong>-be."
221
 
222
- #: utils/stcr_upgrade.php:378
223
- msgid ""
224
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
225
- "Subscriptions to prevent confusion between the two plugins."
226
- msgstr ""
227
- "Javasoljuk, hogy most <strong>kapcsold ki</strong> a WP Comment "
228
- "Subscriptions-t, hogy megelőzzük a két plugin összeakadását."
229
 
230
- #: utils/stcr_upgrade.php:379
231
- msgid ""
232
- "If you have subscription data from another plugin (such as Subscribe to "
233
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
234
- "you'll need to import that data manually, as only one import routine will "
235
- "ever run to prevent data loss."
236
- msgstr ""
237
- "Ha feliratkozási adataid vannak másik pluginban (mind például a Subscribe to "
238
- "Comments vagy a Subscribe to Comments Reloaded v2.0-nél régebbi verziói) és "
239
- "ezeket szeretnéd importálni, ezeket manuálisan kell importálnod, mert az "
240
- "adatvesztés megelőzése érdekében csak egyetlen importálási folyamatot "
241
- "alkalmazunk."
242
-
243
- #: utils/stcr_upgrade.php:380
244
- msgid ""
245
- "<strong>Note:</strong> If you were previously using the "
246
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
247
- "subscribe-url]</code> shortcode, you'll need to replace those with "
248
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
249
- "respectively."
250
- msgstr ""
251
- "<strong>Megjegyzés:</strong> Ha korábban a "
252
- "<code>wp_comment_subscriptions_show()</code> funkciót vagy a <code>[wpcs-"
253
- "subscribe-url]</code> shortcode-ot használtad, ezeket le kell cserélned a "
254
- "<code>subscribe_reloaded_show()</code> funkcióra és a <code>[subscribe-url]</"
255
- "code> shortcode-ra."
256
-
257
- #: utils/stcr_upgrade.php:394
258
- msgid ""
259
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
260
- msgstr ""
261
-
262
- #: utils/stcr_upgrade.php:395
263
- msgid ""
264
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
265
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
266
- msgstr ""
267
-
268
- #: utils/stcr_upgrade.php:396
269
- msgid ""
270
- "If you want to donate you can do it via <a href=\"\n"
271
- "https://www.paypal.com/cgi-bin/webscr?"
272
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
273
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
274
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
275
- msgstr ""
276
-
277
- #: utils/stcr_upgrade.php:398
278
- msgid ""
279
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
280
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
281
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
282
- "a><img class=\"stcr-loading-animation\" src=\""
283
- msgstr ""
284
-
285
- #: utils/stcr_upgrade.php:409
286
- msgid ""
287
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
288
- "160106."
289
- msgstr ""
290
-
291
- #: utils/stcr_upgrade.php:410
292
- msgid ""
293
- "This version includes many changes and fixes to improve your experience with "
294
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
295
- "email templates, Subscription Checkbox position, and more!"
296
- msgstr ""
297
-
298
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
299
- #: utils/stcr_upgrade.php:448
300
- msgid ""
301
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
302
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
303
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
304
- "class=\"stcr-loading-animation\" src=\""
305
- msgstr ""
306
-
307
- #: utils/stcr_upgrade.php:424
308
- msgid ""
309
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
310
- "160115."
311
- msgstr ""
312
-
313
- #: utils/stcr_upgrade.php:425
314
- msgid ""
315
- "This version includes fixes to broken links while managing your subscriptions"
316
- msgstr ""
317
-
318
- #: utils/stcr_upgrade.php:439
319
- msgid ""
320
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
321
- "160831"
322
- msgstr ""
323
-
324
- #: utils/stcr_upgrade.php:440
325
- msgid "This version includes fixes to many bugs and also new features, "
326
- msgstr ""
327
-
328
- #: utils/stcr_upgrade.php:442
329
- msgid ""
330
- "<strong>New Feature</strong> Add new option to set the Reply To email "
331
- "address. This will help the subscribers to use the Reply option in their "
332
- "email agents."
333
- msgstr ""
334
-
335
- #: utils/stcr_upgrade.php:443
336
- msgid ""
337
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
338
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
339
- msgstr ""
340
-
341
- #: utils/stcr_upgrade.php:444
342
- msgid ""
343
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
344
- "without loosing your subscriptions. You can use this option also for reset "
345
- "all the settings, see the FAQ."
346
- msgstr ""
347
-
348
- #: utils/stcr_upgrade.php:445
349
- msgid ""
350
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
351
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
352
- "Post Type."
353
- msgstr ""
354
-
355
- #: utils/stcr_upgrade.php:446
356
- msgid ""
357
- "<strong>New Feature</strong> A new field was added under the notification "
358
- "options to and the management link only by email and not to display it on "
359
- "the request link page."
360
- msgstr ""
361
-
362
- #: utils/stcr_manage.php:246
363
- msgid ""
364
- "Notify me of followup comments via e-mail. You can also <a "
365
- "href='[subscribe_link]'>subscribe</a> without commenting."
366
- msgstr ""
367
- "A hozzászólásokról email-ben kérek értesítést. <a "
368
- "href='[subscribe_link]'>Feliratkozás</a> hozzászólás nélkül is lehetséges."
369
-
370
- #: utils/stcr_manage.php:247
371
- msgid ""
372
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
373
- "subscriptions."
374
- msgstr ""
375
- "Feliratkozva ehhez a bejegyzéshez. <a href='[manager_link]'Saját "
376
- "feliratkozásaink kezelése</a>."
377
-
378
- #: utils/stcr_manage.php:248
379
- msgid ""
380
- "Your subscription to this post needs to be confirmed. <a "
381
- "href='[manager_link]'>Manage your subscriptions</a>."
382
- msgstr ""
383
- "A feliratkozási szándékot meg kell erősíteni: <a "
384
- "href='[manager_link]'>Feliratkozás kezelése</a>."
385
-
386
- #: utils/stcr_manage.php:249
387
- msgid ""
388
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
389
- msgstr ""
390
- "<a href='[manager_link]'>Saját feliratkozásunk kezelése</a> ennél a "
391
- "bejegyzésnél."
392
-
393
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
394
- #: utils/stcr_manage.php:383 options/index.php:59
395
- msgid "Manage subscriptions"
396
- msgstr "Feliratkozás kezelése"
397
-
398
- #: utils/stcr_manage.php:255
399
- msgid ""
400
- "To manage your subscriptions, please enter your email address here below. We "
401
- "will send you a message containing the link to access your personal "
402
- "management page."
403
- msgstr ""
404
- "A feliratkozások kezeléséhez alul meg kell adni az email címet, amelyre "
405
- "elküldjük azt a hivatkozást, amellyel a saját kezelési oldalra lehet belépni."
406
-
407
- #: utils/stcr_manage.php:256
408
- msgid ""
409
- "Thank you for using our subscription service. Your request has been "
410
- "completed, and you should receive an email with the management link in a few "
411
- "minutes."
412
- msgstr ""
413
- "Köszönjük, hogy használod az értesítőket. Néhány percen belül e-mailben "
414
- "megkapot a beállításokhoz szükséges linked."
415
-
416
- #: utils/stcr_manage.php:257
417
- msgid ""
418
- "You can follow the discussion on <strong>[post_title]</strong> without "
419
- "having to leave a comment. Cool, huh? Just enter your email address in the "
420
- "form here below and you're all set."
421
- msgstr ""
422
- "<strong>[post_title]</strong> című bejegyzésünkhöz történő hozzászólásokat "
423
- "úgy is figyelemmel lehet kísérni, ha az olvasó nem szól hozzá a témához. "
424
- "Csak meg kell adni a saját email címet az alul található mezőbe, és máris "
425
- "minden készen áll."
426
-
427
- #: utils/stcr_manage.php:258
428
- msgid ""
429
- "Thank you for using our subscription service. Your request has been "
430
- "completed. You will receive a notification email every time a new comment to "
431
- "this article is approved and posted by the administrator."
432
- msgstr ""
433
- "<strong>Köszönjük, hogy használtad a feliratkozás szolgáltatásunkat!</"
434
- "strong><br /> A kérést rögzítettük; minden egyes alkalommal küldünk egy "
435
- "értesítést email címedre, amikor a bejegyzéshez új hozzászólás érkezik."
436
-
437
- #: utils/stcr_manage.php:259
438
- msgid ""
439
- "Thank you for using our subscription service. In order to confirm your "
440
- "request, please check your email for the verification message and follow the "
441
- "instructions."
442
- msgstr ""
443
- "Köszönjük, hogy használtad a feliratkozás szolgáltatásunkat! A kérésed "
444
- "megerősítéséhez, kérjük ellenőrizd e-mailcímed, és kövesd az instrukciókat."
445
-
446
- #: utils/stcr_manage.php:260
447
- msgid ""
448
- "In order to cancel or suspend one or more notifications, select the "
449
- "corresponding checkbox(es) and click on the button at the end of the list."
450
- msgstr ""
451
- "Az értesítések kikapcsolásához, vagy törléséhez válaszd ki a kívánt "
452
- "értesítést, majd a megfelelő állapotot és kattints az Értesítés frissítése "
453
- "gombra."
454
-
455
- #: utils/stcr_manage.php:261
456
- msgid ""
457
- "In order to cancel or suspend one or more notifications, select the "
458
- "corresponding checkbox(es) and click on the button at the end of the list. "
459
- "You are currently subscribed to:"
460
- msgstr ""
461
- "Az értesítések kikapcsolásához, megszűntetéséhez, válassz jelölőnégyzetet és "
462
- "a lista végén kattints a megfelelő gombra. Jelenleg ezek az értesítéseid:"
463
-
464
- #: utils/stcr_manage.php:265
465
- msgid "There is a new comment to [post_title]"
466
- msgstr "Új hozzászólás ehhez [post_title]"
467
-
468
- #: utils/stcr_manage.php:266
469
- msgid ""
470
- "There is a new comment to [post_title].\n"
471
- "Comment Link: [comment_permalink]\n"
472
- "Author: [comment_author]\n"
473
- "Comment:\n"
474
- "[comment_content]\n"
475
- "Permalink: [post_permalink]\n"
476
- "Manage your subscriptions: [manager_link]"
477
- msgstr ""
478
- "Új hozzászólás érkezett ehhez: [post_title].\n"
479
- "Hozzászólás Link: [comment_permalink]\n"
480
- "Írta: [comment_author]\n"
481
- "Hozzászólás:\n"
482
- "[comment_content]\n"
483
- "Permalink: [post_permalink]\n"
484
- "Értesítési beállítások: [manager_link]"
485
 
486
- #: utils/stcr_manage.php:267
487
- msgid "Please confirm your subscription to [post_title]"
488
- msgstr "Kérlek, erősítsd meg feliratkozásod erre [post_title]"
489
 
490
- #: utils/stcr_manage.php:268
491
- msgid ""
492
- "You have requested to be notified every time a new comment is added to:\n"
493
- "[post_permalink]\n"
494
- "\n"
495
- "Please confirm your request by clicking on this link:\n"
496
- "[confirm_link]"
497
- msgstr ""
498
- "Azt kérted, értesítsünk, amikor új hozzászólás érkezik ehhez:\n"
499
- "[post_permalink]\n"
500
- "\n"
501
- "Kérlek, erősítsd meg a feliratkozást az alábbi linkre kattintva:\n"
502
- "[confirm_link]"
503
 
504
- #: utils/stcr_manage.php:269
505
- msgid "Manage your subscriptions on [blog_name]"
506
- msgstr "Ártesítés beállítások - [blog_name]"
507
 
508
- #: utils/stcr_manage.php:270
509
- msgid ""
510
- "You have requested to manage your subscriptions to the articles on "
511
- "[blog_name]. Please check the Subscriptions management link in your email"
512
- msgstr ""
513
 
514
- #: utils/stcr_manage.php:271
515
- msgid ""
516
- "You have requested to manage your subscriptions to the articles on "
517
- "[blog_name]. Follow this link to access your personal page:\n"
518
- "[manager_link]"
519
- msgstr ""
520
- "A [blog_name] oldal értesítési beállításainak elérése:\n"
521
- "[manager_link]"
522
 
523
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
524
- msgid "Comment Form"
525
- msgstr "Hozzászólás Űrlap"
526
 
527
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
528
- msgid "Management Page"
529
- msgstr "Feliratkozás Kezelés Oldal"
530
 
531
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
532
- msgid "Notifications"
533
- msgstr "Értesítések"
534
 
535
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
536
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
537
- msgid "Options"
538
- msgstr "Beállítások"
539
 
540
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
541
- msgid "You can help"
542
- msgstr "Segíthetsz"
543
 
544
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
545
- msgid "Support"
546
- msgstr "Падтрымка"
547
 
548
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
549
- msgid "Donate"
550
  msgstr ""
551
 
552
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
553
- msgid "StCR System"
554
- msgstr ""
555
 
556
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
557
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
558
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
559
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
560
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
561
- msgid "You do not have sufficient permissions to access this page."
562
- msgstr ""
563
 
564
- #: utils/stcr_manage.php:755
565
- msgid "Subscriptions"
 
 
 
 
566
  msgstr "Feliratkozás"
567
 
568
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
569
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
570
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
571
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
572
- #: options/panel5.php:161
573
- msgid "No"
574
- msgstr "Nem"
575
 
576
- #: utils/stcr_manage.php:811
577
- msgid ""
578
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
579
- msgstr ""
580
- "Segítségre van szükséged, a Subscribe to Comments Reloaded használatához? "
581
- "Látogasson el a hivatalos"
582
 
583
- #: utils/stcr_manage.php:811
584
- msgid "support forum"
585
- msgstr "támogatói fórumra"
586
 
587
- #: utils/stcr_manage.php:812
588
- msgid "Feeling generous?"
589
- msgstr "Nagylelkű napod van?"
590
 
591
- #: utils/stcr_manage.php:812
592
- msgid "Donate a few bucks!"
593
- msgstr "Adakozz egy pár dolcsit!"
594
 
595
- #: utils/stcr_utils.php:195
596
- msgid "StCR Notification"
597
- msgstr "Értesítések"
 
 
 
 
 
 
 
 
 
 
 
 
598
 
599
  #: options/panel2.php:12 options/panel2.php:63
600
  msgid "Enable default checkbox"
@@ -636,13 +386,13 @@ msgstr "Várakozás címke"
636
  msgid "Author label"
637
  msgstr "Szerző címke"
638
 
639
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
640
- #: options/panel5.php:60 options/panel3.php:70
641
  msgid "Your settings have been successfully updated."
642
  msgstr "Beállításaid sikeresen frissítve."
643
 
644
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
645
- #: options/panel5.php:62 options/panel3.php:72
646
  msgid "There was an error updating the following fields:"
647
  msgstr "Hiba volt az alábbi mezők frissítésekor."
648
 
@@ -653,6 +403,14 @@ msgstr "Hiba volt az alábbi mezők frissítésekor."
653
  msgid "Yes"
654
  msgstr "Igen"
655
 
 
 
 
 
 
 
 
 
656
  #: options/panel2.php:68
657
  msgid ""
658
  "Disable this option if you want to move the subscription checkbox to a "
@@ -744,36 +502,171 @@ msgstr ""
744
  msgid "Pending label"
745
  msgstr "Megerősítésre vár címke"
746
 
747
- #: options/panel2.php:209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
748
  msgid ""
749
- "Label shown to those who are already subscribed, but haven't clicked on the "
750
- "confirmation link yet. Allowed tag: [manager_link]"
751
  msgstr ""
752
- "Címke azoknak, akik feliratkoztak, de még nem erősítették meg. Használható "
753
- "címkék: [manager_link]"
 
754
 
755
- #: options/panel2.php:225
756
  msgid ""
757
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
758
  msgstr ""
759
- "Címke a szerzőknek (és adminisztrátoroknak). Használható címkék: "
760
- "[manager_link]"
761
-
762
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
763
- #: options/panel3.php:253
764
- msgid "Save Changes"
765
- msgstr "Változások Mentése"
766
 
767
- #: options/panel9.php:11
768
- msgid "Support Subscribe to Comments Reloaded"
769
- msgstr "Subscribe to Comments Reloaded Fontos Közlendő"
770
 
771
- #: options/panel9.php:12
772
- msgid ""
773
- "Every contribution that you make is high valuable, so if you consider this "
774
- "plugin a helpful tool we will use your donation to invest on support and "
775
- "developing time."
776
- msgstr ""
777
 
778
  #: options/panel4.php:15 options/panel4.php:94
779
  msgid "Sender name"
@@ -833,10 +726,6 @@ msgid ""
833
  "will be the same as the Sender email address."
834
  msgstr ""
835
 
836
- #: options/panel4.php:135 options/panel3.php:127
837
- msgid "Messages"
838
- msgstr "Üzenetek"
839
-
840
  #: options/panel4.php:147
841
  msgid "Subject of the notification email. Allowed tag: [post_title]"
842
  msgstr "Értesítő e-mail tárgya. Használható címkék: [post_title]"
@@ -901,6 +790,152 @@ msgid ""
901
  "[blog_name]"
902
  msgstr "A megerősítő e-mail tárgya. Használható címkék: [post_title]"
903
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
904
  #: options/panel7.php:8 options/panel8.php:8
905
  msgid "Support the developers"
906
  msgstr "Támogasd a fejlesztőt"
@@ -933,577 +968,559 @@ msgid ""
933
  "you do, thanks for using my plugin!"
934
  msgstr ""
935
  "Ha nem akarsz pénzzel támogatni, kérlek írj a plugin-ról, és helyezd el a "
936
- "plugin linkjét benne. Írd meg, hogyan tette blogodat jobbá ez a megoldás. "
937
- "Segíthetsz az időddel is: ne habozz, küldj hibajelentést, fordítás fájlokat, "
938
- "fejlesztési ötleteket, stb. Bármit is teszel, köszönöm hogy az én plugin-"
939
- "emet használod!"
940
-
941
- #: options/panel7.php:23
942
- msgid "Subscribe to the Beta testers"
943
- msgstr "Subscribe authors"
944
-
945
- #: options/panel7.php:24
946
- msgid ""
947
- "Before a new Update we release a Beta version so that our current users can "
948
- "give us feedback if they find a bug, If you want to join the tester list you "
949
- "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
950
- "a>"
951
- msgstr ""
952
-
953
- #: options/panel7.php:26
954
- msgid "Vote and show your appreciation"
955
- msgstr "Szavazz és mutasd meg, ha tetszik"
956
-
957
- #: options/panel7.php:27
958
- msgid ""
959
- "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
960
- "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
961
- "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
962
- msgstr ""
963
- "Mondd el másoknak is, ha a Subscribe to Comments Reloaded jól szolgál az "
964
- "oldalodon. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
965
- "comments-reloaded/\">Értékeld</a> a Plugin oldalon."
966
-
967
- #: options/panel1.php:20
968
- msgid "Mass Update Subscriptions"
969
- msgstr "Feliratkozások csoportos frissítése"
970
-
971
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
972
- msgid "From"
973
- msgstr "Feladó"
974
-
975
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
976
- msgid "email address"
977
- msgstr "Küldő e-mail címe"
978
-
979
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
980
- msgid "To"
981
- msgstr "Címzett"
982
-
983
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
984
- msgid "optional - new email address"
985
- msgstr "Абнавіць электронны адрас"
986
-
987
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
988
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
989
- #: options/panel1-edit-subscription.php:26
990
- msgid "Status"
991
- msgstr "Státusz"
992
-
993
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
994
- msgid "Keep unchanged"
995
- msgstr "Maradjon változatlan"
996
-
997
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
998
- #: options/panel1-add-subscription.php:22
999
- #: options/panel1-edit-subscription.php:29
1000
- msgid "Active"
1001
- msgstr "Aktív"
1002
-
1003
- #: options/panel1.php:43 options/panel1.php:80
1004
- #: options/panel1-add-subscription.php:23
1005
- #: options/panel1-edit-subscription.php:30
1006
- msgid "Replies only"
1007
- msgstr "Csak a válaszokra"
1008
-
1009
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
1010
- msgid "Suspended"
1011
- msgstr "Kikapcsolva"
1012
-
1013
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
1014
- #: options/panel1-edit-subscription.php:33
1015
- msgid "Update"
1016
- msgstr "Frissítés"
1017
 
1018
- #: options/panel1.php:49
1019
- msgid "More info"
1020
- msgstr "Dettagli"
1021
 
1022
- #: options/panel1.php:55
1023
  msgid ""
1024
- "This option will allow you to change an email address for another one or to "
1025
- "update the same status for all the subscription on a specific email address."
 
 
1026
  msgstr ""
1027
 
1028
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1029
- msgid "Add New Subscription"
1030
- msgstr "Új Feliratkozás hozzáadása "
1031
 
1032
- #: options/panel1.php:68
1033
- msgid "Post ID"
1034
- msgstr "Post ID"
 
 
 
 
 
 
1035
 
1036
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1037
- msgid "Ask user to confirm"
1038
- msgstr "Megerősítés kérés"
1039
 
1040
- #: options/panel1.php:83
1041
- msgid "Add"
1042
- msgstr "Hozzáadás"
 
 
 
 
 
 
 
1043
 
1044
- #: options/panel1.php:98
1045
- msgid "Search subscriptions"
1046
- msgstr "Feliratkozás keresés"
1047
 
1048
- #: options/panel1.php:102
1049
- #, php-format
1050
  msgid ""
1051
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1052
- "where the"
 
1053
  msgstr ""
1054
- "Megnézheted <a href=\"%s\">az összes feliratkozást</a> vagy megkeresheted, "
1055
- "ahol"
1056
-
1057
- #: options/panel1.php:106
1058
- msgid "email"
1059
- msgstr "email"
1060
 
1061
- #: options/panel1.php:107
1062
- msgid "post ID"
1063
- msgstr "post ID"
1064
 
1065
- #: options/panel1.php:108
1066
- msgid "status"
1067
- msgstr "státusz"
 
 
1068
 
1069
- #: options/panel1.php:111
1070
- msgid "equals"
1071
- msgstr "egyenlő"
1072
 
1073
- #: options/panel1.php:112
1074
- msgid "contains"
1075
- msgstr "tartalmazza"
1076
 
1077
- #: options/panel1.php:113
1078
- msgid "does not contain"
1079
- msgstr "nem tartalmazza"
1080
 
1081
- #: options/panel1.php:114
1082
- msgid "starts with"
1083
- msgstr "ezzel kezdődik"
1084
 
1085
- #: options/panel1.php:115
1086
- msgid "ends with"
1087
- msgstr "ezzel végződik"
 
1088
 
1089
- #: options/panel1.php:118
1090
- msgid "results per page:"
1091
- msgstr "eredmény oldal:"
 
 
1092
 
1093
- #: options/panel1.php:120
1094
- msgid "Search"
1095
- msgstr "Keresés"
 
1096
 
1097
- #: options/panel1.php:128
1098
- msgid "Reverse the order by Post ID"
1099
- msgstr "Fordított sorrend Post ID alapján"
1100
 
1101
- #: options/panel1.php:129 options/panel1.php:130
1102
- msgid "Reverse the order by Date/Time"
1103
- msgstr "Fordított sorrend Dátum/Idő szerint"
1104
 
1105
- #: options/panel1.php:132
1106
- msgid "Post (ID)"
1107
- msgstr "Post (ID)"
1108
 
1109
- #: options/panel1.php:135
1110
- msgid "Search query:"
1111
- msgstr "Keresett kifejezés:"
1112
 
1113
- #: options/panel1.php:135
1114
- msgid "Rows:"
1115
- msgstr "Oszlopok:"
 
 
 
 
1116
 
1117
- #: options/panel1.php:135
1118
- msgid "of"
1119
- msgstr "ennyiből"
 
 
 
 
1120
 
1121
- #: options/panel1.php:142 options/panel1.php:158
1122
- msgid "Date and Time"
1123
- msgstr "Dátum és Idő"
 
 
 
 
1124
 
1125
- #: options/panel1.php:168
1126
- msgid "Replies"
1127
- msgstr "Válaszok"
 
 
 
1128
 
1129
- #: options/panel1.php:169
1130
- msgid "All Comments"
1131
- msgstr "Minden új hozzászólás"
 
 
 
 
 
1132
 
1133
- #: options/panel1.php:170
1134
- msgid "Unconfirmed"
 
 
 
1135
  msgstr ""
 
 
1136
 
1137
- #: options/panel1.php:171
1138
- msgid "Inactive"
1139
- msgstr "Aktív"
 
 
 
 
 
 
 
1140
 
1141
- #: options/panel1.php:201 options/panel1.php:211
1142
- msgid "Edit"
1143
- msgstr "Szerkesztés"
 
 
 
 
 
 
1144
 
1145
- #: options/panel1.php:203 options/panel1.php:209
1146
- msgid "Subscription"
1147
- msgstr "Feliratkozás"
 
 
 
 
 
1148
 
1149
- #: options/panel1.php:226
1150
- msgid "Delete forever"
1151
- msgstr "Végleges törlés"
 
 
 
 
 
1152
 
1153
- #: options/panel1.php:228
1154
- msgid "Activate and set to Y"
1155
- msgstr "Aktiválás és Y-ra állítás"
 
 
 
 
 
1156
 
1157
- #: options/panel1.php:229
1158
- msgid "Activate and set to R"
1159
- msgstr "Aktiválás és R-re állítás"
1160
 
1161
- #: options/panel1.php:237
1162
- msgid "Sorry, no subscriptions match your search criteria."
1163
- msgstr "Bocsi, nincs a keresésnek megfelelő feliratkozás."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1164
 
1165
- #: options/panel1-business-logic.php:23
1166
- msgid "Subscription added."
1167
- msgstr "Feliratkozás hozzáadva."
1168
 
1169
- #: options/panel1-business-logic.php:39
1170
- msgid "Subscriptions updated."
1171
- msgstr "Feliratkozás frissítve."
 
 
 
 
 
 
 
 
 
 
1172
 
1173
- #: options/panel1-business-logic.php:51
1174
- msgid "Subscription deleted."
1175
- msgstr "Feliratkozás törölve."
1176
 
1177
- #: options/panel1-business-logic.php:110
1178
- msgid "&laquo; Previous"
1179
- msgstr "&laquo; Előző"
 
 
1180
 
1181
- #: options/panel1-business-logic.php:114
1182
- msgid "Next &raquo;"
1183
- msgstr "Következő &raquo;"
 
 
 
 
 
1184
 
1185
- #: options/panel1-add-subscription.php:13
1186
- #: options/panel1-edit-subscription.php:13
1187
- msgid "Post:"
1188
- msgstr "Bejegyzés:"
1189
 
1190
- #: options/panel5.php:28
1191
- msgid "Safetly Uninstall"
 
 
 
 
1192
  msgstr ""
1193
 
1194
- #: options/panel5.php:31 options/panel5.php:84
1195
- msgid "Autopurge requests"
1196
- msgstr "Kérések automatikus ürítése"
1197
 
1198
- #: options/panel5.php:34 options/panel5.php:93
1199
- msgid "Enable double check"
1200
- msgstr "Dupla ellenőrzés bekapcsolása"
 
 
 
1201
 
1202
- #: options/panel5.php:37 options/panel5.php:101
1203
- msgid "Subscribe authors"
1204
- msgstr "Subscribe authors"
1205
 
1206
- #: options/panel5.php:40 options/panel5.php:111
1207
- msgid "Enable HTML emails"
1208
- msgstr "HTML e-mailek bekapcsolása"
1209
 
1210
- #: options/panel5.php:43
1211
- msgid "HTMLify Links in HTML emails"
1212
- msgstr "HTML linkekké alakítás a HTML e-mailekben"
1213
 
1214
- #: options/panel5.php:46
1215
- msgid "Send trackbacks"
1216
- msgstr "Trackback küldés"
1217
 
1218
- #: options/panel5.php:49
1219
- msgid "Notify admin"
1220
- msgstr "Admin értesítés"
 
 
 
 
1221
 
1222
- #: options/panel5.php:52 options/panel5.php:149
1223
- msgid "Let admin subscribe"
1224
- msgstr "Az admin is feliratkozhat"
 
 
 
 
 
 
1225
 
1226
- #: options/panel5.php:55 options/panel5.php:158
1227
- msgid "BCC admin on Notifications"
1228
- msgstr "Titkos másolat az adminisztrátornak az értesítésekről"
 
 
 
 
1229
 
1230
- #: options/panel5.php:76
1231
- msgid "Safely Uninstall"
 
 
 
1232
  msgstr ""
 
 
 
 
1233
 
1234
- #: options/panel5.php:80
 
1235
  msgid ""
1236
- "This option will allow you to delete the plugin with WordPress without "
1237
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
 
1238
  msgstr ""
1239
 
1240
- #: options/panel5.php:87
1241
- msgid "days"
1242
- msgstr "nap"
 
 
 
 
 
 
1243
 
1244
- #: options/panel5.php:88
1245
  msgid ""
1246
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1247
- "this feature."
1248
  msgstr ""
1249
- "Meg nem erősített feliratkozások törlése X nap után. Nulla érték esetén "
1250
- "nincs törlés."
1251
 
1252
- #: options/panel5.php:97
1253
  msgid ""
1254
- "Send a notification email to confirm the subscription (to avoid addresses "
1255
- "misuse)."
 
 
1256
  msgstr ""
1257
- "Megerősítő email küldés a feliratkozáshoz (helytelen email cím elkerüléshez)."
 
 
1258
 
1259
- #: options/panel5.php:106
1260
  msgid ""
1261
- "Automatically subscribe authors to their own articles (not retroactive)."
 
1262
  msgstr ""
1263
- "Automatically subscribe authors to their own articles (not retroactive)."
 
1264
 
1265
- #: options/panel5.php:115
1266
  msgid ""
1267
- "If enabled, will send email messages with content-type = text/html instead "
1268
- "of text/plain"
 
 
1269
  msgstr ""
1270
- "Bekapcsolva az e-mail értesítéseknél a content-type = text/html lesz text/"
1271
- "plain helyett"
 
 
 
1272
 
1273
- #: options/panel5.php:120
1274
- msgid "HTMLify links in emails"
1275
- msgstr "HTML linkekké alakítás az e-mailekben"
 
 
 
 
 
 
 
 
 
 
1276
 
1277
- #: options/panel5.php:125
1278
  msgid ""
1279
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1280
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1281
  msgstr ""
1282
- "Ha bekapcsolod, a szövegben található linkeket ilyen linkké alakítja "
1283
- "<code>&lt;a href=\"\"&gt;&lt;/a&gt;</code> (csak ha a HTML e-mail be van "
1284
- "kapcsolva)."
1285
-
1286
- #: options/panel5.php:130
1287
- msgid "Process trackbacks"
1288
- msgstr "Trackback-ek feldolgozása"
1289
 
1290
- #: options/panel5.php:134
1291
  msgid ""
1292
- "Notify users when a new trackback or pingback is added to the discussion."
 
1293
  msgstr ""
1294
- "Felhasználó értesítése, ha új trackback vagy pingback érkezik egy "
1295
- "beszélgetéshez."
1296
-
1297
- #: options/panel5.php:139
1298
- msgid "Track all subscriptions"
1299
- msgstr "Minden feliratkozás követése"
1300
 
1301
- #: options/panel5.php:144
1302
- msgid "Notify the administrator when users subscribe without commenting."
 
 
 
 
 
 
1303
  msgstr ""
1304
- "Adminisztrátori értesítés, ha valaki hozzászólás nélkül iratkozik fel "
1305
- "értesítésre."
1306
-
1307
- #: options/panel5.php:153
1308
- msgid "Let the administrator subscribe to comments when logged in."
1309
- msgstr "Az adminisztrátor bejelentkezve fel tudjon iratkoznu."
1310
-
1311
- #: options/panel5.php:162
1312
- msgid "Send a copy of all Notifications to the administrator."
1313
- msgstr "Másolat küldés minden értesítésről az adminisztrátornak."
1314
-
1315
- #: options/panel5.php:167
1316
- msgid "StCR Unique Key"
1317
- msgstr "StCR Unique Key"
1318
-
1319
- #: options/panel5.php:172
1320
- msgid "This Unique Key is not set, please click the following button to "
1321
- msgstr "Nincs Unique Key (egyedi kulcs) beállítva. Kattints a következő gombra"
1322
-
1323
- #: options/panel5.php:176 options/panel5.php:187
1324
- msgid "Generate"
1325
- msgstr "Generálás"
1326
 
1327
- #: options/panel5.php:184
1328
  msgid ""
1329
- "This Unique Key will be use to send the notification to your subscribers "
1330
- "with more security."
 
 
1331
  msgstr ""
1332
- "Ezt a Unique Key-t használjuk, hogy a feliratkozóknak az értesítések "
1333
- "nagyobb\n"
1334
- "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbiztonsággal menjenek ki."
1335
-
1336
- #: options/panel8.php:18
1337
- msgid "Did you find a Bug on the plugin?"
1338
- msgstr "Hibát találtál a plugin-ben?"
1339
 
1340
- #: options/panel8.php:19
1341
  msgid ""
1342
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1343
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1344
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1345
- "WordPress Support page."
1346
  msgstr ""
1347
- "Kérlek a hibát a <a href=\"https://github.com/stcr/subscribe-to-comments-"
1348
- "reloaded/issues/\" target=\"_blank\">GitHub</a> oldalon jelezd a WordPress "
1349
- "támogatás oldal helyett."
1350
 
1351
- #: options/panel1-edit-subscription.php:8
1352
- msgid "Update Subscription"
1353
- msgstr "Értesítés frissítése"
1354
-
1355
- #: options/panel1-edit-subscription.php:11
1356
- #: options/panel1-edit-subscription.php:21
1357
- #: options/panel1-edit-subscription.php:22
1358
- #: options/panel1-edit-subscription.php:23
1359
- msgid "optional"
1360
- msgstr "nem kötelező"
1361
-
1362
- #: options/panel10.php:22 options/panel10.php:23
1363
- msgid "System Information"
1364
  msgstr ""
1365
 
1366
- #: options/panel3.php:13 options/panel3.php:87
1367
- msgid "Virtual Management Page"
1368
- msgstr "Virtuális Feliratkozások Kezelés Oldal"
1369
-
1370
- #: options/panel3.php:18 options/panel3.php:96
1371
- msgid "Page title"
1372
- msgstr "Oldal cím"
1373
-
1374
- #: options/panel3.php:23 options/panel3.php:105
1375
- msgid "Management URL"
1376
- msgstr "Feliratkozás Kezelése URL"
1377
-
1378
- #: options/panel3.php:28 options/panel3.php:117
1379
- msgid "Custom HEAD meta"
1380
- msgstr "Egyedi HEAD meta"
1381
-
1382
- #: options/panel3.php:34 options/panel3.php:131
1383
- msgid "Request link"
1384
- msgstr "Kérés link"
1385
-
1386
- #: options/panel3.php:39 options/panel3.php:149
1387
- msgid "Request submitted"
1388
- msgstr "Kérés beküldve"
1389
-
1390
- #: options/panel3.php:44 options/panel3.php:167
1391
- msgid "Subscribe without commenting"
1392
- msgstr "Feliratkozás hozzászólás nélkül"
1393
-
1394
- #: options/panel3.php:49 options/panel3.php:185
1395
- msgid "Subscription processed"
1396
- msgstr "Feliratkozás feldolgozva"
1397
-
1398
- #: options/panel3.php:54 options/panel3.php:203
1399
- msgid "Subscription processed (DCI)"
1400
- msgstr "Feliratkozás feldolgozva (DCI)"
1401
-
1402
- #: options/panel3.php:59 options/panel3.php:220
1403
- msgid "Authors"
1404
- msgstr "Szerzők"
1405
-
1406
- #: options/panel3.php:64 options/panel3.php:236
1407
- msgid "Users"
1408
- msgstr "Felhasználók"
1409
 
1410
- #: options/panel3.php:90
1411
- msgid "Enabled"
1412
- msgstr "Bekapcsolva"
 
 
1413
 
1414
- #: options/panel3.php:91
1415
- msgid "Disabled"
1416
- msgstr "Kikapcsolva"
 
1417
 
1418
- #: options/panel3.php:92
1419
  msgid ""
1420
- "Disable the virtual management page if you need to create a <a href="
1421
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1422
- "real-management-page\">real page</a> to make your theme happy."
1423
  msgstr ""
1424
- "Kikapcsolja a Virtuális Feliratkozások Kezelés Oldalt, ha <a href=\"http://"
1425
- "behstant.com/subscribe-reloaded/realMgnPage.php\">igazi oldalt</a> kell "
1426
- "létrehoznod, a weboldalsablonod miatt."
1427
 
1428
- #: options/panel3.php:101
1429
- msgid "Title of the page your visitors will use to manage their subscriptions."
1430
  msgstr ""
1431
- "Az oldal címe, melyet a felhasználók a feliratkozás kezeléshez fognak "
1432
- "használni."
1433
 
1434
- #: options/panel3.php:109
1435
  msgid ""
1436
- "The permalink for your management page (something like <code>/manage-"
1437
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1438
- "b> actually exist in the system, but its link must follow your permalink "
1439
- "structure."
1440
  msgstr ""
1441
- "A feliratkozás kezelés oldal barátságos url-je (valami ilyesmi <code>/"
1442
- "feliratkozas-kezeles</code> vagy <code>/?page_id=345</code>). Ez az oldal "
1443
- "jelenleg <b>nem létezik</b> a weboldaladon, de a linknek követnei kell az "
1444
- "oldaladon használt barátságos url struktúrát."
1445
 
1446
- #: options/panel3.php:111
1447
  msgid ""
1448
- "Warning: it looks like the value you are using may be incompatible with your "
1449
- "permalink structure"
1450
  msgstr ""
1451
- "Figyelem: úgy néz ki a megadott érték nem kompatibilis a barátságos url "
1452
- "struktúráddal"
1453
 
1454
- #: options/panel3.php:121
1455
  msgid ""
1456
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1457
- "Use <strong>single</strong> quotes for values."
 
1458
  msgstr ""
1459
- "Add meg az egyedi HTML kódot, amit az oldal HEAD részében jelenítünk meg. "
1460
- "Használj <strong>aposztrofot</strong> az értékekhez."
1461
-
1462
- #: options/panel3.php:144
1463
- msgid "Text shown to those who request to manage their subscriptions."
1464
- msgstr "Szöveg azoknak, akik kérik a feliratkozás kezelés linket."
1465
 
1466
- #: options/panel3.php:162
1467
  msgid ""
1468
- "Thank you note shown after the request here above has been processed. "
1469
- "Allowed tags: [post_title], [post_permalink]"
 
1470
  msgstr ""
1471
- "Köszönet szöveg, amit akkor mutatunk, amikor a fenti kérés feldolgozásra "
1472
- "került. Használható címkék: [post_title], [post_permalink]"
1473
 
1474
- #: options/panel3.php:180
1475
  msgid ""
1476
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1477
- "[post_title], [post_permalink]"
 
1478
  msgstr ""
1479
- "Szöveg azoknak, akik hozzászólás nélkül akarnak feliratkozni. Használható "
1480
- "címkék: [post_title], [post_permalink]"
1481
 
1482
- #: options/panel3.php:198
1483
  msgid ""
1484
- "Thank you note shown after the subscription request has been processed "
1485
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1486
  msgstr ""
1487
- "Köszönet szöveg, amit akkor mutatunk, amikor a fenti kérés feldolgozásra "
1488
- "került (dupla ellenőrzés kikapcsolva). Használható címkék: [post_title], "
1489
- "[post_permalink]"
1490
 
1491
- #: options/panel3.php:216
1492
  msgid ""
1493
- "Thank you note shown after the subscription request has been processed "
1494
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
1495
  msgstr ""
1496
- "Köszönet szöveg, amit akkor mutatunk, amikor a fenti kérés feldolgozásra "
1497
- "került (dupla ellenőrzés bekapcsolva). Használható címkék: [post_title], "
1498
- "[post_permalink]"
1499
 
1500
- #: options/panel3.php:232
1501
- msgid "Introductory text for the authors' management page."
1502
- msgstr "Bevezető szöveg a szerzők kezelő oldalához."
1503
 
1504
- #: options/panel3.php:248
1505
- msgid "Introductory text for the users' management page."
1506
- msgstr "Bevezető szöveg a felhasználók kezelőoldalához."
 
 
 
 
 
 
 
 
1507
 
1508
  #~ msgid ""
1509
  #~ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:30-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:30-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: Web Geeks <epoxhun@gmail.com>\n"
9
  "Language: hu\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
20
+ #: utils/stcr_manage.php:383
21
+ msgid "Manage subscriptions"
22
+ msgstr "Feliratkozás kezelése"
23
+
24
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
25
+ msgid "Comment Form"
26
+ msgstr "Hozzászólás Űrlap"
27
+
28
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
29
+ msgid "Management Page"
30
+ msgstr "Feliratkozás Kezelés Oldal"
31
+
32
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
33
+ msgid "Notifications"
34
+ msgstr "Értesítések"
35
+
36
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
37
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
38
+ msgid "Options"
39
  msgstr "Beállítások"
40
 
41
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
42
+ msgid "You can help"
43
+ msgstr "Segíthetsz"
44
 
45
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
46
+ msgid "Support"
47
+ msgstr "Падтрымка"
48
 
49
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
50
+ msgid "Donate"
51
+ msgstr ""
52
+
53
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
54
+ msgid "Add New Subscription"
55
+ msgstr "Új Feliratkozás hozzáadása "
56
+
57
+ #: options/panel1-add-subscription.php:13
58
+ #: options/panel1-edit-subscription.php:13
59
+ msgid "Post:"
60
+ msgstr "Bejegyzés:"
61
 
62
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
63
+ #: options/panel1.php:133 templates/key_expired.php:84
64
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
65
+ #: templates/user.php:57
66
  msgid "Email"
67
  msgstr "Email"
68
 
69
+ #: options/panel1-add-subscription.php:20
70
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
71
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
72
+ msgid "Status"
73
+ msgstr "Státusz"
74
 
75
+ #: options/panel1-add-subscription.php:22
76
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
77
+ #: options/panel1.php:79 options/panel1.php:172
78
+ msgid "Active"
79
+ msgstr "Aktív"
80
 
81
+ #: options/panel1-add-subscription.php:23
82
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
83
+ #: options/panel1.php:80
84
+ msgid "Replies only"
85
+ msgstr "Csak a válaszokra"
86
 
87
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
88
+ msgid "Ask user to confirm"
89
+ msgstr "Megerősítés kérés"
90
 
91
+ #: options/panel1-add-subscription.php:26
92
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
93
+ msgid "Update"
94
+ msgstr "Frissítés"
95
+
96
+ #: options/panel1-business-logic.php:23
97
+ msgid "Subscription added."
98
+ msgstr "Feliratkozás hozzáadva."
99
 
100
+ #: options/panel1-business-logic.php:39
101
+ msgid "Subscriptions updated."
102
+ msgstr "Feliratkozás frissítve."
103
+
104
+ #: options/panel1-business-logic.php:51
105
+ msgid "Subscription deleted."
106
+ msgstr "Feliratkozás törölve."
107
+
108
+ #: options/panel1-business-logic.php:70 templates/author.php:23
109
+ #: templates/user.php:23
110
  msgid "Subscriptions deleted:"
111
  msgstr "Feliratkozások törölve:"
112
 
113
+ #: options/panel1-business-logic.php:74 templates/author.php:27
114
+ #: templates/user.php:27
115
  msgid "Subscriptions suspended:"
116
  msgstr "Feliratkozások kikapcsolva:"
117
 
118
+ #: options/panel1-business-logic.php:78 templates/author.php:31
119
+ #: templates/user.php:31
120
  msgid "Subscriptions activated:"
121
  msgstr "Feliratkozások bekapcsolva:"
122
 
123
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
124
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
125
+ #: templates/user.php:39
126
  msgid "Subscriptions updated:"
127
  msgstr "Feliratkozások frissítva:"
128
 
129
+ #: options/panel1-business-logic.php:110
130
+ msgid "&laquo; Previous"
131
+ msgstr "&laquo; Előző"
132
+
133
+ #: options/panel1-business-logic.php:114
134
+ msgid "Next &raquo;"
135
+ msgstr "Következő &raquo;"
136
+
137
+ #: options/panel1-edit-subscription.php:8
138
+ msgid "Update Subscription"
139
+ msgstr "Értesítés frissítése"
140
+
141
  #: options/panel1-edit-subscription.php:11
142
+ #: options/panel1-edit-subscription.php:21
143
+ #: options/panel1-edit-subscription.php:22
144
+ #: options/panel1-edit-subscription.php:23
145
+ msgid "optional"
146
+ msgstr "nem kötelező"
147
+
148
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
149
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
150
+ #: templates/author.php:52 templates/user.php:52
151
  msgid ""
152
  "Please remember: this operation cannot be undone. Are you sure you want to "
153
  "proceed?"
154
  msgstr ""
155
  "Kérlek vedd figyelembe, hogy ezt nem tudod visszavonni. Biztos folytatod?"
156
 
157
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
158
+ msgid "From"
159
+ msgstr "Feladó"
 
 
 
 
 
 
160
 
161
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
162
+ msgid "To"
163
+ msgstr "Címzett"
164
 
165
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
166
+ msgid "Keep unchanged"
167
+ msgstr "Maradjon változatlan"
168
 
169
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
170
+ msgid "Suspended"
171
+ msgstr "Kikapcsolva"
172
 
173
+ #: options/panel1.php:20
174
+ msgid "Mass Update Subscriptions"
175
+ msgstr "Feliratkozások csoportos frissítése"
 
176
 
177
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
178
+ msgid "email address"
179
+ msgstr "Küldő e-mail címe"
180
 
181
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
182
+ msgid "optional - new email address"
183
+ msgstr "Абнавіць электронны адрас"
184
 
185
+ #: options/panel1.php:49
186
+ msgid "More info"
187
+ msgstr "Dettagli"
188
 
189
+ #: options/panel1.php:55
190
+ msgid ""
191
+ "This option will allow you to change an email address for another one or to "
192
+ "update the same status for all the subscription on a specific email address."
193
+ msgstr ""
194
 
195
+ #: options/panel1.php:68
196
+ msgid "Post ID"
197
+ msgstr "Post ID"
198
 
199
+ #: options/panel1.php:83
200
+ msgid "Add"
201
+ msgstr "Hozzáadás"
202
 
203
+ #: options/panel1.php:98
204
+ msgid "Search subscriptions"
205
+ msgstr "Feliratkozás keresés"
 
 
 
 
206
 
207
+ #: options/panel1.php:102
208
+ #, php-format
209
  msgid ""
210
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
211
+ "where the"
 
212
  msgstr ""
213
+ "Megnézheted <a href=\"%s\">az összes feliratkozást</a> vagy megkeresheted, "
214
+ "ahol"
 
215
 
216
+ #: options/panel1.php:106
217
+ msgid "email"
218
+ msgstr "email"
 
 
 
 
219
 
220
+ #: options/panel1.php:107
221
+ msgid "post ID"
222
+ msgstr "post ID"
 
 
 
 
 
 
 
223
 
224
+ #: options/panel1.php:108
225
+ msgid "status"
226
+ msgstr "státusz"
 
 
 
 
 
227
 
228
+ #: options/panel1.php:111
229
+ msgid "equals"
230
+ msgstr "egyenlő"
 
 
 
 
 
 
231
 
232
+ #: options/panel1.php:112
233
+ msgid "contains"
234
+ msgstr "tartalmazza"
 
 
 
 
235
 
236
+ #: options/panel1.php:113
237
+ msgid "does not contain"
238
+ msgstr "nem tartalmazza"
 
 
 
 
 
 
 
239
 
240
+ #: options/panel1.php:114
241
+ msgid "starts with"
242
+ msgstr "ezzel kezdődik"
 
 
 
 
243
 
244
+ #: options/panel1.php:115
245
+ msgid "ends with"
246
+ msgstr "ezzel végződik"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
 
248
+ #: options/panel1.php:118
249
+ msgid "results per page:"
250
+ msgstr "eredmény oldal:"
251
 
252
+ #: options/panel1.php:120
253
+ msgid "Search"
254
+ msgstr "Keresés"
 
 
 
 
 
 
 
 
 
 
255
 
256
+ #: options/panel1.php:128
257
+ msgid "Reverse the order by Post ID"
258
+ msgstr "Fordított sorrend Post ID alapján"
259
 
260
+ #: options/panel1.php:129 options/panel1.php:130
261
+ msgid "Reverse the order by Date/Time"
262
+ msgstr "Fordított sorrend Dátum/Idő szerint"
 
 
263
 
264
+ #: options/panel1.php:132
265
+ msgid "Post (ID)"
266
+ msgstr "Post (ID)"
 
 
 
 
 
267
 
268
+ #: options/panel1.php:135
269
+ msgid "Search query:"
270
+ msgstr "Keresett kifejezés:"
271
 
272
+ #: options/panel1.php:135
273
+ msgid "Rows:"
274
+ msgstr "Oszlopok:"
275
 
276
+ #: options/panel1.php:135
277
+ msgid "of"
278
+ msgstr "ennyiből"
279
 
280
+ #: options/panel1.php:142 options/panel1.php:158
281
+ msgid "Date and Time"
282
+ msgstr "Dátum és Idő"
 
283
 
284
+ #: options/panel1.php:168
285
+ msgid "Replies"
286
+ msgstr "Válaszok"
287
 
288
+ #: options/panel1.php:169
289
+ msgid "All Comments"
290
+ msgstr "Minden új hozzászólás"
291
 
292
+ #: options/panel1.php:170
293
+ msgid "Unconfirmed"
294
  msgstr ""
295
 
296
+ #: options/panel1.php:171
297
+ msgid "Inactive"
298
+ msgstr "Aktív"
299
 
300
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
301
+ #: templates/user.php:70
302
+ msgid "Delete"
303
+ msgstr "Törlés"
 
 
 
304
 
305
+ #: options/panel1.php:201 options/panel1.php:211
306
+ msgid "Edit"
307
+ msgstr "Szerkesztés"
308
+
309
+ #: options/panel1.php:203 options/panel1.php:209
310
+ msgid "Subscription"
311
  msgstr "Feliratkozás"
312
 
313
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
314
+ msgid "Action:"
315
+ msgstr "Tevékenység:"
 
 
 
 
316
 
317
+ #: options/panel1.php:226
318
+ msgid "Delete forever"
319
+ msgstr "Végleges törlés"
 
 
 
320
 
321
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
322
+ msgid "Suspend"
323
+ msgstr "Kikapcsolás"
324
 
325
+ #: options/panel1.php:228
326
+ msgid "Activate and set to Y"
327
+ msgstr "Aktiválás és Y-ra állítás"
328
 
329
+ #: options/panel1.php:229
330
+ msgid "Activate and set to R"
331
+ msgstr "Aktiválás és R-re állítás"
332
 
333
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
334
+ msgid "Activate"
335
+ msgstr "Aktiválás"
336
+
337
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
338
+ msgid "Update subscriptions"
339
+ msgstr "Feliratkozások frissítése"
340
+
341
+ #: options/panel1.php:237
342
+ msgid "Sorry, no subscriptions match your search criteria."
343
+ msgstr "Bocsi, nincs a keresésnek megfelelő feliratkozás."
344
+
345
+ #: options/panel10.php:22 options/panel10.php:23
346
+ msgid "System Information"
347
+ msgstr ""
348
 
349
  #: options/panel2.php:12 options/panel2.php:63
350
  msgid "Enable default checkbox"
386
  msgid "Author label"
387
  msgstr "Szerző címke"
388
 
389
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
390
+ #: options/panel5.php:18 options/panel5.php:60
391
  msgid "Your settings have been successfully updated."
392
  msgstr "Beállításaid sikeresen frissítve."
393
 
394
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
395
+ #: options/panel5.php:20 options/panel5.php:62
396
  msgid "There was an error updating the following fields:"
397
  msgstr "Hiba volt az alábbi mezők frissítésekor."
398
 
403
  msgid "Yes"
404
  msgstr "Igen"
405
 
406
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
407
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
408
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
409
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
410
+ #: utils/stcr_manage.php:784
411
+ msgid "No"
412
+ msgstr "Nem"
413
+
414
  #: options/panel2.php:68
415
  msgid ""
416
  "Disable this option if you want to move the subscription checkbox to a "
502
  msgid "Pending label"
503
  msgstr "Megerősítésre vár címke"
504
 
505
+ #: options/panel2.php:209
506
+ msgid ""
507
+ "Label shown to those who are already subscribed, but haven't clicked on the "
508
+ "confirmation link yet. Allowed tag: [manager_link]"
509
+ msgstr ""
510
+ "Címke azoknak, akik feliratkoztak, de még nem erősítették meg. Használható "
511
+ "címkék: [manager_link]"
512
+
513
+ #: options/panel2.php:225
514
+ msgid ""
515
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
516
+ msgstr ""
517
+ "Címke a szerzőknek (és adminisztrátoroknak). Használható címkék: "
518
+ "[manager_link]"
519
+
520
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
521
+ #: options/panel5.php:195
522
+ msgid "Save Changes"
523
+ msgstr "Változások Mentése"
524
+
525
+ #: options/panel3.php:13 options/panel3.php:87
526
+ msgid "Virtual Management Page"
527
+ msgstr "Virtuális Feliratkozások Kezelés Oldal"
528
+
529
+ #: options/panel3.php:18 options/panel3.php:96
530
+ msgid "Page title"
531
+ msgstr "Oldal cím"
532
+
533
+ #: options/panel3.php:23 options/panel3.php:105
534
+ msgid "Management URL"
535
+ msgstr "Feliratkozás Kezelése URL"
536
+
537
+ #: options/panel3.php:28 options/panel3.php:117
538
+ msgid "Custom HEAD meta"
539
+ msgstr "Egyedi HEAD meta"
540
+
541
+ #: options/panel3.php:34 options/panel3.php:131
542
+ msgid "Request link"
543
+ msgstr "Kérés link"
544
+
545
+ #: options/panel3.php:39 options/panel3.php:149
546
+ msgid "Request submitted"
547
+ msgstr "Kérés beküldve"
548
+
549
+ #: options/panel3.php:44 options/panel3.php:167
550
+ msgid "Subscribe without commenting"
551
+ msgstr "Feliratkozás hozzászólás nélkül"
552
+
553
+ #: options/panel3.php:49 options/panel3.php:185
554
+ msgid "Subscription processed"
555
+ msgstr "Feliratkozás feldolgozva"
556
+
557
+ #: options/panel3.php:54 options/panel3.php:203
558
+ msgid "Subscription processed (DCI)"
559
+ msgstr "Feliratkozás feldolgozva (DCI)"
560
+
561
+ #: options/panel3.php:59 options/panel3.php:220
562
+ msgid "Authors"
563
+ msgstr "Szerzők"
564
+
565
+ #: options/panel3.php:64 options/panel3.php:236
566
+ msgid "Users"
567
+ msgstr "Felhasználók"
568
+
569
+ #: options/panel3.php:90
570
+ msgid "Enabled"
571
+ msgstr "Bekapcsolva"
572
+
573
+ #: options/panel3.php:91
574
+ msgid "Disabled"
575
+ msgstr "Kikapcsolva"
576
+
577
+ #: options/panel3.php:92
578
+ msgid ""
579
+ "Disable the virtual management page if you need to create a <a href="
580
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
581
+ "real-management-page\">real page</a> to make your theme happy."
582
+ msgstr ""
583
+ "Kikapcsolja a Virtuális Feliratkozások Kezelés Oldalt, ha <a href=\"http://"
584
+ "behstant.com/subscribe-reloaded/realMgnPage.php\">igazi oldalt</a> kell "
585
+ "létrehoznod, a weboldalsablonod miatt."
586
+
587
+ #: options/panel3.php:101
588
+ msgid "Title of the page your visitors will use to manage their subscriptions."
589
+ msgstr ""
590
+ "Az oldal címe, melyet a felhasználók a feliratkozás kezeléshez fognak "
591
+ "használni."
592
+
593
+ #: options/panel3.php:109
594
+ msgid ""
595
+ "The permalink for your management page (something like <code>/manage-"
596
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
597
+ "b> actually exist in the system, but its link must follow your permalink "
598
+ "structure."
599
+ msgstr ""
600
+ "A feliratkozás kezelés oldal barátságos url-je (valami ilyesmi <code>/"
601
+ "feliratkozas-kezeles</code> vagy <code>/?page_id=345</code>). Ez az oldal "
602
+ "jelenleg <b>nem létezik</b> a weboldaladon, de a linknek követnei kell az "
603
+ "oldaladon használt barátságos url struktúrát."
604
+
605
+ #: options/panel3.php:111
606
+ msgid ""
607
+ "Warning: it looks like the value you are using may be incompatible with your "
608
+ "permalink structure"
609
+ msgstr ""
610
+ "Figyelem: úgy néz ki a megadott érték nem kompatibilis a barátságos url "
611
+ "struktúráddal"
612
+
613
+ #: options/panel3.php:121
614
+ msgid ""
615
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
616
+ "Use <strong>single</strong> quotes for values."
617
+ msgstr ""
618
+ "Add meg az egyedi HTML kódot, amit az oldal HEAD részében jelenítünk meg. "
619
+ "Használj <strong>aposztrofot</strong> az értékekhez."
620
+
621
+ #: options/panel3.php:127 options/panel4.php:135
622
+ msgid "Messages"
623
+ msgstr "Üzenetek"
624
+
625
+ #: options/panel3.php:144
626
+ msgid "Text shown to those who request to manage their subscriptions."
627
+ msgstr "Szöveg azoknak, akik kérik a feliratkozás kezelés linket."
628
+
629
+ #: options/panel3.php:162
630
+ msgid ""
631
+ "Thank you note shown after the request here above has been processed. "
632
+ "Allowed tags: [post_title], [post_permalink]"
633
+ msgstr ""
634
+ "Köszönet szöveg, amit akkor mutatunk, amikor a fenti kérés feldolgozásra "
635
+ "került. Használható címkék: [post_title], [post_permalink]"
636
+
637
+ #: options/panel3.php:180
638
+ msgid ""
639
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
640
+ "[post_title], [post_permalink]"
641
+ msgstr ""
642
+ "Szöveg azoknak, akik hozzászólás nélkül akarnak feliratkozni. Használható "
643
+ "címkék: [post_title], [post_permalink]"
644
+
645
+ #: options/panel3.php:198
646
  msgid ""
647
+ "Thank you note shown after the subscription request has been processed "
648
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
649
  msgstr ""
650
+ "Köszönet szöveg, amit akkor mutatunk, amikor a fenti kérés feldolgozásra "
651
+ "került (dupla ellenőrzés kikapcsolva). Használható címkék: [post_title], "
652
+ "[post_permalink]"
653
 
654
+ #: options/panel3.php:216
655
  msgid ""
656
+ "Thank you note shown after the subscription request has been processed "
657
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
658
  msgstr ""
659
+ "Köszönet szöveg, amit akkor mutatunk, amikor a fenti kérés feldolgozásra "
660
+ "került (dupla ellenőrzés bekapcsolva). Használható címkék: [post_title], "
661
+ "[post_permalink]"
 
 
 
 
662
 
663
+ #: options/panel3.php:232
664
+ msgid "Introductory text for the authors' management page."
665
+ msgstr "Bevezető szöveg a szerzők kezelő oldalához."
666
 
667
+ #: options/panel3.php:248
668
+ msgid "Introductory text for the users' management page."
669
+ msgstr "Bevezető szöveg a felhasználók kezelőoldalához."
 
 
 
670
 
671
  #: options/panel4.php:15 options/panel4.php:94
672
  msgid "Sender name"
726
  "will be the same as the Sender email address."
727
  msgstr ""
728
 
 
 
 
 
729
  #: options/panel4.php:147
730
  msgid "Subject of the notification email. Allowed tag: [post_title]"
731
  msgstr "Értesítő e-mail tárgya. Használható címkék: [post_title]"
790
  "[blog_name]"
791
  msgstr "A megerősítő e-mail tárgya. Használható címkék: [post_title]"
792
 
793
+ #: options/panel5.php:28
794
+ msgid "Safetly Uninstall"
795
+ msgstr ""
796
+
797
+ #: options/panel5.php:31 options/panel5.php:84
798
+ msgid "Autopurge requests"
799
+ msgstr "Kérések automatikus ürítése"
800
+
801
+ #: options/panel5.php:34 options/panel5.php:93
802
+ msgid "Enable double check"
803
+ msgstr "Dupla ellenőrzés bekapcsolása"
804
+
805
+ #: options/panel5.php:37 options/panel5.php:101
806
+ msgid "Subscribe authors"
807
+ msgstr "Subscribe authors"
808
+
809
+ #: options/panel5.php:40 options/panel5.php:111
810
+ msgid "Enable HTML emails"
811
+ msgstr "HTML e-mailek bekapcsolása"
812
+
813
+ #: options/panel5.php:43
814
+ msgid "HTMLify Links in HTML emails"
815
+ msgstr "HTML linkekké alakítás a HTML e-mailekben"
816
+
817
+ #: options/panel5.php:46
818
+ msgid "Send trackbacks"
819
+ msgstr "Trackback küldés"
820
+
821
+ #: options/panel5.php:49
822
+ msgid "Notify admin"
823
+ msgstr "Admin értesítés"
824
+
825
+ #: options/panel5.php:52 options/panel5.php:149
826
+ msgid "Let admin subscribe"
827
+ msgstr "Az admin is feliratkozhat"
828
+
829
+ #: options/panel5.php:55 options/panel5.php:158
830
+ msgid "BCC admin on Notifications"
831
+ msgstr "Titkos másolat az adminisztrátornak az értesítésekről"
832
+
833
+ #: options/panel5.php:76
834
+ msgid "Safely Uninstall"
835
+ msgstr ""
836
+
837
+ #: options/panel5.php:80
838
+ msgid ""
839
+ "This option will allow you to delete the plugin with WordPress without "
840
+ "loosing your subscribers. Any database table and plugin options are wipeout."
841
+ msgstr ""
842
+
843
+ #: options/panel5.php:87
844
+ msgid "days"
845
+ msgstr "nap"
846
+
847
+ #: options/panel5.php:88
848
+ msgid ""
849
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
850
+ "this feature."
851
+ msgstr ""
852
+ "Meg nem erősített feliratkozások törlése X nap után. Nulla érték esetén "
853
+ "nincs törlés."
854
+
855
+ #: options/panel5.php:97
856
+ msgid ""
857
+ "Send a notification email to confirm the subscription (to avoid addresses "
858
+ "misuse)."
859
+ msgstr ""
860
+ "Megerősítő email küldés a feliratkozáshoz (helytelen email cím elkerüléshez)."
861
+
862
+ #: options/panel5.php:106
863
+ msgid ""
864
+ "Automatically subscribe authors to their own articles (not retroactive)."
865
+ msgstr ""
866
+ "Automatically subscribe authors to their own articles (not retroactive)."
867
+
868
+ #: options/panel5.php:115
869
+ msgid ""
870
+ "If enabled, will send email messages with content-type = text/html instead "
871
+ "of text/plain"
872
+ msgstr ""
873
+ "Bekapcsolva az e-mail értesítéseknél a content-type = text/html lesz text/"
874
+ "plain helyett"
875
+
876
+ #: options/panel5.php:120
877
+ msgid "HTMLify links in emails"
878
+ msgstr "HTML linkekké alakítás az e-mailekben"
879
+
880
+ #: options/panel5.php:125
881
+ msgid ""
882
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
883
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
884
+ msgstr ""
885
+ "Ha bekapcsolod, a szövegben található linkeket ilyen linkké alakítja "
886
+ "<code>&lt;a href=\"\"&gt;&lt;/a&gt;</code> (csak ha a HTML e-mail be van "
887
+ "kapcsolva)."
888
+
889
+ #: options/panel5.php:130
890
+ msgid "Process trackbacks"
891
+ msgstr "Trackback-ek feldolgozása"
892
+
893
+ #: options/panel5.php:134
894
+ msgid ""
895
+ "Notify users when a new trackback or pingback is added to the discussion."
896
+ msgstr ""
897
+ "Felhasználó értesítése, ha új trackback vagy pingback érkezik egy "
898
+ "beszélgetéshez."
899
+
900
+ #: options/panel5.php:139
901
+ msgid "Track all subscriptions"
902
+ msgstr "Minden feliratkozás követése"
903
+
904
+ #: options/panel5.php:144
905
+ msgid "Notify the administrator when users subscribe without commenting."
906
+ msgstr ""
907
+ "Adminisztrátori értesítés, ha valaki hozzászólás nélkül iratkozik fel "
908
+ "értesítésre."
909
+
910
+ #: options/panel5.php:153
911
+ msgid "Let the administrator subscribe to comments when logged in."
912
+ msgstr "Az adminisztrátor bejelentkezve fel tudjon iratkoznu."
913
+
914
+ #: options/panel5.php:162
915
+ msgid "Send a copy of all Notifications to the administrator."
916
+ msgstr "Másolat küldés minden értesítésről az adminisztrátornak."
917
+
918
+ #: options/panel5.php:167
919
+ msgid "StCR Unique Key"
920
+ msgstr "StCR Unique Key"
921
+
922
+ #: options/panel5.php:172
923
+ msgid "This Unique Key is not set, please click the following button to "
924
+ msgstr "Nincs Unique Key (egyedi kulcs) beállítva. Kattints a következő gombra"
925
+
926
+ #: options/panel5.php:176 options/panel5.php:187
927
+ msgid "Generate"
928
+ msgstr "Generálás"
929
+
930
+ #: options/panel5.php:184
931
+ msgid ""
932
+ "This Unique Key will be use to send the notification to your subscribers "
933
+ "with more security."
934
+ msgstr ""
935
+ "Ezt a Unique Key-t használjuk, hogy a feliratkozóknak az értesítések "
936
+ "nagyobb\n"
937
+ "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbiztonsággal menjenek ki."
938
+
939
  #: options/panel7.php:8 options/panel8.php:8
940
  msgid "Support the developers"
941
  msgstr "Támogasd a fejlesztőt"
968
  "you do, thanks for using my plugin!"
969
  msgstr ""
970
  "Ha nem akarsz pénzzel támogatni, kérlek írj a plugin-ról, és helyezd el a "
971
+ "plugin linkjét benne. Írd meg, hogyan tette blogodat jobbá ez a megoldás. "
972
+ "Segíthetsz az időddel is: ne habozz, küldj hibajelentést, fordítás fájlokat, "
973
+ "fejlesztési ötleteket, stb. Bármit is teszel, köszönöm hogy az én plugin-"
974
+ "emet használod!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
 
976
+ #: options/panel7.php:23
977
+ msgid "Subscribe to the Beta testers"
978
+ msgstr "Subscribe authors"
979
 
980
+ #: options/panel7.php:24
981
  msgid ""
982
+ "Before a new Update we release a Beta version so that our current users can "
983
+ "give us feedback if they find a bug, If you want to join the tester list you "
984
+ "can add your email <a href='http://eepurl.com/biCk1b' target='_blank'>here</"
985
+ "a>"
986
  msgstr ""
987
 
988
+ #: options/panel7.php:26
989
+ msgid "Vote and show your appreciation"
990
+ msgstr "Szavazz és mutasd meg, ha tetszik"
991
 
992
+ #: options/panel7.php:27
993
+ msgid ""
994
+ "Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
995
+ "for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
996
+ "subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
997
+ msgstr ""
998
+ "Mondd el másoknak is, ha a Subscribe to Comments Reloaded jól szolgál az "
999
+ "oldalodon. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
1000
+ "comments-reloaded/\">Értékeld</a> a Plugin oldalon."
1001
 
1002
+ #: options/panel8.php:18
1003
+ msgid "Did you find a Bug on the plugin?"
1004
+ msgstr "Hibát találtál a plugin-ben?"
1005
 
1006
+ #: options/panel8.php:19
1007
+ msgid ""
1008
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1009
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1010
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1011
+ "WordPress Support page."
1012
+ msgstr ""
1013
+ "Kérlek a hibát a <a href=\"https://github.com/stcr/subscribe-to-comments-"
1014
+ "reloaded/issues/\" target=\"_blank\">GitHub</a> oldalon jelezd a WordPress "
1015
+ "támogatás oldal helyett."
1016
 
1017
+ #: options/panel9.php:11
1018
+ msgid "Support Subscribe to Comments Reloaded"
1019
+ msgstr "Subscribe to Comments Reloaded Fontos Közlendő"
1020
 
1021
+ #: options/panel9.php:12
 
1022
  msgid ""
1023
+ "Every contribution that you make is high valuable, so if you consider this "
1024
+ "plugin a helpful tool we will use your donation to invest on support and "
1025
+ "developing time."
1026
  msgstr ""
 
 
 
 
 
 
1027
 
1028
+ #: templates/author.php:57
1029
+ msgid "Title"
1030
+ msgstr "Cím"
1031
 
1032
+ #: templates/author.php:58 templates/user.php:58
1033
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1034
+ msgstr ""
1035
+ "Magyarázat: Y = minden hozzászólás, R = csak az enyémre adott válaszok, C = "
1036
+ "kikapcsolva"
1037
 
1038
+ #: templates/author.php:69 templates/user.php:67
1039
+ msgid "Select all"
1040
+ msgstr "Mind kiválasztása"
1041
 
1042
+ #: templates/author.php:70 templates/user.php:68
1043
+ msgid "Invert selection"
1044
+ msgstr "Fordított kiválasztás"
1045
 
1046
+ #: templates/author.php:74 templates/user.php:72
1047
+ msgid "All comments"
1048
+ msgstr "Minden új hozzászólás"
1049
 
1050
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1051
+ msgid "Replies to my comments"
1052
+ msgstr "Csak a válaszokra"
1053
 
1054
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1055
+ #: templates/user.php:79
1056
+ msgid "No subscriptions match your search criteria."
1057
+ msgstr "Nincs a keresésnek megfelelő feliratkozás."
1058
 
1059
+ #: templates/key_expired.php:8
1060
+ msgid ""
1061
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1062
+ "enter your email below and a new link will be send."
1063
+ msgstr ""
1064
 
1065
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1066
+ #: templates/subscribe.php:106
1067
+ msgid "Send"
1068
+ msgstr "Küldés"
1069
 
1070
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1071
+ msgid "New subscription to"
1072
+ msgstr "Új feliratkozás erre"
1073
 
1074
+ #: templates/subscribe.php:44
1075
+ msgid "User:"
1076
+ msgstr "Felhasználó:"
1077
 
1078
+ #: templates/user.php:63
1079
+ msgid "F j, Y"
1080
+ msgstr ""
1081
 
1082
+ #: templates/wrong-request.php:9
1083
+ msgid "You have request to manage another email address and this is forbidden."
1084
+ msgstr ""
1085
 
1086
+ #: utils/stcr_manage.php:246
1087
+ msgid ""
1088
+ "Notify me of followup comments via e-mail. You can also <a "
1089
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1090
+ msgstr ""
1091
+ "A hozzászólásokról email-ben kérek értesítést. <a "
1092
+ "href='[subscribe_link]'>Feliratkozás</a> hozzászólás nélkül is lehetséges."
1093
 
1094
+ #: utils/stcr_manage.php:247
1095
+ msgid ""
1096
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1097
+ "subscriptions."
1098
+ msgstr ""
1099
+ "Feliratkozva ehhez a bejegyzéshez. <a href='[manager_link]'Saját "
1100
+ "feliratkozásaink kezelése</a>."
1101
 
1102
+ #: utils/stcr_manage.php:248
1103
+ msgid ""
1104
+ "Your subscription to this post needs to be confirmed. <a "
1105
+ "href='[manager_link]'>Manage your subscriptions</a>."
1106
+ msgstr ""
1107
+ "A feliratkozási szándékot meg kell erősíteni: <a "
1108
+ "href='[manager_link]'>Feliratkozás kezelése</a>."
1109
 
1110
+ #: utils/stcr_manage.php:249
1111
+ msgid ""
1112
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1113
+ msgstr ""
1114
+ "<a href='[manager_link]'>Saját feliratkozásunk kezelése</a> ennél a "
1115
+ "bejegyzésnél."
1116
 
1117
+ #: utils/stcr_manage.php:255
1118
+ msgid ""
1119
+ "To manage your subscriptions, please enter your email address here below. We "
1120
+ "will send you a message containing the link to access your personal "
1121
+ "management page."
1122
+ msgstr ""
1123
+ "A feliratkozások kezeléséhez alul meg kell adni az email címet, amelyre "
1124
+ "elküldjük azt a hivatkozást, amellyel a saját kezelési oldalra lehet belépni."
1125
 
1126
+ #: utils/stcr_manage.php:256
1127
+ msgid ""
1128
+ "Thank you for using our subscription service. Your request has been "
1129
+ "completed, and you should receive an email with the management link in a few "
1130
+ "minutes."
1131
  msgstr ""
1132
+ "Köszönjük, hogy használod az értesítőket. Néhány percen belül e-mailben "
1133
+ "megkapot a beállításokhoz szükséges linked."
1134
 
1135
+ #: utils/stcr_manage.php:257
1136
+ msgid ""
1137
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1138
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1139
+ "form here below and you're all set."
1140
+ msgstr ""
1141
+ "<strong>[post_title]</strong> című bejegyzésünkhöz történő hozzászólásokat "
1142
+ "úgy is figyelemmel lehet kísérni, ha az olvasó nem szól hozzá a témához. "
1143
+ "Csak meg kell adni a saját email címet az alul található mezőbe, és máris "
1144
+ "minden készen áll."
1145
 
1146
+ #: utils/stcr_manage.php:258
1147
+ msgid ""
1148
+ "Thank you for using our subscription service. Your request has been "
1149
+ "completed. You will receive a notification email every time a new comment to "
1150
+ "this article is approved and posted by the administrator."
1151
+ msgstr ""
1152
+ "<strong>Köszönjük, hogy használtad a feliratkozás szolgáltatásunkat!</"
1153
+ "strong><br /> A kérést rögzítettük; minden egyes alkalommal küldünk egy "
1154
+ "értesítést email címedre, amikor a bejegyzéshez új hozzászólás érkezik."
1155
 
1156
+ #: utils/stcr_manage.php:259
1157
+ msgid ""
1158
+ "Thank you for using our subscription service. In order to confirm your "
1159
+ "request, please check your email for the verification message and follow the "
1160
+ "instructions."
1161
+ msgstr ""
1162
+ "Köszönjük, hogy használtad a feliratkozás szolgáltatásunkat! A kérésed "
1163
+ "megerősítéséhez, kérjük ellenőrizd e-mailcímed, és kövesd az instrukciókat."
1164
 
1165
+ #: utils/stcr_manage.php:260
1166
+ msgid ""
1167
+ "In order to cancel or suspend one or more notifications, select the "
1168
+ "corresponding checkbox(es) and click on the button at the end of the list."
1169
+ msgstr ""
1170
+ "Az értesítések kikapcsolásához, vagy törléséhez válaszd ki a kívánt "
1171
+ "értesítést, majd a megfelelő állapotot és kattints az Értesítés frissítése "
1172
+ "gombra."
1173
 
1174
+ #: utils/stcr_manage.php:261
1175
+ msgid ""
1176
+ "In order to cancel or suspend one or more notifications, select the "
1177
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1178
+ "You are currently subscribed to:"
1179
+ msgstr ""
1180
+ "Az értesítések kikapcsolásához, megszűntetéséhez, válassz jelölőnégyzetet és "
1181
+ "a lista végén kattints a megfelelő gombra. Jelenleg ezek az értesítéseid:"
1182
 
1183
+ #: utils/stcr_manage.php:265
1184
+ msgid "There is a new comment to [post_title]"
1185
+ msgstr "Új hozzászólás ehhez [post_title]"
1186
 
1187
+ #: utils/stcr_manage.php:266
1188
+ msgid ""
1189
+ "There is a new comment to [post_title].\n"
1190
+ "Comment Link: [comment_permalink]\n"
1191
+ "Author: [comment_author]\n"
1192
+ "Comment:\n"
1193
+ "[comment_content]\n"
1194
+ "Permalink: [post_permalink]\n"
1195
+ "Manage your subscriptions: [manager_link]"
1196
+ msgstr ""
1197
+ "Új hozzászólás érkezett ehhez: [post_title].\n"
1198
+ "Hozzászólás Link: [comment_permalink]\n"
1199
+ "Írta: [comment_author]\n"
1200
+ "Hozzászólás:\n"
1201
+ "[comment_content]\n"
1202
+ "Permalink: [post_permalink]\n"
1203
+ "Értesítési beállítások: [manager_link]"
1204
 
1205
+ #: utils/stcr_manage.php:267
1206
+ msgid "Please confirm your subscription to [post_title]"
1207
+ msgstr "Kérlek, erősítsd meg feliratkozásod erre [post_title]"
1208
 
1209
+ #: utils/stcr_manage.php:268
1210
+ msgid ""
1211
+ "You have requested to be notified every time a new comment is added to:\n"
1212
+ "[post_permalink]\n"
1213
+ "\n"
1214
+ "Please confirm your request by clicking on this link:\n"
1215
+ "[confirm_link]"
1216
+ msgstr ""
1217
+ "Azt kérted, értesítsünk, amikor új hozzászólás érkezik ehhez:\n"
1218
+ "[post_permalink]\n"
1219
+ "\n"
1220
+ "Kérlek, erősítsd meg a feliratkozást az alábbi linkre kattintva:\n"
1221
+ "[confirm_link]"
1222
 
1223
+ #: utils/stcr_manage.php:269
1224
+ msgid "Manage your subscriptions on [blog_name]"
1225
+ msgstr "Ártesítés beállítások - [blog_name]"
1226
 
1227
+ #: utils/stcr_manage.php:270
1228
+ msgid ""
1229
+ "You have requested to manage your subscriptions to the articles on "
1230
+ "[blog_name]. Please check the Subscriptions management link in your email"
1231
+ msgstr ""
1232
 
1233
+ #: utils/stcr_manage.php:271
1234
+ msgid ""
1235
+ "You have requested to manage your subscriptions to the articles on "
1236
+ "[blog_name]. Follow this link to access your personal page:\n"
1237
+ "[manager_link]"
1238
+ msgstr ""
1239
+ "A [blog_name] oldal értesítési beállításainak elérése:\n"
1240
+ "[manager_link]"
1241
 
1242
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1243
+ msgid "StCR System"
1244
+ msgstr ""
 
1245
 
1246
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1247
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1248
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1249
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1250
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1251
+ msgid "You do not have sufficient permissions to access this page."
1252
  msgstr ""
1253
 
1254
+ #: utils/stcr_manage.php:755
1255
+ msgid "Subscriptions"
1256
+ msgstr "Feliratkozás"
1257
 
1258
+ #: utils/stcr_manage.php:811
1259
+ msgid ""
1260
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1261
+ msgstr ""
1262
+ "Segítségre van szükséged, a Subscribe to Comments Reloaded használatához? "
1263
+ "Látogasson el a hivatalos"
1264
 
1265
+ #: utils/stcr_manage.php:811
1266
+ msgid "support forum"
1267
+ msgstr "támogatói fórumra"
1268
 
1269
+ #: utils/stcr_manage.php:812
1270
+ msgid "Feeling generous?"
1271
+ msgstr "Nagylelkű napod van?"
1272
 
1273
+ #: utils/stcr_manage.php:812
1274
+ msgid "Donate a few bucks!"
1275
+ msgstr "Adakozz egy pár dolcsit!"
1276
 
1277
+ #: utils/stcr_upgrade.php:55
1278
+ msgid "Important Notice"
1279
+ msgstr "Fontos Közlendő"
1280
 
1281
+ #: utils/stcr_upgrade.php:103
1282
+ msgid ""
1283
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1284
+ "database has been sanitized to prevent the raw html messages. <a class="
1285
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1286
+ "src=\""
1287
+ msgstr ""
1288
 
1289
+ #: utils/stcr_upgrade.php:158
1290
+ msgid ""
1291
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1292
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1293
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1294
+ msgstr ""
1295
+ "<strong>Subscribe to Comments</strong> által kezelt feliratkozási adatokat "
1296
+ "találtunk és importáltunk is őket a <strong>Subscribe to Comments Reloaded</"
1297
+ "strong>-be."
1298
 
1299
+ #: utils/stcr_upgrade.php:158
1300
+ msgid ""
1301
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1302
+ "Comments to prevent confusion between the two plugins."
1303
+ msgstr ""
1304
+ "Javasoljuk, hogy most <strong>kapcsold ki</strong> a Subscribe to Comments-"
1305
+ "et, hogy megelőzzük a két plugin összeakadását."
1306
 
1307
+ #: utils/stcr_upgrade.php:159
1308
+ msgid ""
1309
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1310
+ "that you want to import, you'll need to import that data manually, as only "
1311
+ "one import routine will ever run to prevent data loss."
1312
  msgstr ""
1313
+ "Ha a Subscribe to Comments Reloaded v2.0 előtti verzióban vannak "
1314
+ "importálandó feliratkozási adataid, ezeket manuálisan kell importálnod, mert "
1315
+ "az adatvesztés megelőzése érdekében csak egyetlen importálási folyamatot "
1316
+ "alkalmazunk."
1317
 
1318
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1319
+ #: utils/stcr_upgrade.php:381
1320
  msgid ""
1321
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1322
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1323
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1324
+ "\"stcr-loading-animation\" src=\""
1325
  msgstr ""
1326
 
1327
+ #: utils/stcr_upgrade.php:231
1328
+ msgid ""
1329
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1330
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1331
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1332
+ msgstr ""
1333
+ "<strong>Comment Reply Notification</strong> által kezelt feliratkozási "
1334
+ "adatokat találtunk és importáltunk is őket a <strong>Subscribe to Comments "
1335
+ "Reloaded</strong>-be."
1336
 
1337
+ #: utils/stcr_upgrade.php:231
1338
  msgid ""
1339
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1340
+ "Notification to prevent confusion between the two plugins."
1341
  msgstr ""
1342
+ "Javasoljuk, hogy most <strong>kapcsold ki</strong> a Comment Reply "
1343
+ "Notification-t, hogy megelőzzük a két plugin összeakadását."
1344
 
1345
+ #: utils/stcr_upgrade.php:378
1346
  msgid ""
1347
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1348
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1349
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1350
+ "Reloaded</strong>."
1351
  msgstr ""
1352
+ "<strong>WP Comment Subscriptions</strong> által kezelt feliratkozási "
1353
+ "adatokat és beállításokat találtunk és importáltunk is őket a "
1354
+ "<strong>Subscribe to Comments Reloaded</strong>-be."
1355
 
1356
+ #: utils/stcr_upgrade.php:378
1357
  msgid ""
1358
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1359
+ "Subscriptions to prevent confusion between the two plugins."
1360
  msgstr ""
1361
+ "Javasoljuk, hogy most <strong>kapcsold ki</strong> a WP Comment "
1362
+ "Subscriptions-t, hogy megelőzzük a két plugin összeakadását."
1363
 
1364
+ #: utils/stcr_upgrade.php:379
1365
  msgid ""
1366
+ "If you have subscription data from another plugin (such as Subscribe to "
1367
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1368
+ "you'll need to import that data manually, as only one import routine will "
1369
+ "ever run to prevent data loss."
1370
  msgstr ""
1371
+ "Ha feliratkozási adataid vannak másik pluginban (mind például a Subscribe to "
1372
+ "Comments vagy a Subscribe to Comments Reloaded v2.0-nél régebbi verziói) és "
1373
+ "ezeket szeretnéd importálni, ezeket manuálisan kell importálnod, mert az "
1374
+ "adatvesztés megelőzése érdekében csak egyetlen importálási folyamatot "
1375
+ "alkalmazunk."
1376
 
1377
+ #: utils/stcr_upgrade.php:380
1378
+ msgid ""
1379
+ "<strong>Note:</strong> If you were previously using the "
1380
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1381
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1382
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1383
+ "respectively."
1384
+ msgstr ""
1385
+ "<strong>Megjegyzés:</strong> Ha korábban a "
1386
+ "<code>wp_comment_subscriptions_show()</code> funkciót vagy a <code>[wpcs-"
1387
+ "subscribe-url]</code> shortcode-ot használtad, ezeket le kell cserélned a "
1388
+ "<code>subscribe_reloaded_show()</code> funkcióra és a <code>[subscribe-url]</"
1389
+ "code> shortcode-ra."
1390
 
1391
+ #: utils/stcr_upgrade.php:394
1392
  msgid ""
1393
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
 
1394
  msgstr ""
 
 
 
 
 
 
 
1395
 
1396
+ #: utils/stcr_upgrade.php:395
1397
  msgid ""
1398
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1399
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1400
  msgstr ""
 
 
 
 
 
 
1401
 
1402
+ #: utils/stcr_upgrade.php:396
1403
+ msgid ""
1404
+ "Please consider to make a donation to support the plugin, you can donate via "
1405
+ "<a href=\"\n"
1406
+ "https://www.paypal.com/cgi-bin/webscr?"
1407
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1408
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1409
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1410
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1411
 
1412
+ #: utils/stcr_upgrade.php:398
1413
  msgid ""
1414
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1415
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1416
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1417
+ "a><img class=\"stcr-loading-animation\" src=\""
1418
  msgstr ""
 
 
 
 
 
 
 
1419
 
1420
+ #: utils/stcr_upgrade.php:409
1421
  msgid ""
1422
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1423
+ "160106."
 
 
1424
  msgstr ""
 
 
 
1425
 
1426
+ #: utils/stcr_upgrade.php:410
1427
+ msgid ""
1428
+ "This version includes many changes and fixes to improve your experience with "
1429
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1430
+ "email templates, Subscription Checkbox position, and more!"
 
 
 
 
 
 
 
 
1431
  msgstr ""
1432
 
1433
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1434
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1435
+ msgid ""
1436
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1437
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1438
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1439
+ "class=\"stcr-loading-animation\" src=\""
1440
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1441
 
1442
+ #: utils/stcr_upgrade.php:424
1443
+ msgid ""
1444
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1445
+ "160115."
1446
+ msgstr ""
1447
 
1448
+ #: utils/stcr_upgrade.php:425
1449
+ msgid ""
1450
+ "This version includes fixes to broken links while managing your subscriptions"
1451
+ msgstr ""
1452
 
1453
+ #: utils/stcr_upgrade.php:439
1454
  msgid ""
1455
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1456
+ "160831"
 
1457
  msgstr ""
 
 
 
1458
 
1459
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1460
+ msgid "This version includes fixes to many bugs and also new features, "
1461
  msgstr ""
 
 
1462
 
1463
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1464
  msgid ""
1465
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1466
+ "address. This will help the subscribers to use the Reply option in their "
1467
+ "email agents."
 
1468
  msgstr ""
 
 
 
 
1469
 
1470
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1471
  msgid ""
1472
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1473
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1474
  msgstr ""
 
 
1475
 
1476
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1477
  msgid ""
1478
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1479
+ "without loosing your subscriptions. You can use this option also for reset "
1480
+ "all the settings, see the FAQ."
1481
  msgstr ""
 
 
 
 
 
 
1482
 
1483
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1484
  msgid ""
1485
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1486
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1487
+ "Post Type."
1488
  msgstr ""
 
 
1489
 
1490
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1491
  msgid ""
1492
+ "<strong>New Feature</strong> A new field was added under the notification "
1493
+ "options to and the management link only by email and not to display it on "
1494
+ "the request link page."
1495
  msgstr ""
 
 
1496
 
1497
+ #: utils/stcr_upgrade.php:461
1498
  msgid ""
1499
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1500
+ "160902"
1501
  msgstr ""
 
 
 
1502
 
1503
+ #: utils/stcr_upgrade.php:464
1504
  msgid ""
1505
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1506
+ "previous 160831 version."
1507
  msgstr ""
 
 
 
1508
 
1509
+ #: utils/stcr_utils.php:195
1510
+ msgid "StCR Notification"
1511
+ msgstr "Értesítések"
1512
 
1513
+ #: wp_subscribe_reloaded.php:114
1514
+ msgid "Settings"
1515
+ msgstr "Beállítások"
1516
+
1517
+ #: wp_subscribe_reloaded.php:1086
1518
+ msgid "Don't subscribe"
1519
+ msgstr "Nem iratkozom fel"
1520
+
1521
+ #: wp_subscribe_reloaded.php:1087
1522
+ msgid "All"
1523
+ msgstr "Mindenre"
1524
 
1525
  #~ msgid ""
1526
  #~ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
langs/subscribe-reloaded-id_ID.mo CHANGED
Binary file
langs/subscribe-reloaded-id_ID.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:21-0700\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: id_ID\n"
10
  "MIME-Version: 1.0\n"
@@ -13,80 +13,141 @@ msgstr ""
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
- #: wp_subscribe_reloaded.php:114
20
- msgid "Settings"
21
- msgstr ""
 
22
 
23
- #: wp_subscribe_reloaded.php:1060
24
- msgid "Don't subscribe"
25
- msgstr "Jangan berlangganan"
26
 
27
- #: wp_subscribe_reloaded.php:1061
28
- msgid "All"
29
- msgstr "Semua"
30
 
31
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
32
- #: templates/author.php:75
33
- msgid "Replies to my comments"
34
- msgstr "Balasan pada komentar saya saja"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
- #: templates/request-management-link.php:71 templates/key_expired.php:71
37
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
38
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
 
 
 
 
 
39
  msgid "Email"
40
  msgstr "Email"
41
 
42
- #: templates/request-management-link.php:73 templates/key_expired.php:73
43
- #: templates/subscribe.php:92
44
- msgid "Send"
45
- msgstr "Kirim"
 
46
 
47
- #: templates/key_expired.php:8
48
- msgid ""
49
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
50
- "enter your email below and a new link will be send."
51
- msgstr ""
52
 
53
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
54
- #: templates/author.php:80
55
- msgid "No subscriptions match your search criteria."
56
- msgstr "Tidak ada langganan yang sesuai dengan kriteria pencarian Anda."
 
57
 
58
- #: templates/subscribe.php:42 templates/subscribe.php:43
59
- msgid "New subscription to"
60
- msgstr "Langganan baru untuk"
61
 
62
- #: templates/subscribe.php:43
63
- msgid "User:"
64
- msgstr "Pengguna:"
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- #: templates/user.php:23 templates/author.php:23
67
- #: options/panel1-business-logic.php:70
68
  msgid "Subscriptions deleted:"
69
  msgstr "Berlangganan telah dihapus."
70
 
71
- #: templates/user.php:27 templates/author.php:27
72
- #: options/panel1-business-logic.php:74
73
  msgid "Subscriptions suspended:"
74
  msgstr "Berlangganan telah ditangguhkan."
75
 
76
- #: templates/user.php:31 templates/author.php:31
77
- #: options/panel1-business-logic.php:78
78
  msgid "Subscriptions activated:"
79
  msgstr "Berlangganan telah diaktifkan."
80
 
81
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
82
- #: templates/author.php:39 options/panel1-business-logic.php:82
83
- #: options/panel1-business-logic.php:86
84
  msgid "Subscriptions updated:"
85
  msgstr "Berlangganan telah diperbaharui."
86
 
87
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
88
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
89
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
90
  msgid ""
91
  "Please remember: this operation cannot be undone. Are you sure you want to "
92
  "proceed?"
@@ -94,481 +155,197 @@ msgstr ""
94
  "Ingat: tindakan berikut tidak dapat dikembalikan. Anda yakin untuk "
95
  "melakukannya?"
96
 
97
- #: templates/user.php:58 templates/author.php:58
98
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
99
- msgstr "Legenda: Y = seluruh komentar, R = balasan saja, C = tidak aktif"
100
-
101
- #: templates/user.php:63
102
- msgid "F j, Y"
103
- msgstr ""
104
-
105
- #: templates/user.php:67 templates/author.php:69
106
- msgid "Select all"
107
- msgstr "Pilih semua"
108
-
109
- #: templates/user.php:68 templates/author.php:70
110
- msgid "Invert selection"
111
- msgstr "Invert seleksi"
112
-
113
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
114
- msgid "Action:"
115
- msgstr "Tindakan:"
116
 
117
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
118
- #: options/panel1.php:212
119
- msgid "Delete"
120
- msgstr "Hapus"
121
 
122
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
123
- msgid "Suspend"
124
- msgstr "Tangguhkan"
125
 
126
- #: templates/user.php:72 templates/author.php:74
127
- msgid "All comments"
128
- msgstr ""
129
 
130
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
131
- msgid "Activate"
132
- msgstr "Aktifkan"
133
 
134
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
135
- msgid "Update subscriptions"
136
- msgstr "Perbaharui langganan"
137
 
138
- #: templates/author.php:57
139
- msgid "Title"
140
- msgstr "Judul"
141
 
142
- #: utils/stcr_upgrade.php:55
143
- msgid "Important Notice"
144
  msgstr ""
145
 
146
- #: utils/stcr_upgrade.php:103
147
  msgid ""
148
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
149
- "database has been sanitized to prevent the raw html messages. <a class="
150
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
151
- "src=\""
152
  msgstr ""
153
 
154
- #: utils/stcr_upgrade.php:158
155
- msgid ""
156
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
157
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
158
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
159
- msgstr ""
160
 
161
- #: utils/stcr_upgrade.php:158
162
- msgid ""
163
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
164
- "Comments to prevent confusion between the two plugins."
165
- msgstr ""
166
 
167
- #: utils/stcr_upgrade.php:159
168
- msgid ""
169
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
170
- "that you want to import, you'll need to import that data manually, as only "
171
- "one import routine will ever run to prevent data loss."
172
- msgstr ""
173
 
174
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
175
- #: utils/stcr_upgrade.php:381
176
  msgid ""
177
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
178
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
179
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
180
- "\"stcr-loading-animation\" src=\""
181
  msgstr ""
 
 
182
 
183
- #: utils/stcr_upgrade.php:231
184
- msgid ""
185
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
186
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
187
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
188
- msgstr ""
189
 
190
- #: utils/stcr_upgrade.php:231
191
- msgid ""
192
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
193
- "Notification to prevent confusion between the two plugins."
194
- msgstr ""
195
 
196
- #: utils/stcr_upgrade.php:378
197
- msgid ""
198
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
199
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
200
- "were detected and automatically imported into <strong>Subscribe to Comments "
201
- "Reloaded</strong>."
202
- msgstr ""
203
 
204
- #: utils/stcr_upgrade.php:378
205
- msgid ""
206
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
207
- "Subscriptions to prevent confusion between the two plugins."
208
- msgstr ""
209
 
210
- #: utils/stcr_upgrade.php:379
211
- msgid ""
212
- "If you have subscription data from another plugin (such as Subscribe to "
213
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
214
- "you'll need to import that data manually, as only one import routine will "
215
- "ever run to prevent data loss."
216
- msgstr ""
217
 
218
- #: utils/stcr_upgrade.php:380
219
- msgid ""
220
- "<strong>Note:</strong> If you were previously using the "
221
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
222
- "subscribe-url]</code> shortcode, you'll need to replace those with "
223
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
224
- "respectively."
225
- msgstr ""
226
 
227
- #: utils/stcr_upgrade.php:394
228
- msgid ""
229
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
230
- msgstr ""
231
 
232
- #: utils/stcr_upgrade.php:395
233
- msgid ""
234
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
235
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
236
- msgstr ""
237
-
238
- #: utils/stcr_upgrade.php:396
239
- msgid ""
240
- "If you want to donate you can do it via <a href=\"\n"
241
- "https://www.paypal.com/cgi-bin/webscr?"
242
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
243
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
244
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
245
- msgstr ""
246
-
247
- #: utils/stcr_upgrade.php:398
248
- msgid ""
249
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
250
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
251
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
252
- "a><img class=\"stcr-loading-animation\" src=\""
253
- msgstr ""
254
-
255
- #: utils/stcr_upgrade.php:409
256
- msgid ""
257
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
258
- "160106."
259
- msgstr ""
260
-
261
- #: utils/stcr_upgrade.php:410
262
- msgid ""
263
- "This version includes many changes and fixes to improve your experience with "
264
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
265
- "email templates, Subscription Checkbox position, and more!"
266
- msgstr ""
267
-
268
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
269
- #: utils/stcr_upgrade.php:448
270
- msgid ""
271
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
272
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
273
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
274
- "class=\"stcr-loading-animation\" src=\""
275
- msgstr ""
276
-
277
- #: utils/stcr_upgrade.php:424
278
- msgid ""
279
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
280
- "160115."
281
- msgstr ""
282
-
283
- #: utils/stcr_upgrade.php:425
284
- msgid ""
285
- "This version includes fixes to broken links while managing your subscriptions"
286
- msgstr ""
287
-
288
- #: utils/stcr_upgrade.php:439
289
- msgid ""
290
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
291
- "160831"
292
- msgstr ""
293
-
294
- #: utils/stcr_upgrade.php:440
295
- msgid "This version includes fixes to many bugs and also new features, "
296
- msgstr ""
297
-
298
- #: utils/stcr_upgrade.php:442
299
- msgid ""
300
- "<strong>New Feature</strong> Add new option to set the Reply To email "
301
- "address. This will help the subscribers to use the Reply option in their "
302
- "email agents."
303
- msgstr ""
304
-
305
- #: utils/stcr_upgrade.php:443
306
- msgid ""
307
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
308
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
309
- msgstr ""
310
-
311
- #: utils/stcr_upgrade.php:444
312
- msgid ""
313
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
314
- "without loosing your subscriptions. You can use this option also for reset "
315
- "all the settings, see the FAQ."
316
- msgstr ""
317
-
318
- #: utils/stcr_upgrade.php:445
319
- msgid ""
320
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
321
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
322
- "Post Type."
323
- msgstr ""
324
-
325
- #: utils/stcr_upgrade.php:446
326
- msgid ""
327
- "<strong>New Feature</strong> A new field was added under the notification "
328
- "options to and the management link only by email and not to display it on "
329
- "the request link page."
330
- msgstr ""
331
-
332
- #: utils/stcr_manage.php:246
333
- msgid ""
334
- "Notify me of followup comments via e-mail. You can also <a "
335
- "href='[subscribe_link]'>subscribe</a> without commenting."
336
- msgstr ""
337
- "Beritahu saya melalui email jika ada balasan komentar di artikel ini. Anda "
338
- "juga dapat <a href='[subscribe_link]'>berlangganan</a> tanpa harus memberi "
339
- "komentar."
340
-
341
- #: utils/stcr_manage.php:247
342
- msgid ""
343
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
344
- "subscriptions."
345
- msgstr ""
346
- "Anda telah berlangganan artikel ini. <a href='[manager_link]'>Atur</a> cara "
347
- "berlangganan Anda."
348
-
349
- #: utils/stcr_manage.php:248
350
- msgid ""
351
- "Your subscription to this post needs to be confirmed. <a "
352
- "href='[manager_link]'>Manage your subscriptions</a>."
353
- msgstr ""
354
- "Permintaan berlangganan Anda untuk artikel ini perlu dikonfirmasi. <a "
355
- "href='[manager_link]'>Aturlah cara berlangganan Anda</a>."
356
-
357
- #: utils/stcr_manage.php:249
358
- msgid ""
359
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
360
- msgstr ""
361
- "Anda dapat <a href='[manager_link]'>mengatur cara berlangganan</a> pada "
362
- "artikel ini."
363
-
364
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
365
- #: utils/stcr_manage.php:383 options/index.php:59
366
- msgid "Manage subscriptions"
367
- msgstr "Atur Langganan"
368
 
369
- #: utils/stcr_manage.php:255
370
- msgid ""
371
- "To manage your subscriptions, please enter your email address here below. We "
372
- "will send you a message containing the link to access your personal "
373
- "management page."
374
- msgstr ""
375
- "Untuk mengatur cara berlangganan, masukkan alamat email Anda di bawah ini. "
376
- "Kami akan mengirimkan sebuah pesan yang berisi tautan untuk mengakses "
377
- "Halaman Pengaturan Pribadi milik Anda."
378
 
379
- #: utils/stcr_manage.php:256
380
- msgid ""
381
- "Thank you for using our subscription service. Your request has been "
382
- "completed, and you should receive an email with the management link in a few "
383
- "minutes."
384
- msgstr ""
385
- "Terima kasih telah memanfaatkan layanan berlangganan kami. Permintaan Anda "
386
- "telah diproses, dan Anda akan menerima sebuah email yang berisi tautan ke "
387
- "pengaturan dalam beberapa menit ke depan."
388
 
389
- #: utils/stcr_manage.php:257
390
- msgid ""
391
- "You can follow the discussion on <strong>[post_title]</strong> without "
392
- "having to leave a comment. Cool, huh? Just enter your email address in the "
393
- "form here below and you're all set."
394
- msgstr ""
395
- "Anda dapat menyimak diskusi pada <strong>[post_title]</strong> tanpa harus "
396
- "memberikan komentar terlebih dulu. Keren, kan? Masukkan saja alamat email "
397
- "Anda ke isian berikut."
398
 
399
- #: utils/stcr_manage.php:258
400
- msgid ""
401
- "Thank you for using our subscription service. Your request has been "
402
- "completed. You will receive a notification email every time a new comment to "
403
- "this article is approved and posted by the administrator."
404
- msgstr ""
405
- "Terima kasih telah memanfaatkan layanan berlangganan kami. Permintaan Anda "
406
- "telah diproses. Anda akan menerima sebuah email notifikasi setiap ada "
407
- "komentar baru pada artikel ini."
408
 
409
- #: utils/stcr_manage.php:259
410
- msgid ""
411
- "Thank you for using our subscription service. In order to confirm your "
412
- "request, please check your email for the verification message and follow the "
413
- "instructions."
414
- msgstr ""
415
- "Terima kasih telah memanfaatkan layanan berlangganan kami. Selanjutnya Anda "
416
- "perlu melakukan konfirmasi melalui sebuah pesan yang kami kirimkan ke alamat "
417
- "email Anda, dan lakukanlah langkah-langkah yang diinstruksikan."
418
 
419
- #: utils/stcr_manage.php:260
420
- msgid ""
421
- "In order to cancel or suspend one or more notifications, select the "
422
- "corresponding checkbox(es) and click on the button at the end of the list."
423
- msgstr ""
424
- "Untuk membatalkan atau menangguhkan satu atau lebih notifikasi, pilihlah "
425
- "pada checkbox yang dimaksud dan klik pada tombol di akhir daftar."
426
 
427
- #: utils/stcr_manage.php:261
428
- msgid ""
429
- "In order to cancel or suspend one or more notifications, select the "
430
- "corresponding checkbox(es) and click on the button at the end of the list. "
431
- "You are currently subscribed to:"
432
- msgstr ""
433
- "Untuk membatalkan atau menangguhkan satu atau lebih notifikasi, pilihlah "
434
- "pada checkbox yang dimaksud dan klik pada tombol di akhir daftar. Saat ini "
435
- "Anda berlangganan:"
436
 
437
- #: utils/stcr_manage.php:265
438
- msgid "There is a new comment to [post_title]"
439
- msgstr "Hey, ada komentar baru pada artikel [post_title]"
440
 
441
- #: utils/stcr_manage.php:266
442
- msgid ""
443
- "There is a new comment to [post_title].\n"
444
- "Comment Link: [comment_permalink]\n"
445
- "Author: [comment_author]\n"
446
- "Comment:\n"
447
- "[comment_content]\n"
448
- "Permalink: [post_permalink]\n"
449
- "Manage your subscriptions: [manager_link]"
450
- msgstr ""
451
- "Ada komentar baru pada artikel [post_title].\n"
452
- "Tautan komentar: [comment_permalink]\n"
453
- "Oleh: [comment_author]\n"
454
- "Komentar:\n"
455
- "[comment_content]\n"
456
- "Tautan: [post_permalink]\n"
457
- "Atur cara berlangganan Anda: [manager_link]"
458
 
459
- #: utils/stcr_manage.php:267
460
- msgid "Please confirm your subscription to [post_title]"
461
- msgstr "Mohon lakukan konfirmasi berlangganan Anda pada artikel [post_title]"
462
 
463
- #: utils/stcr_manage.php:268
464
- msgid ""
465
- "You have requested to be notified every time a new comment is added to:\n"
466
- "[post_permalink]\n"
467
- "\n"
468
- "Please confirm your request by clicking on this link:\n"
469
- "[confirm_link]"
470
  msgstr ""
471
- "Anda telah meminta untuk diberitahu setiap ada komentar baru pada:\n"
472
- "[post_permalink]\n"
473
- "\n"
474
- "Lakukan konfirmasi permintaan Anda dengan melakukan klik pada tautan ini:\n"
475
- "[confirm_link]"
476
-
477
- #: utils/stcr_manage.php:269
478
- msgid "Manage your subscriptions on [blog_name]"
479
- msgstr "Aturlah cara berlangganan Anda pada [blog_name]"
480
 
481
- #: utils/stcr_manage.php:270
482
- msgid ""
483
- "You have requested to manage your subscriptions to the articles on "
484
- "[blog_name]. Please check the Subscriptions management link in your email"
485
  msgstr ""
486
 
487
- #: utils/stcr_manage.php:271
488
- msgid ""
489
- "You have requested to manage your subscriptions to the articles on "
490
- "[blog_name]. Follow this link to access your personal page:\n"
491
- "[manager_link]"
492
- msgstr ""
493
- "Anda telah meminta untuk mengatur cara berlanggan Anda pada artikel di "
494
- "[blog_name]. Ikuti tautan berikut untuk mengakses halaman personal Anda:\n"
495
- "[manager_link]"
496
 
497
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
498
- msgid "Comment Form"
499
- msgstr "Formulir Komentar"
 
500
 
501
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
502
- msgid "Management Page"
503
- msgstr "Halaman Pengaturan"
504
 
505
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
506
- msgid "Notifications"
507
- msgstr "Notifikasi"
508
 
509
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
510
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
511
- msgid "Options"
512
- msgstr "Pilihan"
513
 
514
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
515
- msgid "You can help"
516
- msgstr "Bantu kami"
517
 
518
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
519
- msgid "Support"
520
- msgstr "forum bantuan"
521
 
522
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
523
- msgid "Donate"
524
- msgstr ""
525
 
526
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
527
- msgid "StCR System"
528
- msgstr ""
529
 
530
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
531
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
532
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
533
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
534
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
535
- msgid "You do not have sufficient permissions to access this page."
536
- msgstr ""
537
 
538
- #: utils/stcr_manage.php:755
539
- msgid "Subscriptions"
540
- msgstr "Langganan"
541
 
542
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
543
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
544
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
545
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
546
- #: options/panel5.php:161
547
- msgid "No"
548
- msgstr "Tidak"
549
 
550
- #: utils/stcr_manage.php:811
551
- msgid ""
552
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
553
  msgstr ""
554
- "Perlu bantuan tentang cara penggunaan Subscribe to Comments Reloaded? "
555
- "Kunjungi situs resmi"
556
-
557
- #: utils/stcr_manage.php:811
558
- msgid "support forum"
559
- msgstr "forum bantuan"
560
-
561
- #: utils/stcr_manage.php:812
562
- msgid "Feeling generous?"
563
- msgstr "Merasa dermawan?"
564
-
565
- #: utils/stcr_manage.php:812
566
- msgid "Donate a few bucks!"
567
- msgstr "Beri sedikit sumbangan"
568
-
569
- #: utils/stcr_utils.php:195
570
- msgid "StCR Notification"
571
- msgstr "Notifikasi"
572
 
573
  #: options/panel2.php:12 options/panel2.php:63
574
  msgid "Enable default checkbox"
@@ -610,13 +387,13 @@ msgstr "Label menunggu"
610
  msgid "Author label"
611
  msgstr "Label penulis"
612
 
613
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
614
- #: options/panel5.php:60 options/panel3.php:70
615
  msgid "Your settings have been successfully updated."
616
  msgstr "Pengaturan Anda telah diperbarui."
617
 
618
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
619
- #: options/panel5.php:62 options/panel3.php:72
620
  msgid "There was an error updating the following fields:"
621
  msgstr "Terdapat galat saat memperbaharui ruas berikut:"
622
 
@@ -627,6 +404,14 @@ msgstr "Terdapat galat saat memperbaharui ruas berikut:"
627
  msgid "Yes"
628
  msgstr "Ya"
629
 
 
 
 
 
 
 
 
 
630
  #: options/panel2.php:68
631
  msgid ""
632
  "Disable this option if you want to move the subscription checkbox to a "
@@ -666,85 +451,219 @@ msgstr "Ijikan pengguna untuk memilih tipe berlangganan (semua, balasan saja)."
666
  msgid "Advanced default"
667
  msgstr "Dicentang sebagai bawaan"
668
 
669
- #: options/panel2.php:119
670
- msgid "None"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
671
  msgstr ""
 
 
672
 
673
- #: options/panel2.php:124
674
  msgid ""
675
- "The default subscription type that should be selected when Advanced "
676
- "subscriptions are enable."
 
 
677
  msgstr ""
 
 
 
 
678
 
679
- #: options/panel2.php:135
680
- msgid "Custom inline CSS to add to the checkbox."
681
- msgstr "Inline CSS tersuai untuk ditambahkan pada checkbox."
682
-
683
- #: options/panel2.php:152
684
  msgid ""
685
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
686
- "[checkbox_field], [checkbox_label]"
687
  msgstr ""
688
- "Kode HTML tersuai untuk digunakan ketika menampilkan checkbox. Tag yang "
689
- "diijinkan: [checkbox_field], [checkbox_label]"
690
 
691
- #: options/panel2.php:158
692
- msgid "Messages for your visitors"
693
- msgstr "Pesan untuk pengunjung Anda"
 
 
 
 
694
 
695
- #: options/panel2.php:162
696
- msgid "Default label"
697
- msgstr "Label bawaan"
698
 
699
- #: options/panel2.php:175
700
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
701
  msgstr ""
702
- "Label yang terasosiasi dengan checkbox. Tag yang diijinkan: [subscribe_link]"
703
 
704
- #: options/panel2.php:192
705
  msgid ""
706
- "Label shown to those who are already subscribed to a post. Allowed tag: "
707
- "[manager_link]"
708
  msgstr ""
709
- "Label yang diperlihatkan kepada mereka yang telah berlangganan suatu "
710
- "artikel. Tag yang diijinkan: [manager_link]"
711
-
712
- #: options/panel2.php:197
713
- msgid "Pending label"
714
- msgstr "Label penundaan"
715
 
716
- #: options/panel2.php:209
717
  msgid ""
718
- "Label shown to those who are already subscribed, but haven't clicked on the "
719
- "confirmation link yet. Allowed tag: [manager_link]"
720
  msgstr ""
721
- "Label yang diperlihatkan kepada mereka yang telah berlangganan, tetapi belum "
722
- "melakukan klik pada tautan konfirmasi. Tag yang diijinkan: [manager_link]"
723
 
724
- #: options/panel2.php:225
725
  msgid ""
726
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
727
- msgstr ""
728
- "Label yang diperlihatkan kepada penulis (dan admin). Tag yang diijinkan: "
729
- "[manager_link]"
730
-
731
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
732
- #: options/panel3.php:253
733
- msgid "Save Changes"
734
- msgstr "Simpan Perubahan"
735
-
736
- #: options/panel9.php:11
737
- msgid "Support Subscribe to Comments Reloaded"
738
  msgstr ""
739
- "Perlu bantuan tentang cara penggunaan Subscribe to Comments Reloaded? "
740
- "Kunjungi situs resmi"
 
741
 
742
- #: options/panel9.php:12
743
  msgid ""
744
- "Every contribution that you make is high valuable, so if you consider this "
745
- "plugin a helpful tool we will use your donation to invest on support and "
746
- "developing time."
747
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
748
 
749
  #: options/panel4.php:15 options/panel4.php:94
750
  msgid "Sender name"
@@ -808,10 +727,6 @@ msgid ""
808
  "will be the same as the Sender email address."
809
  msgstr ""
810
 
811
- #: options/panel4.php:135 options/panel3.php:127
812
- msgid "Messages"
813
- msgstr "Pesan"
814
-
815
  #: options/panel4.php:147
816
  msgid "Subject of the notification email. Allowed tag: [post_title]"
817
  msgstr "Subjek pada email notifikasi. Tag yang diijinkan: [post_title]"
@@ -849,32 +764,172 @@ msgid ""
849
  "Subject of the mail sent to those who request to access their management "
850
  "page. Allowed tag: [blog_name]"
851
  msgstr ""
852
- "Subjek pada email yang dikirimkan kepada mereka yang meminta akses ke "
853
- "Halaman Pengaturan. Tag yang diijinkan: [blog_name]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
854
 
855
- #: options/panel4.php:223
856
- msgid "Management Page message"
 
 
 
 
857
  msgstr ""
858
 
859
- #: options/panel4.php:237
860
- msgid "Content of the management Page message. Allowed tags: [blog_name]."
861
  msgstr ""
862
 
863
- #: options/panel4.php:257
864
- msgid ""
865
- "Content of the management email message. Allowed tags: [blog_name], "
866
- "[manager_link]."
867
  msgstr ""
868
 
869
- #: options/panel4.php:263
870
- msgid "One Click Unsubscribe"
871
- msgstr "Ijinkan admin berlangganan"
872
 
873
- #: options/panel4.php:277
874
  msgid ""
875
- "Content of the One Click confirmation. Allowed tags: [post_title], "
876
- "[blog_name]"
877
- msgstr "Subjek pada email konfirmasi. Tag yang diijinkan: [post_title]"
878
 
879
  #: options/panel7.php:8 options/panel8.php:8
880
  msgid "Support the developers"
@@ -943,538 +998,500 @@ msgstr ""
943
  "wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">Beri "
944
  "peringkat</a> pada halaman Direktori Plugin."
945
 
946
- #: options/panel1.php:20
947
- msgid "Mass Update Subscriptions"
948
- msgstr "Pembaruan berlangganan secara massal"
949
-
950
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
951
- msgid "From"
952
- msgstr "Dari"
953
-
954
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
955
- msgid "email address"
956
- msgstr "Alamat email pengirim"
957
-
958
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
959
- msgid "To"
960
- msgstr "Ke"
961
-
962
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
963
- msgid "optional - new email address"
964
- msgstr "Alamat email pengirim"
965
-
966
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
967
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
968
- #: options/panel1-edit-subscription.php:26
969
- msgid "Status"
970
- msgstr "Status"
971
-
972
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
973
- msgid "Keep unchanged"
974
- msgstr "Jangan diganti"
975
-
976
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
977
- #: options/panel1-add-subscription.php:22
978
- #: options/panel1-edit-subscription.php:29
979
- msgid "Active"
980
- msgstr "Aktif"
981
-
982
- #: options/panel1.php:43 options/panel1.php:80
983
- #: options/panel1-add-subscription.php:23
984
- #: options/panel1-edit-subscription.php:30
985
- msgid "Replies only"
986
- msgstr "Balasan saja"
987
-
988
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
989
- msgid "Suspended"
990
- msgstr "Ditangguhkan"
991
-
992
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
993
- #: options/panel1-edit-subscription.php:33
994
- msgid "Update"
995
- msgstr "Perbaharui"
996
-
997
- #: options/panel1.php:49
998
- msgid "More info"
999
  msgstr ""
1000
 
1001
- #: options/panel1.php:55
1002
  msgid ""
1003
- "This option will allow you to change an email address for another one or to "
1004
- "update the same status for all the subscription on a specific email address."
 
 
1005
  msgstr ""
1006
 
1007
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1008
- msgid "Add New Subscription"
1009
- msgstr "Tambahkan Langganan Baru"
1010
-
1011
- #: options/panel1.php:68
1012
- msgid "Post ID"
1013
- msgstr "Post ID"
1014
-
1015
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1016
- msgid "Ask user to confirm"
1017
- msgstr "Minta pengguna untuk konfirmasi"
1018
-
1019
- #: options/panel1.php:83
1020
- msgid "Add"
1021
- msgstr "Tambahkan"
1022
-
1023
- #: options/panel1.php:98
1024
- msgid "Search subscriptions"
1025
- msgstr "Cari langganan"
1026
 
1027
- #: options/panel1.php:102
1028
- #, php-format
1029
  msgid ""
1030
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1031
- "where the"
 
1032
  msgstr ""
1033
- "Anda dapat <a href=\"%s\">melihat semua langganan</a> atau menemukan di mana "
1034
- "mereka"
1035
 
1036
- #: options/panel1.php:106
1037
- msgid "email"
1038
- msgstr "email"
1039
 
1040
- #: options/panel1.php:107
1041
- msgid "post ID"
1042
- msgstr "post ID"
1043
 
1044
- #: options/panel1.php:108
1045
- msgid "status"
1046
- msgstr "status"
1047
 
1048
- #: options/panel1.php:111
1049
- msgid "equals"
1050
- msgstr "equals (sama)"
1051
 
1052
- #: options/panel1.php:112
1053
- msgid "contains"
1054
- msgstr "mengandung"
1055
 
1056
- #: options/panel1.php:113
1057
- msgid "does not contain"
1058
- msgstr "tidak mengandung"
1059
 
1060
- #: options/panel1.php:114
1061
- msgid "starts with"
1062
- msgstr "dimulai dengan"
 
1063
 
1064
- #: options/panel1.php:115
1065
- msgid "ends with"
1066
- msgstr "diakhiri dengan"
 
 
1067
 
1068
- #: options/panel1.php:118
1069
- msgid "results per page:"
1070
- msgstr "hasil per halaman:"
 
1071
 
1072
- #: options/panel1.php:120
1073
- msgid "Search"
1074
- msgstr "Cari"
1075
 
1076
- #: options/panel1.php:128
1077
- msgid "Reverse the order by Post ID"
1078
- msgstr "Balik urutan berdasar Post ID"
1079
 
1080
- #: options/panel1.php:129 options/panel1.php:130
1081
- msgid "Reverse the order by Date/Time"
1082
- msgstr "Balik urutan berdasar Tanggal/Waktu"
1083
 
1084
- #: options/panel1.php:132
1085
- msgid "Post (ID)"
1086
- msgstr "Post (ID)"
1087
 
1088
- #: options/panel1.php:135
1089
- msgid "Search query:"
1090
- msgstr "Query pencarian:"
 
 
 
 
 
1091
 
1092
- #: options/panel1.php:135
1093
- msgid "Rows:"
1094
- msgstr "Baris:"
 
 
 
 
1095
 
1096
- #: options/panel1.php:135
1097
- msgid "of"
1098
- msgstr "pada"
 
 
 
 
1099
 
1100
- #: options/panel1.php:142 options/panel1.php:158
1101
- msgid "Date and Time"
1102
- msgstr "Tanggal dan Waktu"
 
 
 
1103
 
1104
- #: options/panel1.php:168
1105
- msgid "Replies"
1106
- msgstr "Balasan"
 
 
 
 
 
 
1107
 
1108
- #: options/panel1.php:169
1109
- msgid "All Comments"
 
 
 
 
 
 
 
 
 
 
 
 
 
1110
  msgstr ""
 
 
 
1111
 
1112
- #: options/panel1.php:170
1113
- msgid "Unconfirmed"
 
 
 
1114
  msgstr ""
 
 
 
1115
 
1116
- #: options/panel1.php:171
1117
- msgid "Inactive"
1118
- msgstr "Aktif"
1119
-
1120
- #: options/panel1.php:201 options/panel1.php:211
1121
- msgid "Edit"
1122
- msgstr "Edit"
1123
-
1124
- #: options/panel1.php:203 options/panel1.php:209
1125
- msgid "Subscription"
1126
- msgstr "Langganan"
1127
-
1128
- #: options/panel1.php:226
1129
- msgid "Delete forever"
1130
- msgstr "Hapus selamanya"
1131
-
1132
- #: options/panel1.php:228
1133
- msgid "Activate and set to Y"
1134
- msgstr "Aktifkan dan atur ke Y"
1135
-
1136
- #: options/panel1.php:229
1137
- msgid "Activate and set to R"
1138
- msgstr "Aktifkan dan atur ke R"
1139
 
1140
- #: options/panel1.php:237
1141
- msgid "Sorry, no subscriptions match your search criteria."
1142
- msgstr "Maaf, tidak ada langganan yang cocok dengan kriteria pencarian Anda."
 
 
 
 
1143
 
1144
- #: options/panel1-business-logic.php:23
1145
- msgid "Subscription added."
1146
- msgstr "Berlangganan telah ditambahkan."
 
 
 
 
 
 
1147
 
1148
- #: options/panel1-business-logic.php:39
1149
- msgid "Subscriptions updated."
1150
- msgstr "Berlangganan telah diperbaharui."
1151
 
1152
- #: options/panel1-business-logic.php:51
1153
- msgid "Subscription deleted."
1154
- msgstr "Berlangganan telah dihapus."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1155
 
1156
- #: options/panel1-business-logic.php:110
1157
- msgid "&laquo; Previous"
1158
- msgstr "&laquo; Sebelumnya"
1159
 
1160
- #: options/panel1-business-logic.php:114
1161
- msgid "Next &raquo;"
1162
- msgstr "Berikutnya &raquo;"
 
 
 
 
 
 
 
 
 
 
1163
 
1164
- #: options/panel1-add-subscription.php:13
1165
- #: options/panel1-edit-subscription.php:13
1166
- msgid "Post:"
1167
- msgstr "Artikel:"
1168
 
1169
- #: options/panel5.php:28
1170
- msgid "Safetly Uninstall"
 
 
1171
  msgstr ""
1172
 
1173
- #: options/panel5.php:31 options/panel5.php:84
1174
- msgid "Autopurge requests"
1175
- msgstr "Permintaan pembersihan-otomatis"
 
 
 
 
 
 
1176
 
1177
- #: options/panel5.php:34 options/panel5.php:93
1178
- msgid "Enable double check"
1179
- msgstr "Nyalakan konfirmasi ganda"
1180
 
1181
- #: options/panel5.php:37 options/panel5.php:101
1182
- msgid "Subscribe authors"
 
 
 
 
1183
  msgstr ""
1184
 
1185
- #: options/panel5.php:40 options/panel5.php:111
1186
- msgid "Enable HTML emails"
1187
- msgstr "Nyalakan email HTML"
1188
 
1189
- #: options/panel5.php:43
1190
- msgid "HTMLify Links in HTML emails"
 
1191
  msgstr ""
 
 
1192
 
1193
- #: options/panel5.php:46
1194
- msgid "Send trackbacks"
1195
- msgstr "Kirim taut balik"
1196
 
1197
- #: options/panel5.php:49
1198
- msgid "Notify admin"
1199
- msgstr "Beritahu admin"
1200
 
1201
- #: options/panel5.php:52 options/panel5.php:149
1202
- msgid "Let admin subscribe"
1203
- msgstr "Ijinkan admin berlangganan"
1204
 
1205
- #: options/panel5.php:55 options/panel5.php:158
1206
- msgid "BCC admin on Notifications"
1207
- msgstr "Notifikasi"
1208
 
1209
- #: options/panel5.php:76
1210
- msgid "Safely Uninstall"
 
 
 
 
1211
  msgstr ""
1212
 
1213
- #: options/panel5.php:80
1214
  msgid ""
1215
- "This option will allow you to delete the plugin with WordPress without "
1216
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
1217
  msgstr ""
1218
 
1219
- #: options/panel5.php:87
1220
- msgid "days"
1221
- msgstr "hari"
 
 
1222
 
1223
- #: options/panel5.php:88
1224
  msgid ""
1225
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1226
- "this feature."
 
1227
  msgstr ""
1228
- "Hapus langganan yang ditunda (tanpa konfirmasi) setelah X hari. Masukkan Nol "
1229
- "untuk mematikan fitur ini."
1230
 
1231
- #: options/panel5.php:97
 
1232
  msgid ""
1233
- "Send a notification email to confirm the subscription (to avoid addresses "
1234
- "misuse)."
 
 
1235
  msgstr ""
1236
- "Kirim sebuah email notifikasi untuk konfirmasi berlangganan (mencegah "
1237
- "penyalahgunaan alamat)."
1238
 
1239
- #: options/panel5.php:106
1240
  msgid ""
1241
- "Automatically subscribe authors to their own articles (not retroactive)."
 
 
1242
  msgstr ""
1243
 
1244
- #: options/panel5.php:115
1245
  msgid ""
1246
- "If enabled, will send email messages with content-type = text/html instead "
1247
- "of text/plain"
 
 
 
 
 
 
 
 
1248
  msgstr ""
1249
- "Jika dimungkinkan, akan mengirim pesan email dengan content-type = text/html "
1250
- "daripada text/plain"
1251
 
1252
- #: options/panel5.php:120
1253
- msgid "HTMLify links in emails"
 
 
1254
  msgstr ""
1255
 
1256
- #: options/panel5.php:125
1257
  msgid ""
1258
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1259
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
 
 
1260
  msgstr ""
1261
 
1262
- #: options/panel5.php:130
1263
- msgid "Process trackbacks"
1264
- msgstr "Proses taut balik"
1265
-
1266
- #: options/panel5.php:134
1267
  msgid ""
1268
- "Notify users when a new trackback or pingback is added to the discussion."
 
 
 
 
1269
  msgstr ""
1270
- "Beritahu pengguna ketika sebuah tautbalik atau pingback ditambahkan dalam "
1271
- "diskusi."
1272
-
1273
- #: options/panel5.php:139
1274
- msgid "Track all subscriptions"
1275
- msgstr "Telusuri semua langganan"
1276
 
1277
- #: options/panel5.php:144
1278
- msgid "Notify the administrator when users subscribe without commenting."
 
1279
  msgstr ""
1280
- "Beritahu admin ketika ada pengguna yg berlangganan tanpa meninggalkan "
1281
- "komentar."
1282
-
1283
- #: options/panel5.php:153
1284
- msgid "Let the administrator subscribe to comments when logged in."
1285
- msgstr "Ijinkan admin berlangganan komentar ketika masuk log."
1286
 
1287
- #: options/panel5.php:162
1288
- msgid "Send a copy of all Notifications to the administrator."
 
 
1289
  msgstr ""
1290
 
1291
- #: options/panel5.php:167
1292
- msgid "StCR Unique Key"
 
 
 
 
 
 
1293
  msgstr ""
1294
 
1295
- #: options/panel5.php:172
1296
- msgid "This Unique Key is not set, please click the following button to "
 
 
 
 
1297
  msgstr ""
1298
 
1299
- #: options/panel5.php:176 options/panel5.php:187
1300
- msgid "Generate"
 
 
1301
  msgstr ""
1302
 
1303
- #: options/panel5.php:184
1304
  msgid ""
1305
- "This Unique Key will be use to send the notification to your subscribers "
1306
- "with more security."
 
1307
  msgstr ""
1308
 
1309
- #: options/panel8.php:18
1310
- msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
1311
  msgstr ""
1312
 
1313
- #: options/panel8.php:19
1314
  msgid ""
1315
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1316
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1317
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1318
- "WordPress Support page."
1319
  msgstr ""
1320
 
1321
- #: options/panel1-edit-subscription.php:8
1322
- msgid "Update Subscription"
1323
- msgstr "Perbaharui cara berlangganan"
1324
-
1325
- #: options/panel1-edit-subscription.php:11
1326
- #: options/panel1-edit-subscription.php:21
1327
- #: options/panel1-edit-subscription.php:22
1328
- #: options/panel1-edit-subscription.php:23
1329
- msgid "optional"
1330
- msgstr "tidak wajib diisi"
1331
-
1332
- #: options/panel10.php:22 options/panel10.php:23
1333
- msgid "System Information"
1334
  msgstr ""
1335
 
1336
- #: options/panel3.php:13 options/panel3.php:87
1337
- msgid "Virtual Management Page"
1338
- msgstr "Halaman Pengaturan Virtual"
1339
-
1340
- #: options/panel3.php:18 options/panel3.php:96
1341
- msgid "Page title"
1342
- msgstr "Judul halaman"
1343
-
1344
- #: options/panel3.php:23 options/panel3.php:105
1345
- msgid "Management URL"
1346
- msgstr "URL Pengaturan"
1347
-
1348
- #: options/panel3.php:28 options/panel3.php:117
1349
- msgid "Custom HEAD meta"
1350
- msgstr "Meta HEAD tersuai"
1351
-
1352
- #: options/panel3.php:34 options/panel3.php:131
1353
- msgid "Request link"
1354
- msgstr "Meminta tautan"
1355
-
1356
- #: options/panel3.php:39 options/panel3.php:149
1357
- msgid "Request submitted"
1358
- msgstr "Permintaan diajukan"
1359
-
1360
- #: options/panel3.php:44 options/panel3.php:167
1361
- msgid "Subscribe without commenting"
1362
- msgstr "Berlangganan tanpa memberi komentar"
1363
-
1364
- #: options/panel3.php:49 options/panel3.php:185
1365
- msgid "Subscription processed"
1366
- msgstr "Langganan yang diproses"
1367
-
1368
- #: options/panel3.php:54 options/panel3.php:203
1369
- msgid "Subscription processed (DCI)"
1370
- msgstr "Langganan yang diproses (DCI)"
1371
-
1372
- #: options/panel3.php:59 options/panel3.php:220
1373
- msgid "Authors"
1374
- msgstr "Penulis"
1375
-
1376
- #: options/panel3.php:64 options/panel3.php:236
1377
- msgid "Users"
1378
- msgstr "Pengguna"
1379
-
1380
- #: options/panel3.php:90
1381
- msgid "Enabled"
1382
- msgstr "Dinyalakan"
1383
-
1384
- #: options/panel3.php:91
1385
- msgid "Disabled"
1386
- msgstr "Dimatikan"
1387
-
1388
- #: options/panel3.php:92
1389
  msgid ""
1390
- "Disable the virtual management page if you need to create a <a href="
1391
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1392
- "real-management-page\">real page</a> to make your theme happy."
1393
  msgstr ""
1394
- "Matikan Halaman Pengaturan Virtual jika Anda ingin membuat sebuah <a href="
1395
- "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">halaman riil</a> "
1396
- "yang lebih bersahabat dengan tema."
1397
 
1398
- #: options/panel3.php:101
1399
- msgid "Title of the page your visitors will use to manage their subscriptions."
1400
  msgstr ""
1401
- "Judul pada halaman pengunjung akan digunakan untuk mengatur cara "
1402
- "berlangganan mereka."
1403
 
1404
- #: options/panel3.php:109
1405
  msgid ""
1406
- "The permalink for your management page (something like <code>/manage-"
1407
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1408
- "b> actually exist in the system, but its link must follow your permalink "
1409
- "structure."
1410
  msgstr ""
1411
- "Permalink untuk halaman pengaturan Anda (sesuatu seperti <code>/pengaturan-"
1412
- "langganan</code> atau <code>/?page_id=345</code>). Halaman ini <b>tidak</b> "
1413
- "benar-benar ada dalam sistem, tetapi tautannya harus mengikuti struktur "
1414
- "tautan di web Anda."
1415
 
1416
- #: options/panel3.php:111
1417
  msgid ""
1418
- "Warning: it looks like the value you are using may be incompatible with your "
1419
- "permalink structure"
1420
  msgstr ""
1421
- "Peringatan: sepertinya nilai yang Anda gunakan tidak kompatibel dengan "
1422
- "struktur permalink web Anda."
1423
 
1424
- #: options/panel3.php:121
1425
  msgid ""
1426
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1427
- "Use <strong>single</strong> quotes for values."
 
1428
  msgstr ""
1429
- "Tentukan kode HTML tersuai Anda untuk ditambahkan ke dalam bagian HEAD pada "
1430
- "halaman. Gunakan tanda kutip <strong>tunggal</strong> untuk nilai."
1431
 
1432
- #: options/panel3.php:144
1433
- msgid "Text shown to those who request to manage their subscriptions."
 
 
 
1434
  msgstr ""
1435
- "Teks yang diperlihatkan kepada mereka yang ingin mengatur cara berlangganan."
1436
 
1437
- #: options/panel3.php:162
1438
  msgid ""
1439
- "Thank you note shown after the request here above has been processed. "
1440
- "Allowed tags: [post_title], [post_permalink]"
 
1441
  msgstr ""
1442
- "Ucapan Terima Kasih yang diperlihatkan setelah permintaan di atas telah "
1443
- "diproses. Tag yang diijinkan: [post_title], [post_permalink]"
1444
 
1445
- #: options/panel3.php:180
1446
  msgid ""
1447
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1448
- "[post_title], [post_permalink]"
1449
  msgstr ""
1450
- "Teks yang diperlihatkan kepada pengguna yang ingin berlangganan tanpa "
1451
- "meninggalkan komentar. Tag yang diijinkan: [post_title], [post_permalink]"
1452
 
1453
- #: options/panel3.php:198
1454
  msgid ""
1455
- "Thank you note shown after the subscription request has been processed "
1456
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1457
  msgstr ""
1458
- "Ucapan Terima Kasih yang diperlihatkan setelah permintaan berlangganan "
1459
- "diproses (konfirmasi ganda dimatikan). Tag yang diijinkan: [post_title], "
1460
- "[post_permalink]"
1461
 
1462
- #: options/panel3.php:216
1463
- msgid ""
1464
- "Thank you note shown after the subscription request has been processed "
1465
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
 
1466
  msgstr ""
1467
- "Ucapan Terima Kasih yang diperlihatkan setelah permintaan berlangganan "
1468
- "diproses (konfirmasi ganda dinyalakan). Tag yang diijinkan: [post_title], "
1469
- "[post_permalink]"
1470
 
1471
- #: options/panel3.php:232
1472
- msgid "Introductory text for the authors' management page."
1473
- msgstr "Teks pengantar pada Halaman Pengaturan milik penulis."
1474
 
1475
- #: options/panel3.php:248
1476
- msgid "Introductory text for the users' management page."
1477
- msgstr "Teks pengantar pada Halaman Pengaturan milik pengguna."
1478
 
1479
  #~ msgid "StCR Subscription Box Position"
1480
  #~ msgstr "Langganan baru untuk"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:30-0600\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: id_ID\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: s;\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
20
+ #: utils/stcr_manage.php:383
21
+ msgid "Manage subscriptions"
22
+ msgstr "Atur Langganan"
23
 
24
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
25
+ msgid "Comment Form"
26
+ msgstr "Formulir Komentar"
27
 
28
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
29
+ msgid "Management Page"
30
+ msgstr "Halaman Pengaturan"
31
 
32
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
33
+ msgid "Notifications"
34
+ msgstr "Notifikasi"
35
+
36
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
37
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
38
+ msgid "Options"
39
+ msgstr "Pilihan"
40
+
41
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
42
+ msgid "You can help"
43
+ msgstr "Bantu kami"
44
+
45
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
46
+ msgid "Support"
47
+ msgstr "forum bantuan"
48
+
49
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
50
+ msgid "Donate"
51
+ msgstr ""
52
+
53
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
54
+ msgid "Add New Subscription"
55
+ msgstr "Tambahkan Langganan Baru"
56
 
57
+ #: options/panel1-add-subscription.php:13
58
+ #: options/panel1-edit-subscription.php:13
59
+ msgid "Post:"
60
+ msgstr "Artikel:"
61
+
62
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
63
+ #: options/panel1.php:133 templates/key_expired.php:84
64
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
65
+ #: templates/user.php:57
66
  msgid "Email"
67
  msgstr "Email"
68
 
69
+ #: options/panel1-add-subscription.php:20
70
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
71
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
72
+ msgid "Status"
73
+ msgstr "Status"
74
 
75
+ #: options/panel1-add-subscription.php:22
76
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
77
+ #: options/panel1.php:79 options/panel1.php:172
78
+ msgid "Active"
79
+ msgstr "Aktif"
80
 
81
+ #: options/panel1-add-subscription.php:23
82
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
83
+ #: options/panel1.php:80
84
+ msgid "Replies only"
85
+ msgstr "Balasan saja"
86
 
87
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
88
+ msgid "Ask user to confirm"
89
+ msgstr "Minta pengguna untuk konfirmasi"
90
 
91
+ #: options/panel1-add-subscription.php:26
92
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
93
+ msgid "Update"
94
+ msgstr "Perbaharui"
95
+
96
+ #: options/panel1-business-logic.php:23
97
+ msgid "Subscription added."
98
+ msgstr "Berlangganan telah ditambahkan."
99
+
100
+ #: options/panel1-business-logic.php:39
101
+ msgid "Subscriptions updated."
102
+ msgstr "Berlangganan telah diperbaharui."
103
+
104
+ #: options/panel1-business-logic.php:51
105
+ msgid "Subscription deleted."
106
+ msgstr "Berlangganan telah dihapus."
107
 
108
+ #: options/panel1-business-logic.php:70 templates/author.php:23
109
+ #: templates/user.php:23
110
  msgid "Subscriptions deleted:"
111
  msgstr "Berlangganan telah dihapus."
112
 
113
+ #: options/panel1-business-logic.php:74 templates/author.php:27
114
+ #: templates/user.php:27
115
  msgid "Subscriptions suspended:"
116
  msgstr "Berlangganan telah ditangguhkan."
117
 
118
+ #: options/panel1-business-logic.php:78 templates/author.php:31
119
+ #: templates/user.php:31
120
  msgid "Subscriptions activated:"
121
  msgstr "Berlangganan telah diaktifkan."
122
 
123
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
124
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
125
+ #: templates/user.php:39
126
  msgid "Subscriptions updated:"
127
  msgstr "Berlangganan telah diperbaharui."
128
 
129
+ #: options/panel1-business-logic.php:110
130
+ msgid "&laquo; Previous"
131
+ msgstr "&laquo; Sebelumnya"
132
+
133
+ #: options/panel1-business-logic.php:114
134
+ msgid "Next &raquo;"
135
+ msgstr "Berikutnya &raquo;"
136
+
137
+ #: options/panel1-edit-subscription.php:8
138
+ msgid "Update Subscription"
139
+ msgstr "Perbaharui cara berlangganan"
140
+
141
  #: options/panel1-edit-subscription.php:11
142
+ #: options/panel1-edit-subscription.php:21
143
+ #: options/panel1-edit-subscription.php:22
144
+ #: options/panel1-edit-subscription.php:23
145
+ msgid "optional"
146
+ msgstr "tidak wajib diisi"
147
+
148
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
149
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
150
+ #: templates/author.php:52 templates/user.php:52
151
  msgid ""
152
  "Please remember: this operation cannot be undone. Are you sure you want to "
153
  "proceed?"
155
  "Ingat: tindakan berikut tidak dapat dikembalikan. Anda yakin untuk "
156
  "melakukannya?"
157
 
158
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
159
+ msgid "From"
160
+ msgstr "Dari"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
163
+ msgid "To"
164
+ msgstr "Ke"
 
165
 
166
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
167
+ msgid "Keep unchanged"
168
+ msgstr "Jangan diganti"
169
 
170
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
171
+ msgid "Suspended"
172
+ msgstr "Ditangguhkan"
173
 
174
+ #: options/panel1.php:20
175
+ msgid "Mass Update Subscriptions"
176
+ msgstr "Pembaruan berlangganan secara massal"
177
 
178
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
179
+ msgid "email address"
180
+ msgstr "Alamat email pengirim"
181
 
182
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
183
+ msgid "optional - new email address"
184
+ msgstr "Alamat email pengirim"
185
 
186
+ #: options/panel1.php:49
187
+ msgid "More info"
188
  msgstr ""
189
 
190
+ #: options/panel1.php:55
191
  msgid ""
192
+ "This option will allow you to change an email address for another one or to "
193
+ "update the same status for all the subscription on a specific email address."
 
 
194
  msgstr ""
195
 
196
+ #: options/panel1.php:68
197
+ msgid "Post ID"
198
+ msgstr "Post ID"
 
 
 
199
 
200
+ #: options/panel1.php:83
201
+ msgid "Add"
202
+ msgstr "Tambahkan"
 
 
203
 
204
+ #: options/panel1.php:98
205
+ msgid "Search subscriptions"
206
+ msgstr "Cari langganan"
 
 
 
207
 
208
+ #: options/panel1.php:102
209
+ #, php-format
210
  msgid ""
211
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
212
+ "where the"
 
 
213
  msgstr ""
214
+ "Anda dapat <a href=\"%s\">melihat semua langganan</a> atau menemukan di mana "
215
+ "mereka"
216
 
217
+ #: options/panel1.php:106
218
+ msgid "email"
219
+ msgstr "email"
 
 
 
220
 
221
+ #: options/panel1.php:107
222
+ msgid "post ID"
223
+ msgstr "post ID"
 
 
224
 
225
+ #: options/panel1.php:108
226
+ msgid "status"
227
+ msgstr "status"
 
 
 
 
228
 
229
+ #: options/panel1.php:111
230
+ msgid "equals"
231
+ msgstr "equals (sama)"
 
 
232
 
233
+ #: options/panel1.php:112
234
+ msgid "contains"
235
+ msgstr "mengandung"
 
 
 
 
236
 
237
+ #: options/panel1.php:113
238
+ msgid "does not contain"
239
+ msgstr "tidak mengandung"
 
 
 
 
 
240
 
241
+ #: options/panel1.php:114
242
+ msgid "starts with"
243
+ msgstr "dimulai dengan"
 
244
 
245
+ #: options/panel1.php:115
246
+ msgid "ends with"
247
+ msgstr "diakhiri dengan"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
 
249
+ #: options/panel1.php:118
250
+ msgid "results per page:"
251
+ msgstr "hasil per halaman:"
 
 
 
 
 
 
252
 
253
+ #: options/panel1.php:120
254
+ msgid "Search"
255
+ msgstr "Cari"
 
 
 
 
 
 
256
 
257
+ #: options/panel1.php:128
258
+ msgid "Reverse the order by Post ID"
259
+ msgstr "Balik urutan berdasar Post ID"
 
 
 
 
 
 
260
 
261
+ #: options/panel1.php:129 options/panel1.php:130
262
+ msgid "Reverse the order by Date/Time"
263
+ msgstr "Balik urutan berdasar Tanggal/Waktu"
 
 
 
 
 
 
264
 
265
+ #: options/panel1.php:132
266
+ msgid "Post (ID)"
267
+ msgstr "Post (ID)"
 
 
 
 
 
 
268
 
269
+ #: options/panel1.php:135
270
+ msgid "Search query:"
271
+ msgstr "Query pencarian:"
 
 
 
 
272
 
273
+ #: options/panel1.php:135
274
+ msgid "Rows:"
275
+ msgstr "Baris:"
 
 
 
 
 
 
276
 
277
+ #: options/panel1.php:135
278
+ msgid "of"
279
+ msgstr "pada"
280
 
281
+ #: options/panel1.php:142 options/panel1.php:158
282
+ msgid "Date and Time"
283
+ msgstr "Tanggal dan Waktu"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
 
285
+ #: options/panel1.php:168
286
+ msgid "Replies"
287
+ msgstr "Balasan"
288
 
289
+ #: options/panel1.php:169
290
+ msgid "All Comments"
 
 
 
 
 
291
  msgstr ""
 
 
 
 
 
 
 
 
 
292
 
293
+ #: options/panel1.php:170
294
+ msgid "Unconfirmed"
 
 
295
  msgstr ""
296
 
297
+ #: options/panel1.php:171
298
+ msgid "Inactive"
299
+ msgstr "Aktif"
 
 
 
 
 
 
300
 
301
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
302
+ #: templates/user.php:70
303
+ msgid "Delete"
304
+ msgstr "Hapus"
305
 
306
+ #: options/panel1.php:201 options/panel1.php:211
307
+ msgid "Edit"
308
+ msgstr "Edit"
309
 
310
+ #: options/panel1.php:203 options/panel1.php:209
311
+ msgid "Subscription"
312
+ msgstr "Langganan"
313
 
314
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
315
+ msgid "Action:"
316
+ msgstr "Tindakan:"
 
317
 
318
+ #: options/panel1.php:226
319
+ msgid "Delete forever"
320
+ msgstr "Hapus selamanya"
321
 
322
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
323
+ msgid "Suspend"
324
+ msgstr "Tangguhkan"
325
 
326
+ #: options/panel1.php:228
327
+ msgid "Activate and set to Y"
328
+ msgstr "Aktifkan dan atur ke Y"
329
 
330
+ #: options/panel1.php:229
331
+ msgid "Activate and set to R"
332
+ msgstr "Aktifkan dan atur ke R"
333
 
334
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
335
+ msgid "Activate"
336
+ msgstr "Aktifkan"
 
 
 
 
337
 
338
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
339
+ msgid "Update subscriptions"
340
+ msgstr "Perbaharui langganan"
341
 
342
+ #: options/panel1.php:237
343
+ msgid "Sorry, no subscriptions match your search criteria."
344
+ msgstr "Maaf, tidak ada langganan yang cocok dengan kriteria pencarian Anda."
 
 
 
 
345
 
346
+ #: options/panel10.php:22 options/panel10.php:23
347
+ msgid "System Information"
 
348
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
 
350
  #: options/panel2.php:12 options/panel2.php:63
351
  msgid "Enable default checkbox"
387
  msgid "Author label"
388
  msgstr "Label penulis"
389
 
390
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
391
+ #: options/panel5.php:18 options/panel5.php:60
392
  msgid "Your settings have been successfully updated."
393
  msgstr "Pengaturan Anda telah diperbarui."
394
 
395
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
396
+ #: options/panel5.php:20 options/panel5.php:62
397
  msgid "There was an error updating the following fields:"
398
  msgstr "Terdapat galat saat memperbaharui ruas berikut:"
399
 
404
  msgid "Yes"
405
  msgstr "Ya"
406
 
407
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
408
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
409
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
410
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
411
+ #: utils/stcr_manage.php:784
412
+ msgid "No"
413
+ msgstr "Tidak"
414
+
415
  #: options/panel2.php:68
416
  msgid ""
417
  "Disable this option if you want to move the subscription checkbox to a "
451
  msgid "Advanced default"
452
  msgstr "Dicentang sebagai bawaan"
453
 
454
+ #: options/panel2.php:119
455
+ msgid "None"
456
+ msgstr ""
457
+
458
+ #: options/panel2.php:124
459
+ msgid ""
460
+ "The default subscription type that should be selected when Advanced "
461
+ "subscriptions are enable."
462
+ msgstr ""
463
+
464
+ #: options/panel2.php:135
465
+ msgid "Custom inline CSS to add to the checkbox."
466
+ msgstr "Inline CSS tersuai untuk ditambahkan pada checkbox."
467
+
468
+ #: options/panel2.php:152
469
+ msgid ""
470
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
471
+ "[checkbox_field], [checkbox_label]"
472
+ msgstr ""
473
+ "Kode HTML tersuai untuk digunakan ketika menampilkan checkbox. Tag yang "
474
+ "diijinkan: [checkbox_field], [checkbox_label]"
475
+
476
+ #: options/panel2.php:158
477
+ msgid "Messages for your visitors"
478
+ msgstr "Pesan untuk pengunjung Anda"
479
+
480
+ #: options/panel2.php:162
481
+ msgid "Default label"
482
+ msgstr "Label bawaan"
483
+
484
+ #: options/panel2.php:175
485
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
486
+ msgstr ""
487
+ "Label yang terasosiasi dengan checkbox. Tag yang diijinkan: [subscribe_link]"
488
+
489
+ #: options/panel2.php:192
490
+ msgid ""
491
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
492
+ "[manager_link]"
493
+ msgstr ""
494
+ "Label yang diperlihatkan kepada mereka yang telah berlangganan suatu "
495
+ "artikel. Tag yang diijinkan: [manager_link]"
496
+
497
+ #: options/panel2.php:197
498
+ msgid "Pending label"
499
+ msgstr "Label penundaan"
500
+
501
+ #: options/panel2.php:209
502
+ msgid ""
503
+ "Label shown to those who are already subscribed, but haven't clicked on the "
504
+ "confirmation link yet. Allowed tag: [manager_link]"
505
+ msgstr ""
506
+ "Label yang diperlihatkan kepada mereka yang telah berlangganan, tetapi belum "
507
+ "melakukan klik pada tautan konfirmasi. Tag yang diijinkan: [manager_link]"
508
+
509
+ #: options/panel2.php:225
510
+ msgid ""
511
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
512
+ msgstr ""
513
+ "Label yang diperlihatkan kepada penulis (dan admin). Tag yang diijinkan: "
514
+ "[manager_link]"
515
+
516
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
517
+ #: options/panel5.php:195
518
+ msgid "Save Changes"
519
+ msgstr "Simpan Perubahan"
520
+
521
+ #: options/panel3.php:13 options/panel3.php:87
522
+ msgid "Virtual Management Page"
523
+ msgstr "Halaman Pengaturan Virtual"
524
+
525
+ #: options/panel3.php:18 options/panel3.php:96
526
+ msgid "Page title"
527
+ msgstr "Judul halaman"
528
+
529
+ #: options/panel3.php:23 options/panel3.php:105
530
+ msgid "Management URL"
531
+ msgstr "URL Pengaturan"
532
+
533
+ #: options/panel3.php:28 options/panel3.php:117
534
+ msgid "Custom HEAD meta"
535
+ msgstr "Meta HEAD tersuai"
536
+
537
+ #: options/panel3.php:34 options/panel3.php:131
538
+ msgid "Request link"
539
+ msgstr "Meminta tautan"
540
+
541
+ #: options/panel3.php:39 options/panel3.php:149
542
+ msgid "Request submitted"
543
+ msgstr "Permintaan diajukan"
544
+
545
+ #: options/panel3.php:44 options/panel3.php:167
546
+ msgid "Subscribe without commenting"
547
+ msgstr "Berlangganan tanpa memberi komentar"
548
+
549
+ #: options/panel3.php:49 options/panel3.php:185
550
+ msgid "Subscription processed"
551
+ msgstr "Langganan yang diproses"
552
+
553
+ #: options/panel3.php:54 options/panel3.php:203
554
+ msgid "Subscription processed (DCI)"
555
+ msgstr "Langganan yang diproses (DCI)"
556
+
557
+ #: options/panel3.php:59 options/panel3.php:220
558
+ msgid "Authors"
559
+ msgstr "Penulis"
560
+
561
+ #: options/panel3.php:64 options/panel3.php:236
562
+ msgid "Users"
563
+ msgstr "Pengguna"
564
+
565
+ #: options/panel3.php:90
566
+ msgid "Enabled"
567
+ msgstr "Dinyalakan"
568
+
569
+ #: options/panel3.php:91
570
+ msgid "Disabled"
571
+ msgstr "Dimatikan"
572
+
573
+ #: options/panel3.php:92
574
+ msgid ""
575
+ "Disable the virtual management page if you need to create a <a href="
576
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
577
+ "real-management-page\">real page</a> to make your theme happy."
578
+ msgstr ""
579
+ "Matikan Halaman Pengaturan Virtual jika Anda ingin membuat sebuah <a href="
580
+ "\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">halaman riil</a> "
581
+ "yang lebih bersahabat dengan tema."
582
+
583
+ #: options/panel3.php:101
584
+ msgid "Title of the page your visitors will use to manage their subscriptions."
585
  msgstr ""
586
+ "Judul pada halaman pengunjung akan digunakan untuk mengatur cara "
587
+ "berlangganan mereka."
588
 
589
+ #: options/panel3.php:109
590
  msgid ""
591
+ "The permalink for your management page (something like <code>/manage-"
592
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
593
+ "b> actually exist in the system, but its link must follow your permalink "
594
+ "structure."
595
  msgstr ""
596
+ "Permalink untuk halaman pengaturan Anda (sesuatu seperti <code>/pengaturan-"
597
+ "langganan</code> atau <code>/?page_id=345</code>). Halaman ini <b>tidak</b> "
598
+ "benar-benar ada dalam sistem, tetapi tautannya harus mengikuti struktur "
599
+ "tautan di web Anda."
600
 
601
+ #: options/panel3.php:111
 
 
 
 
602
  msgid ""
603
+ "Warning: it looks like the value you are using may be incompatible with your "
604
+ "permalink structure"
605
  msgstr ""
606
+ "Peringatan: sepertinya nilai yang Anda gunakan tidak kompatibel dengan "
607
+ "struktur permalink web Anda."
608
 
609
+ #: options/panel3.php:121
610
+ msgid ""
611
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
612
+ "Use <strong>single</strong> quotes for values."
613
+ msgstr ""
614
+ "Tentukan kode HTML tersuai Anda untuk ditambahkan ke dalam bagian HEAD pada "
615
+ "halaman. Gunakan tanda kutip <strong>tunggal</strong> untuk nilai."
616
 
617
+ #: options/panel3.php:127 options/panel4.php:135
618
+ msgid "Messages"
619
+ msgstr "Pesan"
620
 
621
+ #: options/panel3.php:144
622
+ msgid "Text shown to those who request to manage their subscriptions."
623
  msgstr ""
624
+ "Teks yang diperlihatkan kepada mereka yang ingin mengatur cara berlangganan."
625
 
626
+ #: options/panel3.php:162
627
  msgid ""
628
+ "Thank you note shown after the request here above has been processed. "
629
+ "Allowed tags: [post_title], [post_permalink]"
630
  msgstr ""
631
+ "Ucapan Terima Kasih yang diperlihatkan setelah permintaan di atas telah "
632
+ "diproses. Tag yang diijinkan: [post_title], [post_permalink]"
 
 
 
 
633
 
634
+ #: options/panel3.php:180
635
  msgid ""
636
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
637
+ "[post_title], [post_permalink]"
638
  msgstr ""
639
+ "Teks yang diperlihatkan kepada pengguna yang ingin berlangganan tanpa "
640
+ "meninggalkan komentar. Tag yang diijinkan: [post_title], [post_permalink]"
641
 
642
+ #: options/panel3.php:198
643
  msgid ""
644
+ "Thank you note shown after the subscription request has been processed "
645
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
 
 
 
 
 
 
 
 
 
 
646
  msgstr ""
647
+ "Ucapan Terima Kasih yang diperlihatkan setelah permintaan berlangganan "
648
+ "diproses (konfirmasi ganda dimatikan). Tag yang diijinkan: [post_title], "
649
+ "[post_permalink]"
650
 
651
+ #: options/panel3.php:216
652
  msgid ""
653
+ "Thank you note shown after the subscription request has been processed "
654
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
655
  msgstr ""
656
+ "Ucapan Terima Kasih yang diperlihatkan setelah permintaan berlangganan "
657
+ "diproses (konfirmasi ganda dinyalakan). Tag yang diijinkan: [post_title], "
658
+ "[post_permalink]"
659
+
660
+ #: options/panel3.php:232
661
+ msgid "Introductory text for the authors' management page."
662
+ msgstr "Teks pengantar pada Halaman Pengaturan milik penulis."
663
+
664
+ #: options/panel3.php:248
665
+ msgid "Introductory text for the users' management page."
666
+ msgstr "Teks pengantar pada Halaman Pengaturan milik pengguna."
667
 
668
  #: options/panel4.php:15 options/panel4.php:94
669
  msgid "Sender name"
727
  "will be the same as the Sender email address."
728
  msgstr ""
729
 
 
 
 
 
730
  #: options/panel4.php:147
731
  msgid "Subject of the notification email. Allowed tag: [post_title]"
732
  msgstr "Subjek pada email notifikasi. Tag yang diijinkan: [post_title]"
764
  "Subject of the mail sent to those who request to access their management "
765
  "page. Allowed tag: [blog_name]"
766
  msgstr ""
767
+ "Subjek pada email yang dikirimkan kepada mereka yang meminta akses ke "
768
+ "Halaman Pengaturan. Tag yang diijinkan: [blog_name]"
769
+
770
+ #: options/panel4.php:223
771
+ msgid "Management Page message"
772
+ msgstr ""
773
+
774
+ #: options/panel4.php:237
775
+ msgid "Content of the management Page message. Allowed tags: [blog_name]."
776
+ msgstr ""
777
+
778
+ #: options/panel4.php:257
779
+ msgid ""
780
+ "Content of the management email message. Allowed tags: [blog_name], "
781
+ "[manager_link]."
782
+ msgstr ""
783
+
784
+ #: options/panel4.php:263
785
+ msgid "One Click Unsubscribe"
786
+ msgstr "Ijinkan admin berlangganan"
787
+
788
+ #: options/panel4.php:277
789
+ msgid ""
790
+ "Content of the One Click confirmation. Allowed tags: [post_title], "
791
+ "[blog_name]"
792
+ msgstr "Subjek pada email konfirmasi. Tag yang diijinkan: [post_title]"
793
+
794
+ #: options/panel5.php:28
795
+ msgid "Safetly Uninstall"
796
+ msgstr ""
797
+
798
+ #: options/panel5.php:31 options/panel5.php:84
799
+ msgid "Autopurge requests"
800
+ msgstr "Permintaan pembersihan-otomatis"
801
+
802
+ #: options/panel5.php:34 options/panel5.php:93
803
+ msgid "Enable double check"
804
+ msgstr "Nyalakan konfirmasi ganda"
805
+
806
+ #: options/panel5.php:37 options/panel5.php:101
807
+ msgid "Subscribe authors"
808
+ msgstr ""
809
+
810
+ #: options/panel5.php:40 options/panel5.php:111
811
+ msgid "Enable HTML emails"
812
+ msgstr "Nyalakan email HTML"
813
+
814
+ #: options/panel5.php:43
815
+ msgid "HTMLify Links in HTML emails"
816
+ msgstr ""
817
+
818
+ #: options/panel5.php:46
819
+ msgid "Send trackbacks"
820
+ msgstr "Kirim taut balik"
821
+
822
+ #: options/panel5.php:49
823
+ msgid "Notify admin"
824
+ msgstr "Beritahu admin"
825
+
826
+ #: options/panel5.php:52 options/panel5.php:149
827
+ msgid "Let admin subscribe"
828
+ msgstr "Ijinkan admin berlangganan"
829
+
830
+ #: options/panel5.php:55 options/panel5.php:158
831
+ msgid "BCC admin on Notifications"
832
+ msgstr "Notifikasi"
833
+
834
+ #: options/panel5.php:76
835
+ msgid "Safely Uninstall"
836
+ msgstr ""
837
+
838
+ #: options/panel5.php:80
839
+ msgid ""
840
+ "This option will allow you to delete the plugin with WordPress without "
841
+ "loosing your subscribers. Any database table and plugin options are wipeout."
842
+ msgstr ""
843
+
844
+ #: options/panel5.php:87
845
+ msgid "days"
846
+ msgstr "hari"
847
+
848
+ #: options/panel5.php:88
849
+ msgid ""
850
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
851
+ "this feature."
852
+ msgstr ""
853
+ "Hapus langganan yang ditunda (tanpa konfirmasi) setelah X hari. Masukkan Nol "
854
+ "untuk mematikan fitur ini."
855
+
856
+ #: options/panel5.php:97
857
+ msgid ""
858
+ "Send a notification email to confirm the subscription (to avoid addresses "
859
+ "misuse)."
860
+ msgstr ""
861
+ "Kirim sebuah email notifikasi untuk konfirmasi berlangganan (mencegah "
862
+ "penyalahgunaan alamat)."
863
+
864
+ #: options/panel5.php:106
865
+ msgid ""
866
+ "Automatically subscribe authors to their own articles (not retroactive)."
867
+ msgstr ""
868
+
869
+ #: options/panel5.php:115
870
+ msgid ""
871
+ "If enabled, will send email messages with content-type = text/html instead "
872
+ "of text/plain"
873
+ msgstr ""
874
+ "Jika dimungkinkan, akan mengirim pesan email dengan content-type = text/html "
875
+ "daripada text/plain"
876
+
877
+ #: options/panel5.php:120
878
+ msgid "HTMLify links in emails"
879
+ msgstr ""
880
+
881
+ #: options/panel5.php:125
882
+ msgid ""
883
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
884
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
885
+ msgstr ""
886
+
887
+ #: options/panel5.php:130
888
+ msgid "Process trackbacks"
889
+ msgstr "Proses taut balik"
890
+
891
+ #: options/panel5.php:134
892
+ msgid ""
893
+ "Notify users when a new trackback or pingback is added to the discussion."
894
+ msgstr ""
895
+ "Beritahu pengguna ketika sebuah tautbalik atau pingback ditambahkan dalam "
896
+ "diskusi."
897
+
898
+ #: options/panel5.php:139
899
+ msgid "Track all subscriptions"
900
+ msgstr "Telusuri semua langganan"
901
+
902
+ #: options/panel5.php:144
903
+ msgid "Notify the administrator when users subscribe without commenting."
904
+ msgstr ""
905
+ "Beritahu admin ketika ada pengguna yg berlangganan tanpa meninggalkan "
906
+ "komentar."
907
 
908
+ #: options/panel5.php:153
909
+ msgid "Let the administrator subscribe to comments when logged in."
910
+ msgstr "Ijinkan admin berlangganan komentar ketika masuk log."
911
+
912
+ #: options/panel5.php:162
913
+ msgid "Send a copy of all Notifications to the administrator."
914
  msgstr ""
915
 
916
+ #: options/panel5.php:167
917
+ msgid "StCR Unique Key"
918
  msgstr ""
919
 
920
+ #: options/panel5.php:172
921
+ msgid "This Unique Key is not set, please click the following button to "
 
 
922
  msgstr ""
923
 
924
+ #: options/panel5.php:176 options/panel5.php:187
925
+ msgid "Generate"
926
+ msgstr ""
927
 
928
+ #: options/panel5.php:184
929
  msgid ""
930
+ "This Unique Key will be use to send the notification to your subscribers "
931
+ "with more security."
932
+ msgstr ""
933
 
934
  #: options/panel7.php:8 options/panel8.php:8
935
  msgid "Support the developers"
998
  "wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">Beri "
999
  "peringkat</a> pada halaman Direktori Plugin."
1000
 
1001
+ #: options/panel8.php:18
1002
+ msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1003
  msgstr ""
1004
 
1005
+ #: options/panel8.php:19
1006
  msgid ""
1007
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1008
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1009
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1010
+ "WordPress Support page."
1011
  msgstr ""
1012
 
1013
+ #: options/panel9.php:11
1014
+ msgid "Support Subscribe to Comments Reloaded"
1015
+ msgstr ""
1016
+ "Perlu bantuan tentang cara penggunaan Subscribe to Comments Reloaded? "
1017
+ "Kunjungi situs resmi"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1018
 
1019
+ #: options/panel9.php:12
 
1020
  msgid ""
1021
+ "Every contribution that you make is high valuable, so if you consider this "
1022
+ "plugin a helpful tool we will use your donation to invest on support and "
1023
+ "developing time."
1024
  msgstr ""
 
 
1025
 
1026
+ #: templates/author.php:57
1027
+ msgid "Title"
1028
+ msgstr "Judul"
1029
 
1030
+ #: templates/author.php:58 templates/user.php:58
1031
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1032
+ msgstr "Legenda: Y = seluruh komentar, R = balasan saja, C = tidak aktif"
1033
 
1034
+ #: templates/author.php:69 templates/user.php:67
1035
+ msgid "Select all"
1036
+ msgstr "Pilih semua"
1037
 
1038
+ #: templates/author.php:70 templates/user.php:68
1039
+ msgid "Invert selection"
1040
+ msgstr "Invert seleksi"
1041
 
1042
+ #: templates/author.php:74 templates/user.php:72
1043
+ msgid "All comments"
1044
+ msgstr ""
1045
 
1046
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1047
+ msgid "Replies to my comments"
1048
+ msgstr "Balasan pada komentar saya saja"
1049
 
1050
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1051
+ #: templates/user.php:79
1052
+ msgid "No subscriptions match your search criteria."
1053
+ msgstr "Tidak ada langganan yang sesuai dengan kriteria pencarian Anda."
1054
 
1055
+ #: templates/key_expired.php:8
1056
+ msgid ""
1057
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1058
+ "enter your email below and a new link will be send."
1059
+ msgstr ""
1060
 
1061
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1062
+ #: templates/subscribe.php:106
1063
+ msgid "Send"
1064
+ msgstr "Kirim"
1065
 
1066
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1067
+ msgid "New subscription to"
1068
+ msgstr "Langganan baru untuk"
1069
 
1070
+ #: templates/subscribe.php:44
1071
+ msgid "User:"
1072
+ msgstr "Pengguna:"
1073
 
1074
+ #: templates/user.php:63
1075
+ msgid "F j, Y"
1076
+ msgstr ""
1077
 
1078
+ #: templates/wrong-request.php:9
1079
+ msgid "You have request to manage another email address and this is forbidden."
1080
+ msgstr ""
1081
 
1082
+ #: utils/stcr_manage.php:246
1083
+ msgid ""
1084
+ "Notify me of followup comments via e-mail. You can also <a "
1085
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1086
+ msgstr ""
1087
+ "Beritahu saya melalui email jika ada balasan komentar di artikel ini. Anda "
1088
+ "juga dapat <a href='[subscribe_link]'>berlangganan</a> tanpa harus memberi "
1089
+ "komentar."
1090
 
1091
+ #: utils/stcr_manage.php:247
1092
+ msgid ""
1093
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1094
+ "subscriptions."
1095
+ msgstr ""
1096
+ "Anda telah berlangganan artikel ini. <a href='[manager_link]'>Atur</a> cara "
1097
+ "berlangganan Anda."
1098
 
1099
+ #: utils/stcr_manage.php:248
1100
+ msgid ""
1101
+ "Your subscription to this post needs to be confirmed. <a "
1102
+ "href='[manager_link]'>Manage your subscriptions</a>."
1103
+ msgstr ""
1104
+ "Permintaan berlangganan Anda untuk artikel ini perlu dikonfirmasi. <a "
1105
+ "href='[manager_link]'>Aturlah cara berlangganan Anda</a>."
1106
 
1107
+ #: utils/stcr_manage.php:249
1108
+ msgid ""
1109
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1110
+ msgstr ""
1111
+ "Anda dapat <a href='[manager_link]'>mengatur cara berlangganan</a> pada "
1112
+ "artikel ini."
1113
 
1114
+ #: utils/stcr_manage.php:255
1115
+ msgid ""
1116
+ "To manage your subscriptions, please enter your email address here below. We "
1117
+ "will send you a message containing the link to access your personal "
1118
+ "management page."
1119
+ msgstr ""
1120
+ "Untuk mengatur cara berlangganan, masukkan alamat email Anda di bawah ini. "
1121
+ "Kami akan mengirimkan sebuah pesan yang berisi tautan untuk mengakses "
1122
+ "Halaman Pengaturan Pribadi milik Anda."
1123
 
1124
+ #: utils/stcr_manage.php:256
1125
+ msgid ""
1126
+ "Thank you for using our subscription service. Your request has been "
1127
+ "completed, and you should receive an email with the management link in a few "
1128
+ "minutes."
1129
+ msgstr ""
1130
+ "Terima kasih telah memanfaatkan layanan berlangganan kami. Permintaan Anda "
1131
+ "telah diproses, dan Anda akan menerima sebuah email yang berisi tautan ke "
1132
+ "pengaturan dalam beberapa menit ke depan."
1133
+
1134
+ #: utils/stcr_manage.php:257
1135
+ msgid ""
1136
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1137
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1138
+ "form here below and you're all set."
1139
  msgstr ""
1140
+ "Anda dapat menyimak diskusi pada <strong>[post_title]</strong> tanpa harus "
1141
+ "memberikan komentar terlebih dulu. Keren, kan? Masukkan saja alamat email "
1142
+ "Anda ke isian berikut."
1143
 
1144
+ #: utils/stcr_manage.php:258
1145
+ msgid ""
1146
+ "Thank you for using our subscription service. Your request has been "
1147
+ "completed. You will receive a notification email every time a new comment to "
1148
+ "this article is approved and posted by the administrator."
1149
  msgstr ""
1150
+ "Terima kasih telah memanfaatkan layanan berlangganan kami. Permintaan Anda "
1151
+ "telah diproses. Anda akan menerima sebuah email notifikasi setiap ada "
1152
+ "komentar baru pada artikel ini."
1153
 
1154
+ #: utils/stcr_manage.php:259
1155
+ msgid ""
1156
+ "Thank you for using our subscription service. In order to confirm your "
1157
+ "request, please check your email for the verification message and follow the "
1158
+ "instructions."
1159
+ msgstr ""
1160
+ "Terima kasih telah memanfaatkan layanan berlangganan kami. Selanjutnya Anda "
1161
+ "perlu melakukan konfirmasi melalui sebuah pesan yang kami kirimkan ke alamat "
1162
+ "email Anda, dan lakukanlah langkah-langkah yang diinstruksikan."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1163
 
1164
+ #: utils/stcr_manage.php:260
1165
+ msgid ""
1166
+ "In order to cancel or suspend one or more notifications, select the "
1167
+ "corresponding checkbox(es) and click on the button at the end of the list."
1168
+ msgstr ""
1169
+ "Untuk membatalkan atau menangguhkan satu atau lebih notifikasi, pilihlah "
1170
+ "pada checkbox yang dimaksud dan klik pada tombol di akhir daftar."
1171
 
1172
+ #: utils/stcr_manage.php:261
1173
+ msgid ""
1174
+ "In order to cancel or suspend one or more notifications, select the "
1175
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1176
+ "You are currently subscribed to:"
1177
+ msgstr ""
1178
+ "Untuk membatalkan atau menangguhkan satu atau lebih notifikasi, pilihlah "
1179
+ "pada checkbox yang dimaksud dan klik pada tombol di akhir daftar. Saat ini "
1180
+ "Anda berlangganan:"
1181
 
1182
+ #: utils/stcr_manage.php:265
1183
+ msgid "There is a new comment to [post_title]"
1184
+ msgstr "Hey, ada komentar baru pada artikel [post_title]"
1185
 
1186
+ #: utils/stcr_manage.php:266
1187
+ msgid ""
1188
+ "There is a new comment to [post_title].\n"
1189
+ "Comment Link: [comment_permalink]\n"
1190
+ "Author: [comment_author]\n"
1191
+ "Comment:\n"
1192
+ "[comment_content]\n"
1193
+ "Permalink: [post_permalink]\n"
1194
+ "Manage your subscriptions: [manager_link]"
1195
+ msgstr ""
1196
+ "Ada komentar baru pada artikel [post_title].\n"
1197
+ "Tautan komentar: [comment_permalink]\n"
1198
+ "Oleh: [comment_author]\n"
1199
+ "Komentar:\n"
1200
+ "[comment_content]\n"
1201
+ "Tautan: [post_permalink]\n"
1202
+ "Atur cara berlangganan Anda: [manager_link]"
1203
 
1204
+ #: utils/stcr_manage.php:267
1205
+ msgid "Please confirm your subscription to [post_title]"
1206
+ msgstr "Mohon lakukan konfirmasi berlangganan Anda pada artikel [post_title]"
1207
 
1208
+ #: utils/stcr_manage.php:268
1209
+ msgid ""
1210
+ "You have requested to be notified every time a new comment is added to:\n"
1211
+ "[post_permalink]\n"
1212
+ "\n"
1213
+ "Please confirm your request by clicking on this link:\n"
1214
+ "[confirm_link]"
1215
+ msgstr ""
1216
+ "Anda telah meminta untuk diberitahu setiap ada komentar baru pada:\n"
1217
+ "[post_permalink]\n"
1218
+ "\n"
1219
+ "Lakukan konfirmasi permintaan Anda dengan melakukan klik pada tautan ini:\n"
1220
+ "[confirm_link]"
1221
 
1222
+ #: utils/stcr_manage.php:269
1223
+ msgid "Manage your subscriptions on [blog_name]"
1224
+ msgstr "Aturlah cara berlangganan Anda pada [blog_name]"
 
1225
 
1226
+ #: utils/stcr_manage.php:270
1227
+ msgid ""
1228
+ "You have requested to manage your subscriptions to the articles on "
1229
+ "[blog_name]. Please check the Subscriptions management link in your email"
1230
  msgstr ""
1231
 
1232
+ #: utils/stcr_manage.php:271
1233
+ msgid ""
1234
+ "You have requested to manage your subscriptions to the articles on "
1235
+ "[blog_name]. Follow this link to access your personal page:\n"
1236
+ "[manager_link]"
1237
+ msgstr ""
1238
+ "Anda telah meminta untuk mengatur cara berlanggan Anda pada artikel di "
1239
+ "[blog_name]. Ikuti tautan berikut untuk mengakses halaman personal Anda:\n"
1240
+ "[manager_link]"
1241
 
1242
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1243
+ msgid "StCR System"
1244
+ msgstr ""
1245
 
1246
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1247
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1248
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1249
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1250
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1251
+ msgid "You do not have sufficient permissions to access this page."
1252
  msgstr ""
1253
 
1254
+ #: utils/stcr_manage.php:755
1255
+ msgid "Subscriptions"
1256
+ msgstr "Langganan"
1257
 
1258
+ #: utils/stcr_manage.php:811
1259
+ msgid ""
1260
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1261
  msgstr ""
1262
+ "Perlu bantuan tentang cara penggunaan Subscribe to Comments Reloaded? "
1263
+ "Kunjungi situs resmi"
1264
 
1265
+ #: utils/stcr_manage.php:811
1266
+ msgid "support forum"
1267
+ msgstr "forum bantuan"
1268
 
1269
+ #: utils/stcr_manage.php:812
1270
+ msgid "Feeling generous?"
1271
+ msgstr "Merasa dermawan?"
1272
 
1273
+ #: utils/stcr_manage.php:812
1274
+ msgid "Donate a few bucks!"
1275
+ msgstr "Beri sedikit sumbangan"
1276
 
1277
+ #: utils/stcr_upgrade.php:55
1278
+ msgid "Important Notice"
1279
+ msgstr ""
1280
 
1281
+ #: utils/stcr_upgrade.php:103
1282
+ msgid ""
1283
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1284
+ "database has been sanitized to prevent the raw html messages. <a class="
1285
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1286
+ "src=\""
1287
  msgstr ""
1288
 
1289
+ #: utils/stcr_upgrade.php:158
1290
  msgid ""
1291
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1292
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1293
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1294
  msgstr ""
1295
 
1296
+ #: utils/stcr_upgrade.php:158
1297
+ msgid ""
1298
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1299
+ "Comments to prevent confusion between the two plugins."
1300
+ msgstr ""
1301
 
1302
+ #: utils/stcr_upgrade.php:159
1303
  msgid ""
1304
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1305
+ "that you want to import, you'll need to import that data manually, as only "
1306
+ "one import routine will ever run to prevent data loss."
1307
  msgstr ""
 
 
1308
 
1309
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1310
+ #: utils/stcr_upgrade.php:381
1311
  msgid ""
1312
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1313
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1314
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1315
+ "\"stcr-loading-animation\" src=\""
1316
  msgstr ""
 
 
1317
 
1318
+ #: utils/stcr_upgrade.php:231
1319
  msgid ""
1320
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1321
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1322
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1323
  msgstr ""
1324
 
1325
+ #: utils/stcr_upgrade.php:231
1326
  msgid ""
1327
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1328
+ "Notification to prevent confusion between the two plugins."
1329
+ msgstr ""
1330
+
1331
+ #: utils/stcr_upgrade.php:378
1332
+ msgid ""
1333
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1334
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1335
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1336
+ "Reloaded</strong>."
1337
  msgstr ""
 
 
1338
 
1339
+ #: utils/stcr_upgrade.php:378
1340
+ msgid ""
1341
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1342
+ "Subscriptions to prevent confusion between the two plugins."
1343
  msgstr ""
1344
 
1345
+ #: utils/stcr_upgrade.php:379
1346
  msgid ""
1347
+ "If you have subscription data from another plugin (such as Subscribe to "
1348
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1349
+ "you'll need to import that data manually, as only one import routine will "
1350
+ "ever run to prevent data loss."
1351
  msgstr ""
1352
 
1353
+ #: utils/stcr_upgrade.php:380
 
 
 
 
1354
  msgid ""
1355
+ "<strong>Note:</strong> If you were previously using the "
1356
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1357
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1358
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1359
+ "respectively."
1360
  msgstr ""
 
 
 
 
 
 
1361
 
1362
+ #: utils/stcr_upgrade.php:394
1363
+ msgid ""
1364
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
1365
  msgstr ""
 
 
 
 
 
 
1366
 
1367
+ #: utils/stcr_upgrade.php:395
1368
+ msgid ""
1369
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1370
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1371
  msgstr ""
1372
 
1373
+ #: utils/stcr_upgrade.php:396
1374
+ msgid ""
1375
+ "Please consider to make a donation to support the plugin, you can donate via "
1376
+ "<a href=\"\n"
1377
+ "https://www.paypal.com/cgi-bin/webscr?"
1378
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1379
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1380
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1381
  msgstr ""
1382
 
1383
+ #: utils/stcr_upgrade.php:398
1384
+ msgid ""
1385
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1386
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1387
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1388
+ "a><img class=\"stcr-loading-animation\" src=\""
1389
  msgstr ""
1390
 
1391
+ #: utils/stcr_upgrade.php:409
1392
+ msgid ""
1393
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1394
+ "160106."
1395
  msgstr ""
1396
 
1397
+ #: utils/stcr_upgrade.php:410
1398
  msgid ""
1399
+ "This version includes many changes and fixes to improve your experience with "
1400
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1401
+ "email templates, Subscription Checkbox position, and more!"
1402
  msgstr ""
1403
 
1404
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1405
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1406
+ msgid ""
1407
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1408
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1409
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1410
+ "class=\"stcr-loading-animation\" src=\""
1411
  msgstr ""
1412
 
1413
+ #: utils/stcr_upgrade.php:424
1414
  msgid ""
1415
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1416
+ "160115."
 
 
1417
  msgstr ""
1418
 
1419
+ #: utils/stcr_upgrade.php:425
1420
+ msgid ""
1421
+ "This version includes fixes to broken links while managing your subscriptions"
 
 
 
 
 
 
 
 
 
 
1422
  msgstr ""
1423
 
1424
+ #: utils/stcr_upgrade.php:439
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1425
  msgid ""
1426
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1427
+ "160831"
 
1428
  msgstr ""
 
 
 
1429
 
1430
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1431
+ msgid "This version includes fixes to many bugs and also new features, "
1432
  msgstr ""
 
 
1433
 
1434
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1435
  msgid ""
1436
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1437
+ "address. This will help the subscribers to use the Reply option in their "
1438
+ "email agents."
 
1439
  msgstr ""
 
 
 
 
1440
 
1441
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1442
  msgid ""
1443
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1444
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1445
  msgstr ""
 
 
1446
 
1447
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1448
  msgid ""
1449
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1450
+ "without loosing your subscriptions. You can use this option also for reset "
1451
+ "all the settings, see the FAQ."
1452
  msgstr ""
 
 
1453
 
1454
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1455
+ msgid ""
1456
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1457
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1458
+ "Post Type."
1459
  msgstr ""
 
1460
 
1461
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1462
  msgid ""
1463
+ "<strong>New Feature</strong> A new field was added under the notification "
1464
+ "options to and the management link only by email and not to display it on "
1465
+ "the request link page."
1466
  msgstr ""
 
 
1467
 
1468
+ #: utils/stcr_upgrade.php:461
1469
  msgid ""
1470
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1471
+ "160902"
1472
  msgstr ""
 
 
1473
 
1474
+ #: utils/stcr_upgrade.php:464
1475
  msgid ""
1476
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1477
+ "previous 160831 version."
1478
  msgstr ""
 
 
 
1479
 
1480
+ #: utils/stcr_utils.php:195
1481
+ msgid "StCR Notification"
1482
+ msgstr "Notifikasi"
1483
+
1484
+ #: wp_subscribe_reloaded.php:114
1485
+ msgid "Settings"
1486
  msgstr ""
 
 
 
1487
 
1488
+ #: wp_subscribe_reloaded.php:1086
1489
+ msgid "Don't subscribe"
1490
+ msgstr "Jangan berlangganan"
1491
 
1492
+ #: wp_subscribe_reloaded.php:1087
1493
+ msgid "All"
1494
+ msgstr "Semua"
1495
 
1496
  #~ msgid "StCR Subscription Box Position"
1497
  #~ msgstr "Langganan baru untuk"
langs/subscribe-reloaded-it_IT.mo CHANGED
Binary file
langs/subscribe-reloaded-it_IT.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:22-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:22-0700\n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: due chiacchiere <info@duechiacchiere.it>\n"
9
  "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
@@ -13,80 +13,141 @@ msgstr ""
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
- #: wp_subscribe_reloaded.php:114
20
- msgid "Settings"
21
- msgstr ""
 
22
 
23
- #: wp_subscribe_reloaded.php:1060
24
- msgid "Don't subscribe"
25
- msgstr "Non iscrivermi"
26
 
27
- #: wp_subscribe_reloaded.php:1061
28
- msgid "All"
29
- msgstr "Tutti"
30
 
31
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
32
- #: templates/author.php:75
33
- msgid "Replies to my comments"
34
- msgstr "Risposte ai miei commenti"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
- #: templates/request-management-link.php:71 templates/key_expired.php:71
37
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
38
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
 
 
 
 
 
39
  msgid "Email"
40
  msgstr "Email"
41
 
42
- #: templates/request-management-link.php:73 templates/key_expired.php:73
43
- #: templates/subscribe.php:92
44
- msgid "Send"
45
- msgstr "Invia"
 
46
 
47
- #: templates/key_expired.php:8
48
- msgid ""
49
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
50
- "enter your email below and a new link will be send."
51
- msgstr ""
52
 
53
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
54
- #: templates/author.php:80
55
- msgid "No subscriptions match your search criteria."
56
- msgstr "Nessuna iscrizione corrispondente ai parametri di ricerca."
 
57
 
58
- #: templates/subscribe.php:42 templates/subscribe.php:43
59
- msgid "New subscription to"
60
- msgstr "Nuova iscrizione per"
61
 
62
- #: templates/subscribe.php:43
63
- msgid "User:"
64
- msgstr "Utente:"
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- #: templates/user.php:23 templates/author.php:23
67
- #: options/panel1-business-logic.php:70
68
  msgid "Subscriptions deleted:"
69
  msgstr "Iscrizioni rimosse:"
70
 
71
- #: templates/user.php:27 templates/author.php:27
72
- #: options/panel1-business-logic.php:74
73
  msgid "Subscriptions suspended:"
74
  msgstr "Iscrizioni sospese:"
75
 
76
- #: templates/user.php:31 templates/author.php:31
77
- #: options/panel1-business-logic.php:78
78
  msgid "Subscriptions activated:"
79
  msgstr "Iscrizioni attivate:"
80
 
81
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
82
- #: templates/author.php:39 options/panel1-business-logic.php:82
83
- #: options/panel1-business-logic.php:86
84
  msgid "Subscriptions updated:"
85
  msgstr "Iscrizioni aggiornate:"
86
 
87
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
88
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
89
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
90
  msgid ""
91
  "Please remember: this operation cannot be undone. Are you sure you want to "
92
  "proceed?"
@@ -94,486 +155,197 @@ msgstr ""
94
  "Ricorda: questa operazione non pu&ograve; essere annullata. Confermi di "
95
  "voler procedere?"
96
 
97
- #: templates/user.php:58 templates/author.php:58
98
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
99
- msgstr "Legenda: Y = tutti i commenti, R = solo risposte, C = sospesa"
100
-
101
- #: templates/user.php:63
102
- msgid "F j, Y"
103
- msgstr ""
104
-
105
- #: templates/user.php:67 templates/author.php:69
106
- msgid "Select all"
107
- msgstr "Seleziona tutti"
108
-
109
- #: templates/user.php:68 templates/author.php:70
110
- msgid "Invert selection"
111
- msgstr "Inverti la selezione"
112
-
113
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
114
- msgid "Action:"
115
- msgstr "Azione:"
116
-
117
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
118
- #: options/panel1.php:212
119
- msgid "Delete"
120
- msgstr "Rimuovi"
121
 
122
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
123
- msgid "Suspend"
124
- msgstr "Sospendi"
125
 
126
- #: templates/user.php:72 templates/author.php:74
127
- msgid "All comments"
128
- msgstr ""
129
 
130
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
131
- msgid "Activate"
132
- msgstr "Attiva"
133
 
134
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
135
- msgid "Update subscriptions"
136
  msgstr "Aggiorna iscrizioni"
137
 
138
- #: templates/author.php:57
139
- msgid "Title"
140
- msgstr "Titolo"
141
 
142
- #: utils/stcr_upgrade.php:55
143
- msgid "Important Notice"
144
- msgstr ""
145
 
146
- #: utils/stcr_upgrade.php:103
147
- msgid ""
148
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
149
- "database has been sanitized to prevent the raw html messages. <a class="
150
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
151
- "src=\""
152
  msgstr ""
153
 
154
- #: utils/stcr_upgrade.php:158
155
  msgid ""
156
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
157
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
158
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
159
  msgstr ""
160
 
161
- #: utils/stcr_upgrade.php:158
162
- msgid ""
163
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
164
- "Comments to prevent confusion between the two plugins."
165
- msgstr ""
166
 
167
- #: utils/stcr_upgrade.php:159
168
- msgid ""
169
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
170
- "that you want to import, you'll need to import that data manually, as only "
171
- "one import routine will ever run to prevent data loss."
172
- msgstr ""
173
 
174
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
175
- #: utils/stcr_upgrade.php:381
176
- msgid ""
177
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
178
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
179
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
180
- "\"stcr-loading-animation\" src=\""
181
- msgstr ""
182
 
183
- #: utils/stcr_upgrade.php:231
 
184
  msgid ""
185
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
186
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
187
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
188
  msgstr ""
 
 
189
 
190
- #: utils/stcr_upgrade.php:231
191
- msgid ""
192
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
193
- "Notification to prevent confusion between the two plugins."
194
- msgstr ""
195
 
196
- #: utils/stcr_upgrade.php:378
197
- msgid ""
198
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
199
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
200
- "were detected and automatically imported into <strong>Subscribe to Comments "
201
- "Reloaded</strong>."
202
- msgstr ""
203
 
204
- #: utils/stcr_upgrade.php:378
205
- msgid ""
206
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
207
- "Subscriptions to prevent confusion between the two plugins."
208
- msgstr ""
209
 
210
- #: utils/stcr_upgrade.php:379
211
- msgid ""
212
- "If you have subscription data from another plugin (such as Subscribe to "
213
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
214
- "you'll need to import that data manually, as only one import routine will "
215
- "ever run to prevent data loss."
216
- msgstr ""
217
 
218
- #: utils/stcr_upgrade.php:380
219
- msgid ""
220
- "<strong>Note:</strong> If you were previously using the "
221
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
222
- "subscribe-url]</code> shortcode, you'll need to replace those with "
223
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
224
- "respectively."
225
- msgstr ""
226
 
227
- #: utils/stcr_upgrade.php:394
228
- msgid ""
229
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
230
- msgstr ""
231
 
232
- #: utils/stcr_upgrade.php:395
233
- msgid ""
234
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
235
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
236
- msgstr ""
237
 
238
- #: utils/stcr_upgrade.php:396
239
- msgid ""
240
- "If you want to donate you can do it via <a href=\"\n"
241
- "https://www.paypal.com/cgi-bin/webscr?"
242
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
243
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
244
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
245
- msgstr ""
246
-
247
- #: utils/stcr_upgrade.php:398
248
- msgid ""
249
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
250
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
251
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
252
- "a><img class=\"stcr-loading-animation\" src=\""
253
- msgstr ""
254
-
255
- #: utils/stcr_upgrade.php:409
256
- msgid ""
257
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
258
- "160106."
259
- msgstr ""
260
-
261
- #: utils/stcr_upgrade.php:410
262
- msgid ""
263
- "This version includes many changes and fixes to improve your experience with "
264
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
265
- "email templates, Subscription Checkbox position, and more!"
266
- msgstr ""
267
-
268
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
269
- #: utils/stcr_upgrade.php:448
270
- msgid ""
271
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
272
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
273
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
274
- "class=\"stcr-loading-animation\" src=\""
275
- msgstr ""
276
-
277
- #: utils/stcr_upgrade.php:424
278
- msgid ""
279
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
280
- "160115."
281
- msgstr ""
282
-
283
- #: utils/stcr_upgrade.php:425
284
- msgid ""
285
- "This version includes fixes to broken links while managing your subscriptions"
286
- msgstr ""
287
-
288
- #: utils/stcr_upgrade.php:439
289
- msgid ""
290
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
291
- "160831"
292
- msgstr ""
293
-
294
- #: utils/stcr_upgrade.php:440
295
- msgid "This version includes fixes to many bugs and also new features, "
296
- msgstr ""
297
-
298
- #: utils/stcr_upgrade.php:442
299
- msgid ""
300
- "<strong>New Feature</strong> Add new option to set the Reply To email "
301
- "address. This will help the subscribers to use the Reply option in their "
302
- "email agents."
303
- msgstr ""
304
-
305
- #: utils/stcr_upgrade.php:443
306
- msgid ""
307
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
308
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
309
- msgstr ""
310
-
311
- #: utils/stcr_upgrade.php:444
312
- msgid ""
313
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
314
- "without loosing your subscriptions. You can use this option also for reset "
315
- "all the settings, see the FAQ."
316
- msgstr ""
317
-
318
- #: utils/stcr_upgrade.php:445
319
- msgid ""
320
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
321
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
322
- "Post Type."
323
- msgstr ""
324
-
325
- #: utils/stcr_upgrade.php:446
326
- msgid ""
327
- "<strong>New Feature</strong> A new field was added under the notification "
328
- "options to and the management link only by email and not to display it on "
329
- "the request link page."
330
- msgstr ""
331
-
332
- #: utils/stcr_manage.php:246
333
- msgid ""
334
- "Notify me of followup comments via e-mail. You can also <a "
335
- "href='[subscribe_link]'>subscribe</a> without commenting."
336
- msgstr ""
337
- "Ricevi un avviso se ci sono nuovi commenti. Oppure <a "
338
- "href='[subscribe_link]'>iscriviti</a> senza commentare."
339
-
340
- #: utils/stcr_manage.php:247
341
- msgid ""
342
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
343
- "subscriptions."
344
- msgstr ""
345
- "Sei gi&agrave; iscritto a quest'articolo. Se vuoi, puoi <a "
346
- "href='[manager_link]'>gestire</a> il tuo profilo."
347
-
348
- #: utils/stcr_manage.php:248
349
- msgid ""
350
- "Your subscription to this post needs to be confirmed. <a "
351
- "href='[manager_link]'>Manage your subscriptions</a>."
352
- msgstr ""
353
- "La tua iscrizione &egrave; in attesa di conferma. Se vuoi, puoi <a "
354
- "href='[manager_link]'>gestire</a> il tuo profilo."
355
-
356
- #: utils/stcr_manage.php:249
357
- msgid ""
358
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
359
- msgstr ""
360
- "Gestisci gli utenti <a href='[manager_link]'>iscritti</a> alla discussione."
361
-
362
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
363
- #: utils/stcr_manage.php:383 options/index.php:59
364
- msgid "Manage subscriptions"
365
- msgstr "Gestisci iscrizioni"
366
 
367
- #: utils/stcr_manage.php:255
368
- msgid ""
369
- "To manage your subscriptions, please enter your email address here below. We "
370
- "will send you a message containing the link to access your personal "
371
- "management page."
372
- msgstr ""
373
- "Al fine di gestire le tue iscrizioni, inserisci il tuo indirizzo email nel "
374
- "campo qui di seguito. Ti sar&agrave; inviato un messaggio contenente il link "
375
- "per accedere alla tua area riservata."
376
 
377
- #: utils/stcr_manage.php:256
378
- msgid ""
379
- "Thank you for using our subscription service. Your request has been "
380
- "completed, and you should receive an email with the management link in a few "
381
- "minutes."
382
- msgstr ""
383
- "Grazie per aver usato il servizio di notifica di questo blog. La tua "
384
- "richiesta &egrave; stata completata, e dovresti ricevere una mail fra pochi "
385
- "minuti. Al suo interno troverai il link personalizzato per accedere alla tua "
386
- "area di gestione."
387
 
388
- #: utils/stcr_manage.php:257
389
- msgid ""
390
- "You can follow the discussion on <strong>[post_title]</strong> without "
391
- "having to leave a comment. Cool, huh? Just enter your email address in the "
392
- "form here below and you're all set."
393
- msgstr ""
394
- "Puoi seguire la discussione su <strong>[post_title]</strong> senza dover "
395
- "lasciare un commento. Bello, no? Ti basta inserire il tuo indirizzo email "
396
- "nel campo qui sotto e premere invio, al resto pensa il sistema."
397
 
398
- #: utils/stcr_manage.php:258
399
- msgid ""
400
- "Thank you for using our subscription service. Your request has been "
401
- "completed. You will receive a notification email every time a new comment to "
402
- "this article is approved and posted by the administrator."
403
- msgstr ""
404
- "Grazie per aver usato il servizio di notifica di questo blog. La tua "
405
- "richiesta &egrave; stata completata. Riceverai una notifica ogni volta che "
406
- "un nuovo commento a quell'articolo viene approvato e pubblicato "
407
- "dall'amministratore del sito."
408
 
409
- #: utils/stcr_manage.php:259
410
- msgid ""
411
- "Thank you for using our subscription service. In order to confirm your "
412
- "request, please check your email for the verification message and follow the "
413
- "instructions."
414
- msgstr ""
415
- "Grazie per aver usato il servizio di notifica di questo blog. Al fine di "
416
- "completare la tua richiesta, ti &egrave; stata inviata una email di "
417
- "conferma. Segui le semplici istruzioni per verificare la tua identit&agrave;."
418
 
419
- #: utils/stcr_manage.php:260
420
- msgid ""
421
- "In order to cancel or suspend one or more notifications, select the "
422
- "corresponding checkbox(es) and click on the button at the end of the list."
423
- msgstr ""
424
- "Se desideri disdire o sospendere le tue notifiche, spunta la casella "
425
- "corrispondente all'articolo e clicca sul pulsante in fondo alla lista."
426
 
427
- #: utils/stcr_manage.php:261
428
- msgid ""
429
- "In order to cancel or suspend one or more notifications, select the "
430
- "corresponding checkbox(es) and click on the button at the end of the list. "
431
- "You are currently subscribed to:"
432
- msgstr ""
433
- "Se desideri disdire o sospendere le tue notifiche, spunta la casella "
434
- "corrispondente all'articolo e clicca sul pulsante in fondo alla lista. Al "
435
- "momento, risulti iscritto a:"
436
 
437
- #: utils/stcr_manage.php:265
438
- msgid "There is a new comment to [post_title]"
439
- msgstr "Nuovo commento per [post_title]"
440
 
441
- #: utils/stcr_manage.php:266
442
- msgid ""
443
- "There is a new comment to [post_title].\n"
444
- "Comment Link: [comment_permalink]\n"
445
- "Author: [comment_author]\n"
446
- "Comment:\n"
447
- "[comment_content]\n"
448
- "Permalink: [post_permalink]\n"
449
- "Manage your subscriptions: [manager_link]"
450
- msgstr ""
451
- "L'utente [comment_author] ha lasciato un nuovo commento a '[post_title]':\n"
452
- "[comment_permalink]\n"
453
- "\n"
454
- "Commento:\n"
455
- "[comment_content]\n"
456
- "\n"
457
- "Permalink: [post_permalink]\n"
458
- "Gestisci le tue iscrizioni: [manager_link]"
459
 
460
- #: utils/stcr_manage.php:267
461
- msgid "Please confirm your subscription to [post_title]"
462
- msgstr "Conferma la tua iscrizione a [post_title]"
463
 
464
- #: utils/stcr_manage.php:268
465
- msgid ""
466
- "You have requested to be notified every time a new comment is added to:\n"
467
- "[post_permalink]\n"
468
- "\n"
469
- "Please confirm your request by clicking on this link:\n"
470
- "[confirm_link]"
471
  msgstr ""
472
- "Abbiamo ricevuto una richiesta di iscrizione al nostro servizio "
473
- "automatizzato di notifiche, per l'articolo:\n"
474
- "[post_permalink]\n"
475
- "\n"
476
- "Per confermare, clicca sul collegamento qui di seguito:\n"
477
- "[confirm_link]\n"
478
- "\n"
479
- "Se credi di aver ricevuto questo messaggio per errore, ti preghiamo di "
480
- "rispondere all'email per contattare l'amministratore."
481
 
482
- #: utils/stcr_manage.php:269
483
- msgid "Manage your subscriptions on [blog_name]"
484
- msgstr "Gestisci le tue iscrizioni su [blog_name]"
485
-
486
- #: utils/stcr_manage.php:270
487
- msgid ""
488
- "You have requested to manage your subscriptions to the articles on "
489
- "[blog_name]. Please check the Subscriptions management link in your email"
490
  msgstr ""
491
 
492
- #: utils/stcr_manage.php:271
493
- msgid ""
494
- "You have requested to manage your subscriptions to the articles on "
495
- "[blog_name]. Follow this link to access your personal page:\n"
496
- "[manager_link]"
497
- msgstr ""
498
- "Hai richiesto di poter gestire le tue iscrizioni agli articoli su "
499
- "[blog_name]. Clicca sul link qui di seguito per accedere alla tua area "
500
- "riservata:\n"
501
- "[manager_link]"
502
 
503
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
504
- msgid "Comment Form"
505
- msgstr "Modulo per inviare commenti"
 
506
 
507
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
508
- msgid "Management Page"
509
- msgstr "Pagina di gestione"
510
 
511
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
512
- msgid "Notifications"
513
- msgstr "Notifiche"
514
 
515
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
516
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
517
- msgid "Options"
518
- msgstr "Opzioni"
519
 
520
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
521
- msgid "You can help"
522
- msgstr "Aiuto"
523
 
524
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
525
- msgid "Support"
526
- msgstr "Supporto"
527
 
528
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
529
- msgid "Donate"
530
- msgstr ""
531
 
532
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
533
- msgid "StCR System"
534
- msgstr ""
535
 
536
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
537
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
538
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
539
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
540
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
541
- msgid "You do not have sufficient permissions to access this page."
542
- msgstr ""
543
 
544
- #: utils/stcr_manage.php:755
545
- msgid "Subscriptions"
546
- msgstr "Iscrizione"
547
 
548
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
549
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
550
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
551
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
552
- #: options/panel5.php:161
553
- msgid "No"
554
- msgstr "No"
555
 
556
- #: utils/stcr_manage.php:811
557
- msgid ""
558
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
559
  msgstr ""
560
- "Serve aiuto su come usare al meglio Subscribe to Comments Reloaded? Visita il"
561
-
562
- #: utils/stcr_manage.php:811
563
- msgid "support forum"
564
- msgstr "forum di supporto"
565
-
566
- #: utils/stcr_manage.php:812
567
- msgid "Feeling generous?"
568
- msgstr "Ti senti generoso?"
569
-
570
- #: utils/stcr_manage.php:812
571
- msgid "Donate a few bucks!"
572
- msgstr "Dona qualche euro!"
573
-
574
- #: utils/stcr_utils.php:195
575
- msgid "StCR Notification"
576
- msgstr "Notifiche"
577
 
578
  #: options/panel2.php:12 options/panel2.php:63
579
  msgid "Enable default checkbox"
@@ -615,13 +387,13 @@ msgstr "Notifiche in attesa"
615
  msgid "Author label"
616
  msgstr "Descrizione per l'autore"
617
 
618
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
619
- #: options/panel5.php:60 options/panel3.php:70
620
  msgid "Your settings have been successfully updated."
621
  msgstr "La configurazione &egrave; stata aggiornata con successo."
622
 
623
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
624
- #: options/panel5.php:62 options/panel3.php:72
625
  msgid "There was an error updating the following fields:"
626
  msgstr ""
627
  "Si &egrave; verificato un errore nell'aggiornamento dei seguenti campi:"
@@ -633,6 +405,14 @@ msgstr ""
633
  msgid "Yes"
634
  msgstr "Si"
635
 
 
 
 
 
 
 
 
 
636
  #: options/panel2.php:68
637
  msgid ""
638
  "Disable this option if you want to move the subscription checkbox to a "
@@ -674,85 +454,219 @@ msgstr ""
674
  msgid "Advanced default"
675
  msgstr "Spuntato per default"
676
 
677
- #: options/panel2.php:119
678
- msgid "None"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
679
  msgstr ""
 
680
 
681
- #: options/panel2.php:124
682
  msgid ""
683
- "The default subscription type that should be selected when Advanced "
684
- "subscriptions are enable."
 
 
685
  msgstr ""
 
 
 
 
686
 
687
- #: options/panel2.php:135
688
- msgid "Custom inline CSS to add to the checkbox."
 
 
689
  msgstr ""
690
- "Specifica il codice CSS da aggiungere direttamente in linea al checkbox."
 
691
 
692
- #: options/panel2.php:152
693
  msgid ""
694
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
695
- "[checkbox_field], [checkbox_label]"
696
  msgstr ""
697
- "Codice HTML personalizzato da usare attorno al checkbox. Tag consentiti: "
698
- "[checkbox_field], [checkbox_label]"
699
-
700
- #: options/panel2.php:158
701
- msgid "Messages for your visitors"
702
- msgstr "Messaggi per i visitatori"
703
 
704
- #: options/panel2.php:162
705
- msgid "Default label"
706
- msgstr "Descrizione del checkbox"
707
 
708
- #: options/panel2.php:175
709
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
710
  msgstr ""
711
- "Testo da mostrare accanto al checkbox. Tag consentito: [subscribe_link]"
712
 
713
- #: options/panel2.php:192
714
  msgid ""
715
- "Label shown to those who are already subscribed to a post. Allowed tag: "
716
- "[manager_link]"
717
  msgstr ""
718
- "Testo da mostrare agli utenti gi&agrave; iscritti ad una discussione. Tag "
719
- "consentito: [manager_link]"
720
-
721
- #: options/panel2.php:197
722
- msgid "Pending label"
723
- msgstr "Notifiche in attesa"
724
 
725
- #: options/panel2.php:209
726
  msgid ""
727
- "Label shown to those who are already subscribed, but haven't clicked on the "
728
- "confirmation link yet. Allowed tag: [manager_link]"
729
  msgstr ""
730
- "Testo da mostrare agli utenti gi&agrave; iscritti ad una discussione, ma che "
731
- "non hanno ancora cliccato sul link di conferma. Tag consentito: "
732
- "[manager_link]"
733
 
734
- #: options/panel2.php:225
735
  msgid ""
736
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
737
- msgstr ""
738
- "Testo da mostrare ad autori ed amministratori. Tag consentito: [manager_link]"
739
-
740
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
741
- #: options/panel3.php:253
742
- msgid "Save Changes"
743
- msgstr "Salva le opzioni"
744
-
745
- #: options/panel9.php:11
746
- msgid "Support Subscribe to Comments Reloaded"
747
  msgstr ""
748
- "Serve aiuto su come usare al meglio Subscribe to Comments Reloaded? Visita il"
 
 
749
 
750
- #: options/panel9.php:12
751
  msgid ""
752
- "Every contribution that you make is high valuable, so if you consider this "
753
- "plugin a helpful tool we will use your donation to invest on support and "
754
- "developing time."
755
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
756
 
757
  #: options/panel4.php:15 options/panel4.php:94
758
  msgid "Sender name"
@@ -813,10 +727,6 @@ msgid ""
813
  "will be the same as the Sender email address."
814
  msgstr ""
815
 
816
- #: options/panel4.php:135 options/panel3.php:127
817
- msgid "Messages"
818
- msgstr "Messaggi"
819
-
820
  #: options/panel4.php:147
821
  msgid "Subject of the notification email. Allowed tag: [post_title]"
822
  msgstr "Oggetto dell'email di notifica. Tag consentito: [post_title]"
@@ -854,32 +764,172 @@ msgid ""
854
  "Subject of the mail sent to those who request to access their management "
855
  "page. Allowed tag: [blog_name]"
856
  msgstr ""
857
- "Oggetto della mail inviata a coloro che richiedono di poter gestire le "
858
- "proprie iscrizioni. Tag consentito: [blog_name]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
859
 
860
- #: options/panel4.php:223
861
- msgid "Management Page message"
862
  msgstr ""
 
 
863
 
864
- #: options/panel4.php:237
865
- msgid "Content of the management Page message. Allowed tags: [blog_name]."
866
  msgstr ""
867
 
868
- #: options/panel4.php:257
869
- msgid ""
870
- "Content of the management email message. Allowed tags: [blog_name], "
871
- "[manager_link]."
872
  msgstr ""
873
 
874
- #: options/panel4.php:263
875
- msgid "One Click Unsubscribe"
876
- msgstr "Consenti iscrizione per admin"
877
 
878
- #: options/panel4.php:277
 
 
 
 
879
  msgid ""
880
- "Content of the One Click confirmation. Allowed tags: [post_title], "
881
- "[blog_name]"
882
- msgstr "Oggetto dell'email di notifica. Tag consentito: [post_title]"
883
 
884
  #: options/panel7.php:8 options/panel8.php:8
885
  msgid "Support the developers"
@@ -950,537 +1000,504 @@ msgstr ""
950
  "quanto ti piace. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
951
  "comments-reloaded/\">Votalo</a> sulla pagina apposita di Wordpress."
952
 
953
- #: options/panel1.php:20
954
- msgid "Mass Update Subscriptions"
955
- msgstr "Aggiorna iscrizioni"
956
-
957
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
958
- msgid "From"
959
- msgstr "Da"
960
-
961
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
962
- msgid "email address"
963
- msgstr "Indirizzo email mittente"
964
-
965
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
966
- msgid "To"
967
- msgstr "In"
968
-
969
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
970
- msgid "optional - new email address"
971
- msgstr "Aggiorna indirizzo email"
972
-
973
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
974
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
975
- #: options/panel1-edit-subscription.php:26
976
- msgid "Status"
977
- msgstr "Stato"
978
-
979
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
980
- msgid "Keep unchanged"
981
- msgstr "Non cambiare"
982
-
983
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
984
- #: options/panel1-add-subscription.php:22
985
- #: options/panel1-edit-subscription.php:29
986
- msgid "Active"
987
- msgstr "Attiva"
988
-
989
- #: options/panel1.php:43 options/panel1.php:80
990
- #: options/panel1-add-subscription.php:23
991
- #: options/panel1-edit-subscription.php:30
992
- msgid "Replies only"
993
- msgstr "Solo risposte"
994
-
995
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
996
- msgid "Suspended"
997
- msgstr "Sospesa"
998
 
999
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
1000
- #: options/panel1-edit-subscription.php:33
1001
- msgid "Update"
1002
- msgstr "Aggiorna"
 
 
 
1003
 
1004
- #: options/panel1.php:49
1005
- msgid "More info"
1006
  msgstr ""
 
1007
 
1008
- #: options/panel1.php:55
1009
  msgid ""
1010
- "This option will allow you to change an email address for another one or to "
1011
- "update the same status for all the subscription on a specific email address."
 
1012
  msgstr ""
1013
 
1014
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1015
- msgid "Add New Subscription"
1016
- msgstr "Nuova iscrizione"
1017
-
1018
- #: options/panel1.php:68
1019
- msgid "Post ID"
1020
- msgstr "ID Articolo"
1021
 
1022
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1023
- msgid "Ask user to confirm"
1024
- msgstr "Richiedi conferma"
1025
 
1026
- #: options/panel1.php:83
1027
- msgid "Add"
1028
- msgstr "Aggiungi"
1029
 
1030
- #: options/panel1.php:98
1031
- msgid "Search subscriptions"
1032
- msgstr "Cerca tra le iscrizioni"
1033
 
1034
- #: options/panel1.php:102
1035
- #, php-format
1036
- msgid ""
1037
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1038
- "where the"
1039
  msgstr ""
1040
- "Puoi vedere l'elenco di <a href=\"%s\">tutte le iscrizioni</a> o trovare "
1041
- "quelle in cui"
1042
-
1043
- #: options/panel1.php:106
1044
- msgid "email"
1045
- msgstr "email"
1046
-
1047
- #: options/panel1.php:107
1048
- msgid "post ID"
1049
- msgstr "id articolo"
1050
-
1051
- #: options/panel1.php:108
1052
- msgid "status"
1053
- msgstr "stato"
1054
 
1055
- #: options/panel1.php:111
1056
- msgid "equals"
1057
- msgstr "&egrave; uguale a"
1058
 
1059
- #: options/panel1.php:112
1060
- msgid "contains"
1061
- msgstr "contiene"
 
1062
 
1063
- #: options/panel1.php:113
1064
- msgid "does not contain"
1065
- msgstr "non contiene"
 
 
1066
 
1067
- #: options/panel1.php:114
1068
- msgid "starts with"
1069
- msgstr "inizia per"
 
1070
 
1071
- #: options/panel1.php:115
1072
- msgid "ends with"
1073
- msgstr "finisce con"
1074
 
1075
- #: options/panel1.php:118
1076
- msgid "results per page:"
1077
- msgstr "risultati per pagina:"
1078
 
1079
- #: options/panel1.php:120
1080
- msgid "Search"
1081
- msgstr "Cerca"
1082
 
1083
- #: options/panel1.php:128
1084
- msgid "Reverse the order by Post ID"
1085
- msgstr "Inverti l'ordine per ID dell'articolo"
1086
 
1087
- #: options/panel1.php:129 options/panel1.php:130
1088
- msgid "Reverse the order by Date/Time"
1089
- msgstr "Inverti l'ordine per data e ora"
 
 
 
 
1090
 
1091
- #: options/panel1.php:132
1092
- msgid "Post (ID)"
1093
- msgstr "Articolo (ID)"
 
 
 
 
1094
 
1095
- #: options/panel1.php:135
1096
- msgid "Search query:"
1097
- msgstr "Chiave di ricerca:"
 
 
 
 
1098
 
1099
- #: options/panel1.php:135
1100
- msgid "Rows:"
1101
- msgstr "Righe:"
 
 
1102
 
1103
- #: options/panel1.php:135
1104
- msgid "of"
1105
- msgstr "di"
 
 
 
 
 
 
1106
 
1107
- #: options/panel1.php:142 options/panel1.php:158
1108
- msgid "Date and Time"
1109
- msgstr "Data e ora"
 
 
 
 
 
 
 
1110
 
1111
- #: options/panel1.php:168
1112
- msgid "Replies"
1113
- msgstr "Solo risposte"
 
 
 
 
 
 
1114
 
1115
- #: options/panel1.php:169
1116
- msgid "All Comments"
 
 
 
1117
  msgstr ""
 
 
 
 
1118
 
1119
- #: options/panel1.php:170
1120
- msgid "Unconfirmed"
 
 
 
1121
  msgstr ""
 
 
 
1122
 
1123
- #: options/panel1.php:171
1124
- msgid "Inactive"
1125
- msgstr "Attiva"
1126
-
1127
- #: options/panel1.php:201 options/panel1.php:211
1128
- msgid "Edit"
1129
- msgstr "Modifica"
1130
-
1131
- #: options/panel1.php:203 options/panel1.php:209
1132
- msgid "Subscription"
1133
- msgstr "Iscrizione"
1134
-
1135
- #: options/panel1.php:226
1136
- msgid "Delete forever"
1137
- msgstr "Cancella definitivamente"
1138
-
1139
- #: options/panel1.php:228
1140
- msgid "Activate and set to Y"
1141
- msgstr "Attiva ed imposta ad Y"
1142
-
1143
- #: options/panel1.php:229
1144
- msgid "Activate and set to R"
1145
- msgstr "Attiva ed imposta ad R"
1146
-
1147
- #: options/panel1.php:237
1148
- msgid "Sorry, no subscriptions match your search criteria."
1149
- msgstr "Spiacente, nessuna iscrizione soddisfa i tuoi parametri di ricerca."
1150
 
1151
- #: options/panel1-business-logic.php:23
1152
- msgid "Subscription added."
1153
- msgstr "Iscrizione aggiunta."
 
 
 
 
 
 
1154
 
1155
- #: options/panel1-business-logic.php:39
1156
- msgid "Subscriptions updated."
1157
- msgstr "Iscrizioni aggiornate con successo."
1158
 
1159
- #: options/panel1-business-logic.php:51
1160
- msgid "Subscription deleted."
1161
- msgstr "Iscrizioni rimosse."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1162
 
1163
- #: options/panel1-business-logic.php:110
1164
- msgid "&laquo; Previous"
1165
- msgstr "&laquo; Precedenti"
1166
 
1167
- #: options/panel1-business-logic.php:114
1168
- msgid "Next &raquo;"
1169
- msgstr "Successivi &raquo;"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1170
 
1171
- #: options/panel1-add-subscription.php:13
1172
- #: options/panel1-edit-subscription.php:13
1173
- msgid "Post:"
1174
- msgstr "Articolo:"
1175
 
1176
- #: options/panel5.php:28
1177
- msgid "Safetly Uninstall"
 
 
1178
  msgstr ""
1179
 
1180
- #: options/panel5.php:31 options/panel5.php:84
1181
- msgid "Autopurge requests"
1182
- msgstr "Pulizia DB"
 
 
 
 
 
 
 
1183
 
1184
- #: options/panel5.php:34 options/panel5.php:93
1185
- msgid "Enable double check"
1186
- msgstr "Attiva doppia conferma"
1187
 
1188
- #: options/panel5.php:37 options/panel5.php:101
1189
- msgid "Subscribe authors"
1190
- msgstr "Descrizione per gli iscritti"
 
 
 
 
1191
 
1192
- #: options/panel5.php:40 options/panel5.php:111
1193
- msgid "Enable HTML emails"
1194
- msgstr "Abilita email HTML"
1195
 
1196
- #: options/panel5.php:43
1197
- msgid "HTMLify Links in HTML emails"
 
1198
  msgstr ""
 
1199
 
1200
- #: options/panel5.php:46
1201
- msgid "Send trackbacks"
1202
- msgstr "Notifica trackbacks"
1203
-
1204
- #: options/panel5.php:49
1205
- msgid "Notify admin"
1206
- msgstr "Notifica amministratore"
1207
 
1208
- #: options/panel5.php:52 options/panel5.php:149
1209
- msgid "Let admin subscribe"
1210
- msgstr "Consenti iscrizione per admin"
1211
 
1212
- #: options/panel5.php:55 options/panel5.php:158
1213
- msgid "BCC admin on Notifications"
1214
- msgstr "Notifiche"
1215
 
1216
- #: options/panel5.php:76
1217
- msgid "Safely Uninstall"
1218
  msgstr ""
1219
 
1220
- #: options/panel5.php:80
1221
  msgid ""
1222
- "This option will allow you to delete the plugin with WordPress without "
1223
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
 
1224
  msgstr ""
1225
 
1226
- #: options/panel5.php:87
1227
- msgid "days"
1228
- msgstr "giorni"
 
 
 
1229
 
1230
- #: options/panel5.php:88
1231
  msgid ""
1232
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1233
- "this feature."
1234
  msgstr ""
1235
- "Cancella le iscrizioni non confermate dopo X giorni. Zero disabilita la "
1236
- "funzione."
1237
 
1238
- #: options/panel5.php:97
1239
  msgid ""
1240
- "Send a notification email to confirm the subscription (to avoid addresses "
1241
- "misuse)."
 
1242
  msgstr ""
1243
- "Invia una email per confermare l'iscrizione ad un dato articolo (per evitare "
1244
- "l'uso scorretto di indirizzi email di terzi)."
1245
 
1246
- #: options/panel5.php:106
 
1247
  msgid ""
1248
- "Automatically subscribe authors to their own articles (not retroactive)."
 
 
 
1249
  msgstr ""
1250
 
1251
- #: options/panel5.php:115
1252
  msgid ""
1253
- "If enabled, will send email messages with content-type = text/html instead "
1254
- "of text/plain"
 
1255
  msgstr ""
1256
- "Se abilitato, invia messaggi email con il content-type = text/html invece "
1257
- "che text/plain"
1258
 
1259
- #: options/panel5.php:120
1260
- msgid "HTMLify links in emails"
 
 
1261
  msgstr ""
1262
 
1263
- #: options/panel5.php:125
1264
  msgid ""
1265
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1266
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
 
 
1267
  msgstr ""
1268
 
1269
- #: options/panel5.php:130
1270
- msgid "Process trackbacks"
1271
- msgstr "Notifica trackback"
1272
-
1273
- #: options/panel5.php:134
1274
  msgid ""
1275
- "Notify users when a new trackback or pingback is added to the discussion."
 
1276
  msgstr ""
1277
- "Invia una notifica anche per pingback e trackback aggiunti alla discussione."
1278
-
1279
- #: options/panel5.php:139
1280
- msgid "Track all subscriptions"
1281
- msgstr "Traccia iscrizioni"
1282
 
1283
- #: options/panel5.php:144
1284
- msgid "Notify the administrator when users subscribe without commenting."
 
 
 
 
1285
  msgstr ""
1286
- "Notifica l'amministratore quando un utente si iscrive senza commentare."
1287
 
1288
- #: options/panel5.php:153
1289
- msgid "Let the administrator subscribe to comments when logged in."
 
 
 
 
 
1290
  msgstr ""
1291
- "Consenti anche all'amministratore ed agli utenti registrati di iscriversi "
1292
- "alle discussioni."
1293
 
1294
- #: options/panel5.php:162
1295
- msgid "Send a copy of all Notifications to the administrator."
 
1296
  msgstr ""
1297
 
1298
- #: options/panel5.php:167
1299
- msgid "StCR Unique Key"
 
 
1300
  msgstr ""
1301
 
1302
- #: options/panel5.php:172
1303
- msgid "This Unique Key is not set, please click the following button to "
 
 
 
 
 
 
1304
  msgstr ""
1305
 
1306
- #: options/panel5.php:176 options/panel5.php:187
1307
- msgid "Generate"
 
 
 
 
1308
  msgstr ""
1309
 
1310
- #: options/panel5.php:184
1311
  msgid ""
1312
- "This Unique Key will be use to send the notification to your subscribers "
1313
- "with more security."
1314
  msgstr ""
1315
 
1316
- #: options/panel8.php:18
1317
- msgid "Did you find a Bug on the plugin?"
 
 
 
1318
  msgstr ""
1319
 
1320
- #: options/panel8.php:19
 
1321
  msgid ""
1322
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1323
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1324
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1325
- "WordPress Support page."
1326
  msgstr ""
1327
 
1328
- #: options/panel1-edit-subscription.php:8
1329
- msgid "Update Subscription"
1330
- msgstr "Aggiorna iscrizione"
1331
-
1332
- #: options/panel1-edit-subscription.php:11
1333
- #: options/panel1-edit-subscription.php:21
1334
- #: options/panel1-edit-subscription.php:22
1335
- #: options/panel1-edit-subscription.php:23
1336
- msgid "optional"
1337
- msgstr "facoltativo"
1338
-
1339
- #: options/panel10.php:22 options/panel10.php:23
1340
- msgid "System Information"
1341
  msgstr ""
1342
 
1343
- #: options/panel3.php:13 options/panel3.php:87
1344
- msgid "Virtual Management Page"
1345
- msgstr "Pagina di gestione virtuale"
1346
-
1347
- #: options/panel3.php:18 options/panel3.php:96
1348
- msgid "Page title"
1349
- msgstr "Titolo pagina"
1350
-
1351
- #: options/panel3.php:23 options/panel3.php:105
1352
- msgid "Management URL"
1353
- msgstr "URL di gestione"
1354
-
1355
- #: options/panel3.php:28 options/panel3.php:117
1356
- msgid "Custom HEAD meta"
1357
- msgstr "Meta HEAD personalizzato"
1358
-
1359
- #: options/panel3.php:34 options/panel3.php:131
1360
- msgid "Request link"
1361
- msgstr "Richiesta link"
1362
-
1363
- #: options/panel3.php:39 options/panel3.php:149
1364
- msgid "Request submitted"
1365
- msgstr "Richiesta inviata"
1366
-
1367
- #: options/panel3.php:44 options/panel3.php:167
1368
- msgid "Subscribe without commenting"
1369
- msgstr "Iscriviti senza commentare"
1370
-
1371
- #: options/panel3.php:49 options/panel3.php:185
1372
- msgid "Subscription processed"
1373
- msgstr "Iscrizione avvenuta"
1374
-
1375
- #: options/panel3.php:54 options/panel3.php:203
1376
- msgid "Subscription processed (DCI)"
1377
- msgstr "Iscrizione avvenuta (DCI)"
1378
-
1379
- #: options/panel3.php:59 options/panel3.php:220
1380
- msgid "Authors"
1381
- msgstr "Autori"
1382
-
1383
- #: options/panel3.php:64 options/panel3.php:236
1384
- msgid "Users"
1385
- msgstr "Utenti"
1386
-
1387
- #: options/panel3.php:90
1388
- msgid "Enabled"
1389
- msgstr "Attiva"
1390
-
1391
- #: options/panel3.php:91
1392
- msgid "Disabled"
1393
- msgstr "Disattiva"
1394
 
1395
- #: options/panel3.php:92
1396
  msgid ""
1397
- "Disable the virtual management page if you need to create a <a href="
1398
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1399
- "real-management-page\">real page</a> to make your theme happy."
1400
  msgstr ""
1401
- "Disabilita la pagina virtuale di gestione se hai bisogno di creare una <a "
1402
- "href=\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">pagina vera</"
1403
- "a> per far contento il tuo tema."
1404
 
1405
- #: options/panel3.php:101
1406
- msgid "Title of the page your visitors will use to manage their subscriptions."
1407
  msgstr ""
1408
- "Titolo della pagina che i visitatori useranno per gestire le iscrizioni."
1409
 
1410
- #: options/panel3.php:109
1411
  msgid ""
1412
- "The permalink for your management page (something like <code>/manage-"
1413
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1414
- "b> actually exist in the system, but its link must follow your permalink "
1415
- "structure."
1416
  msgstr ""
1417
- "Il permalink associato alla pagina di gestione (tipo <code>/manage-"
1418
- "subscriptions</code> o <code>/?page_id=345</code>). Questa pagina <b>non "
1419
- "esiste fisicamente</b> in Wordpress, ma il suo permalink deve essere "
1420
- "consistente con la tua configurazione di Wordpress."
1421
 
1422
- #: options/panel3.php:111
1423
  msgid ""
1424
- "Warning: it looks like the value you are using may be incompatible with your "
1425
- "permalink structure"
1426
  msgstr ""
1427
- "Attenzione: sembra che il valore impostato sia incompatibile con la tua "
1428
- "configurazione dei permalink"
1429
 
1430
- #: options/panel3.php:121
1431
  msgid ""
1432
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1433
- "Use <strong>single</strong> quotes for values."
 
1434
  msgstr ""
1435
- "Specifica il codice HTML che vuoi inserire nella parte HEAD della pagina di "
1436
- "gestione. Usa <strong>singoli</strong> aplici per i valori."
1437
 
1438
- #: options/panel3.php:144
1439
- msgid "Text shown to those who request to manage their subscriptions."
 
 
 
1440
  msgstr ""
1441
- "Testo mostrato a coloro che richiedono il link per gestire le iscrizioni."
1442
 
1443
- #: options/panel3.php:162
1444
  msgid ""
1445
- "Thank you note shown after the request here above has been processed. "
1446
- "Allowed tags: [post_title], [post_permalink]"
 
1447
  msgstr ""
1448
- "Nota di conferma mostrata dopo che la richiesta qui sopra &egrave; stata "
1449
- "gestita dal sistema. Tag consentiti: [post_title], [post_permalink]"
1450
 
1451
- #: options/panel3.php:180
1452
  msgid ""
1453
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1454
- "[post_title], [post_permalink]"
1455
  msgstr ""
1456
- "Testo da mostrare agli utenti che vogliono iscriversi senza commentare. Tag "
1457
- "consentiti: [post_title], [post_permalink]"
1458
 
1459
- #: options/panel3.php:198
1460
  msgid ""
1461
- "Thank you note shown after the subscription request has been processed "
1462
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1463
  msgstr ""
1464
- "Nota di conferma mostrata dopo che la richiesta d'iscrizione qui sopra "
1465
- "&egrave; stata gestita dal sistema (con double check-in disabilitato). Tag "
1466
- "consentiti: [post_title], [post_permalink]"
1467
 
1468
- #: options/panel3.php:216
1469
- msgid ""
1470
- "Thank you note shown after the subscription request has been processed "
1471
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
 
1472
  msgstr ""
1473
- "Nota di conferma mostrata dopo che la richiesta &egrave; stata gestita dal "
1474
- "sistema (con double check-in abilitato). Tag consentiti: [post_title], "
1475
- "[post_permalink]"
1476
 
1477
- #: options/panel3.php:232
1478
- msgid "Introductory text for the authors' management page."
1479
- msgstr "Testo introduttivo per la pagina di gestione riservata agli autori."
1480
 
1481
- #: options/panel3.php:248
1482
- msgid "Introductory text for the users' management page."
1483
- msgstr "Testo introduttivo per la pagina di gestione riservata ai visitatori."
1484
 
1485
  #~ msgid "StCR Subscription Box Position"
1486
  #~ msgstr "Nuova iscrizione per"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:30-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:30-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: due chiacchiere <info@duechiacchiere.it>\n"
9
  "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: s;\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
20
+ #: utils/stcr_manage.php:383
21
+ msgid "Manage subscriptions"
22
+ msgstr "Gestisci iscrizioni"
23
 
24
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
25
+ msgid "Comment Form"
26
+ msgstr "Modulo per inviare commenti"
27
 
28
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
29
+ msgid "Management Page"
30
+ msgstr "Pagina di gestione"
31
 
32
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
33
+ msgid "Notifications"
34
+ msgstr "Notifiche"
35
+
36
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
37
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
38
+ msgid "Options"
39
+ msgstr "Opzioni"
40
+
41
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
42
+ msgid "You can help"
43
+ msgstr "Aiuto"
44
+
45
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
46
+ msgid "Support"
47
+ msgstr "Supporto"
48
+
49
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
50
+ msgid "Donate"
51
+ msgstr ""
52
+
53
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
54
+ msgid "Add New Subscription"
55
+ msgstr "Nuova iscrizione"
56
 
57
+ #: options/panel1-add-subscription.php:13
58
+ #: options/panel1-edit-subscription.php:13
59
+ msgid "Post:"
60
+ msgstr "Articolo:"
61
+
62
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
63
+ #: options/panel1.php:133 templates/key_expired.php:84
64
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
65
+ #: templates/user.php:57
66
  msgid "Email"
67
  msgstr "Email"
68
 
69
+ #: options/panel1-add-subscription.php:20
70
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
71
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
72
+ msgid "Status"
73
+ msgstr "Stato"
74
 
75
+ #: options/panel1-add-subscription.php:22
76
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
77
+ #: options/panel1.php:79 options/panel1.php:172
78
+ msgid "Active"
79
+ msgstr "Attiva"
80
 
81
+ #: options/panel1-add-subscription.php:23
82
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
83
+ #: options/panel1.php:80
84
+ msgid "Replies only"
85
+ msgstr "Solo risposte"
86
 
87
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
88
+ msgid "Ask user to confirm"
89
+ msgstr "Richiedi conferma"
90
 
91
+ #: options/panel1-add-subscription.php:26
92
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
93
+ msgid "Update"
94
+ msgstr "Aggiorna"
95
+
96
+ #: options/panel1-business-logic.php:23
97
+ msgid "Subscription added."
98
+ msgstr "Iscrizione aggiunta."
99
+
100
+ #: options/panel1-business-logic.php:39
101
+ msgid "Subscriptions updated."
102
+ msgstr "Iscrizioni aggiornate con successo."
103
+
104
+ #: options/panel1-business-logic.php:51
105
+ msgid "Subscription deleted."
106
+ msgstr "Iscrizioni rimosse."
107
 
108
+ #: options/panel1-business-logic.php:70 templates/author.php:23
109
+ #: templates/user.php:23
110
  msgid "Subscriptions deleted:"
111
  msgstr "Iscrizioni rimosse:"
112
 
113
+ #: options/panel1-business-logic.php:74 templates/author.php:27
114
+ #: templates/user.php:27
115
  msgid "Subscriptions suspended:"
116
  msgstr "Iscrizioni sospese:"
117
 
118
+ #: options/panel1-business-logic.php:78 templates/author.php:31
119
+ #: templates/user.php:31
120
  msgid "Subscriptions activated:"
121
  msgstr "Iscrizioni attivate:"
122
 
123
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
124
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
125
+ #: templates/user.php:39
126
  msgid "Subscriptions updated:"
127
  msgstr "Iscrizioni aggiornate:"
128
 
129
+ #: options/panel1-business-logic.php:110
130
+ msgid "&laquo; Previous"
131
+ msgstr "&laquo; Precedenti"
132
+
133
+ #: options/panel1-business-logic.php:114
134
+ msgid "Next &raquo;"
135
+ msgstr "Successivi &raquo;"
136
+
137
+ #: options/panel1-edit-subscription.php:8
138
+ msgid "Update Subscription"
139
+ msgstr "Aggiorna iscrizione"
140
+
141
  #: options/panel1-edit-subscription.php:11
142
+ #: options/panel1-edit-subscription.php:21
143
+ #: options/panel1-edit-subscription.php:22
144
+ #: options/panel1-edit-subscription.php:23
145
+ msgid "optional"
146
+ msgstr "facoltativo"
147
+
148
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
149
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
150
+ #: templates/author.php:52 templates/user.php:52
151
  msgid ""
152
  "Please remember: this operation cannot be undone. Are you sure you want to "
153
  "proceed?"
155
  "Ricorda: questa operazione non pu&ograve; essere annullata. Confermi di "
156
  "voler procedere?"
157
 
158
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
159
+ msgid "From"
160
+ msgstr "Da"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
163
+ msgid "To"
164
+ msgstr "In"
165
 
166
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
167
+ msgid "Keep unchanged"
168
+ msgstr "Non cambiare"
169
 
170
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
171
+ msgid "Suspended"
172
+ msgstr "Sospesa"
173
 
174
+ #: options/panel1.php:20
175
+ msgid "Mass Update Subscriptions"
176
  msgstr "Aggiorna iscrizioni"
177
 
178
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
179
+ msgid "email address"
180
+ msgstr "Indirizzo email mittente"
181
 
182
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
183
+ msgid "optional - new email address"
184
+ msgstr "Aggiorna indirizzo email"
185
 
186
+ #: options/panel1.php:49
187
+ msgid "More info"
 
 
 
 
188
  msgstr ""
189
 
190
+ #: options/panel1.php:55
191
  msgid ""
192
+ "This option will allow you to change an email address for another one or to "
193
+ "update the same status for all the subscription on a specific email address."
 
194
  msgstr ""
195
 
196
+ #: options/panel1.php:68
197
+ msgid "Post ID"
198
+ msgstr "ID Articolo"
 
 
199
 
200
+ #: options/panel1.php:83
201
+ msgid "Add"
202
+ msgstr "Aggiungi"
 
 
 
203
 
204
+ #: options/panel1.php:98
205
+ msgid "Search subscriptions"
206
+ msgstr "Cerca tra le iscrizioni"
 
 
 
 
 
207
 
208
+ #: options/panel1.php:102
209
+ #, php-format
210
  msgid ""
211
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
212
+ "where the"
 
213
  msgstr ""
214
+ "Puoi vedere l'elenco di <a href=\"%s\">tutte le iscrizioni</a> o trovare "
215
+ "quelle in cui"
216
 
217
+ #: options/panel1.php:106
218
+ msgid "email"
219
+ msgstr "email"
 
 
220
 
221
+ #: options/panel1.php:107
222
+ msgid "post ID"
223
+ msgstr "id articolo"
 
 
 
 
224
 
225
+ #: options/panel1.php:108
226
+ msgid "status"
227
+ msgstr "stato"
 
 
228
 
229
+ #: options/panel1.php:111
230
+ msgid "equals"
231
+ msgstr "&egrave; uguale a"
 
 
 
 
232
 
233
+ #: options/panel1.php:112
234
+ msgid "contains"
235
+ msgstr "contiene"
 
 
 
 
 
236
 
237
+ #: options/panel1.php:113
238
+ msgid "does not contain"
239
+ msgstr "non contiene"
 
240
 
241
+ #: options/panel1.php:114
242
+ msgid "starts with"
243
+ msgstr "inizia per"
 
 
244
 
245
+ #: options/panel1.php:115
246
+ msgid "ends with"
247
+ msgstr "finisce con"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
248
 
249
+ #: options/panel1.php:118
250
+ msgid "results per page:"
251
+ msgstr "risultati per pagina:"
 
 
 
 
 
 
252
 
253
+ #: options/panel1.php:120
254
+ msgid "Search"
255
+ msgstr "Cerca"
 
 
 
 
 
 
 
256
 
257
+ #: options/panel1.php:128
258
+ msgid "Reverse the order by Post ID"
259
+ msgstr "Inverti l'ordine per ID dell'articolo"
 
 
 
 
 
 
260
 
261
+ #: options/panel1.php:129 options/panel1.php:130
262
+ msgid "Reverse the order by Date/Time"
263
+ msgstr "Inverti l'ordine per data e ora"
 
 
 
 
 
 
 
264
 
265
+ #: options/panel1.php:132
266
+ msgid "Post (ID)"
267
+ msgstr "Articolo (ID)"
 
 
 
 
 
 
268
 
269
+ #: options/panel1.php:135
270
+ msgid "Search query:"
271
+ msgstr "Chiave di ricerca:"
 
 
 
 
272
 
273
+ #: options/panel1.php:135
274
+ msgid "Rows:"
275
+ msgstr "Righe:"
 
 
 
 
 
 
276
 
277
+ #: options/panel1.php:135
278
+ msgid "of"
279
+ msgstr "di"
280
 
281
+ #: options/panel1.php:142 options/panel1.php:158
282
+ msgid "Date and Time"
283
+ msgstr "Data e ora"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
284
 
285
+ #: options/panel1.php:168
286
+ msgid "Replies"
287
+ msgstr "Solo risposte"
288
 
289
+ #: options/panel1.php:169
290
+ msgid "All Comments"
 
 
 
 
 
291
  msgstr ""
 
 
 
 
 
 
 
 
 
292
 
293
+ #: options/panel1.php:170
294
+ msgid "Unconfirmed"
 
 
 
 
 
 
295
  msgstr ""
296
 
297
+ #: options/panel1.php:171
298
+ msgid "Inactive"
299
+ msgstr "Attiva"
 
 
 
 
 
 
 
300
 
301
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
302
+ #: templates/user.php:70
303
+ msgid "Delete"
304
+ msgstr "Rimuovi"
305
 
306
+ #: options/panel1.php:201 options/panel1.php:211
307
+ msgid "Edit"
308
+ msgstr "Modifica"
309
 
310
+ #: options/panel1.php:203 options/panel1.php:209
311
+ msgid "Subscription"
312
+ msgstr "Iscrizione"
313
 
314
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
315
+ msgid "Action:"
316
+ msgstr "Azione:"
 
317
 
318
+ #: options/panel1.php:226
319
+ msgid "Delete forever"
320
+ msgstr "Cancella definitivamente"
321
 
322
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
323
+ msgid "Suspend"
324
+ msgstr "Sospendi"
325
 
326
+ #: options/panel1.php:228
327
+ msgid "Activate and set to Y"
328
+ msgstr "Attiva ed imposta ad Y"
329
 
330
+ #: options/panel1.php:229
331
+ msgid "Activate and set to R"
332
+ msgstr "Attiva ed imposta ad R"
333
 
334
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
335
+ msgid "Activate"
336
+ msgstr "Attiva"
 
 
 
 
337
 
338
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
339
+ msgid "Update subscriptions"
340
+ msgstr "Aggiorna iscrizioni"
341
 
342
+ #: options/panel1.php:237
343
+ msgid "Sorry, no subscriptions match your search criteria."
344
+ msgstr "Spiacente, nessuna iscrizione soddisfa i tuoi parametri di ricerca."
 
 
 
 
345
 
346
+ #: options/panel10.php:22 options/panel10.php:23
347
+ msgid "System Information"
 
348
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
 
350
  #: options/panel2.php:12 options/panel2.php:63
351
  msgid "Enable default checkbox"
387
  msgid "Author label"
388
  msgstr "Descrizione per l'autore"
389
 
390
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
391
+ #: options/panel5.php:18 options/panel5.php:60
392
  msgid "Your settings have been successfully updated."
393
  msgstr "La configurazione &egrave; stata aggiornata con successo."
394
 
395
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
396
+ #: options/panel5.php:20 options/panel5.php:62
397
  msgid "There was an error updating the following fields:"
398
  msgstr ""
399
  "Si &egrave; verificato un errore nell'aggiornamento dei seguenti campi:"
405
  msgid "Yes"
406
  msgstr "Si"
407
 
408
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
409
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
410
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
411
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
412
+ #: utils/stcr_manage.php:784
413
+ msgid "No"
414
+ msgstr "No"
415
+
416
  #: options/panel2.php:68
417
  msgid ""
418
  "Disable this option if you want to move the subscription checkbox to a "
454
  msgid "Advanced default"
455
  msgstr "Spuntato per default"
456
 
457
+ #: options/panel2.php:119
458
+ msgid "None"
459
+ msgstr ""
460
+
461
+ #: options/panel2.php:124
462
+ msgid ""
463
+ "The default subscription type that should be selected when Advanced "
464
+ "subscriptions are enable."
465
+ msgstr ""
466
+
467
+ #: options/panel2.php:135
468
+ msgid "Custom inline CSS to add to the checkbox."
469
+ msgstr ""
470
+ "Specifica il codice CSS da aggiungere direttamente in linea al checkbox."
471
+
472
+ #: options/panel2.php:152
473
+ msgid ""
474
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
475
+ "[checkbox_field], [checkbox_label]"
476
+ msgstr ""
477
+ "Codice HTML personalizzato da usare attorno al checkbox. Tag consentiti: "
478
+ "[checkbox_field], [checkbox_label]"
479
+
480
+ #: options/panel2.php:158
481
+ msgid "Messages for your visitors"
482
+ msgstr "Messaggi per i visitatori"
483
+
484
+ #: options/panel2.php:162
485
+ msgid "Default label"
486
+ msgstr "Descrizione del checkbox"
487
+
488
+ #: options/panel2.php:175
489
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
490
+ msgstr ""
491
+ "Testo da mostrare accanto al checkbox. Tag consentito: [subscribe_link]"
492
+
493
+ #: options/panel2.php:192
494
+ msgid ""
495
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
496
+ "[manager_link]"
497
+ msgstr ""
498
+ "Testo da mostrare agli utenti gi&agrave; iscritti ad una discussione. Tag "
499
+ "consentito: [manager_link]"
500
+
501
+ #: options/panel2.php:197
502
+ msgid "Pending label"
503
+ msgstr "Notifiche in attesa"
504
+
505
+ #: options/panel2.php:209
506
+ msgid ""
507
+ "Label shown to those who are already subscribed, but haven't clicked on the "
508
+ "confirmation link yet. Allowed tag: [manager_link]"
509
+ msgstr ""
510
+ "Testo da mostrare agli utenti gi&agrave; iscritti ad una discussione, ma che "
511
+ "non hanno ancora cliccato sul link di conferma. Tag consentito: "
512
+ "[manager_link]"
513
+
514
+ #: options/panel2.php:225
515
+ msgid ""
516
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
517
+ msgstr ""
518
+ "Testo da mostrare ad autori ed amministratori. Tag consentito: [manager_link]"
519
+
520
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
521
+ #: options/panel5.php:195
522
+ msgid "Save Changes"
523
+ msgstr "Salva le opzioni"
524
+
525
+ #: options/panel3.php:13 options/panel3.php:87
526
+ msgid "Virtual Management Page"
527
+ msgstr "Pagina di gestione virtuale"
528
+
529
+ #: options/panel3.php:18 options/panel3.php:96
530
+ msgid "Page title"
531
+ msgstr "Titolo pagina"
532
+
533
+ #: options/panel3.php:23 options/panel3.php:105
534
+ msgid "Management URL"
535
+ msgstr "URL di gestione"
536
+
537
+ #: options/panel3.php:28 options/panel3.php:117
538
+ msgid "Custom HEAD meta"
539
+ msgstr "Meta HEAD personalizzato"
540
+
541
+ #: options/panel3.php:34 options/panel3.php:131
542
+ msgid "Request link"
543
+ msgstr "Richiesta link"
544
+
545
+ #: options/panel3.php:39 options/panel3.php:149
546
+ msgid "Request submitted"
547
+ msgstr "Richiesta inviata"
548
+
549
+ #: options/panel3.php:44 options/panel3.php:167
550
+ msgid "Subscribe without commenting"
551
+ msgstr "Iscriviti senza commentare"
552
+
553
+ #: options/panel3.php:49 options/panel3.php:185
554
+ msgid "Subscription processed"
555
+ msgstr "Iscrizione avvenuta"
556
+
557
+ #: options/panel3.php:54 options/panel3.php:203
558
+ msgid "Subscription processed (DCI)"
559
+ msgstr "Iscrizione avvenuta (DCI)"
560
+
561
+ #: options/panel3.php:59 options/panel3.php:220
562
+ msgid "Authors"
563
+ msgstr "Autori"
564
+
565
+ #: options/panel3.php:64 options/panel3.php:236
566
+ msgid "Users"
567
+ msgstr "Utenti"
568
+
569
+ #: options/panel3.php:90
570
+ msgid "Enabled"
571
+ msgstr "Attiva"
572
+
573
+ #: options/panel3.php:91
574
+ msgid "Disabled"
575
+ msgstr "Disattiva"
576
+
577
+ #: options/panel3.php:92
578
+ msgid ""
579
+ "Disable the virtual management page if you need to create a <a href="
580
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
581
+ "real-management-page\">real page</a> to make your theme happy."
582
+ msgstr ""
583
+ "Disabilita la pagina virtuale di gestione se hai bisogno di creare una <a "
584
+ "href=\"http://behstant.com/subscribe-reloaded/realMgnPage.php\">pagina vera</"
585
+ "a> per far contento il tuo tema."
586
+
587
+ #: options/panel3.php:101
588
+ msgid "Title of the page your visitors will use to manage their subscriptions."
589
  msgstr ""
590
+ "Titolo della pagina che i visitatori useranno per gestire le iscrizioni."
591
 
592
+ #: options/panel3.php:109
593
  msgid ""
594
+ "The permalink for your management page (something like <code>/manage-"
595
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
596
+ "b> actually exist in the system, but its link must follow your permalink "
597
+ "structure."
598
  msgstr ""
599
+ "Il permalink associato alla pagina di gestione (tipo <code>/manage-"
600
+ "subscriptions</code> o <code>/?page_id=345</code>). Questa pagina <b>non "
601
+ "esiste fisicamente</b> in Wordpress, ma il suo permalink deve essere "
602
+ "consistente con la tua configurazione di Wordpress."
603
 
604
+ #: options/panel3.php:111
605
+ msgid ""
606
+ "Warning: it looks like the value you are using may be incompatible with your "
607
+ "permalink structure"
608
  msgstr ""
609
+ "Attenzione: sembra che il valore impostato sia incompatibile con la tua "
610
+ "configurazione dei permalink"
611
 
612
+ #: options/panel3.php:121
613
  msgid ""
614
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
615
+ "Use <strong>single</strong> quotes for values."
616
  msgstr ""
617
+ "Specifica il codice HTML che vuoi inserire nella parte HEAD della pagina di "
618
+ "gestione. Usa <strong>singoli</strong> aplici per i valori."
 
 
 
 
619
 
620
+ #: options/panel3.php:127 options/panel4.php:135
621
+ msgid "Messages"
622
+ msgstr "Messaggi"
623
 
624
+ #: options/panel3.php:144
625
+ msgid "Text shown to those who request to manage their subscriptions."
626
  msgstr ""
627
+ "Testo mostrato a coloro che richiedono il link per gestire le iscrizioni."
628
 
629
+ #: options/panel3.php:162
630
  msgid ""
631
+ "Thank you note shown after the request here above has been processed. "
632
+ "Allowed tags: [post_title], [post_permalink]"
633
  msgstr ""
634
+ "Nota di conferma mostrata dopo che la richiesta qui sopra &egrave; stata "
635
+ "gestita dal sistema. Tag consentiti: [post_title], [post_permalink]"
 
 
 
 
636
 
637
+ #: options/panel3.php:180
638
  msgid ""
639
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
640
+ "[post_title], [post_permalink]"
641
  msgstr ""
642
+ "Testo da mostrare agli utenti che vogliono iscriversi senza commentare. Tag "
643
+ "consentiti: [post_title], [post_permalink]"
 
644
 
645
+ #: options/panel3.php:198
646
  msgid ""
647
+ "Thank you note shown after the subscription request has been processed "
648
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
 
 
 
 
 
 
 
 
 
649
  msgstr ""
650
+ "Nota di conferma mostrata dopo che la richiesta d'iscrizione qui sopra "
651
+ "&egrave; stata gestita dal sistema (con double check-in disabilitato). Tag "
652
+ "consentiti: [post_title], [post_permalink]"
653
 
654
+ #: options/panel3.php:216
655
  msgid ""
656
+ "Thank you note shown after the subscription request has been processed "
657
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
658
  msgstr ""
659
+ "Nota di conferma mostrata dopo che la richiesta &egrave; stata gestita dal "
660
+ "sistema (con double check-in abilitato). Tag consentiti: [post_title], "
661
+ "[post_permalink]"
662
+
663
+ #: options/panel3.php:232
664
+ msgid "Introductory text for the authors' management page."
665
+ msgstr "Testo introduttivo per la pagina di gestione riservata agli autori."
666
+
667
+ #: options/panel3.php:248
668
+ msgid "Introductory text for the users' management page."
669
+ msgstr "Testo introduttivo per la pagina di gestione riservata ai visitatori."
670
 
671
  #: options/panel4.php:15 options/panel4.php:94
672
  msgid "Sender name"
727
  "will be the same as the Sender email address."
728
  msgstr ""
729
 
 
 
 
 
730
  #: options/panel4.php:147
731
  msgid "Subject of the notification email. Allowed tag: [post_title]"
732
  msgstr "Oggetto dell'email di notifica. Tag consentito: [post_title]"
764
  "Subject of the mail sent to those who request to access their management "
765
  "page. Allowed tag: [blog_name]"
766
  msgstr ""
767
+ "Oggetto della mail inviata a coloro che richiedono di poter gestire le "
768
+ "proprie iscrizioni. Tag consentito: [blog_name]"
769
+
770
+ #: options/panel4.php:223
771
+ msgid "Management Page message"
772
+ msgstr ""
773
+
774
+ #: options/panel4.php:237
775
+ msgid "Content of the management Page message. Allowed tags: [blog_name]."
776
+ msgstr ""
777
+
778
+ #: options/panel4.php:257
779
+ msgid ""
780
+ "Content of the management email message. Allowed tags: [blog_name], "
781
+ "[manager_link]."
782
+ msgstr ""
783
+
784
+ #: options/panel4.php:263
785
+ msgid "One Click Unsubscribe"
786
+ msgstr "Consenti iscrizione per admin"
787
+
788
+ #: options/panel4.php:277
789
+ msgid ""
790
+ "Content of the One Click confirmation. Allowed tags: [post_title], "
791
+ "[blog_name]"
792
+ msgstr "Oggetto dell'email di notifica. Tag consentito: [post_title]"
793
+
794
+ #: options/panel5.php:28
795
+ msgid "Safetly Uninstall"
796
+ msgstr ""
797
+
798
+ #: options/panel5.php:31 options/panel5.php:84
799
+ msgid "Autopurge requests"
800
+ msgstr "Pulizia DB"
801
+
802
+ #: options/panel5.php:34 options/panel5.php:93
803
+ msgid "Enable double check"
804
+ msgstr "Attiva doppia conferma"
805
+
806
+ #: options/panel5.php:37 options/panel5.php:101
807
+ msgid "Subscribe authors"
808
+ msgstr "Descrizione per gli iscritti"
809
+
810
+ #: options/panel5.php:40 options/panel5.php:111
811
+ msgid "Enable HTML emails"
812
+ msgstr "Abilita email HTML"
813
+
814
+ #: options/panel5.php:43
815
+ msgid "HTMLify Links in HTML emails"
816
+ msgstr ""
817
+
818
+ #: options/panel5.php:46
819
+ msgid "Send trackbacks"
820
+ msgstr "Notifica trackbacks"
821
+
822
+ #: options/panel5.php:49
823
+ msgid "Notify admin"
824
+ msgstr "Notifica amministratore"
825
+
826
+ #: options/panel5.php:52 options/panel5.php:149
827
+ msgid "Let admin subscribe"
828
+ msgstr "Consenti iscrizione per admin"
829
+
830
+ #: options/panel5.php:55 options/panel5.php:158
831
+ msgid "BCC admin on Notifications"
832
+ msgstr "Notifiche"
833
+
834
+ #: options/panel5.php:76
835
+ msgid "Safely Uninstall"
836
+ msgstr ""
837
+
838
+ #: options/panel5.php:80
839
+ msgid ""
840
+ "This option will allow you to delete the plugin with WordPress without "
841
+ "loosing your subscribers. Any database table and plugin options are wipeout."
842
+ msgstr ""
843
+
844
+ #: options/panel5.php:87
845
+ msgid "days"
846
+ msgstr "giorni"
847
+
848
+ #: options/panel5.php:88
849
+ msgid ""
850
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
851
+ "this feature."
852
+ msgstr ""
853
+ "Cancella le iscrizioni non confermate dopo X giorni. Zero disabilita la "
854
+ "funzione."
855
+
856
+ #: options/panel5.php:97
857
+ msgid ""
858
+ "Send a notification email to confirm the subscription (to avoid addresses "
859
+ "misuse)."
860
+ msgstr ""
861
+ "Invia una email per confermare l'iscrizione ad un dato articolo (per evitare "
862
+ "l'uso scorretto di indirizzi email di terzi)."
863
+
864
+ #: options/panel5.php:106
865
+ msgid ""
866
+ "Automatically subscribe authors to their own articles (not retroactive)."
867
+ msgstr ""
868
+
869
+ #: options/panel5.php:115
870
+ msgid ""
871
+ "If enabled, will send email messages with content-type = text/html instead "
872
+ "of text/plain"
873
+ msgstr ""
874
+ "Se abilitato, invia messaggi email con il content-type = text/html invece "
875
+ "che text/plain"
876
+
877
+ #: options/panel5.php:120
878
+ msgid "HTMLify links in emails"
879
+ msgstr ""
880
+
881
+ #: options/panel5.php:125
882
+ msgid ""
883
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
884
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
885
+ msgstr ""
886
+
887
+ #: options/panel5.php:130
888
+ msgid "Process trackbacks"
889
+ msgstr "Notifica trackback"
890
+
891
+ #: options/panel5.php:134
892
+ msgid ""
893
+ "Notify users when a new trackback or pingback is added to the discussion."
894
+ msgstr ""
895
+ "Invia una notifica anche per pingback e trackback aggiunti alla discussione."
896
+
897
+ #: options/panel5.php:139
898
+ msgid "Track all subscriptions"
899
+ msgstr "Traccia iscrizioni"
900
+
901
+ #: options/panel5.php:144
902
+ msgid "Notify the administrator when users subscribe without commenting."
903
+ msgstr ""
904
+ "Notifica l'amministratore quando un utente si iscrive senza commentare."
905
 
906
+ #: options/panel5.php:153
907
+ msgid "Let the administrator subscribe to comments when logged in."
908
  msgstr ""
909
+ "Consenti anche all'amministratore ed agli utenti registrati di iscriversi "
910
+ "alle discussioni."
911
 
912
+ #: options/panel5.php:162
913
+ msgid "Send a copy of all Notifications to the administrator."
914
  msgstr ""
915
 
916
+ #: options/panel5.php:167
917
+ msgid "StCR Unique Key"
 
 
918
  msgstr ""
919
 
920
+ #: options/panel5.php:172
921
+ msgid "This Unique Key is not set, please click the following button to "
922
+ msgstr ""
923
 
924
+ #: options/panel5.php:176 options/panel5.php:187
925
+ msgid "Generate"
926
+ msgstr ""
927
+
928
+ #: options/panel5.php:184
929
  msgid ""
930
+ "This Unique Key will be use to send the notification to your subscribers "
931
+ "with more security."
932
+ msgstr ""
933
 
934
  #: options/panel7.php:8 options/panel8.php:8
935
  msgid "Support the developers"
1000
  "quanto ti piace. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
1001
  "comments-reloaded/\">Votalo</a> sulla pagina apposita di Wordpress."
1002
 
1003
+ #: options/panel8.php:18
1004
+ msgid "Did you find a Bug on the plugin?"
1005
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1006
 
1007
+ #: options/panel8.php:19
1008
+ msgid ""
1009
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1010
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1011
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1012
+ "WordPress Support page."
1013
+ msgstr ""
1014
 
1015
+ #: options/panel9.php:11
1016
+ msgid "Support Subscribe to Comments Reloaded"
1017
  msgstr ""
1018
+ "Serve aiuto su come usare al meglio Subscribe to Comments Reloaded? Visita il"
1019
 
1020
+ #: options/panel9.php:12
1021
  msgid ""
1022
+ "Every contribution that you make is high valuable, so if you consider this "
1023
+ "plugin a helpful tool we will use your donation to invest on support and "
1024
+ "developing time."
1025
  msgstr ""
1026
 
1027
+ #: templates/author.php:57
1028
+ msgid "Title"
1029
+ msgstr "Titolo"
 
 
 
 
1030
 
1031
+ #: templates/author.php:58 templates/user.php:58
1032
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1033
+ msgstr "Legenda: Y = tutti i commenti, R = solo risposte, C = sospesa"
1034
 
1035
+ #: templates/author.php:69 templates/user.php:67
1036
+ msgid "Select all"
1037
+ msgstr "Seleziona tutti"
1038
 
1039
+ #: templates/author.php:70 templates/user.php:68
1040
+ msgid "Invert selection"
1041
+ msgstr "Inverti la selezione"
1042
 
1043
+ #: templates/author.php:74 templates/user.php:72
1044
+ msgid "All comments"
 
 
 
1045
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1046
 
1047
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1048
+ msgid "Replies to my comments"
1049
+ msgstr "Risposte ai miei commenti"
1050
 
1051
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1052
+ #: templates/user.php:79
1053
+ msgid "No subscriptions match your search criteria."
1054
+ msgstr "Nessuna iscrizione corrispondente ai parametri di ricerca."
1055
 
1056
+ #: templates/key_expired.php:8
1057
+ msgid ""
1058
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1059
+ "enter your email below and a new link will be send."
1060
+ msgstr ""
1061
 
1062
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1063
+ #: templates/subscribe.php:106
1064
+ msgid "Send"
1065
+ msgstr "Invia"
1066
 
1067
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1068
+ msgid "New subscription to"
1069
+ msgstr "Nuova iscrizione per"
1070
 
1071
+ #: templates/subscribe.php:44
1072
+ msgid "User:"
1073
+ msgstr "Utente:"
1074
 
1075
+ #: templates/user.php:63
1076
+ msgid "F j, Y"
1077
+ msgstr ""
1078
 
1079
+ #: templates/wrong-request.php:9
1080
+ msgid "You have request to manage another email address and this is forbidden."
1081
+ msgstr ""
1082
 
1083
+ #: utils/stcr_manage.php:246
1084
+ msgid ""
1085
+ "Notify me of followup comments via e-mail. You can also <a "
1086
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1087
+ msgstr ""
1088
+ "Ricevi un avviso se ci sono nuovi commenti. Oppure <a "
1089
+ "href='[subscribe_link]'>iscriviti</a> senza commentare."
1090
 
1091
+ #: utils/stcr_manage.php:247
1092
+ msgid ""
1093
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1094
+ "subscriptions."
1095
+ msgstr ""
1096
+ "Sei gi&agrave; iscritto a quest'articolo. Se vuoi, puoi <a "
1097
+ "href='[manager_link]'>gestire</a> il tuo profilo."
1098
 
1099
+ #: utils/stcr_manage.php:248
1100
+ msgid ""
1101
+ "Your subscription to this post needs to be confirmed. <a "
1102
+ "href='[manager_link]'>Manage your subscriptions</a>."
1103
+ msgstr ""
1104
+ "La tua iscrizione &egrave; in attesa di conferma. Se vuoi, puoi <a "
1105
+ "href='[manager_link]'>gestire</a> il tuo profilo."
1106
 
1107
+ #: utils/stcr_manage.php:249
1108
+ msgid ""
1109
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1110
+ msgstr ""
1111
+ "Gestisci gli utenti <a href='[manager_link]'>iscritti</a> alla discussione."
1112
 
1113
+ #: utils/stcr_manage.php:255
1114
+ msgid ""
1115
+ "To manage your subscriptions, please enter your email address here below. We "
1116
+ "will send you a message containing the link to access your personal "
1117
+ "management page."
1118
+ msgstr ""
1119
+ "Al fine di gestire le tue iscrizioni, inserisci il tuo indirizzo email nel "
1120
+ "campo qui di seguito. Ti sar&agrave; inviato un messaggio contenente il link "
1121
+ "per accedere alla tua area riservata."
1122
 
1123
+ #: utils/stcr_manage.php:256
1124
+ msgid ""
1125
+ "Thank you for using our subscription service. Your request has been "
1126
+ "completed, and you should receive an email with the management link in a few "
1127
+ "minutes."
1128
+ msgstr ""
1129
+ "Grazie per aver usato il servizio di notifica di questo blog. La tua "
1130
+ "richiesta &egrave; stata completata, e dovresti ricevere una mail fra pochi "
1131
+ "minuti. Al suo interno troverai il link personalizzato per accedere alla tua "
1132
+ "area di gestione."
1133
 
1134
+ #: utils/stcr_manage.php:257
1135
+ msgid ""
1136
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1137
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1138
+ "form here below and you're all set."
1139
+ msgstr ""
1140
+ "Puoi seguire la discussione su <strong>[post_title]</strong> senza dover "
1141
+ "lasciare un commento. Bello, no? Ti basta inserire il tuo indirizzo email "
1142
+ "nel campo qui sotto e premere invio, al resto pensa il sistema."
1143
 
1144
+ #: utils/stcr_manage.php:258
1145
+ msgid ""
1146
+ "Thank you for using our subscription service. Your request has been "
1147
+ "completed. You will receive a notification email every time a new comment to "
1148
+ "this article is approved and posted by the administrator."
1149
  msgstr ""
1150
+ "Grazie per aver usato il servizio di notifica di questo blog. La tua "
1151
+ "richiesta &egrave; stata completata. Riceverai una notifica ogni volta che "
1152
+ "un nuovo commento a quell'articolo viene approvato e pubblicato "
1153
+ "dall'amministratore del sito."
1154
 
1155
+ #: utils/stcr_manage.php:259
1156
+ msgid ""
1157
+ "Thank you for using our subscription service. In order to confirm your "
1158
+ "request, please check your email for the verification message and follow the "
1159
+ "instructions."
1160
  msgstr ""
1161
+ "Grazie per aver usato il servizio di notifica di questo blog. Al fine di "
1162
+ "completare la tua richiesta, ti &egrave; stata inviata una email di "
1163
+ "conferma. Segui le semplici istruzioni per verificare la tua identit&agrave;."
1164
 
1165
+ #: utils/stcr_manage.php:260
1166
+ msgid ""
1167
+ "In order to cancel or suspend one or more notifications, select the "
1168
+ "corresponding checkbox(es) and click on the button at the end of the list."
1169
+ msgstr ""
1170
+ "Se desideri disdire o sospendere le tue notifiche, spunta la casella "
1171
+ "corrispondente all'articolo e clicca sul pulsante in fondo alla lista."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1172
 
1173
+ #: utils/stcr_manage.php:261
1174
+ msgid ""
1175
+ "In order to cancel or suspend one or more notifications, select the "
1176
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1177
+ "You are currently subscribed to:"
1178
+ msgstr ""
1179
+ "Se desideri disdire o sospendere le tue notifiche, spunta la casella "
1180
+ "corrispondente all'articolo e clicca sul pulsante in fondo alla lista. Al "
1181
+ "momento, risulti iscritto a:"
1182
 
1183
+ #: utils/stcr_manage.php:265
1184
+ msgid "There is a new comment to [post_title]"
1185
+ msgstr "Nuovo commento per [post_title]"
1186
 
1187
+ #: utils/stcr_manage.php:266
1188
+ msgid ""
1189
+ "There is a new comment to [post_title].\n"
1190
+ "Comment Link: [comment_permalink]\n"
1191
+ "Author: [comment_author]\n"
1192
+ "Comment:\n"
1193
+ "[comment_content]\n"
1194
+ "Permalink: [post_permalink]\n"
1195
+ "Manage your subscriptions: [manager_link]"
1196
+ msgstr ""
1197
+ "L'utente [comment_author] ha lasciato un nuovo commento a '[post_title]':\n"
1198
+ "[comment_permalink]\n"
1199
+ "\n"
1200
+ "Commento:\n"
1201
+ "[comment_content]\n"
1202
+ "\n"
1203
+ "Permalink: [post_permalink]\n"
1204
+ "Gestisci le tue iscrizioni: [manager_link]"
1205
 
1206
+ #: utils/stcr_manage.php:267
1207
+ msgid "Please confirm your subscription to [post_title]"
1208
+ msgstr "Conferma la tua iscrizione a [post_title]"
1209
 
1210
+ #: utils/stcr_manage.php:268
1211
+ msgid ""
1212
+ "You have requested to be notified every time a new comment is added to:\n"
1213
+ "[post_permalink]\n"
1214
+ "\n"
1215
+ "Please confirm your request by clicking on this link:\n"
1216
+ "[confirm_link]"
1217
+ msgstr ""
1218
+ "Abbiamo ricevuto una richiesta di iscrizione al nostro servizio "
1219
+ "automatizzato di notifiche, per l'articolo:\n"
1220
+ "[post_permalink]\n"
1221
+ "\n"
1222
+ "Per confermare, clicca sul collegamento qui di seguito:\n"
1223
+ "[confirm_link]\n"
1224
+ "\n"
1225
+ "Se credi di aver ricevuto questo messaggio per errore, ti preghiamo di "
1226
+ "rispondere all'email per contattare l'amministratore."
1227
 
1228
+ #: utils/stcr_manage.php:269
1229
+ msgid "Manage your subscriptions on [blog_name]"
1230
+ msgstr "Gestisci le tue iscrizioni su [blog_name]"
 
1231
 
1232
+ #: utils/stcr_manage.php:270
1233
+ msgid ""
1234
+ "You have requested to manage your subscriptions to the articles on "
1235
+ "[blog_name]. Please check the Subscriptions management link in your email"
1236
  msgstr ""
1237
 
1238
+ #: utils/stcr_manage.php:271
1239
+ msgid ""
1240
+ "You have requested to manage your subscriptions to the articles on "
1241
+ "[blog_name]. Follow this link to access your personal page:\n"
1242
+ "[manager_link]"
1243
+ msgstr ""
1244
+ "Hai richiesto di poter gestire le tue iscrizioni agli articoli su "
1245
+ "[blog_name]. Clicca sul link qui di seguito per accedere alla tua area "
1246
+ "riservata:\n"
1247
+ "[manager_link]"
1248
 
1249
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1250
+ msgid "StCR System"
1251
+ msgstr ""
1252
 
1253
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1254
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1255
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1256
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1257
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1258
+ msgid "You do not have sufficient permissions to access this page."
1259
+ msgstr ""
1260
 
1261
+ #: utils/stcr_manage.php:755
1262
+ msgid "Subscriptions"
1263
+ msgstr "Iscrizione"
1264
 
1265
+ #: utils/stcr_manage.php:811
1266
+ msgid ""
1267
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1268
  msgstr ""
1269
+ "Serve aiuto su come usare al meglio Subscribe to Comments Reloaded? Visita il"
1270
 
1271
+ #: utils/stcr_manage.php:811
1272
+ msgid "support forum"
1273
+ msgstr "forum di supporto"
 
 
 
 
1274
 
1275
+ #: utils/stcr_manage.php:812
1276
+ msgid "Feeling generous?"
1277
+ msgstr "Ti senti generoso?"
1278
 
1279
+ #: utils/stcr_manage.php:812
1280
+ msgid "Donate a few bucks!"
1281
+ msgstr "Dona qualche euro!"
1282
 
1283
+ #: utils/stcr_upgrade.php:55
1284
+ msgid "Important Notice"
1285
  msgstr ""
1286
 
1287
+ #: utils/stcr_upgrade.php:103
1288
  msgid ""
1289
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1290
+ "database has been sanitized to prevent the raw html messages. <a class="
1291
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1292
+ "src=\""
1293
  msgstr ""
1294
 
1295
+ #: utils/stcr_upgrade.php:158
1296
+ msgid ""
1297
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1298
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1299
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1300
+ msgstr ""
1301
 
1302
+ #: utils/stcr_upgrade.php:158
1303
  msgid ""
1304
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1305
+ "Comments to prevent confusion between the two plugins."
1306
  msgstr ""
 
 
1307
 
1308
+ #: utils/stcr_upgrade.php:159
1309
  msgid ""
1310
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1311
+ "that you want to import, you'll need to import that data manually, as only "
1312
+ "one import routine will ever run to prevent data loss."
1313
  msgstr ""
 
 
1314
 
1315
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1316
+ #: utils/stcr_upgrade.php:381
1317
  msgid ""
1318
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1319
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1320
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1321
+ "\"stcr-loading-animation\" src=\""
1322
  msgstr ""
1323
 
1324
+ #: utils/stcr_upgrade.php:231
1325
  msgid ""
1326
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1327
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1328
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1329
  msgstr ""
 
 
1330
 
1331
+ #: utils/stcr_upgrade.php:231
1332
+ msgid ""
1333
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1334
+ "Notification to prevent confusion between the two plugins."
1335
  msgstr ""
1336
 
1337
+ #: utils/stcr_upgrade.php:378
1338
  msgid ""
1339
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1340
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1341
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1342
+ "Reloaded</strong>."
1343
  msgstr ""
1344
 
1345
+ #: utils/stcr_upgrade.php:378
 
 
 
 
1346
  msgid ""
1347
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1348
+ "Subscriptions to prevent confusion between the two plugins."
1349
  msgstr ""
 
 
 
 
 
1350
 
1351
+ #: utils/stcr_upgrade.php:379
1352
+ msgid ""
1353
+ "If you have subscription data from another plugin (such as Subscribe to "
1354
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1355
+ "you'll need to import that data manually, as only one import routine will "
1356
+ "ever run to prevent data loss."
1357
  msgstr ""
 
1358
 
1359
+ #: utils/stcr_upgrade.php:380
1360
+ msgid ""
1361
+ "<strong>Note:</strong> If you were previously using the "
1362
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1363
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1364
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1365
+ "respectively."
1366
  msgstr ""
 
 
1367
 
1368
+ #: utils/stcr_upgrade.php:394
1369
+ msgid ""
1370
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
1371
  msgstr ""
1372
 
1373
+ #: utils/stcr_upgrade.php:395
1374
+ msgid ""
1375
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1376
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1377
  msgstr ""
1378
 
1379
+ #: utils/stcr_upgrade.php:396
1380
+ msgid ""
1381
+ "Please consider to make a donation to support the plugin, you can donate via "
1382
+ "<a href=\"\n"
1383
+ "https://www.paypal.com/cgi-bin/webscr?"
1384
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1385
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1386
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1387
  msgstr ""
1388
 
1389
+ #: utils/stcr_upgrade.php:398
1390
+ msgid ""
1391
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1392
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1393
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1394
+ "a><img class=\"stcr-loading-animation\" src=\""
1395
  msgstr ""
1396
 
1397
+ #: utils/stcr_upgrade.php:409
1398
  msgid ""
1399
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1400
+ "160106."
1401
  msgstr ""
1402
 
1403
+ #: utils/stcr_upgrade.php:410
1404
+ msgid ""
1405
+ "This version includes many changes and fixes to improve your experience with "
1406
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1407
+ "email templates, Subscription Checkbox position, and more!"
1408
  msgstr ""
1409
 
1410
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1411
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1412
  msgid ""
1413
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1414
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1415
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1416
+ "class=\"stcr-loading-animation\" src=\""
1417
  msgstr ""
1418
 
1419
+ #: utils/stcr_upgrade.php:424
1420
+ msgid ""
1421
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1422
+ "160115."
 
 
 
 
 
 
 
 
 
1423
  msgstr ""
1424
 
1425
+ #: utils/stcr_upgrade.php:425
1426
+ msgid ""
1427
+ "This version includes fixes to broken links while managing your subscriptions"
1428
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1429
 
1430
+ #: utils/stcr_upgrade.php:439
1431
  msgid ""
1432
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1433
+ "160831"
 
1434
  msgstr ""
 
 
 
1435
 
1436
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1437
+ msgid "This version includes fixes to many bugs and also new features, "
1438
  msgstr ""
 
1439
 
1440
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1441
  msgid ""
1442
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1443
+ "address. This will help the subscribers to use the Reply option in their "
1444
+ "email agents."
 
1445
  msgstr ""
 
 
 
 
1446
 
1447
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1448
  msgid ""
1449
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1450
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1451
  msgstr ""
 
 
1452
 
1453
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1454
  msgid ""
1455
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1456
+ "without loosing your subscriptions. You can use this option also for reset "
1457
+ "all the settings, see the FAQ."
1458
  msgstr ""
 
 
1459
 
1460
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1461
+ msgid ""
1462
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1463
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1464
+ "Post Type."
1465
  msgstr ""
 
1466
 
1467
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1468
  msgid ""
1469
+ "<strong>New Feature</strong> A new field was added under the notification "
1470
+ "options to and the management link only by email and not to display it on "
1471
+ "the request link page."
1472
  msgstr ""
 
 
1473
 
1474
+ #: utils/stcr_upgrade.php:461
1475
  msgid ""
1476
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1477
+ "160902"
1478
  msgstr ""
 
 
1479
 
1480
+ #: utils/stcr_upgrade.php:464
1481
  msgid ""
1482
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1483
+ "previous 160831 version."
1484
  msgstr ""
 
 
 
1485
 
1486
+ #: utils/stcr_utils.php:195
1487
+ msgid "StCR Notification"
1488
+ msgstr "Notifiche"
1489
+
1490
+ #: wp_subscribe_reloaded.php:114
1491
+ msgid "Settings"
1492
  msgstr ""
 
 
 
1493
 
1494
+ #: wp_subscribe_reloaded.php:1086
1495
+ msgid "Don't subscribe"
1496
+ msgstr "Non iscrivermi"
1497
 
1498
+ #: wp_subscribe_reloaded.php:1087
1499
+ msgid "All"
1500
+ msgstr "Tutti"
1501
 
1502
  #~ msgid "StCR Subscription Box Position"
1503
  #~ msgstr "Nuova iscrizione per"
langs/subscribe-reloaded-nb_NO.mo CHANGED
Binary file
langs/subscribe-reloaded-nb_NO.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:22-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:22-0700\n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: Odd Henriksen <odd@henriksen.cx>\n"
9
  "Language: nb_NO\n"
10
  "MIME-Version: 1.0\n"
@@ -13,80 +13,141 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: er;\n"
16
- "X-Generator: Poedit 1.6\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: wp_subscribe_reloaded.php:114
20
- msgid "Settings"
21
- msgstr ""
 
22
 
23
- #: wp_subscribe_reloaded.php:1060
24
- msgid "Don't subscribe"
25
- msgstr "La administrator abonnere"
26
 
27
- #: wp_subscribe_reloaded.php:1061
28
- msgid "All"
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgstr ""
30
 
31
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
32
- #: templates/author.php:75
33
- msgid "Replies to my comments"
 
 
 
34
  msgstr ""
35
 
36
- #: templates/request-management-link.php:71 templates/key_expired.php:71
37
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
38
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
 
 
 
 
 
 
 
 
 
39
  msgid "Email"
40
  msgstr "E-post"
41
 
42
- #: templates/request-management-link.php:73 templates/key_expired.php:73
43
- #: templates/subscribe.php:92
44
- msgid "Send"
45
- msgstr "Send"
 
46
 
47
- #: templates/key_expired.php:8
48
- msgid ""
49
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
50
- "enter your email below and a new link will be send."
 
 
 
 
 
 
51
  msgstr ""
52
 
53
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
54
- #: templates/author.php:80
55
- msgid "No subscriptions match your search criteria."
56
  msgstr ""
57
 
58
- #: templates/subscribe.php:42 templates/subscribe.php:43
59
- msgid "New subscription to"
60
- msgstr "Nytt abonnement på"
 
61
 
62
- #: templates/subscribe.php:43
63
- msgid "User:"
64
- msgstr "Bruker:"
 
 
 
 
 
 
 
 
65
 
66
- #: templates/user.php:23 templates/author.php:23
67
- #: options/panel1-business-logic.php:70
68
  msgid "Subscriptions deleted:"
69
  msgstr "Abonnement for:"
70
 
71
- #: templates/user.php:27 templates/author.php:27
72
- #: options/panel1-business-logic.php:74
73
  msgid "Subscriptions suspended:"
74
  msgstr "Abonnementsforespørsel behandlet"
75
 
76
- #: templates/user.php:31 templates/author.php:31
77
- #: options/panel1-business-logic.php:78
78
  msgid "Subscriptions activated:"
79
  msgstr "Abonnement for:"
80
 
81
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
82
- #: templates/author.php:39 options/panel1-business-logic.php:82
83
- #: options/panel1-business-logic.php:86
84
  msgid "Subscriptions updated:"
85
  msgstr "Abonnement for:"
86
 
87
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
88
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
89
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
90
  msgid ""
91
  "Please remember: this operation cannot be undone. Are you sure you want to "
92
  "proceed?"
@@ -94,662 +155,500 @@ msgstr ""
94
  "Merk! Denne operasjonen kan ikke angres senere. Er du sikker på at du vil "
95
  "fortsette?"
96
 
97
- #: templates/user.php:58 templates/author.php:58
98
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
99
- msgstr ""
100
-
101
- #: templates/user.php:63
102
- msgid "F j, Y"
103
- msgstr ""
104
-
105
- #: templates/user.php:67 templates/author.php:69
106
- msgid "Select all"
107
- msgstr "Velg alle"
108
-
109
- #: templates/user.php:68 templates/author.php:70
110
- msgid "Invert selection"
111
- msgstr "Inverter utvalg"
112
-
113
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
114
- msgid "Action:"
115
- msgstr "Handling:"
116
-
117
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
118
- #: options/panel1.php:212
119
- msgid "Delete"
120
- msgstr "Fjern"
121
 
122
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
123
- msgid "Suspend"
124
- msgstr "Deaktiver"
125
 
126
- #: templates/user.php:72 templates/author.php:74
127
- msgid "All comments"
128
  msgstr ""
129
 
130
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
131
- msgid "Activate"
132
- msgstr ""
133
 
134
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
135
- msgid "Update subscriptions"
136
  msgstr "Oppdater abonnement"
137
 
138
- #: templates/author.php:57
139
- msgid "Title"
140
- msgstr "Tittel"
141
 
142
- #: utils/stcr_upgrade.php:55
143
- msgid "Important Notice"
144
- msgstr ""
145
 
146
- #: utils/stcr_upgrade.php:103
147
- msgid ""
148
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
149
- "database has been sanitized to prevent the raw html messages. <a class="
150
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
151
- "src=\""
152
  msgstr ""
153
 
154
- #: utils/stcr_upgrade.php:158
155
  msgid ""
156
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
157
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
158
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
159
  msgstr ""
160
 
161
- #: utils/stcr_upgrade.php:158
162
- msgid ""
163
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
164
- "Comments to prevent confusion between the two plugins."
165
  msgstr ""
166
 
167
- #: utils/stcr_upgrade.php:159
168
- msgid ""
169
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
170
- "that you want to import, you'll need to import that data manually, as only "
171
- "one import routine will ever run to prevent data loss."
172
  msgstr ""
173
 
174
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
175
- #: utils/stcr_upgrade.php:381
176
- msgid ""
177
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
178
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
179
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
180
- "\"stcr-loading-animation\" src=\""
181
- msgstr ""
182
 
183
- #: utils/stcr_upgrade.php:231
 
184
  msgid ""
185
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
186
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
187
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
188
  msgstr ""
 
 
189
 
190
- #: utils/stcr_upgrade.php:231
191
- msgid ""
192
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
193
- "Notification to prevent confusion between the two plugins."
194
- msgstr ""
195
 
196
- #: utils/stcr_upgrade.php:378
197
- msgid ""
198
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
199
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
200
- "were detected and automatically imported into <strong>Subscribe to Comments "
201
- "Reloaded</strong>."
202
  msgstr ""
203
 
204
- #: utils/stcr_upgrade.php:378
205
- msgid ""
206
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
207
- "Subscriptions to prevent confusion between the two plugins."
208
- msgstr ""
209
 
210
- #: utils/stcr_upgrade.php:379
211
- msgid ""
212
- "If you have subscription data from another plugin (such as Subscribe to "
213
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
214
- "you'll need to import that data manually, as only one import routine will "
215
- "ever run to prevent data loss."
 
 
 
 
 
 
 
 
216
  msgstr ""
217
 
218
- #: utils/stcr_upgrade.php:380
219
- msgid ""
220
- "<strong>Note:</strong> If you were previously using the "
221
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
222
- "subscribe-url]</code> shortcode, you'll need to replace those with "
223
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
224
- "respectively."
225
  msgstr ""
226
 
227
- #: utils/stcr_upgrade.php:394
228
- msgid ""
229
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
230
  msgstr ""
231
 
232
- #: utils/stcr_upgrade.php:395
233
- msgid ""
234
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
235
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
 
 
236
  msgstr ""
237
 
238
- #: utils/stcr_upgrade.php:396
239
- msgid ""
240
- "If you want to donate you can do it via <a href=\"\n"
241
- "https://www.paypal.com/cgi-bin/webscr?"
242
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
243
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
244
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
245
  msgstr ""
246
 
247
- #: utils/stcr_upgrade.php:398
248
- msgid ""
249
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
250
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
251
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
252
- "a><img class=\"stcr-loading-animation\" src=\""
253
  msgstr ""
254
 
255
- #: utils/stcr_upgrade.php:409
256
- msgid ""
257
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
258
- "160106."
259
- msgstr ""
260
 
261
- #: utils/stcr_upgrade.php:410
262
- msgid ""
263
- "This version includes many changes and fixes to improve your experience with "
264
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
265
- "email templates, Subscription Checkbox position, and more!"
 
 
 
 
 
266
  msgstr ""
267
 
268
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
269
- #: utils/stcr_upgrade.php:448
270
- msgid ""
271
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
272
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
273
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
274
- "class=\"stcr-loading-animation\" src=\""
275
  msgstr ""
276
 
277
- #: utils/stcr_upgrade.php:424
278
- msgid ""
279
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
280
- "160115."
281
  msgstr ""
282
 
283
- #: utils/stcr_upgrade.php:425
284
- msgid ""
285
- "This version includes fixes to broken links while managing your subscriptions"
286
  msgstr ""
287
 
288
- #: utils/stcr_upgrade.php:439
289
- msgid ""
290
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
291
- "160831"
 
 
 
 
 
 
 
292
  msgstr ""
293
 
294
- #: utils/stcr_upgrade.php:440
295
- msgid "This version includes fixes to many bugs and also new features, "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
296
  msgstr ""
297
 
298
- #: utils/stcr_upgrade.php:442
299
- msgid ""
300
- "<strong>New Feature</strong> Add new option to set the Reply To email "
301
- "address. This will help the subscribers to use the Reply option in their "
302
- "email agents."
303
  msgstr ""
304
 
305
- #: utils/stcr_upgrade.php:443
306
- msgid ""
307
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
308
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
309
  msgstr ""
310
 
311
- #: utils/stcr_upgrade.php:444
312
- msgid ""
313
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
314
- "without loosing your subscriptions. You can use this option also for reset "
315
- "all the settings, see the FAQ."
 
 
 
 
 
316
  msgstr ""
317
 
318
- #: utils/stcr_upgrade.php:445
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
319
  msgid ""
320
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
321
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
322
- "Post Type."
323
  msgstr ""
324
 
325
- #: utils/stcr_upgrade.php:446
326
- msgid ""
327
- "<strong>New Feature</strong> A new field was added under the notification "
328
- "options to and the management link only by email and not to display it on "
329
- "the request link page."
330
  msgstr ""
 
331
 
332
- #: utils/stcr_manage.php:246
333
- msgid ""
334
- "Notify me of followup comments via e-mail. You can also <a "
335
- "href='[subscribe_link]'>subscribe</a> without commenting."
 
 
336
  msgstr ""
337
- "Varsle meg om nye kommentarer via e-post. Du kan også <a "
338
- "href='[subscribe_link]'>abonnere</a> uten å legge inn en kommentar selv."
339
 
340
- #: utils/stcr_manage.php:247
341
- msgid ""
342
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
343
- "subscriptions."
344
  msgstr ""
345
- "Du abonnerer på dette innlegget. <a href='[manager_link]'>Klikk her</a> for "
346
- "å administrere dine abonnement."
347
 
348
- #: utils/stcr_manage.php:248
349
  msgid ""
350
- "Your subscription to this post needs to be confirmed. <a "
351
- "href='[manager_link]'>Manage your subscriptions</a>."
352
  msgstr ""
353
- "Ditt abonnement på dette innlegget må bekreftes. <a "
354
- "href='[manager_link]'>Klikk her</a> for å administrere dine abonnement."
355
 
356
- #: utils/stcr_manage.php:249
357
  msgid ""
358
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
359
  msgstr ""
360
- "<a href='[manager_link]'>Klikk her</a> for å administrere "
361
- "varslingsabonnementene for dette innlegget."
362
 
363
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
364
- #: utils/stcr_manage.php:383 options/index.php:59
365
- msgid "Manage subscriptions"
366
- msgstr "Administrere abonnement"
367
 
368
- #: utils/stcr_manage.php:255
369
- msgid ""
370
- "To manage your subscriptions, please enter your email address here below. We "
371
- "will send you a message containing the link to access your personal "
372
- "management page."
373
  msgstr ""
374
- "For å administrere dine abonnement, vennligst skriv inn e-postadressen din "
375
- "nedenfor. Du vil så bli tilsendt en e-postmelding med en link til en side "
376
- "hvor du kan administrere abonnementene dine."
377
 
378
- #: utils/stcr_manage.php:256
379
  msgid ""
380
- "Thank you for using our subscription service. Your request has been "
381
- "completed, and you should receive an email with the management link in a few "
382
- "minutes."
383
  msgstr ""
384
- "Takk for at du bruker abonnementstjenesten. Din forespørsel er effektuert. "
385
- "Innen få minutter skal du motta en e-postmelding med linken til "
386
- "administrasjonssiden."
387
 
388
- #: utils/stcr_manage.php:257
389
- msgid ""
390
- "You can follow the discussion on <strong>[post_title]</strong> without "
391
- "having to leave a comment. Cool, huh? Just enter your email address in the "
392
- "form here below and you're all set."
393
- msgstr ""
394
- "Du kan følge diskusjonen om innlegget <strong>[post_title]</strong> uten å "
395
- "måtte legge igjen en kommentar selv. Snedig, ikke sant? Bare skriv inn e-"
396
- "postadressen din nedenfor."
397
 
398
- #: utils/stcr_manage.php:258
399
  msgid ""
400
- "Thank you for using our subscription service. Your request has been "
401
- "completed. You will receive a notification email every time a new comment to "
402
- "this article is approved and posted by the administrator."
403
  msgstr ""
404
- "Takk for at du bruker abonnementstjenesten. Din forespørsel er effektuert. "
405
- "Du vil motta en varsel per e-post hver gang en ny kommentar til dette "
406
- "innlegget blir godkjent av administratoren for nettstedet."
407
 
408
- #: utils/stcr_manage.php:259
409
- msgid ""
410
- "Thank you for using our subscription service. In order to confirm your "
411
- "request, please check your email for the verification message and follow the "
412
- "instructions."
413
- msgstr ""
414
- "Takk for at du bruker abonnementstjenesten. Du må bekrefte din forespørsel "
415
- "ved å følge instruksjonene i bekreftelsesmeldingen du nettopp er blitt "
416
- "tilsendt. Det kan ta et par minutter før meldingen kommer frem."
417
-
418
- #: utils/stcr_manage.php:260
419
- msgid ""
420
- "In order to cancel or suspend one or more notifications, select the "
421
- "corresponding checkbox(es) and click on the button at the end of the list."
422
- msgstr ""
423
- "For å avslutte eller midlertidig deaktivere et varslingsabonnement, sett "
424
- "kryss i korresponderende avkrysningsboks, velg handling og klikk på knappen "
425
- "for å lagre endringene i dine abonnement."
426
-
427
- #: utils/stcr_manage.php:261
428
- msgid ""
429
- "In order to cancel or suspend one or more notifications, select the "
430
- "corresponding checkbox(es) and click on the button at the end of the list. "
431
- "You are currently subscribed to:"
432
  msgstr ""
433
- "For å avslutte eller midlertidig deaktivere et varslingsabonnement, sett "
434
- "krys i korresponderende avkrysningsboks, velg handling og klikk på knappen "
435
- "for å lagre endringene i dine abonnement. For øyeblikket abonnerer du på "
436
- "følgende:"
437
 
438
- #: utils/stcr_manage.php:265
439
- msgid "There is a new comment to [post_title]"
440
- msgstr "Det er kommet en ny kommentar til [post_title]"
441
 
442
- #: utils/stcr_manage.php:266
443
- msgid ""
444
- "There is a new comment to [post_title].\n"
445
- "Comment Link: [comment_permalink]\n"
446
- "Author: [comment_author]\n"
447
- "Comment:\n"
448
- "[comment_content]\n"
449
- "Permalink: [post_permalink]\n"
450
- "Manage your subscriptions: [manager_link]"
451
  msgstr ""
452
- "Det har kommet en ny kommentar til '[post_title]':\n"
453
- "[comment_permalink]\n"
454
- "\n"
455
- "Kommentar:\n"
456
- "[comment_content]\n"
457
- "\n"
458
- "Permalenke: [post_permalink]\n"
459
- "\n"
460
- "For å administrere hvilke varslinger du mottar: [manager_link]"
461
-
462
- #: utils/stcr_manage.php:267
463
- msgid "Please confirm your subscription to [post_title]"
464
- msgstr "Vennligst bekreft ditt abonnement på [post_title]"
465
 
466
- #: utils/stcr_manage.php:268
467
  msgid ""
468
- "You have requested to be notified every time a new comment is added to:\n"
469
- "[post_permalink]\n"
470
- "\n"
471
- "Please confirm your request by clicking on this link:\n"
472
- "[confirm_link]"
473
  msgstr ""
474
- "Du har bedt om å bli underrettet hver gang det kommer en ny kommentar til:\n"
475
- "[post_permalink]\n"
476
- "\n"
477
- "Vennligst bekreft forespørselen ved å klikke på følgende link:\n"
478
- "[confirm_link]\n"
479
- "\n"
480
- "Dersom adressen ovenfor ikke kan klikkes på, vennligst kopier den og lim den "
481
- "inn i adresselinjen i nettleseren din."
482
 
483
- #: utils/stcr_manage.php:269
484
- msgid "Manage your subscriptions on [blog_name]"
485
- msgstr "Administrer dine abonnement på [blog_name]"
486
 
487
- #: utils/stcr_manage.php:270
488
  msgid ""
489
- "You have requested to manage your subscriptions to the articles on "
490
- "[blog_name]. Please check the Subscriptions management link in your email"
491
  msgstr ""
 
 
492
 
493
- #: utils/stcr_manage.php:271
494
  msgid ""
495
- "You have requested to manage your subscriptions to the articles on "
496
- "[blog_name]. Follow this link to access your personal page:\n"
497
- "[manager_link]"
498
  msgstr ""
499
- "Du har forespurt å administrere dine varslingsabonnement [blog_name]. "
500
- "Følg denne linken for å komme til din personlige administrasjonsside:\n"
501
  "[manager_link]"
502
 
503
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
504
- msgid "Comment Form"
505
- msgstr "Kommentarfelt"
 
506
 
507
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
508
- msgid "Management Page"
509
  msgstr "Administrasjonsside"
510
 
511
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
512
- msgid "Notifications"
513
- msgstr "Emnefelt i varselmelding"
514
-
515
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
516
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
517
- msgid "Options"
518
- msgstr "Alternativer"
519
-
520
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
521
- msgid "You can help"
522
- msgstr ""
523
-
524
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
525
- msgid "Support"
526
- msgstr "Support"
527
-
528
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
529
- msgid "Donate"
530
- msgstr ""
531
-
532
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
533
- msgid "StCR System"
534
- msgstr ""
535
-
536
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
537
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
538
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
539
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
540
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
541
- msgid "You do not have sufficient permissions to access this page."
542
- msgstr ""
543
-
544
- #: utils/stcr_manage.php:755
545
- msgid "Subscriptions"
546
- msgstr "Administrere abonnement"
547
 
548
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
549
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
550
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
551
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
552
- #: options/panel5.php:161
553
- msgid "No"
554
- msgstr "Nei"
555
 
556
- #: utils/stcr_manage.php:811
557
- msgid ""
558
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
559
  msgstr ""
560
- "Trenger du hjelp med bruk av Subscribe to Comments Reloaded? Besøk det "
561
- "offisielle"
562
-
563
- #: utils/stcr_manage.php:811
564
- msgid "support forum"
565
- msgstr "supportforumet"
566
-
567
- #: utils/stcr_manage.php:812
568
- msgid "Feeling generous?"
569
- msgstr "Føler du deg generøs?"
570
-
571
- #: utils/stcr_manage.php:812
572
- msgid "Donate a few bucks!"
573
- msgstr "Doner noen dollar!"
574
-
575
- #: utils/stcr_utils.php:195
576
- msgid "StCR Notification"
577
- msgstr "Emnefelt i varselmelding"
578
-
579
- #: options/panel2.php:12 options/panel2.php:63
580
- msgid "Enable default checkbox"
581
- msgstr "Aktiver bekreftelse per e-post"
582
-
583
- #: options/panel2.php:15 options/panel2.php:73
584
- msgid "Checked by default"
585
- msgstr "Valgt som standard"
586
-
587
- #: options/panel2.php:18
588
- msgid "Checked by default Value"
589
- msgstr "Valgt som standard"
590
-
591
- #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
592
- msgid "Advanced subscription"
593
- msgstr "Oppdater abonnement"
594
-
595
- #: options/panel2.php:27 options/panel2.php:130
596
- msgid "Custom inline style"
597
- msgstr "Stile inline"
598
-
599
- #: options/panel2.php:30 options/panel2.php:139
600
- msgid "Custom HTML"
601
- msgstr "Egendefinert HTML"
602
 
603
- #: options/panel2.php:34
604
- msgid "Checkbox label"
605
- msgstr "Etikett for avkrysningsboks"
606
-
607
- #: options/panel2.php:37 options/panel2.php:180
608
- msgid "Subscribed label"
609
- msgstr "Etikett abonnert"
610
-
611
- #: options/panel2.php:40
612
- msgid "Awaiting label"
613
- msgstr "Etikett ubekreftet"
614
-
615
- #: options/panel2.php:43 options/panel2.php:213
616
- msgid "Author label"
617
- msgstr "Etikett forfatter"
618
-
619
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
620
- #: options/panel5.php:60 options/panel3.php:70
621
- msgid "Your settings have been successfully updated."
622
- msgstr "Dine innstillinger har blitt vellykket oppdatert."
623
 
624
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
625
- #: options/panel5.php:62 options/panel3.php:72
626
- msgid "There was an error updating the following fields:"
627
- msgstr "Det oppsto en feil ved oppdatering av følgende felter:"
628
 
629
- #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
630
- #: options/panel5.php:78 options/panel5.php:95 options/panel5.php:104
631
- #: options/panel5.php:113 options/panel5.php:123 options/panel5.php:132
632
- #: options/panel5.php:142 options/panel5.php:151 options/panel5.php:160
633
- msgid "Yes"
634
- msgstr "Ja"
635
 
636
- #: options/panel2.php:68
637
- msgid ""
638
- "Disable this option if you want to move the subscription checkbox to a "
639
- "different place on your page."
640
- msgstr ""
641
 
642
- #: options/panel2.php:78
643
- msgid "Decide if the checkbox should be checked by default or not."
644
- msgstr ""
645
- "Angir om avkrysningsboksen skal være avkrysset som standard eller ikke."
646
 
647
- #: options/panel2.php:87
648
- msgid "Default Checkbox Value"
649
- msgstr "Aktiver bekreftelse per e-post"
650
 
651
- #: options/panel2.php:91 options/panel2.php:120
652
- msgid "All new comments"
653
- msgstr ""
654
 
655
- #: options/panel2.php:92 options/panel2.php:121
656
- msgid "Replies to this comment"
657
  msgstr ""
658
 
659
- #: options/panel2.php:94
660
- msgid ""
661
- "Select the default option for the Checkbox. Be careful! Some users might "
662
- "like to be subscribed to all the post."
663
  msgstr ""
664
 
665
- #: options/panel2.php:107
666
  msgid ""
667
- "Allow users to choose from different subscription types (all, replies only)."
 
 
668
  msgstr ""
669
 
670
- #: options/panel2.php:115
671
- msgid "Advanced default"
672
- msgstr "Valgt som standard"
673
 
674
- #: options/panel2.php:119
675
- msgid "None"
 
 
 
 
676
  msgstr ""
 
 
 
 
677
 
678
- #: options/panel2.php:124
679
  msgid ""
680
- "The default subscription type that should be selected when Advanced "
681
- "subscriptions are enable."
682
  msgstr ""
683
 
684
- #: options/panel2.php:135
685
- msgid "Custom inline CSS to add to the checkbox."
686
- msgstr "Egendefinert CSS for avkrysningsboksen."
687
-
688
- #: options/panel2.php:152
689
  msgid ""
690
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
691
- "[checkbox_field], [checkbox_label]"
692
  msgstr ""
693
- "Egendefinert HTML-kode å bruke ved visning av avkrysningsboksen: Tillatte "
694
- "elementer: [checkbox_field], [checkbox_label]"
695
 
696
- #: options/panel2.php:158
697
- msgid "Messages for your visitors"
698
- msgstr ""
699
 
700
- #: options/panel2.php:162
701
- msgid "Default label"
702
- msgstr "Etikett forfatter"
703
 
704
- #: options/panel2.php:175
705
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
706
- msgstr ""
707
- "Etikett forbundet med avkrysningsboksen. Tillatte elementer: [subscribe_link]"
 
708
 
709
- #: options/panel2.php:192
710
  msgid ""
711
- "Label shown to those who are already subscribed to a post. Allowed tag: "
712
- "[manager_link]"
713
  msgstr ""
714
- "Etikett vist til dem som allerede abonnerer et innlegg. Tillatte "
715
- "elementer: [manager_link]"
716
-
717
- #: options/panel2.php:197
718
- msgid "Pending label"
719
- msgstr "Etikett ubekreftet"
720
 
721
- #: options/panel2.php:209
722
  msgid ""
723
- "Label shown to those who are already subscribed, but haven't clicked on the "
724
- "confirmation link yet. Allowed tag: [manager_link]"
725
  msgstr ""
726
- "Etikett vist til dem som allerede abonnerer, men som ikke har klikket "
727
- "linken i bekreftelsesmeldingen ennå. Tillatte elementer: [manager_link]"
728
 
729
- #: options/panel2.php:225
730
  msgid ""
731
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
732
  msgstr ""
733
- "Etikett vist til forfattere (og administratorer). Tillatte elementer: "
734
- "[manager_link]"
735
-
736
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
737
- #: options/panel3.php:253
738
- msgid "Save Changes"
739
- msgstr "Lagre endringer"
740
 
741
- #: options/panel9.php:11
742
- msgid "Support Subscribe to Comments Reloaded"
743
- msgstr ""
744
- "Trenger du hjelp med bruk av Subscribe to Comments Reloaded? Besøk det "
745
- "offisielle"
746
 
747
- #: options/panel9.php:12
748
- msgid ""
749
- "Every contribution that you make is high valuable, so if you consider this "
750
- "plugin a helpful tool we will use your donation to invest on support and "
751
- "developing time."
752
- msgstr ""
753
 
754
  #: options/panel4.php:15 options/panel4.php:94
755
  msgid "Sender name"
@@ -809,73 +708,205 @@ msgid ""
809
  "will be the same as the Sender email address."
810
  msgstr ""
811
 
812
- #: options/panel4.php:135 options/panel3.php:127
813
- msgid "Messages"
814
- msgstr "E-postmeldinger"
815
-
816
  #: options/panel4.php:147
817
  msgid "Subject of the notification email. Allowed tag: [post_title]"
818
  msgstr "Emnefelt i varselmeldingen. Tillatte elementer: [post_title]"
819
 
820
  #: options/panel4.php:170
821
  msgid ""
822
- "Content of the notification email. Allowed tags: [post_title], "
823
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
824
- "[manager_link]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
825
  msgstr ""
826
- "Innhold i varselmeldingen. Tillatte elementer: [post_title], "
827
- "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
828
- "[manager_link]"
829
 
830
- #: options/panel4.php:171
831
  msgid ""
832
- "<p><strong>Note: To get a default template clear all the content and save "
833
- "the options.</strong></p>"
834
  msgstr ""
835
 
836
- #: options/panel4.php:184
837
- msgid "Subject of the confirmation email. Allowed tag: [post_title]"
838
- msgstr "Emnefelt i bekreftelsesmeldingen. Tillatte elementer: [post_title]"
839
 
840
- #: options/panel4.php:204
841
  msgid ""
842
- "Content of the confirmation email. Allowed tags: [post_permalink], "
843
- "[confirm_link], [post_title], [manager_link]"
844
  msgstr ""
845
- "Innhold i bekreftelsesmeldingen. Tillatte elementer: [post_permalink], "
846
- "[confirm_link], [post_title], [manager_link]"
847
 
848
- #: options/panel4.php:217
 
 
 
 
849
  msgid ""
850
- "Subject of the mail sent to those who request to access their management "
851
- "page. Allowed tag: [blog_name]"
852
  msgstr ""
853
- "Emnefelt i e-postmelding som sendes til brukere som forespør adgang til "
854
- "administrasjon av abonnement. Tillatte elementer: [blog_name]"
855
 
856
- #: options/panel4.php:223
857
- msgid "Management Page message"
 
 
 
 
 
 
 
 
 
 
 
 
858
  msgstr ""
859
 
860
- #: options/panel4.php:237
861
- msgid "Content of the management Page message. Allowed tags: [blog_name]."
862
  msgstr ""
863
 
864
- #: options/panel4.php:257
865
- msgid ""
866
- "Content of the management email message. Allowed tags: [blog_name], "
867
- "[manager_link]."
868
  msgstr ""
869
 
870
- #: options/panel4.php:263
871
- msgid "One Click Unsubscribe"
872
- msgstr "La administrator abonnere"
873
 
874
- #: options/panel4.php:277
875
  msgid ""
876
- "Content of the One Click confirmation. Allowed tags: [post_title], "
877
- "[blog_name]"
878
- msgstr "Emnefelt i bekreftelsesmeldingen. Tillatte elementer: [post_title]"
879
 
880
  #: options/panel7.php:8 options/panel8.php:8
881
  msgid "Support the developers"
@@ -942,520 +973,506 @@ msgstr ""
942
  "deg. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
943
  "reloaded/\">Stem</a> på dette innstikket på Wordpress.org."
944
 
945
- #: options/panel1.php:20
946
- msgid "Mass Update Subscriptions"
947
- msgstr "Oppdater abonnement"
948
-
949
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
950
- msgid "From"
951
- msgstr "Fra"
952
 
953
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
954
- msgid "email address"
955
- msgstr "Avsenderadresse"
 
 
 
 
956
 
957
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
958
- msgid "To"
959
- msgstr "Til"
 
 
960
 
961
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
962
- msgid "optional - new email address"
963
- msgstr "Oppdater e-postadresse"
 
 
 
964
 
965
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
966
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
967
- #: options/panel1-edit-subscription.php:26
968
- msgid "Status"
969
- msgstr "Statistikk"
970
 
971
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
972
- msgid "Keep unchanged"
973
  msgstr ""
974
 
975
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
976
- #: options/panel1-add-subscription.php:22
977
- #: options/panel1-edit-subscription.php:29
978
- msgid "Active"
979
- msgstr "Handling"
980
 
981
- #: options/panel1.php:43 options/panel1.php:80
982
- #: options/panel1-add-subscription.php:23
983
- #: options/panel1-edit-subscription.php:30
984
- msgid "Replies only"
985
- msgstr ""
986
 
987
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
988
- msgid "Suspended"
989
- msgstr "Deaktiver"
990
 
991
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
992
- #: options/panel1-edit-subscription.php:33
993
- msgid "Update"
994
- msgstr "Oppdater"
995
 
996
- #: options/panel1.php:49
997
- msgid "More info"
 
998
  msgstr ""
999
 
1000
- #: options/panel1.php:55
1001
  msgid ""
1002
- "This option will allow you to change an email address for another one or to "
1003
- "update the same status for all the subscription on a specific email address."
1004
  msgstr ""
1005
 
1006
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1007
- msgid "Add New Subscription"
 
 
 
 
 
1008
  msgstr "Nytt abonnement på"
1009
 
1010
- #: options/panel1.php:68
1011
- msgid "Post ID"
1012
- msgstr ""
1013
 
1014
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1015
- msgid "Ask user to confirm"
1016
  msgstr ""
1017
 
1018
- #: options/panel1.php:83
1019
- msgid "Add"
1020
  msgstr ""
1021
 
1022
- #: options/panel1.php:98
1023
- msgid "Search subscriptions"
1024
- msgstr "Administrere abonnement"
1025
-
1026
- #: options/panel1.php:102
1027
- #, php-format
1028
  msgid ""
1029
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1030
- "where the"
1031
  msgstr ""
1032
- "Du kan enten <a href=\"%s\">liste opp alle abonnement</a> eller søke frem "
1033
- "abonnement der <b>e-postadresse</b>"
1034
-
1035
- #: options/panel1.php:106
1036
- msgid "email"
1037
- msgstr "E-post"
1038
 
1039
- #: options/panel1.php:107
1040
- msgid "post ID"
 
 
1041
  msgstr ""
 
 
1042
 
1043
- #: options/panel1.php:108
1044
- msgid "status"
1045
- msgstr "Statistikk"
1046
-
1047
- #: options/panel1.php:111
1048
- msgid "equals"
1049
- msgstr "er lik"
1050
-
1051
- #: options/panel1.php:112
1052
- msgid "contains"
1053
- msgstr "inneholder"
1054
 
1055
- #: options/panel1.php:113
1056
- msgid "does not contain"
1057
- msgstr "ikke inneholder"
 
 
 
1058
 
1059
- #: options/panel1.php:114
1060
- msgid "starts with"
 
 
 
1061
  msgstr ""
 
 
 
1062
 
1063
- #: options/panel1.php:115
1064
- msgid "ends with"
 
 
 
1065
  msgstr ""
 
 
 
1066
 
1067
- #: options/panel1.php:118
1068
- msgid "results per page:"
 
 
 
1069
  msgstr ""
 
 
 
1070
 
1071
- #: options/panel1.php:120
1072
- msgid "Search"
1073
- msgstr "Søk"
 
 
 
 
 
 
1074
 
1075
- #: options/panel1.php:128
1076
- msgid "Reverse the order by Post ID"
 
 
 
1077
  msgstr ""
 
 
 
1078
 
1079
- #: options/panel1.php:129 options/panel1.php:130
1080
- msgid "Reverse the order by Date/Time"
 
 
1081
  msgstr ""
 
 
 
1082
 
1083
- #: options/panel1.php:132
1084
- msgid "Post (ID)"
 
 
 
1085
  msgstr ""
 
 
 
 
1086
 
1087
- #: options/panel1.php:135
1088
- msgid "Search query:"
1089
- msgstr "Søk"
1090
 
1091
- #: options/panel1.php:135
1092
- msgid "Rows:"
1093
- msgstr "Rader:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1094
 
1095
- #: options/panel1.php:135
1096
- msgid "of"
1097
- msgstr "av"
1098
 
1099
- #: options/panel1.php:142 options/panel1.php:158
1100
- msgid "Date and Time"
 
 
 
 
 
1101
  msgstr ""
 
 
 
 
 
 
 
 
1102
 
1103
- #: options/panel1.php:168
1104
- msgid "Replies"
1105
- msgstr ""
1106
 
1107
- #: options/panel1.php:169
1108
- msgid "All Comments"
 
 
1109
  msgstr ""
1110
 
1111
- #: options/panel1.php:170
1112
- msgid "Unconfirmed"
 
 
 
1113
  msgstr ""
 
 
 
1114
 
1115
- #: options/panel1.php:171
1116
- msgid "Inactive"
1117
- msgstr "Handling"
1118
 
1119
- #: options/panel1.php:201 options/panel1.php:211
1120
- msgid "Edit"
 
 
 
 
1121
  msgstr ""
1122
 
1123
- #: options/panel1.php:203 options/panel1.php:209
1124
- msgid "Subscription"
1125
  msgstr "Administrere abonnement"
1126
 
1127
- #: options/panel1.php:226
1128
- msgid "Delete forever"
1129
- msgstr "Slett permanent"
1130
-
1131
- #: options/panel1.php:228
1132
- msgid "Activate and set to Y"
1133
- msgstr ""
1134
-
1135
- #: options/panel1.php:229
1136
- msgid "Activate and set to R"
1137
  msgstr ""
 
 
1138
 
1139
- #: options/panel1.php:237
1140
- msgid "Sorry, no subscriptions match your search criteria."
1141
- msgstr "Beklager, ingen abonnement funnet for"
1142
-
1143
- #: options/panel1-business-logic.php:23
1144
- msgid "Subscription added."
1145
- msgstr "Abonnementsforespørsel behandlet"
1146
-
1147
- #: options/panel1-business-logic.php:39
1148
- msgid "Subscriptions updated."
1149
- msgstr "Abonnementsforespørsel behandlet"
1150
-
1151
- #: options/panel1-business-logic.php:51
1152
- msgid "Subscription deleted."
1153
- msgstr "Abonnementsforespørsel behandlet"
1154
-
1155
- #: options/panel1-business-logic.php:110
1156
- msgid "&laquo; Previous"
1157
- msgstr "&laquo; Forrige"
1158
 
1159
- #: options/panel1-business-logic.php:114
1160
- msgid "Next &raquo;"
1161
- msgstr "Neste &raquo;"
1162
 
1163
- #: options/panel1-add-subscription.php:13
1164
- #: options/panel1-edit-subscription.php:13
1165
- msgid "Post:"
1166
- msgstr "Rader:"
1167
 
1168
- #: options/panel5.php:28
1169
- msgid "Safetly Uninstall"
1170
  msgstr ""
1171
 
1172
- #: options/panel5.php:31 options/panel5.php:84
1173
- msgid "Autopurge requests"
1174
- msgstr "Automatisk utløp av forespørsler"
1175
-
1176
- #: options/panel5.php:34 options/panel5.php:93
1177
- msgid "Enable double check"
1178
- msgstr "Aktiver bekreftelse per e-post"
1179
-
1180
- #: options/panel5.php:37 options/panel5.php:101
1181
- msgid "Subscribe authors"
1182
- msgstr "Abonnert"
1183
-
1184
- #: options/panel5.php:40 options/panel5.php:111
1185
- msgid "Enable HTML emails"
1186
  msgstr ""
1187
 
1188
- #: options/panel5.php:43
1189
- msgid "HTMLify Links in HTML emails"
 
 
 
1190
  msgstr ""
1191
 
1192
- #: options/panel5.php:46
1193
- msgid "Send trackbacks"
1194
- msgstr "Send for tilbakesporinger"
1195
-
1196
- #: options/panel5.php:49
1197
- msgid "Notify admin"
1198
- msgstr "Varsle administratorer"
1199
-
1200
- #: options/panel5.php:52 options/panel5.php:149
1201
- msgid "Let admin subscribe"
1202
- msgstr "La administrator abonnere"
1203
-
1204
- #: options/panel5.php:55 options/panel5.php:158
1205
- msgid "BCC admin on Notifications"
1206
- msgstr "Emnefelt i varselmelding"
1207
-
1208
- #: options/panel5.php:76
1209
- msgid "Safely Uninstall"
1210
  msgstr ""
1211
 
1212
- #: options/panel5.php:80
1213
  msgid ""
1214
- "This option will allow you to delete the plugin with WordPress without "
1215
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
1216
  msgstr ""
1217
 
1218
- #: options/panel5.php:87
1219
- msgid "days"
1220
- msgstr "dager"
1221
-
1222
- #: options/panel5.php:88
1223
  msgid ""
1224
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1225
- "this feature."
 
 
1226
  msgstr ""
1227
- "Slett ventende forespørsler (ubekreftede) etter X dager. Bruk null for å "
1228
- "deaktivere denne funksjonen."
1229
 
1230
- #: options/panel5.php:97
1231
  msgid ""
1232
- "Send a notification email to confirm the subscription (to avoid addresses "
1233
- "misuse)."
 
1234
  msgstr ""
1235
- "Send bekreftelsesmelding per e-post for å bekrefte abonnement (for å "
1236
- "bekjempe uautorisert registrering av e-postadresser)."
1237
 
1238
- #: options/panel5.php:106
1239
  msgid ""
1240
- "Automatically subscribe authors to their own articles (not retroactive)."
 
1241
  msgstr ""
1242
 
1243
- #: options/panel5.php:115
1244
  msgid ""
1245
- "If enabled, will send email messages with content-type = text/html instead "
1246
- "of text/plain"
 
 
1247
  msgstr ""
1248
 
1249
- #: options/panel5.php:120
1250
- msgid "HTMLify links in emails"
 
 
1251
  msgstr ""
1252
 
1253
- #: options/panel5.php:125
1254
  msgid ""
1255
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1256
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
 
 
1257
  msgstr ""
1258
 
1259
- #: options/panel5.php:130
1260
- msgid "Process trackbacks"
1261
- msgstr "Send for tilbakesporinger"
1262
-
1263
- #: options/panel5.php:134
1264
  msgid ""
1265
- "Notify users when a new trackback or pingback is added to the discussion."
 
 
 
 
1266
  msgstr ""
1267
- "Varsle abonnenter også når en tilbakesporing eller et tilbakeping "
1268
- "registreres."
1269
-
1270
- #: options/panel5.php:139
1271
- msgid "Track all subscriptions"
1272
- msgstr "Spor alle abonnementspåmeldinger"
1273
 
1274
- #: options/panel5.php:144
1275
- msgid "Notify the administrator when users subscribe without commenting."
1276
- msgstr "Varsle administrator når brukere abonnerer uten å kommentere."
1277
-
1278
- #: options/panel5.php:153
1279
- msgid "Let the administrator subscribe to comments when logged in."
1280
- msgstr "La også innlogget administrator abonnere på kommentarer."
1281
-
1282
- #: options/panel5.php:162
1283
- msgid "Send a copy of all Notifications to the administrator."
1284
  msgstr ""
1285
 
1286
- #: options/panel5.php:167
1287
- msgid "StCR Unique Key"
 
 
1288
  msgstr ""
1289
 
1290
- #: options/panel5.php:172
1291
- msgid "This Unique Key is not set, please click the following button to "
 
 
 
 
 
 
1292
  msgstr ""
1293
 
1294
- #: options/panel5.php:176 options/panel5.php:187
1295
- msgid "Generate"
 
 
 
 
1296
  msgstr ""
1297
 
1298
- #: options/panel5.php:184
1299
  msgid ""
1300
- "This Unique Key will be use to send the notification to your subscribers "
1301
- "with more security."
1302
  msgstr ""
1303
 
1304
- #: options/panel8.php:18
1305
- msgid "Did you find a Bug on the plugin?"
 
 
 
1306
  msgstr ""
1307
 
1308
- #: options/panel8.php:19
 
1309
  msgid ""
1310
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1311
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1312
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1313
- "WordPress Support page."
1314
  msgstr ""
1315
 
1316
- #: options/panel1-edit-subscription.php:8
1317
- msgid "Update Subscription"
1318
- msgstr "Oppdater abonnement"
1319
-
1320
- #: options/panel1-edit-subscription.php:11
1321
- #: options/panel1-edit-subscription.php:21
1322
- #: options/panel1-edit-subscription.php:22
1323
- #: options/panel1-edit-subscription.php:23
1324
- msgid "optional"
1325
- msgstr "Alternativer"
1326
-
1327
- #: options/panel10.php:22 options/panel10.php:23
1328
- msgid "System Information"
1329
  msgstr ""
1330
 
1331
- #: options/panel3.php:13 options/panel3.php:87
1332
- msgid "Virtual Management Page"
1333
- msgstr "Administrasjonsside"
1334
-
1335
- #: options/panel3.php:18 options/panel3.php:96
1336
- msgid "Page title"
1337
- msgstr "Sidetittel"
1338
-
1339
- #: options/panel3.php:23 options/panel3.php:105
1340
- msgid "Management URL"
1341
- msgstr "Administrasjonsside"
1342
-
1343
- #: options/panel3.php:28 options/panel3.php:117
1344
- msgid "Custom HEAD meta"
1345
  msgstr ""
1346
 
1347
- #: options/panel3.php:34 options/panel3.php:131
1348
- msgid "Request link"
1349
- msgstr "Forespørsel om administrasjonslenke"
1350
-
1351
- #: options/panel3.php:39 options/panel3.php:149
1352
- msgid "Request submitted"
1353
- msgstr "Forespørsel sendt"
1354
-
1355
- #: options/panel3.php:44 options/panel3.php:167
1356
- msgid "Subscribe without commenting"
1357
- msgstr "Abonnere uten å kommentere"
1358
-
1359
- #: options/panel3.php:49 options/panel3.php:185
1360
- msgid "Subscription processed"
1361
- msgstr "Abonnementsforespørsel behandlet"
1362
-
1363
- #: options/panel3.php:54 options/panel3.php:203
1364
- msgid "Subscription processed (DCI)"
1365
- msgstr "Abonnementsforespørsel behandlet (DCI)"
1366
-
1367
- #: options/panel3.php:59 options/panel3.php:220
1368
- msgid "Authors"
1369
- msgstr "Forfattere"
1370
-
1371
- #: options/panel3.php:64 options/panel3.php:236
1372
- msgid "Users"
1373
- msgstr "Brukere"
1374
-
1375
- #: options/panel3.php:90
1376
- msgid "Enabled"
1377
  msgstr ""
1378
 
1379
- #: options/panel3.php:91
1380
- msgid "Disabled"
1381
  msgstr ""
1382
 
1383
- #: options/panel3.php:92
1384
  msgid ""
1385
- "Disable the virtual management page if you need to create a <a href="
1386
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1387
- "real-management-page\">real page</a> to make your theme happy."
1388
  msgstr ""
1389
 
1390
- #: options/panel3.php:101
1391
- msgid "Title of the page your visitors will use to manage their subscriptions."
1392
- msgstr "Tittel på siden der brukerne kan administrere sine abonnement."
1393
-
1394
- #: options/panel3.php:109
1395
  msgid ""
1396
- "The permalink for your management page (something like <code>/manage-"
1397
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1398
- "b> actually exist in the system, but its link must follow your permalink "
1399
- "structure."
1400
  msgstr ""
1401
- "Permalenken for administrasjonssiden (som f.eks. <code>/manage-"
1402
- "subscriptions</code> eller <code>/?page_id=345</code>). Denne siden "
1403
- "eksisterer egentlig <b>ikke</b>, men permalenken må følge "
1404
- "permalenkeinnstillingene for din Wordpress-installasjon."
1405
 
1406
- #: options/panel3.php:111
1407
  msgid ""
1408
- "Warning: it looks like the value you are using may be incompatible with your "
1409
- "permalink structure"
 
1410
  msgstr ""
1411
 
1412
- #: options/panel3.php:121
1413
  msgid ""
1414
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1415
- "Use <strong>single</strong> quotes for values."
 
1416
  msgstr ""
1417
 
1418
- #: options/panel3.php:144
1419
- msgid "Text shown to those who request to manage their subscriptions."
1420
- msgstr "Tekst vist til dem som ber om å få administrere sine abonnement."
1421
-
1422
- #: options/panel3.php:162
1423
  msgid ""
1424
- "Thank you note shown after the request here above has been processed. "
1425
- "Allowed tags: [post_title], [post_permalink]"
1426
- msgstr "Takkemerknad vist etter at forespørselen over har blitt behandlet."
 
1427
 
1428
- #: options/panel3.php:180
1429
  msgid ""
1430
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1431
- "[post_title], [post_permalink]"
1432
  msgstr ""
1433
- "Tekst vist til dem som ønsker å abonnere uten å legge igjen kommentar. "
1434
- "Tillatte elementer: [post_title]"
1435
 
1436
- #: options/panel3.php:198
1437
  msgid ""
1438
- "Thank you note shown after the subscription request has been processed "
1439
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1440
  msgstr ""
1441
- "Takkemerknad vist etter at abonneringsforespørselen har blitt behandlet "
1442
- "(bekreftelse via e-post ikke aktivert)."
1443
 
1444
- #: options/panel3.php:216
1445
- msgid ""
1446
- "Thank you note shown after the subscription request has been processed "
1447
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
 
1448
  msgstr ""
1449
- "Takkemerknad vist etter at abonneringsforespørselen har blitt behandlet "
1450
- "(bekreftelse via e-post aktivert)."
1451
 
1452
- #: options/panel3.php:232
1453
- msgid "Introductory text for the authors' management page."
1454
- msgstr "Innledende tekst på administrasjonssiden forfatterne ser."
1455
 
1456
- #: options/panel3.php:248
1457
- msgid "Introductory text for the users' management page."
1458
- msgstr "Innledende tekst på administrasjonssiden brukerne ser."
1459
 
1460
  #~ msgid "StCR Subscription Box Position"
1461
  #~ msgstr "Nytt abonnement på"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:31-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:31-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: Odd Henriksen <odd@henriksen.cx>\n"
9
  "Language: nb_NO\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: er;\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
20
+ #: utils/stcr_manage.php:383
21
+ msgid "Manage subscriptions"
22
+ msgstr "Administrere abonnement"
23
 
24
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
25
+ msgid "Comment Form"
26
+ msgstr "Kommentarfelt"
27
 
28
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
29
+ msgid "Management Page"
30
+ msgstr "Administrasjonsside"
31
+
32
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
33
+ msgid "Notifications"
34
+ msgstr "Emnefelt i varselmelding"
35
+
36
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
37
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
38
+ msgid "Options"
39
+ msgstr "Alternativer"
40
+
41
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
42
+ msgid "You can help"
43
  msgstr ""
44
 
45
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
46
+ msgid "Support"
47
+ msgstr "Support"
48
+
49
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
50
+ msgid "Donate"
51
  msgstr ""
52
 
53
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
54
+ msgid "Add New Subscription"
55
+ msgstr "Nytt abonnement på"
56
+
57
+ #: options/panel1-add-subscription.php:13
58
+ #: options/panel1-edit-subscription.php:13
59
+ msgid "Post:"
60
+ msgstr "Rader:"
61
+
62
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
63
+ #: options/panel1.php:133 templates/key_expired.php:84
64
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
65
+ #: templates/user.php:57
66
  msgid "Email"
67
  msgstr "E-post"
68
 
69
+ #: options/panel1-add-subscription.php:20
70
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
71
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
72
+ msgid "Status"
73
+ msgstr "Statistikk"
74
 
75
+ #: options/panel1-add-subscription.php:22
76
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
77
+ #: options/panel1.php:79 options/panel1.php:172
78
+ msgid "Active"
79
+ msgstr "Handling"
80
+
81
+ #: options/panel1-add-subscription.php:23
82
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
83
+ #: options/panel1.php:80
84
+ msgid "Replies only"
85
  msgstr ""
86
 
87
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
88
+ msgid "Ask user to confirm"
 
89
  msgstr ""
90
 
91
+ #: options/panel1-add-subscription.php:26
92
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
93
+ msgid "Update"
94
+ msgstr "Oppdater"
95
 
96
+ #: options/panel1-business-logic.php:23
97
+ msgid "Subscription added."
98
+ msgstr "Abonnementsforespørsel behandlet"
99
+
100
+ #: options/panel1-business-logic.php:39
101
+ msgid "Subscriptions updated."
102
+ msgstr "Abonnementsforespørsel behandlet"
103
+
104
+ #: options/panel1-business-logic.php:51
105
+ msgid "Subscription deleted."
106
+ msgstr "Abonnementsforespørsel behandlet"
107
 
108
+ #: options/panel1-business-logic.php:70 templates/author.php:23
109
+ #: templates/user.php:23
110
  msgid "Subscriptions deleted:"
111
  msgstr "Abonnement for:"
112
 
113
+ #: options/panel1-business-logic.php:74 templates/author.php:27
114
+ #: templates/user.php:27
115
  msgid "Subscriptions suspended:"
116
  msgstr "Abonnementsforespørsel behandlet"
117
 
118
+ #: options/panel1-business-logic.php:78 templates/author.php:31
119
+ #: templates/user.php:31
120
  msgid "Subscriptions activated:"
121
  msgstr "Abonnement for:"
122
 
123
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
124
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
125
+ #: templates/user.php:39
126
  msgid "Subscriptions updated:"
127
  msgstr "Abonnement for:"
128
 
129
+ #: options/panel1-business-logic.php:110
130
+ msgid "&laquo; Previous"
131
+ msgstr "&laquo; Forrige"
132
+
133
+ #: options/panel1-business-logic.php:114
134
+ msgid "Next &raquo;"
135
+ msgstr "Neste &raquo;"
136
+
137
+ #: options/panel1-edit-subscription.php:8
138
+ msgid "Update Subscription"
139
+ msgstr "Oppdater abonnement"
140
+
141
  #: options/panel1-edit-subscription.php:11
142
+ #: options/panel1-edit-subscription.php:21
143
+ #: options/panel1-edit-subscription.php:22
144
+ #: options/panel1-edit-subscription.php:23
145
+ msgid "optional"
146
+ msgstr "Alternativer"
147
+
148
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
149
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
150
+ #: templates/author.php:52 templates/user.php:52
151
  msgid ""
152
  "Please remember: this operation cannot be undone. Are you sure you want to "
153
  "proceed?"
155
  "Merk! Denne operasjonen kan ikke angres senere. Er du sikker på at du vil "
156
  "fortsette?"
157
 
158
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
159
+ msgid "From"
160
+ msgstr "Fra"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
163
+ msgid "To"
164
+ msgstr "Til"
165
 
166
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
167
+ msgid "Keep unchanged"
168
  msgstr ""
169
 
170
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
171
+ msgid "Suspended"
172
+ msgstr "Deaktiver"
173
 
174
+ #: options/panel1.php:20
175
+ msgid "Mass Update Subscriptions"
176
  msgstr "Oppdater abonnement"
177
 
178
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
179
+ msgid "email address"
180
+ msgstr "Avsenderadresse"
181
 
182
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
183
+ msgid "optional - new email address"
184
+ msgstr "Oppdater e-postadresse"
185
 
186
+ #: options/panel1.php:49
187
+ msgid "More info"
 
 
 
 
188
  msgstr ""
189
 
190
+ #: options/panel1.php:55
191
  msgid ""
192
+ "This option will allow you to change an email address for another one or to "
193
+ "update the same status for all the subscription on a specific email address."
 
194
  msgstr ""
195
 
196
+ #: options/panel1.php:68
197
+ msgid "Post ID"
 
 
198
  msgstr ""
199
 
200
+ #: options/panel1.php:83
201
+ msgid "Add"
 
 
 
202
  msgstr ""
203
 
204
+ #: options/panel1.php:98
205
+ msgid "Search subscriptions"
206
+ msgstr "Administrere abonnement"
 
 
 
 
 
207
 
208
+ #: options/panel1.php:102
209
+ #, php-format
210
  msgid ""
211
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
212
+ "where the"
 
213
  msgstr ""
214
+ "Du kan enten <a href=\"%s\">liste opp alle abonnement</a> eller søke frem "
215
+ "abonnement der <b>e-postadresse</b>"
216
 
217
+ #: options/panel1.php:106
218
+ msgid "email"
219
+ msgstr "E-post"
 
 
220
 
221
+ #: options/panel1.php:107
222
+ msgid "post ID"
 
 
 
 
223
  msgstr ""
224
 
225
+ #: options/panel1.php:108
226
+ msgid "status"
227
+ msgstr "Statistikk"
 
 
228
 
229
+ #: options/panel1.php:111
230
+ msgid "equals"
231
+ msgstr "er lik"
232
+
233
+ #: options/panel1.php:112
234
+ msgid "contains"
235
+ msgstr "inneholder"
236
+
237
+ #: options/panel1.php:113
238
+ msgid "does not contain"
239
+ msgstr "ikke inneholder"
240
+
241
+ #: options/panel1.php:114
242
+ msgid "starts with"
243
  msgstr ""
244
 
245
+ #: options/panel1.php:115
246
+ msgid "ends with"
 
 
 
 
 
247
  msgstr ""
248
 
249
+ #: options/panel1.php:118
250
+ msgid "results per page:"
 
251
  msgstr ""
252
 
253
+ #: options/panel1.php:120
254
+ msgid "Search"
255
+ msgstr "Søk"
256
+
257
+ #: options/panel1.php:128
258
+ msgid "Reverse the order by Post ID"
259
  msgstr ""
260
 
261
+ #: options/panel1.php:129 options/panel1.php:130
262
+ msgid "Reverse the order by Date/Time"
 
 
 
 
 
263
  msgstr ""
264
 
265
+ #: options/panel1.php:132
266
+ msgid "Post (ID)"
 
 
 
 
267
  msgstr ""
268
 
269
+ #: options/panel1.php:135
270
+ msgid "Search query:"
271
+ msgstr "Søk"
 
 
272
 
273
+ #: options/panel1.php:135
274
+ msgid "Rows:"
275
+ msgstr "Rader:"
276
+
277
+ #: options/panel1.php:135
278
+ msgid "of"
279
+ msgstr "av"
280
+
281
+ #: options/panel1.php:142 options/panel1.php:158
282
+ msgid "Date and Time"
283
  msgstr ""
284
 
285
+ #: options/panel1.php:168
286
+ msgid "Replies"
 
 
 
 
 
287
  msgstr ""
288
 
289
+ #: options/panel1.php:169
290
+ msgid "All Comments"
 
 
291
  msgstr ""
292
 
293
+ #: options/panel1.php:170
294
+ msgid "Unconfirmed"
 
295
  msgstr ""
296
 
297
+ #: options/panel1.php:171
298
+ msgid "Inactive"
299
+ msgstr "Handling"
300
+
301
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
302
+ #: templates/user.php:70
303
+ msgid "Delete"
304
+ msgstr "Fjern"
305
+
306
+ #: options/panel1.php:201 options/panel1.php:211
307
+ msgid "Edit"
308
  msgstr ""
309
 
310
+ #: options/panel1.php:203 options/panel1.php:209
311
+ msgid "Subscription"
312
+ msgstr "Administrere abonnement"
313
+
314
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
315
+ msgid "Action:"
316
+ msgstr "Handling:"
317
+
318
+ #: options/panel1.php:226
319
+ msgid "Delete forever"
320
+ msgstr "Slett permanent"
321
+
322
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
323
+ msgid "Suspend"
324
+ msgstr "Deaktiver"
325
+
326
+ #: options/panel1.php:228
327
+ msgid "Activate and set to Y"
328
  msgstr ""
329
 
330
+ #: options/panel1.php:229
331
+ msgid "Activate and set to R"
 
 
 
332
  msgstr ""
333
 
334
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
335
+ msgid "Activate"
 
 
336
  msgstr ""
337
 
338
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
339
+ msgid "Update subscriptions"
340
+ msgstr "Oppdater abonnement"
341
+
342
+ #: options/panel1.php:237
343
+ msgid "Sorry, no subscriptions match your search criteria."
344
+ msgstr "Beklager, ingen abonnement funnet for"
345
+
346
+ #: options/panel10.php:22 options/panel10.php:23
347
+ msgid "System Information"
348
  msgstr ""
349
 
350
+ #: options/panel2.php:12 options/panel2.php:63
351
+ msgid "Enable default checkbox"
352
+ msgstr "Aktiver bekreftelse per e-post"
353
+
354
+ #: options/panel2.php:15 options/panel2.php:73
355
+ msgid "Checked by default"
356
+ msgstr "Valgt som standard"
357
+
358
+ #: options/panel2.php:18
359
+ msgid "Checked by default Value"
360
+ msgstr "Valgt som standard"
361
+
362
+ #: options/panel2.php:21 options/panel2.php:24 options/panel2.php:102
363
+ msgid "Advanced subscription"
364
+ msgstr "Oppdater abonnement"
365
+
366
+ #: options/panel2.php:27 options/panel2.php:130
367
+ msgid "Custom inline style"
368
+ msgstr "Stile inline"
369
+
370
+ #: options/panel2.php:30 options/panel2.php:139
371
+ msgid "Custom HTML"
372
+ msgstr "Egendefinert HTML"
373
+
374
+ #: options/panel2.php:34
375
+ msgid "Checkbox label"
376
+ msgstr "Etikett for avkrysningsboks"
377
+
378
+ #: options/panel2.php:37 options/panel2.php:180
379
+ msgid "Subscribed label"
380
+ msgstr "Etikett abonnert"
381
+
382
+ #: options/panel2.php:40
383
+ msgid "Awaiting label"
384
+ msgstr "Etikett ubekreftet"
385
+
386
+ #: options/panel2.php:43 options/panel2.php:213
387
+ msgid "Author label"
388
+ msgstr "Etikett forfatter"
389
+
390
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
391
+ #: options/panel5.php:18 options/panel5.php:60
392
+ msgid "Your settings have been successfully updated."
393
+ msgstr "Dine innstillinger har blitt vellykket oppdatert."
394
+
395
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
396
+ #: options/panel5.php:20 options/panel5.php:62
397
+ msgid "There was an error updating the following fields:"
398
+ msgstr "Det oppsto en feil ved oppdatering av følgende felter:"
399
+
400
+ #: options/panel2.php:66 options/panel2.php:76 options/panel2.php:105
401
+ #: options/panel5.php:78 options/panel5.php:95 options/panel5.php:104
402
+ #: options/panel5.php:113 options/panel5.php:123 options/panel5.php:132
403
+ #: options/panel5.php:142 options/panel5.php:151 options/panel5.php:160
404
+ msgid "Yes"
405
+ msgstr "Ja"
406
+
407
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
408
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
409
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
410
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
411
+ #: utils/stcr_manage.php:784
412
+ msgid "No"
413
+ msgstr "Nei"
414
+
415
+ #: options/panel2.php:68
416
  msgid ""
417
+ "Disable this option if you want to move the subscription checkbox to a "
418
+ "different place on your page."
 
419
  msgstr ""
420
 
421
+ #: options/panel2.php:78
422
+ msgid "Decide if the checkbox should be checked by default or not."
 
 
 
423
  msgstr ""
424
+ "Angir om avkrysningsboksen skal være avkrysset som standard eller ikke."
425
 
426
+ #: options/panel2.php:87
427
+ msgid "Default Checkbox Value"
428
+ msgstr "Aktiver bekreftelse per e-post"
429
+
430
+ #: options/panel2.php:91 options/panel2.php:120
431
+ msgid "All new comments"
432
  msgstr ""
 
 
433
 
434
+ #: options/panel2.php:92 options/panel2.php:121
435
+ msgid "Replies to this comment"
 
 
436
  msgstr ""
 
 
437
 
438
+ #: options/panel2.php:94
439
  msgid ""
440
+ "Select the default option for the Checkbox. Be careful! Some users might "
441
+ "like to be subscribed to all the post."
442
  msgstr ""
 
 
443
 
444
+ #: options/panel2.php:107
445
  msgid ""
446
+ "Allow users to choose from different subscription types (all, replies only)."
447
  msgstr ""
 
 
448
 
449
+ #: options/panel2.php:115
450
+ msgid "Advanced default"
451
+ msgstr "Valgt som standard"
 
452
 
453
+ #: options/panel2.php:119
454
+ msgid "None"
 
 
 
455
  msgstr ""
 
 
 
456
 
457
+ #: options/panel2.php:124
458
  msgid ""
459
+ "The default subscription type that should be selected when Advanced "
460
+ "subscriptions are enable."
 
461
  msgstr ""
 
 
 
462
 
463
+ #: options/panel2.php:135
464
+ msgid "Custom inline CSS to add to the checkbox."
465
+ msgstr "Egendefinert CSS for avkrysningsboksen."
 
 
 
 
 
 
466
 
467
+ #: options/panel2.php:152
468
  msgid ""
469
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
470
+ "[checkbox_field], [checkbox_label]"
 
471
  msgstr ""
472
+ "Egendefinert HTML-kode å bruke ved visning av avkrysningsboksen: Tillatte "
473
+ "elementer: [checkbox_field], [checkbox_label]"
 
474
 
475
+ #: options/panel2.php:158
476
+ msgid "Messages for your visitors"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
477
  msgstr ""
 
 
 
 
478
 
479
+ #: options/panel2.php:162
480
+ msgid "Default label"
481
+ msgstr "Etikett forfatter"
482
 
483
+ #: options/panel2.php:175
484
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
 
 
 
 
 
 
 
485
  msgstr ""
486
+ "Etikett forbundet med avkrysningsboksen. Tillatte elementer: [subscribe_link]"
 
 
 
 
 
 
 
 
 
 
 
 
487
 
488
+ #: options/panel2.php:192
489
  msgid ""
490
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
491
+ "[manager_link]"
 
 
 
492
  msgstr ""
493
+ "Etikett vist til dem som allerede abonnerer et innlegg. Tillatte "
494
+ "elementer: [manager_link]"
 
 
 
 
 
 
495
 
496
+ #: options/panel2.php:197
497
+ msgid "Pending label"
498
+ msgstr "Etikett ubekreftet"
499
 
500
+ #: options/panel2.php:209
501
  msgid ""
502
+ "Label shown to those who are already subscribed, but haven't clicked on the "
503
+ "confirmation link yet. Allowed tag: [manager_link]"
504
  msgstr ""
505
+ "Etikett vist til dem som allerede abonnerer, men som ikke har klikket på "
506
+ "linken i bekreftelsesmeldingen ennå. Tillatte elementer: [manager_link]"
507
 
508
+ #: options/panel2.php:225
509
  msgid ""
510
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
 
511
  msgstr ""
512
+ "Etikett vist til forfattere (og administratorer). Tillatte elementer: "
 
513
  "[manager_link]"
514
 
515
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
516
+ #: options/panel5.php:195
517
+ msgid "Save Changes"
518
+ msgstr "Lagre endringer"
519
 
520
+ #: options/panel3.php:13 options/panel3.php:87
521
+ msgid "Virtual Management Page"
522
  msgstr "Administrasjonsside"
523
 
524
+ #: options/panel3.php:18 options/panel3.php:96
525
+ msgid "Page title"
526
+ msgstr "Sidetittel"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
527
 
528
+ #: options/panel3.php:23 options/panel3.php:105
529
+ msgid "Management URL"
530
+ msgstr "Administrasjonsside"
 
 
 
 
531
 
532
+ #: options/panel3.php:28 options/panel3.php:117
533
+ msgid "Custom HEAD meta"
 
534
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
535
 
536
+ #: options/panel3.php:34 options/panel3.php:131
537
+ msgid "Request link"
538
+ msgstr "Forespørsel om administrasjonslenke"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
539
 
540
+ #: options/panel3.php:39 options/panel3.php:149
541
+ msgid "Request submitted"
542
+ msgstr "Forespørsel sendt"
 
543
 
544
+ #: options/panel3.php:44 options/panel3.php:167
545
+ msgid "Subscribe without commenting"
546
+ msgstr "Abonnere uten å kommentere"
 
 
 
547
 
548
+ #: options/panel3.php:49 options/panel3.php:185
549
+ msgid "Subscription processed"
550
+ msgstr "Abonnementsforespørsel behandlet"
 
 
551
 
552
+ #: options/panel3.php:54 options/panel3.php:203
553
+ msgid "Subscription processed (DCI)"
554
+ msgstr "Abonnementsforespørsel behandlet (DCI)"
 
555
 
556
+ #: options/panel3.php:59 options/panel3.php:220
557
+ msgid "Authors"
558
+ msgstr "Forfattere"
559
 
560
+ #: options/panel3.php:64 options/panel3.php:236
561
+ msgid "Users"
562
+ msgstr "Brukere"
563
 
564
+ #: options/panel3.php:90
565
+ msgid "Enabled"
566
  msgstr ""
567
 
568
+ #: options/panel3.php:91
569
+ msgid "Disabled"
 
 
570
  msgstr ""
571
 
572
+ #: options/panel3.php:92
573
  msgid ""
574
+ "Disable the virtual management page if you need to create a <a href="
575
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
576
+ "real-management-page\">real page</a> to make your theme happy."
577
  msgstr ""
578
 
579
+ #: options/panel3.php:101
580
+ msgid "Title of the page your visitors will use to manage their subscriptions."
581
+ msgstr "Tittel siden der brukerne kan administrere sine abonnement."
582
 
583
+ #: options/panel3.php:109
584
+ msgid ""
585
+ "The permalink for your management page (something like <code>/manage-"
586
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
587
+ "b> actually exist in the system, but its link must follow your permalink "
588
+ "structure."
589
  msgstr ""
590
+ "Permalenken for administrasjonssiden (som f.eks. <code>/manage-"
591
+ "subscriptions</code> eller <code>/?page_id=345</code>). Denne siden "
592
+ "eksisterer egentlig <b>ikke</b>, men permalenken må følge "
593
+ "permalenkeinnstillingene for din Wordpress-installasjon."
594
 
595
+ #: options/panel3.php:111
596
  msgid ""
597
+ "Warning: it looks like the value you are using may be incompatible with your "
598
+ "permalink structure"
599
  msgstr ""
600
 
601
+ #: options/panel3.php:121
 
 
 
 
602
  msgid ""
603
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
604
+ "Use <strong>single</strong> quotes for values."
605
  msgstr ""
 
 
606
 
607
+ #: options/panel3.php:127 options/panel4.php:135
608
+ msgid "Messages"
609
+ msgstr "E-postmeldinger"
610
 
611
+ #: options/panel3.php:144
612
+ msgid "Text shown to those who request to manage their subscriptions."
613
+ msgstr "Tekst vist til dem som ber om å få administrere sine abonnement."
614
 
615
+ #: options/panel3.php:162
616
+ msgid ""
617
+ "Thank you note shown after the request here above has been processed. "
618
+ "Allowed tags: [post_title], [post_permalink]"
619
+ msgstr "Takkemerknad vist etter at forespørselen over har blitt behandlet."
620
 
621
+ #: options/panel3.php:180
622
  msgid ""
623
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
624
+ "[post_title], [post_permalink]"
625
  msgstr ""
626
+ "Tekst vist til dem som ønsker å abonnere uten å legge igjen kommentar. "
627
+ "Tillatte elementer: [post_title]"
 
 
 
 
628
 
629
+ #: options/panel3.php:198
630
  msgid ""
631
+ "Thank you note shown after the subscription request has been processed "
632
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
633
  msgstr ""
634
+ "Takkemerknad vist etter at abonneringsforespørselen har blitt behandlet "
635
+ "(bekreftelse via e-post ikke aktivert)."
636
 
637
+ #: options/panel3.php:216
638
  msgid ""
639
+ "Thank you note shown after the subscription request has been processed "
640
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
641
  msgstr ""
642
+ "Takkemerknad vist etter at abonneringsforespørselen har blitt behandlet "
643
+ "(bekreftelse via e-post aktivert)."
 
 
 
 
 
644
 
645
+ #: options/panel3.php:232
646
+ msgid "Introductory text for the authors' management page."
647
+ msgstr "Innledende tekst på administrasjonssiden forfatterne ser."
 
 
648
 
649
+ #: options/panel3.php:248
650
+ msgid "Introductory text for the users' management page."
651
+ msgstr "Innledende tekst administrasjonssiden brukerne ser."
 
 
 
652
 
653
  #: options/panel4.php:15 options/panel4.php:94
654
  msgid "Sender name"
708
  "will be the same as the Sender email address."
709
  msgstr ""
710
 
 
 
 
 
711
  #: options/panel4.php:147
712
  msgid "Subject of the notification email. Allowed tag: [post_title]"
713
  msgstr "Emnefelt i varselmeldingen. Tillatte elementer: [post_title]"
714
 
715
  #: options/panel4.php:170
716
  msgid ""
717
+ "Content of the notification email. Allowed tags: [post_title], "
718
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
719
+ "[manager_link]"
720
+ msgstr ""
721
+ "Innhold i varselmeldingen. Tillatte elementer: [post_title], "
722
+ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
723
+ "[manager_link]"
724
+
725
+ #: options/panel4.php:171
726
+ msgid ""
727
+ "<p><strong>Note: To get a default template clear all the content and save "
728
+ "the options.</strong></p>"
729
+ msgstr ""
730
+
731
+ #: options/panel4.php:184
732
+ msgid "Subject of the confirmation email. Allowed tag: [post_title]"
733
+ msgstr "Emnefelt i bekreftelsesmeldingen. Tillatte elementer: [post_title]"
734
+
735
+ #: options/panel4.php:204
736
+ msgid ""
737
+ "Content of the confirmation email. Allowed tags: [post_permalink], "
738
+ "[confirm_link], [post_title], [manager_link]"
739
+ msgstr ""
740
+ "Innhold i bekreftelsesmeldingen. Tillatte elementer: [post_permalink], "
741
+ "[confirm_link], [post_title], [manager_link]"
742
+
743
+ #: options/panel4.php:217
744
+ msgid ""
745
+ "Subject of the mail sent to those who request to access their management "
746
+ "page. Allowed tag: [blog_name]"
747
+ msgstr ""
748
+ "Emnefelt i e-postmelding som sendes til brukere som forespør adgang til "
749
+ "administrasjon av abonnement. Tillatte elementer: [blog_name]"
750
+
751
+ #: options/panel4.php:223
752
+ msgid "Management Page message"
753
+ msgstr ""
754
+
755
+ #: options/panel4.php:237
756
+ msgid "Content of the management Page message. Allowed tags: [blog_name]."
757
+ msgstr ""
758
+
759
+ #: options/panel4.php:257
760
+ msgid ""
761
+ "Content of the management email message. Allowed tags: [blog_name], "
762
+ "[manager_link]."
763
+ msgstr ""
764
+
765
+ #: options/panel4.php:263
766
+ msgid "One Click Unsubscribe"
767
+ msgstr "La administrator abonnere"
768
+
769
+ #: options/panel4.php:277
770
+ msgid ""
771
+ "Content of the One Click confirmation. Allowed tags: [post_title], "
772
+ "[blog_name]"
773
+ msgstr "Emnefelt i bekreftelsesmeldingen. Tillatte elementer: [post_title]"
774
+
775
+ #: options/panel5.php:28
776
+ msgid "Safetly Uninstall"
777
+ msgstr ""
778
+
779
+ #: options/panel5.php:31 options/panel5.php:84
780
+ msgid "Autopurge requests"
781
+ msgstr "Automatisk utløp av forespørsler"
782
+
783
+ #: options/panel5.php:34 options/panel5.php:93
784
+ msgid "Enable double check"
785
+ msgstr "Aktiver bekreftelse per e-post"
786
+
787
+ #: options/panel5.php:37 options/panel5.php:101
788
+ msgid "Subscribe authors"
789
+ msgstr "Abonnert"
790
+
791
+ #: options/panel5.php:40 options/panel5.php:111
792
+ msgid "Enable HTML emails"
793
+ msgstr ""
794
+
795
+ #: options/panel5.php:43
796
+ msgid "HTMLify Links in HTML emails"
797
+ msgstr ""
798
+
799
+ #: options/panel5.php:46
800
+ msgid "Send trackbacks"
801
+ msgstr "Send for tilbakesporinger"
802
+
803
+ #: options/panel5.php:49
804
+ msgid "Notify admin"
805
+ msgstr "Varsle administratorer"
806
+
807
+ #: options/panel5.php:52 options/panel5.php:149
808
+ msgid "Let admin subscribe"
809
+ msgstr "La administrator abonnere"
810
+
811
+ #: options/panel5.php:55 options/panel5.php:158
812
+ msgid "BCC admin on Notifications"
813
+ msgstr "Emnefelt i varselmelding"
814
+
815
+ #: options/panel5.php:76
816
+ msgid "Safely Uninstall"
817
+ msgstr ""
818
+
819
+ #: options/panel5.php:80
820
+ msgid ""
821
+ "This option will allow you to delete the plugin with WordPress without "
822
+ "loosing your subscribers. Any database table and plugin options are wipeout."
823
+ msgstr ""
824
+
825
+ #: options/panel5.php:87
826
+ msgid "days"
827
+ msgstr "dager"
828
+
829
+ #: options/panel5.php:88
830
+ msgid ""
831
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
832
+ "this feature."
833
+ msgstr ""
834
+ "Slett ventende forespørsler (ubekreftede) etter X dager. Bruk null for å "
835
+ "deaktivere denne funksjonen."
836
+
837
+ #: options/panel5.php:97
838
+ msgid ""
839
+ "Send a notification email to confirm the subscription (to avoid addresses "
840
+ "misuse)."
841
+ msgstr ""
842
+ "Send bekreftelsesmelding per e-post for å bekrefte abonnement (for å "
843
+ "bekjempe uautorisert registrering av e-postadresser)."
844
+
845
+ #: options/panel5.php:106
846
+ msgid ""
847
+ "Automatically subscribe authors to their own articles (not retroactive)."
848
  msgstr ""
 
 
 
849
 
850
+ #: options/panel5.php:115
851
  msgid ""
852
+ "If enabled, will send email messages with content-type = text/html instead "
853
+ "of text/plain"
854
  msgstr ""
855
 
856
+ #: options/panel5.php:120
857
+ msgid "HTMLify links in emails"
858
+ msgstr ""
859
 
860
+ #: options/panel5.php:125
861
  msgid ""
862
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
863
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
864
  msgstr ""
 
 
865
 
866
+ #: options/panel5.php:130
867
+ msgid "Process trackbacks"
868
+ msgstr "Send for tilbakesporinger"
869
+
870
+ #: options/panel5.php:134
871
  msgid ""
872
+ "Notify users when a new trackback or pingback is added to the discussion."
 
873
  msgstr ""
874
+ "Varsle abonnenter også når en tilbakesporing eller et tilbakeping "
875
+ "registreres."
876
 
877
+ #: options/panel5.php:139
878
+ msgid "Track all subscriptions"
879
+ msgstr "Spor alle abonnementspåmeldinger"
880
+
881
+ #: options/panel5.php:144
882
+ msgid "Notify the administrator when users subscribe without commenting."
883
+ msgstr "Varsle administrator når brukere abonnerer uten å kommentere."
884
+
885
+ #: options/panel5.php:153
886
+ msgid "Let the administrator subscribe to comments when logged in."
887
+ msgstr "La også innlogget administrator abonnere på kommentarer."
888
+
889
+ #: options/panel5.php:162
890
+ msgid "Send a copy of all Notifications to the administrator."
891
  msgstr ""
892
 
893
+ #: options/panel5.php:167
894
+ msgid "StCR Unique Key"
895
  msgstr ""
896
 
897
+ #: options/panel5.php:172
898
+ msgid "This Unique Key is not set, please click the following button to "
 
 
899
  msgstr ""
900
 
901
+ #: options/panel5.php:176 options/panel5.php:187
902
+ msgid "Generate"
903
+ msgstr ""
904
 
905
+ #: options/panel5.php:184
906
  msgid ""
907
+ "This Unique Key will be use to send the notification to your subscribers "
908
+ "with more security."
909
+ msgstr ""
910
 
911
  #: options/panel7.php:8 options/panel8.php:8
912
  msgid "Support the developers"
973
  "deg. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
974
  "reloaded/\">Stem</a> på dette innstikket på Wordpress.org."
975
 
976
+ #: options/panel8.php:18
977
+ msgid "Did you find a Bug on the plugin?"
978
+ msgstr ""
 
 
 
 
979
 
980
+ #: options/panel8.php:19
981
+ msgid ""
982
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
983
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
984
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
985
+ "WordPress Support page."
986
+ msgstr ""
987
 
988
+ #: options/panel9.php:11
989
+ msgid "Support Subscribe to Comments Reloaded"
990
+ msgstr ""
991
+ "Trenger du hjelp med bruk av Subscribe to Comments Reloaded? Besøk det "
992
+ "offisielle"
993
 
994
+ #: options/panel9.php:12
995
+ msgid ""
996
+ "Every contribution that you make is high valuable, so if you consider this "
997
+ "plugin a helpful tool we will use your donation to invest on support and "
998
+ "developing time."
999
+ msgstr ""
1000
 
1001
+ #: templates/author.php:57
1002
+ msgid "Title"
1003
+ msgstr "Tittel"
 
 
1004
 
1005
+ #: templates/author.php:58 templates/user.php:58
1006
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1007
  msgstr ""
1008
 
1009
+ #: templates/author.php:69 templates/user.php:67
1010
+ msgid "Select all"
1011
+ msgstr "Velg alle"
 
 
1012
 
1013
+ #: templates/author.php:70 templates/user.php:68
1014
+ msgid "Invert selection"
1015
+ msgstr "Inverter utvalg"
 
 
1016
 
1017
+ #: templates/author.php:74 templates/user.php:72
1018
+ msgid "All comments"
1019
+ msgstr ""
1020
 
1021
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1022
+ msgid "Replies to my comments"
1023
+ msgstr ""
 
1024
 
1025
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1026
+ #: templates/user.php:79
1027
+ msgid "No subscriptions match your search criteria."
1028
  msgstr ""
1029
 
1030
+ #: templates/key_expired.php:8
1031
  msgid ""
1032
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1033
+ "enter your email below and a new link will be send."
1034
  msgstr ""
1035
 
1036
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1037
+ #: templates/subscribe.php:106
1038
+ msgid "Send"
1039
+ msgstr "Send"
1040
+
1041
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1042
+ msgid "New subscription to"
1043
  msgstr "Nytt abonnement på"
1044
 
1045
+ #: templates/subscribe.php:44
1046
+ msgid "User:"
1047
+ msgstr "Bruker:"
1048
 
1049
+ #: templates/user.php:63
1050
+ msgid "F j, Y"
1051
  msgstr ""
1052
 
1053
+ #: templates/wrong-request.php:9
1054
+ msgid "You have request to manage another email address and this is forbidden."
1055
  msgstr ""
1056
 
1057
+ #: utils/stcr_manage.php:246
 
 
 
 
 
1058
  msgid ""
1059
+ "Notify me of followup comments via e-mail. You can also <a "
1060
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1061
  msgstr ""
1062
+ "Varsle meg om nye kommentarer via e-post. Du kan også <a "
1063
+ "href='[subscribe_link]'>abonnere</a> uten å legge inn en kommentar selv."
 
 
 
 
1064
 
1065
+ #: utils/stcr_manage.php:247
1066
+ msgid ""
1067
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1068
+ "subscriptions."
1069
  msgstr ""
1070
+ "Du abonnerer på dette innlegget. <a href='[manager_link]'>Klikk her</a> for "
1071
+ "å administrere dine abonnement."
1072
 
1073
+ #: utils/stcr_manage.php:248
1074
+ msgid ""
1075
+ "Your subscription to this post needs to be confirmed. <a "
1076
+ "href='[manager_link]'>Manage your subscriptions</a>."
1077
+ msgstr ""
1078
+ "Ditt abonnement på dette innlegget må bekreftes. <a "
1079
+ "href='[manager_link]'>Klikk her</a> for å administrere dine abonnement."
 
 
 
 
1080
 
1081
+ #: utils/stcr_manage.php:249
1082
+ msgid ""
1083
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1084
+ msgstr ""
1085
+ "<a href='[manager_link]'>Klikk her</a> for å administrere "
1086
+ "varslingsabonnementene for dette innlegget."
1087
 
1088
+ #: utils/stcr_manage.php:255
1089
+ msgid ""
1090
+ "To manage your subscriptions, please enter your email address here below. We "
1091
+ "will send you a message containing the link to access your personal "
1092
+ "management page."
1093
  msgstr ""
1094
+ "For å administrere dine abonnement, vennligst skriv inn e-postadressen din "
1095
+ "nedenfor. Du vil så bli tilsendt en e-postmelding med en link til en side "
1096
+ "hvor du kan administrere abonnementene dine."
1097
 
1098
+ #: utils/stcr_manage.php:256
1099
+ msgid ""
1100
+ "Thank you for using our subscription service. Your request has been "
1101
+ "completed, and you should receive an email with the management link in a few "
1102
+ "minutes."
1103
  msgstr ""
1104
+ "Takk for at du bruker abonnementstjenesten. Din forespørsel er effektuert. "
1105
+ "Innen få minutter skal du motta en e-postmelding med linken til "
1106
+ "administrasjonssiden."
1107
 
1108
+ #: utils/stcr_manage.php:257
1109
+ msgid ""
1110
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1111
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1112
+ "form here below and you're all set."
1113
  msgstr ""
1114
+ "Du kan følge diskusjonen om innlegget <strong>[post_title]</strong> uten å "
1115
+ "måtte legge igjen en kommentar selv. Snedig, ikke sant? Bare skriv inn e-"
1116
+ "postadressen din nedenfor."
1117
 
1118
+ #: utils/stcr_manage.php:258
1119
+ msgid ""
1120
+ "Thank you for using our subscription service. Your request has been "
1121
+ "completed. You will receive a notification email every time a new comment to "
1122
+ "this article is approved and posted by the administrator."
1123
+ msgstr ""
1124
+ "Takk for at du bruker abonnementstjenesten. Din forespørsel er effektuert. "
1125
+ "Du vil motta en varsel per e-post hver gang en ny kommentar til dette "
1126
+ "innlegget blir godkjent av administratoren for nettstedet."
1127
 
1128
+ #: utils/stcr_manage.php:259
1129
+ msgid ""
1130
+ "Thank you for using our subscription service. In order to confirm your "
1131
+ "request, please check your email for the verification message and follow the "
1132
+ "instructions."
1133
  msgstr ""
1134
+ "Takk for at du bruker abonnementstjenesten. Du må bekrefte din forespørsel "
1135
+ "ved å følge instruksjonene i bekreftelsesmeldingen du nettopp er blitt "
1136
+ "tilsendt. Det kan ta et par minutter før meldingen kommer frem."
1137
 
1138
+ #: utils/stcr_manage.php:260
1139
+ msgid ""
1140
+ "In order to cancel or suspend one or more notifications, select the "
1141
+ "corresponding checkbox(es) and click on the button at the end of the list."
1142
  msgstr ""
1143
+ "For å avslutte eller midlertidig deaktivere et varslingsabonnement, sett "
1144
+ "kryss i korresponderende avkrysningsboks, velg handling og klikk på knappen "
1145
+ "for å lagre endringene i dine abonnement."
1146
 
1147
+ #: utils/stcr_manage.php:261
1148
+ msgid ""
1149
+ "In order to cancel or suspend one or more notifications, select the "
1150
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1151
+ "You are currently subscribed to:"
1152
  msgstr ""
1153
+ "For å avslutte eller midlertidig deaktivere et varslingsabonnement, sett "
1154
+ "krys i korresponderende avkrysningsboks, velg handling og klikk på knappen "
1155
+ "for å lagre endringene i dine abonnement. For øyeblikket abonnerer du på "
1156
+ "følgende:"
1157
 
1158
+ #: utils/stcr_manage.php:265
1159
+ msgid "There is a new comment to [post_title]"
1160
+ msgstr "Det er kommet en ny kommentar til [post_title]"
1161
 
1162
+ #: utils/stcr_manage.php:266
1163
+ msgid ""
1164
+ "There is a new comment to [post_title].\n"
1165
+ "Comment Link: [comment_permalink]\n"
1166
+ "Author: [comment_author]\n"
1167
+ "Comment:\n"
1168
+ "[comment_content]\n"
1169
+ "Permalink: [post_permalink]\n"
1170
+ "Manage your subscriptions: [manager_link]"
1171
+ msgstr ""
1172
+ "Det har kommet en ny kommentar til '[post_title]':\n"
1173
+ "[comment_permalink]\n"
1174
+ "\n"
1175
+ "Kommentar:\n"
1176
+ "[comment_content]\n"
1177
+ "\n"
1178
+ "Permalenke: [post_permalink]\n"
1179
+ "\n"
1180
+ "For å administrere hvilke varslinger du mottar: [manager_link]"
1181
 
1182
+ #: utils/stcr_manage.php:267
1183
+ msgid "Please confirm your subscription to [post_title]"
1184
+ msgstr "Vennligst bekreft ditt abonnement på [post_title]"
1185
 
1186
+ #: utils/stcr_manage.php:268
1187
+ msgid ""
1188
+ "You have requested to be notified every time a new comment is added to:\n"
1189
+ "[post_permalink]\n"
1190
+ "\n"
1191
+ "Please confirm your request by clicking on this link:\n"
1192
+ "[confirm_link]"
1193
  msgstr ""
1194
+ "Du har bedt om å bli underrettet hver gang det kommer en ny kommentar til:\n"
1195
+ "[post_permalink]\n"
1196
+ "\n"
1197
+ "Vennligst bekreft forespørselen ved å klikke på følgende link:\n"
1198
+ "[confirm_link]\n"
1199
+ "\n"
1200
+ "Dersom adressen ovenfor ikke kan klikkes på, vennligst kopier den og lim den "
1201
+ "inn i adresselinjen i nettleseren din."
1202
 
1203
+ #: utils/stcr_manage.php:269
1204
+ msgid "Manage your subscriptions on [blog_name]"
1205
+ msgstr "Administrer dine abonnement på [blog_name]"
1206
 
1207
+ #: utils/stcr_manage.php:270
1208
+ msgid ""
1209
+ "You have requested to manage your subscriptions to the articles on "
1210
+ "[blog_name]. Please check the Subscriptions management link in your email"
1211
  msgstr ""
1212
 
1213
+ #: utils/stcr_manage.php:271
1214
+ msgid ""
1215
+ "You have requested to manage your subscriptions to the articles on "
1216
+ "[blog_name]. Follow this link to access your personal page:\n"
1217
+ "[manager_link]"
1218
  msgstr ""
1219
+ "Du har forespurt å administrere dine varslingsabonnement på [blog_name]. "
1220
+ "Følg denne linken for å komme til din personlige administrasjonsside:\n"
1221
+ "[manager_link]"
1222
 
1223
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1224
+ msgid "StCR System"
1225
+ msgstr ""
1226
 
1227
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1228
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1229
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1230
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1231
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1232
+ msgid "You do not have sufficient permissions to access this page."
1233
  msgstr ""
1234
 
1235
+ #: utils/stcr_manage.php:755
1236
+ msgid "Subscriptions"
1237
  msgstr "Administrere abonnement"
1238
 
1239
+ #: utils/stcr_manage.php:811
1240
+ msgid ""
1241
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
 
 
 
 
 
 
 
1242
  msgstr ""
1243
+ "Trenger du hjelp med bruk av Subscribe to Comments Reloaded? Besøk det "
1244
+ "offisielle"
1245
 
1246
+ #: utils/stcr_manage.php:811
1247
+ msgid "support forum"
1248
+ msgstr "supportforumet"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1249
 
1250
+ #: utils/stcr_manage.php:812
1251
+ msgid "Feeling generous?"
1252
+ msgstr "Føler du deg generøs?"
1253
 
1254
+ #: utils/stcr_manage.php:812
1255
+ msgid "Donate a few bucks!"
1256
+ msgstr "Doner noen dollar!"
 
1257
 
1258
+ #: utils/stcr_upgrade.php:55
1259
+ msgid "Important Notice"
1260
  msgstr ""
1261
 
1262
+ #: utils/stcr_upgrade.php:103
1263
+ msgid ""
1264
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1265
+ "database has been sanitized to prevent the raw html messages. <a class="
1266
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1267
+ "src=\""
 
 
 
 
 
 
 
 
1268
  msgstr ""
1269
 
1270
+ #: utils/stcr_upgrade.php:158
1271
+ msgid ""
1272
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1273
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1274
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1275
  msgstr ""
1276
 
1277
+ #: utils/stcr_upgrade.php:158
1278
+ msgid ""
1279
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1280
+ "Comments to prevent confusion between the two plugins."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1281
  msgstr ""
1282
 
1283
+ #: utils/stcr_upgrade.php:159
1284
  msgid ""
1285
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1286
+ "that you want to import, you'll need to import that data manually, as only "
1287
+ "one import routine will ever run to prevent data loss."
1288
  msgstr ""
1289
 
1290
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1291
+ #: utils/stcr_upgrade.php:381
 
 
 
1292
  msgid ""
1293
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1294
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1295
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1296
+ "\"stcr-loading-animation\" src=\""
1297
  msgstr ""
 
 
1298
 
1299
+ #: utils/stcr_upgrade.php:231
1300
  msgid ""
1301
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1302
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1303
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1304
  msgstr ""
 
 
1305
 
1306
+ #: utils/stcr_upgrade.php:231
1307
  msgid ""
1308
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1309
+ "Notification to prevent confusion between the two plugins."
1310
  msgstr ""
1311
 
1312
+ #: utils/stcr_upgrade.php:378
1313
  msgid ""
1314
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1315
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1316
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1317
+ "Reloaded</strong>."
1318
  msgstr ""
1319
 
1320
+ #: utils/stcr_upgrade.php:378
1321
+ msgid ""
1322
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1323
+ "Subscriptions to prevent confusion between the two plugins."
1324
  msgstr ""
1325
 
1326
+ #: utils/stcr_upgrade.php:379
1327
  msgid ""
1328
+ "If you have subscription data from another plugin (such as Subscribe to "
1329
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1330
+ "you'll need to import that data manually, as only one import routine will "
1331
+ "ever run to prevent data loss."
1332
  msgstr ""
1333
 
1334
+ #: utils/stcr_upgrade.php:380
 
 
 
 
1335
  msgid ""
1336
+ "<strong>Note:</strong> If you were previously using the "
1337
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1338
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1339
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1340
+ "respectively."
1341
  msgstr ""
 
 
 
 
 
 
1342
 
1343
+ #: utils/stcr_upgrade.php:394
1344
+ msgid ""
1345
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
 
 
 
 
 
 
 
1346
  msgstr ""
1347
 
1348
+ #: utils/stcr_upgrade.php:395
1349
+ msgid ""
1350
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1351
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1352
  msgstr ""
1353
 
1354
+ #: utils/stcr_upgrade.php:396
1355
+ msgid ""
1356
+ "Please consider to make a donation to support the plugin, you can donate via "
1357
+ "<a href=\"\n"
1358
+ "https://www.paypal.com/cgi-bin/webscr?"
1359
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1360
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1361
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1362
  msgstr ""
1363
 
1364
+ #: utils/stcr_upgrade.php:398
1365
+ msgid ""
1366
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1367
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1368
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1369
+ "a><img class=\"stcr-loading-animation\" src=\""
1370
  msgstr ""
1371
 
1372
+ #: utils/stcr_upgrade.php:409
1373
  msgid ""
1374
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1375
+ "160106."
1376
  msgstr ""
1377
 
1378
+ #: utils/stcr_upgrade.php:410
1379
+ msgid ""
1380
+ "This version includes many changes and fixes to improve your experience with "
1381
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1382
+ "email templates, Subscription Checkbox position, and more!"
1383
  msgstr ""
1384
 
1385
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1386
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1387
  msgid ""
1388
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1389
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1390
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1391
+ "class=\"stcr-loading-animation\" src=\""
1392
  msgstr ""
1393
 
1394
+ #: utils/stcr_upgrade.php:424
1395
+ msgid ""
1396
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1397
+ "160115."
 
 
 
 
 
 
 
 
 
1398
  msgstr ""
1399
 
1400
+ #: utils/stcr_upgrade.php:425
1401
+ msgid ""
1402
+ "This version includes fixes to broken links while managing your subscriptions"
 
 
 
 
 
 
 
 
 
 
 
1403
  msgstr ""
1404
 
1405
+ #: utils/stcr_upgrade.php:439
1406
+ msgid ""
1407
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1408
+ "160831"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1409
  msgstr ""
1410
 
1411
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1412
+ msgid "This version includes fixes to many bugs and also new features, "
1413
  msgstr ""
1414
 
1415
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1416
  msgid ""
1417
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1418
+ "address. This will help the subscribers to use the Reply option in their "
1419
+ "email agents."
1420
  msgstr ""
1421
 
1422
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
 
 
 
 
1423
  msgid ""
1424
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1425
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
 
 
1426
  msgstr ""
 
 
 
 
1427
 
1428
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1429
  msgid ""
1430
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1431
+ "without loosing your subscriptions. You can use this option also for reset "
1432
+ "all the settings, see the FAQ."
1433
  msgstr ""
1434
 
1435
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1436
  msgid ""
1437
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1438
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1439
+ "Post Type."
1440
  msgstr ""
1441
 
1442
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
 
 
 
 
1443
  msgid ""
1444
+ "<strong>New Feature</strong> A new field was added under the notification "
1445
+ "options to and the management link only by email and not to display it on "
1446
+ "the request link page."
1447
+ msgstr ""
1448
 
1449
+ #: utils/stcr_upgrade.php:461
1450
  msgid ""
1451
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1452
+ "160902"
1453
  msgstr ""
 
 
1454
 
1455
+ #: utils/stcr_upgrade.php:464
1456
  msgid ""
1457
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1458
+ "previous 160831 version."
1459
  msgstr ""
 
 
1460
 
1461
+ #: utils/stcr_utils.php:195
1462
+ msgid "StCR Notification"
1463
+ msgstr "Emnefelt i varselmelding"
1464
+
1465
+ #: wp_subscribe_reloaded.php:114
1466
+ msgid "Settings"
1467
  msgstr ""
 
 
1468
 
1469
+ #: wp_subscribe_reloaded.php:1086
1470
+ msgid "Don't subscribe"
1471
+ msgstr "La administrator abonnere"
1472
 
1473
+ #: wp_subscribe_reloaded.php:1087
1474
+ msgid "All"
1475
+ msgstr ""
1476
 
1477
  #~ msgid "StCR Subscription Box Position"
1478
  #~ msgstr "Nytt abonnement på"
langs/subscribe-reloaded-nl_NL.mo CHANGED
Binary file
langs/subscribe-reloaded-nl_NL.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:22-0700\n"
6
- "PO-Revision-Date: 2016-08-31 11:22-0700\n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\n"
10
  "MIME-Version: 1.0\n"
@@ -13,80 +13,141 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: er;\n"
16
- "X-Generator: Poedit 1.6\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: wp_subscribe_reloaded.php:114
20
- msgid "Settings"
21
- msgstr "Instellingen"
 
22
 
23
- #: wp_subscribe_reloaded.php:1060
24
- msgid "Don't subscribe"
25
- msgstr "Meld niet aan"
26
 
27
- #: wp_subscribe_reloaded.php:1061
28
- msgid "All"
29
- msgstr "Alles"
30
 
31
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
32
- #: templates/author.php:75
33
- msgid "Replies to my comments"
34
- msgstr "Reacties op mijn reacties"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
36
- #: templates/request-management-link.php:71 templates/key_expired.php:71
37
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
38
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
 
 
 
 
 
39
  msgid "Email"
40
  msgstr "E-mail"
41
 
42
- #: templates/request-management-link.php:73 templates/key_expired.php:73
43
- #: templates/subscribe.php:92
44
- msgid "Send"
45
- msgstr "Verstuur"
 
46
 
47
- #: templates/key_expired.php:8
48
- msgid ""
49
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
50
- "enter your email below and a new link will be send."
51
- msgstr ""
52
 
53
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
54
- #: templates/author.php:80
55
- msgid "No subscriptions match your search criteria."
56
- msgstr "Geen abonnementen voldoen aan je zoekcriteria."
 
57
 
58
- #: templates/subscribe.php:42 templates/subscribe.php:43
59
- msgid "New subscription to"
60
- msgstr "Nieuw abonnement voor"
61
 
62
- #: templates/subscribe.php:43
63
- msgid "User:"
64
- msgstr "Gebruiker:"
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
- #: templates/user.php:23 templates/author.php:23
67
- #: options/panel1-business-logic.php:70
68
  msgid "Subscriptions deleted:"
69
  msgstr "Abonnementen verwijderd:"
70
 
71
- #: templates/user.php:27 templates/author.php:27
72
- #: options/panel1-business-logic.php:74
73
  msgid "Subscriptions suspended:"
74
  msgstr "Abonnementen op pauze gezet:"
75
 
76
- #: templates/user.php:31 templates/author.php:31
77
- #: options/panel1-business-logic.php:78
78
  msgid "Subscriptions activated:"
79
  msgstr "Abonnementen geactiveerd:"
80
 
81
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
82
- #: templates/author.php:39 options/panel1-business-logic.php:82
83
- #: options/panel1-business-logic.php:86
84
  msgid "Subscriptions updated:"
85
  msgstr "Abonnementen bijgewerkt:"
86
 
87
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
88
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
89
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
90
  msgid ""
91
  "Please remember: this operation cannot be undone. Are you sure you want to "
92
  "proceed?"
@@ -94,507 +155,197 @@ msgstr ""
94
  "Let op! Deze handeling kan niet ongedaan worden gemaakt. Weet je zeker dat "
95
  "je door wilt gaan?"
96
 
97
- #: templates/user.php:58 templates/author.php:58
98
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
99
- msgstr ""
100
- "Legenda: Y = alle reacties, R = alleen reacties op je reacties, C = inactief"
101
-
102
- #: templates/user.php:63
103
- msgid "F j, Y"
104
- msgstr ""
105
-
106
- #: templates/user.php:67 templates/author.php:69
107
- msgid "Select all"
108
- msgstr "Selecteer alles"
109
-
110
- #: templates/user.php:68 templates/author.php:70
111
- msgid "Invert selection"
112
- msgstr "Selectie omkeren"
113
 
114
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
115
- msgid "Action:"
116
- msgstr "Actie:"
117
 
118
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
119
- #: options/panel1.php:212
120
- msgid "Delete"
121
- msgstr "Verwijderen"
122
 
123
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
124
- msgid "Suspend"
125
  msgstr "Pauzeren"
126
 
127
- #: templates/user.php:72 templates/author.php:74
128
- msgid "All comments"
129
- msgstr "Alle nieuwe reacties"
130
-
131
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
132
- msgid "Activate"
133
- msgstr "Activeer"
134
-
135
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
136
- msgid "Update subscriptions"
137
  msgstr "Abonnementen bijwerken"
138
 
139
- #: templates/author.php:57
140
- msgid "Title"
141
- msgstr "Titel"
142
 
143
- #: utils/stcr_upgrade.php:55
144
- msgid "Important Notice"
145
- msgstr "Belangrijke melding"
146
 
147
- #: utils/stcr_upgrade.php:103
148
- msgid ""
149
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
150
- "database has been sanitized to prevent the raw html messages. <a class="
151
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
152
- "src=\""
153
  msgstr ""
154
 
155
- #: utils/stcr_upgrade.php:158
156
  msgid ""
157
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
158
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
159
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
160
  msgstr ""
161
- "Inschrijvingen van de <strong>Subscribe to Comments</strong> plugin zijn "
162
- "gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
163
- "Reloaded</strong>."
164
 
165
- #: utils/stcr_upgrade.php:158
166
- msgid ""
167
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
168
- "Comments to prevent confusion between the two plugins."
169
- msgstr ""
170
- "Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
171
- "problemen te voorkomen."
172
 
173
- #: utils/stcr_upgrade.php:159
174
- msgid ""
175
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
176
- "that you want to import, you'll need to import that data manually, as only "
177
- "one import routine will ever run to prevent data loss."
178
- msgstr ""
179
- "Als je data van Subscribe to Comments Reloaded < v2.0 wilt importeren moet "
180
- "je dit handmatig doen."
181
 
182
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
183
- #: utils/stcr_upgrade.php:381
184
- msgid ""
185
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
186
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
187
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
188
- "\"stcr-loading-animation\" src=\""
189
- msgstr ""
190
 
191
- #: utils/stcr_upgrade.php:231
 
192
  msgid ""
193
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
194
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
195
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
196
  msgstr ""
197
- "Inschrijvingen van de <strong>Subscribe to Comments</strong> plugin zijn "
198
- "gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
199
- "Reloaded</strong>."
200
 
201
- #: utils/stcr_upgrade.php:231
202
- msgid ""
203
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
204
- "Notification to prevent confusion between the two plugins."
205
- msgstr ""
206
- "Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
207
- "problemen te voorkomen."
208
 
209
- #: utils/stcr_upgrade.php:378
210
- msgid ""
211
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
212
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
213
- "were detected and automatically imported into <strong>Subscribe to Comments "
214
- "Reloaded</strong>."
215
- msgstr ""
216
- "Plugin opties en data van de <strong>Subscribe to Comments</strong> plugin "
217
- "zijn gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
218
- "Reloaded</strong>."
219
 
220
- #: utils/stcr_upgrade.php:378
221
- msgid ""
222
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
223
- "Subscriptions to prevent confusion between the two plugins."
224
- msgstr ""
225
- "Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
226
- "problemen te voorkomen."
227
 
228
- #: utils/stcr_upgrade.php:379
229
- msgid ""
230
- "If you have subscription data from another plugin (such as Subscribe to "
231
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
232
- "you'll need to import that data manually, as only one import routine will "
233
- "ever run to prevent data loss."
234
- msgstr ""
235
- "Als je data van een andere plugin (zoals Subscribe to Comments of Subscribe "
236
- "to Comments Reloaded < v2.0) hebt die je wilt importeren dan moet je dit "
237
- "handmatig doen."
238
 
239
- #: utils/stcr_upgrade.php:380
240
- msgid ""
241
- "<strong>Note:</strong> If you were previously using the "
242
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
243
- "subscribe-url]</code> shortcode, you'll need to replace those with "
244
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
245
- "respectively."
246
- msgstr ""
247
- "<strong>Note:</strong> Als je voorheen de "
248
- "<code>wp_comment_subscriptions_show()</code> functie of de <code>[wpcs-"
249
- "subscribe-url]</code> shortcode gebruikte, moet je deze vervangen door "
250
- "respectievelijk <code>subscribe_reloaded_show()</code> en <code>[subscribe-"
251
- "url]</code>."
252
-
253
- #: utils/stcr_upgrade.php:394
254
- msgid ""
255
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
256
- msgstr ""
257
-
258
- #: utils/stcr_upgrade.php:395
259
- msgid ""
260
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
261
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
262
- msgstr ""
263
-
264
- #: utils/stcr_upgrade.php:396
265
- msgid ""
266
- "If you want to donate you can do it via <a href=\"\n"
267
- "https://www.paypal.com/cgi-bin/webscr?"
268
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
269
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
270
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
271
- msgstr ""
272
-
273
- #: utils/stcr_upgrade.php:398
274
- msgid ""
275
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
276
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
277
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
278
- "a><img class=\"stcr-loading-animation\" src=\""
279
- msgstr ""
280
-
281
- #: utils/stcr_upgrade.php:409
282
- msgid ""
283
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
284
- "160106."
285
- msgstr ""
286
-
287
- #: utils/stcr_upgrade.php:410
288
- msgid ""
289
- "This version includes many changes and fixes to improve your experience with "
290
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
291
- "email templates, Subscription Checkbox position, and more!"
292
- msgstr ""
293
-
294
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
295
- #: utils/stcr_upgrade.php:448
296
- msgid ""
297
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
298
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
299
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
300
- "class=\"stcr-loading-animation\" src=\""
301
- msgstr ""
302
-
303
- #: utils/stcr_upgrade.php:424
304
- msgid ""
305
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
306
- "160115."
307
- msgstr ""
308
-
309
- #: utils/stcr_upgrade.php:425
310
- msgid ""
311
- "This version includes fixes to broken links while managing your subscriptions"
312
- msgstr ""
313
-
314
- #: utils/stcr_upgrade.php:439
315
- msgid ""
316
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
317
- "160831"
318
- msgstr ""
319
-
320
- #: utils/stcr_upgrade.php:440
321
- msgid "This version includes fixes to many bugs and also new features, "
322
- msgstr ""
323
-
324
- #: utils/stcr_upgrade.php:442
325
- msgid ""
326
- "<strong>New Feature</strong> Add new option to set the Reply To email "
327
- "address. This will help the subscribers to use the Reply option in their "
328
- "email agents."
329
- msgstr ""
330
-
331
- #: utils/stcr_upgrade.php:443
332
- msgid ""
333
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
334
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
335
- msgstr ""
336
-
337
- #: utils/stcr_upgrade.php:444
338
- msgid ""
339
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
340
- "without loosing your subscriptions. You can use this option also for reset "
341
- "all the settings, see the FAQ."
342
- msgstr ""
343
-
344
- #: utils/stcr_upgrade.php:445
345
- msgid ""
346
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
347
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
348
- "Post Type."
349
- msgstr ""
350
-
351
- #: utils/stcr_upgrade.php:446
352
- msgid ""
353
- "<strong>New Feature</strong> A new field was added under the notification "
354
- "options to and the management link only by email and not to display it on "
355
- "the request link page."
356
- msgstr ""
357
-
358
- #: utils/stcr_manage.php:246
359
- msgid ""
360
- "Notify me of followup comments via e-mail. You can also <a "
361
- "href='[subscribe_link]'>subscribe</a> without commenting."
362
- msgstr ""
363
- "Houd mij op de hoogte van nieuwe reacties. Of <a "
364
- "href='[subscribe_link]'>abonneer jezelf</a> op deze discussie zonder te "
365
- "reageren."
366
-
367
- #: utils/stcr_manage.php:247
368
- msgid ""
369
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
370
- "subscriptions."
371
- msgstr ""
372
- "Je hebt een abonnement op dit bericht. Beheer je abonnementen <a "
373
- "href='[manager_link]'>op deze pagina</a>. "
374
-
375
- #: utils/stcr_manage.php:248
376
- msgid ""
377
- "Your subscription to this post needs to be confirmed. <a "
378
- "href='[manager_link]'>Manage your subscriptions</a>."
379
- msgstr ""
380
- "Je abonnement op dit bericht moet eerst worden bevestigd. <a "
381
- "href='[manager_link]'>Beheer je abonnementen</a>."
382
 
383
- #: utils/stcr_manage.php:249
384
- msgid ""
385
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
386
- msgstr ""
387
- "Op <a href='[manager_link]'>deze pagina</a> kun je de abonnementen van dit "
388
- "bericht beheren."
389
 
390
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
391
- #: utils/stcr_manage.php:383 options/index.php:59
392
- msgid "Manage subscriptions"
393
- msgstr "Beheer Abonnementen"
394
 
395
- #: utils/stcr_manage.php:255
396
- msgid ""
397
- "To manage your subscriptions, please enter your email address here below. We "
398
- "will send you a message containing the link to access your personal "
399
- "management page."
400
- msgstr ""
401
- "Om je abonnementen te beheren moet je hieronder je e-mail adres invullen. We "
402
- "sturen je dan een persoonlijk link waar je je abonnementen aan kunt passen."
403
 
404
- #: utils/stcr_manage.php:256
405
- msgid ""
406
- "Thank you for using our subscription service. Your request has been "
407
- "completed, and you should receive an email with the management link in a few "
408
- "minutes."
409
- msgstr ""
410
- "Bedankt voor het gebruikmaken van onze abonnementen service. Je aanvraag is "
411
- "voltooid en je ontvangt binnen enkele ogenblikken een e-mail met een link "
412
- "naar je persoonlijk beheerpagina."
413
 
414
- #: utils/stcr_manage.php:257
415
- msgid ""
416
- "You can follow the discussion on <strong>[post_title]</strong> without "
417
- "having to leave a comment. Cool, huh? Just enter your email address in the "
418
- "form here below and you're all set."
419
- msgstr ""
420
- "Je wilt je abonneren op de discussie <strong>[post_title]</strong> zonder "
421
- "zelf te reageren? Vul je e-mail adres hieronder in en de rest gaat vanzelf."
422
 
423
- #: utils/stcr_manage.php:258
424
- msgid ""
425
- "Thank you for using our subscription service. Your request has been "
426
- "completed. You will receive a notification email every time a new comment to "
427
- "this article is approved and posted by the administrator."
428
- msgstr ""
429
- "Bedankt voor het gebruikmaken van onze abonnementen service. Je aanvraag is "
430
- "voltooid. Je ontvangt iedere keer een e-mail als er een nieuwe reactie is "
431
- "geplaatst."
432
 
433
- #: utils/stcr_manage.php:259
434
- msgid ""
435
- "Thank you for using our subscription service. In order to confirm your "
436
- "request, please check your email for the verification message and follow the "
437
- "instructions."
438
- msgstr ""
439
- "Bedankt voor het gebruikmaken van onze abonnementen service. Om je aanvraag "
440
- "te voltooien moet je deze eerst bevestigen. Je ontvangt hierover binnen "
441
- "enkele ogenblikken een e-mail bericht."
442
 
443
- #: utils/stcr_manage.php:260
444
- msgid ""
445
- "In order to cancel or suspend one or more notifications, select the "
446
- "corresponding checkbox(es) and click on the button at the end of the list."
447
- msgstr ""
448
- "Om je abonnementen aan te passen vink je het gewenste abonnement aan en klik "
449
- "je op de desgewenst actie."
450
 
451
- #: utils/stcr_manage.php:261
452
- msgid ""
453
- "In order to cancel or suspend one or more notifications, select the "
454
- "corresponding checkbox(es) and click on the button at the end of the list. "
455
- "You are currently subscribed to:"
456
- msgstr ""
457
- "Om je abonnementen aan te passen vink je het gewenste abonnement aan en klik "
458
- "je op de desgewenst actie. Momenteel ben je geabonneerd op de volgende "
459
- "berichten:"
460
 
461
- #: utils/stcr_manage.php:265
462
- msgid "There is a new comment to [post_title]"
463
- msgstr "Er is een nieuwe reactie geplaatst bij [post_title]"
464
 
465
- #: utils/stcr_manage.php:266
466
- msgid ""
467
- "There is a new comment to [post_title].\n"
468
- "Comment Link: [comment_permalink]\n"
469
- "Author: [comment_author]\n"
470
- "Comment:\n"
471
- "[comment_content]\n"
472
- "Permalink: [post_permalink]\n"
473
- "Manage your subscriptions: [manager_link]"
474
- msgstr ""
475
- "Er is een nieuwe reactie op [post_title].\n"
476
- "Link naar de reactie: [comment_permalink]\n"
477
- "Auteur: [comment_author]\n"
478
- "Reactie:\n"
479
- "[comment_content]\n"
480
- "Permalink: [post_permalink]\n"
481
- "Beheer je abonnementen: [manager_link]"
482
 
483
- #: utils/stcr_manage.php:267
484
- msgid "Please confirm your subscription to [post_title]"
485
- msgstr "Bevestig je abonnement op [post_title]"
486
 
487
- #: utils/stcr_manage.php:268
488
- msgid ""
489
- "You have requested to be notified every time a new comment is added to:\n"
490
- "[post_permalink]\n"
491
- "\n"
492
- "Please confirm your request by clicking on this link:\n"
493
- "[confirm_link]"
494
- msgstr ""
495
- "Je hebt aangegeven dat je een melding wilt ontvangen elke keer dan er een "
496
- "nieuwe reactie geplaatst wordt op:\n"
497
- "[post_permalink]\n"
498
- "\n"
499
- "Bevestig je aanmelding door op deze link te klikken:\n"
500
- "[confirm_link]"
501
 
502
- #: utils/stcr_manage.php:269
503
- msgid "Manage your subscriptions on [blog_name]"
504
- msgstr "Beheer je abonnementen op [blog_name]"
505
 
506
- #: utils/stcr_manage.php:270
507
- msgid ""
508
- "You have requested to manage your subscriptions to the articles on "
509
- "[blog_name]. Please check the Subscriptions management link in your email"
510
  msgstr ""
511
 
512
- #: utils/stcr_manage.php:271
513
- msgid ""
514
- "You have requested to manage your subscriptions to the articles on "
515
- "[blog_name]. Follow this link to access your personal page:\n"
516
- "[manager_link]"
517
- msgstr ""
518
- "Je hebt gevraagd om de link naar je abonnementen beheer pagina voor de "
519
- "website [blog_name]. Volg de volgende link om naar je persoonlijke beheer "
520
- "pagina te gaan:\n"
521
- "[manager_link]"
522
 
523
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
524
- msgid "Comment Form"
525
- msgstr "Reactie formulier"
 
526
 
527
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
528
- msgid "Management Page"
529
- msgstr "Beheerpagina"
530
 
531
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
532
- msgid "Notifications"
533
- msgstr "Notificaties"
534
 
535
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
536
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
537
- msgid "Options"
538
- msgstr "Opties"
539
 
540
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
541
- msgid "You can help"
542
- msgstr "Je kunt helpen"
543
 
544
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
545
- msgid "Support"
546
- msgstr "Ondersteuning"
547
 
548
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
549
- msgid "Donate"
550
- msgstr ""
551
 
552
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
553
- msgid "StCR System"
554
- msgstr ""
555
 
556
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
557
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
558
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
559
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
560
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
561
- msgid "You do not have sufficient permissions to access this page."
562
- msgstr ""
563
 
564
- #: utils/stcr_manage.php:755
565
- msgid "Subscriptions"
566
- msgstr "Abonnement"
567
 
568
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
569
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
570
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
571
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
572
- #: options/panel5.php:161
573
- msgid "No"
574
- msgstr "Nee"
575
 
576
- #: utils/stcr_manage.php:811
577
- msgid ""
578
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
579
  msgstr ""
580
- "Hulp nodig bij het gebruik van de Subscribe to Comments Reloaded plugin? "
581
- "Bezoek de officiële"
582
-
583
- #: utils/stcr_manage.php:811
584
- msgid "support forum"
585
- msgstr "support forum"
586
-
587
- #: utils/stcr_manage.php:812
588
- msgid "Feeling generous?"
589
- msgstr "Wees eens gul!"
590
-
591
- #: utils/stcr_manage.php:812
592
- msgid "Donate a few bucks!"
593
- msgstr "Doneer een paar centen!"
594
-
595
- #: utils/stcr_utils.php:195
596
- msgid "StCR Notification"
597
- msgstr "Notificaties"
598
 
599
  #: options/panel2.php:12 options/panel2.php:63
600
  msgid "Enable default checkbox"
@@ -636,13 +387,13 @@ msgstr "Confirmatie label"
636
  msgid "Author label"
637
  msgstr "Auteur label"
638
 
639
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
640
- #: options/panel5.php:60 options/panel3.php:70
641
  msgid "Your settings have been successfully updated."
642
  msgstr "De instellingen zijn succesvol bijgewerkt."
643
 
644
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
645
- #: options/panel5.php:62 options/panel3.php:72
646
  msgid "There was an error updating the following fields:"
647
  msgstr ""
648
  "Er deed zich een probleem voor tijdens het bijwerken van de volgende velden:"
@@ -654,6 +405,14 @@ msgstr ""
654
  msgid "Yes"
655
  msgstr "Ja"
656
 
 
 
 
 
 
 
 
 
657
  #: options/panel2.php:68
658
  msgid ""
659
  "Disable this option if you want to move the subscription checkbox to a "
@@ -699,80 +458,212 @@ msgstr "Geen"
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
- "De default instelling die geselecteerd wordt wanneer de Geavanceerde "
706
- "abonnementen ingeschakeld zijn."
707
-
708
- #: options/panel2.php:135
709
- msgid "Custom inline CSS to add to the checkbox."
710
- msgstr "Aangepaste CSS code die je direct hier kunt invoeren."
711
 
712
- #: options/panel2.php:152
713
  msgid ""
714
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
715
- "[checkbox_field], [checkbox_label]"
716
  msgstr ""
717
- "Aangepaste HTML code die gebruikt wordt tijdens het aanroepen van de "
718
- "checkbox. Tags die zijn toegestaan: [checkbox_field], [checkbox_label]"
719
-
720
- #: options/panel2.php:158
721
- msgid "Messages for your visitors"
722
- msgstr "Berichten voor bezoekers"
723
-
724
- #: options/panel2.php:162
725
- msgid "Default label"
726
- msgstr "Standaard label"
727
-
728
- #: options/panel2.php:175
729
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
730
- msgstr "Label dat bij de checkbox hoort. Beschikbare tag: [subscribe_link]"
731
 
732
- #: options/panel2.php:192
733
  msgid ""
734
- "Label shown to those who are already subscribed to a post. Allowed tag: "
735
- "[manager_link]"
736
  msgstr ""
737
- "Label dat getoond wordt aan gebruikers die al geabonneerd zijn op een "
738
- "bericht. Beschikbare tag: [manager_link]"
739
 
740
- #: options/panel2.php:197
741
- msgid "Pending label"
742
- msgstr "In afwachting label"
743
 
744
- #: options/panel2.php:209
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
- "Label dat wordt getoond aan gebruikers die al geabonneerd zijn, maar dit nog "
750
- "niet hebben bevestigd via hun e-mail. Beschikbare tag: [manager_link]"
751
 
752
- #: options/panel2.php:225
753
  msgid ""
754
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
755
  msgstr ""
756
- "Label dat wordt getoond aan auteurs (en beheerders). Beschikbare tag: "
757
- "[manager_link]"
758
 
759
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
760
- #: options/panel3.php:253
761
- msgid "Save Changes"
762
- msgstr "Opslaan"
 
 
 
763
 
764
- #: options/panel9.php:11
765
- msgid "Support Subscribe to Comments Reloaded"
 
 
766
  msgstr ""
767
- "Hulp nodig bij het gebruik van de Subscribe to Comments Reloaded plugin? "
768
- "Bezoek de officiële"
 
769
 
770
- #: options/panel9.php:12
771
  msgid ""
772
- "Every contribution that you make is high valuable, so if you consider this "
773
- "plugin a helpful tool we will use your donation to invest on support and "
774
- "developing time."
775
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
776
 
777
  #: options/panel4.php:15 options/panel4.php:94
778
  msgid "Sender name"
@@ -836,10 +727,6 @@ msgid ""
836
  "will be the same as the Sender email address."
837
  msgstr ""
838
 
839
- #: options/panel4.php:135 options/panel3.php:127
840
- msgid "Messages"
841
- msgstr "Berichten"
842
-
843
  #: options/panel4.php:147
844
  msgid "Subject of the notification email. Allowed tag: [post_title]"
845
  msgstr "Onderwerp van de notificatie e-mail. Beschikbare tags: [post_title]"
@@ -904,6 +791,150 @@ msgid ""
904
  "[blog_name]"
905
  msgstr "Onderwerp van bevestigings e-mail. Beschikbare tag: [post_title]"
906
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
907
  #: options/panel7.php:8 options/panel8.php:8
908
  msgid "Support the developers"
909
  msgstr "Support de ontwikkelaar"
@@ -970,540 +1001,526 @@ msgstr ""
970
  "comments-reloaded/\">Stem hier</a> op onze plugin in de WordPress Plugin "
971
  "Directory."
972
 
973
- #: options/panel1.php:20
974
- msgid "Mass Update Subscriptions"
975
- msgstr "Abonnementen bijwerken"
976
-
977
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
978
- msgid "From"
979
- msgstr "Van"
980
-
981
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
982
- msgid "email address"
983
- msgstr "E-mail adres van afzender"
984
-
985
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
986
- msgid "To"
987
- msgstr "Naar"
988
-
989
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
990
- msgid "optional - new email address"
991
- msgstr "E-mail adres bijwerken"
992
-
993
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
994
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
995
- #: options/panel1-edit-subscription.php:26
996
- msgid "Status"
997
- msgstr "Status"
998
-
999
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
1000
- msgid "Keep unchanged"
1001
- msgstr "Laat onveranderd"
1002
-
1003
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
1004
- #: options/panel1-add-subscription.php:22
1005
- #: options/panel1-edit-subscription.php:29
1006
- msgid "Active"
1007
- msgstr "Actie"
1008
-
1009
- #: options/panel1.php:43 options/panel1.php:80
1010
- #: options/panel1-add-subscription.php:23
1011
- #: options/panel1-edit-subscription.php:30
1012
- msgid "Replies only"
1013
- msgstr "Alleen reacties op mijn reactie"
1014
-
1015
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
1016
- msgid "Suspended"
1017
- msgstr "Pauzeren"
1018
-
1019
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
1020
- #: options/panel1-edit-subscription.php:33
1021
- msgid "Update"
1022
- msgstr "Bijwerken"
1023
-
1024
- #: options/panel1.php:49
1025
- msgid "More info"
1026
  msgstr ""
1027
 
1028
- #: options/panel1.php:55
1029
  msgid ""
1030
- "This option will allow you to change an email address for another one or to "
1031
- "update the same status for all the subscription on a specific email address."
 
 
1032
  msgstr ""
1033
 
1034
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1035
- msgid "Add New Subscription"
1036
- msgstr "Nieuw abonnement toevoegen"
1037
-
1038
- #: options/panel1.php:68
1039
- msgid "Post ID"
1040
- msgstr "Post (ID)"
1041
-
1042
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1043
- msgid "Ask user to confirm"
1044
- msgstr "Vraag gebruiker te bevestigen"
1045
-
1046
- #: options/panel1.php:83
1047
- msgid "Add"
1048
- msgstr "Voeg toe"
1049
-
1050
- #: options/panel1.php:98
1051
- msgid "Search subscriptions"
1052
- msgstr "Doorzoek abonnementen"
1053
 
1054
- #: options/panel1.php:102
1055
- #, php-format
1056
  msgid ""
1057
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1058
- "where the"
 
1059
  msgstr ""
1060
- "Je kunt <a href=\"%s\">hier alle abonnementen bekijken</a> of filter hier op "
1061
- "<b>e-mail</b>"
1062
-
1063
- #: options/panel1.php:106
1064
- msgid "email"
1065
- msgstr "E-mail"
1066
-
1067
- #: options/panel1.php:107
1068
- msgid "post ID"
1069
- msgstr "Post (ID)"
1070
-
1071
- #: options/panel1.php:108
1072
- msgid "status"
1073
- msgstr "Status"
1074
-
1075
- #: options/panel1.php:111
1076
- msgid "equals"
1077
- msgstr "is exact"
1078
-
1079
- #: options/panel1.php:112
1080
- msgid "contains"
1081
- msgstr "bevat"
1082
 
1083
- #: options/panel1.php:113
1084
- msgid "does not contain"
1085
- msgstr "bevat niet"
1086
 
1087
- #: options/panel1.php:114
1088
- msgid "starts with"
1089
- msgstr "Begint met"
 
1090
 
1091
- #: options/panel1.php:115
1092
- msgid "ends with"
1093
- msgstr "Eindigt met"
1094
 
1095
- #: options/panel1.php:118
1096
- msgid "results per page:"
1097
- msgstr "Resultaten per pagina:"
1098
 
1099
- #: options/panel1.php:120
1100
- msgid "Search"
1101
- msgstr "Zoeken"
1102
 
1103
- #: options/panel1.php:128
1104
- msgid "Reverse the order by Post ID"
1105
- msgstr "Keer sortering om op Post ID"
1106
 
1107
- #: options/panel1.php:129 options/panel1.php:130
1108
- msgid "Reverse the order by Date/Time"
1109
- msgstr "Keer sortering om op Datum/Tijd"
 
1110
 
1111
- #: options/panel1.php:132
1112
- msgid "Post (ID)"
1113
- msgstr "Post (ID)"
 
 
1114
 
1115
- #: options/panel1.php:135
1116
- msgid "Search query:"
1117
- msgstr "Zoekopdracht:"
 
1118
 
1119
- #: options/panel1.php:135
1120
- msgid "Rows:"
1121
- msgstr "Rijen:"
1122
 
1123
- #: options/panel1.php:135
1124
- msgid "of"
1125
- msgstr "van"
1126
 
1127
- #: options/panel1.php:142 options/panel1.php:158
1128
- msgid "Date and Time"
1129
- msgstr "Datum en Tijd"
1130
 
1131
- #: options/panel1.php:168
1132
- msgid "Replies"
1133
- msgstr "Reacties op je reacties"
1134
 
1135
- #: options/panel1.php:169
1136
- msgid "All Comments"
1137
- msgstr "Alle nieuwe reacties"
 
 
 
 
 
1138
 
1139
- #: options/panel1.php:170
1140
- msgid "Unconfirmed"
 
 
1141
  msgstr ""
 
 
1142
 
1143
- #: options/panel1.php:171
1144
- msgid "Inactive"
1145
- msgstr "Actie"
 
 
 
 
1146
 
1147
- #: options/panel1.php:201 options/panel1.php:211
1148
- msgid "Edit"
1149
- msgstr "Bewerk"
 
 
 
1150
 
1151
- #: options/panel1.php:203 options/panel1.php:209
1152
- msgid "Subscription"
1153
- msgstr "Abonnement"
 
 
 
 
 
1154
 
1155
- #: options/panel1.php:226
1156
- msgid "Delete forever"
1157
- msgstr "Voor altijd verwijderen"
 
 
 
 
 
 
1158
 
1159
- #: options/panel1.php:228
1160
- msgid "Activate and set to Y"
1161
- msgstr "Activeer en verander naar Y"
 
 
 
 
 
1162
 
1163
- #: options/panel1.php:229
1164
- msgid "Activate and set to R"
1165
- msgstr "Activeer en verander naar R"
 
 
 
 
 
 
1166
 
1167
- #: options/panel1.php:237
1168
- msgid "Sorry, no subscriptions match your search criteria."
1169
- msgstr "Sorry, er zijn geen abonnementen gevonden."
 
 
 
 
 
 
1170
 
1171
- #: options/panel1-business-logic.php:23
1172
- msgid "Subscription added."
1173
- msgstr "Abonnement toegevoegd."
 
 
 
 
1174
 
1175
- #: options/panel1-business-logic.php:39
1176
- msgid "Subscriptions updated."
1177
- msgstr "Abonnement bijgewerkt."
 
 
 
 
 
 
1178
 
1179
- #: options/panel1-business-logic.php:51
1180
- msgid "Subscription deleted."
1181
- msgstr "Abonnement verwijderd."
1182
 
1183
- #: options/panel1-business-logic.php:110
1184
- msgid "&laquo; Previous"
1185
- msgstr "&laquo; Vorige"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1186
 
1187
- #: options/panel1-business-logic.php:114
1188
- msgid "Next &raquo;"
1189
- msgstr "Volgende &raquo;"
1190
 
1191
- #: options/panel1-add-subscription.php:13
1192
- #: options/panel1-edit-subscription.php:13
1193
- msgid "Post:"
1194
- msgstr "Post:"
 
 
 
 
 
 
 
 
 
 
1195
 
1196
- #: options/panel5.php:28
1197
- msgid "Safetly Uninstall"
 
 
 
 
 
 
1198
  msgstr ""
1199
 
1200
- #: options/panel5.php:31 options/panel5.php:84
1201
- msgid "Autopurge requests"
1202
- msgstr "Automatisch verwerpen van aanvragen"
 
 
 
 
 
 
 
1203
 
1204
- #: options/panel5.php:34 options/panel5.php:93
1205
- msgid "Enable double check"
1206
- msgstr "Dubbele check activeren"
1207
 
1208
- #: options/panel5.php:37 options/panel5.php:101
1209
- msgid "Subscribe authors"
1210
- msgstr "Abonneer auteurs"
 
 
 
 
1211
 
1212
- #: options/panel5.php:40 options/panel5.php:111
1213
- msgid "Enable HTML emails"
1214
- msgstr "Activeer HTML e-mails"
1215
 
1216
- #: options/panel5.php:43
1217
- msgid "HTMLify Links in HTML emails"
1218
- msgstr "HTMLify Links in HTML e-mails"
 
 
 
1219
 
1220
- #: options/panel5.php:46
1221
- msgid "Send trackbacks"
1222
- msgstr "Verstuur trackbacks"
1223
 
1224
- #: options/panel5.php:49
1225
- msgid "Notify admin"
1226
- msgstr "Notificeer beheerder"
1227
 
1228
- #: options/panel5.php:52 options/panel5.php:149
1229
- msgid "Let admin subscribe"
1230
- msgstr "Laat beheerder abonneren"
1231
 
1232
- #: options/panel5.php:55 options/panel5.php:158
1233
- msgid "BCC admin on Notifications"
1234
- msgstr "BCC admin bij alle notificaties"
1235
 
1236
- #: options/panel5.php:76
1237
- msgid "Safely Uninstall"
 
 
 
 
1238
  msgstr ""
1239
 
1240
- #: options/panel5.php:80
1241
  msgid ""
1242
- "This option will allow you to delete the plugin with WordPress without "
1243
- "loosing your subscribers. Any database table and plugin options are wipeout."
 
1244
  msgstr ""
 
 
 
1245
 
1246
- #: options/panel5.php:87
1247
- msgid "days"
1248
- msgstr "dagen"
1249
-
1250
- #: options/panel5.php:88
1251
  msgid ""
1252
- "Delete pending subscriptions (not confirmed) after X days. Zero disables "
1253
- "this feature."
1254
  msgstr ""
1255
- "Verwijder abonnementen die niet bevestigd zijn na X dagen. 0 deactiveert "
1256
- "deze functie."
1257
 
1258
- #: options/panel5.php:97
1259
  msgid ""
1260
- "Send a notification email to confirm the subscription (to avoid addresses "
1261
- "misuse)."
 
1262
  msgstr ""
1263
- "Verstuur een notificatie e-mail om het abonnement te bevestigen en misbruik "
1264
- "te voorkomen."
1265
 
1266
- #: options/panel5.php:106
 
1267
  msgid ""
1268
- "Automatically subscribe authors to their own articles (not retroactive)."
1269
- msgstr "Abonneer auteurs automatisch op hun eigen artikelen."
 
 
 
1270
 
1271
- #: options/panel5.php:115
1272
  msgid ""
1273
- "If enabled, will send email messages with content-type = text/html instead "
1274
- "of text/plain"
 
1275
  msgstr ""
1276
- "Als dit aan staat dan zullen emails verstuurd worden met content-type text/"
1277
- "html in plaats van text/plain."
1278
-
1279
- #: options/panel5.php:120
1280
- msgid "HTMLify links in emails"
1281
- msgstr "HTMLify Links in HTML e-mails"
1282
 
1283
- #: options/panel5.php:125
1284
  msgid ""
1285
- "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
1286
- "&lt;/a&gt;</code> (only when HTML emails enabled)."
1287
  msgstr ""
1288
- "Wanneer ingeschakeld zorgt dit ervoor dat alle links in berichten met "
1289
- "<code>&lt;a href=\"\"&gt;&lt;/a&gt;</code> samengepakt worden (alleen "
1290
- "wanneer HTML e-mails gebruikt worden)."
1291
 
1292
- #: options/panel5.php:130
1293
- msgid "Process trackbacks"
1294
- msgstr "Verwerk trackbacks"
 
 
 
 
 
 
 
1295
 
1296
- #: options/panel5.php:134
1297
  msgid ""
1298
- "Notify users when a new trackback or pingback is added to the discussion."
 
1299
  msgstr ""
1300
- "Stel de gebruikers op de hoogte als er nieuwe trackbacks of pingbacks bij "
1301
- "een bericht geplaatst worden."
1302
-
1303
- #: options/panel5.php:139
1304
- msgid "Track all subscriptions"
1305
- msgstr "Bekijk alle abonnementen"
1306
 
1307
- #: options/panel5.php:144
1308
- msgid "Notify the administrator when users subscribe without commenting."
 
 
 
 
1309
  msgstr ""
1310
- "Stel beheerders op de hoogte als iemand een abonnement neemt zonder eerst "
1311
- "zelf te reageren."
 
1312
 
1313
- #: options/panel5.php:153
1314
- msgid "Let the administrator subscribe to comments when logged in."
 
 
 
 
 
1315
  msgstr ""
1316
- "Moet de beheerder zich kunnen abonneren op berichten als deze is ingelogd?"
1317
-
1318
- #: options/panel5.php:162
1319
- msgid "Send a copy of all Notifications to the administrator."
1320
- msgstr "Verstuur een kopie van alle notificaties naar de admin."
1321
 
1322
- #: options/panel5.php:167
1323
- msgid "StCR Unique Key"
 
1324
  msgstr ""
1325
 
1326
- #: options/panel5.php:172
1327
- msgid "This Unique Key is not set, please click the following button to "
 
 
1328
  msgstr ""
1329
 
1330
- #: options/panel5.php:176 options/panel5.php:187
1331
- msgid "Generate"
 
 
 
 
 
 
1332
  msgstr ""
1333
 
1334
- #: options/panel5.php:184
1335
  msgid ""
1336
- "This Unique Key will be use to send the notification to your subscribers "
1337
- "with more security."
 
 
1338
  msgstr ""
1339
 
1340
- #: options/panel8.php:18
1341
- msgid "Did you find a Bug on the plugin?"
 
 
1342
  msgstr ""
1343
 
1344
- #: options/panel8.php:19
1345
  msgid ""
1346
- "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1347
- "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1348
- "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1349
- "WordPress Support page."
1350
  msgstr ""
1351
 
1352
- #: options/panel1-edit-subscription.php:8
1353
- msgid "Update Subscription"
1354
- msgstr "Abonnement bijwerken"
1355
-
1356
- #: options/panel1-edit-subscription.php:11
1357
- #: options/panel1-edit-subscription.php:21
1358
- #: options/panel1-edit-subscription.php:22
1359
- #: options/panel1-edit-subscription.php:23
1360
- msgid "optional"
1361
- msgstr "optioneel"
1362
-
1363
- #: options/panel10.php:22 options/panel10.php:23
1364
- msgid "System Information"
1365
  msgstr ""
1366
 
1367
- #: options/panel3.php:13 options/panel3.php:87
1368
- msgid "Virtual Management Page"
1369
- msgstr "Virtuele beheerpagina"
1370
-
1371
- #: options/panel3.php:18 options/panel3.php:96
1372
- msgid "Page title"
1373
- msgstr "Pagina titel"
1374
-
1375
- #: options/panel3.php:23 options/panel3.php:105
1376
- msgid "Management URL"
1377
- msgstr "Beheerpagina URL"
1378
-
1379
- #: options/panel3.php:28 options/panel3.php:117
1380
- msgid "Custom HEAD meta"
1381
- msgstr "Custom HEAD meta"
1382
-
1383
- #: options/panel3.php:34 options/panel3.php:131
1384
- msgid "Request link"
1385
- msgstr "Aanvraag link"
1386
-
1387
- #: options/panel3.php:39 options/panel3.php:149
1388
- msgid "Request submitted"
1389
- msgstr "Aanvraag verzonden"
1390
-
1391
- #: options/panel3.php:44 options/panel3.php:167
1392
- msgid "Subscribe without commenting"
1393
- msgstr "Abonneer zonder te reageren"
1394
-
1395
- #: options/panel3.php:49 options/panel3.php:185
1396
- msgid "Subscription processed"
1397
- msgstr "Aanvraag verwerkt"
1398
-
1399
- #: options/panel3.php:54 options/panel3.php:203
1400
- msgid "Subscription processed (DCI)"
1401
- msgstr "Aanvraag verwerkt (DCI)"
1402
-
1403
- #: options/panel3.php:59 options/panel3.php:220
1404
- msgid "Authors"
1405
- msgstr "Auteurs"
1406
-
1407
- #: options/panel3.php:64 options/panel3.php:236
1408
- msgid "Users"
1409
- msgstr "Gebruikers"
1410
-
1411
- #: options/panel3.php:90
1412
- msgid "Enabled"
1413
- msgstr "Geactiveerd"
1414
-
1415
- #: options/panel3.php:91
1416
- msgid "Disabled"
1417
- msgstr "Dedeactiveerd"
1418
-
1419
- #: options/panel3.php:92
1420
  msgid ""
1421
- "Disable the virtual management page if you need to create a <a href="
1422
- "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
1423
- "real-management-page\">real page</a> to make your theme happy."
1424
  msgstr ""
1425
- "Zet de virtuele management pagina uit als je een <a href=\"http://lab."
1426
- "duechiacchiere.it/index.php?topic=71.0\">echte pagina</a> moet creëren."
1427
 
1428
- #: options/panel3.php:101
1429
- msgid "Title of the page your visitors will use to manage their subscriptions."
 
1430
  msgstr ""
1431
- "Titel van de pagina waar gebruikers hun abonnementen aan kunnen passen."
1432
 
1433
- #: options/panel3.php:109
1434
  msgid ""
1435
- "The permalink for your management page (something like <code>/manage-"
1436
- "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
1437
- "b> actually exist in the system, but its link must follow your permalink "
1438
- "structure."
1439
  msgstr ""
1440
- "De permalink voor je abonnementen beheer pagina (zoiets als <code>/manage-"
1441
- "subscriptions</code> of <code>/?page_id=345</code>). Deze pagina <b>bestaat "
1442
- "niet</b> daadwerkelijk in het systeem, maar de permalink moet wel voldoen "
1443
- "aan je Wordpress permalink instellingen."
1444
 
1445
- #: options/panel3.php:111
 
 
 
 
1446
  msgid ""
1447
- "Warning: it looks like the value you are using may be incompatible with your "
1448
- "permalink structure"
 
1449
  msgstr ""
1450
- "Let op: het lijkt erop dat de waarde die je gebruikt niet compatibel is met "
1451
- "jouw permalink structuur."
1452
 
1453
- #: options/panel3.php:121
1454
  msgid ""
1455
- "Specify your custom HTML code to be added to the HEAD section of the page. "
1456
- "Use <strong>single</strong> quotes for values."
1457
  msgstr ""
1458
- "Specificeer je eigen HTML-code die aan de HEAD van je pagina toegevoegd moet "
1459
- "worden. Gebruik <strong>enkele</strong> quotes voor waarden."
1460
 
1461
- #: options/panel3.php:144
1462
- msgid "Text shown to those who request to manage their subscriptions."
 
 
 
1463
  msgstr ""
1464
- "Tekst die verschijnt voor gebruikers die hun abonnementen willen aanpassen."
1465
 
1466
- #: options/panel3.php:162
1467
  msgid ""
1468
- "Thank you note shown after the request here above has been processed. "
1469
- "Allowed tags: [post_title], [post_permalink]"
 
1470
  msgstr ""
1471
- "Het bedankberichtje dat wordt getoond als bovenstaande aanvragen zijn "
1472
- "doorgevoerd. Beschikbare tags: [post_title], [post_permalink]"
1473
 
1474
- #: options/panel3.php:180
1475
  msgid ""
1476
- "Text shown to those who want to subscribe without commenting. Allowed tags: "
1477
- "[post_title], [post_permalink]"
 
1478
  msgstr ""
1479
- "Tekst die wordt getoond aan gebruikers die willen abonneren zonder eerst "
1480
- "zelf te reageren. Beschikbare tags: [post_title], [post_permalink]"
1481
 
1482
- #: options/panel3.php:198
1483
  msgid ""
1484
- "Thank you note shown after the subscription request has been processed "
1485
- "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
1486
  msgstr ""
1487
- "Het bedankberichtje dat wordt getoond nadat de aanvragen zijn doorgevoerd "
1488
- "(als double check-in uit staat). Beschikbare tags: [post_title], "
1489
- "[post_permalink]"
1490
 
1491
- #: options/panel3.php:216
1492
  msgid ""
1493
- "Thank you note shown after the subscription request has been processed "
1494
- "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
1495
  msgstr ""
1496
- "Een bedankberichtje dat wordt getoond als een gebruiker een abonnement heeft "
1497
- "aangevraagd (double check-in moet aan staan). Beschikbare tags: "
1498
- "[post_title], [post_permalink]"
1499
 
1500
- #: options/panel3.php:232
1501
- msgid "Introductory text for the authors' management page."
1502
- msgstr "Intoductietekst voor de beheerpagina van auteurs."
1503
 
1504
- #: options/panel3.php:248
1505
- msgid "Introductory text for the users' management page."
1506
- msgstr "Intoductietekst voor de beheerpagina van de gebruikers."
 
 
 
 
 
 
 
 
1507
 
1508
  #~ msgid ""
1509
  #~ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:31-0600\n"
6
+ "PO-Revision-Date: 2016-09-02 19:31-0600\n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: nl_NL\n"
10
  "MIME-Version: 1.0\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: er;\n"
16
+ "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
20
+ #: utils/stcr_manage.php:383
21
+ msgid "Manage subscriptions"
22
+ msgstr "Beheer Abonnementen"
23
 
24
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
25
+ msgid "Comment Form"
26
+ msgstr "Reactie formulier"
27
 
28
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
29
+ msgid "Management Page"
30
+ msgstr "Beheerpagina"
31
 
32
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
33
+ msgid "Notifications"
34
+ msgstr "Notificaties"
35
+
36
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
37
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
38
+ msgid "Options"
39
+ msgstr "Opties"
40
+
41
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
42
+ msgid "You can help"
43
+ msgstr "Je kunt helpen"
44
+
45
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
46
+ msgid "Support"
47
+ msgstr "Ondersteuning"
48
+
49
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
50
+ msgid "Donate"
51
+ msgstr ""
52
+
53
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
54
+ msgid "Add New Subscription"
55
+ msgstr "Nieuw abonnement toevoegen"
56
 
57
+ #: options/panel1-add-subscription.php:13
58
+ #: options/panel1-edit-subscription.php:13
59
+ msgid "Post:"
60
+ msgstr "Post:"
61
+
62
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
63
+ #: options/panel1.php:133 templates/key_expired.php:84
64
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
65
+ #: templates/user.php:57
66
  msgid "Email"
67
  msgstr "E-mail"
68
 
69
+ #: options/panel1-add-subscription.php:20
70
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
71
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
72
+ msgid "Status"
73
+ msgstr "Status"
74
 
75
+ #: options/panel1-add-subscription.php:22
76
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
77
+ #: options/panel1.php:79 options/panel1.php:172
78
+ msgid "Active"
79
+ msgstr "Actie"
80
 
81
+ #: options/panel1-add-subscription.php:23
82
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
83
+ #: options/panel1.php:80
84
+ msgid "Replies only"
85
+ msgstr "Alleen reacties op mijn reactie"
86
 
87
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
88
+ msgid "Ask user to confirm"
89
+ msgstr "Vraag gebruiker te bevestigen"
90
 
91
+ #: options/panel1-add-subscription.php:26
92
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
93
+ msgid "Update"
94
+ msgstr "Bijwerken"
95
+
96
+ #: options/panel1-business-logic.php:23
97
+ msgid "Subscription added."
98
+ msgstr "Abonnement toegevoegd."
99
+
100
+ #: options/panel1-business-logic.php:39
101
+ msgid "Subscriptions updated."
102
+ msgstr "Abonnement bijgewerkt."
103
+
104
+ #: options/panel1-business-logic.php:51
105
+ msgid "Subscription deleted."
106
+ msgstr "Abonnement verwijderd."
107
 
108
+ #: options/panel1-business-logic.php:70 templates/author.php:23
109
+ #: templates/user.php:23
110
  msgid "Subscriptions deleted:"
111
  msgstr "Abonnementen verwijderd:"
112
 
113
+ #: options/panel1-business-logic.php:74 templates/author.php:27
114
+ #: templates/user.php:27
115
  msgid "Subscriptions suspended:"
116
  msgstr "Abonnementen op pauze gezet:"
117
 
118
+ #: options/panel1-business-logic.php:78 templates/author.php:31
119
+ #: templates/user.php:31
120
  msgid "Subscriptions activated:"
121
  msgstr "Abonnementen geactiveerd:"
122
 
123
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
124
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
125
+ #: templates/user.php:39
126
  msgid "Subscriptions updated:"
127
  msgstr "Abonnementen bijgewerkt:"
128
 
129
+ #: options/panel1-business-logic.php:110
130
+ msgid "&laquo; Previous"
131
+ msgstr "&laquo; Vorige"
132
+
133
+ #: options/panel1-business-logic.php:114
134
+ msgid "Next &raquo;"
135
+ msgstr "Volgende &raquo;"
136
+
137
+ #: options/panel1-edit-subscription.php:8
138
+ msgid "Update Subscription"
139
+ msgstr "Abonnement bijwerken"
140
+
141
  #: options/panel1-edit-subscription.php:11
142
+ #: options/panel1-edit-subscription.php:21
143
+ #: options/panel1-edit-subscription.php:22
144
+ #: options/panel1-edit-subscription.php:23
145
+ msgid "optional"
146
+ msgstr "optioneel"
147
+
148
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
149
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
150
+ #: templates/author.php:52 templates/user.php:52
151
  msgid ""
152
  "Please remember: this operation cannot be undone. Are you sure you want to "
153
  "proceed?"
155
  "Let op! Deze handeling kan niet ongedaan worden gemaakt. Weet je zeker dat "
156
  "je door wilt gaan?"
157
 
158
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
159
+ msgid "From"
160
+ msgstr "Van"
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
163
+ msgid "To"
164
+ msgstr "Naar"
165
 
166
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
167
+ msgid "Keep unchanged"
168
+ msgstr "Laat onveranderd"
 
169
 
170
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
171
+ msgid "Suspended"
172
  msgstr "Pauzeren"
173
 
174
+ #: options/panel1.php:20
175
+ msgid "Mass Update Subscriptions"
 
 
 
 
 
 
 
 
176
  msgstr "Abonnementen bijwerken"
177
 
178
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
179
+ msgid "email address"
180
+ msgstr "E-mail adres van afzender"
181
 
182
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
183
+ msgid "optional - new email address"
184
+ msgstr "E-mail adres bijwerken"
185
 
186
+ #: options/panel1.php:49
187
+ msgid "More info"
 
 
 
 
188
  msgstr ""
189
 
190
+ #: options/panel1.php:55
191
  msgid ""
192
+ "This option will allow you to change an email address for another one or to "
193
+ "update the same status for all the subscription on a specific email address."
 
194
  msgstr ""
 
 
 
195
 
196
+ #: options/panel1.php:68
197
+ msgid "Post ID"
198
+ msgstr "Post (ID)"
 
 
 
 
199
 
200
+ #: options/panel1.php:83
201
+ msgid "Add"
202
+ msgstr "Voeg toe"
 
 
 
 
 
203
 
204
+ #: options/panel1.php:98
205
+ msgid "Search subscriptions"
206
+ msgstr "Doorzoek abonnementen"
 
 
 
 
 
207
 
208
+ #: options/panel1.php:102
209
+ #, php-format
210
  msgid ""
211
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
212
+ "where the"
 
213
  msgstr ""
214
+ "Je kunt <a href=\"%s\">hier alle abonnementen bekijken</a> of filter hier op "
215
+ "<b>e-mail</b>"
 
216
 
217
+ #: options/panel1.php:106
218
+ msgid "email"
219
+ msgstr "E-mail"
 
 
 
 
220
 
221
+ #: options/panel1.php:107
222
+ msgid "post ID"
223
+ msgstr "Post (ID)"
 
 
 
 
 
 
 
224
 
225
+ #: options/panel1.php:108
226
+ msgid "status"
227
+ msgstr "Status"
 
 
 
 
228
 
229
+ #: options/panel1.php:111
230
+ msgid "equals"
231
+ msgstr "is exact"
 
 
 
 
 
 
 
232
 
233
+ #: options/panel1.php:112
234
+ msgid "contains"
235
+ msgstr "bevat"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
 
237
+ #: options/panel1.php:113
238
+ msgid "does not contain"
239
+ msgstr "bevat niet"
 
 
 
240
 
241
+ #: options/panel1.php:114
242
+ msgid "starts with"
243
+ msgstr "Begint met"
 
244
 
245
+ #: options/panel1.php:115
246
+ msgid "ends with"
247
+ msgstr "Eindigt met"
 
 
 
 
 
248
 
249
+ #: options/panel1.php:118
250
+ msgid "results per page:"
251
+ msgstr "Resultaten per pagina:"
 
 
 
 
 
 
252
 
253
+ #: options/panel1.php:120
254
+ msgid "Search"
255
+ msgstr "Zoeken"
 
 
 
 
 
256
 
257
+ #: options/panel1.php:128
258
+ msgid "Reverse the order by Post ID"
259
+ msgstr "Keer sortering om op Post ID"
 
 
 
 
 
 
260
 
261
+ #: options/panel1.php:129 options/panel1.php:130
262
+ msgid "Reverse the order by Date/Time"
263
+ msgstr "Keer sortering om op Datum/Tijd"
 
 
 
 
 
 
264
 
265
+ #: options/panel1.php:132
266
+ msgid "Post (ID)"
267
+ msgstr "Post (ID)"
 
 
 
 
268
 
269
+ #: options/panel1.php:135
270
+ msgid "Search query:"
271
+ msgstr "Zoekopdracht:"
 
 
 
 
 
 
272
 
273
+ #: options/panel1.php:135
274
+ msgid "Rows:"
275
+ msgstr "Rijen:"
276
 
277
+ #: options/panel1.php:135
278
+ msgid "of"
279
+ msgstr "van"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
280
 
281
+ #: options/panel1.php:142 options/panel1.php:158
282
+ msgid "Date and Time"
283
+ msgstr "Datum en Tijd"
284
 
285
+ #: options/panel1.php:168
286
+ msgid "Replies"
287
+ msgstr "Reacties op je reacties"
 
 
 
 
 
 
 
 
 
 
 
288
 
289
+ #: options/panel1.php:169
290
+ msgid "All Comments"
291
+ msgstr "Alle nieuwe reacties"
292
 
293
+ #: options/panel1.php:170
294
+ msgid "Unconfirmed"
 
 
295
  msgstr ""
296
 
297
+ #: options/panel1.php:171
298
+ msgid "Inactive"
299
+ msgstr "Actie"
 
 
 
 
 
 
 
300
 
301
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
302
+ #: templates/user.php:70
303
+ msgid "Delete"
304
+ msgstr "Verwijderen"
305
 
306
+ #: options/panel1.php:201 options/panel1.php:211
307
+ msgid "Edit"
308
+ msgstr "Bewerk"
309
 
310
+ #: options/panel1.php:203 options/panel1.php:209
311
+ msgid "Subscription"
312
+ msgstr "Abonnement"
313
 
314
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
315
+ msgid "Action:"
316
+ msgstr "Actie:"
 
317
 
318
+ #: options/panel1.php:226
319
+ msgid "Delete forever"
320
+ msgstr "Voor altijd verwijderen"
321
 
322
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
323
+ msgid "Suspend"
324
+ msgstr "Pauzeren"
325
 
326
+ #: options/panel1.php:228
327
+ msgid "Activate and set to Y"
328
+ msgstr "Activeer en verander naar Y"
329
 
330
+ #: options/panel1.php:229
331
+ msgid "Activate and set to R"
332
+ msgstr "Activeer en verander naar R"
333
 
334
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
335
+ msgid "Activate"
336
+ msgstr "Activeer"
 
 
 
 
337
 
338
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
339
+ msgid "Update subscriptions"
340
+ msgstr "Abonnementen bijwerken"
341
 
342
+ #: options/panel1.php:237
343
+ msgid "Sorry, no subscriptions match your search criteria."
344
+ msgstr "Sorry, er zijn geen abonnementen gevonden."
 
 
 
 
345
 
346
+ #: options/panel10.php:22 options/panel10.php:23
347
+ msgid "System Information"
 
348
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
 
350
  #: options/panel2.php:12 options/panel2.php:63
351
  msgid "Enable default checkbox"
387
  msgid "Author label"
388
  msgstr "Auteur label"
389
 
390
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
391
+ #: options/panel5.php:18 options/panel5.php:60
392
  msgid "Your settings have been successfully updated."
393
  msgstr "De instellingen zijn succesvol bijgewerkt."
394
 
395
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
396
+ #: options/panel5.php:20 options/panel5.php:62
397
  msgid "There was an error updating the following fields:"
398
  msgstr ""
399
  "Er deed zich een probleem voor tijdens het bijwerken van de volgende velden:"
405
  msgid "Yes"
406
  msgstr "Ja"
407
 
408
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
409
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
410
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
411
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
412
+ #: utils/stcr_manage.php:784
413
+ msgid "No"
414
+ msgstr "Nee"
415
+
416
  #: options/panel2.php:68
417
  msgid ""
418
  "Disable this option if you want to move the subscription checkbox to a "
458
 
459
  #: options/panel2.php:124
460
  msgid ""
461
+ "The default subscription type that should be selected when Advanced "
462
+ "subscriptions are enable."
463
+ msgstr ""
464
+ "De default instelling die geselecteerd wordt wanneer de Geavanceerde "
465
+ "abonnementen ingeschakeld zijn."
466
+
467
+ #: options/panel2.php:135
468
+ msgid "Custom inline CSS to add to the checkbox."
469
+ msgstr "Aangepaste CSS code die je direct hier kunt invoeren."
470
+
471
+ #: options/panel2.php:152
472
+ msgid ""
473
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
474
+ "[checkbox_field], [checkbox_label]"
475
+ msgstr ""
476
+ "Aangepaste HTML code die gebruikt wordt tijdens het aanroepen van de "
477
+ "checkbox. Tags die zijn toegestaan: [checkbox_field], [checkbox_label]"
478
+
479
+ #: options/panel2.php:158
480
+ msgid "Messages for your visitors"
481
+ msgstr "Berichten voor bezoekers"
482
+
483
+ #: options/panel2.php:162
484
+ msgid "Default label"
485
+ msgstr "Standaard label"
486
+
487
+ #: options/panel2.php:175
488
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
489
+ msgstr "Label dat bij de checkbox hoort. Beschikbare tag: [subscribe_link]"
490
+
491
+ #: options/panel2.php:192
492
+ msgid ""
493
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
494
+ "[manager_link]"
495
+ msgstr ""
496
+ "Label dat getoond wordt aan gebruikers die al geabonneerd zijn op een "
497
+ "bericht. Beschikbare tag: [manager_link]"
498
+
499
+ #: options/panel2.php:197
500
+ msgid "Pending label"
501
+ msgstr "In afwachting label"
502
+
503
+ #: options/panel2.php:209
504
+ msgid ""
505
+ "Label shown to those who are already subscribed, but haven't clicked on the "
506
+ "confirmation link yet. Allowed tag: [manager_link]"
507
+ msgstr ""
508
+ "Label dat wordt getoond aan gebruikers die al geabonneerd zijn, maar dit nog "
509
+ "niet hebben bevestigd via hun e-mail. Beschikbare tag: [manager_link]"
510
+
511
+ #: options/panel2.php:225
512
+ msgid ""
513
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
514
+ msgstr ""
515
+ "Label dat wordt getoond aan auteurs (en beheerders). Beschikbare tag: "
516
+ "[manager_link]"
517
+
518
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
519
+ #: options/panel5.php:195
520
+ msgid "Save Changes"
521
+ msgstr "Opslaan"
522
+
523
+ #: options/panel3.php:13 options/panel3.php:87
524
+ msgid "Virtual Management Page"
525
+ msgstr "Virtuele beheerpagina"
526
+
527
+ #: options/panel3.php:18 options/panel3.php:96
528
+ msgid "Page title"
529
+ msgstr "Pagina titel"
530
+
531
+ #: options/panel3.php:23 options/panel3.php:105
532
+ msgid "Management URL"
533
+ msgstr "Beheerpagina URL"
534
+
535
+ #: options/panel3.php:28 options/panel3.php:117
536
+ msgid "Custom HEAD meta"
537
+ msgstr "Custom HEAD meta"
538
+
539
+ #: options/panel3.php:34 options/panel3.php:131
540
+ msgid "Request link"
541
+ msgstr "Aanvraag link"
542
+
543
+ #: options/panel3.php:39 options/panel3.php:149
544
+ msgid "Request submitted"
545
+ msgstr "Aanvraag verzonden"
546
+
547
+ #: options/panel3.php:44 options/panel3.php:167
548
+ msgid "Subscribe without commenting"
549
+ msgstr "Abonneer zonder te reageren"
550
+
551
+ #: options/panel3.php:49 options/panel3.php:185
552
+ msgid "Subscription processed"
553
+ msgstr "Aanvraag verwerkt"
554
+
555
+ #: options/panel3.php:54 options/panel3.php:203
556
+ msgid "Subscription processed (DCI)"
557
+ msgstr "Aanvraag verwerkt (DCI)"
558
+
559
+ #: options/panel3.php:59 options/panel3.php:220
560
+ msgid "Authors"
561
+ msgstr "Auteurs"
562
+
563
+ #: options/panel3.php:64 options/panel3.php:236
564
+ msgid "Users"
565
+ msgstr "Gebruikers"
566
+
567
+ #: options/panel3.php:90
568
+ msgid "Enabled"
569
+ msgstr "Geactiveerd"
570
+
571
+ #: options/panel3.php:91
572
+ msgid "Disabled"
573
+ msgstr "Dedeactiveerd"
574
+
575
+ #: options/panel3.php:92
576
+ msgid ""
577
+ "Disable the virtual management page if you need to create a <a href="
578
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
579
+ "real-management-page\">real page</a> to make your theme happy."
580
+ msgstr ""
581
+ "Zet de virtuele management pagina uit als je een <a href=\"http://lab."
582
+ "duechiacchiere.it/index.php?topic=71.0\">echte pagina</a> moet creëren."
583
+
584
+ #: options/panel3.php:101
585
+ msgid "Title of the page your visitors will use to manage their subscriptions."
586
+ msgstr ""
587
+ "Titel van de pagina waar gebruikers hun abonnementen aan kunnen passen."
588
+
589
+ #: options/panel3.php:109
590
+ msgid ""
591
+ "The permalink for your management page (something like <code>/manage-"
592
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
593
+ "b> actually exist in the system, but its link must follow your permalink "
594
+ "structure."
595
  msgstr ""
596
+ "De permalink voor je abonnementen beheer pagina (zoiets als <code>/manage-"
597
+ "subscriptions</code> of <code>/?page_id=345</code>). Deze pagina <b>bestaat "
598
+ "niet</b> daadwerkelijk in het systeem, maar de permalink moet wel voldoen "
599
+ "aan je Wordpress permalink instellingen."
 
 
600
 
601
+ #: options/panel3.php:111
602
  msgid ""
603
+ "Warning: it looks like the value you are using may be incompatible with your "
604
+ "permalink structure"
605
  msgstr ""
606
+ "Let op: het lijkt erop dat de waarde die je gebruikt niet compatibel is met "
607
+ "jouw permalink structuur."
 
 
 
 
 
 
 
 
 
 
 
 
608
 
609
+ #: options/panel3.php:121
610
  msgid ""
611
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
612
+ "Use <strong>single</strong> quotes for values."
613
  msgstr ""
614
+ "Specificeer je eigen HTML-code die aan de HEAD van je pagina toegevoegd moet "
615
+ "worden. Gebruik <strong>enkele</strong> quotes voor waarden."
616
 
617
+ #: options/panel3.php:127 options/panel4.php:135
618
+ msgid "Messages"
619
+ msgstr "Berichten"
620
 
621
+ #: options/panel3.php:144
622
+ msgid "Text shown to those who request to manage their subscriptions."
 
 
623
  msgstr ""
624
+ "Tekst die verschijnt voor gebruikers die hun abonnementen willen aanpassen."
 
625
 
626
+ #: options/panel3.php:162
627
  msgid ""
628
+ "Thank you note shown after the request here above has been processed. "
629
+ "Allowed tags: [post_title], [post_permalink]"
630
  msgstr ""
631
+ "Het bedankberichtje dat wordt getoond als bovenstaande aanvragen zijn "
632
+ "doorgevoerd. Beschikbare tags: [post_title], [post_permalink]"
633
 
634
+ #: options/panel3.php:180
635
+ msgid ""
636
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
637
+ "[post_title], [post_permalink]"
638
+ msgstr ""
639
+ "Tekst die wordt getoond aan gebruikers die willen abonneren zonder eerst "
640
+ "zelf te reageren. Beschikbare tags: [post_title], [post_permalink]"
641
 
642
+ #: options/panel3.php:198
643
+ msgid ""
644
+ "Thank you note shown after the subscription request has been processed "
645
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
646
  msgstr ""
647
+ "Het bedankberichtje dat wordt getoond nadat de aanvragen zijn doorgevoerd "
648
+ "(als double check-in uit staat). Beschikbare tags: [post_title], "
649
+ "[post_permalink]"
650
 
651
+ #: options/panel3.php:216
652
  msgid ""
653
+ "Thank you note shown after the subscription request has been processed "
654
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
 
655
  msgstr ""
656
+ "Een bedankberichtje dat wordt getoond als een gebruiker een abonnement heeft "
657
+ "aangevraagd (double check-in moet aan staan). Beschikbare tags: "
658
+ "[post_title], [post_permalink]"
659
+
660
+ #: options/panel3.php:232
661
+ msgid "Introductory text for the authors' management page."
662
+ msgstr "Intoductietekst voor de beheerpagina van auteurs."
663
+
664
+ #: options/panel3.php:248
665
+ msgid "Introductory text for the users' management page."
666
+ msgstr "Intoductietekst voor de beheerpagina van de gebruikers."
667
 
668
  #: options/panel4.php:15 options/panel4.php:94
669
  msgid "Sender name"
727
  "will be the same as the Sender email address."
728
  msgstr ""
729
 
 
 
 
 
730
  #: options/panel4.php:147
731
  msgid "Subject of the notification email. Allowed tag: [post_title]"
732
  msgstr "Onderwerp van de notificatie e-mail. Beschikbare tags: [post_title]"
791
  "[blog_name]"
792
  msgstr "Onderwerp van bevestigings e-mail. Beschikbare tag: [post_title]"
793
 
794
+ #: options/panel5.php:28
795
+ msgid "Safetly Uninstall"
796
+ msgstr ""
797
+
798
+ #: options/panel5.php:31 options/panel5.php:84
799
+ msgid "Autopurge requests"
800
+ msgstr "Automatisch verwerpen van aanvragen"
801
+
802
+ #: options/panel5.php:34 options/panel5.php:93
803
+ msgid "Enable double check"
804
+ msgstr "Dubbele check activeren"
805
+
806
+ #: options/panel5.php:37 options/panel5.php:101
807
+ msgid "Subscribe authors"
808
+ msgstr "Abonneer auteurs"
809
+
810
+ #: options/panel5.php:40 options/panel5.php:111
811
+ msgid "Enable HTML emails"
812
+ msgstr "Activeer HTML e-mails"
813
+
814
+ #: options/panel5.php:43
815
+ msgid "HTMLify Links in HTML emails"
816
+ msgstr "HTMLify Links in HTML e-mails"
817
+
818
+ #: options/panel5.php:46
819
+ msgid "Send trackbacks"
820
+ msgstr "Verstuur trackbacks"
821
+
822
+ #: options/panel5.php:49
823
+ msgid "Notify admin"
824
+ msgstr "Notificeer beheerder"
825
+
826
+ #: options/panel5.php:52 options/panel5.php:149
827
+ msgid "Let admin subscribe"
828
+ msgstr "Laat beheerder abonneren"
829
+
830
+ #: options/panel5.php:55 options/panel5.php:158
831
+ msgid "BCC admin on Notifications"
832
+ msgstr "BCC admin bij alle notificaties"
833
+
834
+ #: options/panel5.php:76
835
+ msgid "Safely Uninstall"
836
+ msgstr ""
837
+
838
+ #: options/panel5.php:80
839
+ msgid ""
840
+ "This option will allow you to delete the plugin with WordPress without "
841
+ "loosing your subscribers. Any database table and plugin options are wipeout."
842
+ msgstr ""
843
+
844
+ #: options/panel5.php:87
845
+ msgid "days"
846
+ msgstr "dagen"
847
+
848
+ #: options/panel5.php:88
849
+ msgid ""
850
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
851
+ "this feature."
852
+ msgstr ""
853
+ "Verwijder abonnementen die niet bevestigd zijn na X dagen. 0 deactiveert "
854
+ "deze functie."
855
+
856
+ #: options/panel5.php:97
857
+ msgid ""
858
+ "Send a notification email to confirm the subscription (to avoid addresses "
859
+ "misuse)."
860
+ msgstr ""
861
+ "Verstuur een notificatie e-mail om het abonnement te bevestigen en misbruik "
862
+ "te voorkomen."
863
+
864
+ #: options/panel5.php:106
865
+ msgid ""
866
+ "Automatically subscribe authors to their own articles (not retroactive)."
867
+ msgstr "Abonneer auteurs automatisch op hun eigen artikelen."
868
+
869
+ #: options/panel5.php:115
870
+ msgid ""
871
+ "If enabled, will send email messages with content-type = text/html instead "
872
+ "of text/plain"
873
+ msgstr ""
874
+ "Als dit aan staat dan zullen emails verstuurd worden met content-type text/"
875
+ "html in plaats van text/plain."
876
+
877
+ #: options/panel5.php:120
878
+ msgid "HTMLify links in emails"
879
+ msgstr "HTMLify Links in HTML e-mails"
880
+
881
+ #: options/panel5.php:125
882
+ msgid ""
883
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
884
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
885
+ msgstr ""
886
+ "Wanneer ingeschakeld zorgt dit ervoor dat alle links in berichten met "
887
+ "<code>&lt;a href=\"\"&gt;&lt;/a&gt;</code> samengepakt worden (alleen "
888
+ "wanneer HTML e-mails gebruikt worden)."
889
+
890
+ #: options/panel5.php:130
891
+ msgid "Process trackbacks"
892
+ msgstr "Verwerk trackbacks"
893
+
894
+ #: options/panel5.php:134
895
+ msgid ""
896
+ "Notify users when a new trackback or pingback is added to the discussion."
897
+ msgstr ""
898
+ "Stel de gebruikers op de hoogte als er nieuwe trackbacks of pingbacks bij "
899
+ "een bericht geplaatst worden."
900
+
901
+ #: options/panel5.php:139
902
+ msgid "Track all subscriptions"
903
+ msgstr "Bekijk alle abonnementen"
904
+
905
+ #: options/panel5.php:144
906
+ msgid "Notify the administrator when users subscribe without commenting."
907
+ msgstr ""
908
+ "Stel beheerders op de hoogte als iemand een abonnement neemt zonder eerst "
909
+ "zelf te reageren."
910
+
911
+ #: options/panel5.php:153
912
+ msgid "Let the administrator subscribe to comments when logged in."
913
+ msgstr ""
914
+ "Moet de beheerder zich kunnen abonneren op berichten als deze is ingelogd?"
915
+
916
+ #: options/panel5.php:162
917
+ msgid "Send a copy of all Notifications to the administrator."
918
+ msgstr "Verstuur een kopie van alle notificaties naar de admin."
919
+
920
+ #: options/panel5.php:167
921
+ msgid "StCR Unique Key"
922
+ msgstr ""
923
+
924
+ #: options/panel5.php:172
925
+ msgid "This Unique Key is not set, please click the following button to "
926
+ msgstr ""
927
+
928
+ #: options/panel5.php:176 options/panel5.php:187
929
+ msgid "Generate"
930
+ msgstr ""
931
+
932
+ #: options/panel5.php:184
933
+ msgid ""
934
+ "This Unique Key will be use to send the notification to your subscribers "
935
+ "with more security."
936
+ msgstr ""
937
+
938
  #: options/panel7.php:8 options/panel8.php:8
939
  msgid "Support the developers"
940
  msgstr "Support de ontwikkelaar"
1001
  "comments-reloaded/\">Stem hier</a> op onze plugin in de WordPress Plugin "
1002
  "Directory."
1003
 
1004
+ #: options/panel8.php:18
1005
+ msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1006
  msgstr ""
1007
 
1008
+ #: options/panel8.php:19
1009
  msgid ""
1010
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1011
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1012
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1013
+ "WordPress Support page."
1014
  msgstr ""
1015
 
1016
+ #: options/panel9.php:11
1017
+ msgid "Support Subscribe to Comments Reloaded"
1018
+ msgstr ""
1019
+ "Hulp nodig bij het gebruik van de Subscribe to Comments Reloaded plugin? "
1020
+ "Bezoek de officiële"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1021
 
1022
+ #: options/panel9.php:12
 
1023
  msgid ""
1024
+ "Every contribution that you make is high valuable, so if you consider this "
1025
+ "plugin a helpful tool we will use your donation to invest on support and "
1026
+ "developing time."
1027
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1028
 
1029
+ #: templates/author.php:57
1030
+ msgid "Title"
1031
+ msgstr "Titel"
1032
 
1033
+ #: templates/author.php:58 templates/user.php:58
1034
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1035
+ msgstr ""
1036
+ "Legenda: Y = alle reacties, R = alleen reacties op je reacties, C = inactief"
1037
 
1038
+ #: templates/author.php:69 templates/user.php:67
1039
+ msgid "Select all"
1040
+ msgstr "Selecteer alles"
1041
 
1042
+ #: templates/author.php:70 templates/user.php:68
1043
+ msgid "Invert selection"
1044
+ msgstr "Selectie omkeren"
1045
 
1046
+ #: templates/author.php:74 templates/user.php:72
1047
+ msgid "All comments"
1048
+ msgstr "Alle nieuwe reacties"
1049
 
1050
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1051
+ msgid "Replies to my comments"
1052
+ msgstr "Reacties op mijn reacties"
1053
 
1054
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1055
+ #: templates/user.php:79
1056
+ msgid "No subscriptions match your search criteria."
1057
+ msgstr "Geen abonnementen voldoen aan je zoekcriteria."
1058
 
1059
+ #: templates/key_expired.php:8
1060
+ msgid ""
1061
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1062
+ "enter your email below and a new link will be send."
1063
+ msgstr ""
1064
 
1065
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1066
+ #: templates/subscribe.php:106
1067
+ msgid "Send"
1068
+ msgstr "Verstuur"
1069
 
1070
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1071
+ msgid "New subscription to"
1072
+ msgstr "Nieuw abonnement voor"
1073
 
1074
+ #: templates/subscribe.php:44
1075
+ msgid "User:"
1076
+ msgstr "Gebruiker:"
1077
 
1078
+ #: templates/user.php:63
1079
+ msgid "F j, Y"
1080
+ msgstr ""
1081
 
1082
+ #: templates/wrong-request.php:9
1083
+ msgid "You have request to manage another email address and this is forbidden."
1084
+ msgstr ""
1085
 
1086
+ #: utils/stcr_manage.php:246
1087
+ msgid ""
1088
+ "Notify me of followup comments via e-mail. You can also <a "
1089
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1090
+ msgstr ""
1091
+ "Houd mij op de hoogte van nieuwe reacties. Of <a "
1092
+ "href='[subscribe_link]'>abonneer jezelf</a> op deze discussie zonder te "
1093
+ "reageren."
1094
 
1095
+ #: utils/stcr_manage.php:247
1096
+ msgid ""
1097
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1098
+ "subscriptions."
1099
  msgstr ""
1100
+ "Je hebt een abonnement op dit bericht. Beheer je abonnementen <a "
1101
+ "href='[manager_link]'>op deze pagina</a>. "
1102
 
1103
+ #: utils/stcr_manage.php:248
1104
+ msgid ""
1105
+ "Your subscription to this post needs to be confirmed. <a "
1106
+ "href='[manager_link]'>Manage your subscriptions</a>."
1107
+ msgstr ""
1108
+ "Je abonnement op dit bericht moet eerst worden bevestigd. <a "
1109
+ "href='[manager_link]'>Beheer je abonnementen</a>."
1110
 
1111
+ #: utils/stcr_manage.php:249
1112
+ msgid ""
1113
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1114
+ msgstr ""
1115
+ "Op <a href='[manager_link]'>deze pagina</a> kun je de abonnementen van dit "
1116
+ "bericht beheren."
1117
 
1118
+ #: utils/stcr_manage.php:255
1119
+ msgid ""
1120
+ "To manage your subscriptions, please enter your email address here below. We "
1121
+ "will send you a message containing the link to access your personal "
1122
+ "management page."
1123
+ msgstr ""
1124
+ "Om je abonnementen te beheren moet je hieronder je e-mail adres invullen. We "
1125
+ "sturen je dan een persoonlijk link waar je je abonnementen aan kunt passen."
1126
 
1127
+ #: utils/stcr_manage.php:256
1128
+ msgid ""
1129
+ "Thank you for using our subscription service. Your request has been "
1130
+ "completed, and you should receive an email with the management link in a few "
1131
+ "minutes."
1132
+ msgstr ""
1133
+ "Bedankt voor het gebruikmaken van onze abonnementen service. Je aanvraag is "
1134
+ "voltooid en je ontvangt binnen enkele ogenblikken een e-mail met een link "
1135
+ "naar je persoonlijk beheerpagina."
1136
 
1137
+ #: utils/stcr_manage.php:257
1138
+ msgid ""
1139
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1140
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1141
+ "form here below and you're all set."
1142
+ msgstr ""
1143
+ "Je wilt je abonneren op de discussie <strong>[post_title]</strong> zonder "
1144
+ "zelf te reageren? Vul je e-mail adres hieronder in en de rest gaat vanzelf."
1145
 
1146
+ #: utils/stcr_manage.php:258
1147
+ msgid ""
1148
+ "Thank you for using our subscription service. Your request has been "
1149
+ "completed. You will receive a notification email every time a new comment to "
1150
+ "this article is approved and posted by the administrator."
1151
+ msgstr ""
1152
+ "Bedankt voor het gebruikmaken van onze abonnementen service. Je aanvraag is "
1153
+ "voltooid. Je ontvangt iedere keer een e-mail als er een nieuwe reactie is "
1154
+ "geplaatst."
1155
 
1156
+ #: utils/stcr_manage.php:259
1157
+ msgid ""
1158
+ "Thank you for using our subscription service. In order to confirm your "
1159
+ "request, please check your email for the verification message and follow the "
1160
+ "instructions."
1161
+ msgstr ""
1162
+ "Bedankt voor het gebruikmaken van onze abonnementen service. Om je aanvraag "
1163
+ "te voltooien moet je deze eerst bevestigen. Je ontvangt hierover binnen "
1164
+ "enkele ogenblikken een e-mail bericht."
1165
 
1166
+ #: utils/stcr_manage.php:260
1167
+ msgid ""
1168
+ "In order to cancel or suspend one or more notifications, select the "
1169
+ "corresponding checkbox(es) and click on the button at the end of the list."
1170
+ msgstr ""
1171
+ "Om je abonnementen aan te passen vink je het gewenste abonnement aan en klik "
1172
+ "je op de desgewenst actie."
1173
 
1174
+ #: utils/stcr_manage.php:261
1175
+ msgid ""
1176
+ "In order to cancel or suspend one or more notifications, select the "
1177
+ "corresponding checkbox(es) and click on the button at the end of the list. "
1178
+ "You are currently subscribed to:"
1179
+ msgstr ""
1180
+ "Om je abonnementen aan te passen vink je het gewenste abonnement aan en klik "
1181
+ "je op de desgewenst actie. Momenteel ben je geabonneerd op de volgende "
1182
+ "berichten:"
1183
 
1184
+ #: utils/stcr_manage.php:265
1185
+ msgid "There is a new comment to [post_title]"
1186
+ msgstr "Er is een nieuwe reactie geplaatst bij [post_title]"
1187
 
1188
+ #: utils/stcr_manage.php:266
1189
+ msgid ""
1190
+ "There is a new comment to [post_title].\n"
1191
+ "Comment Link: [comment_permalink]\n"
1192
+ "Author: [comment_author]\n"
1193
+ "Comment:\n"
1194
+ "[comment_content]\n"
1195
+ "Permalink: [post_permalink]\n"
1196
+ "Manage your subscriptions: [manager_link]"
1197
+ msgstr ""
1198
+ "Er is een nieuwe reactie op [post_title].\n"
1199
+ "Link naar de reactie: [comment_permalink]\n"
1200
+ "Auteur: [comment_author]\n"
1201
+ "Reactie:\n"
1202
+ "[comment_content]\n"
1203
+ "Permalink: [post_permalink]\n"
1204
+ "Beheer je abonnementen: [manager_link]"
1205
 
1206
+ #: utils/stcr_manage.php:267
1207
+ msgid "Please confirm your subscription to [post_title]"
1208
+ msgstr "Bevestig je abonnement op [post_title]"
1209
 
1210
+ #: utils/stcr_manage.php:268
1211
+ msgid ""
1212
+ "You have requested to be notified every time a new comment is added to:\n"
1213
+ "[post_permalink]\n"
1214
+ "\n"
1215
+ "Please confirm your request by clicking on this link:\n"
1216
+ "[confirm_link]"
1217
+ msgstr ""
1218
+ "Je hebt aangegeven dat je een melding wilt ontvangen elke keer dan er een "
1219
+ "nieuwe reactie geplaatst wordt op:\n"
1220
+ "[post_permalink]\n"
1221
+ "\n"
1222
+ "Bevestig je aanmelding door op deze link te klikken:\n"
1223
+ "[confirm_link]"
1224
 
1225
+ #: utils/stcr_manage.php:269
1226
+ msgid "Manage your subscriptions on [blog_name]"
1227
+ msgstr "Beheer je abonnementen op [blog_name]"
1228
+
1229
+ #: utils/stcr_manage.php:270
1230
+ msgid ""
1231
+ "You have requested to manage your subscriptions to the articles on "
1232
+ "[blog_name]. Please check the Subscriptions management link in your email"
1233
  msgstr ""
1234
 
1235
+ #: utils/stcr_manage.php:271
1236
+ msgid ""
1237
+ "You have requested to manage your subscriptions to the articles on "
1238
+ "[blog_name]. Follow this link to access your personal page:\n"
1239
+ "[manager_link]"
1240
+ msgstr ""
1241
+ "Je hebt gevraagd om de link naar je abonnementen beheer pagina voor de "
1242
+ "website [blog_name]. Volg de volgende link om naar je persoonlijke beheer "
1243
+ "pagina te gaan:\n"
1244
+ "[manager_link]"
1245
 
1246
+ #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
1247
+ msgid "StCR System"
1248
+ msgstr ""
1249
 
1250
+ #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
1251
+ #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
1252
+ #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
1253
+ #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
1254
+ #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
1255
+ msgid "You do not have sufficient permissions to access this page."
1256
+ msgstr ""
1257
 
1258
+ #: utils/stcr_manage.php:755
1259
+ msgid "Subscriptions"
1260
+ msgstr "Abonnement"
1261
 
1262
+ #: utils/stcr_manage.php:811
1263
+ msgid ""
1264
+ "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
1265
+ msgstr ""
1266
+ "Hulp nodig bij het gebruik van de Subscribe to Comments Reloaded plugin? "
1267
+ "Bezoek de officiële"
1268
 
1269
+ #: utils/stcr_manage.php:811
1270
+ msgid "support forum"
1271
+ msgstr "support forum"
1272
 
1273
+ #: utils/stcr_manage.php:812
1274
+ msgid "Feeling generous?"
1275
+ msgstr "Wees eens gul!"
1276
 
1277
+ #: utils/stcr_manage.php:812
1278
+ msgid "Donate a few bucks!"
1279
+ msgstr "Doneer een paar centen!"
1280
 
1281
+ #: utils/stcr_upgrade.php:55
1282
+ msgid "Important Notice"
1283
+ msgstr "Belangrijke melding"
1284
 
1285
+ #: utils/stcr_upgrade.php:103
1286
+ msgid ""
1287
+ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
1288
+ "database has been sanitized to prevent the raw html messages. <a class="
1289
+ "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
1290
+ "src=\""
1291
  msgstr ""
1292
 
1293
+ #: utils/stcr_upgrade.php:158
1294
  msgid ""
1295
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1296
+ "from the <strong>Subscribe to Comments</strong> plugin was detected and "
1297
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1298
  msgstr ""
1299
+ "Inschrijvingen van de <strong>Subscribe to Comments</strong> plugin zijn "
1300
+ "gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
1301
+ "Reloaded</strong>."
1302
 
1303
+ #: utils/stcr_upgrade.php:158
 
 
 
 
1304
  msgid ""
1305
+ " It is recommended that you now <strong>deactivate</strong> Subscribe to "
1306
+ "Comments to prevent confusion between the two plugins."
1307
  msgstr ""
1308
+ "Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
1309
+ "problemen te voorkomen."
1310
 
1311
+ #: utils/stcr_upgrade.php:159
1312
  msgid ""
1313
+ "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
1314
+ "that you want to import, you'll need to import that data manually, as only "
1315
+ "one import routine will ever run to prevent data loss."
1316
  msgstr ""
1317
+ "Als je data van Subscribe to Comments Reloaded < v2.0 wilt importeren moet "
1318
+ "je dit handmatig doen."
1319
 
1320
+ #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
1321
+ #: utils/stcr_upgrade.php:381
1322
  msgid ""
1323
+ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
1324
+ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
1325
+ "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
1326
+ "\"stcr-loading-animation\" src=\""
1327
+ msgstr ""
1328
 
1329
+ #: utils/stcr_upgrade.php:231
1330
  msgid ""
1331
+ "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
1332
+ "from the <strong>Comment Reply Notification</strong> plugin was detected and "
1333
+ "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
1334
  msgstr ""
1335
+ "Inschrijvingen van de <strong>Subscribe to Comments</strong> plugin zijn "
1336
+ "gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
1337
+ "Reloaded</strong>."
 
 
 
1338
 
1339
+ #: utils/stcr_upgrade.php:231
1340
  msgid ""
1341
+ " It is recommended that you now <strong>deactivate</strong> Comment Reply "
1342
+ "Notification to prevent confusion between the two plugins."
1343
  msgstr ""
1344
+ "Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
1345
+ "problemen te voorkomen."
 
1346
 
1347
+ #: utils/stcr_upgrade.php:378
1348
+ msgid ""
1349
+ "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
1350
+ "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
1351
+ "were detected and automatically imported into <strong>Subscribe to Comments "
1352
+ "Reloaded</strong>."
1353
+ msgstr ""
1354
+ "Plugin opties en data van de <strong>Subscribe to Comments</strong> plugin "
1355
+ "zijn gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
1356
+ "Reloaded</strong>."
1357
 
1358
+ #: utils/stcr_upgrade.php:378
1359
  msgid ""
1360
+ " It is recommended that you now <strong>deactivate</strong> WP Comment "
1361
+ "Subscriptions to prevent confusion between the two plugins."
1362
  msgstr ""
1363
+ "Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
1364
+ "problemen te voorkomen."
 
 
 
 
1365
 
1366
+ #: utils/stcr_upgrade.php:379
1367
+ msgid ""
1368
+ "If you have subscription data from another plugin (such as Subscribe to "
1369
+ "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
1370
+ "you'll need to import that data manually, as only one import routine will "
1371
+ "ever run to prevent data loss."
1372
  msgstr ""
1373
+ "Als je data van een andere plugin (zoals Subscribe to Comments of Subscribe "
1374
+ "to Comments Reloaded < v2.0) hebt die je wilt importeren dan moet je dit "
1375
+ "handmatig doen."
1376
 
1377
+ #: utils/stcr_upgrade.php:380
1378
+ msgid ""
1379
+ "<strong>Note:</strong> If you were previously using the "
1380
+ "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
1381
+ "subscribe-url]</code> shortcode, you'll need to replace those with "
1382
+ "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
1383
+ "respectively."
1384
  msgstr ""
1385
+ "<strong>Note:</strong> Als je voorheen de "
1386
+ "<code>wp_comment_subscriptions_show()</code> functie of de <code>[wpcs-"
1387
+ "subscribe-url]</code> shortcode gebruikte, moet je deze vervangen door "
1388
+ "respectievelijk <code>subscribe_reloaded_show()</code> en <code>[subscribe-"
1389
+ "url]</code>."
1390
 
1391
+ #: utils/stcr_upgrade.php:394
1392
+ msgid ""
1393
+ "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
1394
  msgstr ""
1395
 
1396
+ #: utils/stcr_upgrade.php:395
1397
+ msgid ""
1398
+ "If you find a bug or an issue you can report it <a href=\"https://github.com/"
1399
+ "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
1400
  msgstr ""
1401
 
1402
+ #: utils/stcr_upgrade.php:396
1403
+ msgid ""
1404
+ "Please consider to make a donation to support the plugin, you can donate via "
1405
+ "<a href=\"\n"
1406
+ "https://www.paypal.com/cgi-bin/webscr?"
1407
+ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
1408
+ "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
1409
+ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
1410
  msgstr ""
1411
 
1412
+ #: utils/stcr_upgrade.php:398
1413
  msgid ""
1414
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1415
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
1416
+ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
1417
+ "a><img class=\"stcr-loading-animation\" src=\""
1418
  msgstr ""
1419
 
1420
+ #: utils/stcr_upgrade.php:409
1421
+ msgid ""
1422
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1423
+ "160106."
1424
  msgstr ""
1425
 
1426
+ #: utils/stcr_upgrade.php:410
1427
  msgid ""
1428
+ "This version includes many changes and fixes to improve your experience with "
1429
+ "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
1430
+ "email templates, Subscription Checkbox position, and more!"
 
1431
  msgstr ""
1432
 
1433
+ #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
1434
+ #: utils/stcr_upgrade.php:448 utils/stcr_upgrade.php:471
1435
+ msgid ""
1436
+ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
1437
+ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
1438
+ "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
1439
+ "class=\"stcr-loading-animation\" src=\""
 
 
 
 
 
 
1440
  msgstr ""
1441
 
1442
+ #: utils/stcr_upgrade.php:424
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1443
  msgid ""
1444
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1445
+ "160115."
 
1446
  msgstr ""
 
 
1447
 
1448
+ #: utils/stcr_upgrade.php:425
1449
+ msgid ""
1450
+ "This version includes fixes to broken links while managing your subscriptions"
1451
  msgstr ""
 
1452
 
1453
+ #: utils/stcr_upgrade.php:439
1454
  msgid ""
1455
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1456
+ "160831"
 
 
1457
  msgstr ""
 
 
 
 
1458
 
1459
+ #: utils/stcr_upgrade.php:440 utils/stcr_upgrade.php:462
1460
+ msgid "This version includes fixes to many bugs and also new features, "
1461
+ msgstr ""
1462
+
1463
+ #: utils/stcr_upgrade.php:442 utils/stcr_upgrade.php:465
1464
  msgid ""
1465
+ "<strong>New Feature</strong> Add new option to set the Reply To email "
1466
+ "address. This will help the subscribers to use the Reply option in their "
1467
+ "email agents."
1468
  msgstr ""
 
 
1469
 
1470
+ #: utils/stcr_upgrade.php:443 utils/stcr_upgrade.php:466
1471
  msgid ""
1472
+ "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
1473
+ "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
1474
  msgstr ""
 
 
1475
 
1476
+ #: utils/stcr_upgrade.php:444 utils/stcr_upgrade.php:467
1477
+ msgid ""
1478
+ "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
1479
+ "without loosing your subscriptions. You can use this option also for reset "
1480
+ "all the settings, see the FAQ."
1481
  msgstr ""
 
1482
 
1483
+ #: utils/stcr_upgrade.php:445 utils/stcr_upgrade.php:468
1484
  msgid ""
1485
+ "<strong>New Feature</strong> Now the WordPress Authors can use the "
1486
+ "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
1487
+ "Post Type."
1488
  msgstr ""
 
 
1489
 
1490
+ #: utils/stcr_upgrade.php:446 utils/stcr_upgrade.php:469
1491
  msgid ""
1492
+ "<strong>New Feature</strong> A new field was added under the notification "
1493
+ "options to and the management link only by email and not to display it on "
1494
+ "the request link page."
1495
  msgstr ""
 
 
1496
 
1497
+ #: utils/stcr_upgrade.php:461
1498
  msgid ""
1499
+ "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
1500
+ "160902"
1501
  msgstr ""
 
 
 
1502
 
1503
+ #: utils/stcr_upgrade.php:464
1504
  msgid ""
1505
+ "<strong>Fix update</strong> this version Fixes some issue trigger by the "
1506
+ "previous 160831 version."
1507
  msgstr ""
 
 
 
1508
 
1509
+ #: utils/stcr_utils.php:195
1510
+ msgid "StCR Notification"
1511
+ msgstr "Notificaties"
1512
 
1513
+ #: wp_subscribe_reloaded.php:114
1514
+ msgid "Settings"
1515
+ msgstr "Instellingen"
1516
+
1517
+ #: wp_subscribe_reloaded.php:1086
1518
+ msgid "Don't subscribe"
1519
+ msgstr "Meld niet aan"
1520
+
1521
+ #: wp_subscribe_reloaded.php:1087
1522
+ msgid "All"
1523
+ msgstr "Alles"
1524
 
1525
  #~ msgid ""
1526
  #~ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
langs/subscribe-reloaded-pl_PL.mo CHANGED
Binary file
langs/subscribe-reloaded-pl_PL.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2016-08-31 11:22-0700\n"
6
  "PO-Revision-Date: \n"
7
- "Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
8
  "Language-Team: Filip \"inzaghi89\" Cierpich <inzaghi89@gmail.com>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
@@ -14,80 +14,141 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: s;\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Generator: Poedit 1.6\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: wp_subscribe_reloaded.php:114
21
- msgid "Settings"
22
- msgstr ""
 
23
 
24
- #: wp_subscribe_reloaded.php:1060
25
- msgid "Don't subscribe"
26
- msgstr "Nie subskrybuj"
27
 
28
- #: wp_subscribe_reloaded.php:1061
29
- msgid "All"
30
- msgstr "Wszystko"
31
 
32
- #: wp_subscribe_reloaded.php:1062 templates/user.php:73
33
- #: templates/author.php:75
34
- msgid "Replies to my comments"
35
- msgstr "Odpowiedzi do moich komentarzy"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
- #: templates/request-management-link.php:71 templates/key_expired.php:71
38
- #: templates/subscribe.php:90 templates/user.php:57 options/panel1.php:72
39
- #: options/panel1.php:133 options/panel1-add-subscription.php:16
 
 
 
 
 
 
40
  msgid "Email"
41
  msgstr "E-mail"
42
 
43
- #: templates/request-management-link.php:73 templates/key_expired.php:73
44
- #: templates/subscribe.php:92
45
- msgid "Send"
46
- msgstr "Wyślij"
 
47
 
48
- #: templates/key_expired.php:8
49
- msgid ""
50
- "Woohaa the link to manage your subscriptions has expired, don't worry, just "
51
- "enter your email below and a new link will be send."
52
- msgstr ""
53
 
54
- #: templates/one-click-unsubscribe.php:30 templates/user.php:79
55
- #: templates/author.php:80
56
- msgid "No subscriptions match your search criteria."
57
- msgstr "Żadna subskrypcja nie spełnia twoich kryteriów."
 
58
 
59
- #: templates/subscribe.php:42 templates/subscribe.php:43
60
- msgid "New subscription to"
61
- msgstr "Nowa subskrypcja do"
62
 
63
- #: templates/subscribe.php:43
64
- msgid "User:"
65
- msgstr "Użytkownik:"
 
 
 
 
 
 
 
 
 
 
 
 
 
66
 
67
- #: templates/user.php:23 templates/author.php:23
68
- #: options/panel1-business-logic.php:70
69
  msgid "Subscriptions deleted:"
70
  msgstr "Usunięte subskrypcje:"
71
 
72
- #: templates/user.php:27 templates/author.php:27
73
- #: options/panel1-business-logic.php:74
74
  msgid "Subscriptions suspended:"
75
  msgstr "Zawieszone subskrypcje:"
76
 
77
- #: templates/user.php:31 templates/author.php:31
78
- #: options/panel1-business-logic.php:78
79
  msgid "Subscriptions activated:"
80
  msgstr "Aktywowane subskrypcje:"
81
 
82
- #: templates/user.php:35 templates/user.php:39 templates/author.php:35
83
- #: templates/author.php:39 options/panel1-business-logic.php:82
84
- #: options/panel1-business-logic.php:86
85
  msgid "Subscriptions updated:"
86
  msgstr "Zaktualizowane subskrypcje"
87
 
88
- #: templates/user.php:52 templates/author.php:52 options/panel1.php:23
89
- #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
 
 
 
 
 
 
 
 
 
 
90
  #: options/panel1-edit-subscription.php:11
 
 
 
 
 
 
 
 
 
91
  msgid ""
92
  "Please remember: this operation cannot be undone. Are you sure you want to "
93
  "proceed?"
@@ -95,480 +156,197 @@ msgstr ""
95
  "Proszę pamiętać: ta operacja nie może zostać cofnięta. Czy jesteś pewien, że "
96
  "chcesz kontynuować?"
97
 
98
- #: templates/user.php:58 templates/author.php:58
99
- msgid "Legend: Y = all comments, R = replies only, C = inactive"
100
- msgstr ""
101
- "Legenda: Y = wszystkie komentarze, R = tylko odpowiedzi, C = zawieszone"
102
-
103
- #: templates/user.php:63
104
- msgid "F j, Y"
105
- msgstr ""
106
-
107
- #: templates/user.php:67 templates/author.php:69
108
- msgid "Select all"
109
- msgstr "Zaznacz wszystko"
110
-
111
- #: templates/user.php:68 templates/author.php:70
112
- msgid "Invert selection"
113
- msgstr "Usuń zaznaczenie"
114
 
115
- #: templates/user.php:69 templates/author.php:71 options/panel1.php:223
116
- msgid "Action:"
117
- msgstr "Akcja:"
118
 
119
- #: templates/user.php:70 templates/author.php:72 options/panel1.php:200
120
- #: options/panel1.php:212
121
- msgid "Delete"
122
- msgstr "Usuń"
123
 
124
- #: templates/user.php:71 templates/author.php:73 options/panel1.php:227
125
- msgid "Suspend"
126
  msgstr "Zawieś"
127
 
128
- #: templates/user.php:72 templates/author.php:74
129
- msgid "All comments"
130
- msgstr ""
131
-
132
- #: templates/user.php:74 templates/author.php:76 options/panel1.php:230
133
- msgid "Activate"
134
- msgstr "Aktywuj"
135
 
136
- #: templates/user.php:76 templates/author.php:77 options/panel1.php:234
137
- msgid "Update subscriptions"
138
- msgstr "Aktualizuj subskrypcje"
139
 
140
- #: templates/author.php:57
141
- msgid "Title"
142
- msgstr "Tytuł"
143
 
144
- #: utils/stcr_upgrade.php:55
145
- msgid "Important Notice"
146
  msgstr ""
147
 
148
- #: utils/stcr_upgrade.php:103
149
  msgid ""
150
- "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
151
- "database has been sanitized to prevent the raw html messages. <a class="
152
- "\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
153
- "src=\""
154
  msgstr ""
155
 
156
- #: utils/stcr_upgrade.php:158
157
- msgid ""
158
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
159
- "from the <strong>Subscribe to Comments</strong> plugin was detected and "
160
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
161
- msgstr ""
162
 
163
- #: utils/stcr_upgrade.php:158
164
- msgid ""
165
- " It is recommended that you now <strong>deactivate</strong> Subscribe to "
166
- "Comments to prevent confusion between the two plugins."
167
- msgstr ""
168
 
169
- #: utils/stcr_upgrade.php:159
170
- msgid ""
171
- "If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
172
- "that you want to import, you'll need to import that data manually, as only "
173
- "one import routine will ever run to prevent data loss."
174
- msgstr ""
175
 
176
- #: utils/stcr_upgrade.php:160 utils/stcr_upgrade.php:232
177
- #: utils/stcr_upgrade.php:381
178
  msgid ""
179
- "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
180
- "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
181
- "your configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
182
- "\"stcr-loading-animation\" src=\""
183
  msgstr ""
 
 
184
 
185
- #: utils/stcr_upgrade.php:231
186
- msgid ""
187
- "<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
188
- "from the <strong>Comment Reply Notification</strong> plugin was detected and "
189
- "automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
190
- msgstr ""
191
 
192
- #: utils/stcr_upgrade.php:231
193
- msgid ""
194
- " It is recommended that you now <strong>deactivate</strong> Comment Reply "
195
- "Notification to prevent confusion between the two plugins."
196
- msgstr ""
197
 
198
- #: utils/stcr_upgrade.php:378
199
- msgid ""
200
- "<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
201
- "subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
202
- "were detected and automatically imported into <strong>Subscribe to Comments "
203
- "Reloaded</strong>."
204
- msgstr ""
205
 
206
- #: utils/stcr_upgrade.php:378
207
- msgid ""
208
- " It is recommended that you now <strong>deactivate</strong> WP Comment "
209
- "Subscriptions to prevent confusion between the two plugins."
210
- msgstr ""
211
 
212
- #: utils/stcr_upgrade.php:379
213
- msgid ""
214
- "If you have subscription data from another plugin (such as Subscribe to "
215
- "Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
216
- "you'll need to import that data manually, as only one import routine will "
217
- "ever run to prevent data loss."
218
- msgstr ""
219
 
220
- #: utils/stcr_upgrade.php:380
221
- msgid ""
222
- "<strong>Note:</strong> If you were previously using the "
223
- "<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
224
- "subscribe-url]</code> shortcode, you'll need to replace those with "
225
- "<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
226
- "respectively."
227
- msgstr ""
228
 
229
- #: utils/stcr_upgrade.php:394
230
- msgid ""
231
- "<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
232
- msgstr ""
233
 
234
- #: utils/stcr_upgrade.php:395
235
- msgid ""
236
- "If you find a bug or an issue you can report it <a href=\"https://github.com/"
237
- "stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
238
- msgstr ""
239
-
240
- #: utils/stcr_upgrade.php:396
241
- msgid ""
242
- "If you want to donate you can do it via <a href=\"\n"
243
- "https://www.paypal.com/cgi-bin/webscr?"
244
- "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
245
- "%20Engineering&item_number=DI%2dSTCR&currency_code=USD&bn=PP%2dDonationsBF"
246
- "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
247
- msgstr ""
248
-
249
- #: utils/stcr_upgrade.php:398
250
- msgid ""
251
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
252
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
253
- "information on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </"
254
- "a><img class=\"stcr-loading-animation\" src=\""
255
- msgstr ""
256
-
257
- #: utils/stcr_upgrade.php:409
258
- msgid ""
259
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
260
- "160106."
261
- msgstr ""
262
-
263
- #: utils/stcr_upgrade.php:410
264
- msgid ""
265
- "This version includes many changes and fixes to improve your experience with "
266
- "the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
267
- "email templates, Subscription Checkbox position, and more!"
268
- msgstr ""
269
-
270
- #: utils/stcr_upgrade.php:411 utils/stcr_upgrade.php:426
271
- #: utils/stcr_upgrade.php:448
272
- msgid ""
273
- "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
274
- "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
275
- "complete list of changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img "
276
- "class=\"stcr-loading-animation\" src=\""
277
- msgstr ""
278
-
279
- #: utils/stcr_upgrade.php:424
280
- msgid ""
281
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
282
- "160115."
283
- msgstr ""
284
-
285
- #: utils/stcr_upgrade.php:425
286
- msgid ""
287
- "This version includes fixes to broken links while managing your subscriptions"
288
- msgstr ""
289
-
290
- #: utils/stcr_upgrade.php:439
291
- msgid ""
292
- "<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
293
- "160831"
294
- msgstr ""
295
-
296
- #: utils/stcr_upgrade.php:440
297
- msgid "This version includes fixes to many bugs and also new features, "
298
- msgstr ""
299
-
300
- #: utils/stcr_upgrade.php:442
301
- msgid ""
302
- "<strong>New Feature</strong> Add new option to set the Reply To email "
303
- "address. This will help the subscribers to use the Reply option in their "
304
- "email agents."
305
- msgstr ""
306
-
307
- #: utils/stcr_upgrade.php:443
308
- msgid ""
309
- "<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
310
- "StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
311
- msgstr ""
312
-
313
- #: utils/stcr_upgrade.php:444
314
- msgid ""
315
- "<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
316
- "without loosing your subscriptions. You can use this option also for reset "
317
- "all the settings, see the FAQ."
318
- msgstr ""
319
-
320
- #: utils/stcr_upgrade.php:445
321
- msgid ""
322
- "<strong>New Feature</strong> Now the WordPress Authors can use the "
323
- "<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
324
- "Post Type."
325
- msgstr ""
326
-
327
- #: utils/stcr_upgrade.php:446
328
- msgid ""
329
- "<strong>New Feature</strong> A new field was added under the notification "
330
- "options to and the management link only by email and not to display it on "
331
- "the request link page."
332
- msgstr ""
333
-
334
- #: utils/stcr_manage.php:246
335
- msgid ""
336
- "Notify me of followup comments via e-mail. You can also <a "
337
- "href='[subscribe_link]'>subscribe</a> without commenting."
338
- msgstr ""
339
- "Informuj mnie o odpowiedziach poprzez e-mail. Możesz również <a "
340
- "href='[subscribe_link]'>subskrybować</a> wpis bez zostawiania komentarza."
341
-
342
- #: utils/stcr_manage.php:247
343
- msgid ""
344
- "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
345
- "subscriptions."
346
- msgstr ""
347
- "Subskrybujesz ten wpis. <a href='[manager_link]'>Zarządzaj subskrypcją</a>."
348
-
349
- #: utils/stcr_manage.php:248
350
- msgid ""
351
- "Your subscription to this post needs to be confirmed. <a "
352
- "href='[manager_link]'>Manage your subscriptions</a>."
353
- msgstr ""
354
- "Twoja subskrypcja do tego postu musi zostać potwierdzona. <a "
355
- "href='[manager_link]'>Zarządzaj subskrypcją</a>."
356
-
357
- #: utils/stcr_manage.php:249
358
- msgid ""
359
- "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
360
- msgstr "Możesz <a href='[manager_link]'>zarządzać subskrypcją</a> tego wpisu."
361
-
362
- #: utils/stcr_manage.php:253 utils/stcr_manage.php:382
363
- #: utils/stcr_manage.php:383 options/index.php:59
364
- msgid "Manage subscriptions"
365
- msgstr "Zarządzaj subskrypcjami"
366
 
367
- #: utils/stcr_manage.php:255
368
- msgid ""
369
- "To manage your subscriptions, please enter your email address here below. We "
370
- "will send you a message containing the link to access your personal "
371
- "management page."
372
- msgstr ""
373
- "By zarządzać subskrypcjami, proszę wprowadzić adres e-mail w polu poniżej. "
374
- "Otrzymasz wiadomość zawierajacą odnośnik do strony zarządzania subskrypcjami."
375
 
376
- #: utils/stcr_manage.php:256
377
- msgid ""
378
- "Thank you for using our subscription service. Your request has been "
379
- "completed, and you should receive an email with the management link in a few "
380
- "minutes."
381
- msgstr ""
382
- "Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. W "
383
- "przeciągu kilku minut powinieneś otrzymać wiadomość e-mail z odnośnikiem do "
384
- "zarządzania subskrypcjami."
385
 
386
- #: utils/stcr_manage.php:257
387
- msgid ""
388
- "You can follow the discussion on <strong>[post_title]</strong> without "
389
- "having to leave a comment. Cool, huh? Just enter your email address in the "
390
- "form here below and you're all set."
391
- msgstr ""
392
- "Możesz śledzić dyskusję we wpisie <strong>[post_title]</strong> bez "
393
- "zostawiania komentarza. Wystarczy, że wpiszesz swój adres e-mail w polu "
394
- "poniżej, a o następnym komentarzu zostaniesz powiadomiony e-mailem."
395
 
396
- #: utils/stcr_manage.php:258
397
- msgid ""
398
- "Thank you for using our subscription service. Your request has been "
399
- "completed. You will receive a notification email every time a new comment to "
400
- "this article is approved and posted by the administrator."
401
- msgstr ""
402
- "Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. "
403
- "Będziesz otrzymywał powiadomienie za każdym razem, gdy pojawi się nowy "
404
- "komentarz zaakceptowany przez administratora do tego wpisu."
405
 
406
- #: utils/stcr_manage.php:259
407
- msgid ""
408
- "Thank you for using our subscription service. In order to confirm your "
409
- "request, please check your email for the verification message and follow the "
410
- "instructions."
411
- msgstr ""
412
- "Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. Proszę "
413
- "sprawdzić swoją pocztę w celu weryfikacji adresu e-mail i podążać zgodnie z "
414
- "instrukcjami w nim zawartymi."
415
 
416
- #: utils/stcr_manage.php:260
417
- msgid ""
418
- "In order to cancel or suspend one or more notifications, select the "
419
- "corresponding checkbox(es) and click on the button at the end of the list."
420
- msgstr ""
421
- "W celu anulowania bądź zrezygnowania z subskrypcji, proszę wybrać z "
422
- "poniższej listy wpis, a następnie wybrać akcję, którą chcesz wykonać."
423
 
424
- #: utils/stcr_manage.php:261
425
- msgid ""
426
- "In order to cancel or suspend one or more notifications, select the "
427
- "corresponding checkbox(es) and click on the button at the end of the list. "
428
- "You are currently subscribed to:"
429
- msgstr ""
430
- "W celu anulowania bądź zrezygnowania z subskrypcji, proszę wybrać z "
431
- "poniższej listy wpis, a następnie wybrać akcję, którą chcesz wykonać.\n"
432
- "\n"
433
- "Aktualnie subskrybujesz:"
434
 
435
- #: utils/stcr_manage.php:265
436
- msgid "There is a new comment to [post_title]"
437
- msgstr "Pojawił się nowy komentarz do wpisu [post_title]"
438
 
439
- #: utils/stcr_manage.php:266
440
- msgid ""
441
- "There is a new comment to [post_title].\n"
442
- "Comment Link: [comment_permalink]\n"
443
- "Author: [comment_author]\n"
444
- "Comment:\n"
445
- "[comment_content]\n"
446
- "Permalink: [post_permalink]\n"
447
- "Manage your subscriptions: [manager_link]"
448
- msgstr ""
449
- "Pojawił się nowy komentarz do wpisu [post_title].\n"
450
- "Odnośnik do komentarza: [comment_permalink]\n"
451
- "Autor: [comment_author]\n"
452
- "Komentarz: [comment_content]\n"
453
- "Odnośnik do wpisu: [post_permalink]\n"
454
- "\n"
455
- "Zarządzaj subskrypcjami: [manager_link]"
456
 
457
- #: utils/stcr_manage.php:267
458
- msgid "Please confirm your subscription to [post_title]"
459
- msgstr "Proszę potwierdzić swoją subskrypcję do wpisu [post_title]"
460
 
461
- #: utils/stcr_manage.php:268
462
- msgid ""
463
- "You have requested to be notified every time a new comment is added to:\n"
464
- "[post_permalink]\n"
465
- "\n"
466
- "Please confirm your request by clicking on this link:\n"
467
- "[confirm_link]"
468
  msgstr ""
469
- "Poprosiłeś, by informować cię o nowych komentarzach dodanych do wpisu "
470
- "[post_title]:\n"
471
- "[post_permalink]\n"
472
- "\n"
473
- "Proszę potwierdzić zgłoszenie poprzez kliknięcie w poniższy odnośnik:\n"
474
- "[confirm_link]"
475
 
476
- #: utils/stcr_manage.php:269
477
- msgid "Manage your subscriptions on [blog_name]"
478
- msgstr "Zarządzaj swoimi subskrypcjami na [blog_name]"
479
-
480
- #: utils/stcr_manage.php:270
481
- msgid ""
482
- "You have requested to manage your subscriptions to the articles on "
483
- "[blog_name]. Please check the Subscriptions management link in your email"
484
  msgstr ""
485
 
486
- #: utils/stcr_manage.php:271
487
- msgid ""
488
- "You have requested to manage your subscriptions to the articles on "
489
- "[blog_name]. Follow this link to access your personal page:\n"
490
- "[manager_link]"
491
- msgstr ""
492
- "Poprosiłeś o możliwość zarządzanai swoimi subskrypcjami do wpisów na "
493
- "[blog_name]. Kliknij w poniższy odnośnik, by móc zarządzać swoimi "
494
- "subskrypcjami:\n"
495
- "[manager_link]"
496
 
497
- #: utils/stcr_manage.php:388 utils/stcr_manage.php:389 options/index.php:60
498
- msgid "Comment Form"
499
- msgstr "Formularz komentarzy"
 
500
 
501
- #: utils/stcr_manage.php:394 utils/stcr_manage.php:395 options/index.php:61
502
- msgid "Management Page"
503
- msgstr "Zarządzaj stroną"
504
 
505
- #: utils/stcr_manage.php:400 utils/stcr_manage.php:401 options/index.php:62
506
- msgid "Notifications"
507
- msgstr "Powiadomienia"
508
 
509
- #: utils/stcr_manage.php:406 utils/stcr_manage.php:407 options/index.php:63
510
- #: options/panel2.php:58 options/panel4.php:89 options/panel3.php:82
511
- msgid "Options"
512
- msgstr "Opcje"
513
 
514
- #: utils/stcr_manage.php:422 utils/stcr_manage.php:423 options/index.php:65
515
- msgid "You can help"
516
- msgstr "Możesz pomóc"
517
 
518
- #: utils/stcr_manage.php:428 utils/stcr_manage.php:429 options/index.php:66
519
- msgid "Support"
520
- msgstr "Wsparcie"
521
 
522
- #: utils/stcr_manage.php:434 utils/stcr_manage.php:435 options/index.php:67
523
- msgid "Donate"
524
- msgstr ""
525
 
526
- #: utils/stcr_manage.php:440 utils/stcr_manage.php:441
527
- msgid "StCR System"
528
- msgstr ""
529
 
530
- #: utils/stcr_manage.php:460 utils/stcr_manage.php:488
531
- #: utils/stcr_manage.php:515 utils/stcr_manage.php:542
532
- #: utils/stcr_manage.php:569 utils/stcr_manage.php:596
533
- #: utils/stcr_manage.php:623 utils/stcr_manage.php:650
534
- #: utils/stcr_manage.php:677 utils/stcr_manage.php:705
535
- msgid "You do not have sufficient permissions to access this page."
536
- msgstr ""
537
 
538
- #: utils/stcr_manage.php:755
539
- msgid "Subscriptions"
540
- msgstr "Subskrypcje"
541
 
542
- #: utils/stcr_manage.php:784 options/panel2.php:67 options/panel2.php:77
543
- #: options/panel2.php:106 options/panel5.php:79 options/panel5.php:96
544
- #: options/panel5.php:105 options/panel5.php:114 options/panel5.php:124
545
- #: options/panel5.php:133 options/panel5.php:143 options/panel5.php:152
546
- #: options/panel5.php:161
547
- msgid "No"
548
- msgstr "Nie"
549
 
550
- #: utils/stcr_manage.php:811
551
- msgid ""
552
- "Need help on how to use Subscribe to Comments Reloaded? Visit the official"
553
  msgstr ""
554
- "Potrzebujesz pomocy, jak używać wtyczki Subscribe to Comments Reloaded? "
555
- "Odwiedź oficjalną stronę"
556
-
557
- #: utils/stcr_manage.php:811
558
- msgid "support forum"
559
- msgstr "forum wsparcia"
560
-
561
- #: utils/stcr_manage.php:812
562
- msgid "Feeling generous?"
563
- msgstr "Jesteś hojny?"
564
-
565
- #: utils/stcr_manage.php:812
566
- msgid "Donate a few bucks!"
567
- msgstr "Przelej kilka dolarów!"
568
-
569
- #: utils/stcr_utils.php:195
570
- msgid "StCR Notification"
571
- msgstr "Powiadomienia"
572
 
573
  #: options/panel2.php:12 options/panel2.php:63
574
  msgid "Enable default checkbox"
@@ -610,13 +388,13 @@ msgstr "Opis oczekiwania"
610
  msgid "Author label"
611
  msgstr "Opis autora"
612
 
613
- #: options/panel2.php:49 options/panel4.php:78 options/panel5.php:18
614
- #: options/panel5.php:60 options/panel3.php:70
615
  msgid "Your settings have been successfully updated."
616
  msgstr "Twoje ustawienia zostały pomyślnie zapisane."
617
 
618
- #: options/panel2.php:51 options/panel4.php:80 options/panel5.php:20
619
- #: options/panel5.php:62 options/panel3.php:72
620
  msgid "There was an error updating the following fields:"
621
  msgstr "Wystąpił problem podczas zapisu następujacych ustawień:"
622
 
@@ -627,6 +405,14 @@ msgstr "Wystąpił problem podczas zapisu następujacych ustawień:"
627
  msgid "Yes"
628
  msgstr "Tak"
629
 
 
 
 
 
 
 
 
 
630
  #: options/panel2.php:68
631
  msgid ""
632
  "Disable this option if you want to move the subscription checkbox to a "
@@ -661,90 +447,222 @@ msgstr ""
661
  msgid ""
662
  "Allow users to choose from different subscription types (all, replies only)."
663
  msgstr ""
664
- "Zezwól użytkownikom na wybór różnych sposobów subskrypcji (wszystkie, tylko "
665
- "odpowiedzi)."
666
-
667
- #: options/panel2.php:115
668
- msgid "Advanced default"
669
- msgstr "Domyślne zaznaczenie"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
670
 
671
- #: options/panel2.php:119
672
- msgid "None"
673
  msgstr ""
 
674
 
675
- #: options/panel2.php:124
676
  msgid ""
677
- "The default subscription type that should be selected when Advanced "
678
- "subscriptions are enable."
 
 
679
  msgstr ""
 
 
 
 
680
 
681
- #: options/panel2.php:135
682
- msgid "Custom inline CSS to add to the checkbox."
683
- msgstr "Własne ustawienia CSS dla checkboksa."
684
-
685
- #: options/panel2.php:152
686
  msgid ""
687
- "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
688
- "[checkbox_field], [checkbox_label]"
689
  msgstr ""
690
- "Własny kod HTML do wyświetlania checkboksa. Dostępne tagi: [checkbox_field], "
691
- "[checkbox_label]"
692
 
693
- #: options/panel2.php:158
694
- msgid "Messages for your visitors"
695
- msgstr "Wiadomości dla czytelników"
 
 
 
 
696
 
697
- #: options/panel2.php:162
698
- msgid "Default label"
699
- msgstr "Domyslny opis"
700
 
701
- #: options/panel2.php:175
702
- msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
703
- msgstr "Opis przypisany do checkboksa. Dostępne tagi: [subscribe_link]"
704
 
705
- #: options/panel2.php:192
706
  msgid ""
707
- "Label shown to those who are already subscribed to a post. Allowed tag: "
708
- "[manager_link]"
709
  msgstr ""
710
- "Opis pokazywany osobie, która jest już zapisana do subskrypcji wpisu. "
711
- "Dostępne tagi: [manager_link]"
712
-
713
- #: options/panel2.php:197
714
- msgid "Pending label"
715
- msgstr "Opis oczekujących"
716
 
717
- #: options/panel2.php:209
718
  msgid ""
719
- "Label shown to those who are already subscribed, but haven't clicked on the "
720
- "confirmation link yet. Allowed tag: [manager_link]"
721
  msgstr ""
722
- "Opis pokazywany osobie, która jest już zapisana do subskrypcji wpisu, ale "
723
- "nie kliknęła odnośnika weryfikacji. Dostępne tagi: [manager_link]"
724
 
725
- #: options/panel2.php:225
726
  msgid ""
727
- "Label shown to authors (and administrators). Allowed tag: [manager_link]"
 
728
  msgstr ""
729
- "Opis pokazywany autorom (oraz administratorom). Dostępne tagi: [manager_link]"
 
730
 
731
- #: options/panel2.php:230 options/panel4.php:283 options/panel5.php:195
732
- #: options/panel3.php:253
733
- msgid "Save Changes"
734
- msgstr "Zapisz zmiany"
 
 
 
735
 
736
- #: options/panel9.php:11
737
- msgid "Support Subscribe to Comments Reloaded"
738
  msgstr ""
739
- "Potrzebujesz pomocy, jak używać wtyczki Subscribe to Comments Reloaded? "
740
- "Odwiedź oficjalną stronę"
741
 
742
- #: options/panel9.php:12
743
- msgid ""
744
- "Every contribution that you make is high valuable, so if you consider this "
745
- "plugin a helpful tool we will use your donation to invest on support and "
746
- "developing time."
747
  msgstr ""
 
748
 
749
  #: options/panel4.php:15 options/panel4.php:94
750
  msgid "Sender name"
@@ -807,10 +725,6 @@ msgid ""
807
  "will be the same as the Sender email address."
808
  msgstr ""
809
 
810
- #: options/panel4.php:135 options/panel3.php:127
811
- msgid "Messages"
812
- msgstr "Wiadomości"
813
-
814
  #: options/panel4.php:147
815
  msgid "Subject of the notification email. Allowed tag: [post_title]"
816
  msgstr "Tytuł wiadomości e-mail. Dostępne tagi: [post_title]"
@@ -850,34 +764,174 @@ msgid ""
850
  "Subject of the mail sent to those who request to access their management "
851
  "page. Allowed tag: [blog_name]"
852
  msgstr ""
853
- "Tytuł wiadomości wysyłanej osobom, które chcą zarządzać swoimi "
854
- "subskrypcjami. Dostępne tagi: [blog_name]"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
855
 
856
- #: options/panel4.php:223
857
- msgid "Management Page message"
 
 
 
 
858
  msgstr ""
859
 
860
- #: options/panel4.php:237
861
- msgid "Content of the management Page message. Allowed tags: [blog_name]."
862
  msgstr ""
863
 
864
- #: options/panel4.php:257
865
- msgid ""
866
- "Content of the management email message. Allowed tags: [blog_name], "
867
- "[manager_link]."
868
  msgstr ""
869
 
870
- #: options/panel4.php:263
871
- msgid "One Click Unsubscribe"
872
- msgstr "Pozwól na subskrypcję administratorowi"
873
 
874
- #: options/panel4.php:277
875
  msgid ""
876
- "Content of the One Click confirmation. Allowed tags: [post_title], "
877
- "[blog_name]"
878
  msgstr ""
879
- "Tytuł dla wiadomości potwierdzającej adres e-mail. Dostępne tagi: "
880
- "[post_title]"
881
 
882
  #: options/panel7.php:8 options/panel8.php:8
883
  msgid "Support the developers"
@@ -943,536 +997,499 @@ msgstr ""
943
  "dobry jest. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
944
  "comments-reloaded/\">Oceń go</a> na stronie Pluginów."
945
 
946
- #: options/panel1.php:20
947
- msgid "Mass Update Subscriptions"
948
- msgstr "Masowa aktualizacja subskrypcji"
949
-
950
- #: options/panel1.php:27 options/panel1-edit-subscription.php:16
951
- msgid "From"
952
- msgstr "Od"
953
-
954
- #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
955
- msgid "email address"
956
- msgstr "Adres e-mail nadawcy"
957
-
958
- #: options/panel1.php:33 options/panel1-edit-subscription.php:20
959
- msgid "To"
960
- msgstr "Do"
961
-
962
- #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
963
- msgid "optional - new email address"
964
- msgstr "Aktualizuj adres e-mail"
965
-
966
- #: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
967
- #: options/panel1.php:159 options/panel1-add-subscription.php:20
968
- #: options/panel1-edit-subscription.php:26
969
- msgid "Status"
970
- msgstr "Status"
971
-
972
- #: options/panel1.php:41 options/panel1-edit-subscription.php:28
973
- msgid "Keep unchanged"
974
- msgstr "Zachowaj niezmienione"
975
-
976
- #: options/panel1.php:42 options/panel1.php:79 options/panel1.php:172
977
- #: options/panel1-add-subscription.php:22
978
- #: options/panel1-edit-subscription.php:29
979
- msgid "Active"
980
- msgstr "Akcja"
981
-
982
- #: options/panel1.php:43 options/panel1.php:80
983
- #: options/panel1-add-subscription.php:23
984
- #: options/panel1-edit-subscription.php:30
985
- msgid "Replies only"
986
- msgstr "Tylko odpowiedzi"
987
-
988
- #: options/panel1.php:44 options/panel1-edit-subscription.php:31
989
- msgid "Suspended"
990
- msgstr "Zawieś"
991
-
992
- #: options/panel1.php:46 options/panel1-add-subscription.php:26
993
- #: options/panel1-edit-subscription.php:33
994
- msgid "Update"
995
- msgstr "Aktualizuj"
996
-
997
- #: options/panel1.php:49
998
- msgid "More info"
999
  msgstr ""
1000
 
1001
- #: options/panel1.php:55
1002
  msgid ""
1003
- "This option will allow you to change an email address for another one or to "
1004
- "update the same status for all the subscription on a specific email address."
 
 
1005
  msgstr ""
1006
 
1007
- #: options/panel1.php:61 options/panel1-add-subscription.php:8
1008
- msgid "Add New Subscription"
1009
- msgstr "Dodaj nową subskrypcję"
1010
-
1011
- #: options/panel1.php:68
1012
- msgid "Post ID"
1013
- msgstr "ID wpisu"
1014
-
1015
- #: options/panel1.php:81 options/panel1-add-subscription.php:24
1016
- msgid "Ask user to confirm"
1017
- msgstr "Poproś użytkownika o potwierdzenie"
1018
-
1019
- #: options/panel1.php:83
1020
- msgid "Add"
1021
- msgstr "Dodaj"
1022
-
1023
- #: options/panel1.php:98
1024
- msgid "Search subscriptions"
1025
- msgstr "Szukaj subskrypcji"
1026
 
1027
- #: options/panel1.php:102
1028
- #, php-format
1029
  msgid ""
1030
- "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
1031
- "where the"
 
1032
  msgstr ""
1033
- "Możesz zarówno <a href=\"%s\">wyświetlić wszystkie subskrypcje</a> oraz "
1034
- "wyszukać po"
1035
 
1036
- #: options/panel1.php:106
1037
- msgid "email"
1038
- msgstr "e-mail"
1039
 
1040
- #: options/panel1.php:107
1041
- msgid "post ID"
1042
- msgstr "ID wpisu"
 
1043
 
1044
- #: options/panel1.php:108
1045
- msgid "status"
1046
- msgstr "status"
1047
 
1048
- #: options/panel1.php:111
1049
- msgid "equals"
1050
- msgstr "równe"
1051
 
1052
- #: options/panel1.php:112
1053
- msgid "contains"
1054
- msgstr "zawiera"
1055
 
1056
- #: options/panel1.php:113
1057
- msgid "does not contain"
1058
- msgstr "nie zawiera"
1059
 
1060
- #: options/panel1.php:114
1061
- msgid "starts with"
1062
- msgstr "rozpoczyna się od"
 
1063
 
1064
- #: options/panel1.php:115
1065
- msgid "ends with"
1066
- msgstr "kończy się na"
 
 
1067
 
1068
- #: options/panel1.php:118
1069
- msgid "results per page:"
1070
- msgstr "wyników na stronę:"
 
1071
 
1072
- #: options/panel1.php:120
1073
- msgid "Search"
1074
- msgstr "Szukaj"
1075
 
1076
- #: options/panel1.php:128
1077
- msgid "Reverse the order by Post ID"
1078
- msgstr "Sortuj kolejność wg ID wpisu"
1079
 
1080
- #: options/panel1.php:129 options/panel1.php:130
1081
- msgid "Reverse the order by Date/Time"
1082
- msgstr "Sortuj kolejność wg daty/czasu"
1083
 
1084
- #: options/panel1.php:132
1085
- msgid "Post (ID)"
1086
- msgstr "Wpis (ID)"
1087
 
1088
- #: options/panel1.php:135
1089
- msgid "Search query:"
1090
- msgstr "Wyniki wyszukiwania:"
 
 
 
 
1091
 
1092
- #: options/panel1.php:135
1093
- msgid "Rows:"
1094
- msgstr "Wyniki:"
 
 
 
1095
 
1096
- #: options/panel1.php:135
1097
- msgid "of"
1098
- msgstr "z"
 
 
 
 
1099
 
1100
- #: options/panel1.php:142 options/panel1.php:158
1101
- msgid "Date and Time"
1102
- msgstr "Data i godzina"
 
1103
 
1104
- #: options/panel1.php:168
1105
- msgid "Replies"
1106
- msgstr "Odpowiedzi"
 
 
 
 
 
1107
 
1108
- #: options/panel1.php:169
1109
- msgid "All Comments"
 
 
 
 
 
 
 
 
 
 
 
 
 
1110
  msgstr ""
 
 
 
1111
 
1112
- #: options/panel1.php:170
1113
- msgid "Unconfirmed"
 
 
 
1114
  msgstr ""
 
 
 
1115
 
1116
- #: options/panel1.php:171
1117
- msgid "Inactive"
1118
- msgstr "Akcja"
1119
-
1120
- #: options/panel1.php:201 options/panel1.php:211
1121
- msgid "Edit"
1122
- msgstr "Edytuj"
1123
-
1124
- #: options/panel1.php:203 options/panel1.php:209
1125
- msgid "Subscription"
1126
- msgstr "Subskrypcje"
1127
-
1128
- #: options/panel1.php:226
1129
- msgid "Delete forever"
1130
- msgstr "Usuń na zawsze"
1131
-
1132
- #: options/panel1.php:228
1133
- msgid "Activate and set to Y"
1134
- msgstr "Aktywuj i ustaw na Y"
1135
-
1136
- #: options/panel1.php:229
1137
- msgid "Activate and set to R"
1138
- msgstr "Aktywuj i ustaw na R"
1139
 
1140
- #: options/panel1.php:237
1141
- msgid "Sorry, no subscriptions match your search criteria."
1142
- msgstr "Przepraszamy, żadna subskrypcja nie spełnia wymaganych kryteriów."
 
 
 
 
1143
 
1144
- #: options/panel1-business-logic.php:23
1145
- msgid "Subscription added."
1146
- msgstr "subskrypcja została dodana."
2
  msgstr ""
3
  "Project-Id-Version: Subscribe to Comments Reloaded\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-09-02 19:31-0600\n"
6
  "PO-Revision-Date: \n"
7
+ "Last-Translator: Reedyseth - Israel Barragan <reedyseth@gmail.com>\n"
8
  "Language-Team: Filip \"inzaghi89\" Cierpich <inzaghi89@gmail.com>\n"
9
  "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: s;\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Generator: Poedit 1.8.7.1\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: options/index.php:59 utils/stcr_manage.php:253 utils/stcr_manage.php:382
21
+ #: utils/stcr_manage.php:383
22
+ msgid "Manage subscriptions"
23
+ msgstr "Zarządzaj subskrypcjami"
24
 
25
+ #: options/index.php:60 utils/stcr_manage.php:388 utils/stcr_manage.php:389
26
+ msgid "Comment Form"
27
+ msgstr "Formularz komentarzy"
28
 
29
+ #: options/index.php:61 utils/stcr_manage.php:394 utils/stcr_manage.php:395
30
+ msgid "Management Page"
31
+ msgstr "Zarządzaj stroną"
32
 
33
+ #: options/index.php:62 utils/stcr_manage.php:400 utils/stcr_manage.php:401
34
+ msgid "Notifications"
35
+ msgstr "Powiadomienia"
36
+
37
+ #: options/index.php:63 options/panel2.php:58 options/panel3.php:82
38
+ #: options/panel4.php:89 utils/stcr_manage.php:406 utils/stcr_manage.php:407
39
+ msgid "Options"
40
+ msgstr "Opcje"
41
+
42
+ #: options/index.php:65 utils/stcr_manage.php:422 utils/stcr_manage.php:423
43
+ msgid "You can help"
44
+ msgstr "Możesz pomóc"
45
+
46
+ #: options/index.php:66 utils/stcr_manage.php:428 utils/stcr_manage.php:429
47
+ msgid "Support"
48
+ msgstr "Wsparcie"
49
+
50
+ #: options/index.php:67 utils/stcr_manage.php:434 utils/stcr_manage.php:435
51
+ msgid "Donate"
52
+ msgstr ""
53
+
54
+ #: options/panel1-add-subscription.php:8 options/panel1.php:61
55
+ msgid "Add New Subscription"
56
+ msgstr "Dodaj nową subskrypcję"
57
 
58
+ #: options/panel1-add-subscription.php:13
59
+ #: options/panel1-edit-subscription.php:13
60
+ msgid "Post:"
61
+ msgstr "Wpis:"
62
+
63
+ #: options/panel1-add-subscription.php:16 options/panel1.php:72
64
+ #: options/panel1.php:133 templates/key_expired.php:84
65
+ #: templates/request-management-link.php:84 templates/subscribe.php:104
66
+ #: templates/user.php:57
67
  msgid "Email"
68
  msgstr "E-mail"
69
 
70
+ #: options/panel1-add-subscription.php:20
71
+ #: options/panel1-edit-subscription.php:26 options/panel1.php:39
72
+ #: options/panel1.php:76 options/panel1.php:141 options/panel1.php:159
73
+ msgid "Status"
74
+ msgstr "Status"
75
 
76
+ #: options/panel1-add-subscription.php:22
77
+ #: options/panel1-edit-subscription.php:29 options/panel1.php:42
78
+ #: options/panel1.php:79 options/panel1.php:172
79
+ msgid "Active"
80
+ msgstr "Akcja"
81
 
82
+ #: options/panel1-add-subscription.php:23
83
+ #: options/panel1-edit-subscription.php:30 options/panel1.php:43
84
+ #: options/panel1.php:80
85
+ msgid "Replies only"
86
+ msgstr "Tylko odpowiedzi"
87
 
88
+ #: options/panel1-add-subscription.php:24 options/panel1.php:81
89
+ msgid "Ask user to confirm"
90
+ msgstr "Poproś użytkownika o potwierdzenie"
91
 
92
+ #: options/panel1-add-subscription.php:26
93
+ #: options/panel1-edit-subscription.php:33 options/panel1.php:46
94
+ msgid "Update"
95
+ msgstr "Aktualizuj"
96
+
97
+ #: options/panel1-business-logic.php:23
98
+ msgid "Subscription added."
99
+ msgstr "subskrypcja została dodana."
100
+
101
+ #: options/panel1-business-logic.php:39
102
+ msgid "Subscriptions updated."
103
+ msgstr "subskrypcja została zaktualizowana."
104
+
105
+ #: options/panel1-business-logic.php:51
106
+ msgid "Subscription deleted."
107
+ msgstr "subskrypcja została usunięta."
108
 
109
+ #: options/panel1-business-logic.php:70 templates/author.php:23
110
+ #: templates/user.php:23
111
  msgid "Subscriptions deleted:"
112
  msgstr "Usunięte subskrypcje:"
113
 
114
+ #: options/panel1-business-logic.php:74 templates/author.php:27
115
+ #: templates/user.php:27
116
  msgid "Subscriptions suspended:"
117
  msgstr "Zawieszone subskrypcje:"
118
 
119
+ #: options/panel1-business-logic.php:78 templates/author.php:31
120
+ #: templates/user.php:31
121
  msgid "Subscriptions activated:"
122
  msgstr "Aktywowane subskrypcje:"
123
 
124
+ #: options/panel1-business-logic.php:82 options/panel1-business-logic.php:86
125
+ #: templates/author.php:35 templates/author.php:39 templates/user.php:35
126
+ #: templates/user.php:39
127
  msgid "Subscriptions updated:"
128
  msgstr "Zaktualizowane subskrypcje"
129
 
130
+ #: options/panel1-business-logic.php:110
131
+ msgid "&laquo; Previous"
132
+ msgstr "&laquo; Poprzednia"
133
+
134
+ #: options/panel1-business-logic.php:114
135
+ msgid "Next &raquo;"
136
+ msgstr "Następna &raquo;"
137
+
138
+ #: options/panel1-edit-subscription.php:8
139
+ msgid "Update Subscription"
140
+ msgstr "Aktualizuj subskrypcje"
141
+
142
  #: options/panel1-edit-subscription.php:11
143
+ #: options/panel1-edit-subscription.php:21
144
+ #: options/panel1-edit-subscription.php:22
145
+ #: options/panel1-edit-subscription.php:23
146
+ msgid "optional"
147
+ msgstr "opcjonalne"
148
+
149
+ #: options/panel1-edit-subscription.php:11 options/panel1.php:23
150
+ #: options/panel1.php:124 options/panel1.php:200 options/panel1.php:212
151
+ #: templates/author.php:52 templates/user.php:52
152
  msgid ""
153
  "Please remember: this operation cannot be undone. Are you sure you want to "
154
  "proceed?"
156
  "Proszę pamiętać: ta operacja nie może zostać cofnięta. Czy jesteś pewien, że "
157
  "chcesz kontynuować?"
158
 
159
+ #: options/panel1-edit-subscription.php:16 options/panel1.php:27
160
+ msgid "From"
161
+ msgstr "Od"
 
 
 
 
 
 
 
 
 
 
 
 
 
162
 
163
+ #: options/panel1-edit-subscription.php:20 options/panel1.php:33
164
+ msgid "To"
165
+ msgstr "Do"
166
 
167
+ #: options/panel1-edit-subscription.php:28 options/panel1.php:41
168
+ msgid "Keep unchanged"
169
+ msgstr "Zachowaj niezmienione"
 
170
 
171
+ #: options/panel1-edit-subscription.php:31 options/panel1.php:44
172
+ msgid "Suspended"
173
  msgstr "Zawieś"
174
 
175
+ #: options/panel1.php:20
176
+ msgid "Mass Update Subscriptions"
177
+ msgstr "Masowa aktualizacja subskrypcji"
 
 
 
 
178
 
179
+ #: options/panel1.php:28 options/panel1.php:29 options/panel1.php:30
180
+ msgid "email address"
181
+ msgstr "Adres e-mail nadawcy"
182
 
183
+ #: options/panel1.php:34 options/panel1.php:35 options/panel1.php:36
184
+ msgid "optional - new email address"
185
+ msgstr "Aktualizuj adres e-mail"
186
 
187
+ #: options/panel1.php:49
188
+ msgid "More info"
189
  msgstr ""
190
 
191
+ #: options/panel1.php:55
192
  msgid ""
193
+ "This option will allow you to change an email address for another one or to "
194
+ "update the same status for all the subscription on a specific email address."
 
 
195
  msgstr ""
196
 
197
+ #: options/panel1.php:68
198
+ msgid "Post ID"
199
+ msgstr "ID wpisu"
 
 
 
200
 
201
+ #: options/panel1.php:83
202
+ msgid "Add"
203
+ msgstr "Dodaj"
 
 
204
 
205
+ #: options/panel1.php:98
206
+ msgid "Search subscriptions"
207
+ msgstr "Szukaj subskrypcji"
 
 
 
208
 
209
+ #: options/panel1.php:102
210
+ #, php-format
211
  msgid ""
212
+ "You can either <a href=\"%s\">view all the subscriptions</a> or find those "
213
+ "where the"
 
 
214
  msgstr ""
215
+ "Możesz zarówno <a href=\"%s\">wyświetlić wszystkie subskrypcje</a> oraz "
216
+ "wyszukać po"
217
 
218
+ #: options/panel1.php:106
219
+ msgid "email"
220
+ msgstr "e-mail"
 
 
 
221
 
222
+ #: options/panel1.php:107
223
+ msgid "post ID"
224
+ msgstr "ID wpisu"
 
 
225
 
226
+ #: options/panel1.php:108
227
+ msgid "status"
228
+ msgstr "status"
 
 
 
 
229
 
230
+ #: options/panel1.php:111
231
+ msgid "equals"
232
+ msgstr "równe"
 
 
233
 
234
+ #: options/panel1.php:112
235
+ msgid "contains"
236
+ msgstr "zawiera"
 
 
 
 
237
 
238
+ #: options/panel1.php:113
239
+ msgid "does not contain"
240
+ msgstr "nie zawiera"
 
 
 
 
 
241
 
242
+ #: options/panel1.php:114
243
+ msgid "starts with"
244
+ msgstr "rozpoczyna się od"
 
245
 
246
+ #: options/panel1.php:115
247
+ msgid "ends with"
248
+ msgstr "kończy się na"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
249
 
250
+ #: options/panel1.php:118
251
+ msgid "results per page:"
252
+ msgstr "wyników na stronę:"
 
 
 
 
 
253
 
254
+ #: options/panel1.php:120
255
+ msgid "Search"
256
+ msgstr "Szukaj"
 
 
 
 
 
 
257
 
258
+ #: options/panel1.php:128
259
+ msgid "Reverse the order by Post ID"
260
+ msgstr "Sortuj kolejność wg ID wpisu"
 
 
 
 
 
 
261
 
262
+ #: options/panel1.php:129 options/panel1.php:130
263
+ msgid "Reverse the order by Date/Time"
264
+ msgstr "Sortuj kolejność wg daty/czasu"
 
 
 
 
 
 
265
 
266
+ #: options/panel1.php:132
267
+ msgid "Post (ID)"
268
+ msgstr "Wpis (ID)"
 
 
 
 
 
 
269
 
270
+ #: options/panel1.php:135
271
+ msgid "Search query:"
272
+ msgstr "Wyniki wyszukiwania:"
 
 
 
 
273
 
274
+ #: options/panel1.php:135
275
+ msgid "Rows:"
276
+ msgstr "Wyniki:"
 
 
 
 
 
 
 
277
 
278
+ #: options/panel1.php:135
279
+ msgid "of"
280
+ msgstr "z"
281
 
282
+ #: options/panel1.php:142 options/panel1.php:158
283
+ msgid "Date and Time"
284
+ msgstr "Data i godzina"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
285
 
286
+ #: options/panel1.php:168
287
+ msgid "Replies"
288
+ msgstr "Odpowiedzi"
289
 
290
+ #: options/panel1.php:169
291
+ msgid "All Comments"
 
 
 
 
 
292
  msgstr ""
 
 
 
 
 
 
293
 
294
+ #: options/panel1.php:170
295
+ msgid "Unconfirmed"
 
 
 
 
 
 
296
  msgstr ""
297
 
298
+ #: options/panel1.php:171
299
+ msgid "Inactive"
300
+ msgstr "Akcja"
 
 
 
 
 
 
 
301
 
302
+ #: options/panel1.php:200 options/panel1.php:212 templates/author.php:72
303
+ #: templates/user.php:70
304
+ msgid "Delete"
305
+ msgstr "Usuń"
306
 
307
+ #: options/panel1.php:201 options/panel1.php:211
308
+ msgid "Edit"
309
+ msgstr "Edytuj"
310
 
311
+ #: options/panel1.php:203 options/panel1.php:209
312
+ msgid "Subscription"
313
+ msgstr "Subskrypcje"
314
 
315
+ #: options/panel1.php:223 templates/author.php:71 templates/user.php:69
316
+ msgid "Action:"
317
+ msgstr "Akcja:"
 
318
 
319
+ #: options/panel1.php:226
320
+ msgid "Delete forever"
321
+ msgstr "Usuń na zawsze"
322
 
323
+ #: options/panel1.php:227 templates/author.php:73 templates/user.php:71
324
+ msgid "Suspend"
325
+ msgstr "Zawieś"
326
 
327
+ #: options/panel1.php:228
328
+ msgid "Activate and set to Y"
329
+ msgstr "Aktywuj i ustaw na Y"
330
 
331
+ #: options/panel1.php:229
332
+ msgid "Activate and set to R"
333
+ msgstr "Aktywuj i ustaw na R"
334
 
335
+ #: options/panel1.php:230 templates/author.php:76 templates/user.php:74
336
+ msgid "Activate"
337
+ msgstr "Aktywuj"
 
 
 
 
338
 
339
+ #: options/panel1.php:234 templates/author.php:77 templates/user.php:76
340
+ msgid "Update subscriptions"
341
+ msgstr "Aktualizuj subskrypcje"
342
 
343
+ #: options/panel1.php:237
344
+ msgid "Sorry, no subscriptions match your search criteria."
345
+ msgstr "Przepraszamy, żadna subskrypcja nie spełnia wymaganych kryteriów."
 
 
 
 
346
 
347
+ #: options/panel10.php:22 options/panel10.php:23
348
+ msgid "System Information"
 
349
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
 
351
  #: options/panel2.php:12 options/panel2.php:63
352
  msgid "Enable default checkbox"
388
  msgid "Author label"
389
  msgstr "Opis autora"
390
 
391
+ #: options/panel2.php:49 options/panel3.php:70 options/panel4.php:78
392
+ #: options/panel5.php:18 options/panel5.php:60
393
  msgid "Your settings have been successfully updated."
394
  msgstr "Twoje ustawienia zostały pomyślnie zapisane."
395
 
396
+ #: options/panel2.php:51 options/panel3.php:72 options/panel4.php:80
397
+ #: options/panel5.php:20 options/panel5.php:62
398
  msgid "There was an error updating the following fields:"
399
  msgstr "Wystąpił problem podczas zapisu następujacych ustawień:"
400
 
405
  msgid "Yes"
406
  msgstr "Tak"
407
 
408
+ #: options/panel2.php:67 options/panel2.php:77 options/panel2.php:106
409
+ #: options/panel5.php:79 options/panel5.php:96 options/panel5.php:105
410
+ #: options/panel5.php:114 options/panel5.php:124 options/panel5.php:133
411
+ #: options/panel5.php:143 options/panel5.php:152 options/panel5.php:161
412
+ #: utils/stcr_manage.php:784
413
+ msgid "No"
414
+ msgstr "Nie"
415
+
416
  #: options/panel2.php:68
417
  msgid ""
418
  "Disable this option if you want to move the subscription checkbox to a "
447
  msgid ""
448
  "Allow users to choose from different subscription types (all, replies only)."
449
  msgstr ""
450
+ "Zezwól użytkownikom na wybór różnych sposobów subskrypcji (wszystkie, tylko "
451
+ "odpowiedzi)."
452
+
453
+ #: options/panel2.php:115
454
+ msgid "Advanced default"
455
+ msgstr "Domyślne zaznaczenie"
456
+
457
+ #: options/panel2.php:119
458
+ msgid "None"
459
+ msgstr ""
460
+
461
+ #: options/panel2.php:124
462
+ msgid ""
463
+ "The default subscription type that should be selected when Advanced "
464
+ "subscriptions are enable."
465
+ msgstr ""
466
+
467
+ #: options/panel2.php:135
468
+ msgid "Custom inline CSS to add to the checkbox."
469
+ msgstr "Własne ustawienia CSS dla checkboksa."
470
+
471
+ #: options/panel2.php:152
472
+ msgid ""
473
+ "Custom HTML code to be used when displaying the checkbox. Allowed tags: "
474
+ "[checkbox_field], [checkbox_label]"
475
+ msgstr ""
476
+ "Własny kod HTML do wyświetlania checkboksa. Dostępne tagi: [checkbox_field], "
477
+ "[checkbox_label]"
478
+
479
+ #: options/panel2.php:158
480
+ msgid "Messages for your visitors"
481
+ msgstr "Wiadomości dla czytelników"
482
+
483
+ #: options/panel2.php:162
484
+ msgid "Default label"
485
+ msgstr "Domyslny opis"
486
+
487
+ #: options/panel2.php:175
488
+ msgid "Label associated to the checkbox. Allowed tag: [subscribe_link]"
489
+ msgstr "Opis przypisany do checkboksa. Dostępne tagi: [subscribe_link]"
490
+
491
+ #: options/panel2.php:192
492
+ msgid ""
493
+ "Label shown to those who are already subscribed to a post. Allowed tag: "
494
+ "[manager_link]"
495
+ msgstr ""
496
+ "Opis pokazywany osobie, która jest już zapisana do subskrypcji wpisu. "
497
+ "Dostępne tagi: [manager_link]"
498
+
499
+ #: options/panel2.php:197
500
+ msgid "Pending label"
501
+ msgstr "Opis oczekujących"
502
+
503
+ #: options/panel2.php:209
504
+ msgid ""
505
+ "Label shown to those who are already subscribed, but haven't clicked on the "
506
+ "confirmation link yet. Allowed tag: [manager_link]"
507
+ msgstr ""
508
+ "Opis pokazywany osobie, która jest już zapisana do subskrypcji wpisu, ale "
509
+ "nie kliknęła odnośnika weryfikacji. Dostępne tagi: [manager_link]"
510
+
511
+ #: options/panel2.php:225
512
+ msgid ""
513
+ "Label shown to authors (and administrators). Allowed tag: [manager_link]"
514
+ msgstr ""
515
+ "Opis pokazywany autorom (oraz administratorom). Dostępne tagi: [manager_link]"
516
+
517
+ #: options/panel2.php:230 options/panel3.php:253 options/panel4.php:283
518
+ #: options/panel5.php:195
519
+ msgid "Save Changes"
520
+ msgstr "Zapisz zmiany"
521
+
522
+ #: options/panel3.php:13 options/panel3.php:87
523
+ msgid "Virtual Management Page"
524
+ msgstr "Zarządzanie wirtualną stroną"
525
+
526
+ #: options/panel3.php:18 options/panel3.php:96
527
+ msgid "Page title"
528
+ msgstr "Tytuł strony"
529
+
530
+ #: options/panel3.php:23 options/panel3.php:105
531
+ msgid "Management URL"
532
+ msgstr "Zarządzaj odnośnikiem"
533
+
534
+ #: options/panel3.php:28 options/panel3.php:117
535
+ msgid "Custom HEAD meta"
536
+ msgstr "Własny nagłówek meta"
537
+
538
+ #: options/panel3.php:34 options/panel3.php:131
539
+ msgid "Request link"
540
+ msgstr "Rządanie odnośnika"
541
+
542
+ #: options/panel3.php:39 options/panel3.php:149
543
+ msgid "Request submitted"
544
+ msgstr "Potwierdzenie subskrypcji"
545
+
546
+ #: options/panel3.php:44 options/panel3.php:167
547
+ msgid "Subscribe without commenting"
548
+ msgstr "Subskrybcja bez komentowania"
549
+
550
+ #: options/panel3.php:49 options/panel3.php:185
551
+ msgid "Subscription processed"
552
+ msgstr "Dodanie do subskrypcji"
553
+
554
+ #: options/panel3.php:54 options/panel3.php:203
555
+ msgid "Subscription processed (DCI)"
556
+ msgstr "Dodanie do subskrypcji (+weryfikacja)"
557
+
558
+ #: options/panel3.php:59 options/panel3.php:220
559
+ msgid "Authors"
560
+ msgstr "Autorzy"
561
+
562
+ #: options/panel3.php:64 options/panel3.php:236
563
+ msgid "Users"
564
+ msgstr "Użytkownicy"
565
+
566
+ #: options/panel3.php:90
567
+ msgid "Enabled"
568
+ msgstr "Włączona"
569
+
570
+ #: options/panel3.php:91
571
+ msgid "Disabled"
572
+ msgstr "Wyłączona"
573
+
574
+ #: options/panel3.php:92
575
+ msgid ""
576
+ "Disable the virtual management page if you need to create a <a href="
577
+ "\"https://github.com/stcr/subscribe-to-comments-reloaded/wiki/KB#create-a-"
578
+ "real-management-page\">real page</a> to make your theme happy."
579
+ msgstr ""
580
+ "Wyłącz zarządzanie subskrypcjami poprzez wirtualną stronę. Jeśli chcesz "
581
+ "możesz utworzyć \"<a href=\"http://lab.duechiacchiere.it/index.php?"
582
+ "topic=71.0\">statyczną strone</a>\"."
583
 
584
+ #: options/panel3.php:101
585
+ msgid "Title of the page your visitors will use to manage their subscriptions."
586
  msgstr ""
587
+ "Tytuł strony, której będą używać użytkownicy do zarządzania subskrypcjami."
588
 
589
+ #: options/panel3.php:109
590
  msgid ""
591
+ "The permalink for your management page (something like <code>/manage-"
592
+ "subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
593
+ "b> actually exist in the system, but its link must follow your permalink "
594
+ "structure."
595
  msgstr ""
596
+ "Odnosnik do zarządzania stroną z subskrypcjami (coś w stylu <code>/manage-"
597
+ "subscriptions</code> lub <code>/?page_id=345</code>). Ta strona <b>nie "
598
+ "będzie widniała</b> w systemie, ale jej odnośnik musi odpowiadać strukturze "
599
+ "\"Bezpośrednich odnosników\" (aka. permalink)."
600
 
601
+ #: options/panel3.php:111
 
 
 
 
602
  msgid ""
603
+ "Warning: it looks like the value you are using may be incompatible with your "
604
+ "permalink structure"
605
  msgstr ""
606
+ "Ostrzeżenie: wygląda na to, że wartość, którą podaleś nei odpowiada "
607
+ "strukturze permalinków."
608
 
609
+ #: options/panel3.php:121
610
+ msgid ""
611
+ "Specify your custom HTML code to be added to the HEAD section of the page. "
612
+ "Use <strong>single</strong> quotes for values."
613
+ msgstr ""
614
+ "Podaj swój kod HTML, który ma być dodany w sekcji HEAD strony. Użyj znaku "
615
+ "<strong>apostforu</strong>."
616
 
617
+ #: options/panel3.php:127 options/panel4.php:135
618
+ msgid "Messages"
619
+ msgstr "Wiadomości"
620
 
621
+ #: options/panel3.php:144
622
+ msgid "Text shown to those who request to manage their subscriptions."
623
+ msgstr "Tekst wyświetlany osobom, które proszą o zarządzanie subskrypcjami."
624
 
625
+ #: options/panel3.php:162
626
  msgid ""
627
+ "Thank you note shown after the request here above has been processed. "
628
+ "Allowed tags: [post_title], [post_permalink]"
629
  msgstr ""
630
+ "Iinformacja wyświetlana użytkownikom po zapisaniu do subskrypcji. Dostępne "
631
+ "tagi: [post_title], [post_permalink]"
 
 
 
 
632
 
633
+ #: options/panel3.php:180
634
  msgid ""
635
+ "Text shown to those who want to subscribe without commenting. Allowed tags: "
636
+ "[post_title], [post_permalink]"
637
  msgstr ""
638
+ "Informacja wyświetlana użytkownikom chcącym subskrybować bez komentowania "
639
+ "wpisu. Dostępne tagi: [post_title], [post_permalink]"
640
 
641
+ #: options/panel3.php:198
642
  msgid ""
643
+ "Thank you note shown after the subscription request has been processed "
644
+ "(double check-in disabled). Allowed tags: [post_title], [post_permalink]"
645
  msgstr ""
646
+ "Informacja wyświetlana po zapisaniu do subskrypcji (wyłączona podwójna "
647
+ "weryfikacja). Dostępne tagi: [post_title], [post_permalink]"
648
 
649
+ #: options/panel3.php:216
650
+ msgid ""
651
+ "Thank you note shown after the subscription request has been processed "
652
+ "(double check-in enabled). Allowed tags: [post_title], [post_permalink]"
653
+ msgstr ""
654
+ "Informacja wyświetlana po zapisaniu do subskrypcji (włączona podwójna "
655
+ "weryfikacja). Dostępne tagi: [post_title], [post_permalink]"
656
 
657
+ #: options/panel3.php:232
658
+ msgid "Introductory text for the authors' management page."
659
  msgstr ""
660
+ "Tekst wyświetlany na stronie zarządzania subskrypcjami dla autora wpisu."
 
661
 
662
+ #: options/panel3.php:248
663
+ msgid "Introductory text for the users' management page."
 
 
 
664
  msgstr ""
665
+ "Tekst wyświetlany na stronie zarządzania subskrypcjami dla użytkownika."
666
 
667
  #: options/panel4.php:15 options/panel4.php:94
668
  msgid "Sender name"
725
  "will be the same as the Sender email address."
726
  msgstr ""
727
 
 
 
 
 
728
  #: options/panel4.php:147
729
  msgid "Subject of the notification email. Allowed tag: [post_title]"
730
  msgstr "Tytuł wiadomości e-mail. Dostępne tagi: [post_title]"
764
  "Subject of the mail sent to those who request to access their management "
765
  "page. Allowed tag: [blog_name]"
766
  msgstr ""
767
+ "Tytuł wiadomości wysyłanej osobom, które chcą zarządzać swoimi "
768
+ "subskrypcjami. Dostępne tagi: [blog_name]"
769
+
770
+ #: options/panel4.php:223
771
+ msgid "Management Page message"
772
+ msgstr ""
773
+
774
+ #: options/panel4.php:237
775
+ msgid "Content of the management Page message. Allowed tags: [blog_name]."
776
+ msgstr ""
777
+
778
+ #: options/panel4.php:257
779
+ msgid ""
780
+ "Content of the management email message. Allowed tags: [blog_name], "
781
+ "[manager_link]."
782
+ msgstr ""
783
+
784
+ #: options/panel4.php:263
785
+ msgid "One Click Unsubscribe"
786
+ msgstr "Pozwól na subskrypcję administratorowi"
787
+
788
+ #: options/panel4.php:277
789
+ msgid ""
790
+ "Content of the One Click confirmation. Allowed tags: [post_title], "
791
+ "[blog_name]"
792
+ msgstr ""
793
+ "Tytuł dla wiadomości potwierdzającej adres e-mail. Dostępne tagi: "
794
+ "[post_title]"
795
+
796
+ #: options/panel5.php:28
797
+ msgid "Safetly Uninstall"
798
+ msgstr ""
799
+
800
+ #: options/panel5.php:31 options/panel5.php:84
801
+ msgid "Autopurge requests"
802
+ msgstr "Automatyczne czyszczenie"
803
+
804
+ #: options/panel5.php:34 options/panel5.php:93
805
+ msgid "Enable double check"
806
+ msgstr "Włącz weryfikację e-mail"
807
+
808
+ #: options/panel5.php:37 options/panel5.php:101
809
+ msgid "Subscribe authors"
810
+ msgstr "Opis subskrypcji"
811
+
812
+ #: options/panel5.php:40 options/panel5.php:111
813
+ msgid "Enable HTML emails"
814
+ msgstr "Włacz HTML w e-mailach"
815
+
816
+ #: options/panel5.php:43
817
+ msgid "HTMLify Links in HTML emails"
818
+ msgstr ""
819
+
820
+ #: options/panel5.php:46
821
+ msgid "Send trackbacks"
822
+ msgstr "Wysyłaj trackbacki"
823
+
824
+ #: options/panel5.php:49
825
+ msgid "Notify admin"
826
+ msgstr "Informuj administratora"
827
+
828
+ #: options/panel5.php:52 options/panel5.php:149
829
+ msgid "Let admin subscribe"
830
+ msgstr "Pozwól na subskrypcję administratorowi"
831
+
832
+ #: options/panel5.php:55 options/panel5.php:158
833
+ msgid "BCC admin on Notifications"
834
+ msgstr "Powiadomienia"
835
+
836
+ #: options/panel5.php:76
837
+ msgid "Safely Uninstall"
838
+ msgstr ""
839
+
840
+ #: options/panel5.php:80
841
+ msgid ""
842
+ "This option will allow you to delete the plugin with WordPress without "
843
+ "loosing your subscribers. Any database table and plugin options are wipeout."
844
+ msgstr ""
845
+
846
+ #: options/panel5.php:87
847
+ msgid "days"
848
+ msgstr "dni"
849
+
850
+ #: options/panel5.php:88
851
+ msgid ""
852
+ "Delete pending subscriptions (not confirmed) after X days. Zero disables "
853
+ "this feature."
854
+ msgstr ""
855
+ "Usuwaj oczekujące subskrypcje (niepotwierdzone) po X dniach. \"0\" wyłącza "
856
+ "tę funkcjonalność."
857
+
858
+ #: options/panel5.php:97
859
+ msgid ""
860
+ "Send a notification email to confirm the subscription (to avoid addresses "
861
+ "misuse)."
862
+ msgstr ""
863
+ "Wysyłaj e-mail z potwierdzeniem subskrypcji (by zapobiec pomyłkom w "
864
+ "adresach, oraz zabezpieczyć przed botami)."
865
+
866
+ #: options/panel5.php:106
867
+ msgid ""
868
+ "Automatically subscribe authors to their own articles (not retroactive)."
869
+ msgstr ""
870
+
871
+ #: options/panel5.php:115
872
+ msgid ""
873
+ "If enabled, will send email messages with content-type = text/html instead "
874
+ "of text/plain"
875
+ msgstr ""
876
+ "Jeśli włączone, wysyłane będą wiadomości e-mail z content-type=text/html "
877
+ "zamiast text/plain"
878
+
879
+ #: options/panel5.php:120
880
+ msgid "HTMLify links in emails"
881
+ msgstr ""
882
+
883
+ #: options/panel5.php:125
884
+ msgid ""
885
+ "If enabled, will wrap all links in messages with <code>&lt;a href=\"\"&gt;"
886
+ "&lt;/a&gt;</code> (only when HTML emails enabled)."
887
+ msgstr ""
888
+
889
+ #: options/panel5.php:130
890
+ msgid "Process trackbacks"
891
+ msgstr "Śledź trackbacki"
892
+
893
+ #: options/panel5.php:134
894
+ msgid ""
895
+ "Notify users when a new trackback or pingback is added to the discussion."
896
+ msgstr ""
897
+ "Informuj użytkowników o nowych trackbackach i pingbackach dodanych do "
898
+ "dyskusji."
899
+
900
+ #: options/panel5.php:139
901
+ msgid "Track all subscriptions"
902
+ msgstr "Śledź wszystkie subskrypcje"
903
+
904
+ #: options/panel5.php:144
905
+ msgid "Notify the administrator when users subscribe without commenting."
906
+ msgstr ""
907
+ "Informuj administratora jeśli użytkownik rozpocznie subskrypcję bez "
908
+ "komentowania."
909
 
910
+ #: options/panel5.php:153
911
+ msgid "Let the administrator subscribe to comments when logged in."
912
+ msgstr "Pozwól administratorowi subskrybować jeśli jest zalogowany."
913
+
914
+ #: options/panel5.php:162
915
+ msgid "Send a copy of all Notifications to the administrator."
916
  msgstr ""
917
 
918
+ #: options/panel5.php:167
919
+ msgid "StCR Unique Key"
920
  msgstr ""
921
 
922
+ #: options/panel5.php:172
923
+ msgid "This Unique Key is not set, please click the following button to "
 
 
924
  msgstr ""
925
 
926
+ #: options/panel5.php:176 options/panel5.php:187
927
+ msgid "Generate"
928
+ msgstr ""
929
 
930
+ #: options/panel5.php:184
931
  msgid ""
932
+ "This Unique Key will be use to send the notification to your subscribers "
933
+ "with more security."
934
  msgstr ""
 
 
935
 
936
  #: options/panel7.php:8 options/panel8.php:8
937
  msgid "Support the developers"
997
  "dobry jest. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
998
  "comments-reloaded/\">Oceń go</a> na stronie Pluginów."
999
 
1000
+ #: options/panel8.php:18
1001
+ msgid "Did you find a Bug on the plugin?"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1002
  msgstr ""
1003
 
1004
+ #: options/panel8.php:19
1005
  msgid ""
1006
+ "Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
1007
+ "comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
1008
+ "%3E&labels=bug\" target=\"_blank\">GitHub</a> Page rather than on the "
1009
+ "WordPress Support page."
1010
  msgstr ""
1011
 
1012
+ #: options/panel9.php:11
1013
+ msgid "Support Subscribe to Comments Reloaded"
1014
+ msgstr ""
1015
+ "Potrzebujesz pomocy, jak używać wtyczki Subscribe to Comments Reloaded? "
1016
+ "Odwiedź oficjalną stronę"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1017
 
1018
+ #: options/panel9.php:12
 
1019
  msgid ""
1020
+ "Every contribution that you make is high valuable, so if you consider this "
1021
+ "plugin a helpful tool we will use your donation to invest on support and "
1022
+ "developing time."
1023
  msgstr ""
 
 
1024
 
1025
+ #: templates/author.php:57
1026
+ msgid "Title"
1027
+ msgstr "Tytuł"
1028
 
1029
+ #: templates/author.php:58 templates/user.php:58
1030
+ msgid "Legend: Y = all comments, R = replies only, C = inactive"
1031
+ msgstr ""
1032
+ "Legenda: Y = wszystkie komentarze, R = tylko odpowiedzi, C = zawieszone"
1033
 
1034
+ #: templates/author.php:69 templates/user.php:67
1035
+ msgid "Select all"
1036
+ msgstr "Zaznacz wszystko"
1037
 
1038
+ #: templates/author.php:70 templates/user.php:68
1039
+ msgid "Invert selection"
1040
+ msgstr "Usuń zaznaczenie"
1041
 
1042
+ #: templates/author.php:74 templates/user.php:72
1043
+ msgid "All comments"
1044
+ msgstr ""
1045
 
1046
+ #: templates/author.php:75 templates/user.php:73 wp_subscribe_reloaded.php:1088
1047
+ msgid "Replies to my comments"
1048
+ msgstr "Odpowiedzi do moich komentarzy"
1049
 
1050
+ #: templates/author.php:80 templates/one-click-unsubscribe.php:30
1051
+ #: templates/user.php:79
1052
+ msgid "No subscriptions match your search criteria."
1053
+ msgstr "Żadna subskrypcja nie spełnia twoich kryteriów."
1054
 
1055
+ #: templates/key_expired.php:8
1056
+ msgid ""
1057
+ "Woohaa the link to manage your subscriptions has expired, don't worry, just "
1058
+ "enter your email below and a new link will be send."
1059
+ msgstr ""
1060
 
1061
+ #: templates/key_expired.php:86 templates/request-management-link.php:86
1062
+ #: templates/subscribe.php:106
1063
+ msgid "Send"
1064
+ msgstr "Wyślij"
1065
 
1066
+ #: templates/subscribe.php:43 templates/subscribe.php:44
1067
+ msgid "New subscription to"
1068
+ msgstr "Nowa subskrypcja do"
1069
 
1070
+ #: templates/subscribe.php:44
1071
+ msgid "User:"
1072
+ msgstr "Użytkownik:"
1073
 
1074
+ #: templates/user.php:63
1075
+ msgid "F j, Y"
1076
+ msgstr ""
1077
 
1078
+ #: templates/wrong-request.php:9
1079
+ msgid "You have request to manage another email address and this is forbidden."
1080
+ msgstr ""
1081
 
1082
+ #: utils/stcr_manage.php:246
1083
+ msgid ""
1084
+ "Notify me of followup comments via e-mail. You can also <a "
1085
+ "href='[subscribe_link]'>subscribe</a> without commenting."
1086
+ msgstr ""
1087
+ "Informuj mnie o odpowiedziach poprzez e-mail. Możesz również <a "
1088
+ "href='[subscribe_link]'>subskrybować</a> wpis bez zostawiania komentarza."
1089
 
1090
+ #: utils/stcr_manage.php:247
1091
+ msgid ""
1092
+ "You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
1093
+ "subscriptions."
1094
+ msgstr ""
1095
+ "Subskrybujesz ten wpis. <a href='[manager_link]'>Zarządzaj subskrypcją</a>."
1096
 
1097
+ #: utils/stcr_manage.php:248
1098
+ msgid ""
1099
+ "Your subscription to this post needs to be confirmed. <a "
1100
+ "href='[manager_link]'>Manage your subscriptions</a>."
1101
+ msgstr ""
1102
+ "Twoja subskrypcja do tego postu musi zostać potwierdzona. <a "
1103
+ "href='[manager_link]'>Zarządzaj subskrypcją</a>."
1104
 
1105
+ #: utils/stcr_manage.php:249
1106
+ msgid ""
1107
+ "You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
1108
+ msgstr "Możesz <a href='[manager_link]'>zarządzać subskrypcją</a> tego wpisu."
1109
 
1110
+ #: utils/stcr_manage.php:255
1111
+ msgid ""
1112
+ "To manage your subscriptions, please enter your email address here below. We "
1113
+ "will send you a message containing the link to access your personal "
1114
+ "management page."
1115
+ msgstr ""
1116
+ "By zarządzać subskrypcjami, proszę wprowadzić adres e-mail w polu poniżej. "
1117
+ "Otrzymasz wiadomość zawierajacą odnośnik do strony zarządzania subskrypcjami."
1118
 
1119
+ #: utils/stcr_manage.php:256
1120
+ msgid ""
1121
+ "Thank you for using our subscription service. Your request has been "
1122
+ "completed, and you should receive an email with the management link in a few "
1123
+ "minutes."
1124
+ msgstr ""
1125
+ "Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. W "
1126
+ "przeciągu kilku minut powinieneś otrzymać wiadomość e-mail z odnośnikiem do "
1127
+ "zarządzania subskrypcjami."
1128
+
1129
+ #: utils/stcr_manage.php:257
1130
+ msgid ""
1131
+ "You can follow the discussion on <strong>[post_title]</strong> without "
1132
+ "having to leave a comment. Cool, huh? Just enter your email address in the "
1133
+ "form here below and you're all set."
1134
  msgstr ""
1135
+ "Możesz śledzić dyskusję we wpisie <strong>[post_title]</strong> bez "
1136
+ "zostawiania komentarza. Wystarczy, że wpiszesz swój adres e-mail w polu "
1137
+ "poniżej, a o następnym komentarzu zostaniesz powiadomiony e-mailem."
1138
 
1139
+ #: utils/stcr_manage.php:258
1140
+ msgid ""
1141
+ "Thank you for using our subscription service. Your request has been "
1142
+ "completed. You will receive a notification email every time a new comment to "
1143
+ "this article is approved and posted by the administrator."
1144
  msgstr ""
1145
+ "Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. "
1146
+ "Będziesz otrzymywał powiadomienie za każdym razem, gdy pojawi się nowy "
1147
+ "komentarz zaakceptowany przez administratora do tego wpisu."
1148
 
1149
+ #: utils/stcr_manage.php:259
1150
+ msgid ""
1151
+ "Thank you for using our subscription service. In order to confirm your "
1152
+ "request, please check your email for the verification message and follow the "
1153
+ "instructions."
1154
+ msgstr ""
1155
+ "Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. Proszę "
1156
+ "sprawdzić swoją pocztę w celu weryfikacji adresu e-mail i podążać zgodnie z "
1157
+ "instrukcjami w nim zawartymi."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1158
 
1159
+ #: utils/stcr_manage.php:260
1160
+ msgid ""
1161
+ "In order to cancel or suspend one or more notifications, select the "
1162
+ "corresponding checkbox(es) and click on the button at the end of the list."
1163
+ msgstr ""
1164
+ "W celu anulowania bądź zrezygnowania z subskrypcji, proszę wybrać z "
1165
+ "poniższej listy wpis, a następnie wybrać akcję, którą chcesz wykonać."
1166
 
1167
+ #: utils/stcr_manage.php:261
1168
+ msgid ""
1169
+