Version Description
= v180212 = Security Patch This version add a patch for some security issues. Fix Critical Bug This version fix a critical bug causing issues with wrong database collations.
= v170607 = Fix Critical Bug This version fix a critical bug on fresh installation regarding a database table creation.
= v170428 = Fix issues This version fix a few bug reported on GitHub and also includes an improvement on the management page. See the change log for more details.
= v160915 = Fix issues This version fix the StCR position in the comment form. Small improvement in the Management Page.
= 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.
Release Info
Developer | reedyseth |
Plugin | Subscribe To Comments Reloaded |
Version | 180212 |
Comparing to | |
See all releases |
Code changes from version 170607 to 180212
- includes/css/stcr-plugin-style.css +1 -1
- includes/js/stcr-admin.js +10 -0
- includes/js/stcr-plugin.js +1 -1
- langs/subscribe-reloaded-be_BY.mo +0 -0
- langs/subscribe-reloaded-be_BY.po +440 -333
- langs/subscribe-reloaded-cs_CZ.mo +0 -0
- langs/subscribe-reloaded-cs_CZ.po +446 -359
- langs/subscribe-reloaded-da_DK.mo +0 -0
- langs/subscribe-reloaded-da_DK.po +428 -324
- langs/subscribe-reloaded-de_DE.mo +0 -0
- langs/subscribe-reloaded-de_DE.po +450 -334
- langs/subscribe-reloaded-es_ES.mo +0 -0
- langs/subscribe-reloaded-es_ES.po +468 -356
- langs/subscribe-reloaded-fa_IR.mo +0 -0
- langs/subscribe-reloaded-fa_IR.po +580 -462
- langs/subscribe-reloaded-fr_FR.mo +0 -0
- langs/subscribe-reloaded-fr_FR.po +441 -334
- langs/subscribe-reloaded-he_IL.mo +0 -0
- langs/subscribe-reloaded-he_IL.po +422 -322
- langs/subscribe-reloaded-hu_HU.mo +0 -0
- langs/subscribe-reloaded-hu_HU.po +464 -321
- langs/subscribe-reloaded-id_ID.mo +0 -0
- langs/subscribe-reloaded-id_ID.po +439 -332
- langs/subscribe-reloaded-it_IT.mo +0 -0
- langs/subscribe-reloaded-it_IT.po +448 -339
- langs/subscribe-reloaded-nb_NO.mo +0 -0
- langs/subscribe-reloaded-nb_NO.po +441 -337
- langs/subscribe-reloaded-nl_NL.mo +0 -0
- langs/subscribe-reloaded-nl_NL.po +441 -333
- langs/subscribe-reloaded-pl_PL.mo +0 -0
- langs/subscribe-reloaded-pl_PL.po +437 -330
- langs/subscribe-reloaded-pt_BR.mo +0 -0
- langs/subscribe-reloaded-pt_BR.po +456 -347
- langs/subscribe-reloaded-pt_PT.mo +0 -0
- langs/subscribe-reloaded-pt_PT.po +449 -343
- langs/subscribe-reloaded-ru_RU.mo +0 -0
- langs/subscribe-reloaded-ru_RU.po +440 -333
- langs/subscribe-reloaded-sr_RS.mo +0 -0
- langs/subscribe-reloaded-sr_RS.po +434 -327
- langs/subscribe-reloaded-sv_SE.mo +0 -0
- langs/subscribe-reloaded-sv_SE.po +438 -331
- langs/subscribe-reloaded-tr_TR.mo +0 -0
- langs/subscribe-reloaded-tr_TR.po +432 -325
- langs/subscribe-reloaded-zh_CN.mo +0 -0
- langs/subscribe-reloaded-zh_CN.po +365 -309
@@ -4,6 +4,6 @@
|
|
4 |
* @author reedyseth
|
5 |
*/
|
6 |
|
7 |
-
.hidden {
|
8 |
display: none !important;
|
9 |
}
|
4 |
* @author reedyseth
|
5 |
*/
|
6 |
|
7 |
+
.stcr-hidden {
|
8 |
display: none !important;
|
9 |
}
|
@@ -58,5 +58,15 @@
|
|
58 |
$( info_panel).addClass( "hidden" );
|
59 |
}
|
60 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
});
|
62 |
} )( jQuery );
|
58 |
$( info_panel).addClass( "hidden" );
|
59 |
}
|
60 |
});
|
61 |
+
/**
|
62 |
+
* Control the execution of the options restore process.
|
63 |
+
* @author reedyseth
|
64 |
+
* @since 08-February-2018
|
65 |
+
*/
|
66 |
+
$('input.reset_all_options').on("click", function ( event ) {
|
67 |
+
var confirmation = confirm("If you proceed this action cannot be undone, all settings will be wipe out");
|
68 |
+
|
69 |
+
return confirmation;
|
70 |
+
});
|
71 |
});
|
72 |
} )( jQuery );
|
@@ -23,7 +23,7 @@ jQuery(document).ready(function($){
|
|
23 |
if($this.find(':input[type="submit"]').length)
|
24 |
{
|
25 |
stcr_form.remove(), $this.before(stcr_form);
|
26 |
-
jQuery('div.stcr-form').removeClass( 'hidden' );
|
27 |
return false; // Break the each() loop.
|
28 |
}
|
29 |
});
|
23 |
if($this.find(':input[type="submit"]').length)
|
24 |
{
|
25 |
stcr_form.remove(), $this.before(stcr_form);
|
26 |
+
jQuery('div.stcr-form').removeClass( 'stcr-hidden' );
|
27 |
return false; // Break the each() loop.
|
28 |
}
|
29 |
});
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: Web Geeks\n"
|
9 |
"Language: be_BY\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Рэдагаваць падпіскі"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Форма каментара"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Старонка кіравання"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Апавяшчэнні"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Параметры"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Вы можаце дапамагчы"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr "Падтрымка"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr ""
|
52 |
|
@@ -345,95 +341,95 @@ msgstr "Абнавіць падпіскі"
|
|
345 |
msgid "Sorry, no subscriptions match your search criteria."
|
346 |
msgstr "Выбачыце, ніводная падпіска не адпавядае вашаму пошукаваму запыту."
|
347 |
|
348 |
-
#: options/panel10.php:
|
349 |
msgid "The log file has been successfully deleted."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: options/panel10.php:
|
353 |
msgid "Can't delete the log file, check the file permissions."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: options/panel10.php:
|
357 |
msgid "The log file does not exists."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: options/panel10.php:
|
361 |
msgid "Enable Log Information"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: options/panel10.php:
|
365 |
msgid "Enable Auto clean log data"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: options/panel10.php:
|
369 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
370 |
msgid "Your settings have been successfully updated."
|
371 |
msgstr "Вашы налады паспяхова абноўлены."
|
372 |
|
373 |
-
#: options/panel10.php:
|
374 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
375 |
msgid "There was an error updating the following fields:"
|
376 |
msgstr "Адбылася памылка ў абнаўленні наступных палёў:"
|
377 |
|
378 |
-
#: options/panel10.php:
|
379 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
380 |
-
#: options/panel5.php:
|
381 |
-
#: options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
msgid "Yes"
|
385 |
msgstr "Так"
|
386 |
|
387 |
-
#: options/panel10.php:
|
388 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
389 |
-
#: options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
msgid "No"
|
394 |
msgstr "Не"
|
395 |
|
396 |
-
#: options/panel10.php:
|
397 |
msgid ""
|
398 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
399 |
"purposes."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: options/panel10.php:
|
403 |
msgid "Hourly"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: options/panel10.php:
|
407 |
msgid "Twice Daily"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: options/panel10.php:
|
411 |
msgid "Daily"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: options/panel10.php:
|
415 |
msgid "If enabled, StCR will auto clean your information every day."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: options/panel10.php:
|
419 |
msgid "Clean Up Log Archive"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: options/panel10.php:
|
423 |
msgid ""
|
424 |
"If you want to clean up the log archive please click the following button"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: options/panel10.php:
|
428 |
msgid "Clean"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: options/panel10.php:
|
432 |
msgid "System Information"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: options/panel10.php:
|
436 |
-
#: options/panel4.php:283 options/panel5.php:
|
437 |
msgid "Save Changes"
|
438 |
msgstr "Захаваць змены"
|
439 |
|
@@ -771,7 +767,7 @@ msgstr "Толькі адказы"
|
|
771 |
#: options/panel4.php:128
|
772 |
msgid ""
|
773 |
"This will be use when the user click reply on their email agent. If not set "
|
774 |
-
"will be the same as the Sender email address."
|
775 |
msgstr ""
|
776 |
|
777 |
#: options/panel4.php:147
|
@@ -787,8 +783,8 @@ msgstr ""
|
|
787 |
|
788 |
#: options/panel4.php:171
|
789 |
msgid ""
|
790 |
-
"<p><strong>Note: To get a default template clear
|
791 |
-
"the options.</strong></p>"
|
792 |
msgstr ""
|
793 |
|
794 |
#: options/panel4.php:184
|
@@ -835,79 +831,95 @@ msgid ""
|
|
835 |
"[blog_name]"
|
836 |
msgstr "Тэма ліста пра пацверджанне. Дазволены тэг: [post_title]"
|
837 |
|
838 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
839 |
msgid "Show StCR checkbox / dropdown"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: options/panel5.php:
|
843 |
msgid "Safetly Uninstall"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: options/panel5.php:
|
847 |
msgid "Autopurge requests"
|
848 |
msgstr "Аўтаматычна выдаляць запыты"
|
849 |
|
850 |
-
#: options/panel5.php:
|
851 |
msgid "Enable double check"
|
852 |
msgstr "Уключыць падвойнае пацверджанне"
|
853 |
|
854 |
-
#: options/panel5.php:
|
855 |
msgid "StCR Position"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: options/panel5.php:
|
859 |
msgid "Subscribe authors"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: options/panel5.php:
|
863 |
msgid "Enable HTML emails"
|
864 |
msgstr "Выкарыстоўваць HTML лісты"
|
865 |
|
866 |
-
#: options/panel5.php:
|
867 |
msgid "HTMLify Links in HTML emails"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: options/panel5.php:
|
871 |
msgid "Send trackbacks"
|
872 |
msgstr "Адпраўляць трэкбеки"
|
873 |
|
874 |
-
#: options/panel5.php:
|
875 |
msgid "Notify admin"
|
876 |
msgstr "Апавясціць адміна"
|
877 |
|
878 |
-
#: options/panel5.php:
|
879 |
msgid "Let admin subscribe"
|
880 |
msgstr "Дазволіць адміну падпісвацца"
|
881 |
|
882 |
-
#: options/panel5.php:
|
883 |
msgid "BCC admin on Notifications"
|
884 |
msgstr "Апавяшчэнні"
|
885 |
|
886 |
-
#: options/panel5.php:
|
887 |
msgid "Enable Font Awesome"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
891 |
msgid ""
|
892 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
893 |
"You should leave it to Yes always. "
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: options/panel5.php:
|
897 |
msgid "Safely Uninstall"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: options/panel5.php:
|
901 |
msgid ""
|
902 |
"This option will allow you to delete the plugin with WordPress without "
|
903 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: options/panel5.php:
|
907 |
msgid "days"
|
908 |
msgstr "дзён"
|
909 |
|
910 |
-
#: options/panel5.php:
|
911 |
msgid ""
|
912 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
913 |
"this feature."
|
@@ -915,14 +927,14 @@ msgstr ""
|
|
915 |
"Выдаляць якія чакаюць пацверджанні (не пацверджаныя) падпіскі праз Х дзён. "
|
916 |
"Нуль адключае гэту функцыю."
|
917 |
|
918 |
-
#: options/panel5.php:
|
919 |
msgid ""
|
920 |
"If this option is enable the subscription box will be above the submit "
|
921 |
"button in your comment form. Use this when your theme is outdated and using "
|
922 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: options/panel5.php:
|
926 |
msgid ""
|
927 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
928 |
"misuse)."
|
@@ -930,12 +942,12 @@ msgstr ""
|
|
930 |
"Адпраўляць ліст з просьбай пацвердзіць падпіску (каб пазбегнуць выкарыстанні "
|
931 |
"эл. адрасы без вядзёная ўладальніка)"
|
932 |
|
933 |
-
#: options/panel5.php:
|
934 |
msgid ""
|
935 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: options/panel5.php:
|
939 |
msgid ""
|
940 |
"If enabled, will send email messages with content-type = text/html instead "
|
941 |
"of text/plain"
|
@@ -943,75 +955,99 @@ msgstr ""
|
|
943 |
"Пры выбары гэтай функцыі паведамлення будуць адпраўляцца ў фармаце тэкст/"
|
944 |
"html замест звычайнага тэксту"
|
945 |
|
946 |
-
#: options/panel5.php:
|
947 |
msgid "HTMLify links in emails"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: options/panel5.php:
|
951 |
msgid ""
|
952 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
953 |
"</a></code> (only when HTML emails enabled)."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: options/panel5.php:
|
957 |
msgid "Process trackbacks"
|
958 |
msgstr "Апрацоўваць трэкбеки"
|
959 |
|
960 |
-
#: options/panel5.php:
|
961 |
msgid ""
|
962 |
"Notify users when a new trackback or pingback is added to the discussion."
|
963 |
msgstr ""
|
964 |
"Апавяшчаць падпісантаў пра новыя трэкбеках ці пингбэках да абмеркавання"
|
965 |
|
966 |
-
#: options/panel5.php:
|
967 |
msgid "Track all subscriptions"
|
968 |
msgstr "Адсачыць усе падпіскі"
|
969 |
|
970 |
-
#: options/panel5.php:
|
971 |
msgid "Notify the administrator when users subscribe without commenting."
|
972 |
msgstr "Апавяшчаць адміністратара, калі карыстачы падпісваюцца без каментара."
|
973 |
|
974 |
-
#: options/panel5.php:
|
975 |
msgid "Let the administrator subscribe to comments when logged in."
|
976 |
msgstr "Дазволіць адміну падпісвацца, калі ён аўтарызаваны."
|
977 |
|
978 |
-
#: options/panel5.php:
|
979 |
msgid "Send a copy of all Notifications to the administrator."
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: options/panel5.php:
|
983 |
msgid ""
|
984 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
985 |
"you theme already add this into your site."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: options/panel5.php:
|
989 |
msgid "StCR Unique Key"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: options/panel5.php:
|
993 |
msgid "This Unique Key is not set, please click the following button to "
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: options/panel5.php:
|
997 |
msgid "Generate"
|
998 |
msgstr "Tasso di rimbalzo"
|
999 |
|
1000 |
-
#: options/panel5.php:
|
1001 |
msgid ""
|
1002 |
"This Unique Key will be use to send the notification to your subscribers "
|
1003 |
"with more security."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: options/
|
1007 |
-
msgid "
|
1008 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1009 |
|
1010 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1011 |
msgid ""
|
1012 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1013 |
"consider supporting the author if this plugin made your web site better, "
|
1014 |
-
"especially if you are making money out of it
|
|
|
1015 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1016 |
"strong>, and to buy some food for my hungry family."
|
1017 |
msgstr ""
|
@@ -1023,18 +1059,27 @@ msgstr ""
|
|
1023 |
"<b>Subscribe to Comments Reloaded</b> і на тое, каб купіць трохі ежы маёй "
|
1024 |
"галоднай сям'і."
|
1025 |
|
1026 |
-
#: options/panel7.php:
|
1027 |
-
|
1028 |
-
|
|
|
|
|
1029 |
|
1030 |
-
#: options/panel7.php:
|
1031 |
-
|
1032 |
-
|
1033 |
-
"
|
1034 |
-
"
|
1035 |
-
"
|
1036 |
-
"
|
1037 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
msgstr ""
|
1039 |
"Калі вы не жадаеце дапамагчы грашыма, калі ласка, разгледзіце магчымасць "
|
1040 |
"напісаць пра маю ўбудову ў сваім блогу і пакінуць спасылку на старонку "
|
@@ -1044,11 +1089,11 @@ msgstr ""
|
|
1044 |
"<b>Subscribe to Comments Reloaded</b> і гэтак далей. Што б вы ні абралі, "
|
1045 |
"дзякуй, што карыстаецеся маёй убудовай!"
|
1046 |
|
1047 |
-
#: options/panel7.php:
|
1048 |
msgid "Subscribe to the Beta testers"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: options/panel7.php:
|
1052 |
msgid ""
|
1053 |
"Before a new Update we release a Beta version so that our current users can "
|
1054 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1056,11 +1101,11 @@ msgid ""
|
|
1056 |
"a>"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: options/panel7.php:
|
1060 |
msgid "Vote and show your appreciation"
|
1061 |
msgstr "Прагаласуйце і пакажыце сваю ўдзячнасць"
|
1062 |
|
1063 |
-
#: options/panel7.php:
|
1064 |
msgid ""
|
1065 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1066 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1071,11 +1116,11 @@ msgstr ""
|
|
1071 |
"\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
|
1072 |
"\">Ацэніце</a> яго ў частцы ўбудоў на сайце Wordpress."
|
1073 |
|
1074 |
-
#: options/panel8.php:
|
1075 |
msgid "Did you find a Bug on the plugin?"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: options/panel8.php:
|
1079 |
msgid ""
|
1080 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1081 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1170,206 +1215,46 @@ msgstr ""
|
|
1170 |
msgid "You have request to manage another email address and this is forbidden."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: utils/stcr_manage.php:
|
1174 |
-
msgid ""
|
1175 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1176 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1177 |
-
msgstr ""
|
1178 |
-
"Атрымліваць новыя каментары па электроннай пошце. Вы можаце <a "
|
1179 |
-
"href='[subscribe_link]'>падпісацца</a> без каментавання."
|
1180 |
-
|
1181 |
-
#: utils/stcr_manage.php:224
|
1182 |
-
msgid ""
|
1183 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1184 |
-
"subscriptions."
|
1185 |
-
msgstr ""
|
1186 |
-
"Вы падпісаны на гэты артыкул. <a href='[manager_link]'>Рэдагаваць</a> свае "
|
1187 |
-
"падпіскі."
|
1188 |
-
|
1189 |
-
#: utils/stcr_manage.php:225
|
1190 |
-
msgid ""
|
1191 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1192 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1193 |
-
msgstr ""
|
1194 |
-
"Ваша падпіска на гэты артыкул мае патрэбу ў пацверджанні. <a "
|
1195 |
-
"href='[manager_link]'>Рэдагаваць</a> свае падпіскі."
|
1196 |
-
|
1197 |
-
#: utils/stcr_manage.php:226
|
1198 |
-
msgid ""
|
1199 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1200 |
-
msgstr ""
|
1201 |
-
"Вы можаце <a href='[manager_link]'>кіраваць падпіскамі</a> на гэты запіс."
|
1202 |
-
|
1203 |
-
#: utils/stcr_manage.php:232
|
1204 |
-
msgid ""
|
1205 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1206 |
-
"will send you a message containing the link to access your personal "
|
1207 |
-
"management page."
|
1208 |
-
msgstr ""
|
1209 |
-
"Для кіравання сваімі падпіскамі, калі ласка, увядзіце свой электронны адрас "
|
1210 |
-
"у форму ніжэй. Мы адправім вам паведамленне са спасылкай на вашу "
|
1211 |
-
"персанальную старонку кіравання."
|
1212 |
-
|
1213 |
-
#: utils/stcr_manage.php:233
|
1214 |
-
msgid ""
|
1215 |
-
"Thank you for using our subscription service. Your request has been "
|
1216 |
-
"completed, and you should receive an email with the management link in a few "
|
1217 |
-
"minutes."
|
1218 |
-
msgstr ""
|
1219 |
-
"Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. На "
|
1220 |
-
"працягу некалькіх хвілін вы павінны атрымаць ліст са спасылкай на старонку "
|
1221 |
-
"кіравання падпіскамі."
|
1222 |
-
|
1223 |
-
#: utils/stcr_manage.php:234
|
1224 |
-
msgid ""
|
1225 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1226 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1227 |
-
"form here below and you're all set."
|
1228 |
-
msgstr ""
|
1229 |
-
"Вы можаце сачыць за абмеркаваннем артыкула <strong>[post_title]</strong>, не "
|
1230 |
-
"пакідаючы свайго каментара. Выдатна, ці не праўда? Проста ўвядзіце свой "
|
1231 |
-
"электронны адрас у форму ніжэй, і гатова!"
|
1232 |
-
|
1233 |
-
#: utils/stcr_manage.php:235
|
1234 |
-
msgid ""
|
1235 |
-
"Thank you for using our subscription service. Your request has been "
|
1236 |
-
"completed. You will receive a notification email every time a new comment to "
|
1237 |
-
"this article is approved and posted by the administrator."
|
1238 |
-
msgstr ""
|
1239 |
-
"Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. Вы "
|
1240 |
-
"будзеце атрымліваць апавяшчэнні кожных разоў, як новы каментар да гэты "
|
1241 |
-
"артыкулу будзе ўхвалены і апублікаваны адміністратарам сайта."
|
1242 |
-
|
1243 |
-
#: utils/stcr_manage.php:236
|
1244 |
-
msgid ""
|
1245 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1246 |
-
"request, please check your email for the verification message and follow the "
|
1247 |
-
"instructions."
|
1248 |
-
msgstr ""
|
1249 |
-
"Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Каб пацвердзіць свой "
|
1250 |
-
"запыт, калі ласка, праверце сваю пошту і вынікайце інструкцыям у лісце пра "
|
1251 |
-
"пацверджанне."
|
1252 |
-
|
1253 |
-
#: utils/stcr_manage.php:237
|
1254 |
-
msgid ""
|
1255 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1256 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1257 |
-
msgstr ""
|
1258 |
-
"Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
|
1259 |
-
"адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу."
|
1260 |
-
|
1261 |
-
#: utils/stcr_manage.php:238
|
1262 |
-
msgid ""
|
1263 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1264 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1265 |
-
"You are currently subscribed to:"
|
1266 |
-
msgstr ""
|
1267 |
-
"Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
|
1268 |
-
"адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу. На дадзены "
|
1269 |
-
"момант вы падпісаны на:"
|
1270 |
-
|
1271 |
-
#: utils/stcr_manage.php:242
|
1272 |
-
msgid "There is a new comment to [post_title]"
|
1273 |
-
msgstr "З'явіўся новы каментар да артыкула [post_title]"
|
1274 |
-
|
1275 |
-
#: utils/stcr_manage.php:243
|
1276 |
-
msgid ""
|
1277 |
-
"There is a new comment to [post_title].\n"
|
1278 |
-
"Comment Link: [comment_permalink]\n"
|
1279 |
-
"Author: [comment_author]\n"
|
1280 |
-
"Comment:\n"
|
1281 |
-
"[comment_content]\n"
|
1282 |
-
"Permalink: [post_permalink]\n"
|
1283 |
-
"Manage your subscriptions: [manager_link]"
|
1284 |
-
msgstr ""
|
1285 |
-
"З'явіўся новы каментар да артыкула [post_title].\n"
|
1286 |
-
"Спасылка на каментар: [comment_permalink]\n"
|
1287 |
-
"Аўтар: [comment_author]\n"
|
1288 |
-
"Каментар:\n"
|
1289 |
-
"[comment_content]\n"
|
1290 |
-
"\n"
|
1291 |
-
"Спасылка на артыкул: [post_permalink]\n"
|
1292 |
-
"Кіраванне падпіскамі: [manager_link]"
|
1293 |
-
|
1294 |
-
#: utils/stcr_manage.php:244
|
1295 |
-
msgid "Please confirm your subscription to [post_title]"
|
1296 |
-
msgstr "Калі ласка, пацвердзіце сваю падпіску на артыкул [post_title]"
|
1297 |
-
|
1298 |
-
#: utils/stcr_manage.php:245
|
1299 |
-
msgid ""
|
1300 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1301 |
-
"[post_permalink]\n"
|
1302 |
-
"\n"
|
1303 |
-
"Please confirm your request by clicking on this link:\n"
|
1304 |
-
"[confirm_link]"
|
1305 |
-
msgstr ""
|
1306 |
-
"Вы зрабілі запыт на атрыманне новых каментароў да артыкула:\n"
|
1307 |
-
"[post_permalink]\n"
|
1308 |
-
"\n"
|
1309 |
-
"Калі ласка, перайдзіце па наступнай спасылцы, каб пацвердзіць падпіску:\n"
|
1310 |
-
"[confirm_link]"
|
1311 |
-
|
1312 |
-
#: utils/stcr_manage.php:246
|
1313 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1314 |
-
msgstr "Рэдагаваць свае падпіскі на сайце [blog_name]"
|
1315 |
-
|
1316 |
-
#: utils/stcr_manage.php:247
|
1317 |
-
msgid ""
|
1318 |
-
"You have requested to manage your subscriptions to the articles on "
|
1319 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1320 |
-
msgstr ""
|
1321 |
-
|
1322 |
-
#: utils/stcr_manage.php:248
|
1323 |
-
msgid ""
|
1324 |
-
"You have requested to manage your subscriptions to the articles on "
|
1325 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1326 |
-
"[manager_link]"
|
1327 |
-
msgstr ""
|
1328 |
-
"Вы зрабілі запыт на рэдагаванне сваіх падпісак на каментары да артыкулаў на "
|
1329 |
-
"сайце [blog_name]. Вось спасылка на вашу асабістую старонку кіравання "
|
1330 |
-
"падпіскамі:\n"
|
1331 |
-
"[manager_link]"
|
1332 |
-
|
1333 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1334 |
msgid "StCR System"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: utils/stcr_manage.php:
|
1338 |
-
#: utils/stcr_manage.php:
|
1339 |
-
#: utils/stcr_manage.php:
|
1340 |
-
#: utils/stcr_manage.php:
|
1341 |
-
#: utils/stcr_manage.php:
|
1342 |
msgid "You do not have sufficient permissions to access this page."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: utils/stcr_manage.php:
|
1346 |
msgid "Subscriptions"
|
1347 |
msgstr "Падпіскі"
|
1348 |
|
1349 |
-
#: utils/stcr_manage.php:
|
1350 |
msgid ""
|
1351 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1352 |
msgstr ""
|
1353 |
"Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
|
1354 |
"Наведаеце наш афіцыйны"
|
1355 |
|
1356 |
-
#: utils/stcr_manage.php:
|
1357 |
msgid "support forum"
|
1358 |
msgstr "форум падтрымкі"
|
1359 |
|
1360 |
-
#: utils/stcr_manage.php:
|
1361 |
msgid "Feeling generous?"
|
1362 |
msgstr "Жадаеце выявіць шчодрасць?"
|
1363 |
|
1364 |
-
#: utils/stcr_manage.php:
|
1365 |
msgid "Donate a few bucks!"
|
1366 |
msgstr "Ахвяруйце пару баксаў!"
|
1367 |
|
1368 |
-
#: utils/stcr_upgrade.php:
|
1369 |
msgid "Important Notice"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: utils/stcr_upgrade.php:
|
1373 |
msgid ""
|
1374 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1375 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1377,28 +1262,28 @@ msgid ""
|
|
1377 |
"src=\""
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: utils/stcr_upgrade.php:
|
1381 |
msgid ""
|
1382 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1383 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1384 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: utils/stcr_upgrade.php:
|
1388 |
msgid ""
|
1389 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1390 |
"Comments to prevent confusion between the two plugins."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: utils/stcr_upgrade.php:
|
1394 |
msgid ""
|
1395 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1396 |
"that you want to import, you'll need to import that data manually, as only "
|
1397 |
"one import routine will ever run to prevent data loss."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: utils/stcr_upgrade.php:
|
1401 |
-
#: utils/stcr_upgrade.php:
|
1402 |
msgid ""
|
1403 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1404 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1406,20 +1291,20 @@ msgid ""
|
|
1406 |
"\"stcr-loading-animation\" src=\""
|
1407 |
msgstr ""
|
1408 |
|
1409 |
-
#: utils/stcr_upgrade.php:
|
1410 |
msgid ""
|
1411 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1412 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1413 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: utils/stcr_upgrade.php:
|
1417 |
msgid ""
|
1418 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1419 |
"Notification to prevent confusion between the two plugins."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: utils/stcr_upgrade.php:
|
1423 |
msgid ""
|
1424 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1425 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1427,13 +1312,13 @@ msgid ""
|
|
1427 |
"Reloaded</strong>."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: utils/stcr_upgrade.php:
|
1431 |
msgid ""
|
1432 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1433 |
"Subscriptions to prevent confusion between the two plugins."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: utils/stcr_upgrade.php:
|
1437 |
msgid ""
|
1438 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1439 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1441,7 +1326,7 @@ msgid ""
|
|
1441 |
"ever run to prevent data loss."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: utils/stcr_upgrade.php:
|
1445 |
msgid ""
|
1446 |
"<strong>Note:</strong> If you were previously using the "
|
1447 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1450,29 +1335,29 @@ msgid ""
|
|
1450 |
"respectively."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: utils/stcr_upgrade.php:
|
1454 |
msgid ""
|
1455 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: utils/stcr_upgrade.php:
|
1459 |
-
#: utils/stcr_upgrade.php:
|
1460 |
msgid ""
|
1461 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1462 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: utils/stcr_upgrade.php:
|
1466 |
msgid ""
|
1467 |
-
"Please consider to make a donation to support the plugin
|
1468 |
-
"<a href=\"\n"
|
1469 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1470 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1471 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1472 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: utils/stcr_upgrade.php:
|
1476 |
msgid ""
|
1477 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1478 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1480,23 +1365,23 @@ msgid ""
|
|
1480 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: utils/stcr_upgrade.php:
|
1484 |
msgid ""
|
1485 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1486 |
"160106."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: utils/stcr_upgrade.php:
|
1490 |
msgid ""
|
1491 |
"This version includes many changes and fixes to improve your experience with "
|
1492 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1493 |
"email templates, Subscription Checkbox position, and more!"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: utils/stcr_upgrade.php:
|
1497 |
-
#: utils/stcr_upgrade.php:
|
1498 |
-
#: utils/stcr_upgrade.php:
|
1499 |
-
#: utils/stcr_upgrade.php:
|
1500 |
msgid ""
|
1501 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1502 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1504,123 +1389,126 @@ msgid ""
|
|
1504 |
"class=\"stcr-loading-animation\" src=\""
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: utils/stcr_upgrade.php:
|
1508 |
msgid ""
|
1509 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1510 |
"160115."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: utils/stcr_upgrade.php:
|
1514 |
msgid ""
|
1515 |
"This version includes fixes to broken links while managing your subscriptions"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: utils/stcr_upgrade.php:
|
1519 |
msgid ""
|
1520 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1521 |
"160831"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: utils/stcr_upgrade.php:
|
1525 |
msgid "This version includes fixes to many bugs and also new features, "
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: utils/stcr_upgrade.php:
|
1529 |
msgid ""
|
1530 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1531 |
"address. This will help the subscribers to use the Reply option in their "
|
1532 |
"email agents."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: utils/stcr_upgrade.php:
|
1536 |
msgid ""
|
1537 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1538 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: utils/stcr_upgrade.php:
|
1542 |
msgid ""
|
1543 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1544 |
"without loosing your subscriptions. You can use this option also for reset "
|
1545 |
"all the settings, see the FAQ."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: utils/stcr_upgrade.php:
|
1549 |
msgid ""
|
1550 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1551 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1552 |
"Post Type."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: utils/stcr_upgrade.php:
|
1556 |
msgid ""
|
1557 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1558 |
"options to and the management link only by email and not to display it on "
|
1559 |
"the request link page."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: utils/stcr_upgrade.php:
|
1563 |
msgid ""
|
1564 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1565 |
"160902"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: utils/stcr_upgrade.php:
|
1569 |
msgid ""
|
1570 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1571 |
"previous 160831 version."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: utils/stcr_upgrade.php:
|
1575 |
msgid "Settings"
|
1576 |
msgstr "Scegli ordine"
|
1577 |
|
1578 |
-
#: utils/stcr_upgrade.php:
|
1579 |
msgid ""
|
1580 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1581 |
"160915"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: utils/stcr_upgrade.php:
|
1585 |
-
#: utils/stcr_upgrade.php:
|
1586 |
msgid "This version includes fixes and improvements, "
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: utils/stcr_upgrade.php:
|
1590 |
msgid ""
|
1591 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1592 |
"dropdown."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: utils/stcr_upgrade.php:
|
1596 |
msgid ""
|
1597 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: utils/stcr_upgrade.php:
|
|
|
1601 |
msgid "Log Settings"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: utils/stcr_upgrade.php:
|
|
|
1605 |
msgid ""
|
1606 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: utils/stcr_upgrade.php:
|
1610 |
msgid ""
|
1611 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1612 |
"enable."
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: utils/stcr_upgrade.php:
|
1616 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: utils/stcr_upgrade.php:
|
|
|
1620 |
msgid "The support of this plugin is given thanks to your donations."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
1624 |
msgid ""
|
1625 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1626 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1630,19 +1518,19 @@ msgid ""
|
|
1630 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: utils/stcr_upgrade.php:
|
1634 |
msgid ""
|
1635 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1636 |
"installation regarding a database table creation."
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: utils/stcr_upgrade.php:
|
1640 |
msgid ""
|
1641 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1642 |
"Awesome."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: utils/stcr_upgrade.php:
|
1646 |
msgid ""
|
1647 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1648 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1653,7 +1541,202 @@ msgid ""
|
|
1653 |
"for the users that have supported the plugin development."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1657 |
msgid "StCR Notification"
|
1658 |
msgstr "Апавяшчэнні"
|
1659 |
|
@@ -1665,6 +1748,30 @@ msgstr "Не падпісвацца"
|
|
1665 |
msgid "All"
|
1666 |
msgstr "Усё"
|
1667 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1668 |
#~ msgid ""
|
1669 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1670 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:07-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:10-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 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Рэдагаваць падпіскі"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Форма каментара"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Старонка кіравання"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Апавяшчэнні"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Параметры"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "Падтрымка"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr ""
|
48 |
|
341 |
msgid "Sorry, no subscriptions match your search criteria."
|
342 |
msgstr "Выбачыце, ніводная падпіска не адпавядае вашаму пошукаваму запыту."
|
343 |
|
344 |
+
#: options/panel10.php:41
|
345 |
msgid "The log file has been successfully deleted."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: options/panel10.php:46
|
349 |
msgid "Can't delete the log file, check the file permissions."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: options/panel10.php:52
|
353 |
msgid "The log file does not exists."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: options/panel10.php:66 options/panel10.php:110
|
357 |
msgid "Enable Log Information"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: options/panel10.php:72 options/panel10.php:119
|
361 |
msgid "Enable Auto clean log data"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
365 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
366 |
msgid "Your settings have been successfully updated."
|
367 |
msgstr "Вашы налады паспяхова абноўлены."
|
368 |
|
369 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
370 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
371 |
msgid "There was an error updating the following fields:"
|
372 |
msgstr "Адбылася памылка ў абнаўленні наступных палёў:"
|
373 |
|
374 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
375 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
376 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
377 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
378 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
379 |
+
#: options/panel5.php:210 options/panel5.php:219
|
380 |
msgid "Yes"
|
381 |
msgstr "Так"
|
382 |
|
383 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
384 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
385 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
386 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
387 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
388 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
389 |
msgid "No"
|
390 |
msgstr "Не"
|
391 |
|
392 |
+
#: options/panel10.php:114
|
393 |
msgid ""
|
394 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
395 |
"purposes."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: options/panel10.php:125
|
399 |
msgid "Hourly"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: options/panel10.php:126
|
403 |
msgid "Twice Daily"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: options/panel10.php:127
|
407 |
msgid "Daily"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: options/panel10.php:129
|
411 |
msgid "If enabled, StCR will auto clean your information every day."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: options/panel10.php:134
|
415 |
msgid "Clean Up Log Archive"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: options/panel10.php:138
|
419 |
msgid ""
|
420 |
"If you want to clean up the log archive please click the following button"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: options/panel10.php:140
|
424 |
msgid "Clean"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: options/panel10.php:147 options/panel10.php:150
|
428 |
msgid "System Information"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
432 |
+
#: options/panel4.php:283 options/panel5.php:265
|
433 |
msgid "Save Changes"
|
434 |
msgstr "Захаваць змены"
|
435 |
|
767 |
#: options/panel4.php:128
|
768 |
msgid ""
|
769 |
"This will be use when the user click reply on their email agent. If not set "
|
770 |
+
"it will be the same as the Sender email address."
|
771 |
msgstr ""
|
772 |
|
773 |
#: options/panel4.php:147
|
783 |
|
784 |
#: options/panel4.php:171
|
785 |
msgid ""
|
786 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
787 |
+
"all the content and save the options.</strong></p>"
|
788 |
msgstr ""
|
789 |
|
790 |
#: options/panel4.php:184
|
831 |
"[blog_name]"
|
832 |
msgstr "Тэма ліста пра пацверджанне. Дазволены тэг: [post_title]"
|
833 |
|
834 |
+
#: options/panel5.php:38
|
835 |
+
#, fuzzy
|
836 |
+
#| msgid "Your settings have been successfully updated."
|
837 |
+
msgid "Your settings have been successfully reset."
|
838 |
+
msgstr "Вашы налады паспяхова абноўлены."
|
839 |
+
|
840 |
+
#: options/panel5.php:40
|
841 |
+
#, fuzzy
|
842 |
+
#| msgid "There was an error updating the following fields:"
|
843 |
+
msgid "There was an error deleting the options:"
|
844 |
+
msgstr "Адбылася памылка ў абнаўленні наступных палёў:"
|
845 |
+
|
846 |
+
#: options/panel5.php:48 options/panel5.php:108
|
847 |
msgid "Show StCR checkbox / dropdown"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: options/panel5.php:51
|
851 |
msgid "Safetly Uninstall"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: options/panel5.php:54 options/panel5.php:125
|
855 |
msgid "Autopurge requests"
|
856 |
msgstr "Аўтаматычна выдаляць запыты"
|
857 |
|
858 |
+
#: options/panel5.php:57 options/panel5.php:143
|
859 |
msgid "Enable double check"
|
860 |
msgstr "Уключыць падвойнае пацверджанне"
|
861 |
|
862 |
+
#: options/panel5.php:60 options/panel5.php:134
|
863 |
msgid "StCR Position"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: options/panel5.php:63 options/panel5.php:151
|
867 |
msgid "Subscribe authors"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: options/panel5.php:66 options/panel5.php:161
|
871 |
msgid "Enable HTML emails"
|
872 |
msgstr "Выкарыстоўваць HTML лісты"
|
873 |
|
874 |
+
#: options/panel5.php:69
|
875 |
msgid "HTMLify Links in HTML emails"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: options/panel5.php:72
|
879 |
msgid "Send trackbacks"
|
880 |
msgstr "Адпраўляць трэкбеки"
|
881 |
|
882 |
+
#: options/panel5.php:75
|
883 |
msgid "Notify admin"
|
884 |
msgstr "Апавясціць адміна"
|
885 |
|
886 |
+
#: options/panel5.php:78 options/panel5.php:199
|
887 |
msgid "Let admin subscribe"
|
888 |
msgstr "Дазволіць адміну падпісвацца"
|
889 |
|
890 |
+
#: options/panel5.php:81 options/panel5.php:208
|
891 |
msgid "BCC admin on Notifications"
|
892 |
msgstr "Апавяшчэнні"
|
893 |
|
894 |
+
#: options/panel5.php:84 options/panel5.php:217
|
895 |
msgid "Enable Font Awesome"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
899 |
+
msgid "Reset All Options"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: options/panel5.php:112
|
903 |
msgid ""
|
904 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
905 |
"You should leave it to Yes always. "
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: options/panel5.php:117
|
909 |
msgid "Safely Uninstall"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: options/panel5.php:121
|
913 |
msgid ""
|
914 |
"This option will allow you to delete the plugin with WordPress without "
|
915 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: options/panel5.php:128
|
919 |
msgid "days"
|
920 |
msgstr "дзён"
|
921 |
|
922 |
+
#: options/panel5.php:129
|
923 |
msgid ""
|
924 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
925 |
"this feature."
|
927 |
"Выдаляць якія чакаюць пацверджанні (не пацверджаныя) падпіскі праз Х дзён. "
|
928 |
"Нуль адключае гэту функцыю."
|
929 |
|
930 |
+
#: options/panel5.php:138
|
931 |
msgid ""
|
932 |
"If this option is enable the subscription box will be above the submit "
|
933 |
"button in your comment form. Use this when your theme is outdated and using "
|
934 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: options/panel5.php:147
|
938 |
msgid ""
|
939 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
940 |
"misuse)."
|
942 |
"Адпраўляць ліст з просьбай пацвердзіць падпіску (каб пазбегнуць выкарыстанні "
|
943 |
"эл. адрасы без вядзёная ўладальніка)"
|
944 |
|
945 |
+
#: options/panel5.php:156
|
946 |
msgid ""
|
947 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: options/panel5.php:165
|
951 |
msgid ""
|
952 |
"If enabled, will send email messages with content-type = text/html instead "
|
953 |
"of text/plain"
|
955 |
"Пры выбары гэтай функцыі паведамлення будуць адпраўляцца ў фармаце тэкст/"
|
956 |
"html замест звычайнага тэксту"
|
957 |
|
958 |
+
#: options/panel5.php:170
|
959 |
msgid "HTMLify links in emails"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: options/panel5.php:175
|
963 |
msgid ""
|
964 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
965 |
"</a></code> (only when HTML emails enabled)."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: options/panel5.php:180
|
969 |
msgid "Process trackbacks"
|
970 |
msgstr "Апрацоўваць трэкбеки"
|
971 |
|
972 |
+
#: options/panel5.php:184
|
973 |
msgid ""
|
974 |
"Notify users when a new trackback or pingback is added to the discussion."
|
975 |
msgstr ""
|
976 |
"Апавяшчаць падпісантаў пра новыя трэкбеках ці пингбэках да абмеркавання"
|
977 |
|
978 |
+
#: options/panel5.php:189
|
979 |
msgid "Track all subscriptions"
|
980 |
msgstr "Адсачыць усе падпіскі"
|
981 |
|
982 |
+
#: options/panel5.php:194
|
983 |
msgid "Notify the administrator when users subscribe without commenting."
|
984 |
msgstr "Апавяшчаць адміністратара, калі карыстачы падпісваюцца без каментара."
|
985 |
|
986 |
+
#: options/panel5.php:203
|
987 |
msgid "Let the administrator subscribe to comments when logged in."
|
988 |
msgstr "Дазволіць адміну падпісвацца, калі ён аўтарызаваны."
|
989 |
|
990 |
+
#: options/panel5.php:212
|
991 |
msgid "Send a copy of all Notifications to the administrator."
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: options/panel5.php:221
|
995 |
msgid ""
|
996 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
997 |
"you theme already add this into your site."
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: options/panel5.php:226
|
1001 |
msgid "StCR Unique Key"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: options/panel5.php:231
|
1005 |
msgid "This Unique Key is not set, please click the following button to "
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1009 |
msgid "Generate"
|
1010 |
msgstr "Tasso di rimbalzo"
|
1011 |
|
1012 |
+
#: options/panel5.php:243
|
1013 |
msgid ""
|
1014 |
"This Unique Key will be use to send the notification to your subscribers "
|
1015 |
"with more security."
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: options/panel5.php:256
|
1019 |
+
msgid ""
|
1020 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1021 |
+
"with caution."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: options/panel5.php:258
|
1025 |
+
msgid "Yes, Delete Options including subscriptions."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: options/panel5.php:259
|
1029 |
+
msgid "No, Only delete the StCR Options."
|
1030 |
+
msgstr ""
|
1031 |
|
1032 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1033 |
+
msgid ""
|
1034 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1035 |
+
"hidden=\"true\"></i>"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1039 |
+
#, fuzzy
|
1040 |
+
#| msgid ""
|
1041 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1042 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1043 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1044 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1045 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1046 |
msgid ""
|
1047 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1048 |
"consider supporting the author if this plugin made your web site better, "
|
1049 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1050 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1051 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1052 |
"strong>, and to buy some food for my hungry family."
|
1053 |
msgstr ""
|
1059 |
"<b>Subscribe to Comments Reloaded</b> і на тое, каб купіць трохі ежы маёй "
|
1060 |
"галоднай сям'і."
|
1061 |
|
1062 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1063 |
+
#, fuzzy
|
1064 |
+
#| msgid "You can help"
|
1065 |
+
msgid "You can still help"
|
1066 |
+
msgstr "Вы можаце дапамагчы"
|
1067 |
|
1068 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1069 |
+
#, fuzzy
|
1070 |
+
#| msgid ""
|
1071 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1072 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1073 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1074 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1075 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1076 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1077 |
+
msgid ""
|
1078 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1079 |
+
"Please let your readers know what makes your blog better. You can also "
|
1080 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1081 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1082 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1083 |
msgstr ""
|
1084 |
"Калі вы не жадаеце дапамагчы грашыма, калі ласка, разгледзіце магчымасць "
|
1085 |
"напісаць пра маю ўбудову ў сваім блогу і пакінуць спасылку на старонку "
|
1089 |
"<b>Subscribe to Comments Reloaded</b> і гэтак далей. Што б вы ні абралі, "
|
1090 |
"дзякуй, што карыстаецеся маёй убудовай!"
|
1091 |
|
1092 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1093 |
msgid "Subscribe to the Beta testers"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1097 |
msgid ""
|
1098 |
"Before a new Update we release a Beta version so that our current users can "
|
1099 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1101 |
"a>"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1105 |
msgid "Vote and show your appreciation"
|
1106 |
msgstr "Прагаласуйце і пакажыце сваю ўдзячнасць"
|
1107 |
|
1108 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1109 |
msgid ""
|
1110 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1111 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1116 |
"\"http://wordpress.org/extend/plugins/subscribe-to-comments-reloaded/"
|
1117 |
"\">Ацэніце</a> яго ў частцы ўбудоў на сайце Wordpress."
|
1118 |
|
1119 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1120 |
msgid "Did you find a Bug on the plugin?"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1124 |
msgid ""
|
1125 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1126 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1215 |
msgid "You have request to manage another email address and this is forbidden."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
msgid "StCR System"
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1223 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1224 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1225 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1226 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1227 |
msgid "You do not have sufficient permissions to access this page."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: utils/stcr_manage.php:726
|
1231 |
msgid "Subscriptions"
|
1232 |
msgstr "Падпіскі"
|
1233 |
|
1234 |
+
#: utils/stcr_manage.php:782
|
1235 |
msgid ""
|
1236 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1237 |
msgstr ""
|
1238 |
"Патрэбна дапамога ў использовани убудовы Subscribe to Comments Reloaded? "
|
1239 |
"Наведаеце наш афіцыйны"
|
1240 |
|
1241 |
+
#: utils/stcr_manage.php:782
|
1242 |
msgid "support forum"
|
1243 |
msgstr "форум падтрымкі"
|
1244 |
|
1245 |
+
#: utils/stcr_manage.php:783
|
1246 |
msgid "Feeling generous?"
|
1247 |
msgstr "Жадаеце выявіць шчодрасць?"
|
1248 |
|
1249 |
+
#: utils/stcr_manage.php:783
|
1250 |
msgid "Donate a few bucks!"
|
1251 |
msgstr "Ахвяруйце пару баксаў!"
|
1252 |
|
1253 |
+
#: utils/stcr_upgrade.php:72
|
1254 |
msgid "Important Notice"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: utils/stcr_upgrade.php:120
|
1258 |
msgid ""
|
1259 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1260 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1262 |
"src=\""
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: utils/stcr_upgrade.php:175
|
1266 |
msgid ""
|
1267 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1268 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1269 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: utils/stcr_upgrade.php:175
|
1273 |
msgid ""
|
1274 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1275 |
"Comments to prevent confusion between the two plugins."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: utils/stcr_upgrade.php:176
|
1279 |
msgid ""
|
1280 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1281 |
"that you want to import, you'll need to import that data manually, as only "
|
1282 |
"one import routine will ever run to prevent data loss."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1286 |
+
#: utils/stcr_upgrade.php:400
|
1287 |
msgid ""
|
1288 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1289 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1291 |
"\"stcr-loading-animation\" src=\""
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: utils/stcr_upgrade.php:250
|
1295 |
msgid ""
|
1296 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1297 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1298 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: utils/stcr_upgrade.php:250
|
1302 |
msgid ""
|
1303 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1304 |
"Notification to prevent confusion between the two plugins."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: utils/stcr_upgrade.php:397
|
1308 |
msgid ""
|
1309 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1310 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1312 |
"Reloaded</strong>."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: utils/stcr_upgrade.php:397
|
1316 |
msgid ""
|
1317 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1318 |
"Subscriptions to prevent confusion between the two plugins."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: utils/stcr_upgrade.php:398
|
1322 |
msgid ""
|
1323 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1324 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1326 |
"ever run to prevent data loss."
|
1327 |
msgstr ""
|
1328 |
|
1329 |
+
#: utils/stcr_upgrade.php:399
|
1330 |
msgid ""
|
1331 |
"<strong>Note:</strong> If you were previously using the "
|
1332 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1335 |
"respectively."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: utils/stcr_upgrade.php:413
|
1339 |
msgid ""
|
1340 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1344 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1345 |
msgid ""
|
1346 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1347 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: utils/stcr_upgrade.php:415
|
1351 |
msgid ""
|
1352 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1353 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1354 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1355 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1356 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1357 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: utils/stcr_upgrade.php:417
|
1361 |
msgid ""
|
1362 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1363 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1365 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: utils/stcr_upgrade.php:428
|
1369 |
msgid ""
|
1370 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1371 |
"160106."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: utils/stcr_upgrade.php:429
|
1375 |
msgid ""
|
1376 |
"This version includes many changes and fixes to improve your experience with "
|
1377 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1378 |
"email templates, Subscription Checkbox position, and more!"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1382 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1383 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1384 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1385 |
msgid ""
|
1386 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1387 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1389 |
"class=\"stcr-loading-animation\" src=\""
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: utils/stcr_upgrade.php:443
|
1393 |
msgid ""
|
1394 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1395 |
"160115."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: utils/stcr_upgrade.php:444
|
1399 |
msgid ""
|
1400 |
"This version includes fixes to broken links while managing your subscriptions"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: utils/stcr_upgrade.php:458
|
1404 |
msgid ""
|
1405 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1406 |
"160831"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1410 |
msgid "This version includes fixes to many bugs and also new features, "
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1414 |
msgid ""
|
1415 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1416 |
"address. This will help the subscribers to use the Reply option in their "
|
1417 |
"email agents."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1421 |
msgid ""
|
1422 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1423 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1427 |
msgid ""
|
1428 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1429 |
"without loosing your subscriptions. You can use this option also for reset "
|
1430 |
"all the settings, see the FAQ."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1434 |
msgid ""
|
1435 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1436 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1437 |
"Post Type."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1441 |
msgid ""
|
1442 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1443 |
"options to and the management link only by email and not to display it on "
|
1444 |
"the request link page."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: utils/stcr_upgrade.php:480
|
1448 |
msgid ""
|
1449 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1450 |
"160902"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: utils/stcr_upgrade.php:483
|
1454 |
msgid ""
|
1455 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1456 |
"previous 160831 version."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1460 |
msgid "Settings"
|
1461 |
msgstr "Scegli ordine"
|
1462 |
|
1463 |
+
#: utils/stcr_upgrade.php:504
|
1464 |
msgid ""
|
1465 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1466 |
"160915"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1470 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1471 |
msgid "This version includes fixes and improvements, "
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: utils/stcr_upgrade.php:508
|
1475 |
msgid ""
|
1476 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1477 |
"dropdown."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: utils/stcr_upgrade.php:509
|
1481 |
msgid ""
|
1482 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1486 |
+
#: utils/stcr_upgrade.php:576
|
1487 |
msgid "Log Settings"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1491 |
+
#: utils/stcr_upgrade.php:580
|
1492 |
msgid ""
|
1493 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: utils/stcr_upgrade.php:529
|
1497 |
msgid ""
|
1498 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1499 |
"enable."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: utils/stcr_upgrade.php:530
|
1503 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1507 |
+
#: utils/stcr_upgrade.php:590
|
1508 |
msgid "The support of this plugin is given thanks to your donations."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: utils/stcr_upgrade.php:536
|
1512 |
msgid ""
|
1513 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1514 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1518 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: utils/stcr_upgrade.php:557
|
1522 |
msgid ""
|
1523 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1524 |
"installation regarding a database table creation."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: utils/stcr_upgrade.php:558
|
1528 |
msgid ""
|
1529 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1530 |
"Awesome."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: utils/stcr_upgrade.php:563
|
1534 |
msgid ""
|
1535 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1536 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1541 |
"for the users that have supported the plugin development."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: utils/stcr_upgrade.php:584
|
1545 |
+
msgid ""
|
1546 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1547 |
+
"issues."
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: utils/stcr_upgrade.php:585
|
1551 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: utils/stcr_upgrade.php:586
|
1555 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: utils/stcr_upgrade.php:591
|
1559 |
+
msgid ""
|
1560 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1561 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1562 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1563 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1564 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1565 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1566 |
+
"Thanks for all the users that have supported the plugin development."
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: utils/stcr_utils.php:196
|
1570 |
+
msgid ""
|
1571 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1572 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1573 |
+
msgstr ""
|
1574 |
+
"Атрымліваць новыя каментары па электроннай пошце. Вы можаце <a "
|
1575 |
+
"href='[subscribe_link]'>падпісацца</a> без каментавання."
|
1576 |
+
|
1577 |
+
#: utils/stcr_utils.php:197
|
1578 |
+
msgid ""
|
1579 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1580 |
+
"subscriptions."
|
1581 |
+
msgstr ""
|
1582 |
+
"Вы падпісаны на гэты артыкул. <a href='[manager_link]'>Рэдагаваць</a> свае "
|
1583 |
+
"падпіскі."
|
1584 |
+
|
1585 |
+
#: utils/stcr_utils.php:198
|
1586 |
+
msgid ""
|
1587 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1588 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1589 |
+
msgstr ""
|
1590 |
+
"Ваша падпіска на гэты артыкул мае патрэбу ў пацверджанні. <a "
|
1591 |
+
"href='[manager_link]'>Рэдагаваць</a> свае падпіскі."
|
1592 |
+
|
1593 |
+
#: utils/stcr_utils.php:199
|
1594 |
+
msgid ""
|
1595 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1596 |
+
msgstr ""
|
1597 |
+
"Вы можаце <a href='[manager_link]'>кіраваць падпіскамі</a> на гэты запіс."
|
1598 |
+
|
1599 |
+
#: utils/stcr_utils.php:205
|
1600 |
+
msgid ""
|
1601 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1602 |
+
"will send you a message containing the link to access your personal "
|
1603 |
+
"management page."
|
1604 |
+
msgstr ""
|
1605 |
+
"Для кіравання сваімі падпіскамі, калі ласка, увядзіце свой электронны адрас "
|
1606 |
+
"у форму ніжэй. Мы адправім вам паведамленне са спасылкай на вашу "
|
1607 |
+
"персанальную старонку кіравання."
|
1608 |
+
|
1609 |
+
#: utils/stcr_utils.php:206
|
1610 |
+
msgid ""
|
1611 |
+
"Thank you for using our subscription service. Your request has been "
|
1612 |
+
"completed, and you should receive an email with the management link in a few "
|
1613 |
+
"minutes."
|
1614 |
+
msgstr ""
|
1615 |
+
"Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. На "
|
1616 |
+
"працягу некалькіх хвілін вы павінны атрымаць ліст са спасылкай на старонку "
|
1617 |
+
"кіравання падпіскамі."
|
1618 |
+
|
1619 |
+
#: utils/stcr_utils.php:207
|
1620 |
+
msgid ""
|
1621 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1622 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1623 |
+
"form here below and you're all set."
|
1624 |
+
msgstr ""
|
1625 |
+
"Вы можаце сачыць за абмеркаваннем артыкула <strong>[post_title]</strong>, не "
|
1626 |
+
"пакідаючы свайго каментара. Выдатна, ці не праўда? Проста ўвядзіце свой "
|
1627 |
+
"электронны адрас у форму ніжэй, і гатова!"
|
1628 |
+
|
1629 |
+
#: utils/stcr_utils.php:208
|
1630 |
+
msgid ""
|
1631 |
+
"Thank you for using our subscription service. Your request has been "
|
1632 |
+
"completed. You will receive a notification email every time a new comment to "
|
1633 |
+
"this article is approved and posted by the administrator."
|
1634 |
+
msgstr ""
|
1635 |
+
"Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Ваш запыт выкананы. Вы "
|
1636 |
+
"будзеце атрымліваць апавяшчэнні кожных разоў, як новы каментар да гэты "
|
1637 |
+
"артыкулу будзе ўхвалены і апублікаваны адміністратарам сайта."
|
1638 |
+
|
1639 |
+
#: utils/stcr_utils.php:209
|
1640 |
+
msgid ""
|
1641 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1642 |
+
"request, please check your email for the verification message and follow the "
|
1643 |
+
"instructions."
|
1644 |
+
msgstr ""
|
1645 |
+
"Дзякуй, што карыстаецеся нашым сэрвісам падпісак. Каб пацвердзіць свой "
|
1646 |
+
"запыт, калі ласка, праверце сваю пошту і вынікайце інструкцыям у лісце пра "
|
1647 |
+
"пацверджанне."
|
1648 |
+
|
1649 |
+
#: utils/stcr_utils.php:210
|
1650 |
+
msgid ""
|
1651 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1652 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1653 |
+
msgstr ""
|
1654 |
+
"Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
|
1655 |
+
"адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу."
|
1656 |
+
|
1657 |
+
#: utils/stcr_utils.php:211
|
1658 |
+
msgid ""
|
1659 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1660 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1661 |
+
"You are currently subscribed to:"
|
1662 |
+
msgstr ""
|
1663 |
+
"Каб адмяніць ці прыпыніць адно ці больш апавяшчэнняў, пстрыкніце ў "
|
1664 |
+
"адпаведным акенцы выбару і націсніце на кнопку ў канцы спісу. На дадзены "
|
1665 |
+
"момант вы падпісаны на:"
|
1666 |
+
|
1667 |
+
#: utils/stcr_utils.php:215
|
1668 |
+
msgid "There is a new comment to [post_title]"
|
1669 |
+
msgstr "З'явіўся новы каментар да артыкула [post_title]"
|
1670 |
+
|
1671 |
+
#: utils/stcr_utils.php:216
|
1672 |
+
msgid ""
|
1673 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1674 |
+
"\n"
|
1675 |
+
"<hr />\n"
|
1676 |
+
"<strong>Comment link:</strong> <a href="
|
1677 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1678 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1679 |
+
"\n"
|
1680 |
+
"<strong>Comment:</strong>\n"
|
1681 |
+
"[comment_content]\n"
|
1682 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1683 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1684 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1685 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1686 |
+
msgstr ""
|
1687 |
+
|
1688 |
+
#: utils/stcr_utils.php:217
|
1689 |
+
msgid "Please confirm your subscription to [post_title]"
|
1690 |
+
msgstr "Калі ласка, пацвердзіце сваю падпіску на артыкул [post_title]"
|
1691 |
+
|
1692 |
+
#: utils/stcr_utils.php:218
|
1693 |
+
#, fuzzy
|
1694 |
+
#| msgid ""
|
1695 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1696 |
+
#| "[post_permalink]\n"
|
1697 |
+
#| "\n"
|
1698 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1699 |
+
#| "[confirm_link]"
|
1700 |
+
msgid ""
|
1701 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1702 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1703 |
+
"\n"
|
1704 |
+
"Please confirm your request by clicking on this link:\n"
|
1705 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1706 |
+
msgstr ""
|
1707 |
+
"Вы зрабілі запыт на атрыманне новых каментароў да артыкула:\n"
|
1708 |
+
"[post_permalink]\n"
|
1709 |
+
"\n"
|
1710 |
+
"Калі ласка, перайдзіце па наступнай спасылцы, каб пацвердзіць падпіску:\n"
|
1711 |
+
"[confirm_link]"
|
1712 |
+
|
1713 |
+
#: utils/stcr_utils.php:219
|
1714 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1715 |
+
msgstr "Рэдагаваць свае падпіскі на сайце [blog_name]"
|
1716 |
+
|
1717 |
+
#: utils/stcr_utils.php:220
|
1718 |
+
msgid ""
|
1719 |
+
"You have requested to manage your subscriptions to the articles on "
|
1720 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: utils/stcr_utils.php:221
|
1724 |
+
#, fuzzy
|
1725 |
+
#| msgid ""
|
1726 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1727 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1728 |
+
#| "[manager_link]"
|
1729 |
+
msgid ""
|
1730 |
+
"You have requested to manage your subscriptions to the articles on "
|
1731 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1732 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1733 |
+
msgstr ""
|
1734 |
+
"Вы зрабілі запыт на рэдагаванне сваіх падпісак на каментары да артыкулаў на "
|
1735 |
+
"сайце [blog_name]. Вось спасылка на вашу асабістую старонку кіравання "
|
1736 |
+
"падпіскамі:\n"
|
1737 |
+
"[manager_link]"
|
1738 |
+
|
1739 |
+
#: utils/stcr_utils.php:300
|
1740 |
msgid "StCR Notification"
|
1741 |
msgstr "Апавяшчэнні"
|
1742 |
|
1748 |
msgid "All"
|
1749 |
msgstr "Усё"
|
1750 |
|
1751 |
+
#~ msgid "Support the developers"
|
1752 |
+
#~ msgstr "Падтрымаць аўтара"
|
1753 |
+
|
1754 |
+
#~ msgid "Don't want to donate? You can still help"
|
1755 |
+
#~ msgstr "Не жадаеце рабіць ахвяраванне? Вы ўсё адно можаце дапамагчы"
|
1756 |
+
|
1757 |
+
#~ msgid ""
|
1758 |
+
#~ "There is a new comment to [post_title].\n"
|
1759 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1760 |
+
#~ "Author: [comment_author]\n"
|
1761 |
+
#~ "Comment:\n"
|
1762 |
+
#~ "[comment_content]\n"
|
1763 |
+
#~ "Permalink: [post_permalink]\n"
|
1764 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1765 |
+
#~ msgstr ""
|
1766 |
+
#~ "З'явіўся новы каментар да артыкула [post_title].\n"
|
1767 |
+
#~ "Спасылка на каментар: [comment_permalink]\n"
|
1768 |
+
#~ "Аўтар: [comment_author]\n"
|
1769 |
+
#~ "Каментар:\n"
|
1770 |
+
#~ "[comment_content]\n"
|
1771 |
+
#~ "\n"
|
1772 |
+
#~ "Спасылка на артыкул: [post_permalink]\n"
|
1773 |
+
#~ "Кіраванне падпіскамі: [manager_link]"
|
1774 |
+
|
1775 |
#~ msgid ""
|
1776 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1777 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -2,51 +2,47 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: subscribe-reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
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
|
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:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Správa odběrů"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Formulář komentářů"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Nastavení"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Oznámení"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Možnosti"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Jak nám pomoci?"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr "fórum podpory"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr ""
|
52 |
|
@@ -344,95 +340,95 @@ msgstr "Aktualizovat odběry"
|
|
344 |
msgid "Sorry, no subscriptions match your search criteria."
|
345 |
msgstr "Nenalezeny žádné odběry."
|
346 |
|
347 |
-
#: options/panel10.php:
|
348 |
msgid "The log file has been successfully deleted."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: options/panel10.php:
|
352 |
msgid "Can't delete the log file, check the file permissions."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: options/panel10.php:
|
356 |
msgid "The log file does not exists."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: options/panel10.php:
|
360 |
msgid "Enable Log Information"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: options/panel10.php:
|
364 |
msgid "Enable Auto clean log data"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: options/panel10.php:
|
368 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
369 |
msgid "Your settings have been successfully updated."
|
370 |
msgstr "Vaše nastavení bylo úspěšně aktualizováno."
|
371 |
|
372 |
-
#: options/panel10.php:
|
373 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
374 |
msgid "There was an error updating the following fields:"
|
375 |
msgstr "Chyba při aktualizaci těchto polí:"
|
376 |
|
377 |
-
#: options/panel10.php:
|
378 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
379 |
-
#: options/panel5.php:
|
380 |
-
#: options/panel5.php:
|
381 |
-
#: options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
msgid "Yes"
|
384 |
msgstr "Ano"
|
385 |
|
386 |
-
#: options/panel10.php:
|
387 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
388 |
-
#: options/panel5.php:
|
389 |
-
#: options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
msgid "No"
|
393 |
msgstr "Ne"
|
394 |
|
395 |
-
#: options/panel10.php:
|
396 |
msgid ""
|
397 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
398 |
"purposes."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: options/panel10.php:
|
402 |
msgid "Hourly"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: options/panel10.php:
|
406 |
msgid "Twice Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: options/panel10.php:
|
410 |
msgid "Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: options/panel10.php:
|
414 |
msgid "If enabled, StCR will auto clean your information every day."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: options/panel10.php:
|
418 |
msgid "Clean Up Log Archive"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: options/panel10.php:
|
422 |
msgid ""
|
423 |
"If you want to clean up the log archive please click the following button"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: options/panel10.php:
|
427 |
msgid "Clean"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: options/panel10.php:
|
431 |
msgid "System Information"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: options/panel10.php:
|
435 |
-
#: options/panel4.php:283 options/panel5.php:
|
436 |
msgid "Save Changes"
|
437 |
msgstr "Uložit změny"
|
438 |
|
@@ -776,7 +772,7 @@ msgstr ""
|
|
776 |
#: options/panel4.php:128
|
777 |
msgid ""
|
778 |
"This will be use when the user click reply on their email agent. If not set "
|
779 |
-
"will be the same as the Sender email address."
|
780 |
msgstr ""
|
781 |
|
782 |
#: options/panel4.php:147
|
@@ -792,8 +788,8 @@ msgstr ""
|
|
792 |
|
793 |
#: options/panel4.php:171
|
794 |
msgid ""
|
795 |
-
"<p><strong>Note: To get a default template clear
|
796 |
-
"the options.</strong></p>"
|
797 |
msgstr ""
|
798 |
|
799 |
#: options/panel4.php:184
|
@@ -839,105 +835,121 @@ msgid ""
|
|
839 |
"[blog_name]"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
msgid "Show StCR checkbox / dropdown"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: options/panel5.php:
|
847 |
msgid "Safetly Uninstall"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: options/panel5.php:
|
851 |
msgid "Autopurge requests"
|
852 |
msgstr "Autočištění požadavků"
|
853 |
|
854 |
-
#: options/panel5.php:
|
855 |
msgid "Enable double check"
|
856 |
msgstr "Povolit dvojí kontrolu emailu"
|
857 |
|
858 |
-
#: options/panel5.php:
|
859 |
msgid "StCR Position"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: options/panel5.php:
|
863 |
msgid "Subscribe authors"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: options/panel5.php:
|
867 |
msgid "Enable HTML emails"
|
868 |
msgstr "Povolit HTML formát emailů"
|
869 |
|
870 |
-
#: options/panel5.php:
|
871 |
msgid "HTMLify Links in HTML emails"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: options/panel5.php:
|
875 |
msgid "Send trackbacks"
|
876 |
msgstr "Odeslat trackacky"
|
877 |
|
878 |
-
#: options/panel5.php:
|
879 |
msgid "Notify admin"
|
880 |
msgstr "Upozornit administrátora"
|
881 |
|
882 |
-
#: options/panel5.php:
|
883 |
msgid "Let admin subscribe"
|
884 |
msgstr "Povolit odběry pro administrátora"
|
885 |
|
886 |
-
#: options/panel5.php:
|
887 |
msgid "BCC admin on Notifications"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: options/panel5.php:
|
891 |
msgid "Enable Font Awesome"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
895 |
msgid ""
|
896 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
897 |
"You should leave it to Yes always. "
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: options/panel5.php:
|
901 |
msgid "Safely Uninstall"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: options/panel5.php:
|
905 |
msgid ""
|
906 |
"This option will allow you to delete the plugin with WordPress without "
|
907 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: options/panel5.php:
|
911 |
msgid "days"
|
912 |
msgstr "dní"
|
913 |
|
914 |
-
#: options/panel5.php:
|
915 |
msgid ""
|
916 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
917 |
"this feature."
|
918 |
msgstr ""
|
919 |
"Vymazat požadavky na odběry (neschválené) po X dnech. 0 znamená vypnuto. "
|
920 |
|
921 |
-
#: options/panel5.php:
|
922 |
msgid ""
|
923 |
"If this option is enable the subscription box will be above the submit "
|
924 |
"button in your comment form. Use this when your theme is outdated and using "
|
925 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: options/panel5.php:
|
929 |
msgid ""
|
930 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
931 |
"misuse)."
|
932 |
msgstr ""
|
933 |
"Zašle upozorňovací email pro potvrzení odběru aby se zamezilo zneužití adres."
|
934 |
|
935 |
-
#: options/panel5.php:
|
936 |
msgid ""
|
937 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: options/panel5.php:
|
941 |
msgid ""
|
942 |
"If enabled, will send email messages with content-type = text/html instead "
|
943 |
"of text/plain"
|
@@ -945,101 +957,144 @@ msgstr ""
|
|
945 |
"Pokud je povoleno, budou emaily zasílány ve formátu <code>content-type = "
|
946 |
"text/html</code> namísto <code>content-type = text/plain</code>"
|
947 |
|
948 |
-
#: options/panel5.php:
|
949 |
msgid "HTMLify links in emails"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: options/panel5.php:
|
953 |
msgid ""
|
954 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
955 |
"</a></code> (only when HTML emails enabled)."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: options/panel5.php:
|
959 |
msgid "Process trackbacks"
|
960 |
msgstr "Zpracovat trackbacky"
|
961 |
|
962 |
-
#: options/panel5.php:
|
963 |
msgid ""
|
964 |
"Notify users when a new trackback or pingback is added to the discussion."
|
965 |
msgstr ""
|
966 |
"Upozornit odběratele pokud je do diskuse zapojen nový trackback nebo "
|
967 |
"pingback."
|
968 |
|
969 |
-
#: options/panel5.php:
|
970 |
msgid "Track all subscriptions"
|
971 |
msgstr "Sledovat všechny odběry"
|
972 |
|
973 |
-
#: options/panel5.php:
|
974 |
msgid "Notify the administrator when users subscribe without commenting."
|
975 |
msgstr ""
|
976 |
"Upozornit administrátora pokud se uživatel přihlásí k odběrům a sám "
|
977 |
"nekomentuje."
|
978 |
|
979 |
-
#: options/panel5.php:
|
980 |
msgid "Let the administrator subscribe to comments when logged in."
|
981 |
msgstr "Povolit odběry pro administrátora pokud je přihlášen."
|
982 |
|
983 |
-
#: options/panel5.php:
|
984 |
msgid "Send a copy of all Notifications to the administrator."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: options/panel5.php:
|
988 |
msgid ""
|
989 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
990 |
"you theme already add this into your site."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: options/panel5.php:
|
994 |
msgid "StCR Unique Key"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: options/panel5.php:
|
998 |
msgid "This Unique Key is not set, please click the following button to "
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: options/panel5.php:
|
1002 |
msgid "Generate"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: options/panel5.php:
|
1006 |
msgid ""
|
1007 |
"This Unique Key will be use to send the notification to your subscribers "
|
1008 |
"with more security."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: options/
|
1012 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1016 |
msgid ""
|
1017 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1018 |
"consider supporting the author if this plugin made your web site better, "
|
1019 |
-
"especially if you are making money out of it
|
|
|
1020 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1021 |
"strong>, and to buy some food for my hungry family."
|
1022 |
msgstr ""
|
|
|
|
|
|
|
|
|
1023 |
|
1024 |
-
#: options/panel7.php:
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
msgid ""
|
1030 |
-
"If you don't want to donate money, please consider blogging about my plugin "
|
1031 |
-
"with a link to the plugin's page. Please let your readers know what makes "
|
1032 |
-
"your blog better. You can also contribute donating your time: do not "
|
1033 |
-
"hesitate to send me bug reports, your localization files, ideas on how to "
|
1034 |
-
"improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
|
1035 |
-
"you do, thanks for using my plugin!"
|
1036 |
-
msgstr ""
|
1037 |
|
1038 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1039 |
msgid "Subscribe to the Beta testers"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: options/panel7.php:
|
1043 |
msgid ""
|
1044 |
"Before a new Update we release a Beta version so that our current users can "
|
1045 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1047,22 +1102,22 @@ msgid ""
|
|
1047 |
"a>"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: options/panel7.php:
|
1051 |
msgid "Vote and show your appreciation"
|
1052 |
msgstr "Hlasovat pro plugin"
|
1053 |
|
1054 |
-
#: options/panel7.php:
|
1055 |
msgid ""
|
1056 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1057 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1058 |
"subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: options/panel8.php:
|
1062 |
msgid "Did you find a Bug on the plugin?"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: options/panel8.php:
|
1066 |
msgid ""
|
1067 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1068 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1155,202 +1210,44 @@ msgstr ""
|
|
1155 |
msgid "You have request to manage another email address and this is forbidden."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: utils/stcr_manage.php:
|
1159 |
-
msgid ""
|
1160 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1161 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1162 |
-
msgstr ""
|
1163 |
-
"<span class='comment_label_afterselect'> upozornění na nové komentáře k "
|
1164 |
-
"tomuto článku.</span> <span class='comment_label_nocom'> Chcete dostávat "
|
1165 |
-
"upozornění na nové komentáře a sami článek nekomentovat? <a "
|
1166 |
-
"href='[subscribe_link]'>Přihlaste se k odběru</a>.</span>"
|
1167 |
-
|
1168 |
-
#: utils/stcr_manage.php:224
|
1169 |
-
msgid ""
|
1170 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1171 |
-
"subscriptions."
|
1172 |
-
msgstr ""
|
1173 |
-
"Jste přihlášen k odběru upozornění na nové komentáře k tomuto článku. Můžete "
|
1174 |
-
"<a href='[manager_link]'>upravit</a> vaše odběry."
|
1175 |
-
|
1176 |
-
#: utils/stcr_manage.php:225
|
1177 |
-
msgid ""
|
1178 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1179 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1180 |
-
msgstr ""
|
1181 |
-
"Vaše žádost k odběru upozornění na nové komentáře čeká na schválení. <a "
|
1182 |
-
"href='[manager_link]'>Upravit vaše žádosti</a>."
|
1183 |
-
|
1184 |
-
#: utils/stcr_manage.php:226
|
1185 |
-
msgid ""
|
1186 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1187 |
-
msgstr ""
|
1188 |
-
"<a href='[manager_link]'>Zde můžete spravovat</a> odběry upozornění na nové "
|
1189 |
-
"komentáře k tomuto článku."
|
1190 |
-
|
1191 |
-
#: utils/stcr_manage.php:232
|
1192 |
-
msgid ""
|
1193 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1194 |
-
"will send you a message containing the link to access your personal "
|
1195 |
-
"management page."
|
1196 |
-
msgstr ""
|
1197 |
-
"Pro správu vašich upozornění zadejte e-mailovou adresu do pole níže. Bude "
|
1198 |
-
"vám zaslán editační odkaz."
|
1199 |
-
|
1200 |
-
#: utils/stcr_manage.php:233
|
1201 |
-
msgid ""
|
1202 |
-
"Thank you for using our subscription service. Your request has been "
|
1203 |
-
"completed, and you should receive an email with the management link in a few "
|
1204 |
-
"minutes."
|
1205 |
-
msgstr ""
|
1206 |
-
"Váš požadavek byl zpracován. V nejbližší době by jste měli obdržet odkaz v "
|
1207 |
-
"emailu."
|
1208 |
-
|
1209 |
-
#: utils/stcr_manage.php:234
|
1210 |
-
msgid ""
|
1211 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1212 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1213 |
-
"form here below and you're all set."
|
1214 |
-
msgstr ""
|
1215 |
-
"Zasílat upozornění na nové komentáře k článku » [post_title] « .\n"
|
1216 |
-
" E-mailovou adresu vyplňte do pole níže. Bude vám zaslán potvrzovací odkaz. "
|
1217 |
-
|
1218 |
-
#: utils/stcr_manage.php:235
|
1219 |
-
msgid ""
|
1220 |
-
"Thank you for using our subscription service. Your request has been "
|
1221 |
-
"completed. You will receive a notification email every time a new comment to "
|
1222 |
-
"this article is approved and posted by the administrator."
|
1223 |
-
msgstr ""
|
1224 |
-
"Váš požadavek byl zpracován. Váš odběr upozornění na nové komentáře k tomuto "
|
1225 |
-
"článku je aktivní."
|
1226 |
-
|
1227 |
-
#: utils/stcr_manage.php:236
|
1228 |
-
msgid ""
|
1229 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1230 |
-
"request, please check your email for the verification message and follow the "
|
1231 |
-
"instructions."
|
1232 |
-
msgstr ""
|
1233 |
-
"Váš požadavek byl zpracován. Pro potvrzení požadavku naleznete ve vašem "
|
1234 |
-
"emailu potvrzovací odkaz."
|
1235 |
-
|
1236 |
-
#: utils/stcr_manage.php:237
|
1237 |
-
msgid ""
|
1238 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1239 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1240 |
-
msgstr ""
|
1241 |
-
"Pro editaci upozornění vyberte odpovídající odběr, zaškrtněte volbu a "
|
1242 |
-
"potvrďte."
|
1243 |
-
|
1244 |
-
#: utils/stcr_manage.php:238
|
1245 |
-
msgid ""
|
1246 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1247 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1248 |
-
"You are currently subscribed to:"
|
1249 |
-
msgstr ""
|
1250 |
-
"Aktuálně odebíráte upozornění na nové komentáře k těmto článkům (pokud je "
|
1251 |
-
"chcete změnit či zrušit zaškrtněte volbu a klikntěte na tlačítko "
|
1252 |
-
"aktualizovat, pokud změnu nechcete pokračujte třeba přes menu):"
|
1253 |
-
|
1254 |
-
#: utils/stcr_manage.php:242
|
1255 |
-
msgid "There is a new comment to [post_title]"
|
1256 |
-
msgstr "Nový komentář k článku: [post_title]"
|
1257 |
-
|
1258 |
-
#: utils/stcr_manage.php:243
|
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 |
-
"Nový komentář k článku: [post_title].\n"
|
1269 |
-
"Odkaz na komentář: [comment_permalink]\n"
|
1270 |
-
"Autor: [comment_author]\n"
|
1271 |
-
"Znění komentáře:\n"
|
1272 |
-
"[comment_content]\n"
|
1273 |
-
"Odkaz na článek: [post_permalink]\n"
|
1274 |
-
"Upravit odběry upozornění: [manager_link]\n"
|
1275 |
-
"\t\t\t\t\t"
|
1276 |
-
|
1277 |
-
#: utils/stcr_manage.php:244
|
1278 |
-
msgid "Please confirm your subscription to [post_title]"
|
1279 |
-
msgstr "Potvrďte odběr upozornění na nové komentáře k článku [post_title]"
|
1280 |
-
|
1281 |
-
#: utils/stcr_manage.php:245
|
1282 |
-
msgid ""
|
1283 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1284 |
-
"[post_permalink]\n"
|
1285 |
-
"\n"
|
1286 |
-
"Please confirm your request by clicking on this link:\n"
|
1287 |
-
"[confirm_link]"
|
1288 |
-
msgstr ""
|
1289 |
-
"Dobrý den, přihlásili jste se k odběru upozornění na nové komentáře k "
|
1290 |
-
"článku: \n"
|
1291 |
-
" [post_permalink] .\n"
|
1292 |
-
"\n"
|
1293 |
-
"Požadavek potvrďte prosím kliknutím na odkaz:\n"
|
1294 |
-
"[confirm_link] "
|
1295 |
-
|
1296 |
-
#: utils/stcr_manage.php:246
|
1297 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1298 |
-
msgstr "Upravit odběr upozornění na nové komentáře z [blog_name]"
|
1299 |
-
|
1300 |
-
#: utils/stcr_manage.php:247
|
1301 |
-
msgid ""
|
1302 |
-
"You have requested to manage your subscriptions to the articles on "
|
1303 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1304 |
-
msgstr ""
|
1305 |
-
|
1306 |
-
#: utils/stcr_manage.php:248
|
1307 |
-
msgid ""
|
1308 |
-
"You have requested to manage your subscriptions to the articles on "
|
1309 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1310 |
-
"[manager_link]"
|
1311 |
-
msgstr ""
|
1312 |
-
"Váš požadavek spravovat odběr upozornění na nové komentáře článků na "
|
1313 |
-
"[blog_name] byl zpracován. Klikněte prosím zde pro úpravy:\n"
|
1314 |
-
" [manager_link]"
|
1315 |
-
|
1316 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1317 |
msgid "StCR System"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: utils/stcr_manage.php:
|
1321 |
-
#: utils/stcr_manage.php:
|
1322 |
-
#: utils/stcr_manage.php:
|
1323 |
-
#: utils/stcr_manage.php:
|
1324 |
-
#: utils/stcr_manage.php:
|
1325 |
msgid "You do not have sufficient permissions to access this page."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: utils/stcr_manage.php:
|
1329 |
msgid "Subscriptions"
|
1330 |
msgstr "Odběry "
|
1331 |
|
1332 |
-
#: utils/stcr_manage.php:
|
1333 |
msgid ""
|
1334 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1335 |
msgstr "Potřebujete pomoci? Navštivte oficiální"
|
1336 |
|
1337 |
-
#: utils/stcr_manage.php:
|
1338 |
msgid "support forum"
|
1339 |
msgstr "fórum podpory"
|
1340 |
|
1341 |
-
#: utils/stcr_manage.php:
|
1342 |
msgid "Feeling generous?"
|
1343 |
msgstr "Chcete být štědrý?"
|
1344 |
|
1345 |
-
#: utils/stcr_manage.php:
|
1346 |
msgid "Donate a few bucks!"
|
1347 |
msgstr "Přispět několika chechtáky!"
|
1348 |
|
1349 |
-
#: utils/stcr_upgrade.php:
|
1350 |
msgid "Important Notice"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: utils/stcr_upgrade.php:
|
1354 |
msgid ""
|
1355 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1356 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1358,28 +1255,28 @@ msgid ""
|
|
1358 |
"src=\""
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: utils/stcr_upgrade.php:
|
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 |
|
1368 |
-
#: utils/stcr_upgrade.php:
|
1369 |
msgid ""
|
1370 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1371 |
"Comments to prevent confusion between the two plugins."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: utils/stcr_upgrade.php:
|
1375 |
msgid ""
|
1376 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1377 |
"that you want to import, you'll need to import that data manually, as only "
|
1378 |
"one import routine will ever run to prevent data loss."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: utils/stcr_upgrade.php:
|
1382 |
-
#: utils/stcr_upgrade.php:
|
1383 |
msgid ""
|
1384 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1385 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1387,20 +1284,20 @@ msgid ""
|
|
1387 |
"\"stcr-loading-animation\" src=\""
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: utils/stcr_upgrade.php:
|
1391 |
msgid ""
|
1392 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1393 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1394 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: utils/stcr_upgrade.php:
|
1398 |
msgid ""
|
1399 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1400 |
"Notification to prevent confusion between the two plugins."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: utils/stcr_upgrade.php:
|
1404 |
msgid ""
|
1405 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1406 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1408,13 +1305,13 @@ msgid ""
|
|
1408 |
"Reloaded</strong>."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: utils/stcr_upgrade.php:
|
1412 |
msgid ""
|
1413 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1414 |
"Subscriptions to prevent confusion between the two plugins."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: utils/stcr_upgrade.php:
|
1418 |
msgid ""
|
1419 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1420 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1422,7 +1319,7 @@ msgid ""
|
|
1422 |
"ever run to prevent data loss."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: utils/stcr_upgrade.php:
|
1426 |
msgid ""
|
1427 |
"<strong>Note:</strong> If you were previously using the "
|
1428 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1431,29 +1328,29 @@ msgid ""
|
|
1431 |
"respectively."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: utils/stcr_upgrade.php:
|
1435 |
msgid ""
|
1436 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: utils/stcr_upgrade.php:
|
1440 |
-
#: utils/stcr_upgrade.php:
|
1441 |
msgid ""
|
1442 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1443 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: utils/stcr_upgrade.php:
|
1447 |
msgid ""
|
1448 |
-
"Please consider to make a donation to support the plugin
|
1449 |
-
"<a href=\"\n"
|
1450 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1451 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1452 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1453 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: utils/stcr_upgrade.php:
|
1457 |
msgid ""
|
1458 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1459 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1461,23 +1358,23 @@ msgid ""
|
|
1461 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: utils/stcr_upgrade.php:
|
1465 |
msgid ""
|
1466 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1467 |
"160106."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: utils/stcr_upgrade.php:
|
1471 |
msgid ""
|
1472 |
"This version includes many changes and fixes to improve your experience with "
|
1473 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1474 |
"email templates, Subscription Checkbox position, and more!"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: utils/stcr_upgrade.php:
|
1478 |
-
#: utils/stcr_upgrade.php:
|
1479 |
-
#: utils/stcr_upgrade.php:
|
1480 |
-
#: utils/stcr_upgrade.php:
|
1481 |
msgid ""
|
1482 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1483 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1485,123 +1382,126 @@ msgid ""
|
|
1485 |
"class=\"stcr-loading-animation\" src=\""
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: utils/stcr_upgrade.php:
|
1489 |
msgid ""
|
1490 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1491 |
"160115."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: utils/stcr_upgrade.php:
|
1495 |
msgid ""
|
1496 |
"This version includes fixes to broken links while managing your subscriptions"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: utils/stcr_upgrade.php:
|
1500 |
msgid ""
|
1501 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1502 |
"160831"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: utils/stcr_upgrade.php:
|
1506 |
msgid "This version includes fixes to many bugs and also new features, "
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: utils/stcr_upgrade.php:
|
1510 |
msgid ""
|
1511 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1512 |
"address. This will help the subscribers to use the Reply option in their "
|
1513 |
"email agents."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: utils/stcr_upgrade.php:
|
1517 |
msgid ""
|
1518 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1519 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: utils/stcr_upgrade.php:
|
1523 |
msgid ""
|
1524 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1525 |
"without loosing your subscriptions. You can use this option also for reset "
|
1526 |
"all the settings, see the FAQ."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: utils/stcr_upgrade.php:
|
1530 |
msgid ""
|
1531 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1532 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1533 |
"Post Type."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: utils/stcr_upgrade.php:
|
1537 |
msgid ""
|
1538 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1539 |
"options to and the management link only by email and not to display it on "
|
1540 |
"the request link page."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: utils/stcr_upgrade.php:
|
1544 |
msgid ""
|
1545 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1546 |
"160902"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: utils/stcr_upgrade.php:
|
1550 |
msgid ""
|
1551 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1552 |
"previous 160831 version."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: utils/stcr_upgrade.php:
|
1556 |
msgid "Settings"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: utils/stcr_upgrade.php:
|
1560 |
msgid ""
|
1561 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1562 |
"160915"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: utils/stcr_upgrade.php:
|
1566 |
-
#: utils/stcr_upgrade.php:
|
1567 |
msgid "This version includes fixes and improvements, "
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: utils/stcr_upgrade.php:
|
1571 |
msgid ""
|
1572 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1573 |
"dropdown."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: utils/stcr_upgrade.php:
|
1577 |
msgid ""
|
1578 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: utils/stcr_upgrade.php:
|
|
|
1582 |
msgid "Log Settings"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: utils/stcr_upgrade.php:
|
|
|
1586 |
msgid ""
|
1587 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: utils/stcr_upgrade.php:
|
1591 |
msgid ""
|
1592 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1593 |
"enable."
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: utils/stcr_upgrade.php:
|
1597 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: utils/stcr_upgrade.php:
|
|
|
1601 |
msgid "The support of this plugin is given thanks to your donations."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: utils/stcr_upgrade.php:
|
1605 |
msgid ""
|
1606 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1607 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1611,19 +1511,19 @@ msgid ""
|
|
1611 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: utils/stcr_upgrade.php:
|
1615 |
msgid ""
|
1616 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1617 |
"installation regarding a database table creation."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: utils/stcr_upgrade.php:
|
1621 |
msgid ""
|
1622 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1623 |
"Awesome."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: utils/stcr_upgrade.php:
|
1627 |
msgid ""
|
1628 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1629 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1634,7 +1534,200 @@ msgid ""
|
|
1634 |
"for the users that have supported the plugin development."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1638 |
msgid "StCR Notification"
|
1639 |
msgstr ""
|
1640 |
|
@@ -1646,6 +1739,27 @@ msgstr "Neodebírat"
|
|
1646 |
msgid "All"
|
1647 |
msgstr "Odebírat (na všechny komentáře)"
|
1648 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1649 |
#~ msgid ""
|
1650 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1651 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
@@ -1708,33 +1822,6 @@ msgstr "Odebírat (na všechny komentáře)"
|
|
1708 |
#~ msgid "Support the author"
|
1709 |
#~ msgstr "Podpořte autora"
|
1710 |
|
1711 |
-
#~ msgid ""
|
1712 |
-
#~ "How valuable is the feature offered by this plugin to your visitors? "
|
1713 |
-
#~ "Subscribe to Comments Reloaded is and will always be free, but consider "
|
1714 |
-
#~ "supporting the author if this plugin made your web site better, "
|
1715 |
-
#~ "especially if you are making money out of it. Any donation received will "
|
1716 |
-
#~ "be reinvested in the development of Subscribe to Comments Reloaded, and "
|
1717 |
-
#~ "to buy some food for my hungry family."
|
1718 |
-
#~ msgstr ""
|
1719 |
-
#~ "Jak si ceníte tohoto pluginu? Plugin Subscribe to Comments Reloaded je a "
|
1720 |
-
#~ "bude vždy zadarmo avšak zvažte přispění pokud tento plugin váš web "
|
1721 |
-
#~ "vylepšil, zvláště pak pokud je váš web výdělečný.Veškeré příspěvky budou "
|
1722 |
-
#~ "reinvestovány do vývoje pluginu a jídla pro moji rodinu."
|
1723 |
-
|
1724 |
-
#~ msgid ""
|
1725 |
-
#~ "If you don't want to donate money, please consider blogging about my "
|
1726 |
-
#~ "plugin with a link to the plugin's page. Please let your readers know "
|
1727 |
-
#~ "what makes your blog better. You can also contribute donating your time: "
|
1728 |
-
#~ "do not hesitate to send me bug reports, your localization files, ideas on "
|
1729 |
-
#~ "how to improve Subscribe to Comments Reloaded and so on. Whatever you do, "
|
1730 |
-
#~ "thanks for using my plugin!"
|
1731 |
-
#~ msgstr ""
|
1732 |
-
#~ "Pokud nechcete přispět penězi, máte pořád možnost přispět tím, že budete "
|
1733 |
-
#~ "o mém pluginu blogovat a odakážete na stránku pluginu. Rozšíříte tak "
|
1734 |
-
#~ "povědomí o pluginu.Také můžete přispět i vaším časem: zašlete mi reporty "
|
1735 |
-
#~ "o chybách, můžete také plugin přeložit a nebo také zaslat nápady na jeho "
|
1736 |
-
#~ "vylepšení. Ať už uděláte cokoli děkuji za to že používáte můj plugin!"
|
1737 |
-
|
1738 |
#~ msgid ""
|
1739 |
#~ "Tell other people if Subscribe to Comments Reloaded works for you and how "
|
1740 |
#~ "good it is. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: subscribe-reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:06-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:10-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 2.0.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 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Správa odběrů"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Formulář komentářů"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Nastavení"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Oznámení"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Možnosti"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "fórum podpory"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr ""
|
48 |
|
340 |
msgid "Sorry, no subscriptions match your search criteria."
|
341 |
msgstr "Nenalezeny žádné odběry."
|
342 |
|
343 |
+
#: options/panel10.php:41
|
344 |
msgid "The log file has been successfully deleted."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: options/panel10.php:46
|
348 |
msgid "Can't delete the log file, check the file permissions."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: options/panel10.php:52
|
352 |
msgid "The log file does not exists."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: options/panel10.php:66 options/panel10.php:110
|
356 |
msgid "Enable Log Information"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: options/panel10.php:72 options/panel10.php:119
|
360 |
msgid "Enable Auto clean log data"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
364 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
365 |
msgid "Your settings have been successfully updated."
|
366 |
msgstr "Vaše nastavení bylo úspěšně aktualizováno."
|
367 |
|
368 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
369 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
370 |
msgid "There was an error updating the following fields:"
|
371 |
msgstr "Chyba při aktualizaci těchto polí:"
|
372 |
|
373 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
374 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
375 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
376 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
377 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
378 |
+
#: options/panel5.php:210 options/panel5.php:219
|
379 |
msgid "Yes"
|
380 |
msgstr "Ano"
|
381 |
|
382 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
383 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
384 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
385 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
386 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
387 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
388 |
msgid "No"
|
389 |
msgstr "Ne"
|
390 |
|
391 |
+
#: options/panel10.php:114
|
392 |
msgid ""
|
393 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
394 |
"purposes."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: options/panel10.php:125
|
398 |
msgid "Hourly"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: options/panel10.php:126
|
402 |
msgid "Twice Daily"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: options/panel10.php:127
|
406 |
msgid "Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: options/panel10.php:129
|
410 |
msgid "If enabled, StCR will auto clean your information every day."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: options/panel10.php:134
|
414 |
msgid "Clean Up Log Archive"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: options/panel10.php:138
|
418 |
msgid ""
|
419 |
"If you want to clean up the log archive please click the following button"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: options/panel10.php:140
|
423 |
msgid "Clean"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: options/panel10.php:147 options/panel10.php:150
|
427 |
msgid "System Information"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
431 |
+
#: options/panel4.php:283 options/panel5.php:265
|
432 |
msgid "Save Changes"
|
433 |
msgstr "Uložit změny"
|
434 |
|
772 |
#: options/panel4.php:128
|
773 |
msgid ""
|
774 |
"This will be use when the user click reply on their email agent. If not set "
|
775 |
+
"it will be the same as the Sender email address."
|
776 |
msgstr ""
|
777 |
|
778 |
#: options/panel4.php:147
|
788 |
|
789 |
#: options/panel4.php:171
|
790 |
msgid ""
|
791 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
792 |
+
"all the content and save the options.</strong></p>"
|
793 |
msgstr ""
|
794 |
|
795 |
#: options/panel4.php:184
|
835 |
"[blog_name]"
|
836 |
msgstr ""
|
837 |
|
838 |
+
#: options/panel5.php:38
|
839 |
+
#, fuzzy
|
840 |
+
#| msgid "Your settings have been successfully updated."
|
841 |
+
msgid "Your settings have been successfully reset."
|
842 |
+
msgstr "Vaše nastavení bylo úspěšně aktualizováno."
|
843 |
+
|
844 |
+
#: options/panel5.php:40
|
845 |
+
#, fuzzy
|
846 |
+
#| msgid "There was an error updating the following fields:"
|
847 |
+
msgid "There was an error deleting the options:"
|
848 |
+
msgstr "Chyba při aktualizaci těchto polí:"
|
849 |
+
|
850 |
+
#: options/panel5.php:48 options/panel5.php:108
|
851 |
msgid "Show StCR checkbox / dropdown"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: options/panel5.php:51
|
855 |
msgid "Safetly Uninstall"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: options/panel5.php:54 options/panel5.php:125
|
859 |
msgid "Autopurge requests"
|
860 |
msgstr "Autočištění požadavků"
|
861 |
|
862 |
+
#: options/panel5.php:57 options/panel5.php:143
|
863 |
msgid "Enable double check"
|
864 |
msgstr "Povolit dvojí kontrolu emailu"
|
865 |
|
866 |
+
#: options/panel5.php:60 options/panel5.php:134
|
867 |
msgid "StCR Position"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: options/panel5.php:63 options/panel5.php:151
|
871 |
msgid "Subscribe authors"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: options/panel5.php:66 options/panel5.php:161
|
875 |
msgid "Enable HTML emails"
|
876 |
msgstr "Povolit HTML formát emailů"
|
877 |
|
878 |
+
#: options/panel5.php:69
|
879 |
msgid "HTMLify Links in HTML emails"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: options/panel5.php:72
|
883 |
msgid "Send trackbacks"
|
884 |
msgstr "Odeslat trackacky"
|
885 |
|
886 |
+
#: options/panel5.php:75
|
887 |
msgid "Notify admin"
|
888 |
msgstr "Upozornit administrátora"
|
889 |
|
890 |
+
#: options/panel5.php:78 options/panel5.php:199
|
891 |
msgid "Let admin subscribe"
|
892 |
msgstr "Povolit odběry pro administrátora"
|
893 |
|
894 |
+
#: options/panel5.php:81 options/panel5.php:208
|
895 |
msgid "BCC admin on Notifications"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: options/panel5.php:84 options/panel5.php:217
|
899 |
msgid "Enable Font Awesome"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
903 |
+
msgid "Reset All Options"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: options/panel5.php:112
|
907 |
msgid ""
|
908 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
909 |
"You should leave it to Yes always. "
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: options/panel5.php:117
|
913 |
msgid "Safely Uninstall"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: options/panel5.php:121
|
917 |
msgid ""
|
918 |
"This option will allow you to delete the plugin with WordPress without "
|
919 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: options/panel5.php:128
|
923 |
msgid "days"
|
924 |
msgstr "dní"
|
925 |
|
926 |
+
#: options/panel5.php:129
|
927 |
msgid ""
|
928 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
929 |
"this feature."
|
930 |
msgstr ""
|
931 |
"Vymazat požadavky na odběry (neschválené) po X dnech. 0 znamená vypnuto. "
|
932 |
|
933 |
+
#: options/panel5.php:138
|
934 |
msgid ""
|
935 |
"If this option is enable the subscription box will be above the submit "
|
936 |
"button in your comment form. Use this when your theme is outdated and using "
|
937 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: options/panel5.php:147
|
941 |
msgid ""
|
942 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
943 |
"misuse)."
|
944 |
msgstr ""
|
945 |
"Zašle upozorňovací email pro potvrzení odběru aby se zamezilo zneužití adres."
|
946 |
|
947 |
+
#: options/panel5.php:156
|
948 |
msgid ""
|
949 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: options/panel5.php:165
|
953 |
msgid ""
|
954 |
"If enabled, will send email messages with content-type = text/html instead "
|
955 |
"of text/plain"
|
957 |
"Pokud je povoleno, budou emaily zasílány ve formátu <code>content-type = "
|
958 |
"text/html</code> namísto <code>content-type = text/plain</code>"
|
959 |
|
960 |
+
#: options/panel5.php:170
|
961 |
msgid "HTMLify links in emails"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: options/panel5.php:175
|
965 |
msgid ""
|
966 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
967 |
"</a></code> (only when HTML emails enabled)."
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: options/panel5.php:180
|
971 |
msgid "Process trackbacks"
|
972 |
msgstr "Zpracovat trackbacky"
|
973 |
|
974 |
+
#: options/panel5.php:184
|
975 |
msgid ""
|
976 |
"Notify users when a new trackback or pingback is added to the discussion."
|
977 |
msgstr ""
|
978 |
"Upozornit odběratele pokud je do diskuse zapojen nový trackback nebo "
|
979 |
"pingback."
|
980 |
|
981 |
+
#: options/panel5.php:189
|
982 |
msgid "Track all subscriptions"
|
983 |
msgstr "Sledovat všechny odběry"
|
984 |
|
985 |
+
#: options/panel5.php:194
|
986 |
msgid "Notify the administrator when users subscribe without commenting."
|
987 |
msgstr ""
|
988 |
"Upozornit administrátora pokud se uživatel přihlásí k odběrům a sám "
|
989 |
"nekomentuje."
|
990 |
|
991 |
+
#: options/panel5.php:203
|
992 |
msgid "Let the administrator subscribe to comments when logged in."
|
993 |
msgstr "Povolit odběry pro administrátora pokud je přihlášen."
|
994 |
|
995 |
+
#: options/panel5.php:212
|
996 |
msgid "Send a copy of all Notifications to the administrator."
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: options/panel5.php:221
|
1000 |
msgid ""
|
1001 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1002 |
"you theme already add this into your site."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
+
#: options/panel5.php:226
|
1006 |
msgid "StCR Unique Key"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
+
#: options/panel5.php:231
|
1010 |
msgid "This Unique Key is not set, please click the following button to "
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1014 |
msgid "Generate"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
+
#: options/panel5.php:243
|
1018 |
msgid ""
|
1019 |
"This Unique Key will be use to send the notification to your subscribers "
|
1020 |
"with more security."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: options/panel5.php:256
|
1024 |
+
msgid ""
|
1025 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1026 |
+
"with caution."
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: options/panel5.php:258
|
1030 |
+
msgid "Yes, Delete Options including subscriptions."
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: options/panel5.php:259
|
1034 |
+
msgid "No, Only delete the StCR Options."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1038 |
+
msgid ""
|
1039 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1040 |
+
"hidden=\"true\"></i>"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1044 |
+
#, fuzzy
|
1045 |
+
#| msgid ""
|
1046 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1047 |
+
#| "Subscribe to Comments Reloaded is and will always be free, but consider "
|
1048 |
+
#| "supporting the author if this plugin made your web site better, "
|
1049 |
+
#| "especially if you are making money out of it. Any donation received will "
|
1050 |
+
#| "be reinvested in the development of Subscribe to Comments Reloaded, and "
|
1051 |
+
#| "to buy some food for my hungry family."
|
1052 |
msgid ""
|
1053 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1054 |
"consider supporting the author if this plugin made your web site better, "
|
1055 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1056 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1057 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1058 |
"strong>, and to buy some food for my hungry family."
|
1059 |
msgstr ""
|
1060 |
+
"Jak si ceníte tohoto pluginu? Plugin Subscribe to Comments Reloaded je a "
|
1061 |
+
"bude vždy zadarmo avšak zvažte přispění pokud tento plugin váš web vylepšil, "
|
1062 |
+
"zvláště pak pokud je váš web výdělečný.Veškeré příspěvky budou reinvestovány "
|
1063 |
+
"do vývoje pluginu a jídla pro moji rodinu."
|
1064 |
|
1065 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1066 |
+
#, fuzzy
|
1067 |
+
#| msgid "You can help"
|
1068 |
+
msgid "You can still help"
|
1069 |
+
msgstr "Jak nám pomoci?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1070 |
|
1071 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1072 |
+
#, fuzzy
|
1073 |
+
#| msgid ""
|
1074 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1075 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1076 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1077 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1078 |
+
#| "how to improve Subscribe to Comments Reloaded and so on. Whatever you do, "
|
1079 |
+
#| "thanks for using my plugin!"
|
1080 |
+
msgid ""
|
1081 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1082 |
+
"Please let your readers know what makes your blog better. You can also "
|
1083 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1084 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1085 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1086 |
+
msgstr ""
|
1087 |
+
"Pokud nechcete přispět penězi, máte pořád možnost přispět tím, že budete o "
|
1088 |
+
"mém pluginu blogovat a odakážete na stránku pluginu. Rozšíříte tak povědomí "
|
1089 |
+
"o pluginu.Také můžete přispět i vaším časem: zašlete mi reporty o chybách, "
|
1090 |
+
"můžete také plugin přeložit a nebo také zaslat nápady na jeho vylepšení. Ať "
|
1091 |
+
"už uděláte cokoli děkuji za to že používáte můj plugin!"
|
1092 |
+
|
1093 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1094 |
msgid "Subscribe to the Beta testers"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1098 |
msgid ""
|
1099 |
"Before a new Update we release a Beta version so that our current users can "
|
1100 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1102 |
"a>"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1106 |
msgid "Vote and show your appreciation"
|
1107 |
msgstr "Hlasovat pro plugin"
|
1108 |
|
1109 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1110 |
msgid ""
|
1111 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1112 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1113 |
"subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1117 |
msgid "Did you find a Bug on the plugin?"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1121 |
msgid ""
|
1122 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1123 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1210 |
msgid "You have request to manage another email address and this is forbidden."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1214 |
msgid "StCR System"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1218 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1219 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1220 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1221 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1222 |
msgid "You do not have sufficient permissions to access this page."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: utils/stcr_manage.php:726
|
1226 |
msgid "Subscriptions"
|
1227 |
msgstr "Odběry "
|
1228 |
|
1229 |
+
#: utils/stcr_manage.php:782
|
1230 |
msgid ""
|
1231 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1232 |
msgstr "Potřebujete pomoci? Navštivte oficiální"
|
1233 |
|
1234 |
+
#: utils/stcr_manage.php:782
|
1235 |
msgid "support forum"
|
1236 |
msgstr "fórum podpory"
|
1237 |
|
1238 |
+
#: utils/stcr_manage.php:783
|
1239 |
msgid "Feeling generous?"
|
1240 |
msgstr "Chcete být štědrý?"
|
1241 |
|
1242 |
+
#: utils/stcr_manage.php:783
|
1243 |
msgid "Donate a few bucks!"
|
1244 |
msgstr "Přispět několika chechtáky!"
|
1245 |
|
1246 |
+
#: utils/stcr_upgrade.php:72
|
1247 |
msgid "Important Notice"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: utils/stcr_upgrade.php:120
|
1251 |
msgid ""
|
1252 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1253 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1255 |
"src=\""
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: utils/stcr_upgrade.php:175
|
1259 |
msgid ""
|
1260 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1261 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1262 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: utils/stcr_upgrade.php:175
|
1266 |
msgid ""
|
1267 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1268 |
"Comments to prevent confusion between the two plugins."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: utils/stcr_upgrade.php:176
|
1272 |
msgid ""
|
1273 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1274 |
"that you want to import, you'll need to import that data manually, as only "
|
1275 |
"one import routine will ever run to prevent data loss."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1279 |
+
#: utils/stcr_upgrade.php:400
|
1280 |
msgid ""
|
1281 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1282 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1284 |
"\"stcr-loading-animation\" src=\""
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: utils/stcr_upgrade.php:250
|
1288 |
msgid ""
|
1289 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1290 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1291 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: utils/stcr_upgrade.php:250
|
1295 |
msgid ""
|
1296 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1297 |
"Notification to prevent confusion between the two plugins."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: utils/stcr_upgrade.php:397
|
1301 |
msgid ""
|
1302 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1303 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1305 |
"Reloaded</strong>."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: utils/stcr_upgrade.php:397
|
1309 |
msgid ""
|
1310 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1311 |
"Subscriptions to prevent confusion between the two plugins."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: utils/stcr_upgrade.php:398
|
1315 |
msgid ""
|
1316 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1317 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1319 |
"ever run to prevent data loss."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: utils/stcr_upgrade.php:399
|
1323 |
msgid ""
|
1324 |
"<strong>Note:</strong> If you were previously using the "
|
1325 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1328 |
"respectively."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: utils/stcr_upgrade.php:413
|
1332 |
msgid ""
|
1333 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1337 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1338 |
msgid ""
|
1339 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1340 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: utils/stcr_upgrade.php:415
|
1344 |
msgid ""
|
1345 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1346 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1347 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1348 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1349 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1350 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: utils/stcr_upgrade.php:417
|
1354 |
msgid ""
|
1355 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1356 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1358 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: utils/stcr_upgrade.php:428
|
1362 |
msgid ""
|
1363 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1364 |
"160106."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: utils/stcr_upgrade.php:429
|
1368 |
msgid ""
|
1369 |
"This version includes many changes and fixes to improve your experience with "
|
1370 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1371 |
"email templates, Subscription Checkbox position, and more!"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1375 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1376 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1377 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1378 |
msgid ""
|
1379 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1380 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1382 |
"class=\"stcr-loading-animation\" src=\""
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: utils/stcr_upgrade.php:443
|
1386 |
msgid ""
|
1387 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1388 |
"160115."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: utils/stcr_upgrade.php:444
|
1392 |
msgid ""
|
1393 |
"This version includes fixes to broken links while managing your subscriptions"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: utils/stcr_upgrade.php:458
|
1397 |
msgid ""
|
1398 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1399 |
"160831"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1403 |
msgid "This version includes fixes to many bugs and also new features, "
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1407 |
msgid ""
|
1408 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1409 |
"address. This will help the subscribers to use the Reply option in their "
|
1410 |
"email agents."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1414 |
msgid ""
|
1415 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1416 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1420 |
msgid ""
|
1421 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1422 |
"without loosing your subscriptions. You can use this option also for reset "
|
1423 |
"all the settings, see the FAQ."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1427 |
msgid ""
|
1428 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1429 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1430 |
"Post Type."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1434 |
msgid ""
|
1435 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1436 |
"options to and the management link only by email and not to display it on "
|
1437 |
"the request link page."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: utils/stcr_upgrade.php:480
|
1441 |
msgid ""
|
1442 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1443 |
"160902"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: utils/stcr_upgrade.php:483
|
1447 |
msgid ""
|
1448 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1449 |
"previous 160831 version."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1453 |
msgid "Settings"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: utils/stcr_upgrade.php:504
|
1457 |
msgid ""
|
1458 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1459 |
"160915"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1463 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1464 |
msgid "This version includes fixes and improvements, "
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: utils/stcr_upgrade.php:508
|
1468 |
msgid ""
|
1469 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1470 |
"dropdown."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: utils/stcr_upgrade.php:509
|
1474 |
msgid ""
|
1475 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1479 |
+
#: utils/stcr_upgrade.php:576
|
1480 |
msgid "Log Settings"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1484 |
+
#: utils/stcr_upgrade.php:580
|
1485 |
msgid ""
|
1486 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: utils/stcr_upgrade.php:529
|
1490 |
msgid ""
|
1491 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1492 |
"enable."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: utils/stcr_upgrade.php:530
|
1496 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1500 |
+
#: utils/stcr_upgrade.php:590
|
1501 |
msgid "The support of this plugin is given thanks to your donations."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: utils/stcr_upgrade.php:536
|
1505 |
msgid ""
|
1506 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1507 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1511 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: utils/stcr_upgrade.php:557
|
1515 |
msgid ""
|
1516 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1517 |
"installation regarding a database table creation."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: utils/stcr_upgrade.php:558
|
1521 |
msgid ""
|
1522 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1523 |
"Awesome."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: utils/stcr_upgrade.php:563
|
1527 |
msgid ""
|
1528 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1529 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1534 |
"for the users that have supported the plugin development."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: utils/stcr_upgrade.php:584
|
1538 |
+
msgid ""
|
1539 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1540 |
+
"issues."
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: utils/stcr_upgrade.php:585
|
1544 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: utils/stcr_upgrade.php:586
|
1548 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: utils/stcr_upgrade.php:591
|
1552 |
+
msgid ""
|
1553 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1554 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1555 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1556 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1557 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1558 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1559 |
+
"Thanks for all the users that have supported the plugin development."
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: utils/stcr_utils.php:196
|
1563 |
+
msgid ""
|
1564 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1565 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1566 |
+
msgstr ""
|
1567 |
+
"<span class='comment_label_afterselect'> upozornění na nové komentáře k "
|
1568 |
+
"tomuto článku.</span> <span class='comment_label_nocom'> Chcete dostávat "
|
1569 |
+
"upozornění na nové komentáře a sami článek nekomentovat? <a "
|
1570 |
+
"href='[subscribe_link]'>Přihlaste se k odběru</a>.</span>"
|
1571 |
+
|
1572 |
+
#: utils/stcr_utils.php:197
|
1573 |
+
msgid ""
|
1574 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1575 |
+
"subscriptions."
|
1576 |
+
msgstr ""
|
1577 |
+
"Jste přihlášen k odběru upozornění na nové komentáře k tomuto článku. Můžete "
|
1578 |
+
"<a href='[manager_link]'>upravit</a> vaše odběry."
|
1579 |
+
|
1580 |
+
#: utils/stcr_utils.php:198
|
1581 |
+
msgid ""
|
1582 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1583 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1584 |
+
msgstr ""
|
1585 |
+
"Vaše žádost k odběru upozornění na nové komentáře čeká na schválení. <a "
|
1586 |
+
"href='[manager_link]'>Upravit vaše žádosti</a>."
|
1587 |
+
|
1588 |
+
#: utils/stcr_utils.php:199
|
1589 |
+
msgid ""
|
1590 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1591 |
+
msgstr ""
|
1592 |
+
"<a href='[manager_link]'>Zde můžete spravovat</a> odběry upozornění na nové "
|
1593 |
+
"komentáře k tomuto článku."
|
1594 |
+
|
1595 |
+
#: utils/stcr_utils.php:205
|
1596 |
+
msgid ""
|
1597 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1598 |
+
"will send you a message containing the link to access your personal "
|
1599 |
+
"management page."
|
1600 |
+
msgstr ""
|
1601 |
+
"Pro správu vašich upozornění zadejte e-mailovou adresu do pole níže. Bude "
|
1602 |
+
"vám zaslán editační odkaz."
|
1603 |
+
|
1604 |
+
#: utils/stcr_utils.php:206
|
1605 |
+
msgid ""
|
1606 |
+
"Thank you for using our subscription service. Your request has been "
|
1607 |
+
"completed, and you should receive an email with the management link in a few "
|
1608 |
+
"minutes."
|
1609 |
+
msgstr ""
|
1610 |
+
"Váš požadavek byl zpracován. V nejbližší době by jste měli obdržet odkaz v "
|
1611 |
+
"emailu."
|
1612 |
+
|
1613 |
+
#: utils/stcr_utils.php:207
|
1614 |
+
msgid ""
|
1615 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1616 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1617 |
+
"form here below and you're all set."
|
1618 |
+
msgstr ""
|
1619 |
+
"Zasílat upozornění na nové komentáře k článku » [post_title] « .\n"
|
1620 |
+
" E-mailovou adresu vyplňte do pole níže. Bude vám zaslán potvrzovací odkaz. "
|
1621 |
+
|
1622 |
+
#: utils/stcr_utils.php:208
|
1623 |
+
msgid ""
|
1624 |
+
"Thank you for using our subscription service. Your request has been "
|
1625 |
+
"completed. You will receive a notification email every time a new comment to "
|
1626 |
+
"this article is approved and posted by the administrator."
|
1627 |
+
msgstr ""
|
1628 |
+
"Váš požadavek byl zpracován. Váš odběr upozornění na nové komentáře k tomuto "
|
1629 |
+
"článku je aktivní."
|
1630 |
+
|
1631 |
+
#: utils/stcr_utils.php:209
|
1632 |
+
msgid ""
|
1633 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1634 |
+
"request, please check your email for the verification message and follow the "
|
1635 |
+
"instructions."
|
1636 |
+
msgstr ""
|
1637 |
+
"Váš požadavek byl zpracován. Pro potvrzení požadavku naleznete ve vašem "
|
1638 |
+
"emailu potvrzovací odkaz."
|
1639 |
+
|
1640 |
+
#: utils/stcr_utils.php:210
|
1641 |
+
msgid ""
|
1642 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1643 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1644 |
+
msgstr ""
|
1645 |
+
"Pro editaci upozornění vyberte odpovídající odběr, zaškrtněte volbu a "
|
1646 |
+
"potvrďte."
|
1647 |
+
|
1648 |
+
#: utils/stcr_utils.php:211
|
1649 |
+
msgid ""
|
1650 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1651 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1652 |
+
"You are currently subscribed to:"
|
1653 |
+
msgstr ""
|
1654 |
+
"Aktuálně odebíráte upozornění na nové komentáře k těmto článkům (pokud je "
|
1655 |
+
"chcete změnit či zrušit zaškrtněte volbu a klikntěte na tlačítko "
|
1656 |
+
"aktualizovat, pokud změnu nechcete pokračujte třeba přes menu):"
|
1657 |
+
|
1658 |
+
#: utils/stcr_utils.php:215
|
1659 |
+
msgid "There is a new comment to [post_title]"
|
1660 |
+
msgstr "Nový komentář k článku: [post_title]"
|
1661 |
+
|
1662 |
+
#: utils/stcr_utils.php:216
|
1663 |
+
msgid ""
|
1664 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1665 |
+
"\n"
|
1666 |
+
"<hr />\n"
|
1667 |
+
"<strong>Comment link:</strong> <a href="
|
1668 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1669 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1670 |
+
"\n"
|
1671 |
+
"<strong>Comment:</strong>\n"
|
1672 |
+
"[comment_content]\n"
|
1673 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1674 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1675 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1676 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1677 |
+
msgstr ""
|
1678 |
+
|
1679 |
+
#: utils/stcr_utils.php:217
|
1680 |
+
msgid "Please confirm your subscription to [post_title]"
|
1681 |
+
msgstr "Potvrďte odběr upozornění na nové komentáře k článku [post_title]"
|
1682 |
+
|
1683 |
+
#: utils/stcr_utils.php:218
|
1684 |
+
#, fuzzy
|
1685 |
+
#| msgid ""
|
1686 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1687 |
+
#| "[post_permalink]\n"
|
1688 |
+
#| "\n"
|
1689 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1690 |
+
#| "[confirm_link]"
|
1691 |
+
msgid ""
|
1692 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1693 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1694 |
+
"\n"
|
1695 |
+
"Please confirm your request by clicking on this link:\n"
|
1696 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1697 |
+
msgstr ""
|
1698 |
+
"Dobrý den, přihlásili jste se k odběru upozornění na nové komentáře k "
|
1699 |
+
"článku: \n"
|
1700 |
+
" [post_permalink] .\n"
|
1701 |
+
"\n"
|
1702 |
+
"Požadavek potvrďte prosím kliknutím na odkaz:\n"
|
1703 |
+
"[confirm_link] "
|
1704 |
+
|
1705 |
+
#: utils/stcr_utils.php:219
|
1706 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1707 |
+
msgstr "Upravit odběr upozornění na nové komentáře z [blog_name]"
|
1708 |
+
|
1709 |
+
#: utils/stcr_utils.php:220
|
1710 |
+
msgid ""
|
1711 |
+
"You have requested to manage your subscriptions to the articles on "
|
1712 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: utils/stcr_utils.php:221
|
1716 |
+
#, fuzzy
|
1717 |
+
#| msgid ""
|
1718 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1719 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1720 |
+
#| "[manager_link]"
|
1721 |
+
msgid ""
|
1722 |
+
"You have requested to manage your subscriptions to the articles on "
|
1723 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1724 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1725 |
+
msgstr ""
|
1726 |
+
"Váš požadavek spravovat odběr upozornění na nové komentáře článků na "
|
1727 |
+
"[blog_name] byl zpracován. Klikněte prosím zde pro úpravy:\n"
|
1728 |
+
" [manager_link]"
|
1729 |
+
|
1730 |
+
#: utils/stcr_utils.php:300
|
1731 |
msgid "StCR Notification"
|
1732 |
msgstr ""
|
1733 |
|
1739 |
msgid "All"
|
1740 |
msgstr "Odebírat (na všechny komentáře)"
|
1741 |
|
1742 |
+
#~ msgid "Don't want to donate? You can still help"
|
1743 |
+
#~ msgstr "Nechcete zrovna přispět penězi? Stále můžete pomoci!"
|
1744 |
+
|
1745 |
+
#~ msgid ""
|
1746 |
+
#~ "There is a new comment to [post_title].\n"
|
1747 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1748 |
+
#~ "Author: [comment_author]\n"
|
1749 |
+
#~ "Comment:\n"
|
1750 |
+
#~ "[comment_content]\n"
|
1751 |
+
#~ "Permalink: [post_permalink]\n"
|
1752 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1753 |
+
#~ msgstr ""
|
1754 |
+
#~ "Nový komentář k článku: [post_title].\n"
|
1755 |
+
#~ "Odkaz na komentář: [comment_permalink]\n"
|
1756 |
+
#~ "Autor: [comment_author]\n"
|
1757 |
+
#~ "Znění komentáře:\n"
|
1758 |
+
#~ "[comment_content]\n"
|
1759 |
+
#~ "Odkaz na článek: [post_permalink]\n"
|
1760 |
+
#~ "Upravit odběry upozornění: [manager_link]\n"
|
1761 |
+
#~ "\t\t\t\t\t"
|
1762 |
+
|
1763 |
#~ msgid ""
|
1764 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1765 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
1822 |
#~ msgid "Support the author"
|
1823 |
#~ msgstr "Podpořte autora"
|
1824 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1825 |
#~ msgid ""
|
1826 |
#~ "Tell other people if Subscribe to Comments Reloaded works for you and how "
|
1827 |
#~ "good it is. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: da_DK\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -12,40 +12,36 @@ msgstr ""
|
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Generator: Poedit
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: options/index.php:
|
19 |
-
#: utils/
|
20 |
msgid "Manage subscriptions"
|
21 |
msgstr "Rediger dine abonnementer"
|
22 |
|
23 |
-
#: options/index.php:
|
24 |
msgid "Comment Form"
|
25 |
msgstr "Kommentar skema"
|
26 |
|
27 |
-
#: options/index.php:
|
28 |
msgid "Management Page"
|
29 |
msgstr "Administrations side"
|
30 |
|
31 |
-
#: options/index.php:
|
32 |
msgid "Notifications"
|
33 |
msgstr "E-mail emne"
|
34 |
|
35 |
-
#: options/index.php:
|
36 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
37 |
msgid "Options"
|
38 |
msgstr "Indstillinger"
|
39 |
|
40 |
-
#: options/index.php:
|
41 |
-
msgid "You can help"
|
42 |
-
msgstr ""
|
43 |
-
|
44 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
45 |
msgid "Support"
|
46 |
msgstr "Support"
|
47 |
|
48 |
-
#: options/index.php:
|
49 |
msgid "Donate"
|
50 |
msgstr ""
|
51 |
|
@@ -346,95 +342,95 @@ msgstr "Opdater abonnementer"
|
|
346 |
msgid "Sorry, no subscriptions match your search criteria."
|
347 |
msgstr "Beklager, der er ikke fundet nogle abonnenter til"
|
348 |
|
349 |
-
#: options/panel10.php:
|
350 |
msgid "The log file has been successfully deleted."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: options/panel10.php:
|
354 |
msgid "Can't delete the log file, check the file permissions."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: options/panel10.php:
|
358 |
msgid "The log file does not exists."
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: options/panel10.php:
|
362 |
msgid "Enable Log Information"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: options/panel10.php:
|
366 |
msgid "Enable Auto clean log data"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: options/panel10.php:
|
370 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
371 |
msgid "Your settings have been successfully updated."
|
372 |
msgstr "Dine indstillinger er blevet opdateret."
|
373 |
|
374 |
-
#: options/panel10.php:
|
375 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
376 |
msgid "There was an error updating the following fields:"
|
377 |
msgstr "Der var en fejl i opdateringen af disse felter:"
|
378 |
|
379 |
-
#: options/panel10.php:
|
380 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
381 |
-
#: options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
msgid "Yes"
|
386 |
msgstr "Ja"
|
387 |
|
388 |
-
#: options/panel10.php:
|
389 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
msgid "No"
|
395 |
msgstr "Nej"
|
396 |
|
397 |
-
#: options/panel10.php:
|
398 |
msgid ""
|
399 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
400 |
"purposes."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: options/panel10.php:
|
404 |
msgid "Hourly"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: options/panel10.php:
|
408 |
msgid "Twice Daily"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: options/panel10.php:
|
412 |
msgid "Daily"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: options/panel10.php:
|
416 |
msgid "If enabled, StCR will auto clean your information every day."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: options/panel10.php:
|
420 |
msgid "Clean Up Log Archive"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: options/panel10.php:
|
424 |
msgid ""
|
425 |
"If you want to clean up the log archive please click the following button"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: options/panel10.php:
|
429 |
msgid "Clean"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: options/panel10.php:
|
433 |
msgid "System Information"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: options/panel10.php:
|
437 |
-
#: options/panel4.php:283 options/panel5.php:
|
438 |
msgid "Save Changes"
|
439 |
msgstr "Gem ændringer"
|
440 |
|
@@ -771,7 +767,7 @@ msgstr ""
|
|
771 |
#: options/panel4.php:128
|
772 |
msgid ""
|
773 |
"This will be use when the user click reply on their email agent. If not set "
|
774 |
-
"will be the same as the Sender email address."
|
775 |
msgstr ""
|
776 |
|
777 |
#: options/panel4.php:147
|
@@ -787,8 +783,8 @@ msgstr ""
|
|
787 |
|
788 |
#: options/panel4.php:171
|
789 |
msgid ""
|
790 |
-
"<p><strong>Note: To get a default template clear
|
791 |
-
"the options.</strong></p>"
|
792 |
msgstr ""
|
793 |
|
794 |
#: options/panel4.php:184
|
@@ -835,79 +831,95 @@ msgid ""
|
|
835 |
"[blog_name]"
|
836 |
msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
|
837 |
|
838 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
839 |
msgid "Show StCR checkbox / dropdown"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: options/panel5.php:
|
843 |
msgid "Safetly Uninstall"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: options/panel5.php:
|
847 |
msgid "Autopurge requests"
|
848 |
msgstr "Autoslet forespørgsler"
|
849 |
|
850 |
-
#: options/panel5.php:
|
851 |
msgid "Enable double check"
|
852 |
msgstr "Slå bekræftelse til"
|
853 |
|
854 |
-
#: options/panel5.php:
|
855 |
msgid "StCR Position"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: options/panel5.php:
|
859 |
msgid "Subscribe authors"
|
860 |
msgstr "Abonnements besked"
|
861 |
|
862 |
-
#: options/panel5.php:
|
863 |
msgid "Enable HTML emails"
|
864 |
msgstr "Slå HTML e-mails til"
|
865 |
|
866 |
-
#: options/panel5.php:
|
867 |
msgid "HTMLify Links in HTML emails"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: options/panel5.php:
|
871 |
msgid "Send trackbacks"
|
872 |
msgstr "Send trackbacks"
|
873 |
|
874 |
-
#: options/panel5.php:
|
875 |
msgid "Notify admin"
|
876 |
msgstr "Adviser administrator"
|
877 |
|
878 |
-
#: options/panel5.php:
|
879 |
msgid "Let admin subscribe"
|
880 |
msgstr "Lad administrator abonnere"
|
881 |
|
882 |
-
#: options/panel5.php:
|
883 |
msgid "BCC admin on Notifications"
|
884 |
msgstr "E-mail emne"
|
885 |
|
886 |
-
#: options/panel5.php:
|
887 |
msgid "Enable Font Awesome"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
891 |
msgid ""
|
892 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
893 |
"You should leave it to Yes always. "
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: options/panel5.php:
|
897 |
msgid "Safely Uninstall"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: options/panel5.php:
|
901 |
msgid ""
|
902 |
"This option will allow you to delete the plugin with WordPress without "
|
903 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: options/panel5.php:
|
907 |
msgid "days"
|
908 |
msgstr "dage"
|
909 |
|
910 |
-
#: options/panel5.php:
|
911 |
msgid ""
|
912 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
913 |
"this feature."
|
@@ -915,14 +927,14 @@ msgstr ""
|
|
915 |
"Slet afventende abonnementer (ikke bekræftede) after X dage. 0 slår denne "
|
916 |
"funktion fra."
|
917 |
|
918 |
-
#: options/panel5.php:
|
919 |
msgid ""
|
920 |
"If this option is enable the subscription box will be above the submit "
|
921 |
"button in your comment form. Use this when your theme is outdated and using "
|
922 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: options/panel5.php:
|
926 |
msgid ""
|
927 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
928 |
"misuse)."
|
@@ -930,12 +942,12 @@ msgstr ""
|
|
930 |
"Send en bekræftelses e-mail for at bekræfte abonnement (for at undgå e-mail "
|
931 |
"adresse misbrug)."
|
932 |
|
933 |
-
#: options/panel5.php:
|
934 |
msgid ""
|
935 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: options/panel5.php:
|
939 |
msgid ""
|
940 |
"If enabled, will send email messages with content-type = text/html instead "
|
941 |
"of text/plain"
|
@@ -943,77 +955,101 @@ msgstr ""
|
|
943 |
"Hvis slået til, så vil e-mail beskeder indeholde = tekst/html i stedet for "
|
944 |
"tekst/plain"
|
945 |
|
946 |
-
#: options/panel5.php:
|
947 |
msgid "HTMLify links in emails"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: options/panel5.php:
|
951 |
msgid ""
|
952 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
953 |
"</a></code> (only when HTML emails enabled)."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: options/panel5.php:
|
957 |
msgid "Process trackbacks"
|
958 |
msgstr "Send trackbacks"
|
959 |
|
960 |
-
#: options/panel5.php:
|
961 |
msgid ""
|
962 |
"Notify users when a new trackback or pingback is added to the discussion."
|
963 |
msgstr ""
|
964 |
"Adviser abonnenter når en ny trackback eller pingback er tilføjet til "
|
965 |
"kommentarer."
|
966 |
|
967 |
-
#: options/panel5.php:
|
968 |
msgid "Track all subscriptions"
|
969 |
msgstr "Advisering ved abonnementer"
|
970 |
|
971 |
-
#: options/panel5.php:
|
972 |
msgid "Notify the administrator when users subscribe without commenting."
|
973 |
msgstr "Adviser administrator når brugere abonnerer uden at kommentere."
|
974 |
|
975 |
-
#: options/panel5.php:
|
976 |
msgid "Let the administrator subscribe to comments when logged in."
|
977 |
msgstr ""
|
978 |
"Lad administrator abonnere på kommentarer når administrator er logget ind."
|
979 |
|
980 |
-
#: options/panel5.php:
|
981 |
msgid "Send a copy of all Notifications to the administrator."
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: options/panel5.php:
|
985 |
msgid ""
|
986 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
987 |
"you theme already add this into your site."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: options/panel5.php:
|
991 |
msgid "StCR Unique Key"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: options/panel5.php:
|
995 |
msgid "This Unique Key is not set, please click the following button to "
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: options/panel5.php:
|
999 |
msgid "Generate"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: options/panel5.php:
|
1003 |
msgid ""
|
1004 |
"This Unique Key will be use to send the notification to your subscribers "
|
1005 |
"with more security."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: options/
|
1009 |
-
msgid "
|
1010 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1011 |
|
1012 |
-
#: options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 |
msgid ""
|
1014 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1015 |
"consider supporting the author if this plugin made your web site better, "
|
1016 |
-
"especially if you are making money out of it
|
|
|
1017 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1018 |
"strong>, and to buy some food for my hungry family."
|
1019 |
msgstr ""
|
@@ -1024,18 +1060,27 @@ msgstr ""
|
|
1024 |
"videre udvikling af Subscribe to Comments Reloaded og til at købe mad til "
|
1025 |
"min sultne familie."
|
1026 |
|
1027 |
-
#: options/panel7.php:
|
1028 |
-
|
|
|
|
|
1029 |
msgstr "Vil du ikke donere? Du kan stadig hjælpe"
|
1030 |
|
1031 |
-
#: options/panel7.php:
|
1032 |
-
|
1033 |
-
|
1034 |
-
"
|
1035 |
-
"
|
1036 |
-
"
|
1037 |
-
"
|
1038 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1039 |
msgstr ""
|
1040 |
"Hvis du ikke ønsker at donere penge, så overvej venligst at blogge om mit "
|
1041 |
"plugin med et link til plugin siden. Lad dine læsere vide hvad der gør din "
|
@@ -1043,11 +1088,11 @@ msgstr ""
|
|
1043 |
"rapporter, dine sprogfiler eller ideer til at forbedre Subscribe to Comments "
|
1044 |
"Reloaded osv. Hvad end du gør, mange tak fordi du bruger mit plugin!"
|
1045 |
|
1046 |
-
#: options/panel7.php:
|
1047 |
msgid "Subscribe to the Beta testers"
|
1048 |
msgstr "Abonnements besked"
|
1049 |
|
1050 |
-
#: options/panel7.php:
|
1051 |
msgid ""
|
1052 |
"Before a new Update we release a Beta version so that our current users can "
|
1053 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1055,11 +1100,11 @@ msgid ""
|
|
1055 |
"a>"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: options/panel7.php:
|
1059 |
msgid "Vote and show your appreciation"
|
1060 |
msgstr "Stem og vis din påskønnelse"
|
1061 |
|
1062 |
-
#: options/panel7.php:
|
1063 |
msgid ""
|
1064 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1065 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1069,11 +1114,11 @@ msgstr ""
|
|
1069 |
"den er. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
|
1070 |
"reloaded/\">Rate den</a> på Plugin Directory siden."
|
1071 |
|
1072 |
-
#: options/panel8.php:
|
1073 |
msgid "Did you find a Bug on the plugin?"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: options/panel8.php:
|
1077 |
msgid ""
|
1078 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1079 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1168,198 +1213,46 @@ msgstr ""
|
|
1168 |
msgid "You have request to manage another email address and this is forbidden."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: utils/stcr_manage.php:
|
1172 |
-
msgid ""
|
1173 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1174 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1175 |
-
msgstr ""
|
1176 |
-
"Giv mig besked ved andre kommentarer via e-mail. Du kan også <a "
|
1177 |
-
"href='[subscribe_link]'>abonnere</a> uden at kommentere."
|
1178 |
-
|
1179 |
-
#: utils/stcr_manage.php:224
|
1180 |
-
msgid ""
|
1181 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1182 |
-
"subscriptions."
|
1183 |
-
msgstr ""
|
1184 |
-
"Du abonnerer på dette indlæg. <a href='[manager_link]'>Rediger</a> dine "
|
1185 |
-
"abonnementer."
|
1186 |
-
|
1187 |
-
#: utils/stcr_manage.php:225
|
1188 |
-
msgid ""
|
1189 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1190 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1191 |
-
msgstr ""
|
1192 |
-
"Dit abonnement til dette indlæg kræver bekræftelse. <a "
|
1193 |
-
"href='[manager_link]'>Rediger dine abonnementer</a>."
|
1194 |
-
|
1195 |
-
#: utils/stcr_manage.php:226
|
1196 |
-
msgid ""
|
1197 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1198 |
-
msgstr ""
|
1199 |
-
"Du kan <a href='[manager_link]'>redigere abonnementerne</a> til dette indlæg."
|
1200 |
-
|
1201 |
-
#: utils/stcr_manage.php:232
|
1202 |
-
msgid ""
|
1203 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1204 |
-
"will send you a message containing the link to access your personal "
|
1205 |
-
"management page."
|
1206 |
-
msgstr ""
|
1207 |
-
"For at redigere dine abonnementer, så indtast venligst din e-mail adresse "
|
1208 |
-
"herunder. Vi sender dig en besked med et link til din personlige abonnement "
|
1209 |
-
"side."
|
1210 |
-
|
1211 |
-
#: utils/stcr_manage.php:233
|
1212 |
-
msgid ""
|
1213 |
-
"Thank you for using our subscription service. Your request has been "
|
1214 |
-
"completed, and you should receive an email with the management link in a few "
|
1215 |
-
"minutes."
|
1216 |
-
msgstr ""
|
1217 |
-
"Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
|
1218 |
-
"vil modtage en e-mail med et link med adgang til din personlige abonnements "
|
1219 |
-
"side."
|
1220 |
-
|
1221 |
-
#: utils/stcr_manage.php:234
|
1222 |
-
msgid ""
|
1223 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1224 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1225 |
-
"form here below and you're all set."
|
1226 |
-
msgstr ""
|
1227 |
-
"Du kan abonnere på diskussionen på <strong>[post_title]</strong> uden at du "
|
1228 |
-
"behøver at skrive en kommentar. Bare indtast din e-mail adresse i felter "
|
1229 |
-
"nedenfor og du vil blive orienteret ved nye kommentarer."
|
1230 |
-
|
1231 |
-
#: utils/stcr_manage.php:235
|
1232 |
-
msgid ""
|
1233 |
-
"Thank you for using our subscription service. Your request has been "
|
1234 |
-
"completed. You will receive a notification email every time a new comment to "
|
1235 |
-
"this article is approved and posted by the administrator."
|
1236 |
-
msgstr ""
|
1237 |
-
"Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
|
1238 |
-
"vil modtage en e-mail hver gang en ny kommentar bliver godkendt af "
|
1239 |
-
"administrator."
|
1240 |
-
|
1241 |
-
#: utils/stcr_manage.php:236
|
1242 |
-
msgid ""
|
1243 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1244 |
-
"request, please check your email for the verification message and follow the "
|
1245 |
-
"instructions."
|
1246 |
-
msgstr ""
|
1247 |
-
"Tak for at bruge vores abonnements service. For at kunne udføre din "
|
1248 |
-
"forespørgsel, tjek din e-mail for en bekræftelses e-mail og følg "
|
1249 |
-
"instruktionerne i denne e-mail."
|
1250 |
-
|
1251 |
-
#: utils/stcr_manage.php:237
|
1252 |
-
msgid ""
|
1253 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1254 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1255 |
-
msgstr ""
|
1256 |
-
"For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
|
1257 |
-
"korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
|
1258 |
-
"listen."
|
1259 |
-
|
1260 |
-
#: utils/stcr_manage.php:238
|
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 |
-
"You are currently subscribed to:"
|
1265 |
-
msgstr ""
|
1266 |
-
"For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
|
1267 |
-
"korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
|
1268 |
-
"listen. Du abonnerer i øjeblikket på:"
|
1269 |
-
|
1270 |
-
#: utils/stcr_manage.php:242
|
1271 |
-
msgid "There is a new comment to [post_title]"
|
1272 |
-
msgstr "Der er en ny kommentar til [post_title]"
|
1273 |
-
|
1274 |
-
#: utils/stcr_manage.php:243
|
1275 |
-
msgid ""
|
1276 |
-
"There is a new comment to [post_title].\n"
|
1277 |
-
"Comment Link: [comment_permalink]\n"
|
1278 |
-
"Author: [comment_author]\n"
|
1279 |
-
"Comment:\n"
|
1280 |
-
"[comment_content]\n"
|
1281 |
-
"Permalink: [post_permalink]\n"
|
1282 |
-
"Manage your subscriptions: [manager_link]"
|
1283 |
-
msgstr ""
|
1284 |
-
"Der er en ny kommentar til [post_title].Kommentar Link: "
|
1285 |
-
"[comment_permalink]Forfatter: [comment_author]Kommentar:"
|
1286 |
-
"[comment_content]Link til indlæg: [post_permalink]Rediger dit abonnement på "
|
1287 |
-
"kommentarer: [manager_link]"
|
1288 |
-
|
1289 |
-
#: utils/stcr_manage.php:244
|
1290 |
-
msgid "Please confirm your subscription to [post_title]"
|
1291 |
-
msgstr "Venligst bekræft dit abonnement på kommentarer til [post_title]"
|
1292 |
-
|
1293 |
-
#: utils/stcr_manage.php:245
|
1294 |
-
msgid ""
|
1295 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1296 |
-
"[post_permalink]\n"
|
1297 |
-
"\n"
|
1298 |
-
"Please confirm your request by clicking on this link:\n"
|
1299 |
-
"[confirm_link]"
|
1300 |
-
msgstr ""
|
1301 |
-
"Du har bedt om at blive adviseret hver gang der kommer en ny kommentar til: "
|
1302 |
-
"[post_permalink]Venligst bekræft dette ved at følge dette link:[confirm_link]"
|
1303 |
-
|
1304 |
-
#: utils/stcr_manage.php:246
|
1305 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1306 |
-
msgstr "Rediger dit abonnement på kommentarer på [blog_name]"
|
1307 |
-
|
1308 |
-
#: utils/stcr_manage.php:247
|
1309 |
-
msgid ""
|
1310 |
-
"You have requested to manage your subscriptions to the articles on "
|
1311 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1312 |
-
msgstr ""
|
1313 |
-
|
1314 |
-
#: utils/stcr_manage.php:248
|
1315 |
-
msgid ""
|
1316 |
-
"You have requested to manage your subscriptions to the articles on "
|
1317 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1318 |
-
"[manager_link]"
|
1319 |
-
msgstr ""
|
1320 |
-
"Du har bedt om at redigere dit abonnement på kommentarer på [blog_name].Følg "
|
1321 |
-
"dette link for at komme til din personlige abonnements side:[manager_link]"
|
1322 |
-
|
1323 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1324 |
msgid "StCR System"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: utils/stcr_manage.php:
|
1328 |
-
#: utils/stcr_manage.php:
|
1329 |
-
#: utils/stcr_manage.php:
|
1330 |
-
#: utils/stcr_manage.php:
|
1331 |
-
#: utils/stcr_manage.php:
|
1332 |
msgid "You do not have sufficient permissions to access this page."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: utils/stcr_manage.php:
|
1336 |
msgid "Subscriptions"
|
1337 |
msgstr "Abonnementer til"
|
1338 |
|
1339 |
-
#: utils/stcr_manage.php:
|
1340 |
msgid ""
|
1341 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1342 |
msgstr ""
|
1343 |
"Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
|
1344 |
"officielle"
|
1345 |
|
1346 |
-
#: utils/stcr_manage.php:
|
1347 |
msgid "support forum"
|
1348 |
msgstr "support forum"
|
1349 |
|
1350 |
-
#: utils/stcr_manage.php:
|
1351 |
msgid "Feeling generous?"
|
1352 |
msgstr "Føler du dig generøs?"
|
1353 |
|
1354 |
-
#: utils/stcr_manage.php:
|
1355 |
msgid "Donate a few bucks!"
|
1356 |
msgstr "Doner et par dollar!"
|
1357 |
|
1358 |
-
#: utils/stcr_upgrade.php:
|
1359 |
msgid "Important Notice"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: utils/stcr_upgrade.php:
|
1363 |
msgid ""
|
1364 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1365 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1367,28 +1260,28 @@ msgid ""
|
|
1367 |
"src=\""
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: utils/stcr_upgrade.php:
|
1371 |
msgid ""
|
1372 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1373 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1374 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: utils/stcr_upgrade.php:
|
1378 |
msgid ""
|
1379 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1380 |
"Comments to prevent confusion between the two plugins."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: utils/stcr_upgrade.php:
|
1384 |
msgid ""
|
1385 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1386 |
"that you want to import, you'll need to import that data manually, as only "
|
1387 |
"one import routine will ever run to prevent data loss."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: utils/stcr_upgrade.php:
|
1391 |
-
#: utils/stcr_upgrade.php:
|
1392 |
msgid ""
|
1393 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1394 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1396,20 +1289,20 @@ msgid ""
|
|
1396 |
"\"stcr-loading-animation\" src=\""
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: utils/stcr_upgrade.php:
|
1400 |
msgid ""
|
1401 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1402 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1403 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: utils/stcr_upgrade.php:
|
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 |
|
1412 |
-
#: utils/stcr_upgrade.php:
|
1413 |
msgid ""
|
1414 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1415 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1417,13 +1310,13 @@ msgid ""
|
|
1417 |
"Reloaded</strong>."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: utils/stcr_upgrade.php:
|
1421 |
msgid ""
|
1422 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1423 |
"Subscriptions to prevent confusion between the two plugins."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: utils/stcr_upgrade.php:
|
1427 |
msgid ""
|
1428 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1429 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1431,7 +1324,7 @@ msgid ""
|
|
1431 |
"ever run to prevent data loss."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: utils/stcr_upgrade.php:
|
1435 |
msgid ""
|
1436 |
"<strong>Note:</strong> If you were previously using the "
|
1437 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1440,29 +1333,29 @@ msgid ""
|
|
1440 |
"respectively."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: utils/stcr_upgrade.php:
|
1444 |
msgid ""
|
1445 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: utils/stcr_upgrade.php:
|
1449 |
-
#: utils/stcr_upgrade.php:
|
1450 |
msgid ""
|
1451 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1452 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: utils/stcr_upgrade.php:
|
1456 |
msgid ""
|
1457 |
-
"Please consider to make a donation to support the plugin
|
1458 |
-
"<a href=\"\n"
|
1459 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1460 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1461 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1462 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: utils/stcr_upgrade.php:
|
1466 |
msgid ""
|
1467 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1468 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1470,23 +1363,23 @@ msgid ""
|
|
1470 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: utils/stcr_upgrade.php:
|
1474 |
msgid ""
|
1475 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1476 |
"160106."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: utils/stcr_upgrade.php:
|
1480 |
msgid ""
|
1481 |
"This version includes many changes and fixes to improve your experience with "
|
1482 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1483 |
"email templates, Subscription Checkbox position, and more!"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: utils/stcr_upgrade.php:
|
1487 |
-
#: utils/stcr_upgrade.php:
|
1488 |
-
#: utils/stcr_upgrade.php:
|
1489 |
-
#: utils/stcr_upgrade.php:
|
1490 |
msgid ""
|
1491 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1492 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1494,123 +1387,126 @@ msgid ""
|
|
1494 |
"class=\"stcr-loading-animation\" src=\""
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: utils/stcr_upgrade.php:
|
1498 |
msgid ""
|
1499 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1500 |
"160115."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: utils/stcr_upgrade.php:
|
1504 |
msgid ""
|
1505 |
"This version includes fixes to broken links while managing your subscriptions"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: utils/stcr_upgrade.php:
|
1509 |
msgid ""
|
1510 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1511 |
"160831"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: utils/stcr_upgrade.php:
|
1515 |
msgid "This version includes fixes to many bugs and also new features, "
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: utils/stcr_upgrade.php:
|
1519 |
msgid ""
|
1520 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1521 |
"address. This will help the subscribers to use the Reply option in their "
|
1522 |
"email agents."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: utils/stcr_upgrade.php:
|
1526 |
msgid ""
|
1527 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1528 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: utils/stcr_upgrade.php:
|
1532 |
msgid ""
|
1533 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1534 |
"without loosing your subscriptions. You can use this option also for reset "
|
1535 |
"all the settings, see the FAQ."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: utils/stcr_upgrade.php:
|
1539 |
msgid ""
|
1540 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1541 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1542 |
"Post Type."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: utils/stcr_upgrade.php:
|
1546 |
msgid ""
|
1547 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1548 |
"options to and the management link only by email and not to display it on "
|
1549 |
"the request link page."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: utils/stcr_upgrade.php:
|
1553 |
msgid ""
|
1554 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1555 |
"160902"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: utils/stcr_upgrade.php:
|
1559 |
msgid ""
|
1560 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1561 |
"previous 160831 version."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: utils/stcr_upgrade.php:
|
1565 |
msgid "Settings"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: utils/stcr_upgrade.php:
|
1569 |
msgid ""
|
1570 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1571 |
"160915"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
#: utils/stcr_upgrade.php:
|
1575 |
-
#: utils/stcr_upgrade.php:
|
1576 |
msgid "This version includes fixes and improvements, "
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: utils/stcr_upgrade.php:
|
1580 |
msgid ""
|
1581 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1582 |
"dropdown."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: utils/stcr_upgrade.php:
|
1586 |
msgid ""
|
1587 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: utils/stcr_upgrade.php:
|
|
|
1591 |
msgid "Log Settings"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: utils/stcr_upgrade.php:
|
|
|
1595 |
msgid ""
|
1596 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: utils/stcr_upgrade.php:
|
1600 |
msgid ""
|
1601 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1602 |
"enable."
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: utils/stcr_upgrade.php:
|
1606 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: utils/stcr_upgrade.php:
|
|
|
1610 |
msgid "The support of this plugin is given thanks to your donations."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: utils/stcr_upgrade.php:
|
1614 |
msgid ""
|
1615 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1616 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1620,19 +1516,19 @@ msgid ""
|
|
1620 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
1624 |
msgid ""
|
1625 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1626 |
"installation regarding a database table creation."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: utils/stcr_upgrade.php:
|
1630 |
msgid ""
|
1631 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1632 |
"Awesome."
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: utils/stcr_upgrade.php:
|
1636 |
msgid ""
|
1637 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1638 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1643,7 +1539,198 @@ msgid ""
|
|
1643 |
"for the users that have supported the plugin development."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1647 |
msgid "StCR Notification"
|
1648 |
msgstr "E-mail emne"
|
1649 |
|
@@ -1655,6 +1742,23 @@ msgstr "Lad administrator abonnere"
|
|
1655 |
msgid "All"
|
1656 |
msgstr ""
|
1657 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1658 |
#~ msgid ""
|
1659 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1660 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:07-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:10-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 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Generator: Poedit 2.0.6\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
19 |
+
#: utils/stcr_utils.php:203
|
20 |
msgid "Manage subscriptions"
|
21 |
msgstr "Rediger dine abonnementer"
|
22 |
|
23 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
24 |
msgid "Comment Form"
|
25 |
msgstr "Kommentar skema"
|
26 |
|
27 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
28 |
msgid "Management Page"
|
29 |
msgstr "Administrations side"
|
30 |
|
31 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
32 |
msgid "Notifications"
|
33 |
msgstr "E-mail emne"
|
34 |
|
35 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
36 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
37 |
msgid "Options"
|
38 |
msgstr "Indstillinger"
|
39 |
|
40 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
41 |
msgid "Support"
|
42 |
msgstr "Support"
|
43 |
|
44 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
45 |
msgid "Donate"
|
46 |
msgstr ""
|
47 |
|
342 |
msgid "Sorry, no subscriptions match your search criteria."
|
343 |
msgstr "Beklager, der er ikke fundet nogle abonnenter til"
|
344 |
|
345 |
+
#: options/panel10.php:41
|
346 |
msgid "The log file has been successfully deleted."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: options/panel10.php:46
|
350 |
msgid "Can't delete the log file, check the file permissions."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: options/panel10.php:52
|
354 |
msgid "The log file does not exists."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: options/panel10.php:66 options/panel10.php:110
|
358 |
msgid "Enable Log Information"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: options/panel10.php:72 options/panel10.php:119
|
362 |
msgid "Enable Auto clean log data"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
366 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
367 |
msgid "Your settings have been successfully updated."
|
368 |
msgstr "Dine indstillinger er blevet opdateret."
|
369 |
|
370 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
371 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
372 |
msgid "There was an error updating the following fields:"
|
373 |
msgstr "Der var en fejl i opdateringen af disse felter:"
|
374 |
|
375 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
376 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
377 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
378 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
379 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
380 |
+
#: options/panel5.php:210 options/panel5.php:219
|
381 |
msgid "Yes"
|
382 |
msgstr "Ja"
|
383 |
|
384 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
385 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
386 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
387 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
388 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
389 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
390 |
msgid "No"
|
391 |
msgstr "Nej"
|
392 |
|
393 |
+
#: options/panel10.php:114
|
394 |
msgid ""
|
395 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
396 |
"purposes."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: options/panel10.php:125
|
400 |
msgid "Hourly"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: options/panel10.php:126
|
404 |
msgid "Twice Daily"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: options/panel10.php:127
|
408 |
msgid "Daily"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: options/panel10.php:129
|
412 |
msgid "If enabled, StCR will auto clean your information every day."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: options/panel10.php:134
|
416 |
msgid "Clean Up Log Archive"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: options/panel10.php:138
|
420 |
msgid ""
|
421 |
"If you want to clean up the log archive please click the following button"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: options/panel10.php:140
|
425 |
msgid "Clean"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: options/panel10.php:147 options/panel10.php:150
|
429 |
msgid "System Information"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
433 |
+
#: options/panel4.php:283 options/panel5.php:265
|
434 |
msgid "Save Changes"
|
435 |
msgstr "Gem ændringer"
|
436 |
|
767 |
#: options/panel4.php:128
|
768 |
msgid ""
|
769 |
"This will be use when the user click reply on their email agent. If not set "
|
770 |
+
"it will be the same as the Sender email address."
|
771 |
msgstr ""
|
772 |
|
773 |
#: options/panel4.php:147
|
783 |
|
784 |
#: options/panel4.php:171
|
785 |
msgid ""
|
786 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
787 |
+
"all the content and save the options.</strong></p>"
|
788 |
msgstr ""
|
789 |
|
790 |
#: options/panel4.php:184
|
831 |
"[blog_name]"
|
832 |
msgstr "Emnet i bekræftelses e-mailen. Tilladt tag: [post_title]"
|
833 |
|
834 |
+
#: options/panel5.php:38
|
835 |
+
#, fuzzy
|
836 |
+
#| msgid "Your settings have been successfully updated."
|
837 |
+
msgid "Your settings have been successfully reset."
|
838 |
+
msgstr "Dine indstillinger er blevet opdateret."
|
839 |
+
|
840 |
+
#: options/panel5.php:40
|
841 |
+
#, fuzzy
|
842 |
+
#| msgid "There was an error updating the following fields:"
|
843 |
+
msgid "There was an error deleting the options:"
|
844 |
+
msgstr "Der var en fejl i opdateringen af disse felter:"
|
845 |
+
|
846 |
+
#: options/panel5.php:48 options/panel5.php:108
|
847 |
msgid "Show StCR checkbox / dropdown"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: options/panel5.php:51
|
851 |
msgid "Safetly Uninstall"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: options/panel5.php:54 options/panel5.php:125
|
855 |
msgid "Autopurge requests"
|
856 |
msgstr "Autoslet forespørgsler"
|
857 |
|
858 |
+
#: options/panel5.php:57 options/panel5.php:143
|
859 |
msgid "Enable double check"
|
860 |
msgstr "Slå bekræftelse til"
|
861 |
|
862 |
+
#: options/panel5.php:60 options/panel5.php:134
|
863 |
msgid "StCR Position"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: options/panel5.php:63 options/panel5.php:151
|
867 |
msgid "Subscribe authors"
|
868 |
msgstr "Abonnements besked"
|
869 |
|
870 |
+
#: options/panel5.php:66 options/panel5.php:161
|
871 |
msgid "Enable HTML emails"
|
872 |
msgstr "Slå HTML e-mails til"
|
873 |
|
874 |
+
#: options/panel5.php:69
|
875 |
msgid "HTMLify Links in HTML emails"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: options/panel5.php:72
|
879 |
msgid "Send trackbacks"
|
880 |
msgstr "Send trackbacks"
|
881 |
|
882 |
+
#: options/panel5.php:75
|
883 |
msgid "Notify admin"
|
884 |
msgstr "Adviser administrator"
|
885 |
|
886 |
+
#: options/panel5.php:78 options/panel5.php:199
|
887 |
msgid "Let admin subscribe"
|
888 |
msgstr "Lad administrator abonnere"
|
889 |
|
890 |
+
#: options/panel5.php:81 options/panel5.php:208
|
891 |
msgid "BCC admin on Notifications"
|
892 |
msgstr "E-mail emne"
|
893 |
|
894 |
+
#: options/panel5.php:84 options/panel5.php:217
|
895 |
msgid "Enable Font Awesome"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
899 |
+
msgid "Reset All Options"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: options/panel5.php:112
|
903 |
msgid ""
|
904 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
905 |
"You should leave it to Yes always. "
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: options/panel5.php:117
|
909 |
msgid "Safely Uninstall"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: options/panel5.php:121
|
913 |
msgid ""
|
914 |
"This option will allow you to delete the plugin with WordPress without "
|
915 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: options/panel5.php:128
|
919 |
msgid "days"
|
920 |
msgstr "dage"
|
921 |
|
922 |
+
#: options/panel5.php:129
|
923 |
msgid ""
|
924 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
925 |
"this feature."
|
927 |
"Slet afventende abonnementer (ikke bekræftede) after X dage. 0 slår denne "
|
928 |
"funktion fra."
|
929 |
|
930 |
+
#: options/panel5.php:138
|
931 |
msgid ""
|
932 |
"If this option is enable the subscription box will be above the submit "
|
933 |
"button in your comment form. Use this when your theme is outdated and using "
|
934 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: options/panel5.php:147
|
938 |
msgid ""
|
939 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
940 |
"misuse)."
|
942 |
"Send en bekræftelses e-mail for at bekræfte abonnement (for at undgå e-mail "
|
943 |
"adresse misbrug)."
|
944 |
|
945 |
+
#: options/panel5.php:156
|
946 |
msgid ""
|
947 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: options/panel5.php:165
|
951 |
msgid ""
|
952 |
"If enabled, will send email messages with content-type = text/html instead "
|
953 |
"of text/plain"
|
955 |
"Hvis slået til, så vil e-mail beskeder indeholde = tekst/html i stedet for "
|
956 |
"tekst/plain"
|
957 |
|
958 |
+
#: options/panel5.php:170
|
959 |
msgid "HTMLify links in emails"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: options/panel5.php:175
|
963 |
msgid ""
|
964 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
965 |
"</a></code> (only when HTML emails enabled)."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: options/panel5.php:180
|
969 |
msgid "Process trackbacks"
|
970 |
msgstr "Send trackbacks"
|
971 |
|
972 |
+
#: options/panel5.php:184
|
973 |
msgid ""
|
974 |
"Notify users when a new trackback or pingback is added to the discussion."
|
975 |
msgstr ""
|
976 |
"Adviser abonnenter når en ny trackback eller pingback er tilføjet til "
|
977 |
"kommentarer."
|
978 |
|
979 |
+
#: options/panel5.php:189
|
980 |
msgid "Track all subscriptions"
|
981 |
msgstr "Advisering ved abonnementer"
|
982 |
|
983 |
+
#: options/panel5.php:194
|
984 |
msgid "Notify the administrator when users subscribe without commenting."
|
985 |
msgstr "Adviser administrator når brugere abonnerer uden at kommentere."
|
986 |
|
987 |
+
#: options/panel5.php:203
|
988 |
msgid "Let the administrator subscribe to comments when logged in."
|
989 |
msgstr ""
|
990 |
"Lad administrator abonnere på kommentarer når administrator er logget ind."
|
991 |
|
992 |
+
#: options/panel5.php:212
|
993 |
msgid "Send a copy of all Notifications to the administrator."
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: options/panel5.php:221
|
997 |
msgid ""
|
998 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
999 |
"you theme already add this into your site."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: options/panel5.php:226
|
1003 |
msgid "StCR Unique Key"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: options/panel5.php:231
|
1007 |
msgid "This Unique Key is not set, please click the following button to "
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1011 |
msgid "Generate"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: options/panel5.php:243
|
1015 |
msgid ""
|
1016 |
"This Unique Key will be use to send the notification to your subscribers "
|
1017 |
"with more security."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: options/panel5.php:256
|
1021 |
+
msgid ""
|
1022 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1023 |
+
"with caution."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: options/panel5.php:258
|
1027 |
+
msgid "Yes, Delete Options including subscriptions."
|
1028 |
+
msgstr ""
|
1029 |
|
1030 |
+
#: options/panel5.php:259
|
1031 |
+
msgid "No, Only delete the StCR Options."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1035 |
+
msgid ""
|
1036 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1037 |
+
"hidden=\"true\"></i>"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1041 |
+
#, fuzzy
|
1042 |
+
#| msgid ""
|
1043 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1044 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1045 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1046 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1047 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1048 |
msgid ""
|
1049 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1050 |
"consider supporting the author if this plugin made your web site better, "
|
1051 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1052 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1053 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1054 |
"strong>, and to buy some food for my hungry family."
|
1055 |
msgstr ""
|
1060 |
"videre udvikling af Subscribe to Comments Reloaded og til at købe mad til "
|
1061 |
"min sultne familie."
|
1062 |
|
1063 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1064 |
+
#, fuzzy
|
1065 |
+
#| msgid "Don't want to donate? You can still help"
|
1066 |
+
msgid "You can still help"
|
1067 |
msgstr "Vil du ikke donere? Du kan stadig hjælpe"
|
1068 |
|
1069 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1070 |
+
#, fuzzy
|
1071 |
+
#| msgid ""
|
1072 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1073 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1074 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1075 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1076 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1077 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1078 |
+
msgid ""
|
1079 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1080 |
+
"Please let your readers know what makes your blog better. You can also "
|
1081 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1082 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1083 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1084 |
msgstr ""
|
1085 |
"Hvis du ikke ønsker at donere penge, så overvej venligst at blogge om mit "
|
1086 |
"plugin med et link til plugin siden. Lad dine læsere vide hvad der gør din "
|
1088 |
"rapporter, dine sprogfiler eller ideer til at forbedre Subscribe to Comments "
|
1089 |
"Reloaded osv. Hvad end du gør, mange tak fordi du bruger mit plugin!"
|
1090 |
|
1091 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1092 |
msgid "Subscribe to the Beta testers"
|
1093 |
msgstr "Abonnements besked"
|
1094 |
|
1095 |
+
#: options/panel7.php:27 options/panel8.php:27
|
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 "
|
1100 |
"a>"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1104 |
msgid "Vote and show your appreciation"
|
1105 |
msgstr "Stem og vis din påskønnelse"
|
1106 |
|
1107 |
+
#: options/panel7.php:30 options/panel8.php:30
|
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/"
|
1114 |
"den er. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
|
1115 |
"reloaded/\">Rate den</a> på Plugin Directory siden."
|
1116 |
|
1117 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1118 |
msgid "Did you find a Bug on the plugin?"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1122 |
msgid ""
|
1123 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1124 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1213 |
msgid "You have request to manage another email address and this is forbidden."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1217 |
msgid "StCR System"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1221 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1222 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1223 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1224 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1225 |
msgid "You do not have sufficient permissions to access this page."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: utils/stcr_manage.php:726
|
1229 |
msgid "Subscriptions"
|
1230 |
msgstr "Abonnementer til"
|
1231 |
|
1232 |
+
#: utils/stcr_manage.php:782
|
1233 |
msgid ""
|
1234 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1235 |
msgstr ""
|
1236 |
"Brug for hjælp til at bruge Subscribe to Comments Reloaded? Besøg den "
|
1237 |
"officielle"
|
1238 |
|
1239 |
+
#: utils/stcr_manage.php:782
|
1240 |
msgid "support forum"
|
1241 |
msgstr "support forum"
|
1242 |
|
1243 |
+
#: utils/stcr_manage.php:783
|
1244 |
msgid "Feeling generous?"
|
1245 |
msgstr "Føler du dig generøs?"
|
1246 |
|
1247 |
+
#: utils/stcr_manage.php:783
|
1248 |
msgid "Donate a few bucks!"
|
1249 |
msgstr "Doner et par dollar!"
|
1250 |
|
1251 |
+
#: utils/stcr_upgrade.php:72
|
1252 |
msgid "Important Notice"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: utils/stcr_upgrade.php:120
|
1256 |
msgid ""
|
1257 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1258 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1260 |
"src=\""
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: utils/stcr_upgrade.php:175
|
1264 |
msgid ""
|
1265 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1266 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1267 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: utils/stcr_upgrade.php:175
|
1271 |
msgid ""
|
1272 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1273 |
"Comments to prevent confusion between the two plugins."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: utils/stcr_upgrade.php:176
|
1277 |
msgid ""
|
1278 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1279 |
"that you want to import, you'll need to import that data manually, as only "
|
1280 |
"one import routine will ever run to prevent data loss."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1284 |
+
#: utils/stcr_upgrade.php:400
|
1285 |
msgid ""
|
1286 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1287 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1289 |
"\"stcr-loading-animation\" src=\""
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: utils/stcr_upgrade.php:250
|
1293 |
msgid ""
|
1294 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1295 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1296 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: utils/stcr_upgrade.php:250
|
1300 |
msgid ""
|
1301 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1302 |
"Notification to prevent confusion between the two plugins."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: utils/stcr_upgrade.php:397
|
1306 |
msgid ""
|
1307 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1308 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1310 |
"Reloaded</strong>."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: utils/stcr_upgrade.php:397
|
1314 |
msgid ""
|
1315 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1316 |
"Subscriptions to prevent confusion between the two plugins."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: utils/stcr_upgrade.php:398
|
1320 |
msgid ""
|
1321 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1322 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1324 |
"ever run to prevent data loss."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: utils/stcr_upgrade.php:399
|
1328 |
msgid ""
|
1329 |
"<strong>Note:</strong> If you were previously using the "
|
1330 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1333 |
"respectively."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: utils/stcr_upgrade.php:413
|
1337 |
msgid ""
|
1338 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1342 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1343 |
msgid ""
|
1344 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1345 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: utils/stcr_upgrade.php:415
|
1349 |
msgid ""
|
1350 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1351 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1352 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1353 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1354 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1355 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: utils/stcr_upgrade.php:417
|
1359 |
msgid ""
|
1360 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1361 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1363 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: utils/stcr_upgrade.php:428
|
1367 |
msgid ""
|
1368 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1369 |
"160106."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: utils/stcr_upgrade.php:429
|
1373 |
msgid ""
|
1374 |
"This version includes many changes and fixes to improve your experience with "
|
1375 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1376 |
"email templates, Subscription Checkbox position, and more!"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1380 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1381 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1382 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1383 |
msgid ""
|
1384 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1385 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1387 |
"class=\"stcr-loading-animation\" src=\""
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: utils/stcr_upgrade.php:443
|
1391 |
msgid ""
|
1392 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1393 |
"160115."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: utils/stcr_upgrade.php:444
|
1397 |
msgid ""
|
1398 |
"This version includes fixes to broken links while managing your subscriptions"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: utils/stcr_upgrade.php:458
|
1402 |
msgid ""
|
1403 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1404 |
"160831"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1408 |
msgid "This version includes fixes to many bugs and also new features, "
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1412 |
msgid ""
|
1413 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1414 |
"address. This will help the subscribers to use the Reply option in their "
|
1415 |
"email agents."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1419 |
msgid ""
|
1420 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1421 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1425 |
msgid ""
|
1426 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1427 |
"without loosing your subscriptions. You can use this option also for reset "
|
1428 |
"all the settings, see the FAQ."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1432 |
msgid ""
|
1433 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1434 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1435 |
"Post Type."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1439 |
msgid ""
|
1440 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1441 |
"options to and the management link only by email and not to display it on "
|
1442 |
"the request link page."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: utils/stcr_upgrade.php:480
|
1446 |
msgid ""
|
1447 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1448 |
"160902"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: utils/stcr_upgrade.php:483
|
1452 |
msgid ""
|
1453 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1454 |
"previous 160831 version."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1458 |
msgid "Settings"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: utils/stcr_upgrade.php:504
|
1462 |
msgid ""
|
1463 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1464 |
"160915"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1468 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1469 |
msgid "This version includes fixes and improvements, "
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: utils/stcr_upgrade.php:508
|
1473 |
msgid ""
|
1474 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1475 |
"dropdown."
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: utils/stcr_upgrade.php:509
|
1479 |
msgid ""
|
1480 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1484 |
+
#: utils/stcr_upgrade.php:576
|
1485 |
msgid "Log Settings"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1489 |
+
#: utils/stcr_upgrade.php:580
|
1490 |
msgid ""
|
1491 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: utils/stcr_upgrade.php:529
|
1495 |
msgid ""
|
1496 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1497 |
"enable."
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: utils/stcr_upgrade.php:530
|
1501 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1505 |
+
#: utils/stcr_upgrade.php:590
|
1506 |
msgid "The support of this plugin is given thanks to your donations."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: utils/stcr_upgrade.php:536
|
1510 |
msgid ""
|
1511 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1512 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1516 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: utils/stcr_upgrade.php:557
|
1520 |
msgid ""
|
1521 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1522 |
"installation regarding a database table creation."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: utils/stcr_upgrade.php:558
|
1526 |
msgid ""
|
1527 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1528 |
"Awesome."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: utils/stcr_upgrade.php:563
|
1532 |
msgid ""
|
1533 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1534 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1539 |
"for the users that have supported the plugin development."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: utils/stcr_upgrade.php:584
|
1543 |
+
msgid ""
|
1544 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1545 |
+
"issues."
|
1546 |
+
msgstr ""
|
1547 |
+
|
1548 |
+
#: utils/stcr_upgrade.php:585
|
1549 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1550 |
+
msgstr ""
|
1551 |
+
|
1552 |
+
#: utils/stcr_upgrade.php:586
|
1553 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: utils/stcr_upgrade.php:591
|
1557 |
+
msgid ""
|
1558 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1559 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1560 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1561 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1562 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1563 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1564 |
+
"Thanks for all the users that have supported the plugin development."
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: utils/stcr_utils.php:196
|
1568 |
+
msgid ""
|
1569 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1570 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1571 |
+
msgstr ""
|
1572 |
+
"Giv mig besked ved andre kommentarer via e-mail. Du kan også <a "
|
1573 |
+
"href='[subscribe_link]'>abonnere</a> uden at kommentere."
|
1574 |
+
|
1575 |
+
#: utils/stcr_utils.php:197
|
1576 |
+
msgid ""
|
1577 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1578 |
+
"subscriptions."
|
1579 |
+
msgstr ""
|
1580 |
+
"Du abonnerer på dette indlæg. <a href='[manager_link]'>Rediger</a> dine "
|
1581 |
+
"abonnementer."
|
1582 |
+
|
1583 |
+
#: utils/stcr_utils.php:198
|
1584 |
+
msgid ""
|
1585 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1586 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1587 |
+
msgstr ""
|
1588 |
+
"Dit abonnement til dette indlæg kræver bekræftelse. <a "
|
1589 |
+
"href='[manager_link]'>Rediger dine abonnementer</a>."
|
1590 |
+
|
1591 |
+
#: utils/stcr_utils.php:199
|
1592 |
+
msgid ""
|
1593 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1594 |
+
msgstr ""
|
1595 |
+
"Du kan <a href='[manager_link]'>redigere abonnementerne</a> til dette indlæg."
|
1596 |
+
|
1597 |
+
#: utils/stcr_utils.php:205
|
1598 |
+
msgid ""
|
1599 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1600 |
+
"will send you a message containing the link to access your personal "
|
1601 |
+
"management page."
|
1602 |
+
msgstr ""
|
1603 |
+
"For at redigere dine abonnementer, så indtast venligst din e-mail adresse "
|
1604 |
+
"herunder. Vi sender dig en besked med et link til din personlige abonnement "
|
1605 |
+
"side."
|
1606 |
+
|
1607 |
+
#: utils/stcr_utils.php:206
|
1608 |
+
msgid ""
|
1609 |
+
"Thank you for using our subscription service. Your request has been "
|
1610 |
+
"completed, and you should receive an email with the management link in a few "
|
1611 |
+
"minutes."
|
1612 |
+
msgstr ""
|
1613 |
+
"Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
|
1614 |
+
"vil modtage en e-mail med et link med adgang til din personlige abonnements "
|
1615 |
+
"side."
|
1616 |
+
|
1617 |
+
#: utils/stcr_utils.php:207
|
1618 |
+
msgid ""
|
1619 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1620 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1621 |
+
"form here below and you're all set."
|
1622 |
+
msgstr ""
|
1623 |
+
"Du kan abonnere på diskussionen på <strong>[post_title]</strong> uden at du "
|
1624 |
+
"behøver at skrive en kommentar. Bare indtast din e-mail adresse i felter "
|
1625 |
+
"nedenfor og du vil blive orienteret ved nye kommentarer."
|
1626 |
+
|
1627 |
+
#: utils/stcr_utils.php:208
|
1628 |
+
msgid ""
|
1629 |
+
"Thank you for using our subscription service. Your request has been "
|
1630 |
+
"completed. You will receive a notification email every time a new comment to "
|
1631 |
+
"this article is approved and posted by the administrator."
|
1632 |
+
msgstr ""
|
1633 |
+
"Tak for at bruge vores abonnements service. Din forespørgsel er udført og du "
|
1634 |
+
"vil modtage en e-mail hver gang en ny kommentar bliver godkendt af "
|
1635 |
+
"administrator."
|
1636 |
+
|
1637 |
+
#: utils/stcr_utils.php:209
|
1638 |
+
msgid ""
|
1639 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1640 |
+
"request, please check your email for the verification message and follow the "
|
1641 |
+
"instructions."
|
1642 |
+
msgstr ""
|
1643 |
+
"Tak for at bruge vores abonnements service. For at kunne udføre din "
|
1644 |
+
"forespørgsel, tjek din e-mail for en bekræftelses e-mail og følg "
|
1645 |
+
"instruktionerne i denne e-mail."
|
1646 |
+
|
1647 |
+
#: utils/stcr_utils.php:210
|
1648 |
+
msgid ""
|
1649 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1650 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1651 |
+
msgstr ""
|
1652 |
+
"For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
|
1653 |
+
"korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
|
1654 |
+
"listen."
|
1655 |
+
|
1656 |
+
#: utils/stcr_utils.php:211
|
1657 |
+
msgid ""
|
1658 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1659 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1660 |
+
"You are currently subscribed to:"
|
1661 |
+
msgstr ""
|
1662 |
+
"For at kunne annullere eller ophæve en eller flere abonnementer, vælg det "
|
1663 |
+
"korrekte korrekte indlæg og vælg hvad der skal ske via knappen nedenfor "
|
1664 |
+
"listen. Du abonnerer i øjeblikket på:"
|
1665 |
+
|
1666 |
+
#: utils/stcr_utils.php:215
|
1667 |
+
msgid "There is a new comment to [post_title]"
|
1668 |
+
msgstr "Der er en ny kommentar til [post_title]"
|
1669 |
+
|
1670 |
+
#: utils/stcr_utils.php:216
|
1671 |
+
msgid ""
|
1672 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1673 |
+
"\n"
|
1674 |
+
"<hr />\n"
|
1675 |
+
"<strong>Comment link:</strong> <a href="
|
1676 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1677 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1678 |
+
"\n"
|
1679 |
+
"<strong>Comment:</strong>\n"
|
1680 |
+
"[comment_content]\n"
|
1681 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1682 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1683 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1684 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: utils/stcr_utils.php:217
|
1688 |
+
msgid "Please confirm your subscription to [post_title]"
|
1689 |
+
msgstr "Venligst bekræft dit abonnement på kommentarer til [post_title]"
|
1690 |
+
|
1691 |
+
#: utils/stcr_utils.php:218
|
1692 |
+
#, fuzzy
|
1693 |
+
#| msgid ""
|
1694 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1695 |
+
#| "[post_permalink]\n"
|
1696 |
+
#| "\n"
|
1697 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1698 |
+
#| "[confirm_link]"
|
1699 |
+
msgid ""
|
1700 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1701 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1702 |
+
"\n"
|
1703 |
+
"Please confirm your request by clicking on this link:\n"
|
1704 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1705 |
+
msgstr ""
|
1706 |
+
"Du har bedt om at blive adviseret hver gang der kommer en ny kommentar til: "
|
1707 |
+
"[post_permalink]Venligst bekræft dette ved at følge dette link:[confirm_link]"
|
1708 |
+
|
1709 |
+
#: utils/stcr_utils.php:219
|
1710 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1711 |
+
msgstr "Rediger dit abonnement på kommentarer på [blog_name]"
|
1712 |
+
|
1713 |
+
#: utils/stcr_utils.php:220
|
1714 |
+
msgid ""
|
1715 |
+
"You have requested to manage your subscriptions to the articles on "
|
1716 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: utils/stcr_utils.php:221
|
1720 |
+
#, fuzzy
|
1721 |
+
#| msgid ""
|
1722 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1723 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1724 |
+
#| "[manager_link]"
|
1725 |
+
msgid ""
|
1726 |
+
"You have requested to manage your subscriptions to the articles on "
|
1727 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1728 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1729 |
+
msgstr ""
|
1730 |
+
"Du har bedt om at redigere dit abonnement på kommentarer på [blog_name].Følg "
|
1731 |
+
"dette link for at komme til din personlige abonnements side:[manager_link]"
|
1732 |
+
|
1733 |
+
#: utils/stcr_utils.php:300
|
1734 |
msgid "StCR Notification"
|
1735 |
msgstr "E-mail emne"
|
1736 |
|
1742 |
msgid "All"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#~ msgid "Support the developers"
|
1746 |
+
#~ msgstr "Støt forfatteren"
|
1747 |
+
|
1748 |
+
#~ msgid ""
|
1749 |
+
#~ "There is a new comment to [post_title].\n"
|
1750 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1751 |
+
#~ "Author: [comment_author]\n"
|
1752 |
+
#~ "Comment:\n"
|
1753 |
+
#~ "[comment_content]\n"
|
1754 |
+
#~ "Permalink: [post_permalink]\n"
|
1755 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1756 |
+
#~ msgstr ""
|
1757 |
+
#~ "Der er en ny kommentar til [post_title].Kommentar Link: "
|
1758 |
+
#~ "[comment_permalink]Forfatter: [comment_author]Kommentar:"
|
1759 |
+
#~ "[comment_content]Link til indlæg: [post_permalink]Rediger dit abonnement "
|
1760 |
+
#~ "på kommentarer: [manager_link]"
|
1761 |
+
|
1762 |
#~ msgid ""
|
1763 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1764 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: de\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -19,42 +19,38 @@ 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
|
23 |
"X-Loco-Target-Locale: de_DE\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: includes\n"
|
26 |
|
27 |
-
#: options/index.php:
|
28 |
-
#: utils/
|
29 |
msgid "Manage subscriptions"
|
30 |
msgstr "Verwalte deine Abonnements"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Comment Form"
|
34 |
msgstr "Kommentarformular"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
msgid "Management Page"
|
38 |
msgstr "Verwaltungsseite"
|
39 |
|
40 |
-
#: options/index.php:
|
41 |
msgid "Notifications"
|
42 |
msgstr "Benachrichtigungen"
|
43 |
|
44 |
-
#: options/index.php:
|
45 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
46 |
msgid "Options"
|
47 |
msgstr "Optionen"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
-
msgid "You can help"
|
51 |
-
msgstr "Du kannst helfen"
|
52 |
-
|
53 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
54 |
msgid "Support"
|
55 |
msgstr "Support-Forum"
|
56 |
|
57 |
-
#: options/index.php:
|
58 |
msgid "Donate"
|
59 |
msgstr "Spenden"
|
60 |
|
@@ -358,58 +354,58 @@ msgstr "Abos aktualisieren"
|
|
358 |
msgid "Sorry, no subscriptions match your search criteria."
|
359 |
msgstr "Keine passenden Abonnements gefunden."
|
360 |
|
361 |
-
#: options/panel10.php:
|
362 |
msgid "The log file has been successfully deleted."
|
363 |
msgstr "Die Log Datei wurde erfolgreich gelöscht."
|
364 |
|
365 |
-
#: options/panel10.php:
|
366 |
msgid "Can't delete the log file, check the file permissions."
|
367 |
msgstr ""
|
368 |
"Eine Löschung der Log Datei ist nicht möglich. Bitte prüfe die "
|
369 |
"Berechtigungen der Datei."
|
370 |
|
371 |
-
#: options/panel10.php:
|
372 |
msgid "The log file does not exists."
|
373 |
msgstr "Es existiert keine Log Datei"
|
374 |
|
375 |
-
#: options/panel10.php:
|
376 |
msgid "Enable Log Information"
|
377 |
msgstr "Aktiviere Log Informationen"
|
378 |
|
379 |
-
#: options/panel10.php:
|
380 |
msgid "Enable Auto clean log data"
|
381 |
msgstr "Aktiviere \"Automatische Bereinigung\" der Log Daten"
|
382 |
|
383 |
-
#: options/panel10.php:
|
384 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
385 |
msgid "Your settings have been successfully updated."
|
386 |
msgstr "Deine Einstellungen wurden erfolgreich gespeichert."
|
387 |
|
388 |
-
#: options/panel10.php:
|
389 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
390 |
msgid "There was an error updating the following fields:"
|
391 |
msgstr ""
|
392 |
"Bei der Aktualisierung der folgenden Felder ist ein Fehler aufgetreten:"
|
393 |
|
394 |
-
#: options/panel10.php:
|
395 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
396 |
-
#: options/panel5.php:
|
397 |
-
#: options/panel5.php:
|
398 |
-
#: options/panel5.php:
|
399 |
-
#: options/panel5.php:
|
400 |
msgid "Yes"
|
401 |
msgstr "Ja"
|
402 |
|
403 |
-
#: options/panel10.php:
|
404 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
405 |
-
#: options/panel5.php:
|
406 |
-
#: options/panel5.php:
|
407 |
-
#: options/panel5.php:
|
408 |
-
#: options/panel5.php:
|
409 |
msgid "No"
|
410 |
msgstr "Nein"
|
411 |
|
412 |
-
#: options/panel10.php:
|
413 |
msgid ""
|
414 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
415 |
"purposes."
|
@@ -417,42 +413,42 @@ msgstr ""
|
|
417 |
"Wenn aktiviert, werden Log Informationen zu dem Plugin erfasst. Dies ist für "
|
418 |
"die Fehleranalyse hilfreich."
|
419 |
|
420 |
-
#: options/panel10.php:
|
421 |
msgid "Hourly"
|
422 |
msgstr "Stündlich"
|
423 |
|
424 |
-
#: options/panel10.php:
|
425 |
msgid "Twice Daily"
|
426 |
msgstr "Zweimal täglich"
|
427 |
|
428 |
-
#: options/panel10.php:
|
429 |
msgid "Daily"
|
430 |
msgstr "Täglich"
|
431 |
|
432 |
-
#: options/panel10.php:
|
433 |
msgid "If enabled, StCR will auto clean your information every day."
|
434 |
msgstr ""
|
435 |
"Wenn aktiviert, wird StCR automatisch die Informationen täglich bereinigen."
|
436 |
|
437 |
-
#: options/panel10.php:
|
438 |
msgid "Clean Up Log Archive"
|
439 |
msgstr "Bereinigung der Log Archive"
|
440 |
|
441 |
-
#: options/panel10.php:
|
442 |
msgid ""
|
443 |
"If you want to clean up the log archive please click the following button"
|
444 |
msgstr "Wenn du die Log Archive bereinigen willst, klicke auf folgenden Button"
|
445 |
|
446 |
-
#: options/panel10.php:
|
447 |
msgid "Clean"
|
448 |
msgstr "Bereinigen"
|
449 |
|
450 |
-
#: options/panel10.php:
|
451 |
msgid "System Information"
|
452 |
msgstr "System Information"
|
453 |
|
454 |
-
#: options/panel10.php:
|
455 |
-
#: options/panel4.php:283 options/panel5.php:
|
456 |
msgid "Save Changes"
|
457 |
msgstr "Alle Änderungen speichern"
|
458 |
|
@@ -803,9 +799,13 @@ msgid "Reply To"
|
|
803 |
msgstr "Antworten"
|
804 |
|
805 |
#: options/panel4.php:128
|
|
|
|
|
|
|
|
|
806 |
msgid ""
|
807 |
"This will be use when the user click reply on their email agent. If not set "
|
808 |
-
"will be the same as the Sender email address."
|
809 |
msgstr ""
|
810 |
"Dies wird verwendet werden, wenn der Benutzer auf ihren E-Mail-Agent "
|
811 |
"antwortet. Wenn nicht aktiviert, wird die E-Mail-Adresse des Absenders "
|
@@ -826,9 +826,13 @@ msgstr ""
|
|
826 |
"[manager_link]"
|
827 |
|
828 |
#: options/panel4.php:171
|
|
|
|
|
|
|
|
|
829 |
msgid ""
|
830 |
-
"<p><strong>Note: To get a default template clear
|
831 |
-
"the options.</strong></p>"
|
832 |
msgstr ""
|
833 |
"<p><strong>Nachricht: Um die Standardvorlage zu nutzen, leere bitte den "
|
834 |
"gesamten Inhalt und speichere die Optionen.</strong></p>"
|
@@ -882,59 +886,76 @@ msgstr ""
|
|
882 |
"Text der E-Mail, die den Link zur Verwaltungsseite enthält. Erlaubte Tags: "
|
883 |
"[blog_name], [manager_link]"
|
884 |
|
885 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
886 |
msgid "Show StCR checkbox / dropdown"
|
887 |
msgstr "Zeige die StCR Checkbox/Dropdown Menü"
|
888 |
|
889 |
-
#: options/panel5.php:
|
890 |
msgid "Safetly Uninstall"
|
891 |
msgstr "Sicher Deinstallieren"
|
892 |
|
893 |
-
#: options/panel5.php:
|
894 |
msgid "Autopurge requests"
|
895 |
msgstr "Anfragen automatisch löschen"
|
896 |
|
897 |
-
#: options/panel5.php:
|
898 |
msgid "Enable double check"
|
899 |
msgstr "Bestätigung erforderlich (double check)"
|
900 |
|
901 |
-
#: options/panel5.php:
|
902 |
msgid "StCR Position"
|
903 |
msgstr "StCR Position"
|
904 |
|
905 |
-
#: options/panel5.php:
|
906 |
msgid "Subscribe authors"
|
907 |
msgstr "Abonnierte Autoren"
|
908 |
|
909 |
-
#: options/panel5.php:
|
910 |
msgid "Enable HTML emails"
|
911 |
msgstr "Aktiviere HTML E-Mails"
|
912 |
|
913 |
-
#: options/panel5.php:
|
914 |
msgid "HTMLify Links in HTML emails"
|
915 |
msgstr "HTMLify Links in HTML emails"
|
916 |
|
917 |
-
#: options/panel5.php:
|
918 |
msgid "Send trackbacks"
|
919 |
msgstr "Trackbacks senden"
|
920 |
|
921 |
-
#: options/panel5.php:
|
922 |
msgid "Notify admin"
|
923 |
msgstr "Administrator informieren"
|
924 |
|
925 |
-
#: options/panel5.php:
|
926 |
msgid "Let admin subscribe"
|
927 |
msgstr "Admin-Anmeldung"
|
928 |
|
929 |
-
#: options/panel5.php:
|
930 |
msgid "BCC admin on Notifications"
|
931 |
msgstr "Benachrichtigungen"
|
932 |
|
933 |
-
#: options/panel5.php:
|
934 |
msgid "Enable Font Awesome"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
938 |
msgid ""
|
939 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
940 |
"You should leave it to Yes always. "
|
@@ -942,11 +963,11 @@ msgstr ""
|
|
942 |
"Diese Option deaktiviert die StCR Checkbox in deinen Kommentaren. Du "
|
943 |
"solltest es leer lassen oder immer \"Ja\" einstellen."
|
944 |
|
945 |
-
#: options/panel5.php:
|
946 |
msgid "Safely Uninstall"
|
947 |
msgstr "Sicher Deinstallieren"
|
948 |
|
949 |
-
#: options/panel5.php:
|
950 |
msgid ""
|
951 |
"This option will allow you to delete the plugin with WordPress without "
|
952 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
@@ -955,11 +976,11 @@ msgstr ""
|
|
955 |
"Abonnenten zu verlieren. Alle Datenbanktabellen und Plugin-Optionen werden "
|
956 |
"gelöscht."
|
957 |
|
958 |
-
#: options/panel5.php:
|
959 |
msgid "days"
|
960 |
msgstr "Tage"
|
961 |
|
962 |
-
#: options/panel5.php:
|
963 |
msgid ""
|
964 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
965 |
"this feature."
|
@@ -967,7 +988,7 @@ msgstr ""
|
|
967 |
"Lösche wartende, nicht bestätigte Anfragen nach x Tagen. Verwende die 0, um "
|
968 |
"nie zu löschen."
|
969 |
|
970 |
-
#: options/panel5.php:
|
971 |
msgid ""
|
972 |
"If this option is enable the subscription box will be above the submit "
|
973 |
"button in your comment form. Use this when your theme is outdated and using "
|
@@ -978,7 +999,7 @@ msgstr ""
|
|
978 |
"Option, wenn Ihr Thema veraltet ist und die falschen WordPress \"Hooks\" "
|
979 |
"verwendet und das Kontrollkästchen nicht angezeigt wird."
|
980 |
|
981 |
-
#: options/panel5.php:
|
982 |
msgid ""
|
983 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
984 |
"misuse)."
|
@@ -986,78 +1007,78 @@ msgstr ""
|
|
986 |
"Sende eine Bestätigungsnachricht, um die Gültigkeit der E-Mail-Adresse zu "
|
987 |
"verifizieren."
|
988 |
|
989 |
-
#: options/panel5.php:
|
990 |
msgid ""
|
991 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
992 |
msgstr ""
|
993 |
"Automatisch Autoren zu ihren eigenen Artikeln abonnieren (nicht rückwirkend)."
|
994 |
|
995 |
-
#: options/panel5.php:
|
996 |
msgid ""
|
997 |
"If enabled, will send email messages with content-type = text/html instead "
|
998 |
"of text/plain"
|
999 |
msgstr "Wenn aktiviert, wird HTML-Inhalt, statt Nur-Text verwendet"
|
1000 |
|
1001 |
-
#: options/panel5.php:
|
1002 |
msgid "HTMLify links in emails"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: options/panel5.php:
|
1006 |
msgid ""
|
1007 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
1008 |
"</a></code> (only when HTML emails enabled)."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: options/panel5.php:
|
1012 |
msgid "Process trackbacks"
|
1013 |
msgstr "Trackbacks senden"
|
1014 |
|
1015 |
-
#: options/panel5.php:
|
1016 |
msgid ""
|
1017 |
"Notify users when a new trackback or pingback is added to the discussion."
|
1018 |
msgstr ""
|
1019 |
"Benachrichtigung an die Besucher, wenn ein Trackback oder Pingback eingeht."
|
1020 |
|
1021 |
-
#: options/panel5.php:
|
1022 |
msgid "Track all subscriptions"
|
1023 |
msgstr "Verfolge alle Benachrichtigungen"
|
1024 |
|
1025 |
-
#: options/panel5.php:
|
1026 |
msgid "Notify the administrator when users subscribe without commenting."
|
1027 |
msgstr ""
|
1028 |
"Benachrichtigung an den Administrator, wenn ohne Kommentar ein Abo "
|
1029 |
"eingerichtet wurde."
|
1030 |
|
1031 |
-
#: options/panel5.php:
|
1032 |
msgid "Let the administrator subscribe to comments when logged in."
|
1033 |
msgstr ""
|
1034 |
"Erlaube dem Administrator Kommentare zu Abonnieren, wenn er eingeloggt ist."
|
1035 |
|
1036 |
-
#: options/panel5.php:
|
1037 |
msgid "Send a copy of all Notifications to the administrator."
|
1038 |
msgstr "Sende eine Kopie von allen Benachrichtigungen an den Administrator"
|
1039 |
|
1040 |
-
#: options/panel5.php:
|
1041 |
msgid ""
|
1042 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1043 |
"you theme already add this into your site."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: options/panel5.php:
|
1047 |
msgid "StCR Unique Key"
|
1048 |
msgstr "Eindeutiger StCR Schlüssel"
|
1049 |
|
1050 |
-
#: options/panel5.php:
|
1051 |
msgid "This Unique Key is not set, please click the following button to "
|
1052 |
msgstr ""
|
1053 |
"Der eindeutige Schlüssel ist nicht definiert. Bitte klicke auf den folgenden "
|
1054 |
"Button"
|
1055 |
|
1056 |
-
#: options/panel5.php:
|
1057 |
msgid "Generate"
|
1058 |
msgstr "Generieren"
|
1059 |
|
1060 |
-
#: options/panel5.php:
|
1061 |
msgid ""
|
1062 |
"This Unique Key will be use to send the notification to your subscribers "
|
1063 |
"with more security."
|
@@ -1065,15 +1086,39 @@ msgstr ""
|
|
1065 |
"Dieser eindeutige Schlüssel wird verwendet, um die Benachrichtigung an Ihre "
|
1066 |
"Abonnenten mit mehr Sicherheit zu senden."
|
1067 |
|
1068 |
-
#: options/
|
1069 |
-
msgid "
|
1070 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
|
1072 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1073 |
msgid ""
|
1074 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1075 |
"consider supporting the author if this plugin made your web site better, "
|
1076 |
-
"especially if you are making money out of it
|
|
|
1077 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1078 |
"strong>, and to buy some food for my hungry family."
|
1079 |
msgstr ""
|
@@ -1085,18 +1130,27 @@ msgstr ""
|
|
1085 |
"vergrößert so meine Freizeit für die Weiterentwicklung von Subscribe to "
|
1086 |
"Comments Reloaded."
|
1087 |
|
1088 |
-
#: options/panel7.php:
|
1089 |
-
|
1090 |
-
|
|
|
|
|
1091 |
|
1092 |
-
#: options/panel7.php:
|
1093 |
-
|
1094 |
-
|
1095 |
-
"
|
1096 |
-
"
|
1097 |
-
"
|
1098 |
-
"
|
1099 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1100 |
msgstr ""
|
1101 |
"Wenn du kein Geld spenden möchtest, kannst du auch helfen, indem du über "
|
1102 |
"mein Plugin bloggst und einen Link auf die Plugin-Sete setzt. Lass deine "
|
@@ -1104,11 +1158,11 @@ msgstr ""
|
|
1104 |
"Hilf bei der Übersetzung, sende mir Bug-Reports oder Ideen, wie das Plugin "
|
1105 |
"verbessert werden kann. Was auch immer, Danke das du mein Plugin nutzt!"
|
1106 |
|
1107 |
-
#: options/panel7.php:
|
1108 |
msgid "Subscribe to the Beta testers"
|
1109 |
msgstr "Melde dich als Betatester an"
|
1110 |
|
1111 |
-
#: options/panel7.php:
|
1112 |
msgid ""
|
1113 |
"Before a new Update we release a Beta version so that our current users can "
|
1114 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1120,11 +1174,11 @@ msgstr ""
|
|
1120 |
"Wenn du dem Tester Team beitreten möchtest, kannst du deine E-Mail Adresse "
|
1121 |
"<a href='http://eepurl.com/biCk1b' target='_blank'>hier</a> eintragen"
|
1122 |
|
1123 |
-
#: options/panel7.php:
|
1124 |
msgid "Vote and show your appreciation"
|
1125 |
msgstr "Bewerte und schreibe deine Meinung!"
|
1126 |
|
1127 |
-
#: options/panel7.php:
|
1128 |
msgid ""
|
1129 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1130 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1134,11 +1188,11 @@ msgstr ""
|
|
1134 |
"du es einsetzt. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1135 |
"comments-reloaded/\">Bewerte es</a> auf seiner Seite im Plugin-Verzeichnis."
|
1136 |
|
1137 |
-
#: options/panel8.php:
|
1138 |
msgid "Did you find a Bug on the plugin?"
|
1139 |
msgstr "Hast du einen Fehler im Plugin gefunden?"
|
1140 |
|
1141 |
-
#: options/panel8.php:
|
1142 |
msgid ""
|
1143 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1144 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1243,208 +1297,47 @@ msgstr ""
|
|
1243 |
"Sie haben versucht eine Einstellungen zu einer anderen E-Mail-Adresse zu "
|
1244 |
"verwalten und das ist verboten."
|
1245 |
|
1246 |
-
#: utils/stcr_manage.php:
|
1247 |
-
msgid ""
|
1248 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1249 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1250 |
-
msgstr ""
|
1251 |
-
"E-Mail-Benachrichtigung bei weiteren Kommentaren.<br>Auch möglich: <a "
|
1252 |
-
"href='[subscribe_link]'>Abo ohne Kommentar</a>."
|
1253 |
-
|
1254 |
-
#: utils/stcr_manage.php:224
|
1255 |
-
msgid ""
|
1256 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1257 |
-
"subscriptions."
|
1258 |
-
msgstr ""
|
1259 |
-
"Du erhältst Benachrichtigungen zu diesem Thema. <a "
|
1260 |
-
"href='[manager_link]'>Verwalte Deine Abonnements</a>."
|
1261 |
-
|
1262 |
-
#: utils/stcr_manage.php:225
|
1263 |
-
msgid ""
|
1264 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1265 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1266 |
-
msgstr ""
|
1267 |
-
"Dein Benachrichtigungswunsch muss bestätigt werden. <a "
|
1268 |
-
"href='[manager_link]'>Verwalte Deine Abonnements</a>."
|
1269 |
-
|
1270 |
-
#: utils/stcr_manage.php:226
|
1271 |
-
msgid ""
|
1272 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1273 |
-
msgstr ""
|
1274 |
-
"Deine <a href='[manager_link]'>Benachrichtigungs-Einstellungen</a> zu diesem "
|
1275 |
-
"Beitrag anpassen."
|
1276 |
-
|
1277 |
-
#: utils/stcr_manage.php:232
|
1278 |
-
msgid ""
|
1279 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1280 |
-
"will send you a message containing the link to access your personal "
|
1281 |
-
"management page."
|
1282 |
-
msgstr ""
|
1283 |
-
"Um Deine Abonnements zu verwalten, gib bitte hier Deine E-Mail-Adresse ein. "
|
1284 |
-
"Du bekommst dann eine E-Mail mit einem weiterführenden Link."
|
1285 |
-
|
1286 |
-
#: utils/stcr_manage.php:233
|
1287 |
-
msgid ""
|
1288 |
-
"Thank you for using our subscription service. Your request has been "
|
1289 |
-
"completed, and you should receive an email with the management link in a few "
|
1290 |
-
"minutes."
|
1291 |
-
msgstr ""
|
1292 |
-
"Danke für das Nutzen des Benachrichtigungsdienstes. Deine Anfrage wird "
|
1293 |
-
"bearbeitet und eine E-Mail an Dich verschickt."
|
1294 |
-
|
1295 |
-
#: utils/stcr_manage.php:234
|
1296 |
-
msgid ""
|
1297 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1298 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1299 |
-
"form here below and you're all set."
|
1300 |
-
msgstr ""
|
1301 |
-
"Du kannst der Diskussion zum Thema <strong>[post_title]</strong> auch "
|
1302 |
-
"folgen, ohne bisher selbst etwas geschrieben zu haben. Hierzu einfach Deine "
|
1303 |
-
"E-Mail-Adresse in das dafür vorgesehene Feld eintragen."
|
1304 |
-
|
1305 |
-
#: utils/stcr_manage.php:235
|
1306 |
-
msgid ""
|
1307 |
-
"Thank you for using our subscription service. Your request has been "
|
1308 |
-
"completed. You will receive a notification email every time a new comment to "
|
1309 |
-
"this article is approved and posted by the administrator."
|
1310 |
-
msgstr ""
|
1311 |
-
"Danke für das Nutzen des Benachrichtigungsdienstes. Du wirst nun bei jedem "
|
1312 |
-
"neuen Kommentar per E-Mail informiert."
|
1313 |
-
|
1314 |
-
#: utils/stcr_manage.php:236
|
1315 |
-
msgid ""
|
1316 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1317 |
-
"request, please check your email for the verification message and follow the "
|
1318 |
-
"instructions."
|
1319 |
-
msgstr ""
|
1320 |
-
"Danke für das Nutzen des Benachrichtigungsdienstes. Bitte bestätige Deine "
|
1321 |
-
"Anfrage durch den Link in der E-Mail, die Dir gerade zugestellt wird."
|
1322 |
-
|
1323 |
-
#: utils/stcr_manage.php:237
|
1324 |
-
msgid ""
|
1325 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1326 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1327 |
-
msgstr ""
|
1328 |
-
"Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
|
1329 |
-
"entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste."
|
1330 |
-
|
1331 |
-
#: utils/stcr_manage.php:238
|
1332 |
-
msgid ""
|
1333 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1334 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1335 |
-
"You are currently subscribed to:"
|
1336 |
-
msgstr ""
|
1337 |
-
"Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
|
1338 |
-
"entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste. Du "
|
1339 |
-
"hast derzeit abboniert:"
|
1340 |
-
|
1341 |
-
#: utils/stcr_manage.php:242
|
1342 |
-
msgid "There is a new comment to [post_title]"
|
1343 |
-
msgstr "Neuer Kommentar zum Artikel: [post_title]"
|
1344 |
-
|
1345 |
-
#: utils/stcr_manage.php:243
|
1346 |
-
msgid ""
|
1347 |
-
"There is a new comment to [post_title].\n"
|
1348 |
-
"Comment Link: [comment_permalink]\n"
|
1349 |
-
"Author: [comment_author]\n"
|
1350 |
-
"Comment:\n"
|
1351 |
-
"[comment_content]\n"
|
1352 |
-
"Permalink: [post_permalink]\n"
|
1353 |
-
"Manage your subscriptions: [manager_link]"
|
1354 |
-
msgstr ""
|
1355 |
-
"Hallo,\n"
|
1356 |
-
"es gibt einen neuen Kommentar zum Artikel: [post_title].\n"
|
1357 |
-
"[post_permalink]\n"
|
1358 |
-
"\n"
|
1359 |
-
"[comment_author] schrieb gerade:\n"
|
1360 |
-
"[comment_content]\n"
|
1361 |
-
"\n"
|
1362 |
-
"Hier antworten: [comment_permalink]\n"
|
1363 |
-
"Verwalte Deine Benachrichtigungen: [manager_link]"
|
1364 |
-
|
1365 |
-
#: utils/stcr_manage.php:244
|
1366 |
-
msgid "Please confirm your subscription to [post_title]"
|
1367 |
-
msgstr "Bitte bestätige Deinen Benachrichtigungswunsch zum Thema [post_title]"
|
1368 |
-
|
1369 |
-
#: utils/stcr_manage.php:245
|
1370 |
-
msgid ""
|
1371 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1372 |
-
"[post_permalink]\n"
|
1373 |
-
"\n"
|
1374 |
-
"Please confirm your request by clicking on this link:\n"
|
1375 |
-
"[confirm_link]"
|
1376 |
-
msgstr ""
|
1377 |
-
"Hallo,\n"
|
1378 |
-
"Du möchtest bei jedem neuen Kommentar benachrichtigt werden, der zu diesem "
|
1379 |
-
"Beitrag geschrieben wird:\n"
|
1380 |
-
"[post_permalink]\n"
|
1381 |
-
"\n"
|
1382 |
-
"Bitte bestätigte diese Anfrage durch einen Klick auf diesen Link:\n"
|
1383 |
-
"[confirm_link]"
|
1384 |
-
|
1385 |
-
#: utils/stcr_manage.php:246
|
1386 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1387 |
-
msgstr "Benachrichtigungs-Einstellungen von [blog_name]"
|
1388 |
-
|
1389 |
-
#: utils/stcr_manage.php:247
|
1390 |
-
msgid ""
|
1391 |
-
"You have requested to manage your subscriptions to the articles on "
|
1392 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1393 |
-
msgstr ""
|
1394 |
-
"Du möchtest Deine Benachrichtigungs-Einstellungen von [blog_name] ändern. "
|
1395 |
-
"Bitte prüfe den Abonnementen Verwaltungslink in deiner E-Mail "
|
1396 |
-
|
1397 |
-
#: utils/stcr_manage.php:248
|
1398 |
-
msgid ""
|
1399 |
-
"You have requested to manage your subscriptions to the articles on "
|
1400 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1401 |
-
"[manager_link]"
|
1402 |
-
msgstr ""
|
1403 |
-
"Du möchtest Deine Benachrichtigungs-Einstellungen von [blog_name] ändern. "
|
1404 |
-
"Nutze dazu bitte diesen Link:\n"
|
1405 |
-
"[manager_link]"
|
1406 |
-
|
1407 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1408 |
msgid "StCR System"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: utils/stcr_manage.php:
|
1412 |
-
#: utils/stcr_manage.php:
|
1413 |
-
#: utils/stcr_manage.php:
|
1414 |
-
#: utils/stcr_manage.php:
|
1415 |
-
#: utils/stcr_manage.php:
|
1416 |
msgid "You do not have sufficient permissions to access this page."
|
1417 |
msgstr ""
|
1418 |
"Sie haben nicht ausreichende Berechtigungen um auf diese Seite zuzugreifen."
|
1419 |
|
1420 |
-
#: utils/stcr_manage.php:
|
1421 |
msgid "Subscriptions"
|
1422 |
msgstr "Abonnements"
|
1423 |
|
1424 |
-
#: utils/stcr_manage.php:
|
1425 |
msgid ""
|
1426 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1427 |
msgstr ""
|
1428 |
"Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
|
1429 |
"offizielle"
|
1430 |
|
1431 |
-
#: utils/stcr_manage.php:
|
1432 |
msgid "support forum"
|
1433 |
msgstr "Support-Forum"
|
1434 |
|
1435 |
-
#: utils/stcr_manage.php:
|
1436 |
msgid "Feeling generous?"
|
1437 |
msgstr "Bist du spendabel?"
|
1438 |
|
1439 |
-
#: utils/stcr_manage.php:
|
1440 |
msgid "Donate a few bucks!"
|
1441 |
msgstr "Gib mir ein Trinkgeld!"
|
1442 |
|
1443 |
-
#: utils/stcr_upgrade.php:
|
1444 |
msgid "Important Notice"
|
1445 |
msgstr "Wichtige Mitteilung"
|
1446 |
|
1447 |
-
#: utils/stcr_upgrade.php:
|
1448 |
msgid ""
|
1449 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1450 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1452,28 +1345,28 @@ msgid ""
|
|
1452 |
"src=\""
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: utils/stcr_upgrade.php:
|
1456 |
msgid ""
|
1457 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1458 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1459 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: utils/stcr_upgrade.php:
|
1463 |
msgid ""
|
1464 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1465 |
"Comments to prevent confusion between the two plugins."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: utils/stcr_upgrade.php:
|
1469 |
msgid ""
|
1470 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1471 |
"that you want to import, you'll need to import that data manually, as only "
|
1472 |
"one import routine will ever run to prevent data loss."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: utils/stcr_upgrade.php:
|
1476 |
-
#: utils/stcr_upgrade.php:
|
1477 |
msgid ""
|
1478 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1479 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1481,20 +1374,20 @@ msgid ""
|
|
1481 |
"\"stcr-loading-animation\" src=\""
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: utils/stcr_upgrade.php:
|
1485 |
msgid ""
|
1486 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1487 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1488 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: utils/stcr_upgrade.php:
|
1492 |
msgid ""
|
1493 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1494 |
"Notification to prevent confusion between the two plugins."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: utils/stcr_upgrade.php:
|
1498 |
msgid ""
|
1499 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1500 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1502,13 +1395,13 @@ msgid ""
|
|
1502 |
"Reloaded</strong>."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: utils/stcr_upgrade.php:
|
1506 |
msgid ""
|
1507 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1508 |
"Subscriptions to prevent confusion between the two plugins."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: utils/stcr_upgrade.php:
|
1512 |
msgid ""
|
1513 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1514 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1516,7 +1409,7 @@ msgid ""
|
|
1516 |
"ever run to prevent data loss."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: utils/stcr_upgrade.php:
|
1520 |
msgid ""
|
1521 |
"<strong>Note:</strong> If you were previously using the "
|
1522 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1525,15 +1418,15 @@ msgid ""
|
|
1525 |
"respectively."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: utils/stcr_upgrade.php:
|
1529 |
msgid ""
|
1530 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1531 |
msgstr ""
|
1532 |
"Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
|
1533 |
"offizielle"
|
1534 |
|
1535 |
-
#: utils/stcr_upgrade.php:
|
1536 |
-
#: utils/stcr_upgrade.php:
|
1537 |
msgid ""
|
1538 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1539 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
@@ -1542,17 +1435,17 @@ msgstr ""
|
|
1542 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">sende Ihn uns "
|
1543 |
"bitte zu</a>."
|
1544 |
|
1545 |
-
#: utils/stcr_upgrade.php:
|
1546 |
msgid ""
|
1547 |
-
"Please consider to make a donation to support the plugin
|
1548 |
-
"<a href=\"\n"
|
1549 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1550 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1551 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1552 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: utils/stcr_upgrade.php:
|
1556 |
msgid ""
|
1557 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1558 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1560,7 +1453,7 @@ msgid ""
|
|
1560 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: utils/stcr_upgrade.php:
|
1564 |
msgid ""
|
1565 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1566 |
"160106."
|
@@ -1568,17 +1461,17 @@ msgstr ""
|
|
1568 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160106 "
|
1569 |
"aktualisiert."
|
1570 |
|
1571 |
-
#: utils/stcr_upgrade.php:
|
1572 |
msgid ""
|
1573 |
"This version includes many changes and fixes to improve your experience with "
|
1574 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1575 |
"email templates, Subscription Checkbox position, and more!"
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: utils/stcr_upgrade.php:
|
1579 |
-
#: utils/stcr_upgrade.php:
|
1580 |
-
#: utils/stcr_upgrade.php:
|
1581 |
-
#: utils/stcr_upgrade.php:
|
1582 |
msgid ""
|
1583 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1584 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1586,7 +1479,7 @@ msgid ""
|
|
1586 |
"class=\"stcr-loading-animation\" src=\""
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: utils/stcr_upgrade.php:
|
1590 |
msgid ""
|
1591 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1592 |
"160115."
|
@@ -1594,14 +1487,14 @@ msgstr ""
|
|
1594 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160115 "
|
1595 |
"aktualisiert."
|
1596 |
|
1597 |
-
#: utils/stcr_upgrade.php:
|
1598 |
msgid ""
|
1599 |
"This version includes fixes to broken links while managing your subscriptions"
|
1600 |
msgstr ""
|
1601 |
"Diese Version beinhaltet Fixes, welche kaputte Links für das \"Verwalten der "
|
1602 |
"Abonnements\" korrigiert."
|
1603 |
|
1604 |
-
#: utils/stcr_upgrade.php:
|
1605 |
msgid ""
|
1606 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1607 |
"160831"
|
@@ -1609,61 +1502,61 @@ msgstr ""
|
|
1609 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160831 "
|
1610 |
"aktualisiert."
|
1611 |
|
1612 |
-
#: utils/stcr_upgrade.php:
|
1613 |
msgid "This version includes fixes to many bugs and also new features, "
|
1614 |
msgstr "Diese Version behebt viele Bugs und beinhaltet auch neue Funktionen."
|
1615 |
|
1616 |
-
#: utils/stcr_upgrade.php:
|
1617 |
msgid ""
|
1618 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1619 |
"address. This will help the subscribers to use the Reply option in their "
|
1620 |
"email agents."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
1624 |
msgid ""
|
1625 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1626 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: utils/stcr_upgrade.php:
|
1630 |
msgid ""
|
1631 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1632 |
"without loosing your subscriptions. You can use this option also for reset "
|
1633 |
"all the settings, see the FAQ."
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: utils/stcr_upgrade.php:
|
1637 |
msgid ""
|
1638 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1639 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1640 |
"Post Type."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: utils/stcr_upgrade.php:
|
1644 |
msgid ""
|
1645 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1646 |
"options to and the management link only by email and not to display it on "
|
1647 |
"the request link page."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: utils/stcr_upgrade.php:
|
1651 |
msgid ""
|
1652 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1653 |
"160902"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: utils/stcr_upgrade.php:
|
1657 |
msgid ""
|
1658 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1659 |
"previous 160831 version."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: utils/stcr_upgrade.php:
|
1663 |
msgid "Settings"
|
1664 |
msgstr "Einstellungen"
|
1665 |
|
1666 |
-
#: utils/stcr_upgrade.php:
|
1667 |
msgid ""
|
1668 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1669 |
"160915"
|
@@ -1671,12 +1564,12 @@ msgstr ""
|
|
1671 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160915 "
|
1672 |
"aktualisiert."
|
1673 |
|
1674 |
-
#: utils/stcr_upgrade.php:
|
1675 |
-
#: utils/stcr_upgrade.php:
|
1676 |
msgid "This version includes fixes and improvements, "
|
1677 |
msgstr "Diese Version enthält Fixes und Verbesserungen."
|
1678 |
|
1679 |
-
#: utils/stcr_upgrade.php:
|
1680 |
msgid ""
|
1681 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1682 |
"dropdown."
|
@@ -1684,17 +1577,19 @@ msgstr ""
|
|
1684 |
"<strong>Ändere</strong> die Radio Buttons auf der Verwaltungsseite für ein "
|
1685 |
"Dropdown Menü."
|
1686 |
|
1687 |
-
#: utils/stcr_upgrade.php:
|
1688 |
msgid ""
|
1689 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: utils/stcr_upgrade.php:
|
|
|
1693 |
#, fuzzy
|
1694 |
msgid "Log Settings"
|
1695 |
msgstr "Einstellungen"
|
1696 |
|
1697 |
-
#: utils/stcr_upgrade.php:
|
|
|
1698 |
#, fuzzy
|
1699 |
msgid ""
|
1700 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
@@ -1702,21 +1597,22 @@ msgstr ""
|
|
1702 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160831 "
|
1703 |
"aktualisiert."
|
1704 |
|
1705 |
-
#: utils/stcr_upgrade.php:
|
1706 |
msgid ""
|
1707 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1708 |
"enable."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: utils/stcr_upgrade.php:
|
1712 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: utils/stcr_upgrade.php:
|
|
|
1716 |
msgid "The support of this plugin is given thanks to your donations."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: utils/stcr_upgrade.php:
|
1720 |
msgid ""
|
1721 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1722 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1726,19 +1622,19 @@ msgid ""
|
|
1726 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: utils/stcr_upgrade.php:
|
1730 |
msgid ""
|
1731 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1732 |
"installation regarding a database table creation."
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: utils/stcr_upgrade.php:
|
1736 |
msgid ""
|
1737 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1738 |
"Awesome."
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: utils/stcr_upgrade.php:
|
1742 |
msgid ""
|
1743 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1744 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1749,7 +1645,202 @@ msgid ""
|
|
1749 |
"for the users that have supported the plugin development."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1753 |
msgid "StCR Notification"
|
1754 |
msgstr "Benachrichtigungen"
|
1755 |
|
@@ -1761,6 +1852,31 @@ msgstr "Nicht abbonieren"
|
|
1761 |
msgid "All"
|
1762 |
msgstr "Alle"
|
1763 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1764 |
#~ msgid "Legend: Y = all comments, R = replies only, C = inactive"
|
1765 |
#~ msgstr "Legende: Y = Alle Kommentare, R = Nur Antworten, C = Inaktiv"
|
1766 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:07-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:10-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 |
"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 2.0.6\n"
|
23 |
"X-Loco-Target-Locale: de_DE\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: includes\n"
|
26 |
|
27 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
28 |
+
#: utils/stcr_utils.php:203
|
29 |
msgid "Manage subscriptions"
|
30 |
msgstr "Verwalte deine Abonnements"
|
31 |
|
32 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
33 |
msgid "Comment Form"
|
34 |
msgstr "Kommentarformular"
|
35 |
|
36 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
37 |
msgid "Management Page"
|
38 |
msgstr "Verwaltungsseite"
|
39 |
|
40 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
41 |
msgid "Notifications"
|
42 |
msgstr "Benachrichtigungen"
|
43 |
|
44 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
45 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
46 |
msgid "Options"
|
47 |
msgstr "Optionen"
|
48 |
|
49 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
50 |
msgid "Support"
|
51 |
msgstr "Support-Forum"
|
52 |
|
53 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
54 |
msgid "Donate"
|
55 |
msgstr "Spenden"
|
56 |
|
354 |
msgid "Sorry, no subscriptions match your search criteria."
|
355 |
msgstr "Keine passenden Abonnements gefunden."
|
356 |
|
357 |
+
#: options/panel10.php:41
|
358 |
msgid "The log file has been successfully deleted."
|
359 |
msgstr "Die Log Datei wurde erfolgreich gelöscht."
|
360 |
|
361 |
+
#: options/panel10.php:46
|
362 |
msgid "Can't delete the log file, check the file permissions."
|
363 |
msgstr ""
|
364 |
"Eine Löschung der Log Datei ist nicht möglich. Bitte prüfe die "
|
365 |
"Berechtigungen der Datei."
|
366 |
|
367 |
+
#: options/panel10.php:52
|
368 |
msgid "The log file does not exists."
|
369 |
msgstr "Es existiert keine Log Datei"
|
370 |
|
371 |
+
#: options/panel10.php:66 options/panel10.php:110
|
372 |
msgid "Enable Log Information"
|
373 |
msgstr "Aktiviere Log Informationen"
|
374 |
|
375 |
+
#: options/panel10.php:72 options/panel10.php:119
|
376 |
msgid "Enable Auto clean log data"
|
377 |
msgstr "Aktiviere \"Automatische Bereinigung\" der Log Daten"
|
378 |
|
379 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
380 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
381 |
msgid "Your settings have been successfully updated."
|
382 |
msgstr "Deine Einstellungen wurden erfolgreich gespeichert."
|
383 |
|
384 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
385 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
386 |
msgid "There was an error updating the following fields:"
|
387 |
msgstr ""
|
388 |
"Bei der Aktualisierung der folgenden Felder ist ein Fehler aufgetreten:"
|
389 |
|
390 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
391 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
392 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
393 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
394 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
395 |
+
#: options/panel5.php:210 options/panel5.php:219
|
396 |
msgid "Yes"
|
397 |
msgstr "Ja"
|
398 |
|
399 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
400 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
401 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
402 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
403 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
404 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
405 |
msgid "No"
|
406 |
msgstr "Nein"
|
407 |
|
408 |
+
#: options/panel10.php:114
|
409 |
msgid ""
|
410 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
411 |
"purposes."
|
413 |
"Wenn aktiviert, werden Log Informationen zu dem Plugin erfasst. Dies ist für "
|
414 |
"die Fehleranalyse hilfreich."
|
415 |
|
416 |
+
#: options/panel10.php:125
|
417 |
msgid "Hourly"
|
418 |
msgstr "Stündlich"
|
419 |
|
420 |
+
#: options/panel10.php:126
|
421 |
msgid "Twice Daily"
|
422 |
msgstr "Zweimal täglich"
|
423 |
|
424 |
+
#: options/panel10.php:127
|
425 |
msgid "Daily"
|
426 |
msgstr "Täglich"
|
427 |
|
428 |
+
#: options/panel10.php:129
|
429 |
msgid "If enabled, StCR will auto clean your information every day."
|
430 |
msgstr ""
|
431 |
"Wenn aktiviert, wird StCR automatisch die Informationen täglich bereinigen."
|
432 |
|
433 |
+
#: options/panel10.php:134
|
434 |
msgid "Clean Up Log Archive"
|
435 |
msgstr "Bereinigung der Log Archive"
|
436 |
|
437 |
+
#: options/panel10.php:138
|
438 |
msgid ""
|
439 |
"If you want to clean up the log archive please click the following button"
|
440 |
msgstr "Wenn du die Log Archive bereinigen willst, klicke auf folgenden Button"
|
441 |
|
442 |
+
#: options/panel10.php:140
|
443 |
msgid "Clean"
|
444 |
msgstr "Bereinigen"
|
445 |
|
446 |
+
#: options/panel10.php:147 options/panel10.php:150
|
447 |
msgid "System Information"
|
448 |
msgstr "System Information"
|
449 |
|
450 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
451 |
+
#: options/panel4.php:283 options/panel5.php:265
|
452 |
msgid "Save Changes"
|
453 |
msgstr "Alle Änderungen speichern"
|
454 |
|
799 |
msgstr "Antworten"
|
800 |
|
801 |
#: options/panel4.php:128
|
802 |
+
#, fuzzy
|
803 |
+
#| msgid ""
|
804 |
+
#| "This will be use when the user click reply on their email agent. If not "
|
805 |
+
#| "set will be the same as the Sender email address."
|
806 |
msgid ""
|
807 |
"This will be use when the user click reply on their email agent. If not set "
|
808 |
+
"it will be the same as the Sender email address."
|
809 |
msgstr ""
|
810 |
"Dies wird verwendet werden, wenn der Benutzer auf ihren E-Mail-Agent "
|
811 |
"antwortet. Wenn nicht aktiviert, wird die E-Mail-Adresse des Absenders "
|
826 |
"[manager_link]"
|
827 |
|
828 |
#: options/panel4.php:171
|
829 |
+
#, fuzzy
|
830 |
+
#| msgid ""
|
831 |
+
#| "<p><strong>Note: To get a default template clear all the content and save "
|
832 |
+
#| "the options.</strong></p>"
|
833 |
msgid ""
|
834 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
835 |
+
"all the content and save the options.</strong></p>"
|
836 |
msgstr ""
|
837 |
"<p><strong>Nachricht: Um die Standardvorlage zu nutzen, leere bitte den "
|
838 |
"gesamten Inhalt und speichere die Optionen.</strong></p>"
|
886 |
"Text der E-Mail, die den Link zur Verwaltungsseite enthält. Erlaubte Tags: "
|
887 |
"[blog_name], [manager_link]"
|
888 |
|
889 |
+
#: options/panel5.php:38
|
890 |
+
#, fuzzy
|
891 |
+
#| msgid "Your settings have been successfully updated."
|
892 |
+
msgid "Your settings have been successfully reset."
|
893 |
+
msgstr "Deine Einstellungen wurden erfolgreich gespeichert."
|
894 |
+
|
895 |
+
#: options/panel5.php:40
|
896 |
+
#, fuzzy
|
897 |
+
#| msgid "There was an error updating the following fields:"
|
898 |
+
msgid "There was an error deleting the options:"
|
899 |
+
msgstr ""
|
900 |
+
"Bei der Aktualisierung der folgenden Felder ist ein Fehler aufgetreten:"
|
901 |
+
|
902 |
+
#: options/panel5.php:48 options/panel5.php:108
|
903 |
msgid "Show StCR checkbox / dropdown"
|
904 |
msgstr "Zeige die StCR Checkbox/Dropdown Menü"
|
905 |
|
906 |
+
#: options/panel5.php:51
|
907 |
msgid "Safetly Uninstall"
|
908 |
msgstr "Sicher Deinstallieren"
|
909 |
|
910 |
+
#: options/panel5.php:54 options/panel5.php:125
|
911 |
msgid "Autopurge requests"
|
912 |
msgstr "Anfragen automatisch löschen"
|
913 |
|
914 |
+
#: options/panel5.php:57 options/panel5.php:143
|
915 |
msgid "Enable double check"
|
916 |
msgstr "Bestätigung erforderlich (double check)"
|
917 |
|
918 |
+
#: options/panel5.php:60 options/panel5.php:134
|
919 |
msgid "StCR Position"
|
920 |
msgstr "StCR Position"
|
921 |
|
922 |
+
#: options/panel5.php:63 options/panel5.php:151
|
923 |
msgid "Subscribe authors"
|
924 |
msgstr "Abonnierte Autoren"
|
925 |
|
926 |
+
#: options/panel5.php:66 options/panel5.php:161
|
927 |
msgid "Enable HTML emails"
|
928 |
msgstr "Aktiviere HTML E-Mails"
|
929 |
|
930 |
+
#: options/panel5.php:69
|
931 |
msgid "HTMLify Links in HTML emails"
|
932 |
msgstr "HTMLify Links in HTML emails"
|
933 |
|
934 |
+
#: options/panel5.php:72
|
935 |
msgid "Send trackbacks"
|
936 |
msgstr "Trackbacks senden"
|
937 |
|
938 |
+
#: options/panel5.php:75
|
939 |
msgid "Notify admin"
|
940 |
msgstr "Administrator informieren"
|
941 |
|
942 |
+
#: options/panel5.php:78 options/panel5.php:199
|
943 |
msgid "Let admin subscribe"
|
944 |
msgstr "Admin-Anmeldung"
|
945 |
|
946 |
+
#: options/panel5.php:81 options/panel5.php:208
|
947 |
msgid "BCC admin on Notifications"
|
948 |
msgstr "Benachrichtigungen"
|
949 |
|
950 |
+
#: options/panel5.php:84 options/panel5.php:217
|
951 |
msgid "Enable Font Awesome"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
955 |
+
msgid "Reset All Options"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: options/panel5.php:112
|
959 |
msgid ""
|
960 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
961 |
"You should leave it to Yes always. "
|
963 |
"Diese Option deaktiviert die StCR Checkbox in deinen Kommentaren. Du "
|
964 |
"solltest es leer lassen oder immer \"Ja\" einstellen."
|
965 |
|
966 |
+
#: options/panel5.php:117
|
967 |
msgid "Safely Uninstall"
|
968 |
msgstr "Sicher Deinstallieren"
|
969 |
|
970 |
+
#: options/panel5.php:121
|
971 |
msgid ""
|
972 |
"This option will allow you to delete the plugin with WordPress without "
|
973 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
976 |
"Abonnenten zu verlieren. Alle Datenbanktabellen und Plugin-Optionen werden "
|
977 |
"gelöscht."
|
978 |
|
979 |
+
#: options/panel5.php:128
|
980 |
msgid "days"
|
981 |
msgstr "Tage"
|
982 |
|
983 |
+
#: options/panel5.php:129
|
984 |
msgid ""
|
985 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
986 |
"this feature."
|
988 |
"Lösche wartende, nicht bestätigte Anfragen nach x Tagen. Verwende die 0, um "
|
989 |
"nie zu löschen."
|
990 |
|
991 |
+
#: options/panel5.php:138
|
992 |
msgid ""
|
993 |
"If this option is enable the subscription box will be above the submit "
|
994 |
"button in your comment form. Use this when your theme is outdated and using "
|
999 |
"Option, wenn Ihr Thema veraltet ist und die falschen WordPress \"Hooks\" "
|
1000 |
"verwendet und das Kontrollkästchen nicht angezeigt wird."
|
1001 |
|
1002 |
+
#: options/panel5.php:147
|
1003 |
msgid ""
|
1004 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
1005 |
"misuse)."
|
1007 |
"Sende eine Bestätigungsnachricht, um die Gültigkeit der E-Mail-Adresse zu "
|
1008 |
"verifizieren."
|
1009 |
|
1010 |
+
#: options/panel5.php:156
|
1011 |
msgid ""
|
1012 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
1013 |
msgstr ""
|
1014 |
"Automatisch Autoren zu ihren eigenen Artikeln abonnieren (nicht rückwirkend)."
|
1015 |
|
1016 |
+
#: options/panel5.php:165
|
1017 |
msgid ""
|
1018 |
"If enabled, will send email messages with content-type = text/html instead "
|
1019 |
"of text/plain"
|
1020 |
msgstr "Wenn aktiviert, wird HTML-Inhalt, statt Nur-Text verwendet"
|
1021 |
|
1022 |
+
#: options/panel5.php:170
|
1023 |
msgid "HTMLify links in emails"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: options/panel5.php:175
|
1027 |
msgid ""
|
1028 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
1029 |
"</a></code> (only when HTML emails enabled)."
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: options/panel5.php:180
|
1033 |
msgid "Process trackbacks"
|
1034 |
msgstr "Trackbacks senden"
|
1035 |
|
1036 |
+
#: options/panel5.php:184
|
1037 |
msgid ""
|
1038 |
"Notify users when a new trackback or pingback is added to the discussion."
|
1039 |
msgstr ""
|
1040 |
"Benachrichtigung an die Besucher, wenn ein Trackback oder Pingback eingeht."
|
1041 |
|
1042 |
+
#: options/panel5.php:189
|
1043 |
msgid "Track all subscriptions"
|
1044 |
msgstr "Verfolge alle Benachrichtigungen"
|
1045 |
|
1046 |
+
#: options/panel5.php:194
|
1047 |
msgid "Notify the administrator when users subscribe without commenting."
|
1048 |
msgstr ""
|
1049 |
"Benachrichtigung an den Administrator, wenn ohne Kommentar ein Abo "
|
1050 |
"eingerichtet wurde."
|
1051 |
|
1052 |
+
#: options/panel5.php:203
|
1053 |
msgid "Let the administrator subscribe to comments when logged in."
|
1054 |
msgstr ""
|
1055 |
"Erlaube dem Administrator Kommentare zu Abonnieren, wenn er eingeloggt ist."
|
1056 |
|
1057 |
+
#: options/panel5.php:212
|
1058 |
msgid "Send a copy of all Notifications to the administrator."
|
1059 |
msgstr "Sende eine Kopie von allen Benachrichtigungen an den Administrator"
|
1060 |
|
1061 |
+
#: options/panel5.php:221
|
1062 |
msgid ""
|
1063 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1064 |
"you theme already add this into your site."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: options/panel5.php:226
|
1068 |
msgid "StCR Unique Key"
|
1069 |
msgstr "Eindeutiger StCR Schlüssel"
|
1070 |
|
1071 |
+
#: options/panel5.php:231
|
1072 |
msgid "This Unique Key is not set, please click the following button to "
|
1073 |
msgstr ""
|
1074 |
"Der eindeutige Schlüssel ist nicht definiert. Bitte klicke auf den folgenden "
|
1075 |
"Button"
|
1076 |
|
1077 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1078 |
msgid "Generate"
|
1079 |
msgstr "Generieren"
|
1080 |
|
1081 |
+
#: options/panel5.php:243
|
1082 |
msgid ""
|
1083 |
"This Unique Key will be use to send the notification to your subscribers "
|
1084 |
"with more security."
|
1086 |
"Dieser eindeutige Schlüssel wird verwendet, um die Benachrichtigung an Ihre "
|
1087 |
"Abonnenten mit mehr Sicherheit zu senden."
|
1088 |
|
1089 |
+
#: options/panel5.php:256
|
1090 |
+
msgid ""
|
1091 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1092 |
+
"with caution."
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: options/panel5.php:258
|
1096 |
+
msgid "Yes, Delete Options including subscriptions."
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: options/panel5.php:259
|
1100 |
+
msgid "No, Only delete the StCR Options."
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1104 |
+
msgid ""
|
1105 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1106 |
+
"hidden=\"true\"></i>"
|
1107 |
+
msgstr ""
|
1108 |
|
1109 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1110 |
+
#, fuzzy
|
1111 |
+
#| msgid ""
|
1112 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1113 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1114 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1115 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1116 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1117 |
msgid ""
|
1118 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1119 |
"consider supporting the author if this plugin made your web site better, "
|
1120 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1121 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1122 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1123 |
"strong>, and to buy some food for my hungry family."
|
1124 |
msgstr ""
|
1130 |
"vergrößert so meine Freizeit für die Weiterentwicklung von Subscribe to "
|
1131 |
"Comments Reloaded."
|
1132 |
|
1133 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1134 |
+
#, fuzzy
|
1135 |
+
#| msgid "You can help"
|
1136 |
+
msgid "You can still help"
|
1137 |
+
msgstr "Du kannst helfen"
|
1138 |
|
1139 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1140 |
+
#, fuzzy
|
1141 |
+
#| msgid ""
|
1142 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1143 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1144 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1145 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1146 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1147 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1148 |
+
msgid ""
|
1149 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1150 |
+
"Please let your readers know what makes your blog better. You can also "
|
1151 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1152 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1153 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1154 |
msgstr ""
|
1155 |
"Wenn du kein Geld spenden möchtest, kannst du auch helfen, indem du über "
|
1156 |
"mein Plugin bloggst und einen Link auf die Plugin-Sete setzt. Lass deine "
|
1158 |
"Hilf bei der Übersetzung, sende mir Bug-Reports oder Ideen, wie das Plugin "
|
1159 |
"verbessert werden kann. Was auch immer, Danke das du mein Plugin nutzt!"
|
1160 |
|
1161 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1162 |
msgid "Subscribe to the Beta testers"
|
1163 |
msgstr "Melde dich als Betatester an"
|
1164 |
|
1165 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1166 |
msgid ""
|
1167 |
"Before a new Update we release a Beta version so that our current users can "
|
1168 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1174 |
"Wenn du dem Tester Team beitreten möchtest, kannst du deine E-Mail Adresse "
|
1175 |
"<a href='http://eepurl.com/biCk1b' target='_blank'>hier</a> eintragen"
|
1176 |
|
1177 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1178 |
msgid "Vote and show your appreciation"
|
1179 |
msgstr "Bewerte und schreibe deine Meinung!"
|
1180 |
|
1181 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1182 |
msgid ""
|
1183 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1184 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1188 |
"du es einsetzt. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1189 |
"comments-reloaded/\">Bewerte es</a> auf seiner Seite im Plugin-Verzeichnis."
|
1190 |
|
1191 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1192 |
msgid "Did you find a Bug on the plugin?"
|
1193 |
msgstr "Hast du einen Fehler im Plugin gefunden?"
|
1194 |
|
1195 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1196 |
msgid ""
|
1197 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1198 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1297 |
"Sie haben versucht eine Einstellungen zu einer anderen E-Mail-Adresse zu "
|
1298 |
"verwalten und das ist verboten."
|
1299 |
|
1300 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1301 |
msgid "StCR System"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1305 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1306 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1307 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1308 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1309 |
msgid "You do not have sufficient permissions to access this page."
|
1310 |
msgstr ""
|
1311 |
"Sie haben nicht ausreichende Berechtigungen um auf diese Seite zuzugreifen."
|
1312 |
|
1313 |
+
#: utils/stcr_manage.php:726
|
1314 |
msgid "Subscriptions"
|
1315 |
msgstr "Abonnements"
|
1316 |
|
1317 |
+
#: utils/stcr_manage.php:782
|
1318 |
msgid ""
|
1319 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1320 |
msgstr ""
|
1321 |
"Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
|
1322 |
"offizielle"
|
1323 |
|
1324 |
+
#: utils/stcr_manage.php:782
|
1325 |
msgid "support forum"
|
1326 |
msgstr "Support-Forum"
|
1327 |
|
1328 |
+
#: utils/stcr_manage.php:783
|
1329 |
msgid "Feeling generous?"
|
1330 |
msgstr "Bist du spendabel?"
|
1331 |
|
1332 |
+
#: utils/stcr_manage.php:783
|
1333 |
msgid "Donate a few bucks!"
|
1334 |
msgstr "Gib mir ein Trinkgeld!"
|
1335 |
|
1336 |
+
#: utils/stcr_upgrade.php:72
|
1337 |
msgid "Important Notice"
|
1338 |
msgstr "Wichtige Mitteilung"
|
1339 |
|
1340 |
+
#: utils/stcr_upgrade.php:120
|
1341 |
msgid ""
|
1342 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1343 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1345 |
"src=\""
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: utils/stcr_upgrade.php:175
|
1349 |
msgid ""
|
1350 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1351 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1352 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: utils/stcr_upgrade.php:175
|
1356 |
msgid ""
|
1357 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1358 |
"Comments to prevent confusion between the two plugins."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: utils/stcr_upgrade.php:176
|
1362 |
msgid ""
|
1363 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1364 |
"that you want to import, you'll need to import that data manually, as only "
|
1365 |
"one import routine will ever run to prevent data loss."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1369 |
+
#: utils/stcr_upgrade.php:400
|
1370 |
msgid ""
|
1371 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1372 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1374 |
"\"stcr-loading-animation\" src=\""
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: utils/stcr_upgrade.php:250
|
1378 |
msgid ""
|
1379 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1380 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1381 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: utils/stcr_upgrade.php:250
|
1385 |
msgid ""
|
1386 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1387 |
"Notification to prevent confusion between the two plugins."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: utils/stcr_upgrade.php:397
|
1391 |
msgid ""
|
1392 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1393 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1395 |
"Reloaded</strong>."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: utils/stcr_upgrade.php:397
|
1399 |
msgid ""
|
1400 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1401 |
"Subscriptions to prevent confusion between the two plugins."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: utils/stcr_upgrade.php:398
|
1405 |
msgid ""
|
1406 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1407 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1409 |
"ever run to prevent data loss."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: utils/stcr_upgrade.php:399
|
1413 |
msgid ""
|
1414 |
"<strong>Note:</strong> If you were previously using the "
|
1415 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1418 |
"respectively."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: utils/stcr_upgrade.php:413
|
1422 |
msgid ""
|
1423 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1424 |
msgstr ""
|
1425 |
"Benötigst Du Hilfe zum Plugin Subscribe to Comments Reloaded? Besuche das "
|
1426 |
"offizielle"
|
1427 |
|
1428 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1429 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1430 |
msgid ""
|
1431 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1432 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1435 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">sende Ihn uns "
|
1436 |
"bitte zu</a>."
|
1437 |
|
1438 |
+
#: utils/stcr_upgrade.php:415
|
1439 |
msgid ""
|
1440 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1441 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1442 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1443 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1444 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1445 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: utils/stcr_upgrade.php:417
|
1449 |
msgid ""
|
1450 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1451 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1453 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: utils/stcr_upgrade.php:428
|
1457 |
msgid ""
|
1458 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1459 |
"160106."
|
1461 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160106 "
|
1462 |
"aktualisiert."
|
1463 |
|
1464 |
+
#: utils/stcr_upgrade.php:429
|
1465 |
msgid ""
|
1466 |
"This version includes many changes and fixes to improve your experience with "
|
1467 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1468 |
"email templates, Subscription Checkbox position, and more!"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1472 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1473 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1474 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1475 |
msgid ""
|
1476 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1477 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1479 |
"class=\"stcr-loading-animation\" src=\""
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: utils/stcr_upgrade.php:443
|
1483 |
msgid ""
|
1484 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1485 |
"160115."
|
1487 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160115 "
|
1488 |
"aktualisiert."
|
1489 |
|
1490 |
+
#: utils/stcr_upgrade.php:444
|
1491 |
msgid ""
|
1492 |
"This version includes fixes to broken links while managing your subscriptions"
|
1493 |
msgstr ""
|
1494 |
"Diese Version beinhaltet Fixes, welche kaputte Links für das \"Verwalten der "
|
1495 |
"Abonnements\" korrigiert."
|
1496 |
|
1497 |
+
#: utils/stcr_upgrade.php:458
|
1498 |
msgid ""
|
1499 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1500 |
"160831"
|
1502 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160831 "
|
1503 |
"aktualisiert."
|
1504 |
|
1505 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1506 |
msgid "This version includes fixes to many bugs and also new features, "
|
1507 |
msgstr "Diese Version behebt viele Bugs und beinhaltet auch neue Funktionen."
|
1508 |
|
1509 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1510 |
msgid ""
|
1511 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1512 |
"address. This will help the subscribers to use the Reply option in their "
|
1513 |
"email agents."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1517 |
msgid ""
|
1518 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1519 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1523 |
msgid ""
|
1524 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1525 |
"without loosing your subscriptions. You can use this option also for reset "
|
1526 |
"all the settings, see the FAQ."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1530 |
msgid ""
|
1531 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1532 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1533 |
"Post Type."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1537 |
msgid ""
|
1538 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1539 |
"options to and the management link only by email and not to display it on "
|
1540 |
"the request link page."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: utils/stcr_upgrade.php:480
|
1544 |
msgid ""
|
1545 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1546 |
"160902"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: utils/stcr_upgrade.php:483
|
1550 |
msgid ""
|
1551 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1552 |
"previous 160831 version."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1556 |
msgid "Settings"
|
1557 |
msgstr "Einstellungen"
|
1558 |
|
1559 |
+
#: utils/stcr_upgrade.php:504
|
1560 |
msgid ""
|
1561 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1562 |
"160915"
|
1564 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160915 "
|
1565 |
"aktualisiert."
|
1566 |
|
1567 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1568 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1569 |
msgid "This version includes fixes and improvements, "
|
1570 |
msgstr "Diese Version enthält Fixes und Verbesserungen."
|
1571 |
|
1572 |
+
#: utils/stcr_upgrade.php:508
|
1573 |
msgid ""
|
1574 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1575 |
"dropdown."
|
1577 |
"<strong>Ändere</strong> die Radio Buttons auf der Verwaltungsseite für ein "
|
1578 |
"Dropdown Menü."
|
1579 |
|
1580 |
+
#: utils/stcr_upgrade.php:509
|
1581 |
msgid ""
|
1582 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1586 |
+
#: utils/stcr_upgrade.php:576
|
1587 |
#, fuzzy
|
1588 |
msgid "Log Settings"
|
1589 |
msgstr "Einstellungen"
|
1590 |
|
1591 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1592 |
+
#: utils/stcr_upgrade.php:580
|
1593 |
#, fuzzy
|
1594 |
msgid ""
|
1595 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1597 |
"<strong>Subscribe to Comments Reloaded</strong> wurde auf Version 160831 "
|
1598 |
"aktualisiert."
|
1599 |
|
1600 |
+
#: utils/stcr_upgrade.php:529
|
1601 |
msgid ""
|
1602 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1603 |
"enable."
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: utils/stcr_upgrade.php:530
|
1607 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1611 |
+
#: utils/stcr_upgrade.php:590
|
1612 |
msgid "The support of this plugin is given thanks to your donations."
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: utils/stcr_upgrade.php:536
|
1616 |
msgid ""
|
1617 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1618 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1622 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: utils/stcr_upgrade.php:557
|
1626 |
msgid ""
|
1627 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1628 |
"installation regarding a database table creation."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: utils/stcr_upgrade.php:558
|
1632 |
msgid ""
|
1633 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1634 |
"Awesome."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: utils/stcr_upgrade.php:563
|
1638 |
msgid ""
|
1639 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1640 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1645 |
"for the users that have supported the plugin development."
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: utils/stcr_upgrade.php:584
|
1649 |
+
msgid ""
|
1650 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1651 |
+
"issues."
|
1652 |
+
msgstr ""
|
1653 |
+
|
1654 |
+
#: utils/stcr_upgrade.php:585
|
1655 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: utils/stcr_upgrade.php:586
|
1659 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: utils/stcr_upgrade.php:591
|
1663 |
+
msgid ""
|
1664 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1665 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1666 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1667 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1668 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1669 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1670 |
+
"Thanks for all the users that have supported the plugin development."
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: utils/stcr_utils.php:196
|
1674 |
+
msgid ""
|
1675 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1676 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1677 |
+
msgstr ""
|
1678 |
+
"E-Mail-Benachrichtigung bei weiteren Kommentaren.<br>Auch möglich: <a "
|
1679 |
+
"href='[subscribe_link]'>Abo ohne Kommentar</a>."
|
1680 |
+
|
1681 |
+
#: utils/stcr_utils.php:197
|
1682 |
+
msgid ""
|
1683 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1684 |
+
"subscriptions."
|
1685 |
+
msgstr ""
|
1686 |
+
"Du erhältst Benachrichtigungen zu diesem Thema. <a "
|
1687 |
+
"href='[manager_link]'>Verwalte Deine Abonnements</a>."
|
1688 |
+
|
1689 |
+
#: utils/stcr_utils.php:198
|
1690 |
+
msgid ""
|
1691 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1692 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1693 |
+
msgstr ""
|
1694 |
+
"Dein Benachrichtigungswunsch muss bestätigt werden. <a "
|
1695 |
+
"href='[manager_link]'>Verwalte Deine Abonnements</a>."
|
1696 |
+
|
1697 |
+
#: utils/stcr_utils.php:199
|
1698 |
+
msgid ""
|
1699 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1700 |
+
msgstr ""
|
1701 |
+
"Deine <a href='[manager_link]'>Benachrichtigungs-Einstellungen</a> zu diesem "
|
1702 |
+
"Beitrag anpassen."
|
1703 |
+
|
1704 |
+
#: utils/stcr_utils.php:205
|
1705 |
+
msgid ""
|
1706 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1707 |
+
"will send you a message containing the link to access your personal "
|
1708 |
+
"management page."
|
1709 |
+
msgstr ""
|
1710 |
+
"Um Deine Abonnements zu verwalten, gib bitte hier Deine E-Mail-Adresse ein. "
|
1711 |
+
"Du bekommst dann eine E-Mail mit einem weiterführenden Link."
|
1712 |
+
|
1713 |
+
#: utils/stcr_utils.php:206
|
1714 |
+
msgid ""
|
1715 |
+
"Thank you for using our subscription service. Your request has been "
|
1716 |
+
"completed, and you should receive an email with the management link in a few "
|
1717 |
+
"minutes."
|
1718 |
+
msgstr ""
|
1719 |
+
"Danke für das Nutzen des Benachrichtigungsdienstes. Deine Anfrage wird "
|
1720 |
+
"bearbeitet und eine E-Mail an Dich verschickt."
|
1721 |
+
|
1722 |
+
#: utils/stcr_utils.php:207
|
1723 |
+
msgid ""
|
1724 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1725 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1726 |
+
"form here below and you're all set."
|
1727 |
+
msgstr ""
|
1728 |
+
"Du kannst der Diskussion zum Thema <strong>[post_title]</strong> auch "
|
1729 |
+
"folgen, ohne bisher selbst etwas geschrieben zu haben. Hierzu einfach Deine "
|
1730 |
+
"E-Mail-Adresse in das dafür vorgesehene Feld eintragen."
|
1731 |
+
|
1732 |
+
#: utils/stcr_utils.php:208
|
1733 |
+
msgid ""
|
1734 |
+
"Thank you for using our subscription service. Your request has been "
|
1735 |
+
"completed. You will receive a notification email every time a new comment to "
|
1736 |
+
"this article is approved and posted by the administrator."
|
1737 |
+
msgstr ""
|
1738 |
+
"Danke für das Nutzen des Benachrichtigungsdienstes. Du wirst nun bei jedem "
|
1739 |
+
"neuen Kommentar per E-Mail informiert."
|
1740 |
+
|
1741 |
+
#: utils/stcr_utils.php:209
|
1742 |
+
msgid ""
|
1743 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1744 |
+
"request, please check your email for the verification message and follow the "
|
1745 |
+
"instructions."
|
1746 |
+
msgstr ""
|
1747 |
+
"Danke für das Nutzen des Benachrichtigungsdienstes. Bitte bestätige Deine "
|
1748 |
+
"Anfrage durch den Link in der E-Mail, die Dir gerade zugestellt wird."
|
1749 |
+
|
1750 |
+
#: utils/stcr_utils.php:210
|
1751 |
+
msgid ""
|
1752 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1753 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1754 |
+
msgstr ""
|
1755 |
+
"Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
|
1756 |
+
"entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste."
|
1757 |
+
|
1758 |
+
#: utils/stcr_utils.php:211
|
1759 |
+
msgid ""
|
1760 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1761 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1762 |
+
"You are currently subscribed to:"
|
1763 |
+
msgstr ""
|
1764 |
+
"Um eine Benachrichtigung zu löschen oder zu deaktivieren, nutze die "
|
1765 |
+
"entsprechende Auswahlboxen und Klicke auf den Button am Ende der Liste. Du "
|
1766 |
+
"hast derzeit abboniert:"
|
1767 |
+
|
1768 |
+
#: utils/stcr_utils.php:215
|
1769 |
+
msgid "There is a new comment to [post_title]"
|
1770 |
+
msgstr "Neuer Kommentar zum Artikel: [post_title]"
|
1771 |
+
|
1772 |
+
#: utils/stcr_utils.php:216
|
1773 |
+
msgid ""
|
1774 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1775 |
+
"\n"
|
1776 |
+
"<hr />\n"
|
1777 |
+
"<strong>Comment link:</strong> <a href="
|
1778 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1779 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1780 |
+
"\n"
|
1781 |
+
"<strong>Comment:</strong>\n"
|
1782 |
+
"[comment_content]\n"
|
1783 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1784 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1785 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1786 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1787 |
+
msgstr ""
|
1788 |
+
|
1789 |
+
#: utils/stcr_utils.php:217
|
1790 |
+
msgid "Please confirm your subscription to [post_title]"
|
1791 |
+
msgstr "Bitte bestätige Deinen Benachrichtigungswunsch zum Thema [post_title]"
|
1792 |
+
|
1793 |
+
#: utils/stcr_utils.php:218
|
1794 |
+
#, fuzzy
|
1795 |
+
#| msgid ""
|
1796 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1797 |
+
#| "[post_permalink]\n"
|
1798 |
+
#| "\n"
|
1799 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1800 |
+
#| "[confirm_link]"
|
1801 |
+
msgid ""
|
1802 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1803 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1804 |
+
"\n"
|
1805 |
+
"Please confirm your request by clicking on this link:\n"
|
1806 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1807 |
+
msgstr ""
|
1808 |
+
"Hallo,\n"
|
1809 |
+
"Du möchtest bei jedem neuen Kommentar benachrichtigt werden, der zu diesem "
|
1810 |
+
"Beitrag geschrieben wird:\n"
|
1811 |
+
"[post_permalink]\n"
|
1812 |
+
"\n"
|
1813 |
+
"Bitte bestätigte diese Anfrage durch einen Klick auf diesen Link:\n"
|
1814 |
+
"[confirm_link]"
|
1815 |
+
|
1816 |
+
#: utils/stcr_utils.php:219
|
1817 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1818 |
+
msgstr "Benachrichtigungs-Einstellungen von [blog_name]"
|
1819 |
+
|
1820 |
+
#: utils/stcr_utils.php:220
|
1821 |
+
msgid ""
|
1822 |
+
"You have requested to manage your subscriptions to the articles on "
|
1823 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1824 |
+
msgstr ""
|
1825 |
+
"Du möchtest Deine Benachrichtigungs-Einstellungen von [blog_name] ändern. "
|
1826 |
+
"Bitte prüfe den Abonnementen Verwaltungslink in deiner E-Mail "
|
1827 |
+
|
1828 |
+
#: utils/stcr_utils.php:221
|
1829 |
+
#, fuzzy
|
1830 |
+
#| msgid ""
|
1831 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1832 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1833 |
+
#| "[manager_link]"
|
1834 |
+
msgid ""
|
1835 |
+
"You have requested to manage your subscriptions to the articles on "
|
1836 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1837 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1838 |
+
msgstr ""
|
1839 |
+
"Du möchtest Deine Benachrichtigungs-Einstellungen von [blog_name] ändern. "
|
1840 |
+
"Nutze dazu bitte diesen Link:\n"
|
1841 |
+
"[manager_link]"
|
1842 |
+
|
1843 |
+
#: utils/stcr_utils.php:300
|
1844 |
msgid "StCR Notification"
|
1845 |
msgstr "Benachrichtigungen"
|
1846 |
|
1852 |
msgid "All"
|
1853 |
msgstr "Alle"
|
1854 |
|
1855 |
+
#~ msgid "Support the developers"
|
1856 |
+
#~ msgstr "Unterstütze den Autor"
|
1857 |
+
|
1858 |
+
#~ msgid "Don't want to donate? You can still help"
|
1859 |
+
#~ msgstr "Du möchtest kein Geld spenden? Du kannst auch anders helfen"
|
1860 |
+
|
1861 |
+
#~ msgid ""
|
1862 |
+
#~ "There is a new comment to [post_title].\n"
|
1863 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1864 |
+
#~ "Author: [comment_author]\n"
|
1865 |
+
#~ "Comment:\n"
|
1866 |
+
#~ "[comment_content]\n"
|
1867 |
+
#~ "Permalink: [post_permalink]\n"
|
1868 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1869 |
+
#~ msgstr ""
|
1870 |
+
#~ "Hallo,\n"
|
1871 |
+
#~ "es gibt einen neuen Kommentar zum Artikel: [post_title].\n"
|
1872 |
+
#~ "[post_permalink]\n"
|
1873 |
+
#~ "\n"
|
1874 |
+
#~ "[comment_author] schrieb gerade:\n"
|
1875 |
+
#~ "[comment_content]\n"
|
1876 |
+
#~ "\n"
|
1877 |
+
#~ "Hier antworten: [comment_permalink]\n"
|
1878 |
+
#~ "Verwalte Deine Benachrichtigungen: [manager_link]"
|
1879 |
+
|
1880 |
#~ msgid "Legend: Y = all comments, R = replies only, C = inactive"
|
1881 |
#~ msgstr "Legende: Y = Alle Kommentare, R = Nur Antworten, C = Inaktiv"
|
1882 |
|
Binary file
|
@@ -2,12 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe To Comments Reloaded 2.0 en español\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
-
"Language-Team:
|
9 |
-
"
|
10 |
-
"Language: es_ES\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -15,40 +14,36 @@ 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
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: options/index.php:
|
22 |
-
#: utils/
|
23 |
msgid "Manage subscriptions"
|
24 |
msgstr "Administrar suscripciones"
|
25 |
|
26 |
-
#: options/index.php:
|
27 |
msgid "Comment Form"
|
28 |
msgstr "Formulario de Comentario"
|
29 |
|
30 |
-
#: options/index.php:
|
31 |
msgid "Management Page"
|
32 |
msgstr "Página de Administración"
|
33 |
|
34 |
-
#: options/index.php:
|
35 |
msgid "Notifications"
|
36 |
msgstr "Notificaciones"
|
37 |
|
38 |
-
#: options/index.php:
|
39 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
40 |
msgid "Options"
|
41 |
msgstr "Opciones"
|
42 |
|
43 |
-
#: options/index.php:
|
44 |
-
msgid "You can help"
|
45 |
-
msgstr "Puedes ayudar"
|
46 |
-
|
47 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
48 |
msgid "Support"
|
49 |
msgstr "Soporte"
|
50 |
|
51 |
-
#: options/index.php:
|
52 |
msgid "Donate"
|
53 |
msgstr "¡Dona un poco de dinero!"
|
54 |
|
@@ -194,6 +189,9 @@ msgid ""
|
|
194 |
"This option will allow you to change an email address for another one or to "
|
195 |
"update the same status for all the subscription on a specific email address."
|
196 |
msgstr ""
|
|
|
|
|
|
|
197 |
|
198 |
#: options/panel1.php:68
|
199 |
msgid "Post ID"
|
@@ -349,95 +347,95 @@ msgstr "Actualizar suscripciones"
|
|
349 |
msgid "Sorry, no subscriptions match your search criteria."
|
350 |
msgstr "Lo siento, ninguna suscripción coincide con tu criterio de búsqueda."
|
351 |
|
352 |
-
#: options/panel10.php:
|
353 |
msgid "The log file has been successfully deleted."
|
354 |
-
msgstr ""
|
355 |
|
356 |
-
#: options/panel10.php:
|
357 |
msgid "Can't delete the log file, check the file permissions."
|
358 |
msgstr "No se puede eliminar el archivo log, verifica que tengas permisos."
|
359 |
|
360 |
-
#: options/panel10.php:
|
361 |
msgid "The log file does not exists."
|
362 |
-
msgstr ""
|
363 |
|
364 |
-
#: options/panel10.php:
|
365 |
msgid "Enable Log Information"
|
366 |
-
msgstr ""
|
367 |
|
368 |
-
#: options/panel10.php:
|
369 |
msgid "Enable Auto clean log data"
|
370 |
-
msgstr ""
|
371 |
|
372 |
-
#: options/panel10.php:
|
373 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
374 |
msgid "Your settings have been successfully updated."
|
375 |
msgstr "Tu configuración se ha actualizado correctamente."
|
376 |
|
377 |
-
#: options/panel10.php:
|
378 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
379 |
msgid "There was an error updating the following fields:"
|
380 |
msgstr "Se ha producido un error al actualizar los siguientes campos:"
|
381 |
|
382 |
-
#: options/panel10.php:
|
383 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
-
#: options/panel5.php:
|
387 |
-
#: options/panel5.php:
|
388 |
msgid "Yes"
|
389 |
msgstr "Sí"
|
390 |
|
391 |
-
#: options/panel10.php:
|
392 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
-
#: options/panel5.php:
|
396 |
-
#: options/panel5.php:
|
397 |
msgid "No"
|
398 |
msgstr "No"
|
399 |
|
400 |
-
#: options/panel10.php:
|
401 |
msgid ""
|
402 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
403 |
"purposes."
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: options/panel10.php:
|
407 |
msgid "Hourly"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: options/panel10.php:
|
411 |
msgid "Twice Daily"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: options/panel10.php:
|
415 |
msgid "Daily"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: options/panel10.php:
|
419 |
msgid "If enabled, StCR will auto clean your information every day."
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: options/panel10.php:
|
423 |
msgid "Clean Up Log Archive"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: options/panel10.php:
|
427 |
msgid ""
|
428 |
"If you want to clean up the log archive please click the following button"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: options/panel10.php:
|
432 |
msgid "Clean"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: options/panel10.php:
|
436 |
msgid "System Information"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: options/panel10.php:
|
440 |
-
#: options/panel4.php:283 options/panel5.php:
|
441 |
msgid "Save Changes"
|
442 |
msgstr "Guardar cambios"
|
443 |
|
@@ -798,7 +796,7 @@ msgstr "Solo respuestas"
|
|
798 |
#: options/panel4.php:128
|
799 |
msgid ""
|
800 |
"This will be use when the user click reply on their email agent. If not set "
|
801 |
-
"will be the same as the Sender email address."
|
802 |
msgstr ""
|
803 |
|
804 |
#: options/panel4.php:147
|
@@ -816,8 +814,8 @@ msgstr ""
|
|
816 |
|
817 |
#: options/panel4.php:171
|
818 |
msgid ""
|
819 |
-
"<p><strong>Note: To get a default template clear
|
820 |
-
"the options.</strong></p>"
|
821 |
msgstr ""
|
822 |
|
823 |
#: options/panel4.php:184
|
@@ -868,79 +866,91 @@ msgstr ""
|
|
868 |
"Contenido del mensaje para quienes solicitan acceso a su página de "
|
869 |
"administración. Etiquetas permitidas: [blog_name] y [manager_link]."
|
870 |
|
871 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
872 |
msgid "Show StCR checkbox / dropdown"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: options/panel5.php:
|
876 |
msgid "Safetly Uninstall"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: options/panel5.php:
|
880 |
msgid "Autopurge requests"
|
881 |
msgstr "Solicitudes de purga automática"
|
882 |
|
883 |
-
#: options/panel5.php:
|
884 |
msgid "Enable double check"
|
885 |
msgstr "Activar doble verificación"
|
886 |
|
887 |
-
#: options/panel5.php:
|
888 |
msgid "StCR Position"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: options/panel5.php:
|
892 |
msgid "Subscribe authors"
|
893 |
msgstr "Suscrito"
|
894 |
|
895 |
-
#: options/panel5.php:
|
896 |
msgid "Enable HTML emails"
|
897 |
msgstr "Activar HTML en emails"
|
898 |
|
899 |
-
#: options/panel5.php:
|
900 |
msgid "HTMLify Links in HTML emails"
|
901 |
msgstr "Convertir enlaces HTML en emails HTML"
|
902 |
|
903 |
-
#: options/panel5.php:
|
904 |
msgid "Send trackbacks"
|
905 |
msgstr "Enviar trackbacks"
|
906 |
|
907 |
-
#: options/panel5.php:
|
908 |
msgid "Notify admin"
|
909 |
msgstr "Notificar al administrador"
|
910 |
|
911 |
-
#: options/panel5.php:
|
912 |
msgid "Let admin subscribe"
|
913 |
msgstr "Permitir al administrador suscribirse"
|
914 |
|
915 |
-
#: options/panel5.php:
|
916 |
msgid "BCC admin on Notifications"
|
917 |
msgstr "Notificaciones"
|
918 |
|
919 |
-
#: options/panel5.php:
|
920 |
msgid "Enable Font Awesome"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
924 |
msgid ""
|
925 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
926 |
"You should leave it to Yes always. "
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: options/panel5.php:
|
930 |
msgid "Safely Uninstall"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: options/panel5.php:
|
934 |
msgid ""
|
935 |
"This option will allow you to delete the plugin with WordPress without "
|
936 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: options/panel5.php:
|
940 |
msgid "days"
|
941 |
msgstr "días"
|
942 |
|
943 |
-
#: options/panel5.php:
|
944 |
msgid ""
|
945 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
946 |
"this feature."
|
@@ -948,14 +958,14 @@ msgstr ""
|
|
948 |
"Eliminar suscripciones pendientes (sin confirmar) después de X días. 0 "
|
949 |
"(cero) desactiva esta función."
|
950 |
|
951 |
-
#: options/panel5.php:
|
952 |
msgid ""
|
953 |
"If this option is enable the subscription box will be above the submit "
|
954 |
"button in your comment form. Use this when your theme is outdated and using "
|
955 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: options/panel5.php:
|
959 |
msgid ""
|
960 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
961 |
"misuse)."
|
@@ -963,12 +973,12 @@ msgstr ""
|
|
963 |
"Enviar un mensaje de notificación para confirmar la suscripción (para evitar "
|
964 |
"un uso fraudulento de las direcciones)."
|
965 |
|
966 |
-
#: options/panel5.php:
|
967 |
msgid ""
|
968 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
969 |
msgstr "Suscribir autores automaticamente a sus artículos (No retroactivo)."
|
970 |
|
971 |
-
#: options/panel5.php:
|
972 |
msgid ""
|
973 |
"If enabled, will send email messages with content-type = text/html instead "
|
974 |
"of text/plain"
|
@@ -976,11 +986,11 @@ msgstr ""
|
|
976 |
"Si está activado, enviará mensajes de correo electrónico con content-type = "
|
977 |
"text/html en lugar de text/plain"
|
978 |
|
979 |
-
#: options/panel5.php:
|
980 |
msgid "HTMLify links in emails"
|
981 |
msgstr "Convertir enlaces HTML"
|
982 |
|
983 |
-
#: options/panel5.php:
|
984 |
msgid ""
|
985 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
986 |
"</a></code> (only when HTML emails enabled)."
|
@@ -988,57 +998,57 @@ msgstr ""
|
|
988 |
"Si está activado, agregará <code><a href=\"\"></a></code> en "
|
989 |
"todos los enlaces de los mensajes (sólo si se activó HTML en emails)."
|
990 |
|
991 |
-
#: options/panel5.php:
|
992 |
msgid "Process trackbacks"
|
993 |
msgstr "Procesar trackbacks"
|
994 |
|
995 |
-
#: options/panel5.php:
|
996 |
msgid ""
|
997 |
"Notify users when a new trackback or pingback is added to the discussion."
|
998 |
msgstr ""
|
999 |
"Notificar a los usuarios cuando se añade un nuevo trackback o pingback a la "
|
1000 |
"discusión."
|
1001 |
|
1002 |
-
#: options/panel5.php:
|
1003 |
msgid "Track all subscriptions"
|
1004 |
msgstr "Seguir todas las suscripciones"
|
1005 |
|
1006 |
-
#: options/panel5.php:
|
1007 |
msgid "Notify the administrator when users subscribe without commenting."
|
1008 |
msgstr ""
|
1009 |
"Notificar al administrador cuando los usuarios se suscriban sin comentar."
|
1010 |
|
1011 |
-
#: options/panel5.php:
|
1012 |
msgid "Let the administrator subscribe to comments when logged in."
|
1013 |
msgstr ""
|
1014 |
"Permitir al administrador suscribirse a los comentarios cuando tiene la "
|
1015 |
"sesión iniciada."
|
1016 |
|
1017 |
-
#: options/panel5.php:
|
1018 |
msgid "Send a copy of all Notifications to the administrator."
|
1019 |
msgstr "Enviar una copia de todas las Notificaciones al administrador."
|
1020 |
|
1021 |
-
#: options/panel5.php:
|
1022 |
msgid ""
|
1023 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1024 |
"you theme already add this into your site."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: options/panel5.php:
|
1028 |
msgid "StCR Unique Key"
|
1029 |
msgstr "StCR Clave Única"
|
1030 |
|
1031 |
-
#: options/panel5.php:
|
1032 |
msgid "This Unique Key is not set, please click the following button to "
|
1033 |
msgstr ""
|
1034 |
"Esta Clave Única no se ha establecido, por favor haga clic en el siguiente "
|
1035 |
"botón para"
|
1036 |
|
1037 |
-
#: options/panel5.php:
|
1038 |
msgid "Generate"
|
1039 |
msgstr "Generar"
|
1040 |
|
1041 |
-
#: options/panel5.php:
|
1042 |
msgid ""
|
1043 |
"This Unique Key will be use to send the notification to your subscribers "
|
1044 |
"with more security."
|
@@ -1046,49 +1056,54 @@ msgstr ""
|
|
1046 |
"Esta Clave Única se utiliza para enviar notificaciones a sus suscriptores "
|
1047 |
"con más seguridad."
|
1048 |
|
1049 |
-
#: options/
|
1050 |
-
msgid "
|
1051 |
-
|
|
|
|
|
1052 |
|
1053 |
-
#: options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
msgid ""
|
1055 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1056 |
"consider supporting the author if this plugin made your web site better, "
|
1057 |
-
"especially if you are making money out of it
|
|
|
1058 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1059 |
"strong>, and to buy some food for my hungry family."
|
1060 |
msgstr ""
|
1061 |
-
|
1062 |
-
|
1063 |
-
"
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
"hesitate to send me bug reports, your localization files, ideas on how to "
|
1077 |
-
"improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
|
1078 |
-
"you do, thanks for using my plugin!"
|
1079 |
-
msgstr ""
|
1080 |
-
"Si no quieres donar dinero, por favor considera escribir una entrada en tu "
|
1081 |
-
"sitio acerca de mi plugin con un enlace hacia la página del plugin. Deja que "
|
1082 |
-
"tus lectores sepan lo que hace tu blog mejor. También puedes contribuir "
|
1083 |
-
"donando tu tiempo: no dudes en enviarme informes de fallos en el plugin, "
|
1084 |
-
"traducciones, ideas sobre cómo mejorar <strong>Subscribe to Comments "
|
1085 |
-
"Reloaded</strong> y más. Hagas lo que hagas, ¡gracias por usar mi plugin!"
|
1086 |
-
|
1087 |
-
#: options/panel7.php:23
|
1088 |
msgid "Subscribe to the Beta testers"
|
1089 |
msgstr "Suscribirse a los Beta testers"
|
1090 |
|
1091 |
-
#: options/panel7.php:
|
1092 |
msgid ""
|
1093 |
"Before a new Update we release a Beta version so that our current users can "
|
1094 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1100,11 +1115,11 @@ msgstr ""
|
|
1100 |
"error. Si quieres unirte a la lista de testers, puedes agregar tu correo "
|
1101 |
"electrónico <a href='http://eepurl.com/biCk1b' target='_blank'>aquí</a>."
|
1102 |
|
1103 |
-
#: options/panel7.php:
|
1104 |
msgid "Vote and show your appreciation"
|
1105 |
msgstr "Vota y muestra tu agradecimiento"
|
1106 |
|
1107 |
-
#: options/panel7.php:
|
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/"
|
@@ -1115,11 +1130,11 @@ msgstr ""
|
|
1115 |
"plugins/subscribe-to-comments-reloaded/\">Valóralo</a> en la página de "
|
1116 |
"plugins de WordPress."
|
1117 |
|
1118 |
-
#: options/panel8.php:
|
1119 |
msgid "Did you find a Bug on the plugin?"
|
1120 |
msgstr "Encontraste un Error en el plugin?"
|
1121 |
|
1122 |
-
#: options/panel8.php:
|
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"
|
@@ -1216,207 +1231,46 @@ msgstr ""
|
|
1216 |
msgid "You have request to manage another email address and this is forbidden."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: utils/stcr_manage.php:
|
1220 |
-
msgid ""
|
1221 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1222 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1223 |
-
msgstr ""
|
1224 |
-
"Notificarme los nuevos comentarios por correo electrónico. También puedes <a "
|
1225 |
-
"href='[subscribe_link]'>suscribirte</a> sin comentar."
|
1226 |
-
|
1227 |
-
#: utils/stcr_manage.php:224
|
1228 |
-
msgid ""
|
1229 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1230 |
-
"subscriptions."
|
1231 |
-
msgstr ""
|
1232 |
-
"Te has suscrito a esta entrada. <a href='[manager_link]'>Gestionar</a> tus "
|
1233 |
-
"suscripciones."
|
1234 |
-
|
1235 |
-
#: utils/stcr_manage.php:225
|
1236 |
-
msgid ""
|
1237 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1238 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1239 |
-
msgstr ""
|
1240 |
-
"Tu suscripción a esta entrada necesita ser confirmada. <a "
|
1241 |
-
"href='[manager_link]'>Gestiona tus suscripciones</a>."
|
1242 |
-
|
1243 |
-
#: utils/stcr_manage.php:226
|
1244 |
-
msgid ""
|
1245 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1246 |
-
msgstr ""
|
1247 |
-
"Puedes <a href='[manager_link]'>gestionar las suscripciones</a> de esta "
|
1248 |
-
"entrada."
|
1249 |
-
|
1250 |
-
#: utils/stcr_manage.php:232
|
1251 |
-
msgid ""
|
1252 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1253 |
-
"will send you a message containing the link to access your personal "
|
1254 |
-
"management page."
|
1255 |
-
msgstr ""
|
1256 |
-
"Para gestionar tus suscripciones introduce tu correo electrónico a "
|
1257 |
-
"continuación. Te enviaremos un mensaje con un enlace para acceder a tu "
|
1258 |
-
"página de administración."
|
1259 |
-
|
1260 |
-
#: utils/stcr_manage.php:233
|
1261 |
-
msgid ""
|
1262 |
-
"Thank you for using our subscription service. Your request has been "
|
1263 |
-
"completed, and you should receive an email with the management link in a few "
|
1264 |
-
"minutes."
|
1265 |
-
msgstr ""
|
1266 |
-
"Gracias por usar nuestro servicio de suscripción. Tu petición se ha "
|
1267 |
-
"completada con éxito, deberías recibir un mensaje en tu buzón de correo "
|
1268 |
-
"electrónico con con el enlace de administración en unos minutos."
|
1269 |
-
|
1270 |
-
#: utils/stcr_manage.php:234
|
1271 |
-
msgid ""
|
1272 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1273 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1274 |
-
"form here below and you're all set."
|
1275 |
-
msgstr ""
|
1276 |
-
"Puedes seguir la discusión de <strong>[post_title]</strong> sin tener que "
|
1277 |
-
"dejar un comentario. Introduce tu dirección de correo electrónico en el "
|
1278 |
-
"siguiente formulario y listo."
|
1279 |
-
|
1280 |
-
#: utils/stcr_manage.php:235
|
1281 |
-
msgid ""
|
1282 |
-
"Thank you for using our subscription service. Your request has been "
|
1283 |
-
"completed. You will receive a notification email every time a new comment to "
|
1284 |
-
"this article is approved and posted by the administrator."
|
1285 |
-
msgstr ""
|
1286 |
-
"Gracias por usar nuestro servicio de suscripción. Tu petición se ha "
|
1287 |
-
"completado. Recibirás un mensaje de notificación cada que vez que un nuevo "
|
1288 |
-
"comentario se publique o apruebe en esta entrada."
|
1289 |
-
|
1290 |
-
#: utils/stcr_manage.php:236
|
1291 |
-
msgid ""
|
1292 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1293 |
-
"request, please check your email for the verification message and follow the "
|
1294 |
-
"instructions."
|
1295 |
-
msgstr ""
|
1296 |
-
"Gracias por usar nuestro servicio de suscripción. Para confirmar tu "
|
1297 |
-
"petición, por favor comprueba si has recibido un mensaje en tu buzón de "
|
1298 |
-
"correo electrónico y sigue las instrucciones."
|
1299 |
-
|
1300 |
-
#: utils/stcr_manage.php:237
|
1301 |
-
msgid ""
|
1302 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1303 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1304 |
-
msgstr ""
|
1305 |
-
"Para cancelar o suspender una o más suscripciones, selecciona la "
|
1306 |
-
"correspondiente casilla de verificación y pulsa en el botón del final de la "
|
1307 |
-
"lista."
|
1308 |
-
|
1309 |
-
#: utils/stcr_manage.php:238
|
1310 |
-
msgid ""
|
1311 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1312 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1313 |
-
"You are currently subscribed to:"
|
1314 |
-
msgstr ""
|
1315 |
-
"Para cancelar o suspender una o más suscripciones, selecciona la "
|
1316 |
-
"correspondiente casilla de verificación y pulsa en el botón del final de la "
|
1317 |
-
"lista. Actualmente estás suscrito a:"
|
1318 |
-
|
1319 |
-
#: utils/stcr_manage.php:242
|
1320 |
-
msgid "There is a new comment to [post_title]"
|
1321 |
-
msgstr "Hay un nuevo comentario en [post_title]"
|
1322 |
-
|
1323 |
-
#: utils/stcr_manage.php:243
|
1324 |
-
msgid ""
|
1325 |
-
"There is a new comment to [post_title].\n"
|
1326 |
-
"Comment Link: [comment_permalink]\n"
|
1327 |
-
"Author: [comment_author]\n"
|
1328 |
-
"Comment:\n"
|
1329 |
-
"[comment_content]\n"
|
1330 |
-
"Permalink: [post_permalink]\n"
|
1331 |
-
"Manage your subscriptions: [manager_link]"
|
1332 |
-
msgstr ""
|
1333 |
-
"Hay un nuevo comentario en [post_title].\n"
|
1334 |
-
"Enlace al comentario: [comment_permalink]\n"
|
1335 |
-
"Autor: [comment_author]\n"
|
1336 |
-
"Comentario:\n"
|
1337 |
-
"[comment_content]\n"
|
1338 |
-
"Enlace permanente: [post_permalink]\n"
|
1339 |
-
"Administrar tus suscripciones: [manager_link]"
|
1340 |
-
|
1341 |
-
#: utils/stcr_manage.php:244
|
1342 |
-
msgid "Please confirm your subscription to [post_title]"
|
1343 |
-
msgstr "Por favor, confirma tu suscripción a [post_title]"
|
1344 |
-
|
1345 |
-
#: utils/stcr_manage.php:245
|
1346 |
-
msgid ""
|
1347 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1348 |
-
"[post_permalink]\n"
|
1349 |
-
"\n"
|
1350 |
-
"Please confirm your request by clicking on this link:\n"
|
1351 |
-
"[confirm_link]"
|
1352 |
-
msgstr ""
|
1353 |
-
"Has solicitado que te notifiquemos cada vez que se escriba un comentario "
|
1354 |
-
"en:\n"
|
1355 |
-
"[post_permalink]\n"
|
1356 |
-
"\n"
|
1357 |
-
"Por favor, confirma tu petición pulsando el siguiente enlace:\n"
|
1358 |
-
"[confirm_link]"
|
1359 |
-
|
1360 |
-
#: utils/stcr_manage.php:246
|
1361 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1362 |
-
msgstr "Gestiona tus suscripciones en [blog_name]"
|
1363 |
-
|
1364 |
-
#: utils/stcr_manage.php:247
|
1365 |
-
msgid ""
|
1366 |
-
"You have requested to manage your subscriptions to the articles on "
|
1367 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1368 |
-
msgstr ""
|
1369 |
-
|
1370 |
-
#: utils/stcr_manage.php:248
|
1371 |
-
msgid ""
|
1372 |
-
"You have requested to manage your subscriptions to the articles on "
|
1373 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1374 |
-
"[manager_link]"
|
1375 |
-
msgstr ""
|
1376 |
-
"Has solicitado gestionar tus suscripciones a las entradas de [blog_name]. "
|
1377 |
-
"Sigue el siguiente enlace para acceder a tu página de suscripciones:\n"
|
1378 |
-
"[manager_link]"
|
1379 |
-
|
1380 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1381 |
msgid "StCR System"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: utils/stcr_manage.php:
|
1385 |
-
#: utils/stcr_manage.php:
|
1386 |
-
#: utils/stcr_manage.php:
|
1387 |
-
#: utils/stcr_manage.php:
|
1388 |
-
#: utils/stcr_manage.php:
|
1389 |
msgid "You do not have sufficient permissions to access this page."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: utils/stcr_manage.php:
|
1393 |
msgid "Subscriptions"
|
1394 |
msgstr "Suscripciones"
|
1395 |
|
1396 |
-
#: utils/stcr_manage.php:
|
1397 |
msgid ""
|
1398 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1399 |
msgstr ""
|
1400 |
"¿Necesitas ayuda sobre como usar \"Subscribe to Comments Reloaded\"? Visita "
|
1401 |
"el"
|
1402 |
|
1403 |
-
#: utils/stcr_manage.php:
|
1404 |
msgid "support forum"
|
1405 |
msgstr "foro de soporte oficial"
|
1406 |
|
1407 |
-
#: utils/stcr_manage.php:
|
1408 |
msgid "Feeling generous?"
|
1409 |
msgstr "¿Te sientes generoso?"
|
1410 |
|
1411 |
-
#: utils/stcr_manage.php:
|
1412 |
msgid "Donate a few bucks!"
|
1413 |
msgstr "¡Dona un poco de dinero!"
|
1414 |
|
1415 |
-
#: utils/stcr_upgrade.php:
|
1416 |
msgid "Important Notice"
|
1417 |
msgstr "Nota Importante"
|
1418 |
|
1419 |
-
#: utils/stcr_upgrade.php:
|
1420 |
msgid ""
|
1421 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1422 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1424,7 +1278,7 @@ msgid ""
|
|
1424 |
"src=\""
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: utils/stcr_upgrade.php:
|
1428 |
msgid ""
|
1429 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1430 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
@@ -1434,7 +1288,7 @@ msgstr ""
|
|
1434 |
"<strong>Subscribe to Comments</strong> y se importaron automáticamente en "
|
1435 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1436 |
|
1437 |
-
#: utils/stcr_upgrade.php:
|
1438 |
msgid ""
|
1439 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1440 |
"Comments to prevent confusion between the two plugins."
|
@@ -1442,7 +1296,7 @@ msgstr ""
|
|
1442 |
"Se recomienda que <strong>desactive</strong> ahora Subscribe to Comments "
|
1443 |
"para prevenir conflictos entre ambos plugins."
|
1444 |
|
1445 |
-
#: utils/stcr_upgrade.php:
|
1446 |
msgid ""
|
1447 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1448 |
"that you want to import, you'll need to import that data manually, as only "
|
@@ -1452,8 +1306,8 @@ msgstr ""
|
|
1452 |
"quieres importar, necesitaras importar esos datos manualmente, ya que sólo "
|
1453 |
"se ejecutará una rutina de importación para evitar la pérdida de datos."
|
1454 |
|
1455 |
-
#: utils/stcr_upgrade.php:
|
1456 |
-
#: utils/stcr_upgrade.php:
|
1457 |
msgid ""
|
1458 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1459 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1461,7 +1315,7 @@ msgid ""
|
|
1461 |
"\"stcr-loading-animation\" src=\""
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: utils/stcr_upgrade.php:
|
1465 |
msgid ""
|
1466 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1467 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
@@ -1471,7 +1325,7 @@ msgstr ""
|
|
1471 |
"Reply Notification</strong> y se importaron automáticamente en "
|
1472 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1473 |
|
1474 |
-
#: utils/stcr_upgrade.php:
|
1475 |
msgid ""
|
1476 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1477 |
"Notification to prevent confusion between the two plugins."
|
@@ -1479,7 +1333,7 @@ msgstr ""
|
|
1479 |
"Se recomienda que <strong>desactive</strong> ahora Comment Reply "
|
1480 |
"Notification para prevenir conflictos entre ambos plugins."
|
1481 |
|
1482 |
-
#: utils/stcr_upgrade.php:
|
1483 |
msgid ""
|
1484 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1485 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1490,7 +1344,7 @@ msgstr ""
|
|
1490 |
"<strong>WP Comment Subscriptions</strong> y se importaron automáticamente en "
|
1491 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1492 |
|
1493 |
-
#: utils/stcr_upgrade.php:
|
1494 |
msgid ""
|
1495 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1496 |
"Subscriptions to prevent confusion between the two plugins."
|
@@ -1498,7 +1352,7 @@ msgstr ""
|
|
1498 |
"Se recomienda que <strong>desactive</strong> ahora WP Comment Subscriptions "
|
1499 |
"para prevenir conflictos entre ambos plugins."
|
1500 |
|
1501 |
-
#: utils/stcr_upgrade.php:
|
1502 |
msgid ""
|
1503 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1504 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1510,7 +1364,7 @@ msgstr ""
|
|
1510 |
"importar esos datos manualmente, ya que sólo se ejecutará una rutina de "
|
1511 |
"importación para evitar la pérdida de datos."
|
1512 |
|
1513 |
-
#: utils/stcr_upgrade.php:
|
1514 |
msgid ""
|
1515 |
"<strong>Note:</strong> If you were previously using the "
|
1516 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1524,29 +1378,29 @@ msgstr ""
|
|
1524 |
"<code>subscribe_reloaded_show()</code> y <code>[subscribe-url]</code> "
|
1525 |
"respectivamente."
|
1526 |
|
1527 |
-
#: utils/stcr_upgrade.php:
|
1528 |
msgid ""
|
1529 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1530 |
msgstr "Aviso Importante de Subscribe to Comments Reloaded"
|
1531 |
|
1532 |
-
#: utils/stcr_upgrade.php:
|
1533 |
-
#: utils/stcr_upgrade.php:
|
1534 |
msgid ""
|
1535 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1536 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: utils/stcr_upgrade.php:
|
1540 |
msgid ""
|
1541 |
-
"Please consider to make a donation to support the plugin
|
1542 |
-
"<a href=\"\n"
|
1543 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1544 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1545 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1546 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: utils/stcr_upgrade.php:
|
1550 |
msgid ""
|
1551 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1552 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1554,23 +1408,23 @@ msgid ""
|
|
1554 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: utils/stcr_upgrade.php:
|
1558 |
msgid ""
|
1559 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1560 |
"160106."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: utils/stcr_upgrade.php:
|
1564 |
msgid ""
|
1565 |
"This version includes many changes and fixes to improve your experience with "
|
1566 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1567 |
"email templates, Subscription Checkbox position, and more!"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
-
#: utils/stcr_upgrade.php:
|
1571 |
-
#: utils/stcr_upgrade.php:
|
1572 |
-
#: utils/stcr_upgrade.php:
|
1573 |
-
#: utils/stcr_upgrade.php:
|
1574 |
msgid ""
|
1575 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1576 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1578,124 +1432,127 @@ msgid ""
|
|
1578 |
"class=\"stcr-loading-animation\" src=\""
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: utils/stcr_upgrade.php:
|
1582 |
msgid ""
|
1583 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1584 |
"160115."
|
1585 |
msgstr "Aviso Importante de Subscribe to Comments Reloaded"
|
1586 |
|
1587 |
-
#: utils/stcr_upgrade.php:
|
1588 |
msgid ""
|
1589 |
"This version includes fixes to broken links while managing your subscriptions"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: utils/stcr_upgrade.php:
|
1593 |
#, fuzzy
|
1594 |
msgid ""
|
1595 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1596 |
"160831"
|
1597 |
msgstr "Aviso Importante de Subscribe to Comments Reloaded"
|
1598 |
|
1599 |
-
#: utils/stcr_upgrade.php:
|
1600 |
msgid "This version includes fixes to many bugs and also new features, "
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: utils/stcr_upgrade.php:
|
1604 |
msgid ""
|
1605 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1606 |
"address. This will help the subscribers to use the Reply option in their "
|
1607 |
"email agents."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: utils/stcr_upgrade.php:
|
1611 |
msgid ""
|
1612 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1613 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: utils/stcr_upgrade.php:
|
1617 |
msgid ""
|
1618 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1619 |
"without loosing your subscriptions. You can use this option also for reset "
|
1620 |
"all the settings, see the FAQ."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
1624 |
msgid ""
|
1625 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1626 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1627 |
"Post Type."
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: utils/stcr_upgrade.php:
|
1631 |
msgid ""
|
1632 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1633 |
"options to and the management link only by email and not to display it on "
|
1634 |
"the request link page."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: utils/stcr_upgrade.php:
|
1638 |
msgid ""
|
1639 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1640 |
"160902"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: utils/stcr_upgrade.php:
|
1644 |
msgid ""
|
1645 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1646 |
"previous 160831 version."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: utils/stcr_upgrade.php:
|
1650 |
msgid "Settings"
|
1651 |
msgstr "Configuración"
|
1652 |
|
1653 |
-
#: utils/stcr_upgrade.php:
|
1654 |
msgid ""
|
1655 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1656 |
"160915"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: utils/stcr_upgrade.php:
|
1660 |
-
#: utils/stcr_upgrade.php:
|
1661 |
msgid "This version includes fixes and improvements, "
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: utils/stcr_upgrade.php:
|
1665 |
msgid ""
|
1666 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1667 |
"dropdown."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: utils/stcr_upgrade.php:
|
1671 |
msgid ""
|
1672 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: utils/stcr_upgrade.php:
|
|
|
1676 |
msgid "Log Settings"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: utils/stcr_upgrade.php:
|
|
|
1680 |
msgid ""
|
1681 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: utils/stcr_upgrade.php:
|
1685 |
msgid ""
|
1686 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1687 |
"enable."
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: utils/stcr_upgrade.php:
|
1691 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: utils/stcr_upgrade.php:
|
|
|
1695 |
msgid "The support of this plugin is given thanks to your donations."
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: utils/stcr_upgrade.php:
|
1699 |
msgid ""
|
1700 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1701 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1705,19 +1562,19 @@ msgid ""
|
|
1705 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: utils/stcr_upgrade.php:
|
1709 |
msgid ""
|
1710 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1711 |
"installation regarding a database table creation."
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: utils/stcr_upgrade.php:
|
1715 |
msgid ""
|
1716 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1717 |
"Awesome."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: utils/stcr_upgrade.php:
|
1721 |
msgid ""
|
1722 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1723 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1728,7 +1585,183 @@ msgid ""
|
|
1728 |
"for the users that have supported the plugin development."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1732 |
msgid "StCR Notification"
|
1733 |
msgstr "Notificaciones"
|
1734 |
|
@@ -1740,6 +1773,85 @@ msgstr "No Suscribirse"
|
|
1740 |
msgid "All"
|
1741 |
msgstr "Todo"
|
1742 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1743 |
#~ msgid ""
|
1744 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1745 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe To Comments Reloaded 2.0 en español\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:07-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:10-0700\n"
|
7 |
+
"Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: es_MX\n"
|
|
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: nplurals=2; plural=n !=1;\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 2.0.6\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
21 |
+
#: utils/stcr_utils.php:203
|
22 |
msgid "Manage subscriptions"
|
23 |
msgstr "Administrar suscripciones"
|
24 |
|
25 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
26 |
msgid "Comment Form"
|
27 |
msgstr "Formulario de Comentario"
|
28 |
|
29 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
30 |
msgid "Management Page"
|
31 |
msgstr "Página de Administración"
|
32 |
|
33 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
34 |
msgid "Notifications"
|
35 |
msgstr "Notificaciones"
|
36 |
|
37 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
38 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
39 |
msgid "Options"
|
40 |
msgstr "Opciones"
|
41 |
|
42 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
43 |
msgid "Support"
|
44 |
msgstr "Soporte"
|
45 |
|
46 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
47 |
msgid "Donate"
|
48 |
msgstr "¡Dona un poco de dinero!"
|
49 |
|
189 |
"This option will allow you to change an email address for another one or to "
|
190 |
"update the same status for all the subscription on a specific email address."
|
191 |
msgstr ""
|
192 |
+
"Esta opción te permite cambiar la dirección de correo electrónico por otra o "
|
193 |
+
"actualizar el mismo estatus para todas las subscripciones en un email "
|
194 |
+
"específico."
|
195 |
|
196 |
#: options/panel1.php:68
|
197 |
msgid "Post ID"
|
347 |
msgid "Sorry, no subscriptions match your search criteria."
|
348 |
msgstr "Lo siento, ninguna suscripción coincide con tu criterio de búsqueda."
|
349 |
|
350 |
+
#: options/panel10.php:41
|
351 |
msgid "The log file has been successfully deleted."
|
352 |
+
msgstr "El archivo log ha sido eliminado exitosamente."
|
353 |
|
354 |
+
#: options/panel10.php:46
|
355 |
msgid "Can't delete the log file, check the file permissions."
|
356 |
msgstr "No se puede eliminar el archivo log, verifica que tengas permisos."
|
357 |
|
358 |
+
#: options/panel10.php:52
|
359 |
msgid "The log file does not exists."
|
360 |
+
msgstr "El archivo log no existe."
|
361 |
|
362 |
+
#: options/panel10.php:66 options/panel10.php:110
|
363 |
msgid "Enable Log Information"
|
364 |
+
msgstr "Habilitar el log de información."
|
365 |
|
366 |
+
#: options/panel10.php:72 options/panel10.php:119
|
367 |
msgid "Enable Auto clean log data"
|
368 |
+
msgstr "Habilitar la auto limpieza del archivo log."
|
369 |
|
370 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
371 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
372 |
msgid "Your settings have been successfully updated."
|
373 |
msgstr "Tu configuración se ha actualizado correctamente."
|
374 |
|
375 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
376 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
377 |
msgid "There was an error updating the following fields:"
|
378 |
msgstr "Se ha producido un error al actualizar los siguientes campos:"
|
379 |
|
380 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
381 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
382 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
383 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
384 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
385 |
+
#: options/panel5.php:210 options/panel5.php:219
|
386 |
msgid "Yes"
|
387 |
msgstr "Sí"
|
388 |
|
389 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
390 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
391 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
392 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
393 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
394 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
395 |
msgid "No"
|
396 |
msgstr "No"
|
397 |
|
398 |
+
#: options/panel10.php:114
|
399 |
msgid ""
|
400 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
401 |
"purposes."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: options/panel10.php:125
|
405 |
msgid "Hourly"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: options/panel10.php:126
|
409 |
msgid "Twice Daily"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: options/panel10.php:127
|
413 |
msgid "Daily"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: options/panel10.php:129
|
417 |
msgid "If enabled, StCR will auto clean your information every day."
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: options/panel10.php:134
|
421 |
msgid "Clean Up Log Archive"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: options/panel10.php:138
|
425 |
msgid ""
|
426 |
"If you want to clean up the log archive please click the following button"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: options/panel10.php:140
|
430 |
msgid "Clean"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: options/panel10.php:147 options/panel10.php:150
|
434 |
msgid "System Information"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
438 |
+
#: options/panel4.php:283 options/panel5.php:265
|
439 |
msgid "Save Changes"
|
440 |
msgstr "Guardar cambios"
|
441 |
|
796 |
#: options/panel4.php:128
|
797 |
msgid ""
|
798 |
"This will be use when the user click reply on their email agent. If not set "
|
799 |
+
"it will be the same as the Sender email address."
|
800 |
msgstr ""
|
801 |
|
802 |
#: options/panel4.php:147
|
814 |
|
815 |
#: options/panel4.php:171
|
816 |
msgid ""
|
817 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
818 |
+
"all the content and save the options.</strong></p>"
|
819 |
msgstr ""
|
820 |
|
821 |
#: options/panel4.php:184
|
866 |
"Contenido del mensaje para quienes solicitan acceso a su página de "
|
867 |
"administración. Etiquetas permitidas: [blog_name] y [manager_link]."
|
868 |
|
869 |
+
#: options/panel5.php:38
|
870 |
+
msgid "Your settings have been successfully reset."
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: options/panel5.php:40
|
874 |
+
msgid "There was an error deleting the options:"
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: options/panel5.php:48 options/panel5.php:108
|
878 |
msgid "Show StCR checkbox / dropdown"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: options/panel5.php:51
|
882 |
msgid "Safetly Uninstall"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: options/panel5.php:54 options/panel5.php:125
|
886 |
msgid "Autopurge requests"
|
887 |
msgstr "Solicitudes de purga automática"
|
888 |
|
889 |
+
#: options/panel5.php:57 options/panel5.php:143
|
890 |
msgid "Enable double check"
|
891 |
msgstr "Activar doble verificación"
|
892 |
|
893 |
+
#: options/panel5.php:60 options/panel5.php:134
|
894 |
msgid "StCR Position"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: options/panel5.php:63 options/panel5.php:151
|
898 |
msgid "Subscribe authors"
|
899 |
msgstr "Suscrito"
|
900 |
|
901 |
+
#: options/panel5.php:66 options/panel5.php:161
|
902 |
msgid "Enable HTML emails"
|
903 |
msgstr "Activar HTML en emails"
|
904 |
|
905 |
+
#: options/panel5.php:69
|
906 |
msgid "HTMLify Links in HTML emails"
|
907 |
msgstr "Convertir enlaces HTML en emails HTML"
|
908 |
|
909 |
+
#: options/panel5.php:72
|
910 |
msgid "Send trackbacks"
|
911 |
msgstr "Enviar trackbacks"
|
912 |
|
913 |
+
#: options/panel5.php:75
|
914 |
msgid "Notify admin"
|
915 |
msgstr "Notificar al administrador"
|
916 |
|
917 |
+
#: options/panel5.php:78 options/panel5.php:199
|
918 |
msgid "Let admin subscribe"
|
919 |
msgstr "Permitir al administrador suscribirse"
|
920 |
|
921 |
+
#: options/panel5.php:81 options/panel5.php:208
|
922 |
msgid "BCC admin on Notifications"
|
923 |
msgstr "Notificaciones"
|
924 |
|
925 |
+
#: options/panel5.php:84 options/panel5.php:217
|
926 |
msgid "Enable Font Awesome"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
930 |
+
msgid "Reset All Options"
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: options/panel5.php:112
|
934 |
msgid ""
|
935 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
936 |
"You should leave it to Yes always. "
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: options/panel5.php:117
|
940 |
msgid "Safely Uninstall"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: options/panel5.php:121
|
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:128
|
950 |
msgid "days"
|
951 |
msgstr "días"
|
952 |
|
953 |
+
#: options/panel5.php:129
|
954 |
msgid ""
|
955 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
956 |
"this feature."
|
958 |
"Eliminar suscripciones pendientes (sin confirmar) después de X días. 0 "
|
959 |
"(cero) desactiva esta función."
|
960 |
|
961 |
+
#: options/panel5.php:138
|
962 |
msgid ""
|
963 |
"If this option is enable the subscription box will be above the submit "
|
964 |
"button in your comment form. Use this when your theme is outdated and using "
|
965 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: options/panel5.php:147
|
969 |
msgid ""
|
970 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
971 |
"misuse)."
|
973 |
"Enviar un mensaje de notificación para confirmar la suscripción (para evitar "
|
974 |
"un uso fraudulento de las direcciones)."
|
975 |
|
976 |
+
#: options/panel5.php:156
|
977 |
msgid ""
|
978 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
979 |
msgstr "Suscribir autores automaticamente a sus artículos (No retroactivo)."
|
980 |
|
981 |
+
#: options/panel5.php:165
|
982 |
msgid ""
|
983 |
"If enabled, will send email messages with content-type = text/html instead "
|
984 |
"of text/plain"
|
986 |
"Si está activado, enviará mensajes de correo electrónico con content-type = "
|
987 |
"text/html en lugar de text/plain"
|
988 |
|
989 |
+
#: options/panel5.php:170
|
990 |
msgid "HTMLify links in emails"
|
991 |
msgstr "Convertir enlaces HTML"
|
992 |
|
993 |
+
#: options/panel5.php:175
|
994 |
msgid ""
|
995 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
996 |
"</a></code> (only when HTML emails enabled)."
|
998 |
"Si está activado, agregará <code><a href=\"\"></a></code> en "
|
999 |
"todos los enlaces de los mensajes (sólo si se activó HTML en emails)."
|
1000 |
|
1001 |
+
#: options/panel5.php:180
|
1002 |
msgid "Process trackbacks"
|
1003 |
msgstr "Procesar trackbacks"
|
1004 |
|
1005 |
+
#: options/panel5.php:184
|
1006 |
msgid ""
|
1007 |
"Notify users when a new trackback or pingback is added to the discussion."
|
1008 |
msgstr ""
|
1009 |
"Notificar a los usuarios cuando se añade un nuevo trackback o pingback a la "
|
1010 |
"discusión."
|
1011 |
|
1012 |
+
#: options/panel5.php:189
|
1013 |
msgid "Track all subscriptions"
|
1014 |
msgstr "Seguir todas las suscripciones"
|
1015 |
|
1016 |
+
#: options/panel5.php:194
|
1017 |
msgid "Notify the administrator when users subscribe without commenting."
|
1018 |
msgstr ""
|
1019 |
"Notificar al administrador cuando los usuarios se suscriban sin comentar."
|
1020 |
|
1021 |
+
#: options/panel5.php:203
|
1022 |
msgid "Let the administrator subscribe to comments when logged in."
|
1023 |
msgstr ""
|
1024 |
"Permitir al administrador suscribirse a los comentarios cuando tiene la "
|
1025 |
"sesión iniciada."
|
1026 |
|
1027 |
+
#: options/panel5.php:212
|
1028 |
msgid "Send a copy of all Notifications to the administrator."
|
1029 |
msgstr "Enviar una copia de todas las Notificaciones al administrador."
|
1030 |
|
1031 |
+
#: options/panel5.php:221
|
1032 |
msgid ""
|
1033 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1034 |
"you theme already add this into your site."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
+
#: options/panel5.php:226
|
1038 |
msgid "StCR Unique Key"
|
1039 |
msgstr "StCR Clave Única"
|
1040 |
|
1041 |
+
#: options/panel5.php:231
|
1042 |
msgid "This Unique Key is not set, please click the following button to "
|
1043 |
msgstr ""
|
1044 |
"Esta Clave Única no se ha establecido, por favor haga clic en el siguiente "
|
1045 |
"botón para"
|
1046 |
|
1047 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1048 |
msgid "Generate"
|
1049 |
msgstr "Generar"
|
1050 |
|
1051 |
+
#: options/panel5.php:243
|
1052 |
msgid ""
|
1053 |
"This Unique Key will be use to send the notification to your subscribers "
|
1054 |
"with more security."
|
1056 |
"Esta Clave Única se utiliza para enviar notificaciones a sus suscriptores "
|
1057 |
"con más seguridad."
|
1058 |
|
1059 |
+
#: options/panel5.php:256
|
1060 |
+
msgid ""
|
1061 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1062 |
+
"with caution."
|
1063 |
+
msgstr ""
|
1064 |
|
1065 |
+
#: options/panel5.php:258
|
1066 |
+
msgid "Yes, Delete Options including subscriptions."
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: options/panel5.php:259
|
1070 |
+
msgid "No, Only delete the StCR Options."
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1074 |
+
msgid ""
|
1075 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1076 |
+
"hidden=\"true\"></i>"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1080 |
msgid ""
|
1081 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1082 |
"consider supporting the author if this plugin made your web site better, "
|
1083 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1084 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1085 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1086 |
"strong>, and to buy some food for my hungry family."
|
1087 |
msgstr ""
|
1088 |
+
|
1089 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1090 |
+
msgid "You can still help"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1094 |
+
msgid ""
|
1095 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1096 |
+
"Please let your readers know what makes your blog better. You can also "
|
1097 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1098 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1099 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: options/panel7.php:26 options/panel8.php:26
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1103 |
msgid "Subscribe to the Beta testers"
|
1104 |
msgstr "Suscribirse a los Beta testers"
|
1105 |
|
1106 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1107 |
msgid ""
|
1108 |
"Before a new Update we release a Beta version so that our current users can "
|
1109 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1115 |
"error. Si quieres unirte a la lista de testers, puedes agregar tu correo "
|
1116 |
"electrónico <a href='http://eepurl.com/biCk1b' target='_blank'>aquí</a>."
|
1117 |
|
1118 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1119 |
msgid "Vote and show your appreciation"
|
1120 |
msgstr "Vota y muestra tu agradecimiento"
|
1121 |
|
1122 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1123 |
msgid ""
|
1124 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1125 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1130 |
"plugins/subscribe-to-comments-reloaded/\">Valóralo</a> en la página de "
|
1131 |
"plugins de WordPress."
|
1132 |
|
1133 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1134 |
msgid "Did you find a Bug on the plugin?"
|
1135 |
msgstr "Encontraste un Error en el plugin?"
|
1136 |
|
1137 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1138 |
msgid ""
|
1139 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1140 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1231 |
msgid "You have request to manage another email address and this is forbidden."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1235 |
msgid "StCR System"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1239 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1240 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1241 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1242 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1243 |
msgid "You do not have sufficient permissions to access this page."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: utils/stcr_manage.php:726
|
1247 |
msgid "Subscriptions"
|
1248 |
msgstr "Suscripciones"
|
1249 |
|
1250 |
+
#: utils/stcr_manage.php:782
|
1251 |
msgid ""
|
1252 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1253 |
msgstr ""
|
1254 |
"¿Necesitas ayuda sobre como usar \"Subscribe to Comments Reloaded\"? Visita "
|
1255 |
"el"
|
1256 |
|
1257 |
+
#: utils/stcr_manage.php:782
|
1258 |
msgid "support forum"
|
1259 |
msgstr "foro de soporte oficial"
|
1260 |
|
1261 |
+
#: utils/stcr_manage.php:783
|
1262 |
msgid "Feeling generous?"
|
1263 |
msgstr "¿Te sientes generoso?"
|
1264 |
|
1265 |
+
#: utils/stcr_manage.php:783
|
1266 |
msgid "Donate a few bucks!"
|
1267 |
msgstr "¡Dona un poco de dinero!"
|
1268 |
|
1269 |
+
#: utils/stcr_upgrade.php:72
|
1270 |
msgid "Important Notice"
|
1271 |
msgstr "Nota Importante"
|
1272 |
|
1273 |
+
#: utils/stcr_upgrade.php:120
|
1274 |
msgid ""
|
1275 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1276 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1278 |
"src=\""
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: utils/stcr_upgrade.php:175
|
1282 |
msgid ""
|
1283 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1284 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1288 |
"<strong>Subscribe to Comments</strong> y se importaron automáticamente en "
|
1289 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1290 |
|
1291 |
+
#: utils/stcr_upgrade.php:175
|
1292 |
msgid ""
|
1293 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1294 |
"Comments to prevent confusion between the two plugins."
|
1296 |
"Se recomienda que <strong>desactive</strong> ahora Subscribe to Comments "
|
1297 |
"para prevenir conflictos entre ambos plugins."
|
1298 |
|
1299 |
+
#: utils/stcr_upgrade.php:176
|
1300 |
msgid ""
|
1301 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1302 |
"that you want to import, you'll need to import that data manually, as only "
|
1306 |
"quieres importar, necesitaras importar esos datos manualmente, ya que sólo "
|
1307 |
"se ejecutará una rutina de importación para evitar la pérdida de datos."
|
1308 |
|
1309 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1310 |
+
#: utils/stcr_upgrade.php:400
|
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 "
|
1315 |
"\"stcr-loading-animation\" src=\""
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: utils/stcr_upgrade.php:250
|
1319 |
msgid ""
|
1320 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1321 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1325 |
"Reply Notification</strong> y se importaron automáticamente en "
|
1326 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1327 |
|
1328 |
+
#: utils/stcr_upgrade.php:250
|
1329 |
msgid ""
|
1330 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1331 |
"Notification to prevent confusion between the two plugins."
|
1333 |
"Se recomienda que <strong>desactive</strong> ahora Comment Reply "
|
1334 |
"Notification para prevenir conflictos entre ambos plugins."
|
1335 |
|
1336 |
+
#: utils/stcr_upgrade.php:397
|
1337 |
msgid ""
|
1338 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1339 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1344 |
"<strong>WP Comment Subscriptions</strong> y se importaron automáticamente en "
|
1345 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1346 |
|
1347 |
+
#: utils/stcr_upgrade.php:397
|
1348 |
msgid ""
|
1349 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1350 |
"Subscriptions to prevent confusion between the two plugins."
|
1352 |
"Se recomienda que <strong>desactive</strong> ahora WP Comment Subscriptions "
|
1353 |
"para prevenir conflictos entre ambos plugins."
|
1354 |
|
1355 |
+
#: utils/stcr_upgrade.php:398
|
1356 |
msgid ""
|
1357 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1358 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1364 |
"importar esos datos manualmente, ya que sólo se ejecutará una rutina de "
|
1365 |
"importación para evitar la pérdida de datos."
|
1366 |
|
1367 |
+
#: utils/stcr_upgrade.php:399
|
1368 |
msgid ""
|
1369 |
"<strong>Note:</strong> If you were previously using the "
|
1370 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1378 |
"<code>subscribe_reloaded_show()</code> y <code>[subscribe-url]</code> "
|
1379 |
"respectivamente."
|
1380 |
|
1381 |
+
#: utils/stcr_upgrade.php:413
|
1382 |
msgid ""
|
1383 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1384 |
msgstr "Aviso Importante de Subscribe to Comments Reloaded"
|
1385 |
|
1386 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1387 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1388 |
msgid ""
|
1389 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1390 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: utils/stcr_upgrade.php:415
|
1394 |
msgid ""
|
1395 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1396 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1397 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1398 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1399 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1400 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: utils/stcr_upgrade.php:417
|
1404 |
msgid ""
|
1405 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1406 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1408 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: utils/stcr_upgrade.php:428
|
1412 |
msgid ""
|
1413 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1414 |
"160106."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: utils/stcr_upgrade.php:429
|
1418 |
msgid ""
|
1419 |
"This version includes many changes and fixes to improve your experience with "
|
1420 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1421 |
"email templates, Subscription Checkbox position, and more!"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1425 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1426 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1427 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1428 |
msgid ""
|
1429 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1430 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1432 |
"class=\"stcr-loading-animation\" src=\""
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: utils/stcr_upgrade.php:443
|
1436 |
msgid ""
|
1437 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1438 |
"160115."
|
1439 |
msgstr "Aviso Importante de Subscribe to Comments Reloaded"
|
1440 |
|
1441 |
+
#: utils/stcr_upgrade.php:444
|
1442 |
msgid ""
|
1443 |
"This version includes fixes to broken links while managing your subscriptions"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: utils/stcr_upgrade.php:458
|
1447 |
#, fuzzy
|
1448 |
msgid ""
|
1449 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1450 |
"160831"
|
1451 |
msgstr "Aviso Importante de Subscribe to Comments Reloaded"
|
1452 |
|
1453 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1454 |
msgid "This version includes fixes to many bugs and also new features, "
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1458 |
msgid ""
|
1459 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1460 |
"address. This will help the subscribers to use the Reply option in their "
|
1461 |
"email agents."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1465 |
msgid ""
|
1466 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1467 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1471 |
msgid ""
|
1472 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1473 |
"without loosing your subscriptions. You can use this option also for reset "
|
1474 |
"all the settings, see the FAQ."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1478 |
msgid ""
|
1479 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1480 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1481 |
"Post Type."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1485 |
msgid ""
|
1486 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1487 |
"options to and the management link only by email and not to display it on "
|
1488 |
"the request link page."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: utils/stcr_upgrade.php:480
|
1492 |
msgid ""
|
1493 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1494 |
"160902"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: utils/stcr_upgrade.php:483
|
1498 |
msgid ""
|
1499 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1500 |
"previous 160831 version."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1504 |
msgid "Settings"
|
1505 |
msgstr "Configuración"
|
1506 |
|
1507 |
+
#: utils/stcr_upgrade.php:504
|
1508 |
msgid ""
|
1509 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1510 |
"160915"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1514 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1515 |
msgid "This version includes fixes and improvements, "
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: utils/stcr_upgrade.php:508
|
1519 |
msgid ""
|
1520 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1521 |
"dropdown."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: utils/stcr_upgrade.php:509
|
1525 |
msgid ""
|
1526 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1530 |
+
#: utils/stcr_upgrade.php:576
|
1531 |
msgid "Log Settings"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1535 |
+
#: utils/stcr_upgrade.php:580
|
1536 |
msgid ""
|
1537 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: utils/stcr_upgrade.php:529
|
1541 |
msgid ""
|
1542 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1543 |
"enable."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: utils/stcr_upgrade.php:530
|
1547 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1551 |
+
#: utils/stcr_upgrade.php:590
|
1552 |
msgid "The support of this plugin is given thanks to your donations."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: utils/stcr_upgrade.php:536
|
1556 |
msgid ""
|
1557 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1558 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1562 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: utils/stcr_upgrade.php:557
|
1566 |
msgid ""
|
1567 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1568 |
"installation regarding a database table creation."
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: utils/stcr_upgrade.php:558
|
1572 |
msgid ""
|
1573 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1574 |
"Awesome."
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: utils/stcr_upgrade.php:563
|
1578 |
msgid ""
|
1579 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1580 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1585 |
"for the users that have supported the plugin development."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: utils/stcr_upgrade.php:584
|
1589 |
+
msgid ""
|
1590 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1591 |
+
"issues."
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: utils/stcr_upgrade.php:585
|
1595 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1596 |
+
msgstr ""
|
1597 |
+
|
1598 |
+
#: utils/stcr_upgrade.php:586
|
1599 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: utils/stcr_upgrade.php:591
|
1603 |
+
msgid ""
|
1604 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1605 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1606 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1607 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1608 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1609 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1610 |
+
"Thanks for all the users that have supported the plugin development."
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: utils/stcr_utils.php:196
|
1614 |
+
msgid ""
|
1615 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1616 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1617 |
+
msgstr ""
|
1618 |
+
"Notificarme los nuevos comentarios por correo electrónico. También puedes <a "
|
1619 |
+
"href='[subscribe_link]'>suscribirte</a> sin comentar."
|
1620 |
+
|
1621 |
+
#: utils/stcr_utils.php:197
|
1622 |
+
msgid ""
|
1623 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1624 |
+
"subscriptions."
|
1625 |
+
msgstr ""
|
1626 |
+
"Te has suscrito a esta entrada. <a href='[manager_link]'>Gestionar</a> tus "
|
1627 |
+
"suscripciones."
|
1628 |
+
|
1629 |
+
#: utils/stcr_utils.php:198
|
1630 |
+
msgid ""
|
1631 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1632 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1633 |
+
msgstr ""
|
1634 |
+
"Tu suscripción a esta entrada necesita ser confirmada. <a "
|
1635 |
+
"href='[manager_link]'>Gestiona tus suscripciones</a>."
|
1636 |
+
|
1637 |
+
#: utils/stcr_utils.php:199
|
1638 |
+
msgid ""
|
1639 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1640 |
+
msgstr ""
|
1641 |
+
"Puedes <a href='[manager_link]'>gestionar las suscripciones</a> de esta "
|
1642 |
+
"entrada."
|
1643 |
+
|
1644 |
+
#: utils/stcr_utils.php:205
|
1645 |
+
msgid ""
|
1646 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1647 |
+
"will send you a message containing the link to access your personal "
|
1648 |
+
"management page."
|
1649 |
+
msgstr ""
|
1650 |
+
"Para gestionar tus suscripciones introduce tu correo electrónico a "
|
1651 |
+
"continuación. Te enviaremos un mensaje con un enlace para acceder a tu "
|
1652 |
+
"página de administración."
|
1653 |
+
|
1654 |
+
#: utils/stcr_utils.php:206
|
1655 |
+
msgid ""
|
1656 |
+
"Thank you for using our subscription service. Your request has been "
|
1657 |
+
"completed, and you should receive an email with the management link in a few "
|
1658 |
+
"minutes."
|
1659 |
+
msgstr ""
|
1660 |
+
"Gracias por usar nuestro servicio de suscripción. Tu petición se ha "
|
1661 |
+
"completada con éxito, deberías recibir un mensaje en tu buzón de correo "
|
1662 |
+
"electrónico con con el enlace de administración en unos minutos."
|
1663 |
+
|
1664 |
+
#: utils/stcr_utils.php:207
|
1665 |
+
msgid ""
|
1666 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1667 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1668 |
+
"form here below and you're all set."
|
1669 |
+
msgstr ""
|
1670 |
+
"Puedes seguir la discusión de <strong>[post_title]</strong> sin tener que "
|
1671 |
+
"dejar un comentario. Introduce tu dirección de correo electrónico en el "
|
1672 |
+
"siguiente formulario y listo."
|
1673 |
+
|
1674 |
+
#: utils/stcr_utils.php:208
|
1675 |
+
msgid ""
|
1676 |
+
"Thank you for using our subscription service. Your request has been "
|
1677 |
+
"completed. You will receive a notification email every time a new comment to "
|
1678 |
+
"this article is approved and posted by the administrator."
|
1679 |
+
msgstr ""
|
1680 |
+
"Gracias por usar nuestro servicio de suscripción. Tu petición se ha "
|
1681 |
+
"completado. Recibirás un mensaje de notificación cada que vez que un nuevo "
|
1682 |
+
"comentario se publique o apruebe en esta entrada."
|
1683 |
+
|
1684 |
+
#: utils/stcr_utils.php:209
|
1685 |
+
msgid ""
|
1686 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1687 |
+
"request, please check your email for the verification message and follow the "
|
1688 |
+
"instructions."
|
1689 |
+
msgstr ""
|
1690 |
+
"Gracias por usar nuestro servicio de suscripción. Para confirmar tu "
|
1691 |
+
"petición, por favor comprueba si has recibido un mensaje en tu buzón de "
|
1692 |
+
"correo electrónico y sigue las instrucciones."
|
1693 |
+
|
1694 |
+
#: utils/stcr_utils.php:210
|
1695 |
+
msgid ""
|
1696 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1697 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1698 |
+
msgstr ""
|
1699 |
+
"Para cancelar o suspender una o más suscripciones, selecciona la "
|
1700 |
+
"correspondiente casilla de verificación y pulsa en el botón del final de la "
|
1701 |
+
"lista."
|
1702 |
+
|
1703 |
+
#: utils/stcr_utils.php:211
|
1704 |
+
msgid ""
|
1705 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1706 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1707 |
+
"You are currently subscribed to:"
|
1708 |
+
msgstr ""
|
1709 |
+
"Para cancelar o suspender una o más suscripciones, selecciona la "
|
1710 |
+
"correspondiente casilla de verificación y pulsa en el botón del final de la "
|
1711 |
+
"lista. Actualmente estás suscrito a:"
|
1712 |
+
|
1713 |
+
#: utils/stcr_utils.php:215
|
1714 |
+
msgid "There is a new comment to [post_title]"
|
1715 |
+
msgstr "Hay un nuevo comentario en [post_title]"
|
1716 |
+
|
1717 |
+
#: utils/stcr_utils.php:216
|
1718 |
+
msgid ""
|
1719 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1720 |
+
"\n"
|
1721 |
+
"<hr />\n"
|
1722 |
+
"<strong>Comment link:</strong> <a href="
|
1723 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1724 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1725 |
+
"\n"
|
1726 |
+
"<strong>Comment:</strong>\n"
|
1727 |
+
"[comment_content]\n"
|
1728 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1729 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1730 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1731 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: utils/stcr_utils.php:217
|
1735 |
+
msgid "Please confirm your subscription to [post_title]"
|
1736 |
+
msgstr "Por favor, confirma tu suscripción a [post_title]"
|
1737 |
+
|
1738 |
+
#: utils/stcr_utils.php:218
|
1739 |
+
msgid ""
|
1740 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1741 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1742 |
+
"\n"
|
1743 |
+
"Please confirm your request by clicking on this link:\n"
|
1744 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1745 |
+
msgstr ""
|
1746 |
+
|
1747 |
+
#: utils/stcr_utils.php:219
|
1748 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1749 |
+
msgstr "Gestiona tus suscripciones en [blog_name]"
|
1750 |
+
|
1751 |
+
#: utils/stcr_utils.php:220
|
1752 |
+
msgid ""
|
1753 |
+
"You have requested to manage your subscriptions to the articles on "
|
1754 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1755 |
+
msgstr ""
|
1756 |
+
|
1757 |
+
#: utils/stcr_utils.php:221
|
1758 |
+
msgid ""
|
1759 |
+
"You have requested to manage your subscriptions to the articles on "
|
1760 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1761 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1762 |
+
msgstr ""
|
1763 |
+
|
1764 |
+
#: utils/stcr_utils.php:300
|
1765 |
msgid "StCR Notification"
|
1766 |
msgstr "Notificaciones"
|
1767 |
|
1773 |
msgid "All"
|
1774 |
msgstr "Todo"
|
1775 |
|
1776 |
+
#~ msgid "You can help"
|
1777 |
+
#~ msgstr "Puedes ayudar"
|
1778 |
+
|
1779 |
+
#~ msgid "Support the developers"
|
1780 |
+
#~ msgstr "Apoya a los desarrolladores"
|
1781 |
+
|
1782 |
+
#~ msgid ""
|
1783 |
+
#~ "How valuable is the feature offered by this plugin to your visitors? "
|
1784 |
+
#~ "please consider supporting the author if this plugin made your web site "
|
1785 |
+
#~ "better, especially if you are making money out of it. Any donation "
|
1786 |
+
#~ "received will be reinvested in the development of <strong>Subscribe to "
|
1787 |
+
#~ "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1788 |
+
#~ msgstr ""
|
1789 |
+
#~ "¿Qué valor tienen las características que ofrece este plugin para tus "
|
1790 |
+
#~ "visitantes? Por favor, considera apoyar al autor si este plugin hace tu "
|
1791 |
+
#~ "web mejor, especialmente si estás haciendo dinero con ella. Cualquier "
|
1792 |
+
#~ "donación recibida será reinvertida en el desarrollo de <strong>Subscribe "
|
1793 |
+
#~ "to Comments Reloaded</strong>, y en comprar algo de comida para mi "
|
1794 |
+
#~ "familia hambrienta."
|
1795 |
+
|
1796 |
+
#~ msgid "Don't want to donate? You can still help"
|
1797 |
+
#~ msgstr "¿No quieres donar? Todavía puedes ayudar"
|
1798 |
+
|
1799 |
+
#~ msgid ""
|
1800 |
+
#~ "If you don't want to donate money, please consider blogging about my "
|
1801 |
+
#~ "plugin with a link to the plugin's page. Please let your readers know "
|
1802 |
+
#~ "what makes your blog better. You can also contribute donating your time: "
|
1803 |
+
#~ "do not hesitate to send me bug reports, your localization files, ideas on "
|
1804 |
+
#~ "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1805 |
+
#~ "Whatever you do, thanks for using my plugin!"
|
1806 |
+
#~ msgstr ""
|
1807 |
+
#~ "Si no quieres donar dinero, por favor considera escribir una entrada en "
|
1808 |
+
#~ "tu sitio acerca de mi plugin con un enlace hacia la página del plugin. "
|
1809 |
+
#~ "Deja que tus lectores sepan lo que hace tu blog mejor. También puedes "
|
1810 |
+
#~ "contribuir donando tu tiempo: no dudes en enviarme informes de fallos en "
|
1811 |
+
#~ "el plugin, traducciones, ideas sobre cómo mejorar <strong>Subscribe to "
|
1812 |
+
#~ "Comments Reloaded</strong> y más. Hagas lo que hagas, ¡gracias por usar "
|
1813 |
+
#~ "mi plugin!"
|
1814 |
+
|
1815 |
+
#~ msgid ""
|
1816 |
+
#~ "There is a new comment to [post_title].\n"
|
1817 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1818 |
+
#~ "Author: [comment_author]\n"
|
1819 |
+
#~ "Comment:\n"
|
1820 |
+
#~ "[comment_content]\n"
|
1821 |
+
#~ "Permalink: [post_permalink]\n"
|
1822 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1823 |
+
#~ msgstr ""
|
1824 |
+
#~ "Hay un nuevo comentario en [post_title].\n"
|
1825 |
+
#~ "Enlace al comentario: [comment_permalink]\n"
|
1826 |
+
#~ "Autor: [comment_author]\n"
|
1827 |
+
#~ "Comentario:\n"
|
1828 |
+
#~ "[comment_content]\n"
|
1829 |
+
#~ "Enlace permanente: [post_permalink]\n"
|
1830 |
+
#~ "Administrar tus suscripciones: [manager_link]"
|
1831 |
+
|
1832 |
+
#~ msgid ""
|
1833 |
+
#~ "You have requested to be notified every time a new comment is added to:\n"
|
1834 |
+
#~ "[post_permalink]\n"
|
1835 |
+
#~ "\n"
|
1836 |
+
#~ "Please confirm your request by clicking on this link:\n"
|
1837 |
+
#~ "[confirm_link]"
|
1838 |
+
#~ msgstr ""
|
1839 |
+
#~ "Has solicitado que te notifiquemos cada vez que se escriba un comentario "
|
1840 |
+
#~ "en:\n"
|
1841 |
+
#~ "[post_permalink]\n"
|
1842 |
+
#~ "\n"
|
1843 |
+
#~ "Por favor, confirma tu petición pulsando el siguiente enlace:\n"
|
1844 |
+
#~ "[confirm_link]"
|
1845 |
+
|
1846 |
+
#~ msgid ""
|
1847 |
+
#~ "You have requested to manage your subscriptions to the articles on "
|
1848 |
+
#~ "[blog_name]. Follow this link to access your personal page:\n"
|
1849 |
+
#~ "[manager_link]"
|
1850 |
+
#~ msgstr ""
|
1851 |
+
#~ "Has solicitado gestionar tus suscripciones a las entradas de [blog_name]. "
|
1852 |
+
#~ "Sigue el siguiente enlace para acceder a tu página de suscripciones:\n"
|
1853 |
+
#~ "[manager_link]"
|
1854 |
+
|
1855 |
#~ msgid ""
|
1856 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1857 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: fa\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "مدیریت اشتراک ها"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "فرم دیدگاهها"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "صفحهی مدیریت"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "آگاه سازی ها"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "تنظیمات"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "شما هم می توانید کمک کنید"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr " پشتیبانی"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr "حمایت مالی / فنی"
|
52 |
|
@@ -54,8 +50,7 @@ msgstr "حمایت مالی / فنی"
|
|
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 |
|
@@ -65,22 +60,20 @@ msgstr "نوشته:"
|
|
65 |
msgid "Email"
|
66 |
msgstr "ایمیل"
|
67 |
|
68 |
-
#: options/panel1-add-subscription.php:20
|
69 |
-
#: options/panel1
|
70 |
-
#: options/panel1.php:
|
71 |
msgid "Status"
|
72 |
msgstr "وضعیت"
|
73 |
|
74 |
-
#: options/panel1-add-subscription.php:22
|
75 |
-
#: options/panel1
|
76 |
-
#:
|
77 |
-
#: templates/user.php:76
|
78 |
msgid "Active"
|
79 |
msgstr "فعال"
|
80 |
|
81 |
-
#: options/panel1-add-subscription.php:23
|
82 |
-
#: options/panel1
|
83 |
-
#: options/panel1.php:80
|
84 |
msgid "Replies only"
|
85 |
msgstr "فقط پاسخ ها"
|
86 |
|
@@ -88,8 +81,8 @@ msgstr "فقط پاسخ ها"
|
|
88 |
msgid "Ask user to confirm"
|
89 |
msgstr "پرسش از کاربر برای تایید"
|
90 |
|
91 |
-
#: options/panel1-add-subscription.php:26
|
92 |
-
#: options/panel1
|
93 |
msgid "Update"
|
94 |
msgstr "به روزرسانی"
|
95 |
|
@@ -211,8 +204,8 @@ 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"
|
@@ -347,95 +340,93 @@ msgstr "به روزرسانی اشتراک ها"
|
|
347 |
msgid "Sorry, no subscriptions match your search criteria."
|
348 |
msgstr "متاسفانه هیچ اشتراکی با معیار شما انطباق نداشت."
|
349 |
|
350 |
-
#: options/panel10.php:
|
351 |
msgid "The log file has been successfully deleted."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: options/panel10.php:
|
355 |
msgid "Can't delete the log file, check the file permissions."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: options/panel10.php:
|
359 |
msgid "The log file does not exists."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: options/panel10.php:
|
363 |
msgid "Enable Log Information"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: options/panel10.php:
|
367 |
msgid "Enable Auto clean log data"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: options/panel10.php:
|
371 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
372 |
msgid "Your settings have been successfully updated."
|
373 |
msgstr "تنظیمات شما با موفقیت به روز شد."
|
374 |
|
375 |
-
#: options/panel10.php:
|
376 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
377 |
msgid "There was an error updating the following fields:"
|
378 |
msgstr "یک خطا در به روزرسانی فیلدهای زیر رخ داد:"
|
379 |
|
380 |
-
#: options/panel10.php:
|
381 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
msgid "Yes"
|
387 |
msgstr "بله"
|
388 |
|
389 |
-
#: options/panel10.php:
|
390 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
msgid "No"
|
396 |
msgstr "نه"
|
397 |
|
398 |
-
#: options/panel10.php:
|
399 |
msgid ""
|
400 |
-
"If enabled, will log information of the plugin. Helpful for debugging "
|
401 |
-
"purposes."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: options/panel10.php:
|
405 |
msgid "Hourly"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: options/panel10.php:
|
409 |
msgid "Twice Daily"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: options/panel10.php:
|
413 |
msgid "Daily"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: options/panel10.php:
|
417 |
msgid "If enabled, StCR will auto clean your information every day."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: options/panel10.php:
|
421 |
msgid "Clean Up Log Archive"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: options/panel10.php:
|
425 |
-
msgid ""
|
426 |
-
"If you want to clean up the log archive please click the following button"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: options/panel10.php:
|
430 |
msgid "Clean"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: options/panel10.php:
|
434 |
msgid "System Information"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: options/panel10.php:
|
438 |
-
#: options/panel4.php:283 options/panel5.php:
|
439 |
msgid "Save Changes"
|
440 |
msgstr "ذخیره ی تغییرات"
|
441 |
|
@@ -659,8 +650,8 @@ msgstr ""
|
|
659 |
#: options/panel3.php:109
|
660 |
msgid ""
|
661 |
"The permalink for your management page (something like <code>/manage-"
|
662 |
-
"subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</"
|
663 |
-
"
|
664 |
"structure."
|
665 |
msgstr ""
|
666 |
"پیوند یکتا به صفحه ی مدیریت شما، (چیزی شبیه <code>/manage-subscriptions</"
|
@@ -677,8 +668,8 @@ msgstr ""
|
|
677 |
|
678 |
#: options/panel3.php:121
|
679 |
msgid ""
|
680 |
-
"Specify your custom HTML code to be added to the HEAD section of the page. "
|
681 |
-
"
|
682 |
msgstr ""
|
683 |
"کدهای HTML سفارشی را که می خواهید به بخش head در صفحه اضافه شود تعیین کنید. "
|
684 |
"برای مقادیر پارامترها فقط از کوتیشن <strong>تکی </strong> استفاده نمایید."
|
@@ -709,16 +700,16 @@ msgstr ""
|
|
709 |
|
710 |
#: options/panel3.php:198
|
711 |
msgid ""
|
712 |
-
"Thank you note shown after the subscription request has been processed "
|
713 |
-
"
|
714 |
msgstr ""
|
715 |
"پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت غیرفعال بودن نیاز به "
|
716 |
"تایید ایمیلی). برچسب های مجاز: [post_title], [post_permalink]"
|
717 |
|
718 |
#: options/panel3.php:216
|
719 |
msgid ""
|
720 |
-
"Thank you note shown after the subscription request has been processed "
|
721 |
-
"
|
722 |
msgstr ""
|
723 |
"پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت فعال بودن نیاز به "
|
724 |
"تایید ایمیلی). تگ های مجاز: [post_title], [post_permalink]"
|
@@ -769,14 +760,13 @@ msgstr ""
|
|
769 |
|
770 |
#: options/panel4.php:101
|
771 |
msgid ""
|
772 |
-
"Name to use for the \"from\" field when sending a new notification to the "
|
773 |
-
"user."
|
774 |
msgstr "نام فرستنده هنگام ارسال یادآور جدید به کاربران"
|
775 |
|
776 |
#: options/panel4.php:115
|
777 |
msgid ""
|
778 |
-
"Email address to use for the \"from\" field when sending a new notification "
|
779 |
-
"
|
780 |
msgstr "نشانی رایان نامه ی فرستنده هنگام ارسال یادآور جدید به کاربران"
|
781 |
|
782 |
#: options/panel4.php:121
|
@@ -785,7 +775,7 @@ msgstr "فقط پاسخ ها"
|
|
785 |
|
786 |
#: options/panel4.php:128
|
787 |
msgid ""
|
788 |
-
"This will be use when the user click reply on their email agent. If not set "
|
789 |
"will be the same as the Sender email address."
|
790 |
msgstr ""
|
791 |
|
@@ -803,9 +793,13 @@ msgid ""
|
|
803 |
msgstr ""
|
804 |
|
805 |
#: options/panel4.php:171
|
|
|
|
|
|
|
|
|
806 |
msgid ""
|
807 |
-
"<p><strong>Note: To get a default template clear all
|
808 |
-
"options.</strong></p>"
|
809 |
msgstr ""
|
810 |
"<p><strong>توجه : برای داشتن یک قالب تمیز، محتوا را پاک کنید و تنظیمات را "
|
811 |
"ذخیره نمایید.</strong></p>"
|
@@ -824,8 +818,8 @@ msgstr ""
|
|
824 |
|
825 |
#: options/panel4.php:217
|
826 |
msgid ""
|
827 |
-
"Subject of the mail sent to those who request to access their management "
|
828 |
-
"
|
829 |
msgstr ""
|
830 |
"موضوع ایمیل ارسالی به کسانی که درخواست دسترسی به صفحه مدیریتشان را دارند : "
|
831 |
"[blog_name]"
|
@@ -853,80 +847,96 @@ msgid ""
|
|
853 |
"Content of the One Click confirmation. Allowed tags: [post_title], [blog_name]"
|
854 |
msgstr "محتوای تأیید با یک کلیک. تگ های مجاز: [post_title]"
|
855 |
|
856 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
857 |
msgid "Show StCR checkbox / dropdown"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: options/panel5.php:
|
861 |
msgid "Safetly Uninstall"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: options/panel5.php:
|
865 |
msgid "Autopurge requests"
|
866 |
msgstr ""
|
867 |
"زوال خودکار درخواست های اشتراک که طی مدت معین مورد تایید کاربر قرار نگرفته"
|
868 |
|
869 |
-
#: options/panel5.php:
|
870 |
msgid "Enable double check"
|
871 |
msgstr "حالت بررسی مضاعف را فعال کن"
|
872 |
|
873 |
-
#: options/panel5.php:
|
874 |
msgid "StCR Position"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: options/panel5.php:
|
878 |
msgid "Subscribe authors"
|
879 |
msgstr "اشتراک مؤلفان"
|
880 |
|
881 |
-
#: options/panel5.php:
|
882 |
msgid "Enable HTML emails"
|
883 |
msgstr "فعال کردن ایمیل های HTML"
|
884 |
|
885 |
-
#: options/panel5.php:
|
886 |
msgid "HTMLify Links in HTML emails"
|
887 |
msgstr "پیوند های HTMLify در ایمیل های HTML"
|
888 |
|
889 |
-
#: options/panel5.php:
|
890 |
msgid "Send trackbacks"
|
891 |
msgstr "ارسال بازآگاهی"
|
892 |
|
893 |
-
#: options/panel5.php:
|
894 |
msgid "Notify admin"
|
895 |
msgstr "سرپرست را مطلع کن"
|
896 |
|
897 |
-
#: options/panel5.php:
|
898 |
msgid "Let admin subscribe"
|
899 |
msgstr "به سرپرست اجازه ی مشترک شدن بده"
|
900 |
|
901 |
-
#: options/panel5.php:
|
902 |
msgid "BCC admin on Notifications"
|
903 |
msgstr "مدیر را در BCC یادآوری ها قرار بده"
|
904 |
|
905 |
-
#: options/panel5.php:
|
906 |
msgid "Enable Font Awesome"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
910 |
msgid ""
|
911 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
912 |
"You should leave it to Yes always. "
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: options/panel5.php:
|
916 |
msgid "Safely Uninstall"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: options/panel5.php:
|
920 |
msgid ""
|
921 |
-
"This option will allow you to delete the plugin with WordPress without "
|
922 |
-
"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: options/panel5.php:
|
926 |
msgid "days"
|
927 |
msgstr "روز"
|
928 |
|
929 |
-
#: options/panel5.php:
|
930 |
msgid ""
|
931 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables this "
|
932 |
"feature."
|
@@ -934,95 +944,93 @@ msgstr ""
|
|
934 |
"اشتراک هایی که بیش از این تعداد روز منتظر تایید مانده و پاسخی نگرفته اند را "
|
935 |
"حذف کن. عدد 0 به معنای عدم استفاده از این قابلیت است."
|
936 |
|
937 |
-
#: options/panel5.php:
|
938 |
msgid ""
|
939 |
"If this option is enable the subscription box will be above the submit button "
|
940 |
"in your comment form. Use this when your theme is outdated and using the "
|
941 |
"incorrect WordPress Hooks and the checkbox is not displayed."
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: options/panel5.php:
|
945 |
msgid ""
|
946 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
947 |
"misuse)."
|
948 |
msgstr ""
|
949 |
-
"ارسال یک ایمیل آگاه سازی جهت تأیید مشترک ( به منظور جلوگیری از استفاده از "
|
950 |
-
"
|
951 |
|
952 |
-
#: options/panel5.php:
|
953 |
msgid "Automatically subscribe authors to their own articles (not retroactive)."
|
954 |
msgstr ""
|
955 |
-
"به طور خودکار نویسندگان را مشترک یادداشت هایشان کن ( شامل یادداشت های موجود "
|
956 |
-
"
|
957 |
|
958 |
-
#: options/panel5.php:
|
959 |
msgid ""
|
960 |
"If enabled, will send email messages with content-type = text/html instead of "
|
961 |
"text/plain"
|
962 |
msgstr ""
|
963 |
-
"اگر فعال شود ما پیام ها را با content-type = text/html به جای text/plain "
|
964 |
-
"
|
965 |
|
966 |
-
#: options/panel5.php:
|
967 |
msgid "HTMLify links in emails"
|
968 |
msgstr "پیوند های HTMLify در ایمیل ها"
|
969 |
|
970 |
-
#: options/panel5.php:
|
971 |
msgid ""
|
972 |
-
"If enabled, will wrap all links in messages with <code><a href=\"\">
|
973 |
-
"
|
974 |
msgstr ""
|
975 |
-
"اگر فعال شود ما تمام پیوند ها را با <code><a href=\"\"></a></"
|
976 |
-
"
|
977 |
|
978 |
-
#: options/panel5.php:
|
979 |
msgid "Process trackbacks"
|
980 |
msgstr "بازآگاهی فرآیند"
|
981 |
|
982 |
-
#: options/panel5.php:
|
983 |
-
msgid ""
|
984 |
-
"Notify users when a new trackback or pingback is added to the discussion."
|
985 |
msgstr ""
|
986 |
"کاربران را مطلع کن اگر یک بازآگاهی یا ارجاع مستقیم به دیدگاه ها اضافه شود."
|
987 |
|
988 |
-
#: options/panel5.php:
|
989 |
msgid "Track all subscriptions"
|
990 |
msgstr "تمام اشتراک ها را رهگیری کن"
|
991 |
|
992 |
-
#: options/panel5.php:
|
993 |
msgid "Notify the administrator when users subscribe without commenting."
|
994 |
msgstr "وقتی کاربران بدون دیدگاه گذاری مشترک می شوند سرپرست را مطلع کن."
|
995 |
|
996 |
-
#: options/panel5.php:
|
997 |
msgid "Let the administrator subscribe to comments when logged in."
|
998 |
msgstr ""
|
999 |
"وقتی سرپرست وارد سایت می گردد به او اجازه ی مشترک شدن در دیدگاه ها را بده."
|
1000 |
|
1001 |
-
#: options/panel5.php:
|
1002 |
msgid "Send a copy of all Notifications to the administrator."
|
1003 |
msgstr "یک کپی از تمام آگاه سازی ها برای مدیر سایت بفرست."
|
1004 |
|
1005 |
-
#: options/panel5.php:
|
1006 |
msgid ""
|
1007 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1008 |
"you theme already add this into your site."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: options/panel5.php:
|
1012 |
msgid "StCR Unique Key"
|
1013 |
msgstr "شناسه منحصر بفرد StCR"
|
1014 |
|
1015 |
-
#: options/panel5.php:
|
1016 |
msgid "This Unique Key is not set, please click the following button to "
|
1017 |
msgstr ""
|
1018 |
-
"این شناسه منحصر بفرد تنظیم نشده است، برای این منظور لطفاً روی این دکمه کلیک "
|
1019 |
-
"کنید"
|
1020 |
|
1021 |
-
#: options/panel5.php:
|
1022 |
msgid "Generate"
|
1023 |
msgstr "ایجاد"
|
1024 |
|
1025 |
-
#: options/panel5.php:
|
1026 |
msgid ""
|
1027 |
"This Unique Key will be use to send the notification to your subscribers with "
|
1028 |
"more security."
|
@@ -1030,36 +1038,69 @@ msgstr ""
|
|
1030 |
"این شناسه منحصر بفرد جهت ارسال آگاه سازی ها به مشترکین با امنیت بیشتر استفاده "
|
1031 |
"می شود."
|
1032 |
|
1033 |
-
#: options/
|
1034 |
-
msgid "
|
1035 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1036 |
|
1037 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
msgid ""
|
1039 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1040 |
"consider supporting the author if this plugin made your web site better, "
|
1041 |
-
"especially if you are making money out of it
|
|
|
1042 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1043 |
"strong>, and to buy some food for my hungry family."
|
1044 |
msgstr ""
|
1045 |
-
"قابلیت هایی که توسط این افزونه ارائه شده اند چقدر برای بازدید کنندگان شما "
|
1046 |
-
"
|
1047 |
-
"
|
1048 |
-
"
|
1049 |
-
"
|
1050 |
|
1051 |
-
#: options/panel7.php:
|
1052 |
-
|
1053 |
-
|
|
|
|
|
1054 |
|
1055 |
-
#: options/panel7.php:
|
1056 |
-
|
1057 |
-
|
1058 |
-
"
|
1059 |
-
"
|
1060 |
-
"
|
1061 |
-
"
|
1062 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1063 |
msgstr ""
|
1064 |
"اگر شما قصد پرداخت وجه در قبال این افزونه را ندارید لطفأ با قرار دادن لینک آن "
|
1065 |
"در سایت یا وبلاگ خود و معرفی آن حمایتش کنید؛ شما همچنین به خوانندگان خود "
|
@@ -1068,11 +1109,11 @@ msgstr ""
|
|
1068 |
"<strong>Subscribe to Comments Reloaded</strong> حمایتش کنید. فارغ از همه این "
|
1069 |
"ها، متشکرم که از افزونه ی من استفاده می کنید!"
|
1070 |
|
1071 |
-
#: options/panel7.php:
|
1072 |
msgid "Subscribe to the Beta testers"
|
1073 |
msgstr "به تست کنندگان نسخه بتا بپیوندید"
|
1074 |
|
1075 |
-
#: options/panel7.php:
|
1076 |
msgid ""
|
1077 |
"Before a new Update we release a Beta version so that our current users can "
|
1078 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1083,25 +1124,25 @@ msgstr ""
|
|
1083 |
"خواهید به جمع تست کنندگان بپیوندید شما می توانید ایمیل خود را <a href='http://"
|
1084 |
"eepurl.com/biCk1b' target='_blank'>از اینجا</a> اضافه کنید."
|
1085 |
|
1086 |
-
#: options/panel7.php:
|
1087 |
msgid "Vote and show your appreciation"
|
1088 |
msgstr "با رای دادن قدردانی کنید"
|
1089 |
|
1090 |
-
#: options/panel7.php:
|
1091 |
msgid ""
|
1092 |
-
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1093 |
-
"
|
1094 |
"subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
|
1095 |
msgstr ""
|
1096 |
-
"<strong>Subscribe to Comments Reloaded</strong> را به دیگران توصیه کنید اگر "
|
1097 |
-
"
|
1098 |
"wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">رأی بدهید</a>."
|
1099 |
|
1100 |
-
#: options/panel8.php:
|
1101 |
msgid "Did you find a Bug on the plugin?"
|
1102 |
msgstr "آیا ایرادی بر روی افزونه یافته اید؟"
|
1103 |
|
1104 |
-
#: options/panel8.php:
|
1105 |
msgid ""
|
1106 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1107 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1123,9 +1164,9 @@ msgid ""
|
|
1123 |
"plugin a helpful tool we will use your donation to invest on support and "
|
1124 |
"developing time."
|
1125 |
msgstr ""
|
1126 |
-
"هر گونه مشارکت شما بسیار ارزشمند است، پس چنانچه این افزونه را ارزشمند می "
|
1127 |
-
"
|
1128 |
-
"
|
1129 |
|
1130 |
#: templates/author.php:67 templates/user.php:83
|
1131 |
msgid "Title"
|
@@ -1200,208 +1241,53 @@ msgstr ""
|
|
1200 |
msgid "You have request to manage another email address and this is forbidden."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: utils/stcr_manage.php:
|
1204 |
-
msgid ""
|
1205 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1206 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1207 |
-
msgstr ""
|
1208 |
-
"مرا با ایمیل از دیدگاه های آتی این نوشته مطلع کن. همچنین می توانید بدون ارسال "
|
1209 |
-
"دیدگاه <a href='[subscribe_link]'>مشترک شوید.</a>"
|
1210 |
-
|
1211 |
-
#: utils/stcr_manage.php:224
|
1212 |
-
msgid ""
|
1213 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1214 |
-
"subscriptions."
|
1215 |
-
msgstr ""
|
1216 |
-
"شما در این نوشته مشترک شده اید. <a href='[manager_link]'> تغییر اشتراک </a>"
|
1217 |
-
|
1218 |
-
#: utils/stcr_manage.php:225
|
1219 |
-
msgid ""
|
1220 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1221 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1222 |
-
msgstr ""
|
1223 |
-
"اشتراک شما در این پست منتظر تایید است. <a href='[manager_link]'> اشتراک خود "
|
1224 |
-
"را مدیریت کنید </a>"
|
1225 |
-
|
1226 |
-
#: utils/stcr_manage.php:226
|
1227 |
-
msgid ""
|
1228 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1229 |
-
msgstr ""
|
1230 |
-
"شما می توانید در این یادداشت <a href='[manager_link]'>اشتراک ها را مدیریت "
|
1231 |
-
"کنید</a> ."
|
1232 |
-
|
1233 |
-
#: utils/stcr_manage.php:232
|
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 |
-
"جهت مدیریت اشتراک هایتان لطفاً نشانی ایمیل خود را در زیر وارد کنید. سپس یک "
|
1240 |
-
"ایمیل برایتان می فرستیم که حاوی لینک دسترسی به صفحه ی شخصی مدیریت شما است."
|
1241 |
-
|
1242 |
-
#: utils/stcr_manage.php:233
|
1243 |
-
msgid ""
|
1244 |
-
"Thank you for using our subscription service. Your request has been "
|
1245 |
-
"completed, and you should receive an email with the management link in a few "
|
1246 |
-
"minutes."
|
1247 |
-
msgstr ""
|
1248 |
-
"ممنون که سرویس اشتراک ما را مورد استفاده قرار دادید. درخواست شما تکمیل شد و "
|
1249 |
-
"طی حداکثر چند دقیقه یک ایمیل حاوی پیوند صفحه ی مدیریت اشتراک ها دریافت می "
|
1250 |
-
"کنید."
|
1251 |
-
|
1252 |
-
#: utils/stcr_manage.php:234
|
1253 |
-
msgid ""
|
1254 |
-
"You can follow the discussion on <strong>[post_title]</strong> without having "
|
1255 |
-
"to leave a comment. Cool, huh? Just enter your email address in the form here "
|
1256 |
-
"below and you're all set."
|
1257 |
-
msgstr ""
|
1258 |
-
"می تونی بحث درباره <strong>[post_title]</strong> را بدون گذاشتن هیچ دیدگاهی "
|
1259 |
-
"دنبال کنی. خوشت اومد، هان؟! فقط آدرس ایمیلتو در کادر زیر بنویس و تمام! "
|
1260 |
-
|
1261 |
-
#: utils/stcr_manage.php:235
|
1262 |
-
msgid ""
|
1263 |
-
"Thank you for using our subscription service. Your request has been "
|
1264 |
-
"completed. You will receive a notification email every time a new comment to "
|
1265 |
-
"this article is approved and posted by the administrator."
|
1266 |
-
msgstr ""
|
1267 |
-
"ممنون که از سرویس اشتراک ما استفاده کردید. درخواست شما تکمیل شد. هر گاه "
|
1268 |
-
"دیدگاهی راجع به این یادداشت توسط سرپرست تایید یا منتشر شود با ایمیل از آن "
|
1269 |
-
"مطلع می گردید."
|
1270 |
-
|
1271 |
-
#: utils/stcr_manage.php:236
|
1272 |
-
msgid ""
|
1273 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1274 |
-
"request, please check your email for the verification message and follow the "
|
1275 |
-
"instructions."
|
1276 |
-
msgstr ""
|
1277 |
-
"ممنون که از سرویس اشتراک ما استفاده کردید. برای تایید درخواست خود لطفاً صندوق "
|
1278 |
-
"اینباکس یا اسپم ایمیلتان را ببینید و دستورالعمل پیام تاییدیه را دنبال نمایید."
|
1279 |
-
|
1280 |
-
#: utils/stcr_manage.php:237
|
1281 |
-
msgid ""
|
1282 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1283 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1284 |
-
msgstr ""
|
1285 |
-
"برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
|
1286 |
-
"کنید و دکمه ی پایین صفحه را کلیک نمایید."
|
1287 |
-
|
1288 |
-
#: utils/stcr_manage.php:238
|
1289 |
-
msgid ""
|
1290 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1291 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1292 |
-
"You are currently subscribed to:"
|
1293 |
-
msgstr ""
|
1294 |
-
"برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
|
1295 |
-
"کنید و دکمه ی پایین صفحه را کلیک نمایید. شما هم اکنون در اینجاها مشترک هستید:"
|
1296 |
-
|
1297 |
-
#: utils/stcr_manage.php:242
|
1298 |
-
msgid "There is a new comment to [post_title]"
|
1299 |
-
msgstr "دیدگاه تازه در نوشته [post_title]"
|
1300 |
-
|
1301 |
-
#: utils/stcr_manage.php:243
|
1302 |
-
msgid ""
|
1303 |
-
"There is a new comment to [post_title].\n"
|
1304 |
-
"Comment Link: [comment_permalink]\n"
|
1305 |
-
"Author: [comment_author]\n"
|
1306 |
-
"Comment:\n"
|
1307 |
-
"[comment_content]\n"
|
1308 |
-
"Permalink: [post_permalink]\n"
|
1309 |
-
"Manage your subscriptions: [manager_link]"
|
1310 |
-
msgstr ""
|
1311 |
-
"یک دیدگاه جدید در [post_title] وجود دارد. \n"
|
1312 |
-
"پیوند به دیدگاه : [comment_permalink] \n"
|
1313 |
-
"نویسنده : [comment_author] \n"
|
1314 |
-
"محتوای دیدگاه : \n"
|
1315 |
-
"[comment_content] \n"
|
1316 |
-
"پیوند به یادداشت : [post_permalink] \n"
|
1317 |
-
"اشتراک خود را مدیریت کنید : [manager_link]"
|
1318 |
-
|
1319 |
-
#: utils/stcr_manage.php:244
|
1320 |
-
msgid "Please confirm your subscription to [post_title]"
|
1321 |
-
msgstr "لطفاً اشتراک خود در این نوشته را تایید کنید: [post_title]"
|
1322 |
-
|
1323 |
-
#: utils/stcr_manage.php:245
|
1324 |
-
msgid ""
|
1325 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1326 |
-
"[post_permalink]\n"
|
1327 |
-
"\n"
|
1328 |
-
"Please confirm your request by clicking on this link:\n"
|
1329 |
-
"[confirm_link]"
|
1330 |
-
msgstr ""
|
1331 |
-
"شما درخواست کرده اید که هرگاه دیدگاه جدیدی در این موضوع اضافه شود به طور "
|
1332 |
-
"خودکار آگاه گردید:\n"
|
1333 |
-
"[post_permalink]\n"
|
1334 |
-
"\n"
|
1335 |
-
"لطفاً با کلیک روی لینک زیر، درخواست خود را تایید کنید:\n"
|
1336 |
-
"[confirm_link]"
|
1337 |
-
|
1338 |
-
#: utils/stcr_manage.php:246
|
1339 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1340 |
-
msgstr "اشتراک های خود را در [blog_name] مدیریت کنید"
|
1341 |
-
|
1342 |
-
#: utils/stcr_manage.php:247
|
1343 |
-
msgid ""
|
1344 |
-
"You have requested to manage your subscriptions to the articles on "
|
1345 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1346 |
-
msgstr ""
|
1347 |
-
|
1348 |
-
#: utils/stcr_manage.php:248
|
1349 |
-
msgid ""
|
1350 |
-
"You have requested to manage your subscriptions to the articles on "
|
1351 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1352 |
-
"[manager_link]"
|
1353 |
-
msgstr ""
|
1354 |
-
"شما درخواست مدیریت اشتراک های خود را در مقالات [blog_name] کرده اید. روی لینک "
|
1355 |
-
"زیر کلیک نمایید تا به صفحه ی شخصی خود بروید: \n"
|
1356 |
-
"[manager_link]"
|
1357 |
-
|
1358 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1359 |
msgid "StCR System"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: utils/stcr_manage.php:
|
1363 |
-
#: utils/stcr_manage.php:
|
1364 |
-
#: utils/stcr_manage.php:
|
1365 |
-
#: utils/stcr_manage.php:
|
1366 |
msgid "You do not have sufficient permissions to access this page."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: utils/stcr_manage.php:
|
1370 |
msgid "Subscriptions"
|
1371 |
msgstr "اشتراک ها"
|
1372 |
|
1373 |
-
#: utils/stcr_manage.php:
|
1374 |
msgid ""
|
1375 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1376 |
msgstr ""
|
1377 |
"آیا برای استفاده از افزونه ی «اشتراک در دیدگاهها نسخه ی جدید» نیاز به کمک "
|
1378 |
"دارید؟ سایت رسمی را ببینید."
|
1379 |
|
1380 |
-
#: utils/stcr_manage.php:
|
1381 |
msgid "support forum"
|
1382 |
msgstr "تالار گفتگوی پشتیبانی"
|
1383 |
|
1384 |
-
#: utils/stcr_manage.php:
|
1385 |
msgid "Feeling generous?"
|
1386 |
msgstr "احساس دست و دلبازی می کنید؟"
|
1387 |
|
1388 |
-
#: utils/stcr_manage.php:
|
1389 |
msgid "Donate a few bucks!"
|
1390 |
msgstr "چند دلار اهدا نمایید!"
|
1391 |
|
1392 |
-
#: utils/stcr_upgrade.php:
|
1393 |
msgid "Important Notice"
|
1394 |
msgstr "نکته مهم"
|
1395 |
|
1396 |
-
#: utils/stcr_upgrade.php:
|
1397 |
msgid ""
|
1398 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1399 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1400 |
-
"\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" "
|
1401 |
-
"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: utils/stcr_upgrade.php:
|
1405 |
msgid ""
|
1406 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1407 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
@@ -1411,7 +1297,7 @@ msgstr ""
|
|
1411 |
"<strong>Subscribe to Comments</strong> شناسایی شد و به طور خودکار وارد "
|
1412 |
"<strong>Subscribe to Comments Reloaded</strong> شد."
|
1413 |
|
1414 |
-
#: utils/stcr_upgrade.php:
|
1415 |
msgid ""
|
1416 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1417 |
"Comments to prevent confusion between the two plugins."
|
@@ -1419,7 +1305,7 @@ msgstr ""
|
|
1419 |
"توصیه می شود که شما اکنون Subscribe to Comments را <strong>غیرفعال</strong> "
|
1420 |
"کنید تا از مشکلات تداخل دو افزونه در امان باشید."
|
1421 |
|
1422 |
-
#: utils/stcr_upgrade.php:
|
1423 |
msgid ""
|
1424 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 that "
|
1425 |
"you want to import, you'll need to import that data manually, as only one "
|
@@ -1429,16 +1315,16 @@ msgstr ""
|
|
1429 |
"بخواهید داده ها را وارد کنید شما نیاز خواهید داشت به صورت دستی این کار را "
|
1430 |
"انجام دهید تا مانع از دست دادن داده ها شوید."
|
1431 |
|
1432 |
-
#: utils/stcr_upgrade.php:
|
1433 |
-
#: utils/stcr_upgrade.php:
|
1434 |
msgid ""
|
1435 |
-
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1436 |
-
"
|
1437 |
-
"
|
1438 |
-
"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: utils/stcr_upgrade.php:
|
1442 |
msgid ""
|
1443 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1444 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
@@ -1448,7 +1334,7 @@ msgstr ""
|
|
1448 |
"<strong>Comment Reply Notification</strong> شناسایی شد و به طور خودکار وارد "
|
1449 |
"<strong>Subscribe to Comments Reloaded</strong> شد."
|
1450 |
|
1451 |
-
#: utils/stcr_upgrade.php:
|
1452 |
msgid ""
|
1453 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1454 |
"Notification to prevent confusion between the two plugins."
|
@@ -1456,7 +1342,7 @@ msgstr ""
|
|
1456 |
"توصیه می شود که شما اکنون Subscribe to Comments را <strong>غیرفعال</strong> "
|
1457 |
"کنید تا از مشکلات تداخل دو افزونه در امان باشید."
|
1458 |
|
1459 |
-
#: utils/stcr_upgrade.php:
|
1460 |
msgid ""
|
1461 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1462 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1467,7 +1353,7 @@ msgstr ""
|
|
1467 |
"<strong>WP Comment Subscriptions</strong> شناسایی شد و به طور خودکار وارد "
|
1468 |
"<strong>Subscribe to Comments Reloaded</strong> شد."
|
1469 |
|
1470 |
-
#: utils/stcr_upgrade.php:
|
1471 |
msgid ""
|
1472 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1473 |
"Subscriptions to prevent confusion between the two plugins."
|
@@ -1475,19 +1361,19 @@ msgstr ""
|
|
1475 |
"توصیه می شود که شما اکنون WP Comment Subscriptions را <strong>غیرفعال</"
|
1476 |
"strong> کنید تا از مشکلات تداخل دو افزونه در امان باشید."
|
1477 |
|
1478 |
-
#: utils/stcr_upgrade.php:
|
1479 |
msgid ""
|
1480 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1481 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1482 |
-
"you'll need to import that data manually, as only one import routine will "
|
1483 |
-
"
|
1484 |
msgstr ""
|
1485 |
"اگر داده های اشتراک شما برای افزونه دیگری Subscribe to Comments یا Subscribe "
|
1486 |
"to Comments Reloaded < v2.0 می باشد و بخواهید داده ها را وارد کنید شما نیاز "
|
1487 |
"خواهید داشت به صورت دستی این کار را انجام دهید تا مانع از دست دادن داده ها "
|
1488 |
"شوید."
|
1489 |
|
1490 |
-
#: utils/stcr_upgrade.php:
|
1491 |
msgid ""
|
1492 |
"<strong>Note:</strong> If you were previously using the "
|
1493 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1495,19 +1381,18 @@ msgid ""
|
|
1495 |
"<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
|
1496 |
"respectively."
|
1497 |
msgstr ""
|
1498 |
-
"<strong>نکته :</strong> اگر شما قبلأ از "
|
1499 |
-
"
|
1500 |
-
"
|
1501 |
-
"
|
1502 |
-
"url]</code> عوض کنید."
|
1503 |
|
1504 |
-
#: utils/stcr_upgrade.php:
|
1505 |
msgid ""
|
1506 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1507 |
msgstr "<strong>بابت نصب Subscribe to Comments Reloaded! متشکریم! </strong>."
|
1508 |
|
1509 |
-
#: utils/stcr_upgrade.php:
|
1510 |
-
#: utils/stcr_upgrade.php:
|
1511 |
msgid ""
|
1512 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1513 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
@@ -1516,25 +1401,37 @@ msgstr ""
|
|
1516 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">اینجا</a> مطرح "
|
1517 |
"کنید."
|
1518 |
|
1519 |
-
#: utils/stcr_upgrade.php:
|
1520 |
-
|
1521 |
-
|
1522 |
-
"<a href=\"\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1523 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1524 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1525 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1526 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1527 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1528 |
|
1529 |
-
#: utils/stcr_upgrade.php:
|
1530 |
msgid ""
|
1531 |
-
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1532 |
-
"
|
1533 |
-
"
|
1534 |
-
"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: utils/stcr_upgrade.php:
|
1538 |
msgid ""
|
1539 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1540 |
"160106."
|
@@ -1542,28 +1439,28 @@ msgstr ""
|
|
1542 |
"<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
|
1543 |
"ارتقاء یافت."
|
1544 |
|
1545 |
-
#: utils/stcr_upgrade.php:
|
1546 |
msgid ""
|
1547 |
"This version includes many changes and fixes to improve your experience with "
|
1548 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1549 |
"email templates, Subscription Checkbox position, and more!"
|
1550 |
msgstr ""
|
1551 |
"این ویرایش شامل تغییرات و اصلاحات بیشماری از قبیل، لغو اشتراک با یک کلیک ، "
|
1552 |
-
"ویرایشگر متنی پیشرفته جهت ایجاد قالب های ایمیل HTML ، موقعیت چک باکس اشتراک، "
|
1553 |
-
"
|
1554 |
|
1555 |
-
#: utils/stcr_upgrade.php:
|
1556 |
-
#: utils/stcr_upgrade.php:
|
1557 |
-
#: utils/stcr_upgrade.php:
|
1558 |
-
#: utils/stcr_upgrade.php:
|
1559 |
msgid ""
|
1560 |
-
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1561 |
-
"
|
1562 |
-
"
|
1563 |
-
"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: utils/stcr_upgrade.php:
|
1567 |
msgid ""
|
1568 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1569 |
"160115."
|
@@ -1571,12 +1468,12 @@ msgstr ""
|
|
1571 |
"<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
|
1572 |
"ارتقاء یافت."
|
1573 |
|
1574 |
-
#: utils/stcr_upgrade.php:
|
1575 |
msgid ""
|
1576 |
"This version includes fixes to broken links while managing your subscriptions"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: utils/stcr_upgrade.php:
|
1580 |
#, fuzzy
|
1581 |
msgid ""
|
1582 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
@@ -1585,106 +1482,108 @@ msgstr ""
|
|
1585 |
"<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
|
1586 |
"ارتقاء یافت."
|
1587 |
|
1588 |
-
#: utils/stcr_upgrade.php:
|
1589 |
msgid "This version includes fixes to many bugs and also new features, "
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: utils/stcr_upgrade.php:
|
1593 |
msgid ""
|
1594 |
-
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1595 |
-
"
|
1596 |
-
"email agents."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: utils/stcr_upgrade.php:
|
1600 |
msgid ""
|
1601 |
-
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1602 |
-
"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: utils/stcr_upgrade.php:
|
1606 |
msgid ""
|
1607 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1608 |
-
"without loosing your subscriptions. You can use this option also for reset "
|
1609 |
-
"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: utils/stcr_upgrade.php:
|
1613 |
msgid ""
|
1614 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1615 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom Post "
|
1616 |
"Type."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: utils/stcr_upgrade.php:
|
1620 |
msgid ""
|
1621 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1622 |
"options to and the management link only by email and not to display it on the "
|
1623 |
"request link page."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: utils/stcr_upgrade.php:
|
1627 |
msgid ""
|
1628 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1629 |
"160902"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: utils/stcr_upgrade.php:
|
1633 |
msgid ""
|
1634 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1635 |
"previous 160831 version."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: utils/stcr_upgrade.php:
|
1639 |
msgid "Settings"
|
1640 |
msgstr "تنظیمات"
|
1641 |
|
1642 |
-
#: utils/stcr_upgrade.php:
|
1643 |
msgid ""
|
1644 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1645 |
"160915"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: utils/stcr_upgrade.php:
|
1649 |
-
#: utils/stcr_upgrade.php:
|
1650 |
msgid "This version includes fixes and improvements, "
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: utils/stcr_upgrade.php:
|
1654 |
msgid ""
|
1655 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1656 |
"dropdown."
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: utils/stcr_upgrade.php:
|
1660 |
msgid ""
|
1661 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: utils/stcr_upgrade.php:
|
|
|
1665 |
msgid "Log Settings"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: utils/stcr_upgrade.php:
|
|
|
1669 |
msgid ""
|
1670 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: utils/stcr_upgrade.php:
|
1674 |
msgid ""
|
1675 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1676 |
"enable."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: utils/stcr_upgrade.php:
|
1680 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: utils/stcr_upgrade.php:
|
|
|
1684 |
msgid "The support of this plugin is given thanks to your donations."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: utils/stcr_upgrade.php:
|
1688 |
msgid ""
|
1689 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1690 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1694,19 +1593,25 @@ msgid ""
|
|
1694 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: utils/stcr_upgrade.php:
|
1698 |
msgid ""
|
1699 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1700 |
"installation regarding a database table creation."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: utils/stcr_upgrade.php:
|
1704 |
msgid ""
|
1705 |
-
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1706 |
-
"Awesome."
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: utils/stcr_upgrade.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1710 |
msgid ""
|
1711 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1712 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1716,8 +1621,214 @@ msgid ""
|
|
1716 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. Thank you "
|
1717 |
"for the users that have supported the plugin development."
|
1718 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1719 |
|
1720 |
-
#: utils/stcr_utils.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1721 |
msgid "StCR Notification"
|
1722 |
msgstr "آگاه سازی ها"
|
1723 |
|
@@ -1729,35 +1840,43 @@ msgstr "مشترک نمی شوم"
|
|
1729 |
msgid "All"
|
1730 |
msgstr "دریافت همه دیدگاه های این نوشته"
|
1731 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1732 |
#~ msgid ""
|
1733 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1734 |
-
#~ "[comment_permalink], [comment_author], [comment_content], "
|
1735 |
-
#~ "[
|
1736 |
#~ msgstr ""
|
1737 |
#~ "محتوای ایمیل یادآور. تگ های مجاز: [post_title], [comment_permalink], "
|
1738 |
#~ "[comment_author], [comment_content], [post_permalink], [manager_link]"
|
1739 |
|
1740 |
#~ msgid "Legend: Y = all comments, R = replies only, C = inactive"
|
1741 |
-
#~ msgstr ""
|
1742 |
-
#~ "راهنما: Y= همه ی دیدگاه ها، R=فقط پاسخ ها به دیدگاه خودم، C= غیرفعال "
|
1743 |
|
1744 |
#~ msgid "F j, Y"
|
1745 |
#~ msgstr "F j, Y"
|
1746 |
|
1747 |
-
#~ msgid ""
|
1748 |
-
#~ "If you want to donate you can do it via <a href=\"\n"
|
1749 |
-
#~ "https://www.paypal.com/cgi-bin/webscr?"
|
1750 |
-
#~ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1751 |
-
#~ "%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1752 |
-
#~ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1753 |
-
#~ msgstr ""
|
1754 |
-
#~ "اگر مایل به پرداخت وجه به ما هستید می توانید از طریق <a href=\"\n"
|
1755 |
-
#~ "https://www.paypal.com/cgi-bin/webscr?"
|
1756 |
-
#~ "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1757 |
-
#~ "%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1758 |
-
#~ "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a> اقدام "
|
1759 |
-
#~ "کنید."
|
1760 |
-
|
1761 |
#~ msgid ""
|
1762 |
#~ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1763 |
#~ "database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1772,8 +1891,8 @@ msgstr "دریافت همه دیدگاه های این نوشته"
|
|
1772 |
#~ msgid ""
|
1773 |
#~ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1774 |
#~ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to "
|
1775 |
-
#~ "review your configuration.<a class=\"dismiss\" href=\"#\">Got it. </"
|
1776 |
-
#~ "
|
1777 |
#~ msgstr ""
|
1778 |
#~ "لطفاً <a href=\"options-general.php?page=subscribe-to-comments-reloaded/"
|
1779 |
#~ "options/index.php\">تنظیمات -> Subscribe to Comments</a> را جهت بررسی "
|
@@ -1782,14 +1901,14 @@ msgstr "دریافت همه دیدگاه های این نوشته"
|
|
1782 |
|
1783 |
#~ msgid ""
|
1784 |
#~ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1785 |
-
#~ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for "
|
1786 |
-
#~ "
|
1787 |
-
#~ "
|
1788 |
#~ msgstr ""
|
1789 |
-
#~ "لطفأ <a href=\"https://wordpress.org/plugins/subscribe-to-comments-"
|
1790 |
-
#~ "
|
1791 |
-
#~ "
|
1792 |
-
#~ "
|
1793 |
|
1794 |
#~ msgid ""
|
1795 |
#~ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
@@ -1797,10 +1916,10 @@ msgstr "دریافت همه دیدگاه های این نوشته"
|
|
1797 |
#~ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
|
1798 |
#~ "class=\"stcr-loading-animation\" src=\""
|
1799 |
#~ msgstr ""
|
1800 |
-
#~ "لطفأ <a href=\"https://wordpress.org/plugins/subscribe-to-comments-"
|
1801 |
-
#~ "
|
1802 |
-
#~ "
|
1803 |
-
#~ "
|
1804 |
|
1805 |
#~ msgid "Announcement: Introducing Comment Mail"
|
1806 |
#~ msgstr "اعلان : معرفی Comment Mail"
|
@@ -1824,8 +1943,8 @@ msgstr "دریافت همه دیدگاه های این نوشته"
|
|
1824 |
#~ "را در Comment Mail وارد کنید، که یک انتقال بدون اشکال را موجب خواهد شد."
|
1825 |
|
1826 |
#~ msgid ""
|
1827 |
-
#~ "Need more powerful features to manage your subscriptions but can't wait "
|
1828 |
-
#~ "
|
1829 |
#~ "\">Take a look at Comment Mail!</a>"
|
1830 |
#~ msgstr ""
|
1831 |
#~ "به قابلیت های قدرتمند بیشتری نیاز دارید اما نمی توانید منتظر StCR بمانید؟ "
|
@@ -1892,11 +2011,10 @@ msgstr "دریافت همه دیدگاه های این نوشته"
|
|
1892 |
#~ msgstr "به حالت Y تنظیم کن"
|
1893 |
|
1894 |
#~ msgid ""
|
1895 |
-
#~ "Update the email address associated to a specific subscription (by post "
|
1896 |
-
#~ "ID)."
|
1897 |
#~ msgstr ""
|
1898 |
-
#~ "Aggiorna l'indirizzo email associato ad una specifica iscrizione "
|
1899 |
-
#~ "
|
1900 |
|
1901 |
#~ msgid ""
|
1902 |
#~ "Change the status of an email address or permanently delete all its "
|
@@ -1906,8 +2024,8 @@ msgstr "دریافت همه دیدگاه های این نوشته"
|
|
1906 |
#~ "indirizzo email."
|
1907 |
|
1908 |
#~ msgid ""
|
1909 |
-
#~ "You can \"mass update\" all the occurrences of a given email address "
|
1910 |
-
#~ "
|
1911 |
#~ msgstr ""
|
1912 |
#~ "می توانید تمام موارد مربوط به یک آدرس ایمیل خاص را \"آپدیت یکجا\" بکنید "
|
1913 |
#~ "(فقط برای مواردی که انطباق دقیق داشته باشد)."
|
@@ -1916,8 +2034,8 @@ msgstr "دریافت همه دیدگاه های این نوشته"
|
|
1916 |
#~ msgstr "راهنما: Y: مشترک شده، N: اشتراک معلق شده، C: در انتظار تایید"
|
1917 |
|
1918 |
#~ msgid ""
|
1919 |
-
#~ "Custom CSS class to associate to the checkbox, if you want to customize "
|
1920 |
-
#~ "
|
1921 |
#~ msgstr ""
|
1922 |
#~ "کلاس CSS سفارشی برای افزودن به کادر تیک زدنی در صورتی که بخواهید جلوه ی آن "
|
1923 |
#~ "را تغییر دهید."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:08-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 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "مدیریت اشتراک ها"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "فرم دیدگاهها"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "صفحهی مدیریت"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "آگاه سازی ها"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "تنظیمات"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr " پشتیبانی"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr "حمایت مالی / فنی"
|
48 |
|
50 |
msgid "Add New Subscription"
|
51 |
msgstr "افزودن اشتراک جدید"
|
52 |
|
53 |
+
#: options/panel1-add-subscription.php:13 options/panel1-edit-subscription.php:13
|
|
|
54 |
msgid "Post:"
|
55 |
msgstr "نوشته:"
|
56 |
|
60 |
msgid "Email"
|
61 |
msgstr "ایمیل"
|
62 |
|
63 |
+
#: options/panel1-add-subscription.php:20 options/panel1-edit-subscription.php:26
|
64 |
+
#: options/panel1.php:39 options/panel1.php:76 options/panel1.php:141
|
65 |
+
#: options/panel1.php:159
|
66 |
msgid "Status"
|
67 |
msgstr "وضعیت"
|
68 |
|
69 |
+
#: options/panel1-add-subscription.php:22 options/panel1-edit-subscription.php:29
|
70 |
+
#: options/panel1.php:42 options/panel1.php:79 options/panel1.php:173
|
71 |
+
#: templates/author.php:64 templates/user.php:76
|
|
|
72 |
msgid "Active"
|
73 |
msgstr "فعال"
|
74 |
|
75 |
+
#: options/panel1-add-subscription.php:23 options/panel1-edit-subscription.php:30
|
76 |
+
#: options/panel1.php:43 options/panel1.php:80
|
|
|
77 |
msgid "Replies only"
|
78 |
msgstr "فقط پاسخ ها"
|
79 |
|
81 |
msgid "Ask user to confirm"
|
82 |
msgstr "پرسش از کاربر برای تایید"
|
83 |
|
84 |
+
#: options/panel1-add-subscription.php:26 options/panel1-edit-subscription.php:33
|
85 |
+
#: options/panel1.php:46
|
86 |
msgid "Update"
|
87 |
msgstr "به روزرسانی"
|
88 |
|
204 |
"You can either <a href=\"%s\">view all the subscriptions</a> or find those "
|
205 |
"where the"
|
206 |
msgstr ""
|
207 |
+
"می توانید یا <a href=\"%s\">تمام اشتراک ها را ببینید</a> یا فقط مواردی را پیدا "
|
208 |
+
"کنید که "
|
209 |
|
210 |
#: options/panel1.php:106
|
211 |
msgid "email"
|
340 |
msgid "Sorry, no subscriptions match your search criteria."
|
341 |
msgstr "متاسفانه هیچ اشتراکی با معیار شما انطباق نداشت."
|
342 |
|
343 |
+
#: options/panel10.php:41
|
344 |
msgid "The log file has been successfully deleted."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: options/panel10.php:46
|
348 |
msgid "Can't delete the log file, check the file permissions."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: options/panel10.php:52
|
352 |
msgid "The log file does not exists."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: options/panel10.php:66 options/panel10.php:110
|
356 |
msgid "Enable Log Information"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: options/panel10.php:72 options/panel10.php:119
|
360 |
msgid "Enable Auto clean log data"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
364 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
365 |
msgid "Your settings have been successfully updated."
|
366 |
msgstr "تنظیمات شما با موفقیت به روز شد."
|
367 |
|
368 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
369 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
370 |
msgid "There was an error updating the following fields:"
|
371 |
msgstr "یک خطا در به روزرسانی فیلدهای زیر رخ داد:"
|
372 |
|
373 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
374 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
375 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
376 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
377 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
378 |
+
#: options/panel5.php:210 options/panel5.php:219
|
379 |
msgid "Yes"
|
380 |
msgstr "بله"
|
381 |
|
382 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
383 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
384 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
385 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
386 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
387 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
388 |
msgid "No"
|
389 |
msgstr "نه"
|
390 |
|
391 |
+
#: options/panel10.php:114
|
392 |
msgid ""
|
393 |
+
"If enabled, will log information of the plugin. Helpful for debugging purposes."
|
|
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: options/panel10.php:125
|
397 |
msgid "Hourly"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: options/panel10.php:126
|
401 |
msgid "Twice Daily"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: options/panel10.php:127
|
405 |
msgid "Daily"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: options/panel10.php:129
|
409 |
msgid "If enabled, StCR will auto clean your information every day."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: options/panel10.php:134
|
413 |
msgid "Clean Up Log Archive"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: options/panel10.php:138
|
417 |
+
msgid "If you want to clean up the log archive please click the following button"
|
|
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: options/panel10.php:140
|
421 |
msgid "Clean"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: options/panel10.php:147 options/panel10.php:150
|
425 |
msgid "System Information"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
429 |
+
#: options/panel4.php:283 options/panel5.php:265
|
430 |
msgid "Save Changes"
|
431 |
msgstr "ذخیره ی تغییرات"
|
432 |
|
650 |
#: options/panel3.php:109
|
651 |
msgid ""
|
652 |
"The permalink for your management page (something like <code>/manage-"
|
653 |
+
"subscriptions</code> or <code>/?page_id=345</code>). This page <b>does not</b> "
|
654 |
+
"actually exist in the system, but its link must follow your permalink "
|
655 |
"structure."
|
656 |
msgstr ""
|
657 |
"پیوند یکتا به صفحه ی مدیریت شما، (چیزی شبیه <code>/manage-subscriptions</"
|
668 |
|
669 |
#: options/panel3.php:121
|
670 |
msgid ""
|
671 |
+
"Specify your custom HTML code to be added to the HEAD section of the page. Use "
|
672 |
+
"<strong>single</strong> quotes for values."
|
673 |
msgstr ""
|
674 |
"کدهای HTML سفارشی را که می خواهید به بخش head در صفحه اضافه شود تعیین کنید. "
|
675 |
"برای مقادیر پارامترها فقط از کوتیشن <strong>تکی </strong> استفاده نمایید."
|
700 |
|
701 |
#: options/panel3.php:198
|
702 |
msgid ""
|
703 |
+
"Thank you note shown after the subscription request has been processed (double "
|
704 |
+
"check-in disabled). Allowed tags: [post_title], [post_permalink]"
|
705 |
msgstr ""
|
706 |
"پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت غیرفعال بودن نیاز به "
|
707 |
"تایید ایمیلی). برچسب های مجاز: [post_title], [post_permalink]"
|
708 |
|
709 |
#: options/panel3.php:216
|
710 |
msgid ""
|
711 |
+
"Thank you note shown after the subscription request has been processed (double "
|
712 |
+
"check-in enabled). Allowed tags: [post_title], [post_permalink]"
|
713 |
msgstr ""
|
714 |
"پیام تشکر پس از این که درخواست اشتراک پردازش شد (در حالت فعال بودن نیاز به "
|
715 |
"تایید ایمیلی). تگ های مجاز: [post_title], [post_permalink]"
|
760 |
|
761 |
#: options/panel4.php:101
|
762 |
msgid ""
|
763 |
+
"Name to use for the \"from\" field when sending a new notification to the user."
|
|
|
764 |
msgstr "نام فرستنده هنگام ارسال یادآور جدید به کاربران"
|
765 |
|
766 |
#: options/panel4.php:115
|
767 |
msgid ""
|
768 |
+
"Email address to use for the \"from\" field when sending a new notification to "
|
769 |
+
"the user."
|
770 |
msgstr "نشانی رایان نامه ی فرستنده هنگام ارسال یادآور جدید به کاربران"
|
771 |
|
772 |
#: options/panel4.php:121
|
775 |
|
776 |
#: options/panel4.php:128
|
777 |
msgid ""
|
778 |
+
"This will be use when the user click reply on their email agent. If not set it "
|
779 |
"will be the same as the Sender email address."
|
780 |
msgstr ""
|
781 |
|
793 |
msgstr ""
|
794 |
|
795 |
#: options/panel4.php:171
|
796 |
+
#, fuzzy
|
797 |
+
#| msgid ""
|
798 |
+
#| "<p><strong>Note: To get a default template clear all the content and save "
|
799 |
+
#| "the options.</strong></p>"
|
800 |
msgid ""
|
801 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear all "
|
802 |
+
"the content and save the options.</strong></p>"
|
803 |
msgstr ""
|
804 |
"<p><strong>توجه : برای داشتن یک قالب تمیز، محتوا را پاک کنید و تنظیمات را "
|
805 |
"ذخیره نمایید.</strong></p>"
|
818 |
|
819 |
#: options/panel4.php:217
|
820 |
msgid ""
|
821 |
+
"Subject of the mail sent to those who request to access their management page. "
|
822 |
+
"Allowed tag: [blog_name]"
|
823 |
msgstr ""
|
824 |
"موضوع ایمیل ارسالی به کسانی که درخواست دسترسی به صفحه مدیریتشان را دارند : "
|
825 |
"[blog_name]"
|
847 |
"Content of the One Click confirmation. Allowed tags: [post_title], [blog_name]"
|
848 |
msgstr "محتوای تأیید با یک کلیک. تگ های مجاز: [post_title]"
|
849 |
|
850 |
+
#: options/panel5.php:38
|
851 |
+
#, fuzzy
|
852 |
+
#| msgid "Your settings have been successfully updated."
|
853 |
+
msgid "Your settings have been successfully reset."
|
854 |
+
msgstr "تنظیمات شما با موفقیت به روز شد."
|
855 |
+
|
856 |
+
#: options/panel5.php:40
|
857 |
+
#, fuzzy
|
858 |
+
#| msgid "There was an error updating the following fields:"
|
859 |
+
msgid "There was an error deleting the options:"
|
860 |
+
msgstr "یک خطا در به روزرسانی فیلدهای زیر رخ داد:"
|
861 |
+
|
862 |
+
#: options/panel5.php:48 options/panel5.php:108
|
863 |
msgid "Show StCR checkbox / dropdown"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: options/panel5.php:51
|
867 |
msgid "Safetly Uninstall"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: options/panel5.php:54 options/panel5.php:125
|
871 |
msgid "Autopurge requests"
|
872 |
msgstr ""
|
873 |
"زوال خودکار درخواست های اشتراک که طی مدت معین مورد تایید کاربر قرار نگرفته"
|
874 |
|
875 |
+
#: options/panel5.php:57 options/panel5.php:143
|
876 |
msgid "Enable double check"
|
877 |
msgstr "حالت بررسی مضاعف را فعال کن"
|
878 |
|
879 |
+
#: options/panel5.php:60 options/panel5.php:134
|
880 |
msgid "StCR Position"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: options/panel5.php:63 options/panel5.php:151
|
884 |
msgid "Subscribe authors"
|
885 |
msgstr "اشتراک مؤلفان"
|
886 |
|
887 |
+
#: options/panel5.php:66 options/panel5.php:161
|
888 |
msgid "Enable HTML emails"
|
889 |
msgstr "فعال کردن ایمیل های HTML"
|
890 |
|
891 |
+
#: options/panel5.php:69
|
892 |
msgid "HTMLify Links in HTML emails"
|
893 |
msgstr "پیوند های HTMLify در ایمیل های HTML"
|
894 |
|
895 |
+
#: options/panel5.php:72
|
896 |
msgid "Send trackbacks"
|
897 |
msgstr "ارسال بازآگاهی"
|
898 |
|
899 |
+
#: options/panel5.php:75
|
900 |
msgid "Notify admin"
|
901 |
msgstr "سرپرست را مطلع کن"
|
902 |
|
903 |
+
#: options/panel5.php:78 options/panel5.php:199
|
904 |
msgid "Let admin subscribe"
|
905 |
msgstr "به سرپرست اجازه ی مشترک شدن بده"
|
906 |
|
907 |
+
#: options/panel5.php:81 options/panel5.php:208
|
908 |
msgid "BCC admin on Notifications"
|
909 |
msgstr "مدیر را در BCC یادآوری ها قرار بده"
|
910 |
|
911 |
+
#: options/panel5.php:84 options/panel5.php:217
|
912 |
msgid "Enable Font Awesome"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
916 |
+
msgid "Reset All Options"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: options/panel5.php:112
|
920 |
msgid ""
|
921 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
922 |
"You should leave it to Yes always. "
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: options/panel5.php:117
|
926 |
msgid "Safely Uninstall"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: options/panel5.php:121
|
930 |
msgid ""
|
931 |
+
"This option will allow you to delete the plugin with WordPress without loosing "
|
932 |
+
"your subscribers. Any database table and plugin options are wipeout."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: options/panel5.php:128
|
936 |
msgid "days"
|
937 |
msgstr "روز"
|
938 |
|
939 |
+
#: options/panel5.php:129
|
940 |
msgid ""
|
941 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables this "
|
942 |
"feature."
|
944 |
"اشتراک هایی که بیش از این تعداد روز منتظر تایید مانده و پاسخی نگرفته اند را "
|
945 |
"حذف کن. عدد 0 به معنای عدم استفاده از این قابلیت است."
|
946 |
|
947 |
+
#: options/panel5.php:138
|
948 |
msgid ""
|
949 |
"If this option is enable the subscription box will be above the submit button "
|
950 |
"in your comment form. Use this when your theme is outdated and using the "
|
951 |
"incorrect WordPress Hooks and the checkbox is not displayed."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: options/panel5.php:147
|
955 |
msgid ""
|
956 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
957 |
"misuse)."
|
958 |
msgstr ""
|
959 |
+
"ارسال یک ایمیل آگاه سازی جهت تأیید مشترک ( به منظور جلوگیری از استفاده از آدرس "
|
960 |
+
"ایمیل غیرمرتبط)"
|
961 |
|
962 |
+
#: options/panel5.php:156
|
963 |
msgid "Automatically subscribe authors to their own articles (not retroactive)."
|
964 |
msgstr ""
|
965 |
+
"به طور خودکار نویسندگان را مشترک یادداشت هایشان کن ( شامل یادداشت های موجود از "
|
966 |
+
"قبل نمی شود )"
|
967 |
|
968 |
+
#: options/panel5.php:165
|
969 |
msgid ""
|
970 |
"If enabled, will send email messages with content-type = text/html instead of "
|
971 |
"text/plain"
|
972 |
msgstr ""
|
973 |
+
"اگر فعال شود ما پیام ها را با content-type = text/html به جای text/plain ایمیل "
|
974 |
+
"می کنیم."
|
975 |
|
976 |
+
#: options/panel5.php:170
|
977 |
msgid "HTMLify links in emails"
|
978 |
msgstr "پیوند های HTMLify در ایمیل ها"
|
979 |
|
980 |
+
#: options/panel5.php:175
|
981 |
msgid ""
|
982 |
+
"If enabled, will wrap all links in messages with <code><a href=\"\"></"
|
983 |
+
"a></code> (only when HTML emails enabled)."
|
984 |
msgstr ""
|
985 |
+
"اگر فعال شود ما تمام پیوند ها را با <code><a href=\"\"></a></code> "
|
986 |
+
"احاطه می کنیم. ( فقط هنگام فعال بودن ایمیل HTML)"
|
987 |
|
988 |
+
#: options/panel5.php:180
|
989 |
msgid "Process trackbacks"
|
990 |
msgstr "بازآگاهی فرآیند"
|
991 |
|
992 |
+
#: options/panel5.php:184
|
993 |
+
msgid "Notify users when a new trackback or pingback is added to the discussion."
|
|
|
994 |
msgstr ""
|
995 |
"کاربران را مطلع کن اگر یک بازآگاهی یا ارجاع مستقیم به دیدگاه ها اضافه شود."
|
996 |
|
997 |
+
#: options/panel5.php:189
|
998 |
msgid "Track all subscriptions"
|
999 |
msgstr "تمام اشتراک ها را رهگیری کن"
|
1000 |
|
1001 |
+
#: options/panel5.php:194
|
1002 |
msgid "Notify the administrator when users subscribe without commenting."
|
1003 |
msgstr "وقتی کاربران بدون دیدگاه گذاری مشترک می شوند سرپرست را مطلع کن."
|
1004 |
|
1005 |
+
#: options/panel5.php:203
|
1006 |
msgid "Let the administrator subscribe to comments when logged in."
|
1007 |
msgstr ""
|
1008 |
"وقتی سرپرست وارد سایت می گردد به او اجازه ی مشترک شدن در دیدگاه ها را بده."
|
1009 |
|
1010 |
+
#: options/panel5.php:212
|
1011 |
msgid "Send a copy of all Notifications to the administrator."
|
1012 |
msgstr "یک کپی از تمام آگاه سازی ها برای مدیر سایت بفرست."
|
1013 |
|
1014 |
+
#: options/panel5.php:221
|
1015 |
msgid ""
|
1016 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1017 |
"you theme already add this into your site."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: options/panel5.php:226
|
1021 |
msgid "StCR Unique Key"
|
1022 |
msgstr "شناسه منحصر بفرد StCR"
|
1023 |
|
1024 |
+
#: options/panel5.php:231
|
1025 |
msgid "This Unique Key is not set, please click the following button to "
|
1026 |
msgstr ""
|
1027 |
+
"این شناسه منحصر بفرد تنظیم نشده است، برای این منظور لطفاً روی این دکمه کلیک کنید"
|
|
|
1028 |
|
1029 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1030 |
msgid "Generate"
|
1031 |
msgstr "ایجاد"
|
1032 |
|
1033 |
+
#: options/panel5.php:243
|
1034 |
msgid ""
|
1035 |
"This Unique Key will be use to send the notification to your subscribers with "
|
1036 |
"more security."
|
1038 |
"این شناسه منحصر بفرد جهت ارسال آگاه سازی ها به مشترکین با امنیت بیشتر استفاده "
|
1039 |
"می شود."
|
1040 |
|
1041 |
+
#: options/panel5.php:256
|
1042 |
+
msgid ""
|
1043 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1044 |
+
"with caution."
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: options/panel5.php:258
|
1048 |
+
msgid "Yes, Delete Options including subscriptions."
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: options/panel5.php:259
|
1052 |
+
msgid "No, Only delete the StCR Options."
|
1053 |
+
msgstr ""
|
1054 |
|
1055 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1056 |
+
msgid ""
|
1057 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1058 |
+
"hidden=\"true\"></i>"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1062 |
+
#, fuzzy
|
1063 |
+
#| msgid ""
|
1064 |
+
#| "How valuable is the feature offered by this plugin to your visitors? please "
|
1065 |
+
#| "consider supporting the author if this plugin made your web site better, "
|
1066 |
+
#| "especially if you are making money out of it. Any donation received will be "
|
1067 |
+
#| "reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1068 |
+
#| "strong>, and to buy some food for my hungry family."
|
1069 |
msgid ""
|
1070 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1071 |
"consider supporting the author if this plugin made your web site better, "
|
1072 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1073 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1074 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1075 |
"strong>, and to buy some food for my hungry family."
|
1076 |
msgstr ""
|
1077 |
+
"قابلیت هایی که توسط این افزونه ارائه شده اند چقدر برای بازدید کنندگان شما ارزش "
|
1078 |
+
"دارد؟ لطفاً چنانچه این افزونه سایت شما را بهتر کرده است از نویسنده آن حمایت "
|
1079 |
+
"کنید، به خصوص با پرداخت وجه در قبال آن. هر وجه کمکی که دریافت می شود دوباره "
|
1080 |
+
"جهت توسعه <strong>Subscribe to Comments Reloaded</strong> سرمایه گذاری می "
|
1081 |
+
"شود ، و بخش کوچکی از آن نیز صرف خرید غذا برای خانواده ام می شود."
|
1082 |
|
1083 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1084 |
+
#, fuzzy
|
1085 |
+
#| msgid "You can help"
|
1086 |
+
msgid "You can still help"
|
1087 |
+
msgstr "شما هم می توانید کمک کنید"
|
1088 |
|
1089 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1090 |
+
#, fuzzy
|
1091 |
+
#| msgid ""
|
1092 |
+
#| "If you don't want to donate money, please consider blogging about my plugin "
|
1093 |
+
#| "with a link to the plugin's page. Please let your readers know what makes "
|
1094 |
+
#| "your blog better. You can also contribute donating your time: do not "
|
1095 |
+
#| "hesitate to send me bug reports, your localization files, ideas on how to "
|
1096 |
+
#| "improve <strong>Subscribe to Comments Reloaded</strong> and so on. Whatever "
|
1097 |
+
#| "you do, thanks for using my plugin!"
|
1098 |
+
msgid ""
|
1099 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1100 |
+
"Please let your readers know what makes your blog better. You can also "
|
1101 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1102 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1103 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1104 |
msgstr ""
|
1105 |
"اگر شما قصد پرداخت وجه در قبال این افزونه را ندارید لطفأ با قرار دادن لینک آن "
|
1106 |
"در سایت یا وبلاگ خود و معرفی آن حمایتش کنید؛ شما همچنین به خوانندگان خود "
|
1109 |
"<strong>Subscribe to Comments Reloaded</strong> حمایتش کنید. فارغ از همه این "
|
1110 |
"ها، متشکرم که از افزونه ی من استفاده می کنید!"
|
1111 |
|
1112 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1113 |
msgid "Subscribe to the Beta testers"
|
1114 |
msgstr "به تست کنندگان نسخه بتا بپیوندید"
|
1115 |
|
1116 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1117 |
msgid ""
|
1118 |
"Before a new Update we release a Beta version so that our current users can "
|
1119 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1124 |
"خواهید به جمع تست کنندگان بپیوندید شما می توانید ایمیل خود را <a href='http://"
|
1125 |
"eepurl.com/biCk1b' target='_blank'>از اینجا</a> اضافه کنید."
|
1126 |
|
1127 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1128 |
msgid "Vote and show your appreciation"
|
1129 |
msgstr "با رای دادن قدردانی کنید"
|
1130 |
|
1131 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1132 |
msgid ""
|
1133 |
+
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works for "
|
1134 |
+
"you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1135 |
"subscribe-to-comments-reloaded/\">Rate it</a> on its Plugin Directory page."
|
1136 |
msgstr ""
|
1137 |
+
"<strong>Subscribe to Comments Reloaded</strong> را به دیگران توصیه کنید اگر که "
|
1138 |
+
"برای شما خوب کار می کند. در صفحه افزونه نیز لطفأ به آن <a href=\"http://"
|
1139 |
"wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">رأی بدهید</a>."
|
1140 |
|
1141 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1142 |
msgid "Did you find a Bug on the plugin?"
|
1143 |
msgstr "آیا ایرادی بر روی افزونه یافته اید؟"
|
1144 |
|
1145 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1146 |
msgid ""
|
1147 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1148 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1164 |
"plugin a helpful tool we will use your donation to invest on support and "
|
1165 |
"developing time."
|
1166 |
msgstr ""
|
1167 |
+
"هر گونه مشارکت شما بسیار ارزشمند است، پس چنانچه این افزونه را ارزشمند می دانید "
|
1168 |
+
"ما از حمایت های مالی شما جهت سرمایه گذاری در پشتیبانی و توسعه استفاده خواهیم "
|
1169 |
+
"کرد."
|
1170 |
|
1171 |
#: templates/author.php:67 templates/user.php:83
|
1172 |
msgid "Title"
|
1241 |
msgid "You have request to manage another email address and this is forbidden."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1245 |
msgid "StCR System"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459 utils/stcr_manage.php:486
|
1249 |
+
#: utils/stcr_manage.php:513 utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1250 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621 utils/stcr_manage.php:648
|
1251 |
+
#: utils/stcr_manage.php:676
|
1252 |
msgid "You do not have sufficient permissions to access this page."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: utils/stcr_manage.php:726
|
1256 |
msgid "Subscriptions"
|
1257 |
msgstr "اشتراک ها"
|
1258 |
|
1259 |
+
#: utils/stcr_manage.php:782
|
1260 |
msgid ""
|
1261 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1262 |
msgstr ""
|
1263 |
"آیا برای استفاده از افزونه ی «اشتراک در دیدگاهها نسخه ی جدید» نیاز به کمک "
|
1264 |
"دارید؟ سایت رسمی را ببینید."
|
1265 |
|
1266 |
+
#: utils/stcr_manage.php:782
|
1267 |
msgid "support forum"
|
1268 |
msgstr "تالار گفتگوی پشتیبانی"
|
1269 |
|
1270 |
+
#: utils/stcr_manage.php:783
|
1271 |
msgid "Feeling generous?"
|
1272 |
msgstr "احساس دست و دلبازی می کنید؟"
|
1273 |
|
1274 |
+
#: utils/stcr_manage.php:783
|
1275 |
msgid "Donate a few bucks!"
|
1276 |
msgstr "چند دلار اهدا نمایید!"
|
1277 |
|
1278 |
+
#: utils/stcr_upgrade.php:72
|
1279 |
msgid "Important Notice"
|
1280 |
msgstr "نکته مهم"
|
1281 |
|
1282 |
+
#: utils/stcr_upgrade.php:120
|
1283 |
msgid ""
|
1284 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1285 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1286 |
+
"\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-loading-animation\" src="
|
1287 |
+
"\""
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: utils/stcr_upgrade.php:175
|
1291 |
msgid ""
|
1292 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1293 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1297 |
"<strong>Subscribe to Comments</strong> شناسایی شد و به طور خودکار وارد "
|
1298 |
"<strong>Subscribe to Comments Reloaded</strong> شد."
|
1299 |
|
1300 |
+
#: utils/stcr_upgrade.php:175
|
1301 |
msgid ""
|
1302 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1303 |
"Comments to prevent confusion between the two plugins."
|
1305 |
"توصیه می شود که شما اکنون Subscribe to Comments را <strong>غیرفعال</strong> "
|
1306 |
"کنید تا از مشکلات تداخل دو افزونه در امان باشید."
|
1307 |
|
1308 |
+
#: utils/stcr_upgrade.php:176
|
1309 |
msgid ""
|
1310 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 that "
|
1311 |
"you want to import, you'll need to import that data manually, as only one "
|
1315 |
"بخواهید داده ها را وارد کنید شما نیاز خواهید داشت به صورت دستی این کار را "
|
1316 |
"انجام دهید تا مانع از دست دادن داده ها شوید."
|
1317 |
|
1318 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1319 |
+
#: utils/stcr_upgrade.php:400
|
1320 |
msgid ""
|
1321 |
+
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-reloaded/"
|
1322 |
+
"options/index.php\">Settings -> Subscribe to Comments</a> to review your "
|
1323 |
+
"configuration.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-"
|
1324 |
+
"loading-animation\" src=\""
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: utils/stcr_upgrade.php:250
|
1328 |
msgid ""
|
1329 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1330 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1334 |
"<strong>Comment Reply Notification</strong> شناسایی شد و به طور خودکار وارد "
|
1335 |
"<strong>Subscribe to Comments Reloaded</strong> شد."
|
1336 |
|
1337 |
+
#: utils/stcr_upgrade.php:250
|
1338 |
msgid ""
|
1339 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1340 |
"Notification to prevent confusion between the two plugins."
|
1342 |
"توصیه می شود که شما اکنون Subscribe to Comments را <strong>غیرفعال</strong> "
|
1343 |
"کنید تا از مشکلات تداخل دو افزونه در امان باشید."
|
1344 |
|
1345 |
+
#: utils/stcr_upgrade.php:397
|
1346 |
msgid ""
|
1347 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1348 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1353 |
"<strong>WP Comment Subscriptions</strong> شناسایی شد و به طور خودکار وارد "
|
1354 |
"<strong>Subscribe to Comments Reloaded</strong> شد."
|
1355 |
|
1356 |
+
#: utils/stcr_upgrade.php:397
|
1357 |
msgid ""
|
1358 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1359 |
"Subscriptions to prevent confusion between the two plugins."
|
1361 |
"توصیه می شود که شما اکنون WP Comment Subscriptions را <strong>غیرفعال</"
|
1362 |
"strong> کنید تا از مشکلات تداخل دو افزونه در امان باشید."
|
1363 |
|
1364 |
+
#: utils/stcr_upgrade.php:398
|
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 ever "
|
1369 |
+
"run to prevent data loss."
|
1370 |
msgstr ""
|
1371 |
"اگر داده های اشتراک شما برای افزونه دیگری Subscribe to Comments یا Subscribe "
|
1372 |
"to Comments Reloaded < v2.0 می باشد و بخواهید داده ها را وارد کنید شما نیاز "
|
1373 |
"خواهید داشت به صورت دستی این کار را انجام دهید تا مانع از دست دادن داده ها "
|
1374 |
"شوید."
|
1375 |
|
1376 |
+
#: utils/stcr_upgrade.php:399
|
1377 |
msgid ""
|
1378 |
"<strong>Note:</strong> If you were previously using the "
|
1379 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1381 |
"<code>subscribe_reloaded_show()</code> and <code>[subscribe-url]</code> "
|
1382 |
"respectively."
|
1383 |
msgstr ""
|
1384 |
+
"<strong>نکته :</strong> اگر شما قبلأ از <code>wp_comment_subscriptions_show()</"
|
1385 |
+
"code> بعنوان تابع یا از <code>[wpcs-subscribe-url]</code> به عنوان shortcode "
|
1386 |
+
"استفاده می کردید شما نیاز دارید آن ها را به ترتیب با "
|
1387 |
+
"<code>subscribe_reloaded_show()</code> و <code>[subscribe-url]</code> عوض کنید."
|
|
|
1388 |
|
1389 |
+
#: utils/stcr_upgrade.php:413
|
1390 |
msgid ""
|
1391 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1392 |
msgstr "<strong>بابت نصب Subscribe to Comments Reloaded! متشکریم! </strong>."
|
1393 |
|
1394 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1395 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1396 |
msgid ""
|
1397 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1398 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1401 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">اینجا</a> مطرح "
|
1402 |
"کنید."
|
1403 |
|
1404 |
+
#: utils/stcr_upgrade.php:415
|
1405 |
+
#, fuzzy
|
1406 |
+
#| msgid ""
|
1407 |
+
#| "If you want to donate you can do it via <a href=\"\n"
|
1408 |
+
#| "https://www.paypal.com/cgi-bin/webscr?"
|
1409 |
+
#| "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1410 |
+
#| "%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1411 |
+
#| "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1412 |
+
msgid ""
|
1413 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1414 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1415 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1416 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1417 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1418 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1419 |
msgstr ""
|
1420 |
+
"اگر مایل به پرداخت وجه به ما هستید می توانید از طریق <a href=\"\n"
|
1421 |
+
"https://www.paypal.com/cgi-bin/webscr?"
|
1422 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1423 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1424 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a> اقدام کنید."
|
1425 |
|
1426 |
+
#: utils/stcr_upgrade.php:417
|
1427 |
msgid ""
|
1428 |
+
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-comments-"
|
1429 |
+
"reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed information "
|
1430 |
+
"on plugin changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class="
|
1431 |
+
"\"stcr-loading-animation\" src=\""
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: utils/stcr_upgrade.php:428
|
1435 |
msgid ""
|
1436 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1437 |
"160106."
|
1439 |
"<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
|
1440 |
"ارتقاء یافت."
|
1441 |
|
1442 |
+
#: utils/stcr_upgrade.php:429
|
1443 |
msgid ""
|
1444 |
"This version includes many changes and fixes to improve your experience with "
|
1445 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1446 |
"email templates, Subscription Checkbox position, and more!"
|
1447 |
msgstr ""
|
1448 |
"این ویرایش شامل تغییرات و اصلاحات بیشماری از قبیل، لغو اشتراک با یک کلیک ، "
|
1449 |
+
"ویرایشگر متنی پیشرفته جهت ایجاد قالب های ایمیل HTML ، موقعیت چک باکس اشتراک، و "
|
1450 |
+
"موارد بیشتر است!"
|
1451 |
|
1452 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1453 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1454 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1455 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1456 |
msgid ""
|
1457 |
+
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-comments-"
|
1458 |
+
"reloaded/changelog/\" target=\"_blank\">Changelog</a> for a complete list of "
|
1459 |
+
"changes.<a class=\"dismiss\" href=\"#\">Dismiss. </a><img class=\"stcr-"
|
1460 |
+
"loading-animation\" src=\""
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: utils/stcr_upgrade.php:443
|
1464 |
msgid ""
|
1465 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1466 |
"160115."
|
1468 |
"<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
|
1469 |
"ارتقاء یافت."
|
1470 |
|
1471 |
+
#: utils/stcr_upgrade.php:444
|
1472 |
msgid ""
|
1473 |
"This version includes fixes to broken links while managing your subscriptions"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: utils/stcr_upgrade.php:458
|
1477 |
#, fuzzy
|
1478 |
msgid ""
|
1479 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1482 |
"<strong>Subscribe to Comments Reloaded</strong> با موفقیت به ویرایش 160106 "
|
1483 |
"ارتقاء یافت."
|
1484 |
|
1485 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1486 |
msgid "This version includes fixes to many bugs and also new features, "
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1490 |
msgid ""
|
1491 |
+
"<strong>New Feature</strong> Add new option to set the Reply To email address. "
|
1492 |
+
"This will help the subscribers to use the Reply option in their email agents."
|
|
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1496 |
msgid ""
|
1497 |
+
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the StCR "
|
1498 |
+
"menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1502 |
msgid ""
|
1503 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1504 |
+
"without loosing your subscriptions. You can use this option also for reset all "
|
1505 |
+
"the settings, see the FAQ."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1509 |
msgid ""
|
1510 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1511 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom Post "
|
1512 |
"Type."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1516 |
msgid ""
|
1517 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1518 |
"options to and the management link only by email and not to display it on the "
|
1519 |
"request link page."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: utils/stcr_upgrade.php:480
|
1523 |
msgid ""
|
1524 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1525 |
"160902"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: utils/stcr_upgrade.php:483
|
1529 |
msgid ""
|
1530 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1531 |
"previous 160831 version."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1535 |
msgid "Settings"
|
1536 |
msgstr "تنظیمات"
|
1537 |
|
1538 |
+
#: utils/stcr_upgrade.php:504
|
1539 |
msgid ""
|
1540 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1541 |
"160915"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1545 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1546 |
msgid "This version includes fixes and improvements, "
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: utils/stcr_upgrade.php:508
|
1550 |
msgid ""
|
1551 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1552 |
"dropdown."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: utils/stcr_upgrade.php:509
|
1556 |
msgid ""
|
1557 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1561 |
+
#: utils/stcr_upgrade.php:576
|
1562 |
msgid "Log Settings"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1566 |
+
#: utils/stcr_upgrade.php:580
|
1567 |
msgid ""
|
1568 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: utils/stcr_upgrade.php:529
|
1572 |
msgid ""
|
1573 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1574 |
"enable."
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: utils/stcr_upgrade.php:530
|
1578 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1582 |
+
#: utils/stcr_upgrade.php:590
|
1583 |
msgid "The support of this plugin is given thanks to your donations."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: utils/stcr_upgrade.php:536
|
1587 |
msgid ""
|
1588 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1589 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1593 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: utils/stcr_upgrade.php:557
|
1597 |
msgid ""
|
1598 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1599 |
"installation regarding a database table creation."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: utils/stcr_upgrade.php:558
|
1603 |
msgid ""
|
1604 |
+
"<strong>Add</strong> Option to control the inclusion of the style Font Awesome."
|
|
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: utils/stcr_upgrade.php:563
|
1608 |
+
#, fuzzy
|
1609 |
+
#| msgid ""
|
1610 |
+
#| "If you want to donate you can do it via <a href=\"\n"
|
1611 |
+
#| "https://www.paypal.com/cgi-bin/webscr?"
|
1612 |
+
#| "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1613 |
+
#| "%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1614 |
+
#| "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1615 |
msgid ""
|
1616 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1617 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1621 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. Thank you "
|
1622 |
"for the users that have supported the plugin development."
|
1623 |
msgstr ""
|
1624 |
+
"اگر مایل به پرداخت وجه به ما هستید می توانید از طریق <a href=\"\n"
|
1625 |
+
"https://www.paypal.com/cgi-bin/webscr?"
|
1626 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1627 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1628 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a> اقدام کنید."
|
1629 |
+
|
1630 |
+
#: utils/stcr_upgrade.php:584
|
1631 |
+
msgid ""
|
1632 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1633 |
+
"issues."
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: utils/stcr_upgrade.php:585
|
1637 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: utils/stcr_upgrade.php:586
|
1641 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: utils/stcr_upgrade.php:591
|
1645 |
+
#, fuzzy
|
1646 |
+
#| msgid ""
|
1647 |
+
#| "If you want to donate you can do it via <a href=\"\n"
|
1648 |
+
#| "https://www.paypal.com/cgi-bin/webscr?"
|
1649 |
+
#| "cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1650 |
+
#| "%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1651 |
+
#| "%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1652 |
+
msgid ""
|
1653 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1654 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1655 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1656 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1657 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1658 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1659 |
+
"Thanks for all the users that have supported the plugin development."
|
1660 |
+
msgstr ""
|
1661 |
+
"اگر مایل به پرداخت وجه به ما هستید می توانید از طریق <a href=\"\n"
|
1662 |
+
"https://www.paypal.com/cgi-bin/webscr?"
|
1663 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1664 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1665 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a> اقدام کنید."
|
1666 |
+
|
1667 |
+
#: utils/stcr_utils.php:196
|
1668 |
+
msgid ""
|
1669 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1670 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1671 |
+
msgstr ""
|
1672 |
+
"مرا با ایمیل از دیدگاه های آتی این نوشته مطلع کن. همچنین می توانید بدون ارسال "
|
1673 |
+
"دیدگاه <a href='[subscribe_link]'>مشترک شوید.</a>"
|
1674 |
+
|
1675 |
+
#: utils/stcr_utils.php:197
|
1676 |
+
msgid ""
|
1677 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1678 |
+
"subscriptions."
|
1679 |
+
msgstr ""
|
1680 |
+
"شما در این نوشته مشترک شده اید. <a href='[manager_link]'> تغییر اشتراک </a>"
|
1681 |
+
|
1682 |
+
#: utils/stcr_utils.php:198
|
1683 |
+
msgid ""
|
1684 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1685 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1686 |
+
msgstr ""
|
1687 |
+
"اشتراک شما در این پست منتظر تایید است. <a href='[manager_link]'> اشتراک خود "
|
1688 |
+
"را مدیریت کنید </a>"
|
1689 |
+
|
1690 |
+
#: utils/stcr_utils.php:199
|
1691 |
+
msgid ""
|
1692 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1693 |
+
msgstr ""
|
1694 |
+
"شما می توانید در این یادداشت <a href='[manager_link]'>اشتراک ها را مدیریت "
|
1695 |
+
"کنید</a> ."
|
1696 |
+
|
1697 |
+
#: utils/stcr_utils.php:205
|
1698 |
+
msgid ""
|
1699 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1700 |
+
"will send you a message containing the link to access your personal management "
|
1701 |
+
"page."
|
1702 |
+
msgstr ""
|
1703 |
+
"جهت مدیریت اشتراک هایتان لطفاً نشانی ایمیل خود را در زیر وارد کنید. سپس یک "
|
1704 |
+
"ایمیل برایتان می فرستیم که حاوی لینک دسترسی به صفحه ی شخصی مدیریت شما است."
|
1705 |
+
|
1706 |
+
#: utils/stcr_utils.php:206
|
1707 |
+
msgid ""
|
1708 |
+
"Thank you for using our subscription service. Your request has been completed, "
|
1709 |
+
"and you should receive an email with the management link in a few minutes."
|
1710 |
+
msgstr ""
|
1711 |
+
"ممنون که سرویس اشتراک ما را مورد استفاده قرار دادید. درخواست شما تکمیل شد و طی "
|
1712 |
+
"حداکثر چند دقیقه یک ایمیل حاوی پیوند صفحه ی مدیریت اشتراک ها دریافت می کنید."
|
1713 |
+
|
1714 |
+
#: utils/stcr_utils.php:207
|
1715 |
+
msgid ""
|
1716 |
+
"You can follow the discussion on <strong>[post_title]</strong> without having "
|
1717 |
+
"to leave a comment. Cool, huh? Just enter your email address in the form here "
|
1718 |
+
"below and you're all set."
|
1719 |
+
msgstr ""
|
1720 |
+
"می تونی بحث درباره <strong>[post_title]</strong> را بدون گذاشتن هیچ دیدگاهی "
|
1721 |
+
"دنبال کنی. خوشت اومد، هان؟! فقط آدرس ایمیلتو در کادر زیر بنویس و تمام! "
|
1722 |
+
|
1723 |
+
#: utils/stcr_utils.php:208
|
1724 |
+
msgid ""
|
1725 |
+
"Thank you for using our subscription service. Your request has been completed. "
|
1726 |
+
"You will receive a notification email every time a new comment to this article "
|
1727 |
+
"is approved and posted by the administrator."
|
1728 |
+
msgstr ""
|
1729 |
+
"ممنون که از سرویس اشتراک ما استفاده کردید. درخواست شما تکمیل شد. هر گاه "
|
1730 |
+
"دیدگاهی راجع به این یادداشت توسط سرپرست تایید یا منتشر شود با ایمیل از آن مطلع "
|
1731 |
+
"می گردید."
|
1732 |
+
|
1733 |
+
#: utils/stcr_utils.php:209
|
1734 |
+
msgid ""
|
1735 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1736 |
+
"request, please check your email for the verification message and follow the "
|
1737 |
+
"instructions."
|
1738 |
+
msgstr ""
|
1739 |
+
"ممنون که از سرویس اشتراک ما استفاده کردید. برای تایید درخواست خود لطفاً صندوق "
|
1740 |
+
"اینباکس یا اسپم ایمیلتان را ببینید و دستورالعمل پیام تاییدیه را دنبال نمایید."
|
1741 |
+
|
1742 |
+
#: utils/stcr_utils.php:210
|
1743 |
+
msgid ""
|
1744 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1745 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1746 |
+
msgstr ""
|
1747 |
+
"برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
|
1748 |
+
"کنید و دکمه ی پایین صفحه را کلیک نمایید."
|
1749 |
+
|
1750 |
+
#: utils/stcr_utils.php:211
|
1751 |
+
msgid ""
|
1752 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1753 |
+
"corresponding checkbox(es) and click on the button at the end of the list. You "
|
1754 |
+
"are currently subscribed to:"
|
1755 |
+
msgstr ""
|
1756 |
+
"برای لغو یک یا چند پیام رسان خودکار، کادرهای مربوط را تیک بزنید یا غیرفعال "
|
1757 |
+
"کنید و دکمه ی پایین صفحه را کلیک نمایید. شما هم اکنون در اینجاها مشترک هستید:"
|
1758 |
+
|
1759 |
+
#: utils/stcr_utils.php:215
|
1760 |
+
msgid "There is a new comment to [post_title]"
|
1761 |
+
msgstr "دیدگاه تازه در نوشته [post_title]"
|
1762 |
+
|
1763 |
+
#: utils/stcr_utils.php:216
|
1764 |
+
msgid ""
|
1765 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1766 |
+
"\n"
|
1767 |
+
"<hr />\n"
|
1768 |
+
"<strong>Comment link:</strong> <a href="
|
1769 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1770 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1771 |
+
"\n"
|
1772 |
+
"<strong>Comment:</strong>\n"
|
1773 |
+
"[comment_content]\n"
|
1774 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1775 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1776 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1777 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1778 |
+
msgstr ""
|
1779 |
|
1780 |
+
#: utils/stcr_utils.php:217
|
1781 |
+
msgid "Please confirm your subscription to [post_title]"
|
1782 |
+
msgstr "لطفاً اشتراک خود در این نوشته را تایید کنید: [post_title]"
|
1783 |
+
|
1784 |
+
#: utils/stcr_utils.php:218
|
1785 |
+
#, fuzzy
|
1786 |
+
#| msgid ""
|
1787 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1788 |
+
#| "[post_permalink]\n"
|
1789 |
+
#| "\n"
|
1790 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1791 |
+
#| "[confirm_link]"
|
1792 |
+
msgid ""
|
1793 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1794 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1795 |
+
"\n"
|
1796 |
+
"Please confirm your request by clicking on this link:\n"
|
1797 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1798 |
+
msgstr ""
|
1799 |
+
"شما درخواست کرده اید که هرگاه دیدگاه جدیدی در این موضوع اضافه شود به طور "
|
1800 |
+
"خودکار آگاه گردید:\n"
|
1801 |
+
"[post_permalink]\n"
|
1802 |
+
"\n"
|
1803 |
+
"لطفاً با کلیک روی لینک زیر، درخواست خود را تایید کنید:\n"
|
1804 |
+
"[confirm_link]"
|
1805 |
+
|
1806 |
+
#: utils/stcr_utils.php:219
|
1807 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1808 |
+
msgstr "اشتراک های خود را در [blog_name] مدیریت کنید"
|
1809 |
+
|
1810 |
+
#: utils/stcr_utils.php:220
|
1811 |
+
msgid ""
|
1812 |
+
"You have requested to manage your subscriptions to the articles on "
|
1813 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1814 |
+
msgstr ""
|
1815 |
+
|
1816 |
+
#: utils/stcr_utils.php:221
|
1817 |
+
#, fuzzy
|
1818 |
+
#| msgid ""
|
1819 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1820 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1821 |
+
#| "[manager_link]"
|
1822 |
+
msgid ""
|
1823 |
+
"You have requested to manage your subscriptions to the articles on "
|
1824 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1825 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1826 |
+
msgstr ""
|
1827 |
+
"شما درخواست مدیریت اشتراک های خود را در مقالات [blog_name] کرده اید. روی لینک "
|
1828 |
+
"زیر کلیک نمایید تا به صفحه ی شخصی خود بروید: \n"
|
1829 |
+
"[manager_link]"
|
1830 |
+
|
1831 |
+
#: utils/stcr_utils.php:300
|
1832 |
msgid "StCR Notification"
|
1833 |
msgstr "آگاه سازی ها"
|
1834 |
|
1840 |
msgid "All"
|
1841 |
msgstr "دریافت همه دیدگاه های این نوشته"
|
1842 |
|
1843 |
+
#~ msgid "Support the developers"
|
1844 |
+
#~ msgstr "پشتیبانی از توسعه دهندگان"
|
1845 |
+
|
1846 |
+
#~ msgid "Don't want to donate? You can still help"
|
1847 |
+
#~ msgstr "تمایل به اهدا ندارید؟ هنوز هم می توانید کمک کنید"
|
1848 |
+
|
1849 |
+
#~ msgid ""
|
1850 |
+
#~ "There is a new comment to [post_title].\n"
|
1851 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1852 |
+
#~ "Author: [comment_author]\n"
|
1853 |
+
#~ "Comment:\n"
|
1854 |
+
#~ "[comment_content]\n"
|
1855 |
+
#~ "Permalink: [post_permalink]\n"
|
1856 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1857 |
+
#~ msgstr ""
|
1858 |
+
#~ "یک دیدگاه جدید در [post_title] وجود دارد. \n"
|
1859 |
+
#~ "پیوند به دیدگاه : [comment_permalink] \n"
|
1860 |
+
#~ "نویسنده : [comment_author] \n"
|
1861 |
+
#~ "محتوای دیدگاه : \n"
|
1862 |
+
#~ "[comment_content] \n"
|
1863 |
+
#~ "پیوند به یادداشت : [post_permalink] \n"
|
1864 |
+
#~ "اشتراک خود را مدیریت کنید : [manager_link]"
|
1865 |
+
|
1866 |
#~ msgid ""
|
1867 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1868 |
+
#~ "[comment_permalink], [comment_author], [comment_content], [post_permalink], "
|
1869 |
+
#~ "[manager_link]"
|
1870 |
#~ msgstr ""
|
1871 |
#~ "محتوای ایمیل یادآور. تگ های مجاز: [post_title], [comment_permalink], "
|
1872 |
#~ "[comment_author], [comment_content], [post_permalink], [manager_link]"
|
1873 |
|
1874 |
#~ msgid "Legend: Y = all comments, R = replies only, C = inactive"
|
1875 |
+
#~ msgstr "راهنما: Y= همه ی دیدگاه ها، R=فقط پاسخ ها به دیدگاه خودم، C= غیرفعال "
|
|
|
1876 |
|
1877 |
#~ msgid "F j, Y"
|
1878 |
#~ msgstr "F j, Y"
|
1879 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1880 |
#~ msgid ""
|
1881 |
#~ "<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1882 |
#~ "database has been sanitized to prevent the raw html messages. <a class="
|
1891 |
#~ msgid ""
|
1892 |
#~ "Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1893 |
#~ "reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to "
|
1894 |
+
#~ "review your configuration.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
|
1895 |
+
#~ "class=\"stcr-loading-animation\" src=\""
|
1896 |
#~ msgstr ""
|
1897 |
#~ "لطفاً <a href=\"options-general.php?page=subscribe-to-comments-reloaded/"
|
1898 |
#~ "options/index.php\">تنظیمات -> Subscribe to Comments</a> را جهت بررسی "
|
1901 |
|
1902 |
#~ msgid ""
|
1903 |
#~ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1904 |
+
#~ "comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1905 |
+
#~ "information on plugin changes.<a class=\"dismiss\" href=\"#\">Got it. </"
|
1906 |
+
#~ "a><img class=\"stcr-loading-animation\" src=\""
|
1907 |
#~ msgstr ""
|
1908 |
+
#~ "لطفأ <a href=\"https://wordpress.org/plugins/subscribe-to-comments-reloaded/"
|
1909 |
+
#~ "changelog/\" target=\"_blank\">تغییرات</a> را برای مشاهده جزییات تغییرات "
|
1910 |
+
#~ "افزونه ببینید. <a class=\"dismiss\" href=\"#\">فهمیدم. </a><img class="
|
1911 |
+
#~ "\"stcr-loading-animation\" src=\""
|
1912 |
|
1913 |
#~ msgid ""
|
1914 |
#~ "Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1916 |
#~ "complete list of changes.<a class=\"dismiss\" href=\"#\">Got it. </a><img "
|
1917 |
#~ "class=\"stcr-loading-animation\" src=\""
|
1918 |
#~ msgstr ""
|
1919 |
+
#~ "لطفأ <a href=\"https://wordpress.org/plugins/subscribe-to-comments-reloaded/"
|
1920 |
+
#~ "changelog/\" target=\"_blank\">تغییرات</a> را برای مشاهده کامل جزییات "
|
1921 |
+
#~ "تغییرات افزونه ببینید. <a class=\"dismiss\" href=\"#\">فهمیدم. </a><img "
|
1922 |
+
#~ "class=\"stcr-loading-animation\" src=\""
|
1923 |
|
1924 |
#~ msgid "Announcement: Introducing Comment Mail"
|
1925 |
#~ msgstr "اعلان : معرفی Comment Mail"
|
1943 |
#~ "را در Comment Mail وارد کنید، که یک انتقال بدون اشکال را موجب خواهد شد."
|
1944 |
|
1945 |
#~ msgid ""
|
1946 |
+
#~ "Need more powerful features to manage your subscriptions but can't wait for "
|
1947 |
+
#~ "StCR? <a href=\"http://comment-mail.com/r/stcr-to-cm/\" target=\"_blank"
|
1948 |
#~ "\">Take a look at Comment Mail!</a>"
|
1949 |
#~ msgstr ""
|
1950 |
#~ "به قابلیت های قدرتمند بیشتری نیاز دارید اما نمی توانید منتظر StCR بمانید؟ "
|
2011 |
#~ msgstr "به حالت Y تنظیم کن"
|
2012 |
|
2013 |
#~ msgid ""
|
2014 |
+
#~ "Update the email address associated to a specific subscription (by post ID)."
|
|
|
2015 |
#~ msgstr ""
|
2016 |
+
#~ "Aggiorna l'indirizzo email associato ad una specifica iscrizione (necessita "
|
2017 |
+
#~ "l'ID dell'articolo)."
|
2018 |
|
2019 |
#~ msgid ""
|
2020 |
#~ "Change the status of an email address or permanently delete all its "
|
2024 |
#~ "indirizzo email."
|
2025 |
|
2026 |
#~ msgid ""
|
2027 |
+
#~ "You can \"mass update\" all the occurrences of a given email address (exact "
|
2028 |
+
#~ "matches only)."
|
2029 |
#~ msgstr ""
|
2030 |
#~ "می توانید تمام موارد مربوط به یک آدرس ایمیل خاص را \"آپدیت یکجا\" بکنید "
|
2031 |
#~ "(فقط برای مواردی که انطباق دقیق داشته باشد)."
|
2034 |
#~ msgstr "راهنما: Y: مشترک شده، N: اشتراک معلق شده، C: در انتظار تایید"
|
2035 |
|
2036 |
#~ msgid ""
|
2037 |
+
#~ "Custom CSS class to associate to the checkbox, if you want to customize its "
|
2038 |
+
#~ "style."
|
2039 |
#~ msgstr ""
|
2040 |
#~ "کلاس CSS سفارشی برای افزودن به کادر تیک زدنی در صورتی که بخواهید جلوه ی آن "
|
2041 |
#~ "را تغییر دهید."
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: fr\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -19,42 +19,38 @@ 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
|
23 |
"X-Loco-Target-Locale: fr_FR\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: includes\n"
|
26 |
|
27 |
-
#: options/index.php:
|
28 |
-
#: utils/
|
29 |
msgid "Manage subscriptions"
|
30 |
msgstr "Gérer les abonnements"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Comment Form"
|
34 |
msgstr "Formulaire de commentaire"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
msgid "Management Page"
|
38 |
msgstr "Page de gestion"
|
39 |
|
40 |
-
#: options/index.php:
|
41 |
msgid "Notifications"
|
42 |
msgstr "Notifications"
|
43 |
|
44 |
-
#: options/index.php:
|
45 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
46 |
msgid "Options"
|
47 |
msgstr "Options"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
-
msgid "You can help"
|
51 |
-
msgstr "Vous pouvez aider"
|
52 |
-
|
53 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
54 |
msgid "Support"
|
55 |
msgstr "Support"
|
56 |
|
57 |
-
#: options/index.php:
|
58 |
msgid "Donate"
|
59 |
msgstr "Faîtes don de quelques euros !"
|
60 |
|
@@ -355,95 +351,95 @@ msgstr "Mettre à jour les abonnements"
|
|
355 |
msgid "Sorry, no subscriptions match your search criteria."
|
356 |
msgstr "Désolé, aucun abonnement ne correspond à votre recherche."
|
357 |
|
358 |
-
#: options/panel10.php:
|
359 |
msgid "The log file has been successfully deleted."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: options/panel10.php:
|
363 |
msgid "Can't delete the log file, check the file permissions."
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: options/panel10.php:
|
367 |
msgid "The log file does not exists."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: options/panel10.php:
|
371 |
msgid "Enable Log Information"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: options/panel10.php:
|
375 |
msgid "Enable Auto clean log data"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: options/panel10.php:
|
379 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
380 |
msgid "Your settings have been successfully updated."
|
381 |
msgstr "Vos réglages ont été sauvegardés avec succès."
|
382 |
|
383 |
-
#: options/panel10.php:
|
384 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
385 |
msgid "There was an error updating the following fields:"
|
386 |
msgstr "Une erreur est apparue lors de la mise à jour des champs suivants :"
|
387 |
|
388 |
-
#: options/panel10.php:
|
389 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
msgid "Yes"
|
395 |
msgstr "Oui"
|
396 |
|
397 |
-
#: options/panel10.php:
|
398 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
399 |
-
#: options/panel5.php:
|
400 |
-
#: options/panel5.php:
|
401 |
-
#: options/panel5.php:
|
402 |
-
#: options/panel5.php:
|
403 |
msgid "No"
|
404 |
msgstr "Non"
|
405 |
|
406 |
-
#: options/panel10.php:
|
407 |
msgid ""
|
408 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
409 |
"purposes."
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: options/panel10.php:
|
413 |
msgid "Hourly"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: options/panel10.php:
|
417 |
msgid "Twice Daily"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: options/panel10.php:
|
421 |
msgid "Daily"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: options/panel10.php:
|
425 |
msgid "If enabled, StCR will auto clean your information every day."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: options/panel10.php:
|
429 |
msgid "Clean Up Log Archive"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: options/panel10.php:
|
433 |
msgid ""
|
434 |
"If you want to clean up the log archive please click the following button"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: options/panel10.php:
|
438 |
msgid "Clean"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: options/panel10.php:
|
442 |
msgid "System Information"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: options/panel10.php:
|
446 |
-
#: options/panel4.php:283 options/panel5.php:
|
447 |
msgid "Save Changes"
|
448 |
msgstr "Sauvegarder les modifications"
|
449 |
|
@@ -799,7 +795,7 @@ msgstr "Réponses seulement"
|
|
799 |
#: options/panel4.php:128
|
800 |
msgid ""
|
801 |
"This will be use when the user click reply on their email agent. If not set "
|
802 |
-
"will be the same as the Sender email address."
|
803 |
msgstr ""
|
804 |
|
805 |
#: options/panel4.php:147
|
@@ -815,8 +811,8 @@ msgstr ""
|
|
815 |
|
816 |
#: options/panel4.php:171
|
817 |
msgid ""
|
818 |
-
"<p><strong>Note: To get a default template clear
|
819 |
-
"the options.</strong></p>"
|
820 |
msgstr ""
|
821 |
|
822 |
#: options/panel4.php:184
|
@@ -863,79 +859,95 @@ msgid ""
|
|
863 |
"[blog_name]"
|
864 |
msgstr "Sujet de l'email de confirmation. Tag autorisé : [post_title]"
|
865 |
|
866 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
867 |
msgid "Show StCR checkbox / dropdown"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: options/panel5.php:
|
871 |
msgid "Safetly Uninstall"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: options/panel5.php:
|
875 |
msgid "Autopurge requests"
|
876 |
msgstr "Purger automatiquement les requêtes"
|
877 |
|
878 |
-
#: options/panel5.php:
|
879 |
msgid "Enable double check"
|
880 |
msgstr "Autoriser la vérification"
|
881 |
|
882 |
-
#: options/panel5.php:
|
883 |
msgid "StCR Position"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: options/panel5.php:
|
887 |
msgid "Subscribe authors"
|
888 |
msgstr "Abonné(e)"
|
889 |
|
890 |
-
#: options/panel5.php:
|
891 |
msgid "Enable HTML emails"
|
892 |
msgstr "Activer les émails en HTML"
|
893 |
|
894 |
-
#: options/panel5.php:
|
895 |
msgid "HTMLify Links in HTML emails"
|
896 |
msgstr "HTMliser les liens dans les emails HTML"
|
897 |
|
898 |
-
#: options/panel5.php:
|
899 |
msgid "Send trackbacks"
|
900 |
msgstr "Envoyer les trackbacks"
|
901 |
|
902 |
-
#: options/panel5.php:
|
903 |
msgid "Notify admin"
|
904 |
msgstr "Notifier l'admin"
|
905 |
|
906 |
-
#: options/panel5.php:
|
907 |
msgid "Let admin subscribe"
|
908 |
msgstr "Permettre aux admins de s'abonner"
|
909 |
|
910 |
-
#: options/panel5.php:
|
911 |
msgid "BCC admin on Notifications"
|
912 |
msgstr "Notifications"
|
913 |
|
914 |
-
#: options/panel5.php:
|
915 |
msgid "Enable Font Awesome"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
919 |
msgid ""
|
920 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
921 |
"You should leave it to Yes always. "
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: options/panel5.php:
|
925 |
msgid "Safely Uninstall"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: options/panel5.php:
|
929 |
msgid ""
|
930 |
"This option will allow you to delete the plugin with WordPress without "
|
931 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: options/panel5.php:
|
935 |
msgid "days"
|
936 |
msgstr "jours"
|
937 |
|
938 |
-
#: options/panel5.php:
|
939 |
msgid ""
|
940 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
941 |
"this feature."
|
@@ -943,14 +955,14 @@ msgstr ""
|
|
943 |
"Effacer les abonnements en attente (non confirmés) après X jours. Zéro "
|
944 |
"désactivera cette fonction."
|
945 |
|
946 |
-
#: options/panel5.php:
|
947 |
msgid ""
|
948 |
"If this option is enable the subscription box will be above the submit "
|
949 |
"button in your comment form. Use this when your theme is outdated and using "
|
950 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: options/panel5.php:
|
954 |
msgid ""
|
955 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
956 |
"misuse)."
|
@@ -958,14 +970,14 @@ msgstr ""
|
|
958 |
"Envoyer une notification par email pour confirmer l'abonnement (afin "
|
959 |
"d'éviter les fausses adresses)."
|
960 |
|
961 |
-
#: options/panel5.php:
|
962 |
msgid ""
|
963 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
964 |
msgstr ""
|
965 |
"Abonner automatiquement les auteurs à leurs propres articles (non "
|
966 |
"rétroactif)."
|
967 |
|
968 |
-
#: options/panel5.php:
|
969 |
msgid ""
|
970 |
"If enabled, will send email messages with content-type = text/html instead "
|
971 |
"of text/plain"
|
@@ -973,11 +985,11 @@ msgstr ""
|
|
973 |
"Si activé, enverra les messages avec content-type = text/html au lieu de "
|
974 |
"text/plain"
|
975 |
|
976 |
-
#: options/panel5.php:
|
977 |
msgid "HTMLify links in emails"
|
978 |
msgstr "HTMLliser les liens dans les emails"
|
979 |
|
980 |
-
#: options/panel5.php:
|
981 |
msgid ""
|
982 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
983 |
"</a></code> (only when HTML emails enabled)."
|
@@ -985,57 +997,57 @@ msgstr ""
|
|
985 |
"Si activé, encadrera tous les liens dans les messages avec <code><a href="
|
986 |
"\"\"></a></code> (uniquement quand les mails HTML sont activés)."
|
987 |
|
988 |
-
#: options/panel5.php:
|
989 |
msgid "Process trackbacks"
|
990 |
msgstr "Envoyer les trackbacks"
|
991 |
|
992 |
-
#: options/panel5.php:
|
993 |
msgid ""
|
994 |
"Notify users when a new trackback or pingback is added to the discussion."
|
995 |
msgstr ""
|
996 |
"Notifier les utilisateurs quand un nouveau trackback ou pingback est ajouté "
|
997 |
"à la discussion."
|
998 |
|
999 |
-
#: options/panel5.php:
|
1000 |
msgid "Track all subscriptions"
|
1001 |
msgstr "Envoyer abonnements sans commentaire"
|
1002 |
|
1003 |
-
#: options/panel5.php:
|
1004 |
msgid "Notify the administrator when users subscribe without commenting."
|
1005 |
msgstr ""
|
1006 |
"Notifier l'administrateur quand les utilisateurs souscrivent sans commenter."
|
1007 |
|
1008 |
-
#: options/panel5.php:
|
1009 |
msgid "Let the administrator subscribe to comments when logged in."
|
1010 |
msgstr ""
|
1011 |
"Permettre à l'administrateur de s'abonner aux commentaires quand il est "
|
1012 |
"connecté."
|
1013 |
|
1014 |
-
#: options/panel5.php:
|
1015 |
msgid "Send a copy of all Notifications to the administrator."
|
1016 |
msgstr "Envoyer une copie de toutes les notifications à l'administrateur."
|
1017 |
|
1018 |
-
#: options/panel5.php:
|
1019 |
msgid ""
|
1020 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1021 |
"you theme already add this into your site."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: options/panel5.php:
|
1025 |
msgid "StCR Unique Key"
|
1026 |
msgstr "Clef unique StCR"
|
1027 |
|
1028 |
-
#: options/panel5.php:
|
1029 |
msgid "This Unique Key is not set, please click the following button to "
|
1030 |
msgstr ""
|
1031 |
"Cette clef unique n'est pas définie, veuillez cliquer sur le bouton suivant "
|
1032 |
"pour"
|
1033 |
|
1034 |
-
#: options/panel5.php:
|
1035 |
msgid "Generate"
|
1036 |
msgstr "générer"
|
1037 |
|
1038 |
-
#: options/panel5.php:
|
1039 |
msgid ""
|
1040 |
"This Unique Key will be use to send the notification to your subscribers "
|
1041 |
"with more security."
|
@@ -1044,15 +1056,39 @@ msgstr ""
|
|
1044 |
"avec plus de\n"
|
1045 |
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsecurity."
|
1046 |
|
1047 |
-
#: options/
|
1048 |
-
msgid "
|
1049 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1050 |
|
1051 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1052 |
msgid ""
|
1053 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1054 |
"consider supporting the author if this plugin made your web site better, "
|
1055 |
-
"especially if you are making money out of it
|
|
|
1056 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1057 |
"strong>, and to buy some food for my hungry family."
|
1058 |
msgstr ""
|
@@ -1062,18 +1098,27 @@ msgstr ""
|
|
1062 |
"reçue sera réinvestie dans le développement de <strong>Subscribe to Comments "
|
1063 |
"Reloaded</strong> et dans l'achat de nourriture pour ma famille affamée."
|
1064 |
|
1065 |
-
#: options/panel7.php:
|
1066 |
-
|
1067 |
-
|
|
|
|
|
1068 |
|
1069 |
-
#: options/panel7.php:
|
1070 |
-
|
1071 |
-
|
1072 |
-
"
|
1073 |
-
"
|
1074 |
-
"
|
1075 |
-
"
|
1076 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1077 |
msgstr ""
|
1078 |
"Si vous ne désirez pas donner d'argent, veuillez envisager d'écrire un "
|
1079 |
"billet à propos de mon plugin avec un lien vers la page du plugin. Veuillez "
|
@@ -1083,11 +1128,11 @@ msgstr ""
|
|
1083 |
"<strong>Subscribe to Comments Reloaded</strong> etc... Quoi que vous "
|
1084 |
"fassiez, merci d'utiliser mon plugin !"
|
1085 |
|
1086 |
-
#: options/panel7.php:
|
1087 |
msgid "Subscribe to the Beta testers"
|
1088 |
msgstr "Abonné(e)"
|
1089 |
|
1090 |
-
#: options/panel7.php:
|
1091 |
msgid ""
|
1092 |
"Before a new Update we release a Beta version so that our current users can "
|
1093 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1095,11 +1140,11 @@ msgid ""
|
|
1095 |
"a>"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: options/panel7.php:
|
1099 |
msgid "Vote and show your appreciation"
|
1100 |
msgstr "Votez et montrez votre satisfaction"
|
1101 |
|
1102 |
-
#: options/panel7.php:
|
1103 |
msgid ""
|
1104 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1105 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1110,11 +1155,11 @@ msgstr ""
|
|
1110 |
"plugins/subscribe-to-comments-reloaded/\">Notez le</a>sur sa page de dépôt "
|
1111 |
"de plugins."
|
1112 |
|
1113 |
-
#: options/panel8.php:
|
1114 |
msgid "Did you find a Bug on the plugin?"
|
1115 |
msgstr "Avez-vous trouvé un bug dans ce plugin ?"
|
1116 |
|
1117 |
-
#: options/panel8.php:
|
1118 |
msgid ""
|
1119 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1120 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1211,207 +1256,46 @@ msgstr ""
|
|
1211 |
msgid "You have request to manage another email address and this is forbidden."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: utils/stcr_manage.php:
|
1215 |
-
msgid ""
|
1216 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1217 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1218 |
-
msgstr ""
|
1219 |
-
"Notifiez-moi des commentaires à venir via émail. Vous pouvez aussi <a "
|
1220 |
-
"href='[subscribe_link]'>vous abonner</a> sans commenter."
|
1221 |
-
|
1222 |
-
#: utils/stcr_manage.php:224
|
1223 |
-
msgid ""
|
1224 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1225 |
-
"subscriptions."
|
1226 |
-
msgstr ""
|
1227 |
-
"Vous êtes abonné(e) aux commentaires de ce billet.<a "
|
1228 |
-
"href='[manager_link]'>Gérer vos abonnements</a>.\""
|
1229 |
-
|
1230 |
-
#: utils/stcr_manage.php:225
|
1231 |
-
msgid ""
|
1232 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1233 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1234 |
-
msgstr ""
|
1235 |
-
"Votre abonnement aux commentaires de ce billet a besoin d'être confirmé. <a "
|
1236 |
-
"href='[manager_link]'>Gérer vos abonnements</a>."
|
1237 |
-
|
1238 |
-
#: utils/stcr_manage.php:226
|
1239 |
-
msgid ""
|
1240 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1241 |
-
msgstr ""
|
1242 |
-
"Vous pouvez <a href='[manager_link]'>gérer les abonnements</a> aux "
|
1243 |
-
"commentaires de ce billet."
|
1244 |
-
|
1245 |
-
#: utils/stcr_manage.php:232
|
1246 |
-
msgid ""
|
1247 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1248 |
-
"will send you a message containing the link to access your personal "
|
1249 |
-
"management page."
|
1250 |
-
msgstr ""
|
1251 |
-
"Pour gérer vos abonnements, veuillez entrer votre adresse email ci-dessous. "
|
1252 |
-
"Nous vous enverrons un message contenant le lien pour accéder à votre page "
|
1253 |
-
"personnelle de gestion."
|
1254 |
-
|
1255 |
-
#: utils/stcr_manage.php:233
|
1256 |
-
msgid ""
|
1257 |
-
"Thank you for using our subscription service. Your request has been "
|
1258 |
-
"completed, and you should receive an email with the management link in a few "
|
1259 |
-
"minutes."
|
1260 |
-
msgstr ""
|
1261 |
-
"Merci d'utiliser notre service d'abonnement. Votre requête a été complétée "
|
1262 |
-
"et vous devriez recevoir un email avec un lien de gestion dans quelques "
|
1263 |
-
"minutes."
|
1264 |
-
|
1265 |
-
#: utils/stcr_manage.php:234
|
1266 |
-
msgid ""
|
1267 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1268 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1269 |
-
"form here below and you're all set."
|
1270 |
-
msgstr ""
|
1271 |
-
"Vous pouvez suivre la discussion sur <strong>[post_title]</strong> sans "
|
1272 |
-
"avoir à laisser un commentaire. Chouette, pas vrai ? Entrez simplement votre "
|
1273 |
-
"adresse email dans le champ ci-dessous."
|
1274 |
-
|
1275 |
-
#: utils/stcr_manage.php:235
|
1276 |
-
msgid ""
|
1277 |
-
"Thank you for using our subscription service. Your request has been "
|
1278 |
-
"completed. You will receive a notification email every time a new comment to "
|
1279 |
-
"this article is approved and posted by the administrator."
|
1280 |
-
msgstr ""
|
1281 |
-
"Merci d'utiliser notre service d'abonnement. Votre requête a abouti. Vous "
|
1282 |
-
"recevrez une notification par email à chaque fois qu'un nouveau commentaire "
|
1283 |
-
"sur cet article sera posté et approuvé par l'administrateur."
|
1284 |
-
|
1285 |
-
#: utils/stcr_manage.php:236
|
1286 |
-
msgid ""
|
1287 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1288 |
-
"request, please check your email for the verification message and follow the "
|
1289 |
-
"instructions."
|
1290 |
-
msgstr ""
|
1291 |
-
"Merci d'utiliser notre service d'abonnement. Afin de confirmer votre "
|
1292 |
-
"requête, veuillez vérifier votre courrier email pour le message de "
|
1293 |
-
"vérification et suivre les instructions."
|
1294 |
-
|
1295 |
-
#: utils/stcr_manage.php:237
|
1296 |
-
msgid ""
|
1297 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1298 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1299 |
-
msgstr ""
|
1300 |
-
"Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
|
1301 |
-
"la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
|
1302 |
-
"la liste."
|
1303 |
-
|
1304 |
-
#: utils/stcr_manage.php:238
|
1305 |
-
msgid ""
|
1306 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1307 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1308 |
-
"You are currently subscribed to:"
|
1309 |
-
msgstr ""
|
1310 |
-
"Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
|
1311 |
-
"la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
|
1312 |
-
"la liste. Vous êtes actuellement abonné(e) à:"
|
1313 |
-
|
1314 |
-
#: utils/stcr_manage.php:242
|
1315 |
-
msgid "There is a new comment to [post_title]"
|
1316 |
-
msgstr "Il y a un nouveau commentaire à [post_title]"
|
1317 |
-
|
1318 |
-
#: utils/stcr_manage.php:243
|
1319 |
-
msgid ""
|
1320 |
-
"There is a new comment to [post_title].\n"
|
1321 |
-
"Comment Link: [comment_permalink]\n"
|
1322 |
-
"Author: [comment_author]\n"
|
1323 |
-
"Comment:\n"
|
1324 |
-
"[comment_content]\n"
|
1325 |
-
"Permalink: [post_permalink]\n"
|
1326 |
-
"Manage your subscriptions: [manager_link]"
|
1327 |
-
msgstr ""
|
1328 |
-
"Il y a un nouveau commentaire à [post_title].\n"
|
1329 |
-
"Lien du commentaire : [comment_permalink]\n"
|
1330 |
-
"Auteur : [comment_author]\n"
|
1331 |
-
"Commentaire :\n"
|
1332 |
-
"[comment_content]\n"
|
1333 |
-
"Lien permanent : [post_permalink]\n"
|
1334 |
-
"Gérer vos abonnements : [manager_link]"
|
1335 |
-
|
1336 |
-
#: utils/stcr_manage.php:244
|
1337 |
-
msgid "Please confirm your subscription to [post_title]"
|
1338 |
-
msgstr "Veuillez confirmer votre abonnement à [post_title]"
|
1339 |
-
|
1340 |
-
#: utils/stcr_manage.php:245
|
1341 |
-
msgid ""
|
1342 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1343 |
-
"[post_permalink]\n"
|
1344 |
-
"\n"
|
1345 |
-
"Please confirm your request by clicking on this link:\n"
|
1346 |
-
"[confirm_link]"
|
1347 |
-
msgstr ""
|
1348 |
-
"Vous avez demandé à être averti à chaque fois qu'un nouveau commentaire est "
|
1349 |
-
"ajouté à :\n"
|
1350 |
-
"[post_permalink]\n"
|
1351 |
-
"\n"
|
1352 |
-
"Veuillez confirmer votre demande en cliquant sur ce lien :\n"
|
1353 |
-
"[confirm_link]"
|
1354 |
-
|
1355 |
-
#: utils/stcr_manage.php:246
|
1356 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1357 |
-
msgstr "Gestion de vos abonnements sur [blog_name]"
|
1358 |
-
|
1359 |
-
#: utils/stcr_manage.php:247
|
1360 |
-
msgid ""
|
1361 |
-
"You have requested to manage your subscriptions to the articles on "
|
1362 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1363 |
-
msgstr ""
|
1364 |
-
|
1365 |
-
#: utils/stcr_manage.php:248
|
1366 |
-
msgid ""
|
1367 |
-
"You have requested to manage your subscriptions to the articles on "
|
1368 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1369 |
-
"[manager_link]"
|
1370 |
-
msgstr ""
|
1371 |
-
"Vous avez demandé à gérer vos abonnements aux articles sur [blog_name]. "
|
1372 |
-
"Suivez ce lien pour accéder à votre page personnelle :\n"
|
1373 |
-
"[manager_link]"
|
1374 |
-
|
1375 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1376 |
msgid "StCR System"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: utils/stcr_manage.php:
|
1380 |
-
#: utils/stcr_manage.php:
|
1381 |
-
#: utils/stcr_manage.php:
|
1382 |
-
#: utils/stcr_manage.php:
|
1383 |
-
#: utils/stcr_manage.php:
|
1384 |
msgid "You do not have sufficient permissions to access this page."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: utils/stcr_manage.php:
|
1388 |
msgid "Subscriptions"
|
1389 |
msgstr "Abonnements"
|
1390 |
|
1391 |
-
#: utils/stcr_manage.php:
|
1392 |
msgid ""
|
1393 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1394 |
msgstr ""
|
1395 |
"Vous avez besoin d'aide pour utiliser Subscribe to Comments Reloaded ? "
|
1396 |
"Visiter le "
|
1397 |
|
1398 |
-
#: utils/stcr_manage.php:
|
1399 |
msgid "support forum"
|
1400 |
msgstr "forum de support officiel"
|
1401 |
|
1402 |
-
#: utils/stcr_manage.php:
|
1403 |
msgid "Feeling generous?"
|
1404 |
msgstr "Vous vous sentez d'humeur généreuse ?"
|
1405 |
|
1406 |
-
#: utils/stcr_manage.php:
|
1407 |
msgid "Donate a few bucks!"
|
1408 |
msgstr "Faîtes don de quelques euros !"
|
1409 |
|
1410 |
-
#: utils/stcr_upgrade.php:
|
1411 |
msgid "Important Notice"
|
1412 |
msgstr "Remarque importante"
|
1413 |
|
1414 |
-
#: utils/stcr_upgrade.php:
|
1415 |
msgid ""
|
1416 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1417 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1419,7 +1303,7 @@ msgid ""
|
|
1419 |
"src=\""
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: utils/stcr_upgrade.php:
|
1423 |
msgid ""
|
1424 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1425 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
@@ -1429,7 +1313,7 @@ msgstr ""
|
|
1429 |
"Comments</strong> ont été détectées et automatiquement importées dans "
|
1430 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1431 |
|
1432 |
-
#: utils/stcr_upgrade.php:
|
1433 |
msgid ""
|
1434 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1435 |
"Comments to prevent confusion between the two plugins."
|
@@ -1437,7 +1321,7 @@ msgstr ""
|
|
1437 |
"Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
|
1438 |
"Comments pour éviter toute confusion entre les deux plugins."
|
1439 |
|
1440 |
-
#: utils/stcr_upgrade.php:
|
1441 |
msgid ""
|
1442 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1443 |
"that you want to import, you'll need to import that data manually, as only "
|
@@ -1448,8 +1332,8 @@ msgstr ""
|
|
1448 |
"manuellement car il n'y a qu'une seule routine d'importation qui "
|
1449 |
"fonctionnera pour éviter la perte de données."
|
1450 |
|
1451 |
-
#: utils/stcr_upgrade.php:
|
1452 |
-
#: utils/stcr_upgrade.php:
|
1453 |
msgid ""
|
1454 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1455 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1457,7 +1341,7 @@ msgid ""
|
|
1457 |
"\"stcr-loading-animation\" src=\""
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: utils/stcr_upgrade.php:
|
1461 |
msgid ""
|
1462 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1463 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
@@ -1467,7 +1351,7 @@ msgstr ""
|
|
1467 |
"Notification</strong> ont été détectées et automatiquement importées dans "
|
1468 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1469 |
|
1470 |
-
#: utils/stcr_upgrade.php:
|
1471 |
msgid ""
|
1472 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1473 |
"Notification to prevent confusion between the two plugins."
|
@@ -1475,7 +1359,7 @@ msgstr ""
|
|
1475 |
"Il est recommandé que vous <strong>désactiviez</strong> Comment Reply "
|
1476 |
"Notification pour éviter toute confusion entre les deux plugins."
|
1477 |
|
1478 |
-
#: utils/stcr_upgrade.php:
|
1479 |
msgid ""
|
1480 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1481 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1486,7 +1370,7 @@ msgstr ""
|
|
1486 |
"Subscriptions<</strong> ont été détectées et automatiquement importées dans "
|
1487 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1488 |
|
1489 |
-
#: utils/stcr_upgrade.php:
|
1490 |
msgid ""
|
1491 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1492 |
"Subscriptions to prevent confusion between the two plugins."
|
@@ -1494,7 +1378,7 @@ msgstr ""
|
|
1494 |
"Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
|
1495 |
"Comments pour éviter toute confusion entre les deux plugins."
|
1496 |
|
1497 |
-
#: utils/stcr_upgrade.php:
|
1498 |
msgid ""
|
1499 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1500 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1507,7 +1391,7 @@ msgstr ""
|
|
1507 |
"qu'une seule routine d'importation qui fonctionnera pour éviter la perte de "
|
1508 |
"données."
|
1509 |
|
1510 |
-
#: utils/stcr_upgrade.php:
|
1511 |
msgid ""
|
1512 |
"<strong>Note:</strong> If you were previously using the "
|
1513 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1520,29 +1404,29 @@ msgstr ""
|
|
1520 |
"subscribe-url]</code>, vous devez les remplacer respectivement par "
|
1521 |
"<code>subscribe_reloaded_show()</code> et <code>[subscribe-url]</code>."
|
1522 |
|
1523 |
-
#: utils/stcr_upgrade.php:
|
1524 |
msgid ""
|
1525 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: utils/stcr_upgrade.php:
|
1529 |
-
#: utils/stcr_upgrade.php:
|
1530 |
msgid ""
|
1531 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1532 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: utils/stcr_upgrade.php:
|
1536 |
msgid ""
|
1537 |
-
"Please consider to make a donation to support the plugin
|
1538 |
-
"<a href=\"\n"
|
1539 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1540 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1541 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1542 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: utils/stcr_upgrade.php:
|
1546 |
msgid ""
|
1547 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1548 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1550,23 +1434,23 @@ msgid ""
|
|
1550 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: utils/stcr_upgrade.php:
|
1554 |
msgid ""
|
1555 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1556 |
"160106."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: utils/stcr_upgrade.php:
|
1560 |
msgid ""
|
1561 |
"This version includes many changes and fixes to improve your experience with "
|
1562 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1563 |
"email templates, Subscription Checkbox position, and more!"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: utils/stcr_upgrade.php:
|
1567 |
-
#: utils/stcr_upgrade.php:
|
1568 |
-
#: utils/stcr_upgrade.php:
|
1569 |
-
#: utils/stcr_upgrade.php:
|
1570 |
msgid ""
|
1571 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1572 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1574,123 +1458,126 @@ msgid ""
|
|
1574 |
"class=\"stcr-loading-animation\" src=\""
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: utils/stcr_upgrade.php:
|
1578 |
msgid ""
|
1579 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1580 |
"160115."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: utils/stcr_upgrade.php:
|
1584 |
msgid ""
|
1585 |
"This version includes fixes to broken links while managing your subscriptions"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: utils/stcr_upgrade.php:
|
1589 |
msgid ""
|
1590 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1591 |
"160831"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: utils/stcr_upgrade.php:
|
1595 |
msgid "This version includes fixes to many bugs and also new features, "
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: utils/stcr_upgrade.php:
|
1599 |
msgid ""
|
1600 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1601 |
"address. This will help the subscribers to use the Reply option in their "
|
1602 |
"email agents."
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: utils/stcr_upgrade.php:
|
1606 |
msgid ""
|
1607 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1608 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: utils/stcr_upgrade.php:
|
1612 |
msgid ""
|
1613 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1614 |
"without loosing your subscriptions. You can use this option also for reset "
|
1615 |
"all the settings, see the FAQ."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: utils/stcr_upgrade.php:
|
1619 |
msgid ""
|
1620 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1621 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1622 |
"Post Type."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: utils/stcr_upgrade.php:
|
1626 |
msgid ""
|
1627 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1628 |
"options to and the management link only by email and not to display it on "
|
1629 |
"the request link page."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: utils/stcr_upgrade.php:
|
1633 |
msgid ""
|
1634 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1635 |
"160902"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: utils/stcr_upgrade.php:
|
1639 |
msgid ""
|
1640 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1641 |
"previous 160831 version."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: utils/stcr_upgrade.php:
|
1645 |
msgid "Settings"
|
1646 |
msgstr "Réglages"
|
1647 |
|
1648 |
-
#: utils/stcr_upgrade.php:
|
1649 |
msgid ""
|
1650 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1651 |
"160915"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: utils/stcr_upgrade.php:
|
1655 |
-
#: utils/stcr_upgrade.php:
|
1656 |
msgid "This version includes fixes and improvements, "
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: utils/stcr_upgrade.php:
|
1660 |
msgid ""
|
1661 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1662 |
"dropdown."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: utils/stcr_upgrade.php:
|
1666 |
msgid ""
|
1667 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: utils/stcr_upgrade.php:
|
|
|
1671 |
msgid "Log Settings"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: utils/stcr_upgrade.php:
|
|
|
1675 |
msgid ""
|
1676 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: utils/stcr_upgrade.php:
|
1680 |
msgid ""
|
1681 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1682 |
"enable."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: utils/stcr_upgrade.php:
|
1686 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: utils/stcr_upgrade.php:
|
|
|
1690 |
msgid "The support of this plugin is given thanks to your donations."
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: utils/stcr_upgrade.php:
|
1694 |
msgid ""
|
1695 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1696 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1700,19 +1587,19 @@ msgid ""
|
|
1700 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: utils/stcr_upgrade.php:
|
1704 |
msgid ""
|
1705 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1706 |
"installation regarding a database table creation."
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: utils/stcr_upgrade.php:
|
1710 |
msgid ""
|
1711 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1712 |
"Awesome."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: utils/stcr_upgrade.php:
|
1716 |
msgid ""
|
1717 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1718 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1723,7 +1610,204 @@ msgid ""
|
|
1723 |
"for the users that have supported the plugin development."
|
1724 |
msgstr ""
|
1725 |
|
1726 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1727 |
msgid "StCR Notification"
|
1728 |
msgstr "Notifications"
|
1729 |
|
@@ -1735,6 +1819,29 @@ msgstr "Ne pas s'abonner"
|
|
1735 |
msgid "All"
|
1736 |
msgstr "S'abonner"
|
1737 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1738 |
#~ msgid ""
|
1739 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1740 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:08-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:10-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 |
"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 2.0.6\n"
|
23 |
"X-Loco-Target-Locale: fr_FR\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
25 |
"X-Poedit-SearchPathExcluded-0: includes\n"
|
26 |
|
27 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
28 |
+
#: utils/stcr_utils.php:203
|
29 |
msgid "Manage subscriptions"
|
30 |
msgstr "Gérer les abonnements"
|
31 |
|
32 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
33 |
msgid "Comment Form"
|
34 |
msgstr "Formulaire de commentaire"
|
35 |
|
36 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
37 |
msgid "Management Page"
|
38 |
msgstr "Page de gestion"
|
39 |
|
40 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
41 |
msgid "Notifications"
|
42 |
msgstr "Notifications"
|
43 |
|
44 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
45 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
46 |
msgid "Options"
|
47 |
msgstr "Options"
|
48 |
|
49 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
50 |
msgid "Support"
|
51 |
msgstr "Support"
|
52 |
|
53 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
54 |
msgid "Donate"
|
55 |
msgstr "Faîtes don de quelques euros !"
|
56 |
|
351 |
msgid "Sorry, no subscriptions match your search criteria."
|
352 |
msgstr "Désolé, aucun abonnement ne correspond à votre recherche."
|
353 |
|
354 |
+
#: options/panel10.php:41
|
355 |
msgid "The log file has been successfully deleted."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: options/panel10.php:46
|
359 |
msgid "Can't delete the log file, check the file permissions."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: options/panel10.php:52
|
363 |
msgid "The log file does not exists."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: options/panel10.php:66 options/panel10.php:110
|
367 |
msgid "Enable Log Information"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: options/panel10.php:72 options/panel10.php:119
|
371 |
msgid "Enable Auto clean log data"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
375 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
376 |
msgid "Your settings have been successfully updated."
|
377 |
msgstr "Vos réglages ont été sauvegardés avec succès."
|
378 |
|
379 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
380 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
381 |
msgid "There was an error updating the following fields:"
|
382 |
msgstr "Une erreur est apparue lors de la mise à jour des champs suivants :"
|
383 |
|
384 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
385 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
386 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
387 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
388 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
389 |
+
#: options/panel5.php:210 options/panel5.php:219
|
390 |
msgid "Yes"
|
391 |
msgstr "Oui"
|
392 |
|
393 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
394 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
395 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
396 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
397 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
398 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
399 |
msgid "No"
|
400 |
msgstr "Non"
|
401 |
|
402 |
+
#: options/panel10.php:114
|
403 |
msgid ""
|
404 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
405 |
"purposes."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: options/panel10.php:125
|
409 |
msgid "Hourly"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: options/panel10.php:126
|
413 |
msgid "Twice Daily"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: options/panel10.php:127
|
417 |
msgid "Daily"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: options/panel10.php:129
|
421 |
msgid "If enabled, StCR will auto clean your information every day."
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: options/panel10.php:134
|
425 |
msgid "Clean Up Log Archive"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: options/panel10.php:138
|
429 |
msgid ""
|
430 |
"If you want to clean up the log archive please click the following button"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: options/panel10.php:140
|
434 |
msgid "Clean"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: options/panel10.php:147 options/panel10.php:150
|
438 |
msgid "System Information"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
442 |
+
#: options/panel4.php:283 options/panel5.php:265
|
443 |
msgid "Save Changes"
|
444 |
msgstr "Sauvegarder les modifications"
|
445 |
|
795 |
#: options/panel4.php:128
|
796 |
msgid ""
|
797 |
"This will be use when the user click reply on their email agent. If not set "
|
798 |
+
"it will be the same as the Sender email address."
|
799 |
msgstr ""
|
800 |
|
801 |
#: options/panel4.php:147
|
811 |
|
812 |
#: options/panel4.php:171
|
813 |
msgid ""
|
814 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
815 |
+
"all the content and save the options.</strong></p>"
|
816 |
msgstr ""
|
817 |
|
818 |
#: options/panel4.php:184
|
859 |
"[blog_name]"
|
860 |
msgstr "Sujet de l'email de confirmation. Tag autorisé : [post_title]"
|
861 |
|
862 |
+
#: options/panel5.php:38
|
863 |
+
#, fuzzy
|
864 |
+
#| msgid "Your settings have been successfully updated."
|
865 |
+
msgid "Your settings have been successfully reset."
|
866 |
+
msgstr "Vos réglages ont été sauvegardés avec succès."
|
867 |
+
|
868 |
+
#: options/panel5.php:40
|
869 |
+
#, fuzzy
|
870 |
+
#| msgid "There was an error updating the following fields:"
|
871 |
+
msgid "There was an error deleting the options:"
|
872 |
+
msgstr "Une erreur est apparue lors de la mise à jour des champs suivants :"
|
873 |
+
|
874 |
+
#: options/panel5.php:48 options/panel5.php:108
|
875 |
msgid "Show StCR checkbox / dropdown"
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: options/panel5.php:51
|
879 |
msgid "Safetly Uninstall"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: options/panel5.php:54 options/panel5.php:125
|
883 |
msgid "Autopurge requests"
|
884 |
msgstr "Purger automatiquement les requêtes"
|
885 |
|
886 |
+
#: options/panel5.php:57 options/panel5.php:143
|
887 |
msgid "Enable double check"
|
888 |
msgstr "Autoriser la vérification"
|
889 |
|
890 |
+
#: options/panel5.php:60 options/panel5.php:134
|
891 |
msgid "StCR Position"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: options/panel5.php:63 options/panel5.php:151
|
895 |
msgid "Subscribe authors"
|
896 |
msgstr "Abonné(e)"
|
897 |
|
898 |
+
#: options/panel5.php:66 options/panel5.php:161
|
899 |
msgid "Enable HTML emails"
|
900 |
msgstr "Activer les émails en HTML"
|
901 |
|
902 |
+
#: options/panel5.php:69
|
903 |
msgid "HTMLify Links in HTML emails"
|
904 |
msgstr "HTMliser les liens dans les emails HTML"
|
905 |
|
906 |
+
#: options/panel5.php:72
|
907 |
msgid "Send trackbacks"
|
908 |
msgstr "Envoyer les trackbacks"
|
909 |
|
910 |
+
#: options/panel5.php:75
|
911 |
msgid "Notify admin"
|
912 |
msgstr "Notifier l'admin"
|
913 |
|
914 |
+
#: options/panel5.php:78 options/panel5.php:199
|
915 |
msgid "Let admin subscribe"
|
916 |
msgstr "Permettre aux admins de s'abonner"
|
917 |
|
918 |
+
#: options/panel5.php:81 options/panel5.php:208
|
919 |
msgid "BCC admin on Notifications"
|
920 |
msgstr "Notifications"
|
921 |
|
922 |
+
#: options/panel5.php:84 options/panel5.php:217
|
923 |
msgid "Enable Font Awesome"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
927 |
+
msgid "Reset All Options"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: options/panel5.php:112
|
931 |
msgid ""
|
932 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
933 |
"You should leave it to Yes always. "
|
934 |
msgstr ""
|
935 |
|
936 |
+
#: options/panel5.php:117
|
937 |
msgid "Safely Uninstall"
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: options/panel5.php:121
|
941 |
msgid ""
|
942 |
"This option will allow you to delete the plugin with WordPress without "
|
943 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: options/panel5.php:128
|
947 |
msgid "days"
|
948 |
msgstr "jours"
|
949 |
|
950 |
+
#: options/panel5.php:129
|
951 |
msgid ""
|
952 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
953 |
"this feature."
|
955 |
"Effacer les abonnements en attente (non confirmés) après X jours. Zéro "
|
956 |
"désactivera cette fonction."
|
957 |
|
958 |
+
#: options/panel5.php:138
|
959 |
msgid ""
|
960 |
"If this option is enable the subscription box will be above the submit "
|
961 |
"button in your comment form. Use this when your theme is outdated and using "
|
962 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: options/panel5.php:147
|
966 |
msgid ""
|
967 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
968 |
"misuse)."
|
970 |
"Envoyer une notification par email pour confirmer l'abonnement (afin "
|
971 |
"d'éviter les fausses adresses)."
|
972 |
|
973 |
+
#: options/panel5.php:156
|
974 |
msgid ""
|
975 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
976 |
msgstr ""
|
977 |
"Abonner automatiquement les auteurs à leurs propres articles (non "
|
978 |
"rétroactif)."
|
979 |
|
980 |
+
#: options/panel5.php:165
|
981 |
msgid ""
|
982 |
"If enabled, will send email messages with content-type = text/html instead "
|
983 |
"of text/plain"
|
985 |
"Si activé, enverra les messages avec content-type = text/html au lieu de "
|
986 |
"text/plain"
|
987 |
|
988 |
+
#: options/panel5.php:170
|
989 |
msgid "HTMLify links in emails"
|
990 |
msgstr "HTMLliser les liens dans les emails"
|
991 |
|
992 |
+
#: options/panel5.php:175
|
993 |
msgid ""
|
994 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
995 |
"</a></code> (only when HTML emails enabled)."
|
997 |
"Si activé, encadrera tous les liens dans les messages avec <code><a href="
|
998 |
"\"\"></a></code> (uniquement quand les mails HTML sont activés)."
|
999 |
|
1000 |
+
#: options/panel5.php:180
|
1001 |
msgid "Process trackbacks"
|
1002 |
msgstr "Envoyer les trackbacks"
|
1003 |
|
1004 |
+
#: options/panel5.php:184
|
1005 |
msgid ""
|
1006 |
"Notify users when a new trackback or pingback is added to the discussion."
|
1007 |
msgstr ""
|
1008 |
"Notifier les utilisateurs quand un nouveau trackback ou pingback est ajouté "
|
1009 |
"à la discussion."
|
1010 |
|
1011 |
+
#: options/panel5.php:189
|
1012 |
msgid "Track all subscriptions"
|
1013 |
msgstr "Envoyer abonnements sans commentaire"
|
1014 |
|
1015 |
+
#: options/panel5.php:194
|
1016 |
msgid "Notify the administrator when users subscribe without commenting."
|
1017 |
msgstr ""
|
1018 |
"Notifier l'administrateur quand les utilisateurs souscrivent sans commenter."
|
1019 |
|
1020 |
+
#: options/panel5.php:203
|
1021 |
msgid "Let the administrator subscribe to comments when logged in."
|
1022 |
msgstr ""
|
1023 |
"Permettre à l'administrateur de s'abonner aux commentaires quand il est "
|
1024 |
"connecté."
|
1025 |
|
1026 |
+
#: options/panel5.php:212
|
1027 |
msgid "Send a copy of all Notifications to the administrator."
|
1028 |
msgstr "Envoyer une copie de toutes les notifications à l'administrateur."
|
1029 |
|
1030 |
+
#: options/panel5.php:221
|
1031 |
msgid ""
|
1032 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1033 |
"you theme already add this into your site."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: options/panel5.php:226
|
1037 |
msgid "StCR Unique Key"
|
1038 |
msgstr "Clef unique StCR"
|
1039 |
|
1040 |
+
#: options/panel5.php:231
|
1041 |
msgid "This Unique Key is not set, please click the following button to "
|
1042 |
msgstr ""
|
1043 |
"Cette clef unique n'est pas définie, veuillez cliquer sur le bouton suivant "
|
1044 |
"pour"
|
1045 |
|
1046 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1047 |
msgid "Generate"
|
1048 |
msgstr "générer"
|
1049 |
|
1050 |
+
#: options/panel5.php:243
|
1051 |
msgid ""
|
1052 |
"This Unique Key will be use to send the notification to your subscribers "
|
1053 |
"with more security."
|
1056 |
"avec plus de\n"
|
1057 |
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tsecurity."
|
1058 |
|
1059 |
+
#: options/panel5.php:256
|
1060 |
+
msgid ""
|
1061 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1062 |
+
"with caution."
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: options/panel5.php:258
|
1066 |
+
msgid "Yes, Delete Options including subscriptions."
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: options/panel5.php:259
|
1070 |
+
msgid "No, Only delete the StCR Options."
|
1071 |
+
msgstr ""
|
1072 |
|
1073 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1074 |
+
msgid ""
|
1075 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1076 |
+
"hidden=\"true\"></i>"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1080 |
+
#, fuzzy
|
1081 |
+
#| msgid ""
|
1082 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1083 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1084 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1085 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1086 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1087 |
msgid ""
|
1088 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1089 |
"consider supporting the author if this plugin made your web site better, "
|
1090 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1091 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1092 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1093 |
"strong>, and to buy some food for my hungry family."
|
1094 |
msgstr ""
|
1098 |
"reçue sera réinvestie dans le développement de <strong>Subscribe to Comments "
|
1099 |
"Reloaded</strong> et dans l'achat de nourriture pour ma famille affamée."
|
1100 |
|
1101 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1102 |
+
#, fuzzy
|
1103 |
+
#| msgid "You can help"
|
1104 |
+
msgid "You can still help"
|
1105 |
+
msgstr "Vous pouvez aider"
|
1106 |
|
1107 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1108 |
+
#, fuzzy
|
1109 |
+
#| msgid ""
|
1110 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1111 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1112 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1113 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1114 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1115 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1116 |
+
msgid ""
|
1117 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1118 |
+
"Please let your readers know what makes your blog better. You can also "
|
1119 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1120 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1121 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1122 |
msgstr ""
|
1123 |
"Si vous ne désirez pas donner d'argent, veuillez envisager d'écrire un "
|
1124 |
"billet à propos de mon plugin avec un lien vers la page du plugin. Veuillez "
|
1128 |
"<strong>Subscribe to Comments Reloaded</strong> etc... Quoi que vous "
|
1129 |
"fassiez, merci d'utiliser mon plugin !"
|
1130 |
|
1131 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1132 |
msgid "Subscribe to the Beta testers"
|
1133 |
msgstr "Abonné(e)"
|
1134 |
|
1135 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1136 |
msgid ""
|
1137 |
"Before a new Update we release a Beta version so that our current users can "
|
1138 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1140 |
"a>"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1144 |
msgid "Vote and show your appreciation"
|
1145 |
msgstr "Votez et montrez votre satisfaction"
|
1146 |
|
1147 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1148 |
msgid ""
|
1149 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1150 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1155 |
"plugins/subscribe-to-comments-reloaded/\">Notez le</a>sur sa page de dépôt "
|
1156 |
"de plugins."
|
1157 |
|
1158 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1159 |
msgid "Did you find a Bug on the plugin?"
|
1160 |
msgstr "Avez-vous trouvé un bug dans ce plugin ?"
|
1161 |
|
1162 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1163 |
msgid ""
|
1164 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1165 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1256 |
msgid "You have request to manage another email address and this is forbidden."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1260 |
msgid "StCR System"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1264 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1265 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1266 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1267 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1268 |
msgid "You do not have sufficient permissions to access this page."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: utils/stcr_manage.php:726
|
1272 |
msgid "Subscriptions"
|
1273 |
msgstr "Abonnements"
|
1274 |
|
1275 |
+
#: utils/stcr_manage.php:782
|
1276 |
msgid ""
|
1277 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1278 |
msgstr ""
|
1279 |
"Vous avez besoin d'aide pour utiliser Subscribe to Comments Reloaded ? "
|
1280 |
"Visiter le "
|
1281 |
|
1282 |
+
#: utils/stcr_manage.php:782
|
1283 |
msgid "support forum"
|
1284 |
msgstr "forum de support officiel"
|
1285 |
|
1286 |
+
#: utils/stcr_manage.php:783
|
1287 |
msgid "Feeling generous?"
|
1288 |
msgstr "Vous vous sentez d'humeur généreuse ?"
|
1289 |
|
1290 |
+
#: utils/stcr_manage.php:783
|
1291 |
msgid "Donate a few bucks!"
|
1292 |
msgstr "Faîtes don de quelques euros !"
|
1293 |
|
1294 |
+
#: utils/stcr_upgrade.php:72
|
1295 |
msgid "Important Notice"
|
1296 |
msgstr "Remarque importante"
|
1297 |
|
1298 |
+
#: utils/stcr_upgrade.php:120
|
1299 |
msgid ""
|
1300 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1301 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1303 |
"src=\""
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: utils/stcr_upgrade.php:175
|
1307 |
msgid ""
|
1308 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1309 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1313 |
"Comments</strong> ont été détectées et automatiquement importées dans "
|
1314 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1315 |
|
1316 |
+
#: utils/stcr_upgrade.php:175
|
1317 |
msgid ""
|
1318 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1319 |
"Comments to prevent confusion between the two plugins."
|
1321 |
"Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
|
1322 |
"Comments pour éviter toute confusion entre les deux plugins."
|
1323 |
|
1324 |
+
#: utils/stcr_upgrade.php:176
|
1325 |
msgid ""
|
1326 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1327 |
"that you want to import, you'll need to import that data manually, as only "
|
1332 |
"manuellement car il n'y a qu'une seule routine d'importation qui "
|
1333 |
"fonctionnera pour éviter la perte de données."
|
1334 |
|
1335 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1336 |
+
#: utils/stcr_upgrade.php:400
|
1337 |
msgid ""
|
1338 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1339 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1341 |
"\"stcr-loading-animation\" src=\""
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: utils/stcr_upgrade.php:250
|
1345 |
msgid ""
|
1346 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1347 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1351 |
"Notification</strong> ont été détectées et automatiquement importées dans "
|
1352 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1353 |
|
1354 |
+
#: utils/stcr_upgrade.php:250
|
1355 |
msgid ""
|
1356 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1357 |
"Notification to prevent confusion between the two plugins."
|
1359 |
"Il est recommandé que vous <strong>désactiviez</strong> Comment Reply "
|
1360 |
"Notification pour éviter toute confusion entre les deux plugins."
|
1361 |
|
1362 |
+
#: utils/stcr_upgrade.php:397
|
1363 |
msgid ""
|
1364 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1365 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1370 |
"Subscriptions<</strong> ont été détectées et automatiquement importées dans "
|
1371 |
"<strong>Subscribe to Comments Reloaded</strong>."
|
1372 |
|
1373 |
+
#: utils/stcr_upgrade.php:397
|
1374 |
msgid ""
|
1375 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1376 |
"Subscriptions to prevent confusion between the two plugins."
|
1378 |
"Il est recommandé que vous <strong>désactiviez</strong> Subscribe to "
|
1379 |
"Comments pour éviter toute confusion entre les deux plugins."
|
1380 |
|
1381 |
+
#: utils/stcr_upgrade.php:398
|
1382 |
msgid ""
|
1383 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1384 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1391 |
"qu'une seule routine d'importation qui fonctionnera pour éviter la perte de "
|
1392 |
"données."
|
1393 |
|
1394 |
+
#: utils/stcr_upgrade.php:399
|
1395 |
msgid ""
|
1396 |
"<strong>Note:</strong> If you were previously using the "
|
1397 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1404 |
"subscribe-url]</code>, vous devez les remplacer respectivement par "
|
1405 |
"<code>subscribe_reloaded_show()</code> et <code>[subscribe-url]</code>."
|
1406 |
|
1407 |
+
#: utils/stcr_upgrade.php:413
|
1408 |
msgid ""
|
1409 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1413 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1414 |
msgid ""
|
1415 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1416 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: utils/stcr_upgrade.php:415
|
1420 |
msgid ""
|
1421 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1422 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1423 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1424 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1425 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1426 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: utils/stcr_upgrade.php:417
|
1430 |
msgid ""
|
1431 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1432 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1434 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: utils/stcr_upgrade.php:428
|
1438 |
msgid ""
|
1439 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1440 |
"160106."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: utils/stcr_upgrade.php:429
|
1444 |
msgid ""
|
1445 |
"This version includes many changes and fixes to improve your experience with "
|
1446 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1447 |
"email templates, Subscription Checkbox position, and more!"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1451 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1452 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1453 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1454 |
msgid ""
|
1455 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1456 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1458 |
"class=\"stcr-loading-animation\" src=\""
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: utils/stcr_upgrade.php:443
|
1462 |
msgid ""
|
1463 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1464 |
"160115."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: utils/stcr_upgrade.php:444
|
1468 |
msgid ""
|
1469 |
"This version includes fixes to broken links while managing your subscriptions"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: utils/stcr_upgrade.php:458
|
1473 |
msgid ""
|
1474 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1475 |
"160831"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1479 |
msgid "This version includes fixes to many bugs and also new features, "
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1483 |
msgid ""
|
1484 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1485 |
"address. This will help the subscribers to use the Reply option in their "
|
1486 |
"email agents."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1490 |
msgid ""
|
1491 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1492 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1496 |
msgid ""
|
1497 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1498 |
"without loosing your subscriptions. You can use this option also for reset "
|
1499 |
"all the settings, see the FAQ."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1503 |
msgid ""
|
1504 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1505 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1506 |
"Post Type."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1510 |
msgid ""
|
1511 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1512 |
"options to and the management link only by email and not to display it on "
|
1513 |
"the request link page."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: utils/stcr_upgrade.php:480
|
1517 |
msgid ""
|
1518 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1519 |
"160902"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: utils/stcr_upgrade.php:483
|
1523 |
msgid ""
|
1524 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1525 |
"previous 160831 version."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1529 |
msgid "Settings"
|
1530 |
msgstr "Réglages"
|
1531 |
|
1532 |
+
#: utils/stcr_upgrade.php:504
|
1533 |
msgid ""
|
1534 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1535 |
"160915"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1539 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1540 |
msgid "This version includes fixes and improvements, "
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: utils/stcr_upgrade.php:508
|
1544 |
msgid ""
|
1545 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1546 |
"dropdown."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: utils/stcr_upgrade.php:509
|
1550 |
msgid ""
|
1551 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1555 |
+
#: utils/stcr_upgrade.php:576
|
1556 |
msgid "Log Settings"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1560 |
+
#: utils/stcr_upgrade.php:580
|
1561 |
msgid ""
|
1562 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: utils/stcr_upgrade.php:529
|
1566 |
msgid ""
|
1567 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1568 |
"enable."
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: utils/stcr_upgrade.php:530
|
1572 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1576 |
+
#: utils/stcr_upgrade.php:590
|
1577 |
msgid "The support of this plugin is given thanks to your donations."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: utils/stcr_upgrade.php:536
|
1581 |
msgid ""
|
1582 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1583 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1587 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: utils/stcr_upgrade.php:557
|
1591 |
msgid ""
|
1592 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1593 |
"installation regarding a database table creation."
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: utils/stcr_upgrade.php:558
|
1597 |
msgid ""
|
1598 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1599 |
"Awesome."
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: utils/stcr_upgrade.php:563
|
1603 |
msgid ""
|
1604 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1605 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1610 |
"for the users that have supported the plugin development."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: utils/stcr_upgrade.php:584
|
1614 |
+
msgid ""
|
1615 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1616 |
+
"issues."
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: utils/stcr_upgrade.php:585
|
1620 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: utils/stcr_upgrade.php:586
|
1624 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1625 |
+
msgstr ""
|
1626 |
+
|
1627 |
+
#: utils/stcr_upgrade.php:591
|
1628 |
+
msgid ""
|
1629 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1630 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1631 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1632 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1633 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1634 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1635 |
+
"Thanks for all the users that have supported the plugin development."
|
1636 |
+
msgstr ""
|
1637 |
+
|
1638 |
+
#: utils/stcr_utils.php:196
|
1639 |
+
msgid ""
|
1640 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1641 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1642 |
+
msgstr ""
|
1643 |
+
"Notifiez-moi des commentaires à venir via émail. Vous pouvez aussi <a "
|
1644 |
+
"href='[subscribe_link]'>vous abonner</a> sans commenter."
|
1645 |
+
|
1646 |
+
#: utils/stcr_utils.php:197
|
1647 |
+
msgid ""
|
1648 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1649 |
+
"subscriptions."
|
1650 |
+
msgstr ""
|
1651 |
+
"Vous êtes abonné(e) aux commentaires de ce billet.<a "
|
1652 |
+
"href='[manager_link]'>Gérer vos abonnements</a>.\""
|
1653 |
+
|
1654 |
+
#: utils/stcr_utils.php:198
|
1655 |
+
msgid ""
|
1656 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1657 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1658 |
+
msgstr ""
|
1659 |
+
"Votre abonnement aux commentaires de ce billet a besoin d'être confirmé. <a "
|
1660 |
+
"href='[manager_link]'>Gérer vos abonnements</a>."
|
1661 |
+
|
1662 |
+
#: utils/stcr_utils.php:199
|
1663 |
+
msgid ""
|
1664 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1665 |
+
msgstr ""
|
1666 |
+
"Vous pouvez <a href='[manager_link]'>gérer les abonnements</a> aux "
|
1667 |
+
"commentaires de ce billet."
|
1668 |
+
|
1669 |
+
#: utils/stcr_utils.php:205
|
1670 |
+
msgid ""
|
1671 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1672 |
+
"will send you a message containing the link to access your personal "
|
1673 |
+
"management page."
|
1674 |
+
msgstr ""
|
1675 |
+
"Pour gérer vos abonnements, veuillez entrer votre adresse email ci-dessous. "
|
1676 |
+
"Nous vous enverrons un message contenant le lien pour accéder à votre page "
|
1677 |
+
"personnelle de gestion."
|
1678 |
+
|
1679 |
+
#: utils/stcr_utils.php:206
|
1680 |
+
msgid ""
|
1681 |
+
"Thank you for using our subscription service. Your request has been "
|
1682 |
+
"completed, and you should receive an email with the management link in a few "
|
1683 |
+
"minutes."
|
1684 |
+
msgstr ""
|
1685 |
+
"Merci d'utiliser notre service d'abonnement. Votre requête a été complétée "
|
1686 |
+
"et vous devriez recevoir un email avec un lien de gestion dans quelques "
|
1687 |
+
"minutes."
|
1688 |
+
|
1689 |
+
#: utils/stcr_utils.php:207
|
1690 |
+
msgid ""
|
1691 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1692 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1693 |
+
"form here below and you're all set."
|
1694 |
+
msgstr ""
|
1695 |
+
"Vous pouvez suivre la discussion sur <strong>[post_title]</strong> sans "
|
1696 |
+
"avoir à laisser un commentaire. Chouette, pas vrai ? Entrez simplement votre "
|
1697 |
+
"adresse email dans le champ ci-dessous."
|
1698 |
+
|
1699 |
+
#: utils/stcr_utils.php:208
|
1700 |
+
msgid ""
|
1701 |
+
"Thank you for using our subscription service. Your request has been "
|
1702 |
+
"completed. You will receive a notification email every time a new comment to "
|
1703 |
+
"this article is approved and posted by the administrator."
|
1704 |
+
msgstr ""
|
1705 |
+
"Merci d'utiliser notre service d'abonnement. Votre requête a abouti. Vous "
|
1706 |
+
"recevrez une notification par email à chaque fois qu'un nouveau commentaire "
|
1707 |
+
"sur cet article sera posté et approuvé par l'administrateur."
|
1708 |
+
|
1709 |
+
#: utils/stcr_utils.php:209
|
1710 |
+
msgid ""
|
1711 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1712 |
+
"request, please check your email for the verification message and follow the "
|
1713 |
+
"instructions."
|
1714 |
+
msgstr ""
|
1715 |
+
"Merci d'utiliser notre service d'abonnement. Afin de confirmer votre "
|
1716 |
+
"requête, veuillez vérifier votre courrier email pour le message de "
|
1717 |
+
"vérification et suivre les instructions."
|
1718 |
+
|
1719 |
+
#: utils/stcr_utils.php:210
|
1720 |
+
msgid ""
|
1721 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1722 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1723 |
+
msgstr ""
|
1724 |
+
"Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
|
1725 |
+
"la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
|
1726 |
+
"la liste."
|
1727 |
+
|
1728 |
+
#: utils/stcr_utils.php:211
|
1729 |
+
msgid ""
|
1730 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1731 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1732 |
+
"You are currently subscribed to:"
|
1733 |
+
msgstr ""
|
1734 |
+
"Afin d'annuler ou suspendre une ou plusieurs notifications, sélectionnez "
|
1735 |
+
"la(les) case(s) à cocher correspondant et cliquez sur le bouton à la fin de "
|
1736 |
+
"la liste. Vous êtes actuellement abonné(e) à:"
|
1737 |
+
|
1738 |
+
#: utils/stcr_utils.php:215
|
1739 |
+
msgid "There is a new comment to [post_title]"
|
1740 |
+
msgstr "Il y a un nouveau commentaire à [post_title]"
|
1741 |
+
|
1742 |
+
#: utils/stcr_utils.php:216
|
1743 |
+
msgid ""
|
1744 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1745 |
+
"\n"
|
1746 |
+
"<hr />\n"
|
1747 |
+
"<strong>Comment link:</strong> <a href="
|
1748 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1749 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1750 |
+
"\n"
|
1751 |
+
"<strong>Comment:</strong>\n"
|
1752 |
+
"[comment_content]\n"
|
1753 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1754 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1755 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1756 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: utils/stcr_utils.php:217
|
1760 |
+
msgid "Please confirm your subscription to [post_title]"
|
1761 |
+
msgstr "Veuillez confirmer votre abonnement à [post_title]"
|
1762 |
+
|
1763 |
+
#: utils/stcr_utils.php:218
|
1764 |
+
#, fuzzy
|
1765 |
+
#| msgid ""
|
1766 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1767 |
+
#| "[post_permalink]\n"
|
1768 |
+
#| "\n"
|
1769 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1770 |
+
#| "[confirm_link]"
|
1771 |
+
msgid ""
|
1772 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1773 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1774 |
+
"\n"
|
1775 |
+
"Please confirm your request by clicking on this link:\n"
|
1776 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1777 |
+
msgstr ""
|
1778 |
+
"Vous avez demandé à être averti à chaque fois qu'un nouveau commentaire est "
|
1779 |
+
"ajouté à :\n"
|
1780 |
+
"[post_permalink]\n"
|
1781 |
+
"\n"
|
1782 |
+
"Veuillez confirmer votre demande en cliquant sur ce lien :\n"
|
1783 |
+
"[confirm_link]"
|
1784 |
+
|
1785 |
+
#: utils/stcr_utils.php:219
|
1786 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1787 |
+
msgstr "Gestion de vos abonnements sur [blog_name]"
|
1788 |
+
|
1789 |
+
#: utils/stcr_utils.php:220
|
1790 |
+
msgid ""
|
1791 |
+
"You have requested to manage your subscriptions to the articles on "
|
1792 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: utils/stcr_utils.php:221
|
1796 |
+
#, fuzzy
|
1797 |
+
#| msgid ""
|
1798 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1799 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1800 |
+
#| "[manager_link]"
|
1801 |
+
msgid ""
|
1802 |
+
"You have requested to manage your subscriptions to the articles on "
|
1803 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1804 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1805 |
+
msgstr ""
|
1806 |
+
"Vous avez demandé à gérer vos abonnements aux articles sur [blog_name]. "
|
1807 |
+
"Suivez ce lien pour accéder à votre page personnelle :\n"
|
1808 |
+
"[manager_link]"
|
1809 |
+
|
1810 |
+
#: utils/stcr_utils.php:300
|
1811 |
msgid "StCR Notification"
|
1812 |
msgstr "Notifications"
|
1813 |
|
1819 |
msgid "All"
|
1820 |
msgstr "S'abonner"
|
1821 |
|
1822 |
+
#~ msgid "Support the developers"
|
1823 |
+
#~ msgstr "Soutenez l'auteur"
|
1824 |
+
|
1825 |
+
#~ msgid "Don't want to donate? You can still help"
|
1826 |
+
#~ msgstr "Vous ne désirez pas faire de don ? Vous pouvez quand même aider"
|
1827 |
+
|
1828 |
+
#~ msgid ""
|
1829 |
+
#~ "There is a new comment to [post_title].\n"
|
1830 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1831 |
+
#~ "Author: [comment_author]\n"
|
1832 |
+
#~ "Comment:\n"
|
1833 |
+
#~ "[comment_content]\n"
|
1834 |
+
#~ "Permalink: [post_permalink]\n"
|
1835 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1836 |
+
#~ msgstr ""
|
1837 |
+
#~ "Il y a un nouveau commentaire à [post_title].\n"
|
1838 |
+
#~ "Lien du commentaire : [comment_permalink]\n"
|
1839 |
+
#~ "Auteur : [comment_author]\n"
|
1840 |
+
#~ "Commentaire :\n"
|
1841 |
+
#~ "[comment_content]\n"
|
1842 |
+
#~ "Lien permanent : [post_permalink]\n"
|
1843 |
+
#~ "Gérer vos abonnements : [manager_link]"
|
1844 |
+
|
1845 |
#~ msgid ""
|
1846 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1847 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: subscribe-to-comments-reloaded\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
"PO-Revision-Date: \n"
|
6 |
-
"Last-Translator: Reedyseth
|
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
|
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;"
|
@@ -20,38 +20,34 @@ msgstr ""
|
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: includes\n"
|
22 |
|
23 |
-
#: options/index.php:
|
24 |
-
#: utils/
|
25 |
msgid "Manage subscriptions"
|
26 |
msgstr "Manage subscriptions"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Comment Form"
|
30 |
msgstr "טופס תגובה"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Management Page"
|
34 |
msgstr "עמוד הניהול"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
msgid "Notifications"
|
38 |
msgstr "הודעות"
|
39 |
|
40 |
-
#: options/index.php:
|
41 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
42 |
msgid "Options"
|
43 |
msgstr "אפשרויות"
|
44 |
|
45 |
-
#: options/index.php:
|
46 |
-
msgid "You can help"
|
47 |
-
msgstr "אפשר לעזור"
|
48 |
-
|
49 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
50 |
#, fuzzy
|
51 |
msgid "Support"
|
52 |
msgstr "פורום התמיכה הרשמי"
|
53 |
|
54 |
-
#: options/index.php:
|
55 |
msgid "Donate"
|
56 |
msgstr "לא רוצה לתרום? עדיין אפשר לעזור"
|
57 |
|
@@ -354,95 +350,95 @@ msgstr "עדכון ההרשמות"
|
|
354 |
msgid "Sorry, no subscriptions match your search criteria."
|
355 |
msgstr "מצטערים, אין הרשמות התואמות את קריטריון החיפוש שלך."
|
356 |
|
357 |
-
#: options/panel10.php:
|
358 |
msgid "The log file has been successfully deleted."
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: options/panel10.php:
|
362 |
msgid "Can't delete the log file, check the file permissions."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: options/panel10.php:
|
366 |
msgid "The log file does not exists."
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: options/panel10.php:
|
370 |
msgid "Enable Log Information"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: options/panel10.php:
|
374 |
msgid "Enable Auto clean log data"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: options/panel10.php:
|
378 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
379 |
msgid "Your settings have been successfully updated."
|
380 |
msgstr "ההגדרות שלך עודכנו בהצלחה"
|
381 |
|
382 |
-
#: options/panel10.php:
|
383 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
384 |
msgid "There was an error updating the following fields:"
|
385 |
msgstr "היתה שגיאה בעדכון השדות שלהלן:"
|
386 |
|
387 |
-
#: options/panel10.php:
|
388 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
389 |
-
#: options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
msgid "Yes"
|
394 |
msgstr "כן"
|
395 |
|
396 |
-
#: options/panel10.php:
|
397 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
398 |
-
#: options/panel5.php:
|
399 |
-
#: options/panel5.php:
|
400 |
-
#: options/panel5.php:
|
401 |
-
#: options/panel5.php:
|
402 |
msgid "No"
|
403 |
msgstr "לא"
|
404 |
|
405 |
-
#: options/panel10.php:
|
406 |
msgid ""
|
407 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
408 |
"purposes."
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: options/panel10.php:
|
412 |
msgid "Hourly"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: options/panel10.php:
|
416 |
msgid "Twice Daily"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: options/panel10.php:
|
420 |
msgid "Daily"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: options/panel10.php:
|
424 |
msgid "If enabled, StCR will auto clean your information every day."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: options/panel10.php:
|
428 |
msgid "Clean Up Log Archive"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: options/panel10.php:
|
432 |
msgid ""
|
433 |
"If you want to clean up the log archive please click the following button"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: options/panel10.php:
|
437 |
msgid "Clean"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: options/panel10.php:
|
441 |
msgid "System Information"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: options/panel10.php:
|
445 |
-
#: options/panel4.php:283 options/panel5.php:
|
446 |
msgid "Save Changes"
|
447 |
msgstr ""
|
448 |
|
@@ -778,7 +774,7 @@ msgstr "תגובות בלבד"
|
|
778 |
#: options/panel4.php:128
|
779 |
msgid ""
|
780 |
"This will be use when the user click reply on their email agent. If not set "
|
781 |
-
"will be the same as the Sender email address."
|
782 |
msgstr ""
|
783 |
|
784 |
#: options/panel4.php:147
|
@@ -794,8 +790,8 @@ msgstr ""
|
|
794 |
|
795 |
#: options/panel4.php:171
|
796 |
msgid ""
|
797 |
-
"<p><strong>Note: To get a default template clear
|
798 |
-
"the options.</strong></p>"
|
799 |
msgstr ""
|
800 |
|
801 |
#: options/panel4.php:184
|
@@ -842,113 +838,129 @@ msgid ""
|
|
842 |
"[blog_name]"
|
843 |
msgstr "נושא מייל האישור. תגית אפשרית: [post_title]"
|
844 |
|
845 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
846 |
msgid "Show StCR checkbox / dropdown"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: options/panel5.php:
|
850 |
msgid "Safetly Uninstall"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: options/panel5.php:
|
854 |
msgid "Autopurge requests"
|
855 |
msgstr "ניקוי אוטומטי של בקשות"
|
856 |
|
857 |
-
#: options/panel5.php:
|
858 |
msgid "Enable double check"
|
859 |
msgstr "הפעל בדיקה כפולה"
|
860 |
|
861 |
-
#: options/panel5.php:
|
862 |
msgid "StCR Position"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: options/panel5.php:
|
866 |
msgid "Subscribe authors"
|
867 |
msgstr "רשום את המחברים"
|
868 |
|
869 |
-
#: options/panel5.php:
|
870 |
msgid "Enable HTML emails"
|
871 |
msgstr "הפעל HTML בהודעות מייל"
|
872 |
|
873 |
-
#: options/panel5.php:
|
874 |
msgid "HTMLify Links in HTML emails"
|
875 |
msgstr "הפעל קישורי HTML באימיילים עם HTML"
|
876 |
|
877 |
-
#: options/panel5.php:
|
878 |
msgid "Send trackbacks"
|
879 |
msgstr "שלח טראקבקים"
|
880 |
|
881 |
-
#: options/panel5.php:
|
882 |
msgid "Notify admin"
|
883 |
msgstr "הודע למנהל"
|
884 |
|
885 |
-
#: options/panel5.php:
|
886 |
msgid "Let admin subscribe"
|
887 |
msgstr "אפשר למנהל להירשם"
|
888 |
|
889 |
-
#: options/panel5.php:
|
890 |
msgid "BCC admin on Notifications"
|
891 |
msgstr "שלח עותק נסתר של הוהודעות להנהלה"
|
892 |
|
893 |
-
#: options/panel5.php:
|
894 |
msgid "Enable Font Awesome"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
898 |
msgid ""
|
899 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
900 |
"You should leave it to Yes always. "
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: options/panel5.php:
|
904 |
msgid "Safely Uninstall"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: options/panel5.php:
|
908 |
msgid ""
|
909 |
"This option will allow you to delete the plugin with WordPress without "
|
910 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: options/panel5.php:
|
914 |
msgid "days"
|
915 |
msgstr "ימים"
|
916 |
|
917 |
-
#: options/panel5.php:
|
918 |
msgid ""
|
919 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
920 |
"this feature."
|
921 |
msgstr "מחק הרשמות בהמתנה (שלא אושרו) לאחר X ימים. אפס מבטל אפשרות זו."
|
922 |
|
923 |
-
#: options/panel5.php:
|
924 |
msgid ""
|
925 |
"If this option is enable the subscription box will be above the submit "
|
926 |
"button in your comment form. Use this when your theme is outdated and using "
|
927 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: options/panel5.php:
|
931 |
msgid ""
|
932 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
933 |
"misuse)."
|
934 |
msgstr "שלח הודעת מייל לאישור ההרשמה (כדי למנוע שימוש בכתובות שגויות)."
|
935 |
|
936 |
-
#: options/panel5.php:
|
937 |
msgid ""
|
938 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
939 |
msgstr "רשום מחברים באופן אוטומטי למאמרים שלהם (לא רטרואקטיבי)."
|
940 |
|
941 |
-
#: options/panel5.php:
|
942 |
msgid ""
|
943 |
"If enabled, will send email messages with content-type = text/html instead "
|
944 |
"of text/plain"
|
945 |
msgstr "אם מופעל, ישלח הודעת מייל עם סוג תוכן = text/html בקום טקסט פשוט"
|
946 |
|
947 |
-
#: options/panel5.php:
|
948 |
msgid "HTMLify links in emails"
|
949 |
msgstr "אפשר שימוש ב HTML באימיילים"
|
950 |
|
951 |
-
#: options/panel5.php:
|
952 |
msgid ""
|
953 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
954 |
"</a></code> (only when HTML emails enabled)."
|
@@ -956,50 +968,50 @@ msgstr ""
|
|
956 |
"אם מופעל, יעטוף את כל הקישורים בהודעות ב <code><a href=\"\"></a></code> (רק "
|
957 |
"כאשר מופעל HTML באימיילים)."
|
958 |
|
959 |
-
#: options/panel5.php:
|
960 |
msgid "Process trackbacks"
|
961 |
msgstr "עיבוד טראקבקים"
|
962 |
|
963 |
-
#: options/panel5.php:
|
964 |
msgid ""
|
965 |
"Notify users when a new trackback or pingback is added to the discussion."
|
966 |
msgstr "שלח הודעה למשתמשים כאשר נוסף טראקבאק או פינגאק לדיון."
|
967 |
|
968 |
-
#: options/panel5.php:
|
969 |
msgid "Track all subscriptions"
|
970 |
msgstr "מעקב אחר כל הרשמות"
|
971 |
|
972 |
-
#: options/panel5.php:
|
973 |
msgid "Notify the administrator when users subscribe without commenting."
|
974 |
msgstr "הודע למנהל כאשר משתמשים נרשמים ללא כתיבת תגובה."
|
975 |
|
976 |
-
#: options/panel5.php:
|
977 |
msgid "Let the administrator subscribe to comments when logged in."
|
978 |
msgstr "אפשר למנהל להירשם לתגובות כאשר הוא מחובר."
|
979 |
|
980 |
-
#: options/panel5.php:
|
981 |
msgid "Send a copy of all Notifications to the administrator."
|
982 |
msgstr "שלח למנהל עותק של כל ההודעות."
|
983 |
|
984 |
-
#: options/panel5.php:
|
985 |
msgid ""
|
986 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
987 |
"you theme already add this into your site."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: options/panel5.php:
|
991 |
msgid "StCR Unique Key"
|
992 |
msgstr "מפתח StCR ייחודי"
|
993 |
|
994 |
-
#: options/panel5.php:
|
995 |
msgid "This Unique Key is not set, please click the following button to "
|
996 |
msgstr "מפתח ייחודי זה אינו מוגדר, נא ללחוץ על הכפתור שלהלן כדי "
|
997 |
|
998 |
-
#: options/panel5.php:
|
999 |
msgid "Generate"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: options/panel5.php:
|
1003 |
#, fuzzy
|
1004 |
msgid ""
|
1005 |
"This Unique Key will be use to send the notification to your subscribers "
|
@@ -1008,16 +1020,33 @@ msgstr ""
|
|
1008 |
"זהו מפתח ייחודי שישמש כדי לשלוח את ההודעה עבור הנרשמים שלך עם יותר\n"
|
1009 |
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tאבטחה."
|
1010 |
|
1011 |
-
#: options/
|
1012 |
-
msgid "
|
1013 |
-
|
|
|
|
|
1014 |
|
1015 |
-
#: options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1016 |
#, fuzzy
|
1017 |
msgid ""
|
1018 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1019 |
"consider supporting the author if this plugin made your web site better, "
|
1020 |
-
"especially if you are making money out of it
|
|
|
1021 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1022 |
"strong>, and to buy some food for my hungry family."
|
1023 |
msgstr ""
|
@@ -1027,30 +1056,39 @@ msgstr ""
|
|
1027 |
"<strong>Subscribe to Comments Reloaded</strong>, ותקנה קצת אוכל למשפחתי "
|
1028 |
"הרעבה."
|
1029 |
|
1030 |
-
#: options/panel7.php:
|
1031 |
-
|
1032 |
-
|
|
|
|
|
1033 |
|
1034 |
-
#: options/panel7.php:
|
1035 |
-
|
1036 |
-
|
1037 |
-
"
|
1038 |
-
"
|
1039 |
-
"
|
1040 |
-
"
|
1041 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1042 |
msgstr ""
|
1043 |
"אם אינך מעוניין לתרום כסף,. נא לשקול לפרסם אותו לקוראים שלך בבלוג עם קישור "
|
1044 |
"לעמוד התוסף. אפשר גם לתרום זמן: לא להסס לשלוח לי דיווחי באגים, קבצי תרגום, "
|
1045 |
"רעיונות לשיפור, איך לשפר את <strong>Subscribe to Comments Reloaded</strong> "
|
1046 |
"וכו'. בכל מקרה, תודה שבחרת להשתמש בתוסף שלי!"
|
1047 |
|
1048 |
-
#: options/panel7.php:
|
1049 |
#, fuzzy
|
1050 |
msgid "Subscribe to the Beta testers"
|
1051 |
msgstr "רשום את המחברים"
|
1052 |
|
1053 |
-
#: options/panel7.php:
|
1054 |
msgid ""
|
1055 |
"Before a new Update we release a Beta version so that our current users can "
|
1056 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1058,11 +1096,11 @@ msgid ""
|
|
1058 |
"a>"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
-
#: options/panel7.php:
|
1062 |
msgid "Vote and show your appreciation"
|
1063 |
msgstr "דרגו והראו הערכה"
|
1064 |
|
1065 |
-
#: options/panel7.php:
|
1066 |
msgid ""
|
1067 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1068 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1072,11 +1110,11 @@ msgstr ""
|
|
1072 |
"עבורך וכמה הוא טוב. <a href=\"http://wordpress.org/extend/plugins/subscribe-"
|
1073 |
"to-comments-reloaded/\">דרג אותו</a> בעמוד התוסף."
|
1074 |
|
1075 |
-
#: options/panel8.php:
|
1076 |
msgid "Did you find a Bug on the plugin?"
|
1077 |
msgstr "מצאתם באג בתוסף?"
|
1078 |
|
1079 |
-
#: options/panel8.php:
|
1080 |
#, fuzzy
|
1081 |
msgid ""
|
1082 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
@@ -1175,195 +1213,45 @@ msgstr ""
|
|
1175 |
msgid "You have request to manage another email address and this is forbidden."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: utils/stcr_manage.php:
|
1179 |
-
msgid ""
|
1180 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1181 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1182 |
-
msgstr ""
|
1183 |
-
"נא לעדכן אותי במייל על תגובות נוספות. אפשר גם <a "
|
1184 |
-
"href='[subscribe_link]'>להירשם</a> מבלי להגיב."
|
1185 |
-
|
1186 |
-
#: utils/stcr_manage.php:224
|
1187 |
-
msgid ""
|
1188 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1189 |
-
"subscriptions."
|
1190 |
-
msgstr ""
|
1191 |
-
"ההרשמה שלך לפוסט זה פעילה. <a href='[manager_link]'>ניהול ההרשמות שלך</a>. "
|
1192 |
-
|
1193 |
-
#: utils/stcr_manage.php:225
|
1194 |
-
msgid ""
|
1195 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1196 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1197 |
-
msgstr ""
|
1198 |
-
"ההרשמה שלך לפוסט זה צריכה אישור. <a href='[manager_link]'>לניהול ההרשמות "
|
1199 |
-
"שלך</a>."
|
1200 |
-
|
1201 |
-
#: utils/stcr_manage.php:226
|
1202 |
-
msgid ""
|
1203 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1204 |
-
msgstr "אפשר <a href='[manager_link]'>לנהל את ההרשמה</a> של פוסט זה."
|
1205 |
-
|
1206 |
-
#: utils/stcr_manage.php:232
|
1207 |
-
msgid ""
|
1208 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1209 |
-
"will send you a message containing the link to access your personal "
|
1210 |
-
"management page."
|
1211 |
-
msgstr ""
|
1212 |
-
"כדי לנהל את ההרשמות שלך, נא להזין את האימייל שלך להלן. נשלח לך הודעה המכילה "
|
1213 |
-
"קישור לעמוד הניהול האישי שלך."
|
1214 |
-
|
1215 |
-
#: utils/stcr_manage.php:233
|
1216 |
-
msgid ""
|
1217 |
-
"Thank you for using our subscription service. Your request has been "
|
1218 |
-
"completed, and you should receive an email with the management link in a few "
|
1219 |
-
"minutes."
|
1220 |
-
msgstr ""
|
1221 |
-
"תודה שהשתמשת בשירות ההרשמה שלנו. בקשתך הושלמה ותוך דקות יישלח אליך אימייל עם "
|
1222 |
-
"קישור ניהול הרשמה שלך."
|
1223 |
-
|
1224 |
-
#: utils/stcr_manage.php:234
|
1225 |
-
msgid ""
|
1226 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1227 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1228 |
-
"form here below and you're all set."
|
1229 |
-
msgstr ""
|
1230 |
-
"אפשר לעקוב אחר הדיון ב <strong>[post_title]</strong> ללא צורך לשלוח תגובה. "
|
1231 |
-
"מגניב, אה? רק להזין את כתובת האימייל שלך בשדה שלהלן."
|
1232 |
-
|
1233 |
-
#: utils/stcr_manage.php:235
|
1234 |
-
msgid ""
|
1235 |
-
"Thank you for using our subscription service. Your request has been "
|
1236 |
-
"completed. You will receive a notification email every time a new comment to "
|
1237 |
-
"this article is approved and posted by the administrator."
|
1238 |
-
msgstr ""
|
1239 |
-
"תודה שהשתמש בשירות ההרשמה שלנו. בקשתך הושלמה. התראה באימייל תישלח על כל "
|
1240 |
-
"תגובה חדשה שתאושר על-ידי ההנהלה לפוסט זה."
|
1241 |
-
|
1242 |
-
#: utils/stcr_manage.php:236
|
1243 |
-
msgid ""
|
1244 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1245 |
-
"request, please check your email for the verification message and follow the "
|
1246 |
-
"instructions."
|
1247 |
-
msgstr ""
|
1248 |
-
"תודה על השימוש בשירות ההרשמה שלנו. כדי לאשר את הבקשה שלך, נא לבדוק ת האימייל "
|
1249 |
-
"שלך כדי לאשר את ההרשמה לפי ההנחיות במייל ."
|
1250 |
-
|
1251 |
-
#: utils/stcr_manage.php:237
|
1252 |
-
msgid ""
|
1253 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1254 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1255 |
-
msgstr ""
|
1256 |
-
"כדי לבטל או להשעות הודעה אחת או יותר נא לבחור תיבת(ות) סימון בהתאמה וללחוץ "
|
1257 |
-
"על הכפתור שבסוף הרשימה."
|
1258 |
-
|
1259 |
-
#: utils/stcr_manage.php:238
|
1260 |
-
msgid ""
|
1261 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1262 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1263 |
-
"You are currently subscribed to:"
|
1264 |
-
msgstr ""
|
1265 |
-
"כדי לבטל או להשעות התראה אחת או יותר, נא לבחור בתיבת(ות) הסימון המתאימה(ות) "
|
1266 |
-
"וללחוץ על הכפתור שבסוף הרשימה. כעת יש הרשמות ל:"
|
1267 |
-
|
1268 |
-
#: utils/stcr_manage.php:242
|
1269 |
-
msgid "There is a new comment to [post_title]"
|
1270 |
-
msgstr "יש תגובה חדשה ל [post_title]"
|
1271 |
-
|
1272 |
-
#: utils/stcr_manage.php:243
|
1273 |
-
msgid ""
|
1274 |
-
"There is a new comment to [post_title].\n"
|
1275 |
-
"Comment Link: [comment_permalink]\n"
|
1276 |
-
"Author: [comment_author]\n"
|
1277 |
-
"Comment:\n"
|
1278 |
-
"[comment_content]\n"
|
1279 |
-
"Permalink: [post_permalink]\n"
|
1280 |
-
"Manage your subscriptions: [manager_link]"
|
1281 |
-
msgstr ""
|
1282 |
-
"יש תגובה חדשה ל [post_title].\n"
|
1283 |
-
"קישור לתגובה: [comment_permalink]\n"
|
1284 |
-
"מחבר: [comment_author]\n"
|
1285 |
-
"תגובה:\n"
|
1286 |
-
"[comment_content]\n"
|
1287 |
-
"מבנה קישור: [post_permalink]\n"
|
1288 |
-
"ניהול ההרשמות שלך: [manager_link]"
|
1289 |
-
|
1290 |
-
#: utils/stcr_manage.php:244
|
1291 |
-
msgid "Please confirm your subscription to [post_title]"
|
1292 |
-
msgstr "נא לאשר את ההרשמה שלך ל [post_title]"
|
1293 |
-
|
1294 |
-
#: utils/stcr_manage.php:245
|
1295 |
-
msgid ""
|
1296 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1297 |
-
"[post_permalink]\n"
|
1298 |
-
"\n"
|
1299 |
-
"Please confirm your request by clicking on this link:\n"
|
1300 |
-
"[confirm_link]"
|
1301 |
-
msgstr ""
|
1302 |
-
"ביקשת לקבל הודעות על הוספת תגובות חדשות ל:\n"
|
1303 |
-
"[post_permalink]\n"
|
1304 |
-
"\n"
|
1305 |
-
"נא לאמת את הבקשה באמצעות לחיצה על הקישור:\n"
|
1306 |
-
"[confirm_link]"
|
1307 |
-
|
1308 |
-
#: utils/stcr_manage.php:246
|
1309 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1310 |
-
msgstr "ניהול ההרשמות שלך ב [blog_name]"
|
1311 |
-
|
1312 |
-
#: utils/stcr_manage.php:247
|
1313 |
-
msgid ""
|
1314 |
-
"You have requested to manage your subscriptions to the articles on "
|
1315 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1316 |
-
msgstr ""
|
1317 |
-
|
1318 |
-
#: utils/stcr_manage.php:248
|
1319 |
-
msgid ""
|
1320 |
-
"You have requested to manage your subscriptions to the articles on "
|
1321 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1322 |
-
"[manager_link]"
|
1323 |
-
msgstr ""
|
1324 |
-
"ביקשת לנהל את ההרשמות שלך למאמרים ב [blog_name]. קישור זה יוביל אותך לעמוד "
|
1325 |
-
"הניהול שלך:\n"
|
1326 |
-
"[manager_link]"
|
1327 |
-
|
1328 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1329 |
msgid "StCR System"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: utils/stcr_manage.php:
|
1333 |
-
#: utils/stcr_manage.php:
|
1334 |
-
#: utils/stcr_manage.php:
|
1335 |
-
#: utils/stcr_manage.php:
|
1336 |
-
#: utils/stcr_manage.php:
|
1337 |
msgid "You do not have sufficient permissions to access this page."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: utils/stcr_manage.php:
|
1341 |
#, fuzzy
|
1342 |
msgid "Subscriptions"
|
1343 |
msgstr "הרשמה"
|
1344 |
|
1345 |
-
#: utils/stcr_manage.php:
|
1346 |
msgid ""
|
1347 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1348 |
msgstr "זקוק לעזרה ב כיצד להירשם ל Comments Reloaded? בקר ב"
|
1349 |
|
1350 |
-
#: utils/stcr_manage.php:
|
1351 |
msgid "support forum"
|
1352 |
msgstr "פורום התמיכה הרשמי"
|
1353 |
|
1354 |
-
#: utils/stcr_manage.php:
|
1355 |
msgid "Feeling generous?"
|
1356 |
msgstr "מרגיש נדיב?"
|
1357 |
|
1358 |
-
#: utils/stcr_manage.php:
|
1359 |
msgid "Donate a few bucks!"
|
1360 |
msgstr "תרום קצת!"
|
1361 |
|
1362 |
-
#: utils/stcr_upgrade.php:
|
1363 |
msgid "Important Notice"
|
1364 |
msgstr "הודעה חשובה"
|
1365 |
|
1366 |
-
#: utils/stcr_upgrade.php:
|
1367 |
msgid ""
|
1368 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1369 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1371,7 +1259,7 @@ msgid ""
|
|
1371 |
"src=\""
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: utils/stcr_upgrade.php:
|
1375 |
#, fuzzy
|
1376 |
msgid ""
|
1377 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
@@ -1381,7 +1269,7 @@ msgstr ""
|
|
1381 |
"נתוני הרשמה מתוסף <strong>Subscribe to Comments</strong> זוהו ויובאו "
|
1382 |
"אוטומטית ל <strong>Subscribe to Comments Reloaded</strong>."
|
1383 |
|
1384 |
-
#: utils/stcr_upgrade.php:
|
1385 |
msgid ""
|
1386 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1387 |
"Comments to prevent confusion between the two plugins."
|
@@ -1389,7 +1277,7 @@ msgstr ""
|
|
1389 |
" מומלץ כעת <strong>לכבות</strong> את Subscribe to Comments כדי למנוע בלבול "
|
1390 |
"בין שני התוספים."
|
1391 |
|
1392 |
-
#: utils/stcr_upgrade.php:
|
1393 |
msgid ""
|
1394 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1395 |
"that you want to import, you'll need to import that data manually, as only "
|
@@ -1398,8 +1286,8 @@ msgstr ""
|
|
1398 |
"אם יש לך נתוני הרשמה מ Subscribe to Comments Reloaded < v2.0 ליבוא, יהיה "
|
1399 |
"צורך לייבא אותם ידנית, כי רק שגרת יבוא אחת תפעל, כדי למנוע אבדן נתונים."
|
1400 |
|
1401 |
-
#: utils/stcr_upgrade.php:
|
1402 |
-
#: utils/stcr_upgrade.php:
|
1403 |
msgid ""
|
1404 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1405 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1407,7 +1295,7 @@ msgid ""
|
|
1407 |
"\"stcr-loading-animation\" src=\""
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: utils/stcr_upgrade.php:
|
1411 |
#, fuzzy
|
1412 |
msgid ""
|
1413 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
@@ -1417,7 +1305,7 @@ msgstr ""
|
|
1417 |
"נתוני הרשמה מתוסף <strong>Comment Reply Notification</strong> זוהו ויובאו "
|
1418 |
"אוטומטית ל <strong>Subscribe to Comments Reloaded</strong>."
|
1419 |
|
1420 |
-
#: utils/stcr_upgrade.php:
|
1421 |
msgid ""
|
1422 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1423 |
"Notification to prevent confusion between the two plugins."
|
@@ -1425,7 +1313,7 @@ msgstr ""
|
|
1425 |
" מומלץ כעת <strong>לכבות</strong> את Comment Reply Notification כדי למנוע "
|
1426 |
"בלבול בין התוספים."
|
1427 |
|
1428 |
-
#: utils/stcr_upgrade.php:
|
1429 |
#, fuzzy
|
1430 |
msgid ""
|
1431 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
@@ -1436,7 +1324,7 @@ msgstr ""
|
|
1436 |
"אפשרויות התוסף ונתוני הרשמה מתוסף <strong>WP Comment Subscriptions</strong> "
|
1437 |
"זוהו ויובאו אוטומטית אל <strong>Subscribe to Comments Reloaded</strong>."
|
1438 |
|
1439 |
-
#: utils/stcr_upgrade.php:
|
1440 |
msgid ""
|
1441 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1442 |
"Subscriptions to prevent confusion between the two plugins."
|
@@ -1444,7 +1332,7 @@ msgstr ""
|
|
1444 |
" מומלץ כעת <strong>לכבות</strong> את WP Comment Subscriptions כדי למנוע "
|
1445 |
"בלבול בין שני התוספים."
|
1446 |
|
1447 |
-
#: utils/stcr_upgrade.php:
|
1448 |
msgid ""
|
1449 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1450 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1455,7 +1343,7 @@ msgstr ""
|
|
1455 |
"Comments Reloaded < v2.0) שתרצה לייבא, יהיה צורך לייבא את הנתונים באופן "
|
1456 |
"ידני, כי תמיד תפעל רק שגרת יבוא אחת כדי למנוע אבדן נתונים."
|
1457 |
|
1458 |
-
#: utils/stcr_upgrade.php:
|
1459 |
msgid ""
|
1460 |
"<strong>Note:</strong> If you were previously using the "
|
1461 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1469,13 +1357,13 @@ msgstr ""
|
|
1469 |
"<code>subscribe_reloaded_show()</code> וב <code>[subscribe-url]</code> "
|
1470 |
"בהתאמה."
|
1471 |
|
1472 |
-
#: utils/stcr_upgrade.php:
|
1473 |
msgid ""
|
1474 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: utils/stcr_upgrade.php:
|
1478 |
-
#: utils/stcr_upgrade.php:
|
1479 |
#, fuzzy
|
1480 |
msgid ""
|
1481 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
@@ -1485,17 +1373,17 @@ msgstr ""
|
|
1485 |
"comments-reloaded/issues/\" target=\"_blank\">GitHub</a> עדיף על עמוד התמיכה "
|
1486 |
"בוורדפרס."
|
1487 |
|
1488 |
-
#: utils/stcr_upgrade.php:
|
1489 |
msgid ""
|
1490 |
-
"Please consider to make a donation to support the plugin
|
1491 |
-
"<a href=\"\n"
|
1492 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1493 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1494 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1495 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: utils/stcr_upgrade.php:
|
1499 |
msgid ""
|
1500 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1501 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1503,23 +1391,23 @@ msgid ""
|
|
1503 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: utils/stcr_upgrade.php:
|
1507 |
msgid ""
|
1508 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1509 |
"160106."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: utils/stcr_upgrade.php:
|
1513 |
msgid ""
|
1514 |
"This version includes many changes and fixes to improve your experience with "
|
1515 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1516 |
"email templates, Subscription Checkbox position, and more!"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: utils/stcr_upgrade.php:
|
1520 |
-
#: utils/stcr_upgrade.php:
|
1521 |
-
#: utils/stcr_upgrade.php:
|
1522 |
-
#: utils/stcr_upgrade.php:
|
1523 |
msgid ""
|
1524 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1525 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1527,123 +1415,126 @@ msgid ""
|
|
1527 |
"class=\"stcr-loading-animation\" src=\""
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: utils/stcr_upgrade.php:
|
1531 |
msgid ""
|
1532 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1533 |
"160115."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: utils/stcr_upgrade.php:
|
1537 |
msgid ""
|
1538 |
"This version includes fixes to broken links while managing your subscriptions"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: utils/stcr_upgrade.php:
|
1542 |
msgid ""
|
1543 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1544 |
"160831"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: utils/stcr_upgrade.php:
|
1548 |
msgid "This version includes fixes to many bugs and also new features, "
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: utils/stcr_upgrade.php:
|
1552 |
msgid ""
|
1553 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1554 |
"address. This will help the subscribers to use the Reply option in their "
|
1555 |
"email agents."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: utils/stcr_upgrade.php:
|
1559 |
msgid ""
|
1560 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1561 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: utils/stcr_upgrade.php:
|
1565 |
msgid ""
|
1566 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1567 |
"without loosing your subscriptions. You can use this option also for reset "
|
1568 |
"all the settings, see the FAQ."
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: utils/stcr_upgrade.php:
|
1572 |
msgid ""
|
1573 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1574 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1575 |
"Post Type."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: utils/stcr_upgrade.php:
|
1579 |
msgid ""
|
1580 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1581 |
"options to and the management link only by email and not to display it on "
|
1582 |
"the request link page."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: utils/stcr_upgrade.php:
|
1586 |
msgid ""
|
1587 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1588 |
"160902"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: utils/stcr_upgrade.php:
|
1592 |
msgid ""
|
1593 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1594 |
"previous 160831 version."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: utils/stcr_upgrade.php:
|
1598 |
msgid "Settings"
|
1599 |
msgstr "הגדרות"
|
1600 |
|
1601 |
-
#: utils/stcr_upgrade.php:
|
1602 |
msgid ""
|
1603 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1604 |
"160915"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: utils/stcr_upgrade.php:
|
1608 |
-
#: utils/stcr_upgrade.php:
|
1609 |
msgid "This version includes fixes and improvements, "
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: utils/stcr_upgrade.php:
|
1613 |
msgid ""
|
1614 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1615 |
"dropdown."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: utils/stcr_upgrade.php:
|
1619 |
msgid ""
|
1620 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
|
|
1624 |
msgid "Log Settings"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: utils/stcr_upgrade.php:
|
|
|
1628 |
msgid ""
|
1629 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: utils/stcr_upgrade.php:
|
1633 |
msgid ""
|
1634 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1635 |
"enable."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: utils/stcr_upgrade.php:
|
1639 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: utils/stcr_upgrade.php:
|
|
|
1643 |
msgid "The support of this plugin is given thanks to your donations."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: utils/stcr_upgrade.php:
|
1647 |
msgid ""
|
1648 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1649 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1653,19 +1544,19 @@ msgid ""
|
|
1653 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: utils/stcr_upgrade.php:
|
1657 |
msgid ""
|
1658 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1659 |
"installation regarding a database table creation."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: utils/stcr_upgrade.php:
|
1663 |
msgid ""
|
1664 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1665 |
"Awesome."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: utils/stcr_upgrade.php:
|
1669 |
msgid ""
|
1670 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1671 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1676,7 +1567,193 @@ msgid ""
|
|
1676 |
"for the users that have supported the plugin development."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1680 |
#, fuzzy
|
1681 |
msgid "StCR Notification"
|
1682 |
msgstr "הודעות"
|
@@ -1689,6 +1766,29 @@ msgstr "א להירשם"
|
|
1689 |
msgid "All"
|
1690 |
msgstr "הכול"
|
1691 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1692 |
#~ msgid ""
|
1693 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1694 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: subscribe-to-comments-reloaded\n"
|
4 |
+
"POT-Creation-Date: 2018-02-12 15:08-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 2.0.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;"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
"X-Poedit-SearchPathExcluded-0: includes\n"
|
22 |
|
23 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
24 |
+
#: utils/stcr_utils.php:203
|
25 |
msgid "Manage subscriptions"
|
26 |
msgstr "Manage subscriptions"
|
27 |
|
28 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
29 |
msgid "Comment Form"
|
30 |
msgstr "טופס תגובה"
|
31 |
|
32 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
33 |
msgid "Management Page"
|
34 |
msgstr "עמוד הניהול"
|
35 |
|
36 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
37 |
msgid "Notifications"
|
38 |
msgstr "הודעות"
|
39 |
|
40 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
41 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
42 |
msgid "Options"
|
43 |
msgstr "אפשרויות"
|
44 |
|
45 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
46 |
#, fuzzy
|
47 |
msgid "Support"
|
48 |
msgstr "פורום התמיכה הרשמי"
|
49 |
|
50 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
51 |
msgid "Donate"
|
52 |
msgstr "לא רוצה לתרום? עדיין אפשר לעזור"
|
53 |
|
350 |
msgid "Sorry, no subscriptions match your search criteria."
|
351 |
msgstr "מצטערים, אין הרשמות התואמות את קריטריון החיפוש שלך."
|
352 |
|
353 |
+
#: options/panel10.php:41
|
354 |
msgid "The log file has been successfully deleted."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: options/panel10.php:46
|
358 |
msgid "Can't delete the log file, check the file permissions."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: options/panel10.php:52
|
362 |
msgid "The log file does not exists."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: options/panel10.php:66 options/panel10.php:110
|
366 |
msgid "Enable Log Information"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: options/panel10.php:72 options/panel10.php:119
|
370 |
msgid "Enable Auto clean log data"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
374 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
375 |
msgid "Your settings have been successfully updated."
|
376 |
msgstr "ההגדרות שלך עודכנו בהצלחה"
|
377 |
|
378 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
379 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
380 |
msgid "There was an error updating the following fields:"
|
381 |
msgstr "היתה שגיאה בעדכון השדות שלהלן:"
|
382 |
|
383 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
384 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
385 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
386 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
387 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
388 |
+
#: options/panel5.php:210 options/panel5.php:219
|
389 |
msgid "Yes"
|
390 |
msgstr "כן"
|
391 |
|
392 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
393 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
394 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
395 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
396 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
397 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
398 |
msgid "No"
|
399 |
msgstr "לא"
|
400 |
|
401 |
+
#: options/panel10.php:114
|
402 |
msgid ""
|
403 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
404 |
"purposes."
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: options/panel10.php:125
|
408 |
msgid "Hourly"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: options/panel10.php:126
|
412 |
msgid "Twice Daily"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: options/panel10.php:127
|
416 |
msgid "Daily"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: options/panel10.php:129
|
420 |
msgid "If enabled, StCR will auto clean your information every day."
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: options/panel10.php:134
|
424 |
msgid "Clean Up Log Archive"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: options/panel10.php:138
|
428 |
msgid ""
|
429 |
"If you want to clean up the log archive please click the following button"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: options/panel10.php:140
|
433 |
msgid "Clean"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: options/panel10.php:147 options/panel10.php:150
|
437 |
msgid "System Information"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
441 |
+
#: options/panel4.php:283 options/panel5.php:265
|
442 |
msgid "Save Changes"
|
443 |
msgstr ""
|
444 |
|
774 |
#: options/panel4.php:128
|
775 |
msgid ""
|
776 |
"This will be use when the user click reply on their email agent. If not set "
|
777 |
+
"it will be the same as the Sender email address."
|
778 |
msgstr ""
|
779 |
|
780 |
#: options/panel4.php:147
|
790 |
|
791 |
#: options/panel4.php:171
|
792 |
msgid ""
|
793 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
794 |
+
"all the content and save the options.</strong></p>"
|
795 |
msgstr ""
|
796 |
|
797 |
#: options/panel4.php:184
|
838 |
"[blog_name]"
|
839 |
msgstr "נושא מייל האישור. תגית אפשרית: [post_title]"
|
840 |
|
841 |
+
#: options/panel5.php:38
|
842 |
+
#, fuzzy
|
843 |
+
#| msgid "Your settings have been successfully updated."
|
844 |
+
msgid "Your settings have been successfully reset."
|
845 |
+
msgstr "ההגדרות שלך עודכנו בהצלחה"
|
846 |
+
|
847 |
+
#: options/panel5.php:40
|
848 |
+
#, fuzzy
|
849 |
+
#| msgid "There was an error updating the following fields:"
|
850 |
+
msgid "There was an error deleting the options:"
|
851 |
+
msgstr "היתה שגיאה בעדכון השדות שלהלן:"
|
852 |
+
|
853 |
+
#: options/panel5.php:48 options/panel5.php:108
|
854 |
msgid "Show StCR checkbox / dropdown"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: options/panel5.php:51
|
858 |
msgid "Safetly Uninstall"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: options/panel5.php:54 options/panel5.php:125
|
862 |
msgid "Autopurge requests"
|
863 |
msgstr "ניקוי אוטומטי של בקשות"
|
864 |
|
865 |
+
#: options/panel5.php:57 options/panel5.php:143
|
866 |
msgid "Enable double check"
|
867 |
msgstr "הפעל בדיקה כפולה"
|
868 |
|
869 |
+
#: options/panel5.php:60 options/panel5.php:134
|
870 |
msgid "StCR Position"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: options/panel5.php:63 options/panel5.php:151
|
874 |
msgid "Subscribe authors"
|
875 |
msgstr "רשום את המחברים"
|
876 |
|
877 |
+
#: options/panel5.php:66 options/panel5.php:161
|
878 |
msgid "Enable HTML emails"
|
879 |
msgstr "הפעל HTML בהודעות מייל"
|
880 |
|
881 |
+
#: options/panel5.php:69
|
882 |
msgid "HTMLify Links in HTML emails"
|
883 |
msgstr "הפעל קישורי HTML באימיילים עם HTML"
|
884 |
|
885 |
+
#: options/panel5.php:72
|
886 |
msgid "Send trackbacks"
|
887 |
msgstr "שלח טראקבקים"
|
888 |
|
889 |
+
#: options/panel5.php:75
|
890 |
msgid "Notify admin"
|
891 |
msgstr "הודע למנהל"
|
892 |
|
893 |
+
#: options/panel5.php:78 options/panel5.php:199
|
894 |
msgid "Let admin subscribe"
|
895 |
msgstr "אפשר למנהל להירשם"
|
896 |
|
897 |
+
#: options/panel5.php:81 options/panel5.php:208
|
898 |
msgid "BCC admin on Notifications"
|
899 |
msgstr "שלח עותק נסתר של הוהודעות להנהלה"
|
900 |
|
901 |
+
#: options/panel5.php:84 options/panel5.php:217
|
902 |
msgid "Enable Font Awesome"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
906 |
+
msgid "Reset All Options"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: options/panel5.php:112
|
910 |
msgid ""
|
911 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
912 |
"You should leave it to Yes always. "
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: options/panel5.php:117
|
916 |
msgid "Safely Uninstall"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: options/panel5.php:121
|
920 |
msgid ""
|
921 |
"This option will allow you to delete the plugin with WordPress without "
|
922 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: options/panel5.php:128
|
926 |
msgid "days"
|
927 |
msgstr "ימים"
|
928 |
|
929 |
+
#: options/panel5.php:129
|
930 |
msgid ""
|
931 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
932 |
"this feature."
|
933 |
msgstr "מחק הרשמות בהמתנה (שלא אושרו) לאחר X ימים. אפס מבטל אפשרות זו."
|
934 |
|
935 |
+
#: options/panel5.php:138
|
936 |
msgid ""
|
937 |
"If this option is enable the subscription box will be above the submit "
|
938 |
"button in your comment form. Use this when your theme is outdated and using "
|
939 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: options/panel5.php:147
|
943 |
msgid ""
|
944 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
945 |
"misuse)."
|
946 |
msgstr "שלח הודעת מייל לאישור ההרשמה (כדי למנוע שימוש בכתובות שגויות)."
|
947 |
|
948 |
+
#: options/panel5.php:156
|
949 |
msgid ""
|
950 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
951 |
msgstr "רשום מחברים באופן אוטומטי למאמרים שלהם (לא רטרואקטיבי)."
|
952 |
|
953 |
+
#: options/panel5.php:165
|
954 |
msgid ""
|
955 |
"If enabled, will send email messages with content-type = text/html instead "
|
956 |
"of text/plain"
|
957 |
msgstr "אם מופעל, ישלח הודעת מייל עם סוג תוכן = text/html בקום טקסט פשוט"
|
958 |
|
959 |
+
#: options/panel5.php:170
|
960 |
msgid "HTMLify links in emails"
|
961 |
msgstr "אפשר שימוש ב HTML באימיילים"
|
962 |
|
963 |
+
#: options/panel5.php:175
|
964 |
msgid ""
|
965 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
966 |
"</a></code> (only when HTML emails enabled)."
|
968 |
"אם מופעל, יעטוף את כל הקישורים בהודעות ב <code><a href=\"\"></a></code> (רק "
|
969 |
"כאשר מופעל HTML באימיילים)."
|
970 |
|
971 |
+
#: options/panel5.php:180
|
972 |
msgid "Process trackbacks"
|
973 |
msgstr "עיבוד טראקבקים"
|
974 |
|
975 |
+
#: options/panel5.php:184
|
976 |
msgid ""
|
977 |
"Notify users when a new trackback or pingback is added to the discussion."
|
978 |
msgstr "שלח הודעה למשתמשים כאשר נוסף טראקבאק או פינגאק לדיון."
|
979 |
|
980 |
+
#: options/panel5.php:189
|
981 |
msgid "Track all subscriptions"
|
982 |
msgstr "מעקב אחר כל הרשמות"
|
983 |
|
984 |
+
#: options/panel5.php:194
|
985 |
msgid "Notify the administrator when users subscribe without commenting."
|
986 |
msgstr "הודע למנהל כאשר משתמשים נרשמים ללא כתיבת תגובה."
|
987 |
|
988 |
+
#: options/panel5.php:203
|
989 |
msgid "Let the administrator subscribe to comments when logged in."
|
990 |
msgstr "אפשר למנהל להירשם לתגובות כאשר הוא מחובר."
|
991 |
|
992 |
+
#: options/panel5.php:212
|
993 |
msgid "Send a copy of all Notifications to the administrator."
|
994 |
msgstr "שלח למנהל עותק של כל ההודעות."
|
995 |
|
996 |
+
#: options/panel5.php:221
|
997 |
msgid ""
|
998 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
999 |
"you theme already add this into your site."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: options/panel5.php:226
|
1003 |
msgid "StCR Unique Key"
|
1004 |
msgstr "מפתח StCR ייחודי"
|
1005 |
|
1006 |
+
#: options/panel5.php:231
|
1007 |
msgid "This Unique Key is not set, please click the following button to "
|
1008 |
msgstr "מפתח ייחודי זה אינו מוגדר, נא ללחוץ על הכפתור שלהלן כדי "
|
1009 |
|
1010 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1011 |
msgid "Generate"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: options/panel5.php:243
|
1015 |
#, fuzzy
|
1016 |
msgid ""
|
1017 |
"This Unique Key will be use to send the notification to your subscribers "
|
1020 |
"זהו מפתח ייחודי שישמש כדי לשלוח את ההודעה עבור הנרשמים שלך עם יותר\n"
|
1021 |
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tאבטחה."
|
1022 |
|
1023 |
+
#: options/panel5.php:256
|
1024 |
+
msgid ""
|
1025 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1026 |
+
"with caution."
|
1027 |
+
msgstr ""
|
1028 |
|
1029 |
+
#: options/panel5.php:258
|
1030 |
+
msgid "Yes, Delete Options including subscriptions."
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: options/panel5.php:259
|
1034 |
+
msgid "No, Only delete the StCR Options."
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1038 |
+
msgid ""
|
1039 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1040 |
+
"hidden=\"true\"></i>"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1044 |
#, fuzzy
|
1045 |
msgid ""
|
1046 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1047 |
"consider supporting the author if this plugin made your web site better, "
|
1048 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1049 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1050 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1051 |
"strong>, and to buy some food for my hungry family."
|
1052 |
msgstr ""
|
1056 |
"<strong>Subscribe to Comments Reloaded</strong>, ותקנה קצת אוכל למשפחתי "
|
1057 |
"הרעבה."
|
1058 |
|
1059 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1060 |
+
#, fuzzy
|
1061 |
+
#| msgid "You can help"
|
1062 |
+
msgid "You can still help"
|
1063 |
+
msgstr "אפשר לעזור"
|
1064 |
|
1065 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1066 |
+
#, fuzzy
|
1067 |
+
#| msgid ""
|
1068 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1069 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1070 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1071 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1072 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1073 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1074 |
+
msgid ""
|
1075 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1076 |
+
"Please let your readers know what makes your blog better. You can also "
|
1077 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1078 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1079 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1080 |
msgstr ""
|
1081 |
"אם אינך מעוניין לתרום כסף,. נא לשקול לפרסם אותו לקוראים שלך בבלוג עם קישור "
|
1082 |
"לעמוד התוסף. אפשר גם לתרום זמן: לא להסס לשלוח לי דיווחי באגים, קבצי תרגום, "
|
1083 |
"רעיונות לשיפור, איך לשפר את <strong>Subscribe to Comments Reloaded</strong> "
|
1084 |
"וכו'. בכל מקרה, תודה שבחרת להשתמש בתוסף שלי!"
|
1085 |
|
1086 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1087 |
#, fuzzy
|
1088 |
msgid "Subscribe to the Beta testers"
|
1089 |
msgstr "רשום את המחברים"
|
1090 |
|
1091 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1092 |
msgid ""
|
1093 |
"Before a new Update we release a Beta version so that our current users can "
|
1094 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1096 |
"a>"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1100 |
msgid "Vote and show your appreciation"
|
1101 |
msgstr "דרגו והראו הערכה"
|
1102 |
|
1103 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1104 |
msgid ""
|
1105 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1106 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1110 |
"עבורך וכמה הוא טוב. <a href=\"http://wordpress.org/extend/plugins/subscribe-"
|
1111 |
"to-comments-reloaded/\">דרג אותו</a> בעמוד התוסף."
|
1112 |
|
1113 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1114 |
msgid "Did you find a Bug on the plugin?"
|
1115 |
msgstr "מצאתם באג בתוסף?"
|
1116 |
|
1117 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1118 |
#, fuzzy
|
1119 |
msgid ""
|
1120 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1213 |
msgid "You have request to manage another email address and this is forbidden."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1217 |
msgid "StCR System"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1221 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1222 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1223 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1224 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1225 |
msgid "You do not have sufficient permissions to access this page."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: utils/stcr_manage.php:726
|
1229 |
#, fuzzy
|
1230 |
msgid "Subscriptions"
|
1231 |
msgstr "הרשמה"
|
1232 |
|
1233 |
+
#: utils/stcr_manage.php:782
|
1234 |
msgid ""
|
1235 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1236 |
msgstr "זקוק לעזרה ב כיצד להירשם ל Comments Reloaded? בקר ב"
|
1237 |
|
1238 |
+
#: utils/stcr_manage.php:782
|
1239 |
msgid "support forum"
|
1240 |
msgstr "פורום התמיכה הרשמי"
|
1241 |
|
1242 |
+
#: utils/stcr_manage.php:783
|
1243 |
msgid "Feeling generous?"
|
1244 |
msgstr "מרגיש נדיב?"
|
1245 |
|
1246 |
+
#: utils/stcr_manage.php:783
|
1247 |
msgid "Donate a few bucks!"
|
1248 |
msgstr "תרום קצת!"
|
1249 |
|
1250 |
+
#: utils/stcr_upgrade.php:72
|
1251 |
msgid "Important Notice"
|
1252 |
msgstr "הודעה חשובה"
|
1253 |
|
1254 |
+
#: utils/stcr_upgrade.php:120
|
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="
|
1259 |
"src=\""
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: utils/stcr_upgrade.php:175
|
1263 |
#, fuzzy
|
1264 |
msgid ""
|
1265 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1269 |
"נתוני הרשמה מתוסף <strong>Subscribe to Comments</strong> זוהו ויובאו "
|
1270 |
"אוטומטית ל <strong>Subscribe to Comments Reloaded</strong>."
|
1271 |
|
1272 |
+
#: utils/stcr_upgrade.php:175
|
1273 |
msgid ""
|
1274 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1275 |
"Comments to prevent confusion between the two plugins."
|
1277 |
" מומלץ כעת <strong>לכבות</strong> את Subscribe to Comments כדי למנוע בלבול "
|
1278 |
"בין שני התוספים."
|
1279 |
|
1280 |
+
#: utils/stcr_upgrade.php:176
|
1281 |
msgid ""
|
1282 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1283 |
"that you want to import, you'll need to import that data manually, as only "
|
1286 |
"אם יש לך נתוני הרשמה מ Subscribe to Comments Reloaded < v2.0 ליבוא, יהיה "
|
1287 |
"צורך לייבא אותם ידנית, כי רק שגרת יבוא אחת תפעל, כדי למנוע אבדן נתונים."
|
1288 |
|
1289 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1290 |
+
#: utils/stcr_upgrade.php:400
|
1291 |
msgid ""
|
1292 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1293 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1295 |
"\"stcr-loading-animation\" src=\""
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: utils/stcr_upgrade.php:250
|
1299 |
#, fuzzy
|
1300 |
msgid ""
|
1301 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1305 |
"נתוני הרשמה מתוסף <strong>Comment Reply Notification</strong> זוהו ויובאו "
|
1306 |
"אוטומטית ל <strong>Subscribe to Comments Reloaded</strong>."
|
1307 |
|
1308 |
+
#: utils/stcr_upgrade.php:250
|
1309 |
msgid ""
|
1310 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1311 |
"Notification to prevent confusion between the two plugins."
|
1313 |
" מומלץ כעת <strong>לכבות</strong> את Comment Reply Notification כדי למנוע "
|
1314 |
"בלבול בין התוספים."
|
1315 |
|
1316 |
+
#: utils/stcr_upgrade.php:397
|
1317 |
#, fuzzy
|
1318 |
msgid ""
|
1319 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1324 |
"אפשרויות התוסף ונתוני הרשמה מתוסף <strong>WP Comment Subscriptions</strong> "
|
1325 |
"זוהו ויובאו אוטומטית אל <strong>Subscribe to Comments Reloaded</strong>."
|
1326 |
|
1327 |
+
#: utils/stcr_upgrade.php:397
|
1328 |
msgid ""
|
1329 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1330 |
"Subscriptions to prevent confusion between the two plugins."
|
1332 |
" מומלץ כעת <strong>לכבות</strong> את WP Comment Subscriptions כדי למנוע "
|
1333 |
"בלבול בין שני התוספים."
|
1334 |
|
1335 |
+
#: utils/stcr_upgrade.php:398
|
1336 |
msgid ""
|
1337 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1338 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1343 |
"Comments Reloaded < v2.0) שתרצה לייבא, יהיה צורך לייבא את הנתונים באופן "
|
1344 |
"ידני, כי תמיד תפעל רק שגרת יבוא אחת כדי למנוע אבדן נתונים."
|
1345 |
|
1346 |
+
#: utils/stcr_upgrade.php:399
|
1347 |
msgid ""
|
1348 |
"<strong>Note:</strong> If you were previously using the "
|
1349 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1357 |
"<code>subscribe_reloaded_show()</code> וב <code>[subscribe-url]</code> "
|
1358 |
"בהתאמה."
|
1359 |
|
1360 |
+
#: utils/stcr_upgrade.php:413
|
1361 |
msgid ""
|
1362 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1366 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1367 |
#, fuzzy
|
1368 |
msgid ""
|
1369 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1373 |
"comments-reloaded/issues/\" target=\"_blank\">GitHub</a> עדיף על עמוד התמיכה "
|
1374 |
"בוורדפרס."
|
1375 |
|
1376 |
+
#: utils/stcr_upgrade.php:415
|
1377 |
msgid ""
|
1378 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1379 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1380 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1381 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1382 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1383 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: utils/stcr_upgrade.php:417
|
1387 |
msgid ""
|
1388 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1389 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1391 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: utils/stcr_upgrade.php:428
|
1395 |
msgid ""
|
1396 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1397 |
"160106."
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: utils/stcr_upgrade.php:429
|
1401 |
msgid ""
|
1402 |
"This version includes many changes and fixes to improve your experience with "
|
1403 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1404 |
"email templates, Subscription Checkbox position, and more!"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1408 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1409 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1410 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1411 |
msgid ""
|
1412 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1413 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1415 |
"class=\"stcr-loading-animation\" src=\""
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: utils/stcr_upgrade.php:443
|
1419 |
msgid ""
|
1420 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1421 |
"160115."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: utils/stcr_upgrade.php:444
|
1425 |
msgid ""
|
1426 |
"This version includes fixes to broken links while managing your subscriptions"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: utils/stcr_upgrade.php:458
|
1430 |
msgid ""
|
1431 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1432 |
"160831"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1436 |
msgid "This version includes fixes to many bugs and also new features, "
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1440 |
msgid ""
|
1441 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1442 |
"address. This will help the subscribers to use the Reply option in their "
|
1443 |
"email agents."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1447 |
msgid ""
|
1448 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1449 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1453 |
msgid ""
|
1454 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1455 |
"without loosing your subscriptions. You can use this option also for reset "
|
1456 |
"all the settings, see the FAQ."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1460 |
msgid ""
|
1461 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1462 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1463 |
"Post Type."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1467 |
msgid ""
|
1468 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1469 |
"options to and the management link only by email and not to display it on "
|
1470 |
"the request link page."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: utils/stcr_upgrade.php:480
|
1474 |
msgid ""
|
1475 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1476 |
"160902"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: utils/stcr_upgrade.php:483
|
1480 |
msgid ""
|
1481 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1482 |
"previous 160831 version."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1486 |
msgid "Settings"
|
1487 |
msgstr "הגדרות"
|
1488 |
|
1489 |
+
#: utils/stcr_upgrade.php:504
|
1490 |
msgid ""
|
1491 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1492 |
"160915"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1496 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1497 |
msgid "This version includes fixes and improvements, "
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: utils/stcr_upgrade.php:508
|
1501 |
msgid ""
|
1502 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1503 |
"dropdown."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: utils/stcr_upgrade.php:509
|
1507 |
msgid ""
|
1508 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1512 |
+
#: utils/stcr_upgrade.php:576
|
1513 |
msgid "Log Settings"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1517 |
+
#: utils/stcr_upgrade.php:580
|
1518 |
msgid ""
|
1519 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: utils/stcr_upgrade.php:529
|
1523 |
msgid ""
|
1524 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1525 |
"enable."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: utils/stcr_upgrade.php:530
|
1529 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1533 |
+
#: utils/stcr_upgrade.php:590
|
1534 |
msgid "The support of this plugin is given thanks to your donations."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: utils/stcr_upgrade.php:536
|
1538 |
msgid ""
|
1539 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1540 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1544 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: utils/stcr_upgrade.php:557
|
1548 |
msgid ""
|
1549 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1550 |
"installation regarding a database table creation."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: utils/stcr_upgrade.php:558
|
1554 |
msgid ""
|
1555 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1556 |
"Awesome."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: utils/stcr_upgrade.php:563
|
1560 |
msgid ""
|
1561 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1562 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1567 |
"for the users that have supported the plugin development."
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: utils/stcr_upgrade.php:584
|
1571 |
+
msgid ""
|
1572 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1573 |
+
"issues."
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: utils/stcr_upgrade.php:585
|
1577 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1578 |
+
msgstr ""
|
1579 |
+
|
1580 |
+
#: utils/stcr_upgrade.php:586
|
1581 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1582 |
+
msgstr ""
|
1583 |
+
|
1584 |
+
#: utils/stcr_upgrade.php:591
|
1585 |
+
msgid ""
|
1586 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1587 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1588 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1589 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1590 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1591 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1592 |
+
"Thanks for all the users that have supported the plugin development."
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: utils/stcr_utils.php:196
|
1596 |
+
msgid ""
|
1597 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1598 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1599 |
+
msgstr ""
|
1600 |
+
"נא לעדכן אותי במייל על תגובות נוספות. אפשר גם <a "
|
1601 |
+
"href='[subscribe_link]'>להירשם</a> מבלי להגיב."
|
1602 |
+
|
1603 |
+
#: utils/stcr_utils.php:197
|
1604 |
+
msgid ""
|
1605 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1606 |
+
"subscriptions."
|
1607 |
+
msgstr ""
|
1608 |
+
"ההרשמה שלך לפוסט זה פעילה. <a href='[manager_link]'>ניהול ההרשמות שלך</a>. "
|
1609 |
+
|
1610 |
+
#: utils/stcr_utils.php:198
|
1611 |
+
msgid ""
|
1612 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1613 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1614 |
+
msgstr ""
|
1615 |
+
"ההרשמה שלך לפוסט זה צריכה אישור. <a href='[manager_link]'>לניהול ההרשמות "
|
1616 |
+
"שלך</a>."
|
1617 |
+
|
1618 |
+
#: utils/stcr_utils.php:199
|
1619 |
+
msgid ""
|
1620 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1621 |
+
msgstr "אפשר <a href='[manager_link]'>לנהל את ההרשמה</a> של פוסט זה."
|
1622 |
+
|
1623 |
+
#: utils/stcr_utils.php:205
|
1624 |
+
msgid ""
|
1625 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1626 |
+
"will send you a message containing the link to access your personal "
|
1627 |
+
"management page."
|
1628 |
+
msgstr ""
|
1629 |
+
"כדי לנהל את ההרשמות שלך, נא להזין את האימייל שלך להלן. נשלח לך הודעה המכילה "
|
1630 |
+
"קישור לעמוד הניהול האישי שלך."
|
1631 |
+
|
1632 |
+
#: utils/stcr_utils.php:206
|
1633 |
+
msgid ""
|
1634 |
+
"Thank you for using our subscription service. Your request has been "
|
1635 |
+
"completed, and you should receive an email with the management link in a few "
|
1636 |
+
"minutes."
|
1637 |
+
msgstr ""
|
1638 |
+
"תודה שהשתמשת בשירות ההרשמה שלנו. בקשתך הושלמה ותוך דקות יישלח אליך אימייל עם "
|
1639 |
+
"קישור ניהול הרשמה שלך."
|
1640 |
+
|
1641 |
+
#: utils/stcr_utils.php:207
|
1642 |
+
msgid ""
|
1643 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1644 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1645 |
+
"form here below and you're all set."
|
1646 |
+
msgstr ""
|
1647 |
+
"אפשר לעקוב אחר הדיון ב <strong>[post_title]</strong> ללא צורך לשלוח תגובה. "
|
1648 |
+
"מגניב, אה? רק להזין את כתובת האימייל שלך בשדה שלהלן."
|
1649 |
+
|
1650 |
+
#: utils/stcr_utils.php:208
|
1651 |
+
msgid ""
|
1652 |
+
"Thank you for using our subscription service. Your request has been "
|
1653 |
+
"completed. You will receive a notification email every time a new comment to "
|
1654 |
+
"this article is approved and posted by the administrator."
|
1655 |
+
msgstr ""
|
1656 |
+
"תודה שהשתמש בשירות ההרשמה שלנו. בקשתך הושלמה. התראה באימייל תישלח על כל "
|
1657 |
+
"תגובה חדשה שתאושר על-ידי ההנהלה לפוסט זה."
|
1658 |
+
|
1659 |
+
#: utils/stcr_utils.php:209
|
1660 |
+
msgid ""
|
1661 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1662 |
+
"request, please check your email for the verification message and follow the "
|
1663 |
+
"instructions."
|
1664 |
+
msgstr ""
|
1665 |
+
"תודה על השימוש בשירות ההרשמה שלנו. כדי לאשר את הבקשה שלך, נא לבדוק ת האימייל "
|
1666 |
+
"שלך כדי לאשר את ההרשמה לפי ההנחיות במייל ."
|
1667 |
+
|
1668 |
+
#: utils/stcr_utils.php:210
|
1669 |
+
msgid ""
|
1670 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1671 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1672 |
+
msgstr ""
|
1673 |
+
"כדי לבטל או להשעות הודעה אחת או יותר נא לבחור תיבת(ות) סימון בהתאמה וללחוץ "
|
1674 |
+
"על הכפתור שבסוף הרשימה."
|
1675 |
+
|
1676 |
+
#: utils/stcr_utils.php:211
|
1677 |
+
msgid ""
|
1678 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1679 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1680 |
+
"You are currently subscribed to:"
|
1681 |
+
msgstr ""
|
1682 |
+
"כדי לבטל או להשעות התראה אחת או יותר, נא לבחור בתיבת(ות) הסימון המתאימה(ות) "
|
1683 |
+
"וללחוץ על הכפתור שבסוף הרשימה. כעת יש הרשמות ל:"
|
1684 |
+
|
1685 |
+
#: utils/stcr_utils.php:215
|
1686 |
+
msgid "There is a new comment to [post_title]"
|
1687 |
+
msgstr "יש תגובה חדשה ל [post_title]"
|
1688 |
+
|
1689 |
+
#: utils/stcr_utils.php:216
|
1690 |
+
msgid ""
|
1691 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1692 |
+
"\n"
|
1693 |
+
"<hr />\n"
|
1694 |
+
"<strong>Comment link:</strong> <a href="
|
1695 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1696 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1697 |
+
"\n"
|
1698 |
+
"<strong>Comment:</strong>\n"
|
1699 |
+
"[comment_content]\n"
|
1700 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1701 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1702 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1703 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: utils/stcr_utils.php:217
|
1707 |
+
msgid "Please confirm your subscription to [post_title]"
|
1708 |
+
msgstr "נא לאשר את ההרשמה שלך ל [post_title]"
|
1709 |
+
|
1710 |
+
#: utils/stcr_utils.php:218
|
1711 |
+
#, fuzzy
|
1712 |
+
#| msgid ""
|
1713 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1714 |
+
#| "[post_permalink]\n"
|
1715 |
+
#| "\n"
|
1716 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1717 |
+
#| "[confirm_link]"
|
1718 |
+
msgid ""
|
1719 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1720 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1721 |
+
"\n"
|
1722 |
+
"Please confirm your request by clicking on this link:\n"
|
1723 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1724 |
+
msgstr ""
|
1725 |
+
"ביקשת לקבל הודעות על הוספת תגובות חדשות ל:\n"
|
1726 |
+
"[post_permalink]\n"
|
1727 |
+
"\n"
|
1728 |
+
"נא לאמת את הבקשה באמצעות לחיצה על הקישור:\n"
|
1729 |
+
"[confirm_link]"
|
1730 |
+
|
1731 |
+
#: utils/stcr_utils.php:219
|
1732 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1733 |
+
msgstr "ניהול ההרשמות שלך ב [blog_name]"
|
1734 |
+
|
1735 |
+
#: utils/stcr_utils.php:220
|
1736 |
+
msgid ""
|
1737 |
+
"You have requested to manage your subscriptions to the articles on "
|
1738 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: utils/stcr_utils.php:221
|
1742 |
+
#, fuzzy
|
1743 |
+
#| msgid ""
|
1744 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1745 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1746 |
+
#| "[manager_link]"
|
1747 |
+
msgid ""
|
1748 |
+
"You have requested to manage your subscriptions to the articles on "
|
1749 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1750 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1751 |
+
msgstr ""
|
1752 |
+
"ביקשת לנהל את ההרשמות שלך למאמרים ב [blog_name]. קישור זה יוביל אותך לעמוד "
|
1753 |
+
"הניהול שלך:\n"
|
1754 |
+
"[manager_link]"
|
1755 |
+
|
1756 |
+
#: utils/stcr_utils.php:300
|
1757 |
#, fuzzy
|
1758 |
msgid "StCR Notification"
|
1759 |
msgstr "הודעות"
|
1766 |
msgid "All"
|
1767 |
msgstr "הכול"
|
1768 |
|
1769 |
+
#~ msgid "Support the developers"
|
1770 |
+
#~ msgstr "תמיכה במפתחים"
|
1771 |
+
|
1772 |
+
#~ msgid "Don't want to donate? You can still help"
|
1773 |
+
#~ msgstr "לא רוצה לתרום? עדיין אפשר לעזור"
|
1774 |
+
|
1775 |
+
#~ msgid ""
|
1776 |
+
#~ "There is a new comment to [post_title].\n"
|
1777 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1778 |
+
#~ "Author: [comment_author]\n"
|
1779 |
+
#~ "Comment:\n"
|
1780 |
+
#~ "[comment_content]\n"
|
1781 |
+
#~ "Permalink: [post_permalink]\n"
|
1782 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1783 |
+
#~ msgstr ""
|
1784 |
+
#~ "יש תגובה חדשה ל [post_title].\n"
|
1785 |
+
#~ "קישור לתגובה: [comment_permalink]\n"
|
1786 |
+
#~ "מחבר: [comment_author]\n"
|
1787 |
+
#~ "תגובה:\n"
|
1788 |
+
#~ "[comment_content]\n"
|
1789 |
+
#~ "מבנה קישור: [post_permalink]\n"
|
1790 |
+
#~ "ניהול ההרשמות שלך: [manager_link]"
|
1791 |
+
|
1792 |
#~ msgid ""
|
1793 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1794 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: Web Geeks <epoxhun@gmail.com>\n"
|
9 |
"Language: hu\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ 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
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Feliratkozás kezelése"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Hozzászólás Űrlap"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Feliratkozás Kezelés Oldal"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Értesítések"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Beállítások"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Segíthetsz"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:458 utils/stcr_manage.php:459
|
46 |
msgid "Support"
|
47 |
msgstr "Падтрымка"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr ""
|
52 |
|
@@ -346,95 +342,95 @@ msgstr "Feliratkozások frissítése"
|
|
346 |
msgid "Sorry, no subscriptions match your search criteria."
|
347 |
msgstr "Bocsi, nincs a keresésnek megfelelő feliratkozás."
|
348 |
|
349 |
-
#: options/panel10.php:
|
350 |
msgid "The log file has been successfully deleted."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: options/panel10.php:
|
354 |
msgid "Can't delete the log file, check the file permissions."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: options/panel10.php:
|
358 |
msgid "The log file does not exists."
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: options/panel10.php:
|
362 |
msgid "Enable Log Information"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: options/panel10.php:
|
366 |
msgid "Enable Auto clean log data"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: options/panel10.php:
|
370 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
371 |
msgid "Your settings have been successfully updated."
|
372 |
msgstr "Beállításaid sikeresen frissítve."
|
373 |
|
374 |
-
#: options/panel10.php:
|
375 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
376 |
msgid "There was an error updating the following fields:"
|
377 |
msgstr "Hiba volt az alábbi mezők frissítésekor."
|
378 |
|
379 |
-
#: options/panel10.php:
|
380 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
381 |
-
#: options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
msgid "Yes"
|
386 |
msgstr "Igen"
|
387 |
|
388 |
-
#: options/panel10.php:
|
389 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
msgid "No"
|
395 |
msgstr "Nem"
|
396 |
|
397 |
-
#: options/panel10.php:
|
398 |
msgid ""
|
399 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
400 |
"purposes."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: options/panel10.php:
|
404 |
msgid "Hourly"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: options/panel10.php:
|
408 |
msgid "Twice Daily"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: options/panel10.php:
|
412 |
msgid "Daily"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: options/panel10.php:
|
416 |
msgid "If enabled, StCR will auto clean your information every day."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: options/panel10.php:
|
420 |
msgid "Clean Up Log Archive"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: options/panel10.php:
|
424 |
msgid ""
|
425 |
"If you want to clean up the log archive please click the following button"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: options/panel10.php:
|
429 |
msgid "Clean"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: options/panel10.php:
|
433 |
msgid "System Information"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: options/panel10.php:
|
437 |
-
#: options/panel4.php:283 options/panel5.php:
|
438 |
msgid "Save Changes"
|
439 |
msgstr "Változások Mentése"
|
440 |
|
@@ -785,7 +781,7 @@ msgstr "Csak a válaszokra"
|
|
785 |
#: options/panel4.php:128
|
786 |
msgid ""
|
787 |
"This will be use when the user click reply on their email agent. If not set "
|
788 |
-
"will be the same as the Sender email address."
|
789 |
msgstr ""
|
790 |
|
791 |
#: options/panel4.php:147
|
@@ -801,8 +797,8 @@ msgstr ""
|
|
801 |
|
802 |
#: options/panel4.php:171
|
803 |
msgid ""
|
804 |
-
"<p><strong>Note: To get a default template clear
|
805 |
-
"the options.</strong></p>"
|
806 |
msgstr ""
|
807 |
|
808 |
#: options/panel4.php:184
|
@@ -849,75 +845,95 @@ msgid ""
|
|
849 |
"[blog_name]"
|
850 |
msgstr "A megerősítő e-mail tárgya. Használható címkék: [post_title]"
|
851 |
|
852 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
853 |
msgid "Show StCR checkbox / dropdown"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: options/panel5.php:
|
857 |
msgid "Safetly Uninstall"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: options/panel5.php:
|
861 |
msgid "Autopurge requests"
|
862 |
msgstr "Kérések automatikus ürítése"
|
863 |
|
864 |
-
#: options/panel5.php:
|
865 |
msgid "Enable double check"
|
866 |
msgstr "Dupla ellenőrzés bekapcsolása"
|
867 |
|
868 |
-
#: options/panel5.php:
|
869 |
msgid "StCR Position"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: options/panel5.php:
|
873 |
msgid "Subscribe authors"
|
874 |
msgstr "Subscribe authors"
|
875 |
|
876 |
-
#: options/panel5.php:
|
877 |
msgid "Enable HTML emails"
|
878 |
msgstr "HTML e-mailek bekapcsolása"
|
879 |
|
880 |
-
#: options/panel5.php:
|
881 |
msgid "HTMLify Links in HTML emails"
|
882 |
msgstr "HTML linkekké alakítás a HTML e-mailekben"
|
883 |
|
884 |
-
#: options/panel5.php:
|
885 |
msgid "Send trackbacks"
|
886 |
msgstr "Trackback küldés"
|
887 |
|
888 |
-
#: options/panel5.php:
|
889 |
msgid "Notify admin"
|
890 |
msgstr "Admin értesítés"
|
891 |
|
892 |
-
#: options/panel5.php:
|
893 |
msgid "Let admin subscribe"
|
894 |
msgstr "Az admin is feliratkozhat"
|
895 |
|
896 |
-
#: options/panel5.php:
|
897 |
msgid "BCC admin on Notifications"
|
898 |
msgstr "Titkos másolat az adminisztrátornak az értesítésekről"
|
899 |
|
900 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
901 |
msgid ""
|
902 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
903 |
"You should leave it to Yes always. "
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: options/panel5.php:
|
907 |
msgid "Safely Uninstall"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: options/panel5.php:
|
911 |
msgid ""
|
912 |
"This option will allow you to delete the plugin with WordPress without "
|
913 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: options/panel5.php:
|
917 |
msgid "days"
|
918 |
msgstr "nap"
|
919 |
|
920 |
-
#: options/panel5.php:
|
921 |
msgid ""
|
922 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
923 |
"this feature."
|
@@ -925,27 +941,27 @@ msgstr ""
|
|
925 |
"Meg nem erősített feliratkozások törlése X nap után. Nulla érték esetén "
|
926 |
"nincs törlés."
|
927 |
|
928 |
-
#: options/panel5.php:
|
929 |
msgid ""
|
930 |
"If this option is enable the subscription box will be above the submit "
|
931 |
"button in your comment form. Use this when your theme is outdated and using "
|
932 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: options/panel5.php:
|
936 |
msgid ""
|
937 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
938 |
"misuse)."
|
939 |
msgstr ""
|
940 |
"Megerősítő email küldés a feliratkozáshoz (helytelen email cím elkerüléshez)."
|
941 |
|
942 |
-
#: options/panel5.php:
|
943 |
msgid ""
|
944 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
945 |
msgstr ""
|
946 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
947 |
|
948 |
-
#: options/panel5.php:
|
949 |
msgid ""
|
950 |
"If enabled, will send email messages with content-type = text/html instead "
|
951 |
"of text/plain"
|
@@ -953,11 +969,11 @@ msgstr ""
|
|
953 |
"Bekapcsolva az e-mail értesítéseknél a content-type = text/html lesz text/"
|
954 |
"plain helyett"
|
955 |
|
956 |
-
#: options/panel5.php:
|
957 |
msgid "HTMLify links in emails"
|
958 |
msgstr "HTML linkekké alakítás az e-mailekben"
|
959 |
|
960 |
-
#: options/panel5.php:
|
961 |
msgid ""
|
962 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
963 |
"</a></code> (only when HTML emails enabled)."
|
@@ -966,48 +982,54 @@ msgstr ""
|
|
966 |
"<code><a href=\"\"></a></code> (csak ha a HTML e-mail be van "
|
967 |
"kapcsolva)."
|
968 |
|
969 |
-
#: options/panel5.php:
|
970 |
msgid "Process trackbacks"
|
971 |
msgstr "Trackback-ek feldolgozása"
|
972 |
|
973 |
-
#: options/panel5.php:
|
974 |
msgid ""
|
975 |
"Notify users when a new trackback or pingback is added to the discussion."
|
976 |
msgstr ""
|
977 |
"Felhasználó értesítése, ha új trackback vagy pingback érkezik egy "
|
978 |
"beszélgetéshez."
|
979 |
|
980 |
-
#: options/panel5.php:
|
981 |
msgid "Track all subscriptions"
|
982 |
msgstr "Minden feliratkozás követése"
|
983 |
|
984 |
-
#: options/panel5.php:
|
985 |
msgid "Notify the administrator when users subscribe without commenting."
|
986 |
msgstr ""
|
987 |
"Adminisztrátori értesítés, ha valaki hozzászólás nélkül iratkozik fel "
|
988 |
"értesítésre."
|
989 |
|
990 |
-
#: options/panel5.php:
|
991 |
msgid "Let the administrator subscribe to comments when logged in."
|
992 |
msgstr "Az adminisztrátor bejelentkezve fel tudjon iratkoznu."
|
993 |
|
994 |
-
#: options/panel5.php:
|
995 |
msgid "Send a copy of all Notifications to the administrator."
|
996 |
msgstr "Másolat küldés minden értesítésről az adminisztrátornak."
|
997 |
|
998 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
999 |
msgid "StCR Unique Key"
|
1000 |
msgstr "StCR Unique Key"
|
1001 |
|
1002 |
-
#: options/panel5.php:
|
1003 |
msgid "This Unique Key is not set, please click the following button to "
|
1004 |
msgstr "Nincs Unique Key (egyedi kulcs) beállítva. Kattints a következő gombra"
|
1005 |
|
1006 |
-
#: options/panel5.php:
|
1007 |
msgid "Generate"
|
1008 |
msgstr "Generálás"
|
1009 |
|
1010 |
-
#: options/panel5.php:
|
1011 |
msgid ""
|
1012 |
"This Unique Key will be use to send the notification to your subscribers "
|
1013 |
"with more security."
|
@@ -1016,15 +1038,39 @@ msgstr ""
|
|
1016 |
"nagyobb\n"
|
1017 |
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbiztonsággal menjenek ki."
|
1018 |
|
1019 |
-
#: options/
|
1020 |
-
msgid "
|
1021 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1022 |
|
1023 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1024 |
msgid ""
|
1025 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1026 |
"consider supporting the author if this plugin made your web site better, "
|
1027 |
-
"especially if you are making money out of it
|
|
|
1028 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1029 |
"strong>, and to buy some food for my hungry family."
|
1030 |
msgstr ""
|
@@ -1034,18 +1080,27 @@ msgstr ""
|
|
1034 |
"beérkező támogatást a Subscribe to Comments Reloaded plugin "
|
1035 |
"továbbfejlesztésére, no meg egy kis ételre fordítok - éhes családom számára."
|
1036 |
|
1037 |
-
#: options/panel7.php:
|
1038 |
-
|
1039 |
-
|
|
|
|
|
1040 |
|
1041 |
-
#: options/panel7.php:
|
1042 |
-
|
1043 |
-
|
1044 |
-
"
|
1045 |
-
"
|
1046 |
-
"
|
1047 |
-
"
|
1048 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1049 |
msgstr ""
|
1050 |
"Ha nem akarsz pénzzel támogatni, kérlek írj a plugin-ról, és helyezd el a "
|
1051 |
"plugin linkjét benne. Írd meg, hogyan tette blogodat jobbá ez a megoldás. "
|
@@ -1053,11 +1108,11 @@ msgstr ""
|
|
1053 |
"fejlesztési ötleteket, stb. Bármit is teszel, köszönöm hogy az én plugin-"
|
1054 |
"emet használod!"
|
1055 |
|
1056 |
-
#: options/panel7.php:
|
1057 |
msgid "Subscribe to the Beta testers"
|
1058 |
msgstr "Subscribe authors"
|
1059 |
|
1060 |
-
#: options/panel7.php:
|
1061 |
msgid ""
|
1062 |
"Before a new Update we release a Beta version so that our current users can "
|
1063 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1065,11 +1120,11 @@ msgid ""
|
|
1065 |
"a>"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: options/panel7.php:
|
1069 |
msgid "Vote and show your appreciation"
|
1070 |
msgstr "Szavazz és mutasd meg, ha tetszik"
|
1071 |
|
1072 |
-
#: options/panel7.php:
|
1073 |
msgid ""
|
1074 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1075 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1079,11 +1134,11 @@ msgstr ""
|
|
1079 |
"oldalodon. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1080 |
"comments-reloaded/\">Értékeld</a> a Plugin oldalon."
|
1081 |
|
1082 |
-
#: options/panel8.php:
|
1083 |
msgid "Did you find a Bug on the plugin?"
|
1084 |
msgstr "Hibát találtál a plugin-ben?"
|
1085 |
|
1086 |
-
#: options/panel8.php:
|
1087 |
msgid ""
|
1088 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1089 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1179,202 +1234,46 @@ msgstr ""
|
|
1179 |
msgid "You have request to manage another email address and this is forbidden."
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: utils/stcr_manage.php:
|
1183 |
-
msgid ""
|
1184 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1185 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1186 |
-
msgstr ""
|
1187 |
-
"A hozzászólásokról email-ben kérek értesítést. <a "
|
1188 |
-
"href='[subscribe_link]'>Feliratkozás</a> hozzászólás nélkül is lehetséges."
|
1189 |
-
|
1190 |
-
#: utils/stcr_manage.php:224
|
1191 |
-
msgid ""
|
1192 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1193 |
-
"subscriptions."
|
1194 |
-
msgstr ""
|
1195 |
-
"Feliratkozva ehhez a bejegyzéshez. <a href='[manager_link]'Saját "
|
1196 |
-
"feliratkozásaink kezelése</a>."
|
1197 |
-
|
1198 |
-
#: utils/stcr_manage.php:225
|
1199 |
-
msgid ""
|
1200 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1201 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1202 |
-
msgstr ""
|
1203 |
-
"A feliratkozási szándékot meg kell erősíteni: <a "
|
1204 |
-
"href='[manager_link]'>Feliratkozás kezelése</a>."
|
1205 |
-
|
1206 |
-
#: utils/stcr_manage.php:226
|
1207 |
-
msgid ""
|
1208 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1209 |
-
msgstr ""
|
1210 |
-
"<a href='[manager_link]'>Saját feliratkozásunk kezelése</a> ennél a "
|
1211 |
-
"bejegyzésnél."
|
1212 |
-
|
1213 |
-
#: utils/stcr_manage.php:232
|
1214 |
-
msgid ""
|
1215 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1216 |
-
"will send you a message containing the link to access your personal "
|
1217 |
-
"management page."
|
1218 |
-
msgstr ""
|
1219 |
-
"A feliratkozások kezeléséhez alul meg kell adni az email címet, amelyre "
|
1220 |
-
"elküldjük azt a hivatkozást, amellyel a saját kezelési oldalra lehet belépni."
|
1221 |
-
|
1222 |
-
#: utils/stcr_manage.php:233
|
1223 |
-
msgid ""
|
1224 |
-
"Thank you for using our subscription service. Your request has been "
|
1225 |
-
"completed, and you should receive an email with the management link in a few "
|
1226 |
-
"minutes."
|
1227 |
-
msgstr ""
|
1228 |
-
"Köszönjük, hogy használod az értesítőket. Néhány percen belül e-mailben "
|
1229 |
-
"megkapot a beállításokhoz szükséges linked."
|
1230 |
-
|
1231 |
-
#: utils/stcr_manage.php:234
|
1232 |
-
msgid ""
|
1233 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1234 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1235 |
-
"form here below and you're all set."
|
1236 |
-
msgstr ""
|
1237 |
-
"<strong>[post_title]</strong> című bejegyzésünkhöz történő hozzászólásokat "
|
1238 |
-
"úgy is figyelemmel lehet kísérni, ha az olvasó nem szól hozzá a témához. "
|
1239 |
-
"Csak meg kell adni a saját email címet az alul található mezőbe, és máris "
|
1240 |
-
"minden készen áll."
|
1241 |
-
|
1242 |
-
#: utils/stcr_manage.php:235
|
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 |
-
"<strong>Köszönjük, hogy használtad a feliratkozás szolgáltatásunkat!</"
|
1249 |
-
"strong><br /> A kérést rögzítettük; minden egyes alkalommal küldünk egy "
|
1250 |
-
"értesítést email címedre, amikor a bejegyzéshez új hozzászólás érkezik."
|
1251 |
-
|
1252 |
-
#: utils/stcr_manage.php:236
|
1253 |
-
msgid ""
|
1254 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1255 |
-
"request, please check your email for the verification message and follow the "
|
1256 |
-
"instructions."
|
1257 |
-
msgstr ""
|
1258 |
-
"Köszönjük, hogy használtad a feliratkozás szolgáltatásunkat! A kérésed "
|
1259 |
-
"megerősítéséhez, kérjük ellenőrizd e-mailcímed, és kövesd az instrukciókat."
|
1260 |
-
|
1261 |
-
#: utils/stcr_manage.php:237
|
1262 |
-
msgid ""
|
1263 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1264 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1265 |
-
msgstr ""
|
1266 |
-
"Az értesítések kikapcsolásához, vagy törléséhez válaszd ki a kívánt "
|
1267 |
-
"értesítést, majd a megfelelő állapotot és kattints az Értesítés frissítése "
|
1268 |
-
"gombra."
|
1269 |
-
|
1270 |
-
#: utils/stcr_manage.php:238
|
1271 |
-
msgid ""
|
1272 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1273 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1274 |
-
"You are currently subscribed to:"
|
1275 |
-
msgstr ""
|
1276 |
-
"Az értesítések kikapcsolásához, megszűntetéséhez, válassz jelölőnégyzetet és "
|
1277 |
-
"a lista végén kattints a megfelelő gombra. Jelenleg ezek az értesítéseid:"
|
1278 |
-
|
1279 |
-
#: utils/stcr_manage.php:242
|
1280 |
-
msgid "There is a new comment to [post_title]"
|
1281 |
-
msgstr "Új hozzászólás ehhez [post_title]"
|
1282 |
-
|
1283 |
-
#: utils/stcr_manage.php:243
|
1284 |
-
msgid ""
|
1285 |
-
"There is a new comment to [post_title].\n"
|
1286 |
-
"Comment Link: [comment_permalink]\n"
|
1287 |
-
"Author: [comment_author]\n"
|
1288 |
-
"Comment:\n"
|
1289 |
-
"[comment_content]\n"
|
1290 |
-
"Permalink: [post_permalink]\n"
|
1291 |
-
"Manage your subscriptions: [manager_link]"
|
1292 |
-
msgstr ""
|
1293 |
-
"Új hozzászólás érkezett ehhez: [post_title].\n"
|
1294 |
-
"Hozzászólás Link: [comment_permalink]\n"
|
1295 |
-
"Írta: [comment_author]\n"
|
1296 |
-
"Hozzászólás:\n"
|
1297 |
-
"[comment_content]\n"
|
1298 |
-
"Permalink: [post_permalink]\n"
|
1299 |
-
"Értesítési beállítások: [manager_link]"
|
1300 |
-
|
1301 |
-
#: utils/stcr_manage.php:244
|
1302 |
-
msgid "Please confirm your subscription to [post_title]"
|
1303 |
-
msgstr "Kérlek, erősítsd meg feliratkozásod erre [post_title]"
|
1304 |
-
|
1305 |
-
#: utils/stcr_manage.php:245
|
1306 |
-
msgid ""
|
1307 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1308 |
-
"[post_permalink]\n"
|
1309 |
-
"\n"
|
1310 |
-
"Please confirm your request by clicking on this link:\n"
|
1311 |
-
"[confirm_link]"
|
1312 |
-
msgstr ""
|
1313 |
-
"Azt kérted, értesítsünk, amikor új hozzászólás érkezik ehhez:\n"
|
1314 |
-
"[post_permalink]\n"
|
1315 |
-
"\n"
|
1316 |
-
"Kérlek, erősítsd meg a feliratkozást az alábbi linkre kattintva:\n"
|
1317 |
-
"[confirm_link]"
|
1318 |
-
|
1319 |
-
#: utils/stcr_manage.php:246
|
1320 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1321 |
-
msgstr "Ártesítés beállítások - [blog_name]"
|
1322 |
-
|
1323 |
-
#: utils/stcr_manage.php:247
|
1324 |
-
msgid ""
|
1325 |
-
"You have requested to manage your subscriptions to the articles on "
|
1326 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1327 |
-
msgstr ""
|
1328 |
-
|
1329 |
-
#: utils/stcr_manage.php:248
|
1330 |
-
msgid ""
|
1331 |
-
"You have requested to manage your subscriptions to the articles on "
|
1332 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1333 |
-
"[manager_link]"
|
1334 |
-
msgstr ""
|
1335 |
-
"A [blog_name] oldal értesítési beállításainak elérése:\n"
|
1336 |
-
"[manager_link]"
|
1337 |
-
|
1338 |
-
#: utils/stcr_manage.php:470 utils/stcr_manage.php:471
|
1339 |
msgid "StCR System"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: utils/stcr_manage.php:
|
1343 |
-
#: utils/stcr_manage.php:
|
1344 |
-
#: utils/stcr_manage.php:
|
1345 |
-
#: utils/stcr_manage.php:
|
1346 |
-
#: utils/stcr_manage.php:
|
1347 |
msgid "You do not have sufficient permissions to access this page."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: utils/stcr_manage.php:
|
1351 |
msgid "Subscriptions"
|
1352 |
msgstr "Feliratkozás"
|
1353 |
|
1354 |
-
#: utils/stcr_manage.php:
|
1355 |
msgid ""
|
1356 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1357 |
msgstr ""
|
1358 |
"Segítségre van szükséged, a Subscribe to Comments Reloaded használatához? "
|
1359 |
"Látogasson el a hivatalos"
|
1360 |
|
1361 |
-
#: utils/stcr_manage.php:
|
1362 |
msgid "support forum"
|
1363 |
msgstr "támogatói fórumra"
|
1364 |
|
1365 |
-
#: utils/stcr_manage.php:
|
1366 |
msgid "Feeling generous?"
|
1367 |
msgstr "Nagylelkű napod van?"
|
1368 |
|
1369 |
-
#: utils/stcr_manage.php:
|
1370 |
msgid "Donate a few bucks!"
|
1371 |
msgstr "Adakozz egy pár dolcsit!"
|
1372 |
|
1373 |
-
#: utils/stcr_upgrade.php:
|
1374 |
msgid "Important Notice"
|
1375 |
msgstr "Fontos Közlendő"
|
1376 |
|
1377 |
-
#: utils/stcr_upgrade.php:
|
1378 |
msgid ""
|
1379 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1380 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1382,7 +1281,7 @@ msgid ""
|
|
1382 |
"src=\""
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: utils/stcr_upgrade.php:
|
1386 |
msgid ""
|
1387 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1388 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
@@ -1392,7 +1291,7 @@ msgstr ""
|
|
1392 |
"találtunk és importáltunk is őket a <strong>Subscribe to Comments Reloaded</"
|
1393 |
"strong>-be."
|
1394 |
|
1395 |
-
#: utils/stcr_upgrade.php:
|
1396 |
msgid ""
|
1397 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1398 |
"Comments to prevent confusion between the two plugins."
|
@@ -1400,7 +1299,7 @@ msgstr ""
|
|
1400 |
"Javasoljuk, hogy most <strong>kapcsold ki</strong> a Subscribe to Comments-"
|
1401 |
"et, hogy megelőzzük a két plugin összeakadását."
|
1402 |
|
1403 |
-
#: utils/stcr_upgrade.php:
|
1404 |
msgid ""
|
1405 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1406 |
"that you want to import, you'll need to import that data manually, as only "
|
@@ -1411,8 +1310,8 @@ msgstr ""
|
|
1411 |
"az adatvesztés megelőzése érdekében csak egyetlen importálási folyamatot "
|
1412 |
"alkalmazunk."
|
1413 |
|
1414 |
-
#: utils/stcr_upgrade.php:
|
1415 |
-
#: utils/stcr_upgrade.php:
|
1416 |
msgid ""
|
1417 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1418 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1420,7 +1319,7 @@ msgid ""
|
|
1420 |
"\"stcr-loading-animation\" src=\""
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: utils/stcr_upgrade.php:
|
1424 |
msgid ""
|
1425 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1426 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
@@ -1430,7 +1329,7 @@ msgstr ""
|
|
1430 |
"adatokat találtunk és importáltunk is őket a <strong>Subscribe to Comments "
|
1431 |
"Reloaded</strong>-be."
|
1432 |
|
1433 |
-
#: utils/stcr_upgrade.php:
|
1434 |
msgid ""
|
1435 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1436 |
"Notification to prevent confusion between the two plugins."
|
@@ -1438,7 +1337,7 @@ msgstr ""
|
|
1438 |
"Javasoljuk, hogy most <strong>kapcsold ki</strong> a Comment Reply "
|
1439 |
"Notification-t, hogy megelőzzük a két plugin összeakadását."
|
1440 |
|
1441 |
-
#: utils/stcr_upgrade.php:
|
1442 |
msgid ""
|
1443 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1444 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1449,7 +1348,7 @@ msgstr ""
|
|
1449 |
"adatokat és beállításokat találtunk és importáltunk is őket a "
|
1450 |
"<strong>Subscribe to Comments Reloaded</strong>-be."
|
1451 |
|
1452 |
-
#: utils/stcr_upgrade.php:
|
1453 |
msgid ""
|
1454 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1455 |
"Subscriptions to prevent confusion between the two plugins."
|
@@ -1457,7 +1356,7 @@ msgstr ""
|
|
1457 |
"Javasoljuk, hogy most <strong>kapcsold ki</strong> a WP Comment "
|
1458 |
"Subscriptions-t, hogy megelőzzük a két plugin összeakadását."
|
1459 |
|
1460 |
-
#: utils/stcr_upgrade.php:
|
1461 |
msgid ""
|
1462 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1463 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1470,7 +1369,7 @@ msgstr ""
|
|
1470 |
"adatvesztés megelőzése érdekében csak egyetlen importálási folyamatot "
|
1471 |
"alkalmazunk."
|
1472 |
|
1473 |
-
#: utils/stcr_upgrade.php:
|
1474 |
msgid ""
|
1475 |
"<strong>Note:</strong> If you were previously using the "
|
1476 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1484,28 +1383,29 @@ msgstr ""
|
|
1484 |
"<code>subscribe_reloaded_show()</code> funkcióra és a <code>[subscribe-url]</"
|
1485 |
"code> shortcode-ra."
|
1486 |
|
1487 |
-
#: utils/stcr_upgrade.php:
|
1488 |
msgid ""
|
1489 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: utils/stcr_upgrade.php:
|
|
|
1493 |
msgid ""
|
1494 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1495 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: utils/stcr_upgrade.php:
|
1499 |
msgid ""
|
1500 |
-
"Please consider to make a donation to support the plugin
|
1501 |
-
"<a href=\"\n"
|
1502 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1503 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1504 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1505 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: utils/stcr_upgrade.php:
|
1509 |
msgid ""
|
1510 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1511 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1513,22 +1413,23 @@ msgid ""
|
|
1513 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: utils/stcr_upgrade.php:
|
1517 |
msgid ""
|
1518 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1519 |
"160106."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: utils/stcr_upgrade.php:
|
1523 |
msgid ""
|
1524 |
"This version includes many changes and fixes to improve your experience with "
|
1525 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1526 |
"email templates, Subscription Checkbox position, and more!"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: utils/stcr_upgrade.php:
|
1530 |
-
#: utils/stcr_upgrade.php:
|
1531 |
-
#: utils/stcr_upgrade.php:
|
|
|
1532 |
msgid ""
|
1533 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1534 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1536,122 +1437,126 @@ msgid ""
|
|
1536 |
"class=\"stcr-loading-animation\" src=\""
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: utils/stcr_upgrade.php:
|
1540 |
msgid ""
|
1541 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1542 |
"160115."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: utils/stcr_upgrade.php:
|
1546 |
msgid ""
|
1547 |
"This version includes fixes to broken links while managing your subscriptions"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: utils/stcr_upgrade.php:
|
1551 |
msgid ""
|
1552 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1553 |
"160831"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: utils/stcr_upgrade.php:
|
1557 |
msgid "This version includes fixes to many bugs and also new features, "
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: utils/stcr_upgrade.php:
|
1561 |
msgid ""
|
1562 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1563 |
"address. This will help the subscribers to use the Reply option in their "
|
1564 |
"email agents."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: utils/stcr_upgrade.php:
|
1568 |
msgid ""
|
1569 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1570 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: utils/stcr_upgrade.php:
|
1574 |
msgid ""
|
1575 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1576 |
"without loosing your subscriptions. You can use this option also for reset "
|
1577 |
"all the settings, see the FAQ."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: utils/stcr_upgrade.php:
|
1581 |
msgid ""
|
1582 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1583 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1584 |
"Post Type."
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: utils/stcr_upgrade.php:
|
1588 |
msgid ""
|
1589 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1590 |
"options to and the management link only by email and not to display it on "
|
1591 |
"the request link page."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: utils/stcr_upgrade.php:
|
1595 |
msgid ""
|
1596 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1597 |
"160902"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: utils/stcr_upgrade.php:
|
1601 |
msgid ""
|
1602 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1603 |
"previous 160831 version."
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: utils/stcr_upgrade.php:
|
1607 |
msgid "Settings"
|
1608 |
msgstr "Beállítások"
|
1609 |
|
1610 |
-
#: utils/stcr_upgrade.php:
|
1611 |
msgid ""
|
1612 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1613 |
"160915"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: utils/stcr_upgrade.php:
|
|
|
1617 |
msgid "This version includes fixes and improvements, "
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: utils/stcr_upgrade.php:
|
1621 |
msgid ""
|
1622 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1623 |
"dropdown."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: utils/stcr_upgrade.php:
|
1627 |
msgid ""
|
1628 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: utils/stcr_upgrade.php:
|
|
|
1632 |
msgid "Log Settings"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: utils/stcr_upgrade.php:
|
|
|
1636 |
msgid ""
|
1637 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: utils/stcr_upgrade.php:
|
1641 |
msgid ""
|
1642 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1643 |
"enable."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: utils/stcr_upgrade.php:
|
1647 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: utils/stcr_upgrade.php:
|
|
|
1651 |
msgid "The support of this plugin is given thanks to your donations."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: utils/stcr_upgrade.php:
|
1655 |
msgid ""
|
1656 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1657 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1661,7 +1566,222 @@ msgid ""
|
|
1661 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1665 |
msgid "StCR Notification"
|
1666 |
msgstr "Értesítések"
|
1667 |
|
@@ -1673,6 +1793,29 @@ msgstr "Nem iratkozom fel"
|
|
1673 |
msgid "All"
|
1674 |
msgstr "Mindenre"
|
1675 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1676 |
#~ msgid ""
|
1677 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1678 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:08-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:10-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 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Feliratkozás kezelése"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Hozzászólás Űrlap"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Feliratkozás Kezelés Oldal"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Értesítések"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Beállítások"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "Падтрымка"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr ""
|
48 |
|
342 |
msgid "Sorry, no subscriptions match your search criteria."
|
343 |
msgstr "Bocsi, nincs a keresésnek megfelelő feliratkozás."
|
344 |
|
345 |
+
#: options/panel10.php:41
|
346 |
msgid "The log file has been successfully deleted."
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: options/panel10.php:46
|
350 |
msgid "Can't delete the log file, check the file permissions."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: options/panel10.php:52
|
354 |
msgid "The log file does not exists."
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: options/panel10.php:66 options/panel10.php:110
|
358 |
msgid "Enable Log Information"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: options/panel10.php:72 options/panel10.php:119
|
362 |
msgid "Enable Auto clean log data"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
366 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
367 |
msgid "Your settings have been successfully updated."
|
368 |
msgstr "Beállításaid sikeresen frissítve."
|
369 |
|
370 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
371 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
372 |
msgid "There was an error updating the following fields:"
|
373 |
msgstr "Hiba volt az alábbi mezők frissítésekor."
|
374 |
|
375 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
376 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
377 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
378 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
379 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
380 |
+
#: options/panel5.php:210 options/panel5.php:219
|
381 |
msgid "Yes"
|
382 |
msgstr "Igen"
|
383 |
|
384 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
385 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
386 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
387 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
388 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
389 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
390 |
msgid "No"
|
391 |
msgstr "Nem"
|
392 |
|
393 |
+
#: options/panel10.php:114
|
394 |
msgid ""
|
395 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
396 |
"purposes."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: options/panel10.php:125
|
400 |
msgid "Hourly"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: options/panel10.php:126
|
404 |
msgid "Twice Daily"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: options/panel10.php:127
|
408 |
msgid "Daily"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: options/panel10.php:129
|
412 |
msgid "If enabled, StCR will auto clean your information every day."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: options/panel10.php:134
|
416 |
msgid "Clean Up Log Archive"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: options/panel10.php:138
|
420 |
msgid ""
|
421 |
"If you want to clean up the log archive please click the following button"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: options/panel10.php:140
|
425 |
msgid "Clean"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: options/panel10.php:147 options/panel10.php:150
|
429 |
msgid "System Information"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
433 |
+
#: options/panel4.php:283 options/panel5.php:265
|
434 |
msgid "Save Changes"
|
435 |
msgstr "Változások Mentése"
|
436 |
|
781 |
#: options/panel4.php:128
|
782 |
msgid ""
|
783 |
"This will be use when the user click reply on their email agent. If not set "
|
784 |
+
"it will be the same as the Sender email address."
|
785 |
msgstr ""
|
786 |
|
787 |
#: options/panel4.php:147
|
797 |
|
798 |
#: options/panel4.php:171
|
799 |
msgid ""
|
800 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
801 |
+
"all the content and save the options.</strong></p>"
|
802 |
msgstr ""
|
803 |
|
804 |
#: options/panel4.php:184
|
845 |
"[blog_name]"
|
846 |
msgstr "A megerősítő e-mail tárgya. Használható címkék: [post_title]"
|
847 |
|
848 |
+
#: options/panel5.php:38
|
849 |
+
#, fuzzy
|
850 |
+
#| msgid "Your settings have been successfully updated."
|
851 |
+
msgid "Your settings have been successfully reset."
|
852 |
+
msgstr "Beállításaid sikeresen frissítve."
|
853 |
+
|
854 |
+
#: options/panel5.php:40
|
855 |
+
#, fuzzy
|
856 |
+
#| msgid "There was an error updating the following fields:"
|
857 |
+
msgid "There was an error deleting the options:"
|
858 |
+
msgstr "Hiba volt az alábbi mezők frissítésekor."
|
859 |
+
|
860 |
+
#: options/panel5.php:48 options/panel5.php:108
|
861 |
msgid "Show StCR checkbox / dropdown"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: options/panel5.php:51
|
865 |
msgid "Safetly Uninstall"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: options/panel5.php:54 options/panel5.php:125
|
869 |
msgid "Autopurge requests"
|
870 |
msgstr "Kérések automatikus ürítése"
|
871 |
|
872 |
+
#: options/panel5.php:57 options/panel5.php:143
|
873 |
msgid "Enable double check"
|
874 |
msgstr "Dupla ellenőrzés bekapcsolása"
|
875 |
|
876 |
+
#: options/panel5.php:60 options/panel5.php:134
|
877 |
msgid "StCR Position"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: options/panel5.php:63 options/panel5.php:151
|
881 |
msgid "Subscribe authors"
|
882 |
msgstr "Subscribe authors"
|
883 |
|
884 |
+
#: options/panel5.php:66 options/panel5.php:161
|
885 |
msgid "Enable HTML emails"
|
886 |
msgstr "HTML e-mailek bekapcsolása"
|
887 |
|
888 |
+
#: options/panel5.php:69
|
889 |
msgid "HTMLify Links in HTML emails"
|
890 |
msgstr "HTML linkekké alakítás a HTML e-mailekben"
|
891 |
|
892 |
+
#: options/panel5.php:72
|
893 |
msgid "Send trackbacks"
|
894 |
msgstr "Trackback küldés"
|
895 |
|
896 |
+
#: options/panel5.php:75
|
897 |
msgid "Notify admin"
|
898 |
msgstr "Admin értesítés"
|
899 |
|
900 |
+
#: options/panel5.php:78 options/panel5.php:199
|
901 |
msgid "Let admin subscribe"
|
902 |
msgstr "Az admin is feliratkozhat"
|
903 |
|
904 |
+
#: options/panel5.php:81 options/panel5.php:208
|
905 |
msgid "BCC admin on Notifications"
|
906 |
msgstr "Titkos másolat az adminisztrátornak az értesítésekről"
|
907 |
|
908 |
+
#: options/panel5.php:84 options/panel5.php:217
|
909 |
+
msgid "Enable Font Awesome"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
913 |
+
msgid "Reset All Options"
|
914 |
+
msgstr ""
|
915 |
+
|
916 |
+
#: options/panel5.php:112
|
917 |
msgid ""
|
918 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
919 |
"You should leave it to Yes always. "
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: options/panel5.php:117
|
923 |
msgid "Safely Uninstall"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: options/panel5.php:121
|
927 |
msgid ""
|
928 |
"This option will allow you to delete the plugin with WordPress without "
|
929 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
930 |
msgstr ""
|
931 |
|
932 |
+
#: options/panel5.php:128
|
933 |
msgid "days"
|
934 |
msgstr "nap"
|
935 |
|
936 |
+
#: options/panel5.php:129
|
937 |
msgid ""
|
938 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
939 |
"this feature."
|
941 |
"Meg nem erősített feliratkozások törlése X nap után. Nulla érték esetén "
|
942 |
"nincs törlés."
|
943 |
|
944 |
+
#: options/panel5.php:138
|
945 |
msgid ""
|
946 |
"If this option is enable the subscription box will be above the submit "
|
947 |
"button in your comment form. Use this when your theme is outdated and using "
|
948 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: options/panel5.php:147
|
952 |
msgid ""
|
953 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
954 |
"misuse)."
|
955 |
msgstr ""
|
956 |
"Megerősítő email küldés a feliratkozáshoz (helytelen email cím elkerüléshez)."
|
957 |
|
958 |
+
#: options/panel5.php:156
|
959 |
msgid ""
|
960 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
961 |
msgstr ""
|
962 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
963 |
|
964 |
+
#: options/panel5.php:165
|
965 |
msgid ""
|
966 |
"If enabled, will send email messages with content-type = text/html instead "
|
967 |
"of text/plain"
|
969 |
"Bekapcsolva az e-mail értesítéseknél a content-type = text/html lesz text/"
|
970 |
"plain helyett"
|
971 |
|
972 |
+
#: options/panel5.php:170
|
973 |
msgid "HTMLify links in emails"
|
974 |
msgstr "HTML linkekké alakítás az e-mailekben"
|
975 |
|
976 |
+
#: options/panel5.php:175
|
977 |
msgid ""
|
978 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
979 |
"</a></code> (only when HTML emails enabled)."
|
982 |
"<code><a href=\"\"></a></code> (csak ha a HTML e-mail be van "
|
983 |
"kapcsolva)."
|
984 |
|
985 |
+
#: options/panel5.php:180
|
986 |
msgid "Process trackbacks"
|
987 |
msgstr "Trackback-ek feldolgozása"
|
988 |
|
989 |
+
#: options/panel5.php:184
|
990 |
msgid ""
|
991 |
"Notify users when a new trackback or pingback is added to the discussion."
|
992 |
msgstr ""
|
993 |
"Felhasználó értesítése, ha új trackback vagy pingback érkezik egy "
|
994 |
"beszélgetéshez."
|
995 |
|
996 |
+
#: options/panel5.php:189
|
997 |
msgid "Track all subscriptions"
|
998 |
msgstr "Minden feliratkozás követése"
|
999 |
|
1000 |
+
#: options/panel5.php:194
|
1001 |
msgid "Notify the administrator when users subscribe without commenting."
|
1002 |
msgstr ""
|
1003 |
"Adminisztrátori értesítés, ha valaki hozzászólás nélkül iratkozik fel "
|
1004 |
"értesítésre."
|
1005 |
|
1006 |
+
#: options/panel5.php:203
|
1007 |
msgid "Let the administrator subscribe to comments when logged in."
|
1008 |
msgstr "Az adminisztrátor bejelentkezve fel tudjon iratkoznu."
|
1009 |
|
1010 |
+
#: options/panel5.php:212
|
1011 |
msgid "Send a copy of all Notifications to the administrator."
|
1012 |
msgstr "Másolat küldés minden értesítésről az adminisztrátornak."
|
1013 |
|
1014 |
+
#: options/panel5.php:221
|
1015 |
+
msgid ""
|
1016 |
+
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1017 |
+
"you theme already add this into your site."
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: options/panel5.php:226
|
1021 |
msgid "StCR Unique Key"
|
1022 |
msgstr "StCR Unique Key"
|
1023 |
|
1024 |
+
#: options/panel5.php:231
|
1025 |
msgid "This Unique Key is not set, please click the following button to "
|
1026 |
msgstr "Nincs Unique Key (egyedi kulcs) beállítva. Kattints a következő gombra"
|
1027 |
|
1028 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1029 |
msgid "Generate"
|
1030 |
msgstr "Generálás"
|
1031 |
|
1032 |
+
#: options/panel5.php:243
|
1033 |
msgid ""
|
1034 |
"This Unique Key will be use to send the notification to your subscribers "
|
1035 |
"with more security."
|
1038 |
"nagyobb\n"
|
1039 |
"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tbiztonsággal menjenek ki."
|
1040 |
|
1041 |
+
#: options/panel5.php:256
|
1042 |
+
msgid ""
|
1043 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1044 |
+
"with caution."
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: options/panel5.php:258
|
1048 |
+
msgid "Yes, Delete Options including subscriptions."
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: options/panel5.php:259
|
1052 |
+
msgid "No, Only delete the StCR Options."
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1056 |
+
msgid ""
|
1057 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1058 |
+
"hidden=\"true\"></i>"
|
1059 |
+
msgstr ""
|
1060 |
|
1061 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1062 |
+
#, fuzzy
|
1063 |
+
#| msgid ""
|
1064 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1065 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1066 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1067 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1068 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1069 |
msgid ""
|
1070 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1071 |
"consider supporting the author if this plugin made your web site better, "
|
1072 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1073 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1074 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1075 |
"strong>, and to buy some food for my hungry family."
|
1076 |
msgstr ""
|
1080 |
"beérkező támogatást a Subscribe to Comments Reloaded plugin "
|
1081 |
"továbbfejlesztésére, no meg egy kis ételre fordítok - éhes családom számára."
|
1082 |
|
1083 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1084 |
+
#, fuzzy
|
1085 |
+
#| msgid "You can help"
|
1086 |
+
msgid "You can still help"
|
1087 |
+
msgstr "Segíthetsz"
|
1088 |
|
1089 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1090 |
+
#, fuzzy
|
1091 |
+
#| msgid ""
|
1092 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1093 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1094 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1095 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1096 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1097 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1098 |
+
msgid ""
|
1099 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1100 |
+
"Please let your readers know what makes your blog better. You can also "
|
1101 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1102 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1103 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1104 |
msgstr ""
|
1105 |
"Ha nem akarsz pénzzel támogatni, kérlek írj a plugin-ról, és helyezd el a "
|
1106 |
"plugin linkjét benne. Írd meg, hogyan tette blogodat jobbá ez a megoldás. "
|
1108 |
"fejlesztési ötleteket, stb. Bármit is teszel, köszönöm hogy az én plugin-"
|
1109 |
"emet használod!"
|
1110 |
|
1111 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1112 |
msgid "Subscribe to the Beta testers"
|
1113 |
msgstr "Subscribe authors"
|
1114 |
|
1115 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1116 |
msgid ""
|
1117 |
"Before a new Update we release a Beta version so that our current users can "
|
1118 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1120 |
"a>"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1124 |
msgid "Vote and show your appreciation"
|
1125 |
msgstr "Szavazz és mutasd meg, ha tetszik"
|
1126 |
|
1127 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1128 |
msgid ""
|
1129 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1130 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1134 |
"oldalodon. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1135 |
"comments-reloaded/\">Értékeld</a> a Plugin oldalon."
|
1136 |
|
1137 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1138 |
msgid "Did you find a Bug on the plugin?"
|
1139 |
msgstr "Hibát találtál a plugin-ben?"
|
1140 |
|
1141 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1142 |
msgid ""
|
1143 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1144 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1234 |
msgid "You have request to manage another email address and this is forbidden."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1238 |
msgid "StCR System"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1242 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1243 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1244 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1245 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1246 |
msgid "You do not have sufficient permissions to access this page."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: utils/stcr_manage.php:726
|
1250 |
msgid "Subscriptions"
|
1251 |
msgstr "Feliratkozás"
|
1252 |
|
1253 |
+
#: utils/stcr_manage.php:782
|
1254 |
msgid ""
|
1255 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1256 |
msgstr ""
|
1257 |
"Segítségre van szükséged, a Subscribe to Comments Reloaded használatához? "
|
1258 |
"Látogasson el a hivatalos"
|
1259 |
|
1260 |
+
#: utils/stcr_manage.php:782
|
1261 |
msgid "support forum"
|
1262 |
msgstr "támogatói fórumra"
|
1263 |
|
1264 |
+
#: utils/stcr_manage.php:783
|
1265 |
msgid "Feeling generous?"
|
1266 |
msgstr "Nagylelkű napod van?"
|
1267 |
|
1268 |
+
#: utils/stcr_manage.php:783
|
1269 |
msgid "Donate a few bucks!"
|
1270 |
msgstr "Adakozz egy pár dolcsit!"
|
1271 |
|
1272 |
+
#: utils/stcr_upgrade.php:72
|
1273 |
msgid "Important Notice"
|
1274 |
msgstr "Fontos Közlendő"
|
1275 |
|
1276 |
+
#: utils/stcr_upgrade.php:120
|
1277 |
msgid ""
|
1278 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1279 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1281 |
"src=\""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: utils/stcr_upgrade.php:175
|
1285 |
msgid ""
|
1286 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1287 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1291 |
"találtunk és importáltunk is őket a <strong>Subscribe to Comments Reloaded</"
|
1292 |
"strong>-be."
|
1293 |
|
1294 |
+
#: utils/stcr_upgrade.php:175
|
1295 |
msgid ""
|
1296 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1297 |
"Comments to prevent confusion between the two plugins."
|
1299 |
"Javasoljuk, hogy most <strong>kapcsold ki</strong> a Subscribe to Comments-"
|
1300 |
"et, hogy megelőzzük a két plugin összeakadását."
|
1301 |
|
1302 |
+
#: utils/stcr_upgrade.php:176
|
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 "
|
1310 |
"az adatvesztés megelőzése érdekében csak egyetlen importálási folyamatot "
|
1311 |
"alkalmazunk."
|
1312 |
|
1313 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1314 |
+
#: utils/stcr_upgrade.php:400
|
1315 |
msgid ""
|
1316 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1317 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1319 |
"\"stcr-loading-animation\" src=\""
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: utils/stcr_upgrade.php:250
|
1323 |
msgid ""
|
1324 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1325 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1329 |
"adatokat találtunk és importáltunk is őket a <strong>Subscribe to Comments "
|
1330 |
"Reloaded</strong>-be."
|
1331 |
|
1332 |
+
#: utils/stcr_upgrade.php:250
|
1333 |
msgid ""
|
1334 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1335 |
"Notification to prevent confusion between the two plugins."
|
1337 |
"Javasoljuk, hogy most <strong>kapcsold ki</strong> a Comment Reply "
|
1338 |
"Notification-t, hogy megelőzzük a két plugin összeakadását."
|
1339 |
|
1340 |
+
#: utils/stcr_upgrade.php:397
|
1341 |
msgid ""
|
1342 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1343 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1348 |
"adatokat és beállításokat találtunk és importáltunk is őket a "
|
1349 |
"<strong>Subscribe to Comments Reloaded</strong>-be."
|
1350 |
|
1351 |
+
#: utils/stcr_upgrade.php:397
|
1352 |
msgid ""
|
1353 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1354 |
"Subscriptions to prevent confusion between the two plugins."
|
1356 |
"Javasoljuk, hogy most <strong>kapcsold ki</strong> a WP Comment "
|
1357 |
"Subscriptions-t, hogy megelőzzük a két plugin összeakadását."
|
1358 |
|
1359 |
+
#: utils/stcr_upgrade.php:398
|
1360 |
msgid ""
|
1361 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1362 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1369 |
"adatvesztés megelőzése érdekében csak egyetlen importálási folyamatot "
|
1370 |
"alkalmazunk."
|
1371 |
|
1372 |
+
#: utils/stcr_upgrade.php:399
|
1373 |
msgid ""
|
1374 |
"<strong>Note:</strong> If you were previously using the "
|
1375 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1383 |
"<code>subscribe_reloaded_show()</code> funkcióra és a <code>[subscribe-url]</"
|
1384 |
"code> shortcode-ra."
|
1385 |
|
1386 |
+
#: utils/stcr_upgrade.php:413
|
1387 |
msgid ""
|
1388 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1392 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1393 |
msgid ""
|
1394 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1395 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: utils/stcr_upgrade.php:415
|
1399 |
msgid ""
|
1400 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1401 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1402 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1403 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1404 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1405 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: utils/stcr_upgrade.php:417
|
1409 |
msgid ""
|
1410 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1411 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1413 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: utils/stcr_upgrade.php:428
|
1417 |
msgid ""
|
1418 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1419 |
"160106."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: utils/stcr_upgrade.php:429
|
1423 |
msgid ""
|
1424 |
"This version includes many changes and fixes to improve your experience with "
|
1425 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1426 |
"email templates, Subscription Checkbox position, and more!"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1430 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1431 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1432 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1433 |
msgid ""
|
1434 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1435 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1437 |
"class=\"stcr-loading-animation\" src=\""
|
1438 |
msgstr ""
|
1439 |
|
1440 |
+
#: utils/stcr_upgrade.php:443
|
1441 |
msgid ""
|
1442 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1443 |
"160115."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: utils/stcr_upgrade.php:444
|
1447 |
msgid ""
|
1448 |
"This version includes fixes to broken links while managing your subscriptions"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: utils/stcr_upgrade.php:458
|
1452 |
msgid ""
|
1453 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1454 |
"160831"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1458 |
msgid "This version includes fixes to many bugs and also new features, "
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1462 |
msgid ""
|
1463 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1464 |
"address. This will help the subscribers to use the Reply option in their "
|
1465 |
"email agents."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1469 |
msgid ""
|
1470 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1471 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1475 |
msgid ""
|
1476 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1477 |
"without loosing your subscriptions. You can use this option also for reset "
|
1478 |
"all the settings, see the FAQ."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1482 |
msgid ""
|
1483 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1484 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1485 |
"Post Type."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1489 |
msgid ""
|
1490 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1491 |
"options to and the management link only by email and not to display it on "
|
1492 |
"the request link page."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: utils/stcr_upgrade.php:480
|
1496 |
msgid ""
|
1497 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1498 |
"160902"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: utils/stcr_upgrade.php:483
|
1502 |
msgid ""
|
1503 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1504 |
"previous 160831 version."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1508 |
msgid "Settings"
|
1509 |
msgstr "Beállítások"
|
1510 |
|
1511 |
+
#: utils/stcr_upgrade.php:504
|
1512 |
msgid ""
|
1513 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1514 |
"160915"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1518 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1519 |
msgid "This version includes fixes and improvements, "
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: utils/stcr_upgrade.php:508
|
1523 |
msgid ""
|
1524 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1525 |
"dropdown."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: utils/stcr_upgrade.php:509
|
1529 |
msgid ""
|
1530 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1534 |
+
#: utils/stcr_upgrade.php:576
|
1535 |
msgid "Log Settings"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1539 |
+
#: utils/stcr_upgrade.php:580
|
1540 |
msgid ""
|
1541 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: utils/stcr_upgrade.php:529
|
1545 |
msgid ""
|
1546 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1547 |
"enable."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: utils/stcr_upgrade.php:530
|
1551 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1555 |
+
#: utils/stcr_upgrade.php:590
|
1556 |
msgid "The support of this plugin is given thanks to your donations."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: utils/stcr_upgrade.php:536
|
1560 |
msgid ""
|
1561 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1562 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1566 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
+
#: utils/stcr_upgrade.php:557
|
1570 |
+
msgid ""
|
1571 |
+
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1572 |
+
"installation regarding a database table creation."
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: utils/stcr_upgrade.php:558
|
1576 |
+
msgid ""
|
1577 |
+
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1578 |
+
"Awesome."
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: utils/stcr_upgrade.php:563
|
1582 |
+
msgid ""
|
1583 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1584 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1585 |
+
"https://www.paypal.com/cgi-bin/webscr?"
|
1586 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1587 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1588 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. Thank you "
|
1589 |
+
"for the users that have supported the plugin development."
|
1590 |
+
msgstr ""
|
1591 |
+
|
1592 |
+
#: utils/stcr_upgrade.php:584
|
1593 |
+
msgid ""
|
1594 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1595 |
+
"issues."
|
1596 |
+
msgstr ""
|
1597 |
+
|
1598 |
+
#: utils/stcr_upgrade.php:585
|
1599 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1600 |
+
msgstr ""
|
1601 |
+
|
1602 |
+
#: utils/stcr_upgrade.php:586
|
1603 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1604 |
+
msgstr ""
|
1605 |
+
|
1606 |
+
#: utils/stcr_upgrade.php:591
|
1607 |
+
msgid ""
|
1608 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1609 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1610 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1611 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1612 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1613 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1614 |
+
"Thanks for all the users that have supported the plugin development."
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: utils/stcr_utils.php:196
|
1618 |
+
msgid ""
|
1619 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1620 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1621 |
+
msgstr ""
|
1622 |
+
"A hozzászólásokról email-ben kérek értesítést. <a "
|
1623 |
+
"href='[subscribe_link]'>Feliratkozás</a> hozzászólás nélkül is lehetséges."
|
1624 |
+
|
1625 |
+
#: utils/stcr_utils.php:197
|
1626 |
+
msgid ""
|
1627 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1628 |
+
"subscriptions."
|
1629 |
+
msgstr ""
|
1630 |
+
"Feliratkozva ehhez a bejegyzéshez. <a href='[manager_link]'Saját "
|
1631 |
+
"feliratkozásaink kezelése</a>."
|
1632 |
+
|
1633 |
+
#: utils/stcr_utils.php:198
|
1634 |
+
msgid ""
|
1635 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1636 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1637 |
+
msgstr ""
|
1638 |
+
"A feliratkozási szándékot meg kell erősíteni: <a "
|
1639 |
+
"href='[manager_link]'>Feliratkozás kezelése</a>."
|
1640 |
+
|
1641 |
+
#: utils/stcr_utils.php:199
|
1642 |
+
msgid ""
|
1643 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1644 |
+
msgstr ""
|
1645 |
+
"<a href='[manager_link]'>Saját feliratkozásunk kezelése</a> ennél a "
|
1646 |
+
"bejegyzésnél."
|
1647 |
+
|
1648 |
+
#: utils/stcr_utils.php:205
|
1649 |
+
msgid ""
|
1650 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1651 |
+
"will send you a message containing the link to access your personal "
|
1652 |
+
"management page."
|
1653 |
+
msgstr ""
|
1654 |
+
"A feliratkozások kezeléséhez alul meg kell adni az email címet, amelyre "
|
1655 |
+
"elküldjük azt a hivatkozást, amellyel a saját kezelési oldalra lehet belépni."
|
1656 |
+
|
1657 |
+
#: utils/stcr_utils.php:206
|
1658 |
+
msgid ""
|
1659 |
+
"Thank you for using our subscription service. Your request has been "
|
1660 |
+
"completed, and you should receive an email with the management link in a few "
|
1661 |
+
"minutes."
|
1662 |
+
msgstr ""
|
1663 |
+
"Köszönjük, hogy használod az értesítőket. Néhány percen belül e-mailben "
|
1664 |
+
"megkapot a beállításokhoz szükséges linked."
|
1665 |
+
|
1666 |
+
#: utils/stcr_utils.php:207
|
1667 |
+
msgid ""
|
1668 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1669 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1670 |
+
"form here below and you're all set."
|
1671 |
+
msgstr ""
|
1672 |
+
"<strong>[post_title]</strong> című bejegyzésünkhöz történő hozzászólásokat "
|
1673 |
+
"úgy is figyelemmel lehet kísérni, ha az olvasó nem szól hozzá a témához. "
|
1674 |
+
"Csak meg kell adni a saját email címet az alul található mezőbe, és máris "
|
1675 |
+
"minden készen áll."
|
1676 |
+
|
1677 |
+
#: utils/stcr_utils.php:208
|
1678 |
+
msgid ""
|
1679 |
+
"Thank you for using our subscription service. Your request has been "
|
1680 |
+
"completed. You will receive a notification email every time a new comment to "
|
1681 |
+
"this article is approved and posted by the administrator."
|
1682 |
+
msgstr ""
|
1683 |
+
"<strong>Köszönjük, hogy használtad a feliratkozás szolgáltatásunkat!</"
|
1684 |
+
"strong><br /> A kérést rögzítettük; minden egyes alkalommal küldünk egy "
|
1685 |
+
"értesítést email címedre, amikor a bejegyzéshez új hozzászólás érkezik."
|
1686 |
+
|
1687 |
+
#: utils/stcr_utils.php:209
|
1688 |
+
msgid ""
|
1689 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1690 |
+
"request, please check your email for the verification message and follow the "
|
1691 |
+
"instructions."
|
1692 |
+
msgstr ""
|
1693 |
+
"Köszönjük, hogy használtad a feliratkozás szolgáltatásunkat! A kérésed "
|
1694 |
+
"megerősítéséhez, kérjük ellenőrizd e-mailcímed, és kövesd az instrukciókat."
|
1695 |
+
|
1696 |
+
#: utils/stcr_utils.php:210
|
1697 |
+
msgid ""
|
1698 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1699 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1700 |
+
msgstr ""
|
1701 |
+
"Az értesítések kikapcsolásához, vagy törléséhez válaszd ki a kívánt "
|
1702 |
+
"értesítést, majd a megfelelő állapotot és kattints az Értesítés frissítése "
|
1703 |
+
"gombra."
|
1704 |
+
|
1705 |
+
#: utils/stcr_utils.php:211
|
1706 |
+
msgid ""
|
1707 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1708 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1709 |
+
"You are currently subscribed to:"
|
1710 |
+
msgstr ""
|
1711 |
+
"Az értesítések kikapcsolásához, megszűntetéséhez, válassz jelölőnégyzetet és "
|
1712 |
+
"a lista végén kattints a megfelelő gombra. Jelenleg ezek az értesítéseid:"
|
1713 |
+
|
1714 |
+
#: utils/stcr_utils.php:215
|
1715 |
+
msgid "There is a new comment to [post_title]"
|
1716 |
+
msgstr "Új hozzászólás ehhez [post_title]"
|
1717 |
+
|
1718 |
+
#: utils/stcr_utils.php:216
|
1719 |
+
msgid ""
|
1720 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1721 |
+
"\n"
|
1722 |
+
"<hr />\n"
|
1723 |
+
"<strong>Comment link:</strong> <a href="
|
1724 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1725 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1726 |
+
"\n"
|
1727 |
+
"<strong>Comment:</strong>\n"
|
1728 |
+
"[comment_content]\n"
|
1729 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1730 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1731 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1732 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: utils/stcr_utils.php:217
|
1736 |
+
msgid "Please confirm your subscription to [post_title]"
|
1737 |
+
msgstr "Kérlek, erősítsd meg feliratkozásod erre [post_title]"
|
1738 |
+
|
1739 |
+
#: utils/stcr_utils.php:218
|
1740 |
+
#, fuzzy
|
1741 |
+
#| msgid ""
|
1742 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1743 |
+
#| "[post_permalink]\n"
|
1744 |
+
#| "\n"
|
1745 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1746 |
+
#| "[confirm_link]"
|
1747 |
+
msgid ""
|
1748 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1749 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1750 |
+
"\n"
|
1751 |
+
"Please confirm your request by clicking on this link:\n"
|
1752 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1753 |
+
msgstr ""
|
1754 |
+
"Azt kérted, értesítsünk, amikor új hozzászólás érkezik ehhez:\n"
|
1755 |
+
"[post_permalink]\n"
|
1756 |
+
"\n"
|
1757 |
+
"Kérlek, erősítsd meg a feliratkozást az alábbi linkre kattintva:\n"
|
1758 |
+
"[confirm_link]"
|
1759 |
+
|
1760 |
+
#: utils/stcr_utils.php:219
|
1761 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1762 |
+
msgstr "Ártesítés beállítások - [blog_name]"
|
1763 |
+
|
1764 |
+
#: utils/stcr_utils.php:220
|
1765 |
+
msgid ""
|
1766 |
+
"You have requested to manage your subscriptions to the articles on "
|
1767 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: utils/stcr_utils.php:221
|
1771 |
+
#, fuzzy
|
1772 |
+
#| msgid ""
|
1773 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1774 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1775 |
+
#| "[manager_link]"
|
1776 |
+
msgid ""
|
1777 |
+
"You have requested to manage your subscriptions to the articles on "
|
1778 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1779 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1780 |
+
msgstr ""
|
1781 |
+
"A [blog_name] oldal értesítési beállításainak elérése:\n"
|
1782 |
+
"[manager_link]"
|
1783 |
+
|
1784 |
+
#: utils/stcr_utils.php:300
|
1785 |
msgid "StCR Notification"
|
1786 |
msgstr "Értesítések"
|
1787 |
|
1793 |
msgid "All"
|
1794 |
msgstr "Mindenre"
|
1795 |
|
1796 |
+
#~ msgid "Support the developers"
|
1797 |
+
#~ msgstr "Támogasd a fejlesztőt"
|
1798 |
+
|
1799 |
+
#~ msgid "Don't want to donate? You can still help"
|
1800 |
+
#~ msgstr "Nem akarsz adakozni? Akkor is segíthetsz"
|
1801 |
+
|
1802 |
+
#~ msgid ""
|
1803 |
+
#~ "There is a new comment to [post_title].\n"
|
1804 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1805 |
+
#~ "Author: [comment_author]\n"
|
1806 |
+
#~ "Comment:\n"
|
1807 |
+
#~ "[comment_content]\n"
|
1808 |
+
#~ "Permalink: [post_permalink]\n"
|
1809 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1810 |
+
#~ msgstr ""
|
1811 |
+
#~ "Új hozzászólás érkezett ehhez: [post_title].\n"
|
1812 |
+
#~ "Hozzászólás Link: [comment_permalink]\n"
|
1813 |
+
#~ "Írta: [comment_author]\n"
|
1814 |
+
#~ "Hozzászólás:\n"
|
1815 |
+
#~ "[comment_content]\n"
|
1816 |
+
#~ "Permalink: [post_permalink]\n"
|
1817 |
+
#~ "Értesítési beállítások: [manager_link]"
|
1818 |
+
|
1819 |
#~ msgid ""
|
1820 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1821 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: id_ID\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Atur Langganan"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Formulir Komentar"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Halaman Pengaturan"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Notifikasi"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Pilihan"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Bantu kami"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr "forum bantuan"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr ""
|
52 |
|
@@ -347,95 +343,95 @@ msgstr "Perbaharui langganan"
|
|
347 |
msgid "Sorry, no subscriptions match your search criteria."
|
348 |
msgstr "Maaf, tidak ada langganan yang cocok dengan kriteria pencarian Anda."
|
349 |
|
350 |
-
#: options/panel10.php:
|
351 |
msgid "The log file has been successfully deleted."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: options/panel10.php:
|
355 |
msgid "Can't delete the log file, check the file permissions."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: options/panel10.php:
|
359 |
msgid "The log file does not exists."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: options/panel10.php:
|
363 |
msgid "Enable Log Information"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: options/panel10.php:
|
367 |
msgid "Enable Auto clean log data"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: options/panel10.php:
|
371 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
372 |
msgid "Your settings have been successfully updated."
|
373 |
msgstr "Pengaturan Anda telah diperbarui."
|
374 |
|
375 |
-
#: options/panel10.php:
|
376 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
377 |
msgid "There was an error updating the following fields:"
|
378 |
msgstr "Terdapat galat saat memperbaharui ruas berikut:"
|
379 |
|
380 |
-
#: options/panel10.php:
|
381 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
msgid "Yes"
|
387 |
msgstr "Ya"
|
388 |
|
389 |
-
#: options/panel10.php:
|
390 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
msgid "No"
|
396 |
msgstr "Tidak"
|
397 |
|
398 |
-
#: options/panel10.php:
|
399 |
msgid ""
|
400 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
401 |
"purposes."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: options/panel10.php:
|
405 |
msgid "Hourly"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: options/panel10.php:
|
409 |
msgid "Twice Daily"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: options/panel10.php:
|
413 |
msgid "Daily"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: options/panel10.php:
|
417 |
msgid "If enabled, StCR will auto clean your information every day."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: options/panel10.php:
|
421 |
msgid "Clean Up Log Archive"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: options/panel10.php:
|
425 |
msgid ""
|
426 |
"If you want to clean up the log archive please click the following button"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: options/panel10.php:
|
430 |
msgid "Clean"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: options/panel10.php:
|
434 |
msgid "System Information"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: options/panel10.php:
|
438 |
-
#: options/panel4.php:283 options/panel5.php:
|
439 |
msgid "Save Changes"
|
440 |
msgstr "Simpan Perubahan"
|
441 |
|
@@ -786,7 +782,7 @@ msgstr "Balasan saja"
|
|
786 |
#: options/panel4.php:128
|
787 |
msgid ""
|
788 |
"This will be use when the user click reply on their email agent. If not set "
|
789 |
-
"will be the same as the Sender email address."
|
790 |
msgstr ""
|
791 |
|
792 |
#: options/panel4.php:147
|
@@ -802,8 +798,8 @@ msgstr ""
|
|
802 |
|
803 |
#: options/panel4.php:171
|
804 |
msgid ""
|
805 |
-
"<p><strong>Note: To get a default template clear
|
806 |
-
"the options.</strong></p>"
|
807 |
msgstr ""
|
808 |
|
809 |
#: options/panel4.php:184
|
@@ -850,79 +846,95 @@ msgid ""
|
|
850 |
"[blog_name]"
|
851 |
msgstr "Subjek pada email konfirmasi. Tag yang diijinkan: [post_title]"
|
852 |
|
853 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
msgid "Show StCR checkbox / dropdown"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: options/panel5.php:
|
858 |
msgid "Safetly Uninstall"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: options/panel5.php:
|
862 |
msgid "Autopurge requests"
|
863 |
msgstr "Permintaan pembersihan-otomatis"
|
864 |
|
865 |
-
#: options/panel5.php:
|
866 |
msgid "Enable double check"
|
867 |
msgstr "Nyalakan konfirmasi ganda"
|
868 |
|
869 |
-
#: options/panel5.php:
|
870 |
msgid "StCR Position"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: options/panel5.php:
|
874 |
msgid "Subscribe authors"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: options/panel5.php:
|
878 |
msgid "Enable HTML emails"
|
879 |
msgstr "Nyalakan email HTML"
|
880 |
|
881 |
-
#: options/panel5.php:
|
882 |
msgid "HTMLify Links in HTML emails"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: options/panel5.php:
|
886 |
msgid "Send trackbacks"
|
887 |
msgstr "Kirim taut balik"
|
888 |
|
889 |
-
#: options/panel5.php:
|
890 |
msgid "Notify admin"
|
891 |
msgstr "Beritahu admin"
|
892 |
|
893 |
-
#: options/panel5.php:
|
894 |
msgid "Let admin subscribe"
|
895 |
msgstr "Ijinkan admin berlangganan"
|
896 |
|
897 |
-
#: options/panel5.php:
|
898 |
msgid "BCC admin on Notifications"
|
899 |
msgstr "Notifikasi"
|
900 |
|
901 |
-
#: options/panel5.php:
|
902 |
msgid "Enable Font Awesome"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
906 |
msgid ""
|
907 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
908 |
"You should leave it to Yes always. "
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: options/panel5.php:
|
912 |
msgid "Safely Uninstall"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: options/panel5.php:
|
916 |
msgid ""
|
917 |
"This option will allow you to delete the plugin with WordPress without "
|
918 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: options/panel5.php:
|
922 |
msgid "days"
|
923 |
msgstr "hari"
|
924 |
|
925 |
-
#: options/panel5.php:
|
926 |
msgid ""
|
927 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
928 |
"this feature."
|
@@ -930,14 +942,14 @@ msgstr ""
|
|
930 |
"Hapus langganan yang ditunda (tanpa konfirmasi) setelah X hari. Masukkan Nol "
|
931 |
"untuk mematikan fitur ini."
|
932 |
|
933 |
-
#: options/panel5.php:
|
934 |
msgid ""
|
935 |
"If this option is enable the subscription box will be above the submit "
|
936 |
"button in your comment form. Use this when your theme is outdated and using "
|
937 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: options/panel5.php:
|
941 |
msgid ""
|
942 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
943 |
"misuse)."
|
@@ -945,12 +957,12 @@ msgstr ""
|
|
945 |
"Kirim sebuah email notifikasi untuk konfirmasi berlangganan (mencegah "
|
946 |
"penyalahgunaan alamat)."
|
947 |
|
948 |
-
#: options/panel5.php:
|
949 |
msgid ""
|
950 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: options/panel5.php:
|
954 |
msgid ""
|
955 |
"If enabled, will send email messages with content-type = text/html instead "
|
956 |
"of text/plain"
|
@@ -958,78 +970,102 @@ msgstr ""
|
|
958 |
"Jika dimungkinkan, akan mengirim pesan email dengan content-type = text/html "
|
959 |
"daripada text/plain"
|
960 |
|
961 |
-
#: options/panel5.php:
|
962 |
msgid "HTMLify links in emails"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: options/panel5.php:
|
966 |
msgid ""
|
967 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
968 |
"</a></code> (only when HTML emails enabled)."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: options/panel5.php:
|
972 |
msgid "Process trackbacks"
|
973 |
msgstr "Proses taut balik"
|
974 |
|
975 |
-
#: options/panel5.php:
|
976 |
msgid ""
|
977 |
"Notify users when a new trackback or pingback is added to the discussion."
|
978 |
msgstr ""
|
979 |
"Beritahu pengguna ketika sebuah tautbalik atau pingback ditambahkan dalam "
|
980 |
"diskusi."
|
981 |
|
982 |
-
#: options/panel5.php:
|
983 |
msgid "Track all subscriptions"
|
984 |
msgstr "Telusuri semua langganan"
|
985 |
|
986 |
-
#: options/panel5.php:
|
987 |
msgid "Notify the administrator when users subscribe without commenting."
|
988 |
msgstr ""
|
989 |
"Beritahu admin ketika ada pengguna yg berlangganan tanpa meninggalkan "
|
990 |
"komentar."
|
991 |
|
992 |
-
#: options/panel5.php:
|
993 |
msgid "Let the administrator subscribe to comments when logged in."
|
994 |
msgstr "Ijinkan admin berlangganan komentar ketika masuk log."
|
995 |
|
996 |
-
#: options/panel5.php:
|
997 |
msgid "Send a copy of all Notifications to the administrator."
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: options/panel5.php:
|
1001 |
msgid ""
|
1002 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1003 |
"you theme already add this into your site."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: options/panel5.php:
|
1007 |
msgid "StCR Unique Key"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: options/panel5.php:
|
1011 |
msgid "This Unique Key is not set, please click the following button to "
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: options/panel5.php:
|
1015 |
msgid "Generate"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: options/panel5.php:
|
1019 |
msgid ""
|
1020 |
"This Unique Key will be use to send the notification to your subscribers "
|
1021 |
"with more security."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: options/
|
1025 |
-
msgid "
|
1026 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
|
1028 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
msgid ""
|
1030 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1031 |
"consider supporting the author if this plugin made your web site better, "
|
1032 |
-
"especially if you are making money out of it
|
|
|
1033 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1034 |
"strong>, and to buy some food for my hungry family."
|
1035 |
msgstr ""
|
@@ -1040,18 +1076,27 @@ msgstr ""
|
|
1040 |
"donasi yang diterima akan diinvestasikan pada pengembangan Subscribe to "
|
1041 |
"Comments Reloaded, dan untuk membeli sedikit makanan untuk keluarga."
|
1042 |
|
1043 |
-
#: options/panel7.php:
|
1044 |
-
|
1045 |
-
|
|
|
|
|
1046 |
|
1047 |
-
#: options/panel7.php:
|
1048 |
-
|
1049 |
-
|
1050 |
-
"
|
1051 |
-
"
|
1052 |
-
"
|
1053 |
-
"
|
1054 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1055 |
msgstr ""
|
1056 |
"Jika Anda tidak ingin memberi donasi dalam bentuk uang, mohon pertimbangkan "
|
1057 |
"untuk menuliskan tentang plugin ini di blog Anda dengan sebuah tautan ke "
|
@@ -1061,11 +1106,11 @@ msgstr ""
|
|
1061 |
"Subscribe to Comments Reloaded jadi lebih baik. Apapun yang Anda lakukan, "
|
1062 |
"terima kasih karena telah menggunakan plugin buatan saya!"
|
1063 |
|
1064 |
-
#: options/panel7.php:
|
1065 |
msgid "Subscribe to the Beta testers"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: options/panel7.php:
|
1069 |
msgid ""
|
1070 |
"Before a new Update we release a Beta version so that our current users can "
|
1071 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1073,11 +1118,11 @@ msgid ""
|
|
1073 |
"a>"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: options/panel7.php:
|
1077 |
msgid "Vote and show your appreciation"
|
1078 |
msgstr "Voting dan tunjukkan apresiasi Anda"
|
1079 |
|
1080 |
-
#: options/panel7.php:
|
1081 |
msgid ""
|
1082 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1083 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1088,11 +1133,11 @@ msgstr ""
|
|
1088 |
"wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">Beri "
|
1089 |
"peringkat</a> pada halaman Direktori Plugin."
|
1090 |
|
1091 |
-
#: options/panel8.php:
|
1092 |
msgid "Did you find a Bug on the plugin?"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: options/panel8.php:
|
1096 |
msgid ""
|
1097 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1098 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1187,206 +1232,46 @@ msgstr ""
|
|
1187 |
msgid "You have request to manage another email address and this is forbidden."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: utils/stcr_manage.php:
|
1191 |
-
msgid ""
|
1192 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1193 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1194 |
-
msgstr ""
|
1195 |
-
"Beritahu saya melalui email jika ada balasan komentar di artikel ini. Anda "
|
1196 |
-
"juga dapat <a href='[subscribe_link]'>berlangganan</a> tanpa harus memberi "
|
1197 |
-
"komentar."
|
1198 |
-
|
1199 |
-
#: utils/stcr_manage.php:224
|
1200 |
-
msgid ""
|
1201 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1202 |
-
"subscriptions."
|
1203 |
-
msgstr ""
|
1204 |
-
"Anda telah berlangganan artikel ini. <a href='[manager_link]'>Atur</a> cara "
|
1205 |
-
"berlangganan Anda."
|
1206 |
-
|
1207 |
-
#: utils/stcr_manage.php:225
|
1208 |
-
msgid ""
|
1209 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1210 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1211 |
-
msgstr ""
|
1212 |
-
"Permintaan berlangganan Anda untuk artikel ini perlu dikonfirmasi. <a "
|
1213 |
-
"href='[manager_link]'>Aturlah cara berlangganan Anda</a>."
|
1214 |
-
|
1215 |
-
#: utils/stcr_manage.php:226
|
1216 |
-
msgid ""
|
1217 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1218 |
-
msgstr ""
|
1219 |
-
"Anda dapat <a href='[manager_link]'>mengatur cara berlangganan</a> pada "
|
1220 |
-
"artikel ini."
|
1221 |
-
|
1222 |
-
#: utils/stcr_manage.php:232
|
1223 |
-
msgid ""
|
1224 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1225 |
-
"will send you a message containing the link to access your personal "
|
1226 |
-
"management page."
|
1227 |
-
msgstr ""
|
1228 |
-
"Untuk mengatur cara berlangganan, masukkan alamat email Anda di bawah ini. "
|
1229 |
-
"Kami akan mengirimkan sebuah pesan yang berisi tautan untuk mengakses "
|
1230 |
-
"Halaman Pengaturan Pribadi milik Anda."
|
1231 |
-
|
1232 |
-
#: utils/stcr_manage.php:233
|
1233 |
-
msgid ""
|
1234 |
-
"Thank you for using our subscription service. Your request has been "
|
1235 |
-
"completed, and you should receive an email with the management link in a few "
|
1236 |
-
"minutes."
|
1237 |
-
msgstr ""
|
1238 |
-
"Terima kasih telah memanfaatkan layanan berlangganan kami. Permintaan Anda "
|
1239 |
-
"telah diproses, dan Anda akan menerima sebuah email yang berisi tautan ke "
|
1240 |
-
"pengaturan dalam beberapa menit ke depan."
|
1241 |
-
|
1242 |
-
#: utils/stcr_manage.php:234
|
1243 |
-
msgid ""
|
1244 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1245 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1246 |
-
"form here below and you're all set."
|
1247 |
-
msgstr ""
|
1248 |
-
"Anda dapat menyimak diskusi pada <strong>[post_title]</strong> tanpa harus "
|
1249 |
-
"memberikan komentar terlebih dulu. Keren, kan? Masukkan saja alamat email "
|
1250 |
-
"Anda ke isian berikut."
|
1251 |
-
|
1252 |
-
#: utils/stcr_manage.php:235
|
1253 |
-
msgid ""
|
1254 |
-
"Thank you for using our subscription service. Your request has been "
|
1255 |
-
"completed. You will receive a notification email every time a new comment to "
|
1256 |
-
"this article is approved and posted by the administrator."
|
1257 |
-
msgstr ""
|
1258 |
-
"Terima kasih telah memanfaatkan layanan berlangganan kami. Permintaan Anda "
|
1259 |
-
"telah diproses. Anda akan menerima sebuah email notifikasi setiap ada "
|
1260 |
-
"komentar baru pada artikel ini."
|
1261 |
-
|
1262 |
-
#: utils/stcr_manage.php:236
|
1263 |
-
msgid ""
|
1264 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1265 |
-
"request, please check your email for the verification message and follow the "
|
1266 |
-
"instructions."
|
1267 |
-
msgstr ""
|
1268 |
-
"Terima kasih telah memanfaatkan layanan berlangganan kami. Selanjutnya Anda "
|
1269 |
-
"perlu melakukan konfirmasi melalui sebuah pesan yang kami kirimkan ke alamat "
|
1270 |
-
"email Anda, dan lakukanlah langkah-langkah yang diinstruksikan."
|
1271 |
-
|
1272 |
-
#: utils/stcr_manage.php:237
|
1273 |
-
msgid ""
|
1274 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1275 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1276 |
-
msgstr ""
|
1277 |
-
"Untuk membatalkan atau menangguhkan satu atau lebih notifikasi, pilihlah "
|
1278 |
-
"pada checkbox yang dimaksud dan klik pada tombol di akhir daftar."
|
1279 |
-
|
1280 |
-
#: utils/stcr_manage.php:238
|
1281 |
-
msgid ""
|
1282 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1283 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1284 |
-
"You are currently subscribed to:"
|
1285 |
-
msgstr ""
|
1286 |
-
"Untuk membatalkan atau menangguhkan satu atau lebih notifikasi, pilihlah "
|
1287 |
-
"pada checkbox yang dimaksud dan klik pada tombol di akhir daftar. Saat ini "
|
1288 |
-
"Anda berlangganan:"
|
1289 |
-
|
1290 |
-
#: utils/stcr_manage.php:242
|
1291 |
-
msgid "There is a new comment to [post_title]"
|
1292 |
-
msgstr "Hey, ada komentar baru pada artikel [post_title]"
|
1293 |
-
|
1294 |
-
#: utils/stcr_manage.php:243
|
1295 |
-
msgid ""
|
1296 |
-
"There is a new comment to [post_title].\n"
|
1297 |
-
"Comment Link: [comment_permalink]\n"
|
1298 |
-
"Author: [comment_author]\n"
|
1299 |
-
"Comment:\n"
|
1300 |
-
"[comment_content]\n"
|
1301 |
-
"Permalink: [post_permalink]\n"
|
1302 |
-
"Manage your subscriptions: [manager_link]"
|
1303 |
-
msgstr ""
|
1304 |
-
"Ada komentar baru pada artikel [post_title].\n"
|
1305 |
-
"Tautan komentar: [comment_permalink]\n"
|
1306 |
-
"Oleh: [comment_author]\n"
|
1307 |
-
"Komentar:\n"
|
1308 |
-
"[comment_content]\n"
|
1309 |
-
"Tautan: [post_permalink]\n"
|
1310 |
-
"Atur cara berlangganan Anda: [manager_link]"
|
1311 |
-
|
1312 |
-
#: utils/stcr_manage.php:244
|
1313 |
-
msgid "Please confirm your subscription to [post_title]"
|
1314 |
-
msgstr "Mohon lakukan konfirmasi berlangganan Anda pada artikel [post_title]"
|
1315 |
-
|
1316 |
-
#: utils/stcr_manage.php:245
|
1317 |
-
msgid ""
|
1318 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1319 |
-
"[post_permalink]\n"
|
1320 |
-
"\n"
|
1321 |
-
"Please confirm your request by clicking on this link:\n"
|
1322 |
-
"[confirm_link]"
|
1323 |
-
msgstr ""
|
1324 |
-
"Anda telah meminta untuk diberitahu setiap ada komentar baru pada:\n"
|
1325 |
-
"[post_permalink]\n"
|
1326 |
-
"\n"
|
1327 |
-
"Lakukan konfirmasi permintaan Anda dengan melakukan klik pada tautan ini:\n"
|
1328 |
-
"[confirm_link]"
|
1329 |
-
|
1330 |
-
#: utils/stcr_manage.php:246
|
1331 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1332 |
-
msgstr "Aturlah cara berlangganan Anda pada [blog_name]"
|
1333 |
-
|
1334 |
-
#: utils/stcr_manage.php:247
|
1335 |
-
msgid ""
|
1336 |
-
"You have requested to manage your subscriptions to the articles on "
|
1337 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1338 |
-
msgstr ""
|
1339 |
-
|
1340 |
-
#: utils/stcr_manage.php:248
|
1341 |
-
msgid ""
|
1342 |
-
"You have requested to manage your subscriptions to the articles on "
|
1343 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1344 |
-
"[manager_link]"
|
1345 |
-
msgstr ""
|
1346 |
-
"Anda telah meminta untuk mengatur cara berlanggan Anda pada artikel di "
|
1347 |
-
"[blog_name]. Ikuti tautan berikut untuk mengakses halaman personal Anda:\n"
|
1348 |
-
"[manager_link]"
|
1349 |
-
|
1350 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1351 |
msgid "StCR System"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: utils/stcr_manage.php:
|
1355 |
-
#: utils/stcr_manage.php:
|
1356 |
-
#: utils/stcr_manage.php:
|
1357 |
-
#: utils/stcr_manage.php:
|
1358 |
-
#: utils/stcr_manage.php:
|
1359 |
msgid "You do not have sufficient permissions to access this page."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: utils/stcr_manage.php:
|
1363 |
msgid "Subscriptions"
|
1364 |
msgstr "Langganan"
|
1365 |
|
1366 |
-
#: utils/stcr_manage.php:
|
1367 |
msgid ""
|
1368 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1369 |
msgstr ""
|
1370 |
"Perlu bantuan tentang cara penggunaan Subscribe to Comments Reloaded? "
|
1371 |
"Kunjungi situs resmi"
|
1372 |
|
1373 |
-
#: utils/stcr_manage.php:
|
1374 |
msgid "support forum"
|
1375 |
msgstr "forum bantuan"
|
1376 |
|
1377 |
-
#: utils/stcr_manage.php:
|
1378 |
msgid "Feeling generous?"
|
1379 |
msgstr "Merasa dermawan?"
|
1380 |
|
1381 |
-
#: utils/stcr_manage.php:
|
1382 |
msgid "Donate a few bucks!"
|
1383 |
msgstr "Beri sedikit sumbangan"
|
1384 |
|
1385 |
-
#: utils/stcr_upgrade.php:
|
1386 |
msgid "Important Notice"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: utils/stcr_upgrade.php:
|
1390 |
msgid ""
|
1391 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1392 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1394,28 +1279,28 @@ msgid ""
|
|
1394 |
"src=\""
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: utils/stcr_upgrade.php:
|
1398 |
msgid ""
|
1399 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1400 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1401 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: utils/stcr_upgrade.php:
|
1405 |
msgid ""
|
1406 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1407 |
"Comments to prevent confusion between the two plugins."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: utils/stcr_upgrade.php:
|
1411 |
msgid ""
|
1412 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1413 |
"that you want to import, you'll need to import that data manually, as only "
|
1414 |
"one import routine will ever run to prevent data loss."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: utils/stcr_upgrade.php:
|
1418 |
-
#: utils/stcr_upgrade.php:
|
1419 |
msgid ""
|
1420 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1421 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1423,20 +1308,20 @@ msgid ""
|
|
1423 |
"\"stcr-loading-animation\" src=\""
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: utils/stcr_upgrade.php:
|
1427 |
msgid ""
|
1428 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1429 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1430 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: utils/stcr_upgrade.php:
|
1434 |
msgid ""
|
1435 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1436 |
"Notification to prevent confusion between the two plugins."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: utils/stcr_upgrade.php:
|
1440 |
msgid ""
|
1441 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1442 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1444,13 +1329,13 @@ msgid ""
|
|
1444 |
"Reloaded</strong>."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: utils/stcr_upgrade.php:
|
1448 |
msgid ""
|
1449 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1450 |
"Subscriptions to prevent confusion between the two plugins."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: utils/stcr_upgrade.php:
|
1454 |
msgid ""
|
1455 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1456 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1458,7 +1343,7 @@ msgid ""
|
|
1458 |
"ever run to prevent data loss."
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: utils/stcr_upgrade.php:
|
1462 |
msgid ""
|
1463 |
"<strong>Note:</strong> If you were previously using the "
|
1464 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1467,29 +1352,29 @@ msgid ""
|
|
1467 |
"respectively."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: utils/stcr_upgrade.php:
|
1471 |
msgid ""
|
1472 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: utils/stcr_upgrade.php:
|
1476 |
-
#: utils/stcr_upgrade.php:
|
1477 |
msgid ""
|
1478 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1479 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: utils/stcr_upgrade.php:
|
1483 |
msgid ""
|
1484 |
-
"Please consider to make a donation to support the plugin
|
1485 |
-
"<a href=\"\n"
|
1486 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1487 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1488 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1489 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: utils/stcr_upgrade.php:
|
1493 |
msgid ""
|
1494 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1495 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1497,23 +1382,23 @@ msgid ""
|
|
1497 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: utils/stcr_upgrade.php:
|
1501 |
msgid ""
|
1502 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1503 |
"160106."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: utils/stcr_upgrade.php:
|
1507 |
msgid ""
|
1508 |
"This version includes many changes and fixes to improve your experience with "
|
1509 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1510 |
"email templates, Subscription Checkbox position, and more!"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: utils/stcr_upgrade.php:
|
1514 |
-
#: utils/stcr_upgrade.php:
|
1515 |
-
#: utils/stcr_upgrade.php:
|
1516 |
-
#: utils/stcr_upgrade.php:
|
1517 |
msgid ""
|
1518 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1519 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1521,123 +1406,126 @@ msgid ""
|
|
1521 |
"class=\"stcr-loading-animation\" src=\""
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: utils/stcr_upgrade.php:
|
1525 |
msgid ""
|
1526 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1527 |
"160115."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: utils/stcr_upgrade.php:
|
1531 |
msgid ""
|
1532 |
"This version includes fixes to broken links while managing your subscriptions"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: utils/stcr_upgrade.php:
|
1536 |
msgid ""
|
1537 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1538 |
"160831"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: utils/stcr_upgrade.php:
|
1542 |
msgid "This version includes fixes to many bugs and also new features, "
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: utils/stcr_upgrade.php:
|
1546 |
msgid ""
|
1547 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1548 |
"address. This will help the subscribers to use the Reply option in their "
|
1549 |
"email agents."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: utils/stcr_upgrade.php:
|
1553 |
msgid ""
|
1554 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1555 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: utils/stcr_upgrade.php:
|
1559 |
msgid ""
|
1560 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1561 |
"without loosing your subscriptions. You can use this option also for reset "
|
1562 |
"all the settings, see the FAQ."
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: utils/stcr_upgrade.php:
|
1566 |
msgid ""
|
1567 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1568 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1569 |
"Post Type."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: utils/stcr_upgrade.php:
|
1573 |
msgid ""
|
1574 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1575 |
"options to and the management link only by email and not to display it on "
|
1576 |
"the request link page."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: utils/stcr_upgrade.php:
|
1580 |
msgid ""
|
1581 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1582 |
"160902"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: utils/stcr_upgrade.php:
|
1586 |
msgid ""
|
1587 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1588 |
"previous 160831 version."
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: utils/stcr_upgrade.php:
|
1592 |
msgid "Settings"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: utils/stcr_upgrade.php:
|
1596 |
msgid ""
|
1597 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1598 |
"160915"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: utils/stcr_upgrade.php:
|
1602 |
-
#: utils/stcr_upgrade.php:
|
1603 |
msgid "This version includes fixes and improvements, "
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: utils/stcr_upgrade.php:
|
1607 |
msgid ""
|
1608 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1609 |
"dropdown."
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: utils/stcr_upgrade.php:
|
1613 |
msgid ""
|
1614 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: utils/stcr_upgrade.php:
|
|
|
1618 |
msgid "Log Settings"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: utils/stcr_upgrade.php:
|
|
|
1622 |
msgid ""
|
1623 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: utils/stcr_upgrade.php:
|
1627 |
msgid ""
|
1628 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1629 |
"enable."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: utils/stcr_upgrade.php:
|
1633 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: utils/stcr_upgrade.php:
|
|
|
1637 |
msgid "The support of this plugin is given thanks to your donations."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: utils/stcr_upgrade.php:
|
1641 |
msgid ""
|
1642 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1643 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1647,19 +1535,19 @@ msgid ""
|
|
1647 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: utils/stcr_upgrade.php:
|
1651 |
msgid ""
|
1652 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1653 |
"installation regarding a database table creation."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: utils/stcr_upgrade.php:
|
1657 |
msgid ""
|
1658 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1659 |
"Awesome."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: utils/stcr_upgrade.php:
|
1663 |
msgid ""
|
1664 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1665 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1670,7 +1558,203 @@ msgid ""
|
|
1670 |
"for the users that have supported the plugin development."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1674 |
msgid "StCR Notification"
|
1675 |
msgstr "Notifikasi"
|
1676 |
|
@@ -1682,6 +1766,29 @@ msgstr "Jangan berlangganan"
|
|
1682 |
msgid "All"
|
1683 |
msgstr "Semua"
|
1684 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1685 |
#~ msgid ""
|
1686 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1687 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:09-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 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Atur Langganan"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Formulir Komentar"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Halaman Pengaturan"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Notifikasi"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Pilihan"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "forum bantuan"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr ""
|
48 |
|
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:41
|
347 |
msgid "The log file has been successfully deleted."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: options/panel10.php:46
|
351 |
msgid "Can't delete the log file, check the file permissions."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: options/panel10.php:52
|
355 |
msgid "The log file does not exists."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: options/panel10.php:66 options/panel10.php:110
|
359 |
msgid "Enable Log Information"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: options/panel10.php:72 options/panel10.php:119
|
363 |
msgid "Enable Auto clean log data"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
367 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
368 |
msgid "Your settings have been successfully updated."
|
369 |
msgstr "Pengaturan Anda telah diperbarui."
|
370 |
|
371 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
372 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
373 |
msgid "There was an error updating the following fields:"
|
374 |
msgstr "Terdapat galat saat memperbaharui ruas berikut:"
|
375 |
|
376 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
377 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
378 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
379 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
380 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
381 |
+
#: options/panel5.php:210 options/panel5.php:219
|
382 |
msgid "Yes"
|
383 |
msgstr "Ya"
|
384 |
|
385 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
386 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
387 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
388 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
389 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
390 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
391 |
msgid "No"
|
392 |
msgstr "Tidak"
|
393 |
|
394 |
+
#: options/panel10.php:114
|
395 |
msgid ""
|
396 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
397 |
"purposes."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: options/panel10.php:125
|
401 |
msgid "Hourly"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: options/panel10.php:126
|
405 |
msgid "Twice Daily"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: options/panel10.php:127
|
409 |
msgid "Daily"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: options/panel10.php:129
|
413 |
msgid "If enabled, StCR will auto clean your information every day."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: options/panel10.php:134
|
417 |
msgid "Clean Up Log Archive"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: options/panel10.php:138
|
421 |
msgid ""
|
422 |
"If you want to clean up the log archive please click the following button"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: options/panel10.php:140
|
426 |
msgid "Clean"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: options/panel10.php:147 options/panel10.php:150
|
430 |
msgid "System Information"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
434 |
+
#: options/panel4.php:283 options/panel5.php:265
|
435 |
msgid "Save Changes"
|
436 |
msgstr "Simpan Perubahan"
|
437 |
|
782 |
#: options/panel4.php:128
|
783 |
msgid ""
|
784 |
"This will be use when the user click reply on their email agent. If not set "
|
785 |
+
"it will be the same as the Sender email address."
|
786 |
msgstr ""
|
787 |
|
788 |
#: options/panel4.php:147
|
798 |
|
799 |
#: options/panel4.php:171
|
800 |
msgid ""
|
801 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
802 |
+
"all the content and save the options.</strong></p>"
|
803 |
msgstr ""
|
804 |
|
805 |
#: options/panel4.php:184
|
846 |
"[blog_name]"
|
847 |
msgstr "Subjek pada email konfirmasi. Tag yang diijinkan: [post_title]"
|
848 |
|
849 |
+
#: options/panel5.php:38
|
850 |
+
#, fuzzy
|
851 |
+
#| msgid "Your settings have been successfully updated."
|
852 |
+
msgid "Your settings have been successfully reset."
|
853 |
+
msgstr "Pengaturan Anda telah diperbarui."
|
854 |
+
|
855 |
+
#: options/panel5.php:40
|
856 |
+
#, fuzzy
|
857 |
+
#| msgid "There was an error updating the following fields:"
|
858 |
+
msgid "There was an error deleting the options:"
|
859 |
+
msgstr "Terdapat galat saat memperbaharui ruas berikut:"
|
860 |
+
|
861 |
+
#: options/panel5.php:48 options/panel5.php:108
|
862 |
msgid "Show StCR checkbox / dropdown"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: options/panel5.php:51
|
866 |
msgid "Safetly Uninstall"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: options/panel5.php:54 options/panel5.php:125
|
870 |
msgid "Autopurge requests"
|
871 |
msgstr "Permintaan pembersihan-otomatis"
|
872 |
|
873 |
+
#: options/panel5.php:57 options/panel5.php:143
|
874 |
msgid "Enable double check"
|
875 |
msgstr "Nyalakan konfirmasi ganda"
|
876 |
|
877 |
+
#: options/panel5.php:60 options/panel5.php:134
|
878 |
msgid "StCR Position"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: options/panel5.php:63 options/panel5.php:151
|
882 |
msgid "Subscribe authors"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: options/panel5.php:66 options/panel5.php:161
|
886 |
msgid "Enable HTML emails"
|
887 |
msgstr "Nyalakan email HTML"
|
888 |
|
889 |
+
#: options/panel5.php:69
|
890 |
msgid "HTMLify Links in HTML emails"
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: options/panel5.php:72
|
894 |
msgid "Send trackbacks"
|
895 |
msgstr "Kirim taut balik"
|
896 |
|
897 |
+
#: options/panel5.php:75
|
898 |
msgid "Notify admin"
|
899 |
msgstr "Beritahu admin"
|
900 |
|
901 |
+
#: options/panel5.php:78 options/panel5.php:199
|
902 |
msgid "Let admin subscribe"
|
903 |
msgstr "Ijinkan admin berlangganan"
|
904 |
|
905 |
+
#: options/panel5.php:81 options/panel5.php:208
|
906 |
msgid "BCC admin on Notifications"
|
907 |
msgstr "Notifikasi"
|
908 |
|
909 |
+
#: options/panel5.php:84 options/panel5.php:217
|
910 |
msgid "Enable Font Awesome"
|
911 |
msgstr ""
|
912 |
|
913 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
914 |
+
msgid "Reset All Options"
|
915 |
+
msgstr ""
|
916 |
+
|
917 |
+
#: options/panel5.php:112
|
918 |
msgid ""
|
919 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
920 |
"You should leave it to Yes always. "
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: options/panel5.php:117
|
924 |
msgid "Safely Uninstall"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: options/panel5.php:121
|
928 |
msgid ""
|
929 |
"This option will allow you to delete the plugin with WordPress without "
|
930 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: options/panel5.php:128
|
934 |
msgid "days"
|
935 |
msgstr "hari"
|
936 |
|
937 |
+
#: options/panel5.php:129
|
938 |
msgid ""
|
939 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
940 |
"this feature."
|
942 |
"Hapus langganan yang ditunda (tanpa konfirmasi) setelah X hari. Masukkan Nol "
|
943 |
"untuk mematikan fitur ini."
|
944 |
|
945 |
+
#: options/panel5.php:138
|
946 |
msgid ""
|
947 |
"If this option is enable the subscription box will be above the submit "
|
948 |
"button in your comment form. Use this when your theme is outdated and using "
|
949 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: options/panel5.php:147
|
953 |
msgid ""
|
954 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
955 |
"misuse)."
|
957 |
"Kirim sebuah email notifikasi untuk konfirmasi berlangganan (mencegah "
|
958 |
"penyalahgunaan alamat)."
|
959 |
|
960 |
+
#: options/panel5.php:156
|
961 |
msgid ""
|
962 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: options/panel5.php:165
|
966 |
msgid ""
|
967 |
"If enabled, will send email messages with content-type = text/html instead "
|
968 |
"of text/plain"
|
970 |
"Jika dimungkinkan, akan mengirim pesan email dengan content-type = text/html "
|
971 |
"daripada text/plain"
|
972 |
|
973 |
+
#: options/panel5.php:170
|
974 |
msgid "HTMLify links in emails"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: options/panel5.php:175
|
978 |
msgid ""
|
979 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
980 |
"</a></code> (only when HTML emails enabled)."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: options/panel5.php:180
|
984 |
msgid "Process trackbacks"
|
985 |
msgstr "Proses taut balik"
|
986 |
|
987 |
+
#: options/panel5.php:184
|
988 |
msgid ""
|
989 |
"Notify users when a new trackback or pingback is added to the discussion."
|
990 |
msgstr ""
|
991 |
"Beritahu pengguna ketika sebuah tautbalik atau pingback ditambahkan dalam "
|
992 |
"diskusi."
|
993 |
|
994 |
+
#: options/panel5.php:189
|
995 |
msgid "Track all subscriptions"
|
996 |
msgstr "Telusuri semua langganan"
|
997 |
|
998 |
+
#: options/panel5.php:194
|
999 |
msgid "Notify the administrator when users subscribe without commenting."
|
1000 |
msgstr ""
|
1001 |
"Beritahu admin ketika ada pengguna yg berlangganan tanpa meninggalkan "
|
1002 |
"komentar."
|
1003 |
|
1004 |
+
#: options/panel5.php:203
|
1005 |
msgid "Let the administrator subscribe to comments when logged in."
|
1006 |
msgstr "Ijinkan admin berlangganan komentar ketika masuk log."
|
1007 |
|
1008 |
+
#: options/panel5.php:212
|
1009 |
msgid "Send a copy of all Notifications to the administrator."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: options/panel5.php:221
|
1013 |
msgid ""
|
1014 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1015 |
"you theme already add this into your site."
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: options/panel5.php:226
|
1019 |
msgid "StCR Unique Key"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: options/panel5.php:231
|
1023 |
msgid "This Unique Key is not set, please click the following button to "
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1027 |
msgid "Generate"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: options/panel5.php:243
|
1031 |
msgid ""
|
1032 |
"This Unique Key will be use to send the notification to your subscribers "
|
1033 |
"with more security."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: options/panel5.php:256
|
1037 |
+
msgid ""
|
1038 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1039 |
+
"with caution."
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: options/panel5.php:258
|
1043 |
+
msgid "Yes, Delete Options including subscriptions."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: options/panel5.php:259
|
1047 |
+
msgid "No, Only delete the StCR Options."
|
1048 |
+
msgstr ""
|
1049 |
|
1050 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1051 |
+
msgid ""
|
1052 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1053 |
+
"hidden=\"true\"></i>"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1057 |
+
#, fuzzy
|
1058 |
+
#| msgid ""
|
1059 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1060 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1061 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1062 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1063 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1064 |
msgid ""
|
1065 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1066 |
"consider supporting the author if this plugin made your web site better, "
|
1067 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1068 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1069 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1070 |
"strong>, and to buy some food for my hungry family."
|
1071 |
msgstr ""
|
1076 |
"donasi yang diterima akan diinvestasikan pada pengembangan Subscribe to "
|
1077 |
"Comments Reloaded, dan untuk membeli sedikit makanan untuk keluarga."
|
1078 |
|
1079 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1080 |
+
#, fuzzy
|
1081 |
+
#| msgid "You can help"
|
1082 |
+
msgid "You can still help"
|
1083 |
+
msgstr "Bantu kami"
|
1084 |
|
1085 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1086 |
+
#, fuzzy
|
1087 |
+
#| msgid ""
|
1088 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1089 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1090 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1091 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1092 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1093 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1094 |
+
msgid ""
|
1095 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1096 |
+
"Please let your readers know what makes your blog better. You can also "
|
1097 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1098 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1099 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1100 |
msgstr ""
|
1101 |
"Jika Anda tidak ingin memberi donasi dalam bentuk uang, mohon pertimbangkan "
|
1102 |
"untuk menuliskan tentang plugin ini di blog Anda dengan sebuah tautan ke "
|
1106 |
"Subscribe to Comments Reloaded jadi lebih baik. Apapun yang Anda lakukan, "
|
1107 |
"terima kasih karena telah menggunakan plugin buatan saya!"
|
1108 |
|
1109 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1110 |
msgid "Subscribe to the Beta testers"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1114 |
msgid ""
|
1115 |
"Before a new Update we release a Beta version so that our current users can "
|
1116 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1118 |
"a>"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1122 |
msgid "Vote and show your appreciation"
|
1123 |
msgstr "Voting dan tunjukkan apresiasi Anda"
|
1124 |
|
1125 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1126 |
msgid ""
|
1127 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1128 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1133 |
"wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">Beri "
|
1134 |
"peringkat</a> pada halaman Direktori Plugin."
|
1135 |
|
1136 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1137 |
msgid "Did you find a Bug on the plugin?"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1141 |
msgid ""
|
1142 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1143 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1232 |
msgid "You have request to manage another email address and this is forbidden."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1236 |
msgid "StCR System"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1240 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1241 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1242 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1243 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1244 |
msgid "You do not have sufficient permissions to access this page."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: utils/stcr_manage.php:726
|
1248 |
msgid "Subscriptions"
|
1249 |
msgstr "Langganan"
|
1250 |
|
1251 |
+
#: utils/stcr_manage.php:782
|
1252 |
msgid ""
|
1253 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1254 |
msgstr ""
|
1255 |
"Perlu bantuan tentang cara penggunaan Subscribe to Comments Reloaded? "
|
1256 |
"Kunjungi situs resmi"
|
1257 |
|
1258 |
+
#: utils/stcr_manage.php:782
|
1259 |
msgid "support forum"
|
1260 |
msgstr "forum bantuan"
|
1261 |
|
1262 |
+
#: utils/stcr_manage.php:783
|
1263 |
msgid "Feeling generous?"
|
1264 |
msgstr "Merasa dermawan?"
|
1265 |
|
1266 |
+
#: utils/stcr_manage.php:783
|
1267 |
msgid "Donate a few bucks!"
|
1268 |
msgstr "Beri sedikit sumbangan"
|
1269 |
|
1270 |
+
#: utils/stcr_upgrade.php:72
|
1271 |
msgid "Important Notice"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: utils/stcr_upgrade.php:120
|
1275 |
msgid ""
|
1276 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1277 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1279 |
"src=\""
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: utils/stcr_upgrade.php:175
|
1283 |
msgid ""
|
1284 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1285 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1286 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: utils/stcr_upgrade.php:175
|
1290 |
msgid ""
|
1291 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1292 |
"Comments to prevent confusion between the two plugins."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: utils/stcr_upgrade.php:176
|
1296 |
msgid ""
|
1297 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1298 |
"that you want to import, you'll need to import that data manually, as only "
|
1299 |
"one import routine will ever run to prevent data loss."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1303 |
+
#: utils/stcr_upgrade.php:400
|
1304 |
msgid ""
|
1305 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1306 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1308 |
"\"stcr-loading-animation\" src=\""
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: utils/stcr_upgrade.php:250
|
1312 |
msgid ""
|
1313 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1314 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1315 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: utils/stcr_upgrade.php:250
|
1319 |
msgid ""
|
1320 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1321 |
"Notification to prevent confusion between the two plugins."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: utils/stcr_upgrade.php:397
|
1325 |
msgid ""
|
1326 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1327 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1329 |
"Reloaded</strong>."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: utils/stcr_upgrade.php:397
|
1333 |
msgid ""
|
1334 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1335 |
"Subscriptions to prevent confusion between the two plugins."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: utils/stcr_upgrade.php:398
|
1339 |
msgid ""
|
1340 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1341 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1343 |
"ever run to prevent data loss."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: utils/stcr_upgrade.php:399
|
1347 |
msgid ""
|
1348 |
"<strong>Note:</strong> If you were previously using the "
|
1349 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1352 |
"respectively."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: utils/stcr_upgrade.php:413
|
1356 |
msgid ""
|
1357 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1361 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1362 |
msgid ""
|
1363 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1364 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: utils/stcr_upgrade.php:415
|
1368 |
msgid ""
|
1369 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1370 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1371 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1372 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1373 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1374 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: utils/stcr_upgrade.php:417
|
1378 |
msgid ""
|
1379 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1380 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1382 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: utils/stcr_upgrade.php:428
|
1386 |
msgid ""
|
1387 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1388 |
"160106."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: utils/stcr_upgrade.php:429
|
1392 |
msgid ""
|
1393 |
"This version includes many changes and fixes to improve your experience with "
|
1394 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1395 |
"email templates, Subscription Checkbox position, and more!"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1399 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1400 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1401 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1402 |
msgid ""
|
1403 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1404 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1406 |
"class=\"stcr-loading-animation\" src=\""
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: utils/stcr_upgrade.php:443
|
1410 |
msgid ""
|
1411 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1412 |
"160115."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: utils/stcr_upgrade.php:444
|
1416 |
msgid ""
|
1417 |
"This version includes fixes to broken links while managing your subscriptions"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: utils/stcr_upgrade.php:458
|
1421 |
msgid ""
|
1422 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1423 |
"160831"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1427 |
msgid "This version includes fixes to many bugs and also new features, "
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1431 |
msgid ""
|
1432 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1433 |
"address. This will help the subscribers to use the Reply option in their "
|
1434 |
"email agents."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1438 |
msgid ""
|
1439 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1440 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1444 |
msgid ""
|
1445 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1446 |
"without loosing your subscriptions. You can use this option also for reset "
|
1447 |
"all the settings, see the FAQ."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1451 |
msgid ""
|
1452 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1453 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1454 |
"Post Type."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1458 |
msgid ""
|
1459 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1460 |
"options to and the management link only by email and not to display it on "
|
1461 |
"the request link page."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: utils/stcr_upgrade.php:480
|
1465 |
msgid ""
|
1466 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1467 |
"160902"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: utils/stcr_upgrade.php:483
|
1471 |
msgid ""
|
1472 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1473 |
"previous 160831 version."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1477 |
msgid "Settings"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: utils/stcr_upgrade.php:504
|
1481 |
msgid ""
|
1482 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1483 |
"160915"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1487 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1488 |
msgid "This version includes fixes and improvements, "
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: utils/stcr_upgrade.php:508
|
1492 |
msgid ""
|
1493 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1494 |
"dropdown."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: utils/stcr_upgrade.php:509
|
1498 |
msgid ""
|
1499 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1503 |
+
#: utils/stcr_upgrade.php:576
|
1504 |
msgid "Log Settings"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1508 |
+
#: utils/stcr_upgrade.php:580
|
1509 |
msgid ""
|
1510 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: utils/stcr_upgrade.php:529
|
1514 |
msgid ""
|
1515 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1516 |
"enable."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: utils/stcr_upgrade.php:530
|
1520 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1524 |
+
#: utils/stcr_upgrade.php:590
|
1525 |
msgid "The support of this plugin is given thanks to your donations."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: utils/stcr_upgrade.php:536
|
1529 |
msgid ""
|
1530 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1531 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1535 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: utils/stcr_upgrade.php:557
|
1539 |
msgid ""
|
1540 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1541 |
"installation regarding a database table creation."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: utils/stcr_upgrade.php:558
|
1545 |
msgid ""
|
1546 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1547 |
"Awesome."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: utils/stcr_upgrade.php:563
|
1551 |
msgid ""
|
1552 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1553 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1558 |
"for the users that have supported the plugin development."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: utils/stcr_upgrade.php:584
|
1562 |
+
msgid ""
|
1563 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1564 |
+
"issues."
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: utils/stcr_upgrade.php:585
|
1568 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: utils/stcr_upgrade.php:586
|
1572 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: utils/stcr_upgrade.php:591
|
1576 |
+
msgid ""
|
1577 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1578 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1579 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1580 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1581 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1582 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1583 |
+
"Thanks for all the users that have supported the plugin development."
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: utils/stcr_utils.php:196
|
1587 |
+
msgid ""
|
1588 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1589 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1590 |
+
msgstr ""
|
1591 |
+
"Beritahu saya melalui email jika ada balasan komentar di artikel ini. Anda "
|
1592 |
+
"juga dapat <a href='[subscribe_link]'>berlangganan</a> tanpa harus memberi "
|
1593 |
+
"komentar."
|
1594 |
+
|
1595 |
+
#: utils/stcr_utils.php:197
|
1596 |
+
msgid ""
|
1597 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1598 |
+
"subscriptions."
|
1599 |
+
msgstr ""
|
1600 |
+
"Anda telah berlangganan artikel ini. <a href='[manager_link]'>Atur</a> cara "
|
1601 |
+
"berlangganan Anda."
|
1602 |
+
|
1603 |
+
#: utils/stcr_utils.php:198
|
1604 |
+
msgid ""
|
1605 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1606 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1607 |
+
msgstr ""
|
1608 |
+
"Permintaan berlangganan Anda untuk artikel ini perlu dikonfirmasi. <a "
|
1609 |
+
"href='[manager_link]'>Aturlah cara berlangganan Anda</a>."
|
1610 |
+
|
1611 |
+
#: utils/stcr_utils.php:199
|
1612 |
+
msgid ""
|
1613 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1614 |
+
msgstr ""
|
1615 |
+
"Anda dapat <a href='[manager_link]'>mengatur cara berlangganan</a> pada "
|
1616 |
+
"artikel ini."
|
1617 |
+
|
1618 |
+
#: utils/stcr_utils.php:205
|
1619 |
+
msgid ""
|
1620 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1621 |
+
"will send you a message containing the link to access your personal "
|
1622 |
+
"management page."
|
1623 |
+
msgstr ""
|
1624 |
+
"Untuk mengatur cara berlangganan, masukkan alamat email Anda di bawah ini. "
|
1625 |
+
"Kami akan mengirimkan sebuah pesan yang berisi tautan untuk mengakses "
|
1626 |
+
"Halaman Pengaturan Pribadi milik Anda."
|
1627 |
+
|
1628 |
+
#: utils/stcr_utils.php:206
|
1629 |
+
msgid ""
|
1630 |
+
"Thank you for using our subscription service. Your request has been "
|
1631 |
+
"completed, and you should receive an email with the management link in a few "
|
1632 |
+
"minutes."
|
1633 |
+
msgstr ""
|
1634 |
+
"Terima kasih telah memanfaatkan layanan berlangganan kami. Permintaan Anda "
|
1635 |
+
"telah diproses, dan Anda akan menerima sebuah email yang berisi tautan ke "
|
1636 |
+
"pengaturan dalam beberapa menit ke depan."
|
1637 |
+
|
1638 |
+
#: utils/stcr_utils.php:207
|
1639 |
+
msgid ""
|
1640 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1641 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1642 |
+
"form here below and you're all set."
|
1643 |
+
msgstr ""
|
1644 |
+
"Anda dapat menyimak diskusi pada <strong>[post_title]</strong> tanpa harus "
|
1645 |
+
"memberikan komentar terlebih dulu. Keren, kan? Masukkan saja alamat email "
|
1646 |
+
"Anda ke isian berikut."
|
1647 |
+
|
1648 |
+
#: utils/stcr_utils.php:208
|
1649 |
+
msgid ""
|
1650 |
+
"Thank you for using our subscription service. Your request has been "
|
1651 |
+
"completed. You will receive a notification email every time a new comment to "
|
1652 |
+
"this article is approved and posted by the administrator."
|
1653 |
+
msgstr ""
|
1654 |
+
"Terima kasih telah memanfaatkan layanan berlangganan kami. Permintaan Anda "
|
1655 |
+
"telah diproses. Anda akan menerima sebuah email notifikasi setiap ada "
|
1656 |
+
"komentar baru pada artikel ini."
|
1657 |
+
|
1658 |
+
#: utils/stcr_utils.php:209
|
1659 |
+
msgid ""
|
1660 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1661 |
+
"request, please check your email for the verification message and follow the "
|
1662 |
+
"instructions."
|
1663 |
+
msgstr ""
|
1664 |
+
"Terima kasih telah memanfaatkan layanan berlangganan kami. Selanjutnya Anda "
|
1665 |
+
"perlu melakukan konfirmasi melalui sebuah pesan yang kami kirimkan ke alamat "
|
1666 |
+
"email Anda, dan lakukanlah langkah-langkah yang diinstruksikan."
|
1667 |
+
|
1668 |
+
#: utils/stcr_utils.php:210
|
1669 |
+
msgid ""
|
1670 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1671 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1672 |
+
msgstr ""
|
1673 |
+
"Untuk membatalkan atau menangguhkan satu atau lebih notifikasi, pilihlah "
|
1674 |
+
"pada checkbox yang dimaksud dan klik pada tombol di akhir daftar."
|
1675 |
+
|
1676 |
+
#: utils/stcr_utils.php:211
|
1677 |
+
msgid ""
|
1678 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1679 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1680 |
+
"You are currently subscribed to:"
|
1681 |
+
msgstr ""
|
1682 |
+
"Untuk membatalkan atau menangguhkan satu atau lebih notifikasi, pilihlah "
|
1683 |
+
"pada checkbox yang dimaksud dan klik pada tombol di akhir daftar. Saat ini "
|
1684 |
+
"Anda berlangganan:"
|
1685 |
+
|
1686 |
+
#: utils/stcr_utils.php:215
|
1687 |
+
msgid "There is a new comment to [post_title]"
|
1688 |
+
msgstr "Hey, ada komentar baru pada artikel [post_title]"
|
1689 |
+
|
1690 |
+
#: utils/stcr_utils.php:216
|
1691 |
+
msgid ""
|
1692 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1693 |
+
"\n"
|
1694 |
+
"<hr />\n"
|
1695 |
+
"<strong>Comment link:</strong> <a href="
|
1696 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1697 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1698 |
+
"\n"
|
1699 |
+
"<strong>Comment:</strong>\n"
|
1700 |
+
"[comment_content]\n"
|
1701 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1702 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1703 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1704 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: utils/stcr_utils.php:217
|
1708 |
+
msgid "Please confirm your subscription to [post_title]"
|
1709 |
+
msgstr "Mohon lakukan konfirmasi berlangganan Anda pada artikel [post_title]"
|
1710 |
+
|
1711 |
+
#: utils/stcr_utils.php:218
|
1712 |
+
#, fuzzy
|
1713 |
+
#| msgid ""
|
1714 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1715 |
+
#| "[post_permalink]\n"
|
1716 |
+
#| "\n"
|
1717 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1718 |
+
#| "[confirm_link]"
|
1719 |
+
msgid ""
|
1720 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1721 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1722 |
+
"\n"
|
1723 |
+
"Please confirm your request by clicking on this link:\n"
|
1724 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1725 |
+
msgstr ""
|
1726 |
+
"Anda telah meminta untuk diberitahu setiap ada komentar baru pada:\n"
|
1727 |
+
"[post_permalink]\n"
|
1728 |
+
"\n"
|
1729 |
+
"Lakukan konfirmasi permintaan Anda dengan melakukan klik pada tautan ini:\n"
|
1730 |
+
"[confirm_link]"
|
1731 |
+
|
1732 |
+
#: utils/stcr_utils.php:219
|
1733 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1734 |
+
msgstr "Aturlah cara berlangganan Anda pada [blog_name]"
|
1735 |
+
|
1736 |
+
#: utils/stcr_utils.php:220
|
1737 |
+
msgid ""
|
1738 |
+
"You have requested to manage your subscriptions to the articles on "
|
1739 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1740 |
+
msgstr ""
|
1741 |
+
|
1742 |
+
#: utils/stcr_utils.php:221
|
1743 |
+
#, fuzzy
|
1744 |
+
#| msgid ""
|
1745 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1746 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1747 |
+
#| "[manager_link]"
|
1748 |
+
msgid ""
|
1749 |
+
"You have requested to manage your subscriptions to the articles on "
|
1750 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1751 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1752 |
+
msgstr ""
|
1753 |
+
"Anda telah meminta untuk mengatur cara berlanggan Anda pada artikel di "
|
1754 |
+
"[blog_name]. Ikuti tautan berikut untuk mengakses halaman personal Anda:\n"
|
1755 |
+
"[manager_link]"
|
1756 |
+
|
1757 |
+
#: utils/stcr_utils.php:300
|
1758 |
msgid "StCR Notification"
|
1759 |
msgstr "Notifikasi"
|
1760 |
|
1766 |
msgid "All"
|
1767 |
msgstr "Semua"
|
1768 |
|
1769 |
+
#~ msgid "Support the developers"
|
1770 |
+
#~ msgstr "Dukung pembuat plugin"
|
1771 |
+
|
1772 |
+
#~ msgid "Don't want to donate? You can still help"
|
1773 |
+
#~ msgstr "Tidak memberi donasi? Anda tetap bisa membantu"
|
1774 |
+
|
1775 |
+
#~ msgid ""
|
1776 |
+
#~ "There is a new comment to [post_title].\n"
|
1777 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1778 |
+
#~ "Author: [comment_author]\n"
|
1779 |
+
#~ "Comment:\n"
|
1780 |
+
#~ "[comment_content]\n"
|
1781 |
+
#~ "Permalink: [post_permalink]\n"
|
1782 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1783 |
+
#~ msgstr ""
|
1784 |
+
#~ "Ada komentar baru pada artikel [post_title].\n"
|
1785 |
+
#~ "Tautan komentar: [comment_permalink]\n"
|
1786 |
+
#~ "Oleh: [comment_author]\n"
|
1787 |
+
#~ "Komentar:\n"
|
1788 |
+
#~ "[comment_content]\n"
|
1789 |
+
#~ "Tautan: [post_permalink]\n"
|
1790 |
+
#~ "Atur cara berlangganan Anda: [manager_link]"
|
1791 |
+
|
1792 |
#~ msgid ""
|
1793 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1794 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: due chiacchiere <info@duechiacchiere.it>\n"
|
9 |
"Language: it_IT\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Gestisci iscrizioni"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Modulo per inviare commenti"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Pagina di gestione"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Notifiche"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Opzioni"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Aiuto"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr "Supporto"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr ""
|
52 |
|
@@ -347,96 +343,96 @@ msgstr "Aggiorna iscrizioni"
|
|
347 |
msgid "Sorry, no subscriptions match your search criteria."
|
348 |
msgstr "Spiacente, nessuna iscrizione soddisfa i tuoi parametri di ricerca."
|
349 |
|
350 |
-
#: options/panel10.php:
|
351 |
msgid "The log file has been successfully deleted."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: options/panel10.php:
|
355 |
msgid "Can't delete the log file, check the file permissions."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: options/panel10.php:
|
359 |
msgid "The log file does not exists."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: options/panel10.php:
|
363 |
msgid "Enable Log Information"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: options/panel10.php:
|
367 |
msgid "Enable Auto clean log data"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: options/panel10.php:
|
371 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
372 |
msgid "Your settings have been successfully updated."
|
373 |
msgstr "La configurazione è stata aggiornata con successo."
|
374 |
|
375 |
-
#: options/panel10.php:
|
376 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
377 |
msgid "There was an error updating the following fields:"
|
378 |
msgstr ""
|
379 |
"Si è verificato un errore nell'aggiornamento dei seguenti campi:"
|
380 |
|
381 |
-
#: options/panel10.php:
|
382 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
-
#: options/panel5.php:
|
387 |
msgid "Yes"
|
388 |
msgstr "Si"
|
389 |
|
390 |
-
#: options/panel10.php:
|
391 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
-
#: options/panel5.php:
|
396 |
msgid "No"
|
397 |
msgstr "No"
|
398 |
|
399 |
-
#: options/panel10.php:
|
400 |
msgid ""
|
401 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
402 |
"purposes."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: options/panel10.php:
|
406 |
msgid "Hourly"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: options/panel10.php:
|
410 |
msgid "Twice Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: options/panel10.php:
|
414 |
msgid "Daily"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: options/panel10.php:
|
418 |
msgid "If enabled, StCR will auto clean your information every day."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: options/panel10.php:
|
422 |
msgid "Clean Up Log Archive"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: options/panel10.php:
|
426 |
msgid ""
|
427 |
"If you want to clean up the log archive please click the following button"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: options/panel10.php:
|
431 |
msgid "Clean"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: options/panel10.php:
|
435 |
msgid "System Information"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: options/panel10.php:
|
439 |
-
#: options/panel4.php:283 options/panel5.php:
|
440 |
msgid "Save Changes"
|
441 |
msgstr "Salva le opzioni"
|
442 |
|
@@ -786,7 +782,7 @@ msgstr "Solo risposte"
|
|
786 |
#: options/panel4.php:128
|
787 |
msgid ""
|
788 |
"This will be use when the user click reply on their email agent. If not set "
|
789 |
-
"will be the same as the Sender email address."
|
790 |
msgstr ""
|
791 |
|
792 |
#: options/panel4.php:147
|
@@ -802,8 +798,8 @@ msgstr ""
|
|
802 |
|
803 |
#: options/panel4.php:171
|
804 |
msgid ""
|
805 |
-
"<p><strong>Note: To get a default template clear
|
806 |
-
"the options.</strong></p>"
|
807 |
msgstr ""
|
808 |
|
809 |
#: options/panel4.php:184
|
@@ -850,79 +846,96 @@ msgid ""
|
|
850 |
"[blog_name]"
|
851 |
msgstr "Oggetto dell'email di notifica. Tag consentito: [post_title]"
|
852 |
|
853 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
msgid "Show StCR checkbox / dropdown"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: options/panel5.php:
|
858 |
msgid "Safetly Uninstall"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: options/panel5.php:
|
862 |
msgid "Autopurge requests"
|
863 |
msgstr "Pulizia DB"
|
864 |
|
865 |
-
#: options/panel5.php:
|
866 |
msgid "Enable double check"
|
867 |
msgstr "Attiva doppia conferma"
|
868 |
|
869 |
-
#: options/panel5.php:
|
870 |
msgid "StCR Position"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: options/panel5.php:
|
874 |
msgid "Subscribe authors"
|
875 |
msgstr "Descrizione per gli iscritti"
|
876 |
|
877 |
-
#: options/panel5.php:
|
878 |
msgid "Enable HTML emails"
|
879 |
msgstr "Abilita email HTML"
|
880 |
|
881 |
-
#: options/panel5.php:
|
882 |
msgid "HTMLify Links in HTML emails"
|
883 |
msgstr ""
|
884 |
|
885 |
-
#: options/panel5.php:
|
886 |
msgid "Send trackbacks"
|
887 |
msgstr "Notifica trackbacks"
|
888 |
|
889 |
-
#: options/panel5.php:
|
890 |
msgid "Notify admin"
|
891 |
msgstr "Notifica amministratore"
|
892 |
|
893 |
-
#: options/panel5.php:
|
894 |
msgid "Let admin subscribe"
|
895 |
msgstr "Consenti iscrizione per admin"
|
896 |
|
897 |
-
#: options/panel5.php:
|
898 |
msgid "BCC admin on Notifications"
|
899 |
msgstr "Notifiche"
|
900 |
|
901 |
-
#: options/panel5.php:
|
902 |
msgid "Enable Font Awesome"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
906 |
msgid ""
|
907 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
908 |
"You should leave it to Yes always. "
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: options/panel5.php:
|
912 |
msgid "Safely Uninstall"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: options/panel5.php:
|
916 |
msgid ""
|
917 |
"This option will allow you to delete the plugin with WordPress without "
|
918 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: options/panel5.php:
|
922 |
msgid "days"
|
923 |
msgstr "giorni"
|
924 |
|
925 |
-
#: options/panel5.php:
|
926 |
msgid ""
|
927 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
928 |
"this feature."
|
@@ -930,14 +943,14 @@ msgstr ""
|
|
930 |
"Cancella le iscrizioni non confermate dopo X giorni. Zero disabilita la "
|
931 |
"funzione."
|
932 |
|
933 |
-
#: options/panel5.php:
|
934 |
msgid ""
|
935 |
"If this option is enable the subscription box will be above the submit "
|
936 |
"button in your comment form. Use this when your theme is outdated and using "
|
937 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: options/panel5.php:
|
941 |
msgid ""
|
942 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
943 |
"misuse)."
|
@@ -945,12 +958,12 @@ msgstr ""
|
|
945 |
"Invia una email per confermare l'iscrizione ad un dato articolo (per evitare "
|
946 |
"l'uso scorretto di indirizzi email di terzi)."
|
947 |
|
948 |
-
#: options/panel5.php:
|
949 |
msgid ""
|
950 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: options/panel5.php:
|
954 |
msgid ""
|
955 |
"If enabled, will send email messages with content-type = text/html instead "
|
956 |
"of text/plain"
|
@@ -958,78 +971,102 @@ msgstr ""
|
|
958 |
"Se abilitato, invia messaggi email con il content-type = text/html invece "
|
959 |
"che text/plain"
|
960 |
|
961 |
-
#: options/panel5.php:
|
962 |
msgid "HTMLify links in emails"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: options/panel5.php:
|
966 |
msgid ""
|
967 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
968 |
"</a></code> (only when HTML emails enabled)."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: options/panel5.php:
|
972 |
msgid "Process trackbacks"
|
973 |
msgstr "Notifica trackback"
|
974 |
|
975 |
-
#: options/panel5.php:
|
976 |
msgid ""
|
977 |
"Notify users when a new trackback or pingback is added to the discussion."
|
978 |
msgstr ""
|
979 |
"Invia una notifica anche per pingback e trackback aggiunti alla discussione."
|
980 |
|
981 |
-
#: options/panel5.php:
|
982 |
msgid "Track all subscriptions"
|
983 |
msgstr "Traccia iscrizioni"
|
984 |
|
985 |
-
#: options/panel5.php:
|
986 |
msgid "Notify the administrator when users subscribe without commenting."
|
987 |
msgstr ""
|
988 |
"Notifica l'amministratore quando un utente si iscrive senza commentare."
|
989 |
|
990 |
-
#: options/panel5.php:
|
991 |
msgid "Let the administrator subscribe to comments when logged in."
|
992 |
msgstr ""
|
993 |
"Consenti anche all'amministratore ed agli utenti registrati di iscriversi "
|
994 |
"alle discussioni."
|
995 |
|
996 |
-
#: options/panel5.php:
|
997 |
msgid "Send a copy of all Notifications to the administrator."
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: options/panel5.php:
|
1001 |
msgid ""
|
1002 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1003 |
"you theme already add this into your site."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: options/panel5.php:
|
1007 |
msgid "StCR Unique Key"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: options/panel5.php:
|
1011 |
msgid "This Unique Key is not set, please click the following button to "
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: options/panel5.php:
|
1015 |
msgid "Generate"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: options/panel5.php:
|
1019 |
msgid ""
|
1020 |
"This Unique Key will be use to send the notification to your subscribers "
|
1021 |
"with more security."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: options/
|
1025 |
-
msgid "
|
1026 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1027 |
|
1028 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
msgid ""
|
1030 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1031 |
"consider supporting the author if this plugin made your web site better, "
|
1032 |
-
"especially if you are making money out of it
|
|
|
1033 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1034 |
"strong>, and to buy some food for my hungry family."
|
1035 |
msgstr ""
|
@@ -1042,18 +1079,27 @@ msgstr ""
|
|
1042 |
"Comments reloaded (hosting, programmi, ecc) e per comprare un po' di cibo "
|
1043 |
"per la mia famiglia affamata."
|
1044 |
|
1045 |
-
#: options/panel7.php:
|
1046 |
-
|
1047 |
-
|
|
|
|
|
1048 |
|
1049 |
-
#: options/panel7.php:
|
1050 |
-
|
1051 |
-
|
1052 |
-
"
|
1053 |
-
"
|
1054 |
-
"
|
1055 |
-
"
|
1056 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1057 |
msgstr ""
|
1058 |
"Se non ritieni opportuno donare una cifra in denaro, puoi sempre scrivere un "
|
1059 |
"post sul tuo blog che parli di Subscribe to Comments Reloaded, ed aggiungere "
|
@@ -1064,11 +1110,11 @@ msgstr ""
|
|
1064 |
"migliore. Qualsiasi cosa tu decida di fare, grazie per star usando il mio "
|
1065 |
"plugin!"
|
1066 |
|
1067 |
-
#: options/panel7.php:
|
1068 |
msgid "Subscribe to the Beta testers"
|
1069 |
msgstr "Descrizione per gli iscritti"
|
1070 |
|
1071 |
-
#: options/panel7.php:
|
1072 |
msgid ""
|
1073 |
"Before a new Update we release a Beta version so that our current users can "
|
1074 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1076,11 +1122,11 @@ msgid ""
|
|
1076 |
"a>"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: options/panel7.php:
|
1080 |
msgid "Vote and show your appreciation"
|
1081 |
msgstr "Vota e condividi"
|
1082 |
|
1083 |
-
#: options/panel7.php:
|
1084 |
msgid ""
|
1085 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1086 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1090,11 +1136,11 @@ msgstr ""
|
|
1090 |
"quanto ti piace. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1091 |
"comments-reloaded/\">Votalo</a> sulla pagina apposita di Wordpress."
|
1092 |
|
1093 |
-
#: options/panel8.php:
|
1094 |
msgid "Did you find a Bug on the plugin?"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: options/panel8.php:
|
1098 |
msgid ""
|
1099 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1100 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1188,211 +1234,45 @@ msgstr ""
|
|
1188 |
msgid "You have request to manage another email address and this is forbidden."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: utils/stcr_manage.php:
|
1192 |
-
msgid ""
|
1193 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1194 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1195 |
-
msgstr ""
|
1196 |
-
"Ricevi un avviso se ci sono nuovi commenti. Oppure <a "
|
1197 |
-
"href='[subscribe_link]'>iscriviti</a> senza commentare."
|
1198 |
-
|
1199 |
-
#: utils/stcr_manage.php:224
|
1200 |
-
msgid ""
|
1201 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1202 |
-
"subscriptions."
|
1203 |
-
msgstr ""
|
1204 |
-
"Sei già iscritto a quest'articolo. Se vuoi, puoi <a "
|
1205 |
-
"href='[manager_link]'>gestire</a> il tuo profilo."
|
1206 |
-
|
1207 |
-
#: utils/stcr_manage.php:225
|
1208 |
-
msgid ""
|
1209 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1210 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1211 |
-
msgstr ""
|
1212 |
-
"La tua iscrizione è in attesa di conferma. Se vuoi, puoi <a "
|
1213 |
-
"href='[manager_link]'>gestire</a> il tuo profilo."
|
1214 |
-
|
1215 |
-
#: utils/stcr_manage.php:226
|
1216 |
-
msgid ""
|
1217 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1218 |
-
msgstr ""
|
1219 |
-
"Gestisci gli utenti <a href='[manager_link]'>iscritti</a> alla discussione."
|
1220 |
-
|
1221 |
-
#: utils/stcr_manage.php:232
|
1222 |
-
msgid ""
|
1223 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1224 |
-
"will send you a message containing the link to access your personal "
|
1225 |
-
"management page."
|
1226 |
-
msgstr ""
|
1227 |
-
"Al fine di gestire le tue iscrizioni, inserisci il tuo indirizzo email nel "
|
1228 |
-
"campo qui di seguito. Ti sarà inviato un messaggio contenente il link "
|
1229 |
-
"per accedere alla tua area riservata."
|
1230 |
-
|
1231 |
-
#: utils/stcr_manage.php:233
|
1232 |
-
msgid ""
|
1233 |
-
"Thank you for using our subscription service. Your request has been "
|
1234 |
-
"completed, and you should receive an email with the management link in a few "
|
1235 |
-
"minutes."
|
1236 |
-
msgstr ""
|
1237 |
-
"Grazie per aver usato il servizio di notifica di questo blog. La tua "
|
1238 |
-
"richiesta è stata completata, e dovresti ricevere una mail fra pochi "
|
1239 |
-
"minuti. Al suo interno troverai il link personalizzato per accedere alla tua "
|
1240 |
-
"area di gestione."
|
1241 |
-
|
1242 |
-
#: utils/stcr_manage.php:234
|
1243 |
-
msgid ""
|
1244 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1245 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1246 |
-
"form here below and you're all set."
|
1247 |
-
msgstr ""
|
1248 |
-
"Puoi seguire la discussione su <strong>[post_title]</strong> senza dover "
|
1249 |
-
"lasciare un commento. Bello, no? Ti basta inserire il tuo indirizzo email "
|
1250 |
-
"nel campo qui sotto e premere invio, al resto pensa il sistema."
|
1251 |
-
|
1252 |
-
#: utils/stcr_manage.php:235
|
1253 |
-
msgid ""
|
1254 |
-
"Thank you for using our subscription service. Your request has been "
|
1255 |
-
"completed. You will receive a notification email every time a new comment to "
|
1256 |
-
"this article is approved and posted by the administrator."
|
1257 |
-
msgstr ""
|
1258 |
-
"Grazie per aver usato il servizio di notifica di questo blog. La tua "
|
1259 |
-
"richiesta è stata completata. Riceverai una notifica ogni volta che "
|
1260 |
-
"un nuovo commento a quell'articolo viene approvato e pubblicato "
|
1261 |
-
"dall'amministratore del sito."
|
1262 |
-
|
1263 |
-
#: utils/stcr_manage.php:236
|
1264 |
-
msgid ""
|
1265 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1266 |
-
"request, please check your email for the verification message and follow the "
|
1267 |
-
"instructions."
|
1268 |
-
msgstr ""
|
1269 |
-
"Grazie per aver usato il servizio di notifica di questo blog. Al fine di "
|
1270 |
-
"completare la tua richiesta, ti è stata inviata una email di "
|
1271 |
-
"conferma. Segui le semplici istruzioni per verificare la tua identità."
|
1272 |
-
|
1273 |
-
#: utils/stcr_manage.php:237
|
1274 |
-
msgid ""
|
1275 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1276 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1277 |
-
msgstr ""
|
1278 |
-
"Se desideri disdire o sospendere le tue notifiche, spunta la casella "
|
1279 |
-
"corrispondente all'articolo e clicca sul pulsante in fondo alla lista."
|
1280 |
-
|
1281 |
-
#: utils/stcr_manage.php:238
|
1282 |
-
msgid ""
|
1283 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1284 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1285 |
-
"You are currently subscribed to:"
|
1286 |
-
msgstr ""
|
1287 |
-
"Se desideri disdire o sospendere le tue notifiche, spunta la casella "
|
1288 |
-
"corrispondente all'articolo e clicca sul pulsante in fondo alla lista. Al "
|
1289 |
-
"momento, risulti iscritto a:"
|
1290 |
-
|
1291 |
-
#: utils/stcr_manage.php:242
|
1292 |
-
msgid "There is a new comment to [post_title]"
|
1293 |
-
msgstr "Nuovo commento per [post_title]"
|
1294 |
-
|
1295 |
-
#: utils/stcr_manage.php:243
|
1296 |
-
msgid ""
|
1297 |
-
"There is a new comment to [post_title].\n"
|
1298 |
-
"Comment Link: [comment_permalink]\n"
|
1299 |
-
"Author: [comment_author]\n"
|
1300 |
-
"Comment:\n"
|
1301 |
-
"[comment_content]\n"
|
1302 |
-
"Permalink: [post_permalink]\n"
|
1303 |
-
"Manage your subscriptions: [manager_link]"
|
1304 |
-
msgstr ""
|
1305 |
-
"L'utente [comment_author] ha lasciato un nuovo commento a '[post_title]':\n"
|
1306 |
-
"[comment_permalink]\n"
|
1307 |
-
"\n"
|
1308 |
-
"Commento:\n"
|
1309 |
-
"[comment_content]\n"
|
1310 |
-
"\n"
|
1311 |
-
"Permalink: [post_permalink]\n"
|
1312 |
-
"Gestisci le tue iscrizioni: [manager_link]"
|
1313 |
-
|
1314 |
-
#: utils/stcr_manage.php:244
|
1315 |
-
msgid "Please confirm your subscription to [post_title]"
|
1316 |
-
msgstr "Conferma la tua iscrizione a [post_title]"
|
1317 |
-
|
1318 |
-
#: utils/stcr_manage.php:245
|
1319 |
-
msgid ""
|
1320 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1321 |
-
"[post_permalink]\n"
|
1322 |
-
"\n"
|
1323 |
-
"Please confirm your request by clicking on this link:\n"
|
1324 |
-
"[confirm_link]"
|
1325 |
-
msgstr ""
|
1326 |
-
"Abbiamo ricevuto una richiesta di iscrizione al nostro servizio "
|
1327 |
-
"automatizzato di notifiche, per l'articolo:\n"
|
1328 |
-
"[post_permalink]\n"
|
1329 |
-
"\n"
|
1330 |
-
"Per confermare, clicca sul collegamento qui di seguito:\n"
|
1331 |
-
"[confirm_link]\n"
|
1332 |
-
"\n"
|
1333 |
-
"Se credi di aver ricevuto questo messaggio per errore, ti preghiamo di "
|
1334 |
-
"rispondere all'email per contattare l'amministratore."
|
1335 |
-
|
1336 |
-
#: utils/stcr_manage.php:246
|
1337 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1338 |
-
msgstr "Gestisci le tue iscrizioni su [blog_name]"
|
1339 |
-
|
1340 |
-
#: utils/stcr_manage.php:247
|
1341 |
-
msgid ""
|
1342 |
-
"You have requested to manage your subscriptions to the articles on "
|
1343 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1344 |
-
msgstr ""
|
1345 |
-
|
1346 |
-
#: utils/stcr_manage.php:248
|
1347 |
-
msgid ""
|
1348 |
-
"You have requested to manage your subscriptions to the articles on "
|
1349 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1350 |
-
"[manager_link]"
|
1351 |
-
msgstr ""
|
1352 |
-
"Hai richiesto di poter gestire le tue iscrizioni agli articoli su "
|
1353 |
-
"[blog_name]. Clicca sul link qui di seguito per accedere alla tua area "
|
1354 |
-
"riservata:\n"
|
1355 |
-
"[manager_link]"
|
1356 |
-
|
1357 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1358 |
msgid "StCR System"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: utils/stcr_manage.php:
|
1362 |
-
#: utils/stcr_manage.php:
|
1363 |
-
#: utils/stcr_manage.php:
|
1364 |
-
#: utils/stcr_manage.php:
|
1365 |
-
#: utils/stcr_manage.php:
|
1366 |
msgid "You do not have sufficient permissions to access this page."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: utils/stcr_manage.php:
|
1370 |
msgid "Subscriptions"
|
1371 |
msgstr "Iscrizione"
|
1372 |
|
1373 |
-
#: utils/stcr_manage.php:
|
1374 |
msgid ""
|
1375 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1376 |
msgstr ""
|
1377 |
"Serve aiuto su come usare al meglio Subscribe to Comments Reloaded? Visita il"
|
1378 |
|
1379 |
-
#: utils/stcr_manage.php:
|
1380 |
msgid "support forum"
|
1381 |
msgstr "forum di supporto"
|
1382 |
|
1383 |
-
#: utils/stcr_manage.php:
|
1384 |
msgid "Feeling generous?"
|
1385 |
msgstr "Ti senti generoso?"
|
1386 |
|
1387 |
-
#: utils/stcr_manage.php:
|
1388 |
msgid "Donate a few bucks!"
|
1389 |
msgstr "Dona qualche euro!"
|
1390 |
|
1391 |
-
#: utils/stcr_upgrade.php:
|
1392 |
msgid "Important Notice"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: utils/stcr_upgrade.php:
|
1396 |
msgid ""
|
1397 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1398 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1400,28 +1280,28 @@ msgid ""
|
|
1400 |
"src=\""
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: utils/stcr_upgrade.php:
|
1404 |
msgid ""
|
1405 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1406 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1407 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: utils/stcr_upgrade.php:
|
1411 |
msgid ""
|
1412 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1413 |
"Comments to prevent confusion between the two plugins."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: utils/stcr_upgrade.php:
|
1417 |
msgid ""
|
1418 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1419 |
"that you want to import, you'll need to import that data manually, as only "
|
1420 |
"one import routine will ever run to prevent data loss."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: utils/stcr_upgrade.php:
|
1424 |
-
#: utils/stcr_upgrade.php:
|
1425 |
msgid ""
|
1426 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1427 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1429,20 +1309,20 @@ msgid ""
|
|
1429 |
"\"stcr-loading-animation\" src=\""
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#: utils/stcr_upgrade.php:
|
1433 |
msgid ""
|
1434 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1435 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1436 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: utils/stcr_upgrade.php:
|
1440 |
msgid ""
|
1441 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1442 |
"Notification to prevent confusion between the two plugins."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: utils/stcr_upgrade.php:
|
1446 |
msgid ""
|
1447 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1448 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1450,13 +1330,13 @@ msgid ""
|
|
1450 |
"Reloaded</strong>."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: utils/stcr_upgrade.php:
|
1454 |
msgid ""
|
1455 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1456 |
"Subscriptions to prevent confusion between the two plugins."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: utils/stcr_upgrade.php:
|
1460 |
msgid ""
|
1461 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1462 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1464,7 +1344,7 @@ msgid ""
|
|
1464 |
"ever run to prevent data loss."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: utils/stcr_upgrade.php:
|
1468 |
msgid ""
|
1469 |
"<strong>Note:</strong> If you were previously using the "
|
1470 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1473,29 +1353,29 @@ msgid ""
|
|
1473 |
"respectively."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: utils/stcr_upgrade.php:
|
1477 |
msgid ""
|
1478 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: utils/stcr_upgrade.php:
|
1482 |
-
#: utils/stcr_upgrade.php:
|
1483 |
msgid ""
|
1484 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1485 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: utils/stcr_upgrade.php:
|
1489 |
msgid ""
|
1490 |
-
"Please consider to make a donation to support the plugin
|
1491 |
-
"<a href=\"\n"
|
1492 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1493 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1494 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1495 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: utils/stcr_upgrade.php:
|
1499 |
msgid ""
|
1500 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1501 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1503,23 +1383,23 @@ msgid ""
|
|
1503 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: utils/stcr_upgrade.php:
|
1507 |
msgid ""
|
1508 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1509 |
"160106."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: utils/stcr_upgrade.php:
|
1513 |
msgid ""
|
1514 |
"This version includes many changes and fixes to improve your experience with "
|
1515 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1516 |
"email templates, Subscription Checkbox position, and more!"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: utils/stcr_upgrade.php:
|
1520 |
-
#: utils/stcr_upgrade.php:
|
1521 |
-
#: utils/stcr_upgrade.php:
|
1522 |
-
#: utils/stcr_upgrade.php:
|
1523 |
msgid ""
|
1524 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1525 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1527,123 +1407,126 @@ msgid ""
|
|
1527 |
"class=\"stcr-loading-animation\" src=\""
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: utils/stcr_upgrade.php:
|
1531 |
msgid ""
|
1532 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1533 |
"160115."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: utils/stcr_upgrade.php:
|
1537 |
msgid ""
|
1538 |
"This version includes fixes to broken links while managing your subscriptions"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: utils/stcr_upgrade.php:
|
1542 |
msgid ""
|
1543 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1544 |
"160831"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: utils/stcr_upgrade.php:
|
1548 |
msgid "This version includes fixes to many bugs and also new features, "
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: utils/stcr_upgrade.php:
|
1552 |
msgid ""
|
1553 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1554 |
"address. This will help the subscribers to use the Reply option in their "
|
1555 |
"email agents."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: utils/stcr_upgrade.php:
|
1559 |
msgid ""
|
1560 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1561 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: utils/stcr_upgrade.php:
|
1565 |
msgid ""
|
1566 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1567 |
"without loosing your subscriptions. You can use this option also for reset "
|
1568 |
"all the settings, see the FAQ."
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: utils/stcr_upgrade.php:
|
1572 |
msgid ""
|
1573 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1574 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1575 |
"Post Type."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: utils/stcr_upgrade.php:
|
1579 |
msgid ""
|
1580 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1581 |
"options to and the management link only by email and not to display it on "
|
1582 |
"the request link page."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: utils/stcr_upgrade.php:
|
1586 |
msgid ""
|
1587 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1588 |
"160902"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: utils/stcr_upgrade.php:
|
1592 |
msgid ""
|
1593 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1594 |
"previous 160831 version."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: utils/stcr_upgrade.php:
|
1598 |
msgid "Settings"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: utils/stcr_upgrade.php:
|
1602 |
msgid ""
|
1603 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1604 |
"160915"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: utils/stcr_upgrade.php:
|
1608 |
-
#: utils/stcr_upgrade.php:
|
1609 |
msgid "This version includes fixes and improvements, "
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: utils/stcr_upgrade.php:
|
1613 |
msgid ""
|
1614 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1615 |
"dropdown."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: utils/stcr_upgrade.php:
|
1619 |
msgid ""
|
1620 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
|
|
1624 |
msgid "Log Settings"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: utils/stcr_upgrade.php:
|
|
|
1628 |
msgid ""
|
1629 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: utils/stcr_upgrade.php:
|
1633 |
msgid ""
|
1634 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1635 |
"enable."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: utils/stcr_upgrade.php:
|
1639 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: utils/stcr_upgrade.php:
|
|
|
1643 |
msgid "The support of this plugin is given thanks to your donations."
|
1644 |
msgstr ""
|
1645 |
|
1646 |
-
#: utils/stcr_upgrade.php:
|
1647 |
msgid ""
|
1648 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1649 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1653,19 +1536,19 @@ msgid ""
|
|
1653 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: utils/stcr_upgrade.php:
|
1657 |
msgid ""
|
1658 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1659 |
"installation regarding a database table creation."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: utils/stcr_upgrade.php:
|
1663 |
msgid ""
|
1664 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1665 |
"Awesome."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: utils/stcr_upgrade.php:
|
1669 |
msgid ""
|
1670 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1671 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1676,7 +1559,208 @@ msgid ""
|
|
1676 |
"for the users that have supported the plugin development."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1680 |
msgid "StCR Notification"
|
1681 |
msgstr "Notifiche"
|
1682 |
|
@@ -1688,6 +1772,31 @@ msgstr "Non iscrivermi"
|
|
1688 |
msgid "All"
|
1689 |
msgstr "Tutti"
|
1690 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1691 |
#~ msgid ""
|
1692 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1693 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:09-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:11-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 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Gestisci iscrizioni"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Modulo per inviare commenti"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Pagina di gestione"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Notifiche"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Opzioni"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "Supporto"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr ""
|
48 |
|
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:41
|
347 |
msgid "The log file has been successfully deleted."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: options/panel10.php:46
|
351 |
msgid "Can't delete the log file, check the file permissions."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: options/panel10.php:52
|
355 |
msgid "The log file does not exists."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: options/panel10.php:66 options/panel10.php:110
|
359 |
msgid "Enable Log Information"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: options/panel10.php:72 options/panel10.php:119
|
363 |
msgid "Enable Auto clean log data"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
367 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
368 |
msgid "Your settings have been successfully updated."
|
369 |
msgstr "La configurazione è stata aggiornata con successo."
|
370 |
|
371 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
372 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
373 |
msgid "There was an error updating the following fields:"
|
374 |
msgstr ""
|
375 |
"Si è verificato un errore nell'aggiornamento dei seguenti campi:"
|
376 |
|
377 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
378 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
379 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
380 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
381 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
382 |
+
#: options/panel5.php:210 options/panel5.php:219
|
383 |
msgid "Yes"
|
384 |
msgstr "Si"
|
385 |
|
386 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
387 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
388 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
389 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
390 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
391 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
392 |
msgid "No"
|
393 |
msgstr "No"
|
394 |
|
395 |
+
#: options/panel10.php:114
|
396 |
msgid ""
|
397 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
398 |
"purposes."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: options/panel10.php:125
|
402 |
msgid "Hourly"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: options/panel10.php:126
|
406 |
msgid "Twice Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: options/panel10.php:127
|
410 |
msgid "Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: options/panel10.php:129
|
414 |
msgid "If enabled, StCR will auto clean your information every day."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: options/panel10.php:134
|
418 |
msgid "Clean Up Log Archive"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: options/panel10.php:138
|
422 |
msgid ""
|
423 |
"If you want to clean up the log archive please click the following button"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: options/panel10.php:140
|
427 |
msgid "Clean"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: options/panel10.php:147 options/panel10.php:150
|
431 |
msgid "System Information"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
435 |
+
#: options/panel4.php:283 options/panel5.php:265
|
436 |
msgid "Save Changes"
|
437 |
msgstr "Salva le opzioni"
|
438 |
|
782 |
#: options/panel4.php:128
|
783 |
msgid ""
|
784 |
"This will be use when the user click reply on their email agent. If not set "
|
785 |
+
"it will be the same as the Sender email address."
|
786 |
msgstr ""
|
787 |
|
788 |
#: options/panel4.php:147
|
798 |
|
799 |
#: options/panel4.php:171
|
800 |
msgid ""
|
801 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
802 |
+
"all the content and save the options.</strong></p>"
|
803 |
msgstr ""
|
804 |
|
805 |
#: options/panel4.php:184
|
846 |
"[blog_name]"
|
847 |
msgstr "Oggetto dell'email di notifica. Tag consentito: [post_title]"
|
848 |
|
849 |
+
#: options/panel5.php:38
|
850 |
+
#, fuzzy
|
851 |
+
#| msgid "Your settings have been successfully updated."
|
852 |
+
msgid "Your settings have been successfully reset."
|
853 |
+
msgstr "La configurazione è stata aggiornata con successo."
|
854 |
+
|
855 |
+
#: options/panel5.php:40
|
856 |
+
#, fuzzy
|
857 |
+
#| msgid "There was an error updating the following fields:"
|
858 |
+
msgid "There was an error deleting the options:"
|
859 |
+
msgstr ""
|
860 |
+
"Si è verificato un errore nell'aggiornamento dei seguenti campi:"
|
861 |
+
|
862 |
+
#: options/panel5.php:48 options/panel5.php:108
|
863 |
msgid "Show StCR checkbox / dropdown"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: options/panel5.php:51
|
867 |
msgid "Safetly Uninstall"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: options/panel5.php:54 options/panel5.php:125
|
871 |
msgid "Autopurge requests"
|
872 |
msgstr "Pulizia DB"
|
873 |
|
874 |
+
#: options/panel5.php:57 options/panel5.php:143
|
875 |
msgid "Enable double check"
|
876 |
msgstr "Attiva doppia conferma"
|
877 |
|
878 |
+
#: options/panel5.php:60 options/panel5.php:134
|
879 |
msgid "StCR Position"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: options/panel5.php:63 options/panel5.php:151
|
883 |
msgid "Subscribe authors"
|
884 |
msgstr "Descrizione per gli iscritti"
|
885 |
|
886 |
+
#: options/panel5.php:66 options/panel5.php:161
|
887 |
msgid "Enable HTML emails"
|
888 |
msgstr "Abilita email HTML"
|
889 |
|
890 |
+
#: options/panel5.php:69
|
891 |
msgid "HTMLify Links in HTML emails"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: options/panel5.php:72
|
895 |
msgid "Send trackbacks"
|
896 |
msgstr "Notifica trackbacks"
|
897 |
|
898 |
+
#: options/panel5.php:75
|
899 |
msgid "Notify admin"
|
900 |
msgstr "Notifica amministratore"
|
901 |
|
902 |
+
#: options/panel5.php:78 options/panel5.php:199
|
903 |
msgid "Let admin subscribe"
|
904 |
msgstr "Consenti iscrizione per admin"
|
905 |
|
906 |
+
#: options/panel5.php:81 options/panel5.php:208
|
907 |
msgid "BCC admin on Notifications"
|
908 |
msgstr "Notifiche"
|
909 |
|
910 |
+
#: options/panel5.php:84 options/panel5.php:217
|
911 |
msgid "Enable Font Awesome"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
915 |
+
msgid "Reset All Options"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: options/panel5.php:112
|
919 |
msgid ""
|
920 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
921 |
"You should leave it to Yes always. "
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: options/panel5.php:117
|
925 |
msgid "Safely Uninstall"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: options/panel5.php:121
|
929 |
msgid ""
|
930 |
"This option will allow you to delete the plugin with WordPress without "
|
931 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: options/panel5.php:128
|
935 |
msgid "days"
|
936 |
msgstr "giorni"
|
937 |
|
938 |
+
#: options/panel5.php:129
|
939 |
msgid ""
|
940 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
941 |
"this feature."
|
943 |
"Cancella le iscrizioni non confermate dopo X giorni. Zero disabilita la "
|
944 |
"funzione."
|
945 |
|
946 |
+
#: options/panel5.php:138
|
947 |
msgid ""
|
948 |
"If this option is enable the subscription box will be above the submit "
|
949 |
"button in your comment form. Use this when your theme is outdated and using "
|
950 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: options/panel5.php:147
|
954 |
msgid ""
|
955 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
956 |
"misuse)."
|
958 |
"Invia una email per confermare l'iscrizione ad un dato articolo (per evitare "
|
959 |
"l'uso scorretto di indirizzi email di terzi)."
|
960 |
|
961 |
+
#: options/panel5.php:156
|
962 |
msgid ""
|
963 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: options/panel5.php:165
|
967 |
msgid ""
|
968 |
"If enabled, will send email messages with content-type = text/html instead "
|
969 |
"of text/plain"
|
971 |
"Se abilitato, invia messaggi email con il content-type = text/html invece "
|
972 |
"che text/plain"
|
973 |
|
974 |
+
#: options/panel5.php:170
|
975 |
msgid "HTMLify links in emails"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: options/panel5.php:175
|
979 |
msgid ""
|
980 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
981 |
"</a></code> (only when HTML emails enabled)."
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: options/panel5.php:180
|
985 |
msgid "Process trackbacks"
|
986 |
msgstr "Notifica trackback"
|
987 |
|
988 |
+
#: options/panel5.php:184
|
989 |
msgid ""
|
990 |
"Notify users when a new trackback or pingback is added to the discussion."
|
991 |
msgstr ""
|
992 |
"Invia una notifica anche per pingback e trackback aggiunti alla discussione."
|
993 |
|
994 |
+
#: options/panel5.php:189
|
995 |
msgid "Track all subscriptions"
|
996 |
msgstr "Traccia iscrizioni"
|
997 |
|
998 |
+
#: options/panel5.php:194
|
999 |
msgid "Notify the administrator when users subscribe without commenting."
|
1000 |
msgstr ""
|
1001 |
"Notifica l'amministratore quando un utente si iscrive senza commentare."
|
1002 |
|
1003 |
+
#: options/panel5.php:203
|
1004 |
msgid "Let the administrator subscribe to comments when logged in."
|
1005 |
msgstr ""
|
1006 |
"Consenti anche all'amministratore ed agli utenti registrati di iscriversi "
|
1007 |
"alle discussioni."
|
1008 |
|
1009 |
+
#: options/panel5.php:212
|
1010 |
msgid "Send a copy of all Notifications to the administrator."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: options/panel5.php:221
|
1014 |
msgid ""
|
1015 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1016 |
"you theme already add this into your site."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: options/panel5.php:226
|
1020 |
msgid "StCR Unique Key"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: options/panel5.php:231
|
1024 |
msgid "This Unique Key is not set, please click the following button to "
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1028 |
msgid "Generate"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: options/panel5.php:243
|
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/panel5.php:256
|
1038 |
+
msgid ""
|
1039 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1040 |
+
"with caution."
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: options/panel5.php:258
|
1044 |
+
msgid "Yes, Delete Options including subscriptions."
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: options/panel5.php:259
|
1048 |
+
msgid "No, Only delete the StCR Options."
|
1049 |
+
msgstr ""
|
1050 |
|
1051 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1052 |
+
msgid ""
|
1053 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1054 |
+
"hidden=\"true\"></i>"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1058 |
+
#, fuzzy
|
1059 |
+
#| msgid ""
|
1060 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1061 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1062 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1063 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1064 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1065 |
msgid ""
|
1066 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1067 |
"consider supporting the author if this plugin made your web site better, "
|
1068 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1069 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1070 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1071 |
"strong>, and to buy some food for my hungry family."
|
1072 |
msgstr ""
|
1079 |
"Comments reloaded (hosting, programmi, ecc) e per comprare un po' di cibo "
|
1080 |
"per la mia famiglia affamata."
|
1081 |
|
1082 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1083 |
+
#, fuzzy
|
1084 |
+
#| msgid "You can help"
|
1085 |
+
msgid "You can still help"
|
1086 |
+
msgstr "Aiuto"
|
1087 |
|
1088 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1089 |
+
#, fuzzy
|
1090 |
+
#| msgid ""
|
1091 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1092 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1093 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1094 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1095 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1096 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1097 |
+
msgid ""
|
1098 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1099 |
+
"Please let your readers know what makes your blog better. You can also "
|
1100 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1101 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1102 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1103 |
msgstr ""
|
1104 |
"Se non ritieni opportuno donare una cifra in denaro, puoi sempre scrivere un "
|
1105 |
"post sul tuo blog che parli di Subscribe to Comments Reloaded, ed aggiungere "
|
1110 |
"migliore. Qualsiasi cosa tu decida di fare, grazie per star usando il mio "
|
1111 |
"plugin!"
|
1112 |
|
1113 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1114 |
msgid "Subscribe to the Beta testers"
|
1115 |
msgstr "Descrizione per gli iscritti"
|
1116 |
|
1117 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1118 |
msgid ""
|
1119 |
"Before a new Update we release a Beta version so that our current users can "
|
1120 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1122 |
"a>"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1126 |
msgid "Vote and show your appreciation"
|
1127 |
msgstr "Vota e condividi"
|
1128 |
|
1129 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1130 |
msgid ""
|
1131 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1132 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1136 |
"quanto ti piace. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1137 |
"comments-reloaded/\">Votalo</a> sulla pagina apposita di Wordpress."
|
1138 |
|
1139 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1140 |
msgid "Did you find a Bug on the plugin?"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1144 |
msgid ""
|
1145 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1146 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1234 |
msgid "You have request to manage another email address and this is forbidden."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1238 |
msgid "StCR System"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1242 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1243 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1244 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1245 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1246 |
msgid "You do not have sufficient permissions to access this page."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: utils/stcr_manage.php:726
|
1250 |
msgid "Subscriptions"
|
1251 |
msgstr "Iscrizione"
|
1252 |
|
1253 |
+
#: utils/stcr_manage.php:782
|
1254 |
msgid ""
|
1255 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1256 |
msgstr ""
|
1257 |
"Serve aiuto su come usare al meglio Subscribe to Comments Reloaded? Visita il"
|
1258 |
|
1259 |
+
#: utils/stcr_manage.php:782
|
1260 |
msgid "support forum"
|
1261 |
msgstr "forum di supporto"
|
1262 |
|
1263 |
+
#: utils/stcr_manage.php:783
|
1264 |
msgid "Feeling generous?"
|
1265 |
msgstr "Ti senti generoso?"
|
1266 |
|
1267 |
+
#: utils/stcr_manage.php:783
|
1268 |
msgid "Donate a few bucks!"
|
1269 |
msgstr "Dona qualche euro!"
|
1270 |
|
1271 |
+
#: utils/stcr_upgrade.php:72
|
1272 |
msgid "Important Notice"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: utils/stcr_upgrade.php:120
|
1276 |
msgid ""
|
1277 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1278 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1280 |
"src=\""
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: utils/stcr_upgrade.php:175
|
1284 |
msgid ""
|
1285 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1286 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1287 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: utils/stcr_upgrade.php:175
|
1291 |
msgid ""
|
1292 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1293 |
"Comments to prevent confusion between the two plugins."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: utils/stcr_upgrade.php:176
|
1297 |
msgid ""
|
1298 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1299 |
"that you want to import, you'll need to import that data manually, as only "
|
1300 |
"one import routine will ever run to prevent data loss."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1304 |
+
#: utils/stcr_upgrade.php:400
|
1305 |
msgid ""
|
1306 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1307 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1309 |
"\"stcr-loading-animation\" src=\""
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: utils/stcr_upgrade.php:250
|
1313 |
msgid ""
|
1314 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1315 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1316 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: utils/stcr_upgrade.php:250
|
1320 |
msgid ""
|
1321 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1322 |
"Notification to prevent confusion between the two plugins."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: utils/stcr_upgrade.php:397
|
1326 |
msgid ""
|
1327 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1328 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1330 |
"Reloaded</strong>."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: utils/stcr_upgrade.php:397
|
1334 |
msgid ""
|
1335 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1336 |
"Subscriptions to prevent confusion between the two plugins."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: utils/stcr_upgrade.php:398
|
1340 |
msgid ""
|
1341 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1342 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1344 |
"ever run to prevent data loss."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: utils/stcr_upgrade.php:399
|
1348 |
msgid ""
|
1349 |
"<strong>Note:</strong> If you were previously using the "
|
1350 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1353 |
"respectively."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: utils/stcr_upgrade.php:413
|
1357 |
msgid ""
|
1358 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1362 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1363 |
msgid ""
|
1364 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1365 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: utils/stcr_upgrade.php:415
|
1369 |
msgid ""
|
1370 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1371 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1372 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1373 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1374 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1375 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: utils/stcr_upgrade.php:417
|
1379 |
msgid ""
|
1380 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1381 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1383 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: utils/stcr_upgrade.php:428
|
1387 |
msgid ""
|
1388 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1389 |
"160106."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: utils/stcr_upgrade.php:429
|
1393 |
msgid ""
|
1394 |
"This version includes many changes and fixes to improve your experience with "
|
1395 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1396 |
"email templates, Subscription Checkbox position, and more!"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1400 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1401 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1402 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1403 |
msgid ""
|
1404 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1405 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1407 |
"class=\"stcr-loading-animation\" src=\""
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: utils/stcr_upgrade.php:443
|
1411 |
msgid ""
|
1412 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1413 |
"160115."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: utils/stcr_upgrade.php:444
|
1417 |
msgid ""
|
1418 |
"This version includes fixes to broken links while managing your subscriptions"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: utils/stcr_upgrade.php:458
|
1422 |
msgid ""
|
1423 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1424 |
"160831"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1428 |
msgid "This version includes fixes to many bugs and also new features, "
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1432 |
msgid ""
|
1433 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1434 |
"address. This will help the subscribers to use the Reply option in their "
|
1435 |
"email agents."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1439 |
msgid ""
|
1440 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1441 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1445 |
msgid ""
|
1446 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1447 |
"without loosing your subscriptions. You can use this option also for reset "
|
1448 |
"all the settings, see the FAQ."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1452 |
msgid ""
|
1453 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1454 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1455 |
"Post Type."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1459 |
msgid ""
|
1460 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1461 |
"options to and the management link only by email and not to display it on "
|
1462 |
"the request link page."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: utils/stcr_upgrade.php:480
|
1466 |
msgid ""
|
1467 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1468 |
"160902"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: utils/stcr_upgrade.php:483
|
1472 |
msgid ""
|
1473 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1474 |
"previous 160831 version."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1478 |
msgid "Settings"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: utils/stcr_upgrade.php:504
|
1482 |
msgid ""
|
1483 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1484 |
"160915"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1488 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1489 |
msgid "This version includes fixes and improvements, "
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: utils/stcr_upgrade.php:508
|
1493 |
msgid ""
|
1494 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1495 |
"dropdown."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: utils/stcr_upgrade.php:509
|
1499 |
msgid ""
|
1500 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1504 |
+
#: utils/stcr_upgrade.php:576
|
1505 |
msgid "Log Settings"
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1509 |
+
#: utils/stcr_upgrade.php:580
|
1510 |
msgid ""
|
1511 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: utils/stcr_upgrade.php:529
|
1515 |
msgid ""
|
1516 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1517 |
"enable."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: utils/stcr_upgrade.php:530
|
1521 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1525 |
+
#: utils/stcr_upgrade.php:590
|
1526 |
msgid "The support of this plugin is given thanks to your donations."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: utils/stcr_upgrade.php:536
|
1530 |
msgid ""
|
1531 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1532 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1536 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: utils/stcr_upgrade.php:557
|
1540 |
msgid ""
|
1541 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1542 |
"installation regarding a database table creation."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: utils/stcr_upgrade.php:558
|
1546 |
msgid ""
|
1547 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1548 |
"Awesome."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: utils/stcr_upgrade.php:563
|
1552 |
msgid ""
|
1553 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1554 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1559 |
"for the users that have supported the plugin development."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
+
#: utils/stcr_upgrade.php:584
|
1563 |
+
msgid ""
|
1564 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1565 |
+
"issues."
|
1566 |
+
msgstr ""
|
1567 |
+
|
1568 |
+
#: utils/stcr_upgrade.php:585
|
1569 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: utils/stcr_upgrade.php:586
|
1573 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1574 |
+
msgstr ""
|
1575 |
+
|
1576 |
+
#: utils/stcr_upgrade.php:591
|
1577 |
+
msgid ""
|
1578 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1579 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1580 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1581 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1582 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1583 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1584 |
+
"Thanks for all the users that have supported the plugin development."
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: utils/stcr_utils.php:196
|
1588 |
+
msgid ""
|
1589 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1590 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1591 |
+
msgstr ""
|
1592 |
+
"Ricevi un avviso se ci sono nuovi commenti. Oppure <a "
|
1593 |
+
"href='[subscribe_link]'>iscriviti</a> senza commentare."
|
1594 |
+
|
1595 |
+
#: utils/stcr_utils.php:197
|
1596 |
+
msgid ""
|
1597 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1598 |
+
"subscriptions."
|
1599 |
+
msgstr ""
|
1600 |
+
"Sei già iscritto a quest'articolo. Se vuoi, puoi <a "
|
1601 |
+
"href='[manager_link]'>gestire</a> il tuo profilo."
|
1602 |
+
|
1603 |
+
#: utils/stcr_utils.php:198
|
1604 |
+
msgid ""
|
1605 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1606 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1607 |
+
msgstr ""
|
1608 |
+
"La tua iscrizione è in attesa di conferma. Se vuoi, puoi <a "
|
1609 |
+
"href='[manager_link]'>gestire</a> il tuo profilo."
|
1610 |
+
|
1611 |
+
#: utils/stcr_utils.php:199
|
1612 |
+
msgid ""
|
1613 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1614 |
+
msgstr ""
|
1615 |
+
"Gestisci gli utenti <a href='[manager_link]'>iscritti</a> alla discussione."
|
1616 |
+
|
1617 |
+
#: utils/stcr_utils.php:205
|
1618 |
+
msgid ""
|
1619 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1620 |
+
"will send you a message containing the link to access your personal "
|
1621 |
+
"management page."
|
1622 |
+
msgstr ""
|
1623 |
+
"Al fine di gestire le tue iscrizioni, inserisci il tuo indirizzo email nel "
|
1624 |
+
"campo qui di seguito. Ti sarà inviato un messaggio contenente il link "
|
1625 |
+
"per accedere alla tua area riservata."
|
1626 |
+
|
1627 |
+
#: utils/stcr_utils.php:206
|
1628 |
+
msgid ""
|
1629 |
+
"Thank you for using our subscription service. Your request has been "
|
1630 |
+
"completed, and you should receive an email with the management link in a few "
|
1631 |
+
"minutes."
|
1632 |
+
msgstr ""
|
1633 |
+
"Grazie per aver usato il servizio di notifica di questo blog. La tua "
|
1634 |
+
"richiesta è stata completata, e dovresti ricevere una mail fra pochi "
|
1635 |
+
"minuti. Al suo interno troverai il link personalizzato per accedere alla tua "
|
1636 |
+
"area di gestione."
|
1637 |
+
|
1638 |
+
#: utils/stcr_utils.php:207
|
1639 |
+
msgid ""
|
1640 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1641 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1642 |
+
"form here below and you're all set."
|
1643 |
+
msgstr ""
|
1644 |
+
"Puoi seguire la discussione su <strong>[post_title]</strong> senza dover "
|
1645 |
+
"lasciare un commento. Bello, no? Ti basta inserire il tuo indirizzo email "
|
1646 |
+
"nel campo qui sotto e premere invio, al resto pensa il sistema."
|
1647 |
+
|
1648 |
+
#: utils/stcr_utils.php:208
|
1649 |
+
msgid ""
|
1650 |
+
"Thank you for using our subscription service. Your request has been "
|
1651 |
+
"completed. You will receive a notification email every time a new comment to "
|
1652 |
+
"this article is approved and posted by the administrator."
|
1653 |
+
msgstr ""
|
1654 |
+
"Grazie per aver usato il servizio di notifica di questo blog. La tua "
|
1655 |
+
"richiesta è stata completata. Riceverai una notifica ogni volta che "
|
1656 |
+
"un nuovo commento a quell'articolo viene approvato e pubblicato "
|
1657 |
+
"dall'amministratore del sito."
|
1658 |
+
|
1659 |
+
#: utils/stcr_utils.php:209
|
1660 |
+
msgid ""
|
1661 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1662 |
+
"request, please check your email for the verification message and follow the "
|
1663 |
+
"instructions."
|
1664 |
+
msgstr ""
|
1665 |
+
"Grazie per aver usato il servizio di notifica di questo blog. Al fine di "
|
1666 |
+
"completare la tua richiesta, ti è stata inviata una email di "
|
1667 |
+
"conferma. Segui le semplici istruzioni per verificare la tua identità."
|
1668 |
+
|
1669 |
+
#: utils/stcr_utils.php:210
|
1670 |
+
msgid ""
|
1671 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1672 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1673 |
+
msgstr ""
|
1674 |
+
"Se desideri disdire o sospendere le tue notifiche, spunta la casella "
|
1675 |
+
"corrispondente all'articolo e clicca sul pulsante in fondo alla lista."
|
1676 |
+
|
1677 |
+
#: utils/stcr_utils.php:211
|
1678 |
+
msgid ""
|
1679 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1680 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1681 |
+
"You are currently subscribed to:"
|
1682 |
+
msgstr ""
|
1683 |
+
"Se desideri disdire o sospendere le tue notifiche, spunta la casella "
|
1684 |
+
"corrispondente all'articolo e clicca sul pulsante in fondo alla lista. Al "
|
1685 |
+
"momento, risulti iscritto a:"
|
1686 |
+
|
1687 |
+
#: utils/stcr_utils.php:215
|
1688 |
+
msgid "There is a new comment to [post_title]"
|
1689 |
+
msgstr "Nuovo commento per [post_title]"
|
1690 |
+
|
1691 |
+
#: utils/stcr_utils.php:216
|
1692 |
+
msgid ""
|
1693 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1694 |
+
"\n"
|
1695 |
+
"<hr />\n"
|
1696 |
+
"<strong>Comment link:</strong> <a href="
|
1697 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1698 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1699 |
+
"\n"
|
1700 |
+
"<strong>Comment:</strong>\n"
|
1701 |
+
"[comment_content]\n"
|
1702 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1703 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1704 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1705 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1706 |
+
msgstr ""
|
1707 |
+
|
1708 |
+
#: utils/stcr_utils.php:217
|
1709 |
+
msgid "Please confirm your subscription to [post_title]"
|
1710 |
+
msgstr "Conferma la tua iscrizione a [post_title]"
|
1711 |
+
|
1712 |
+
#: utils/stcr_utils.php:218
|
1713 |
+
#, fuzzy
|
1714 |
+
#| msgid ""
|
1715 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1716 |
+
#| "[post_permalink]\n"
|
1717 |
+
#| "\n"
|
1718 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1719 |
+
#| "[confirm_link]"
|
1720 |
+
msgid ""
|
1721 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1722 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1723 |
+
"\n"
|
1724 |
+
"Please confirm your request by clicking on this link:\n"
|
1725 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1726 |
+
msgstr ""
|
1727 |
+
"Abbiamo ricevuto una richiesta di iscrizione al nostro servizio "
|
1728 |
+
"automatizzato di notifiche, per l'articolo:\n"
|
1729 |
+
"[post_permalink]\n"
|
1730 |
+
"\n"
|
1731 |
+
"Per confermare, clicca sul collegamento qui di seguito:\n"
|
1732 |
+
"[confirm_link]\n"
|
1733 |
+
"\n"
|
1734 |
+
"Se credi di aver ricevuto questo messaggio per errore, ti preghiamo di "
|
1735 |
+
"rispondere all'email per contattare l'amministratore."
|
1736 |
+
|
1737 |
+
#: utils/stcr_utils.php:219
|
1738 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1739 |
+
msgstr "Gestisci le tue iscrizioni su [blog_name]"
|
1740 |
+
|
1741 |
+
#: utils/stcr_utils.php:220
|
1742 |
+
msgid ""
|
1743 |
+
"You have requested to manage your subscriptions to the articles on "
|
1744 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1745 |
+
msgstr ""
|
1746 |
+
|
1747 |
+
#: utils/stcr_utils.php:221
|
1748 |
+
#, fuzzy
|
1749 |
+
#| msgid ""
|
1750 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1751 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1752 |
+
#| "[manager_link]"
|
1753 |
+
msgid ""
|
1754 |
+
"You have requested to manage your subscriptions to the articles on "
|
1755 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1756 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1757 |
+
msgstr ""
|
1758 |
+
"Hai richiesto di poter gestire le tue iscrizioni agli articoli su "
|
1759 |
+
"[blog_name]. Clicca sul link qui di seguito per accedere alla tua area "
|
1760 |
+
"riservata:\n"
|
1761 |
+
"[manager_link]"
|
1762 |
+
|
1763 |
+
#: utils/stcr_utils.php:300
|
1764 |
msgid "StCR Notification"
|
1765 |
msgstr "Notifiche"
|
1766 |
|
1772 |
msgid "All"
|
1773 |
msgstr "Tutti"
|
1774 |
|
1775 |
+
#~ msgid "Support the developers"
|
1776 |
+
#~ msgstr "Supporta l'autore"
|
1777 |
+
|
1778 |
+
#~ msgid "Don't want to donate? You can still help"
|
1779 |
+
#~ msgstr "Non ti va di donare soldi?"
|
1780 |
+
|
1781 |
+
#~ msgid ""
|
1782 |
+
#~ "There is a new comment to [post_title].\n"
|
1783 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1784 |
+
#~ "Author: [comment_author]\n"
|
1785 |
+
#~ "Comment:\n"
|
1786 |
+
#~ "[comment_content]\n"
|
1787 |
+
#~ "Permalink: [post_permalink]\n"
|
1788 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1789 |
+
#~ msgstr ""
|
1790 |
+
#~ "L'utente [comment_author] ha lasciato un nuovo commento a "
|
1791 |
+
#~ "'[post_title]':\n"
|
1792 |
+
#~ "[comment_permalink]\n"
|
1793 |
+
#~ "\n"
|
1794 |
+
#~ "Commento:\n"
|
1795 |
+
#~ "[comment_content]\n"
|
1796 |
+
#~ "\n"
|
1797 |
+
#~ "Permalink: [post_permalink]\n"
|
1798 |
+
#~ "Gestisci le tue iscrizioni: [manager_link]"
|
1799 |
+
|
1800 |
#~ msgid ""
|
1801 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1802 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: Odd Henriksen <odd@henriksen.cx>\n"
|
9 |
"Language: nb_NO\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: er;\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Administrere abonnement"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Kommentarfelt"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Administrasjonsside"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Emnefelt i varselmelding"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Alternativer"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Ønsker du ikke å donere? Du kan hjelpe likevel"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr "Support"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr "Ønsker du ikke å donere? Du kan hjelpe likevel"
|
52 |
|
@@ -347,95 +343,95 @@ msgstr "Oppdater abonnement"
|
|
347 |
msgid "Sorry, no subscriptions match your search criteria."
|
348 |
msgstr "Beklager, ingen abonnement funnet for"
|
349 |
|
350 |
-
#: options/panel10.php:
|
351 |
msgid "The log file has been successfully deleted."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: options/panel10.php:
|
355 |
msgid "Can't delete the log file, check the file permissions."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: options/panel10.php:
|
359 |
msgid "The log file does not exists."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: options/panel10.php:
|
363 |
msgid "Enable Log Information"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: options/panel10.php:
|
367 |
msgid "Enable Auto clean log data"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: options/panel10.php:
|
371 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
372 |
msgid "Your settings have been successfully updated."
|
373 |
msgstr "Dine innstillinger har blitt vellykket oppdatert."
|
374 |
|
375 |
-
#: options/panel10.php:
|
376 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
377 |
msgid "There was an error updating the following fields:"
|
378 |
msgstr "Det oppsto en feil ved oppdatering av følgende felter:"
|
379 |
|
380 |
-
#: options/panel10.php:
|
381 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
msgid "Yes"
|
387 |
msgstr "Ja"
|
388 |
|
389 |
-
#: options/panel10.php:
|
390 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
msgid "No"
|
396 |
msgstr "Nei"
|
397 |
|
398 |
-
#: options/panel10.php:
|
399 |
msgid ""
|
400 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
401 |
"purposes."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: options/panel10.php:
|
405 |
msgid "Hourly"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: options/panel10.php:
|
409 |
msgid "Twice Daily"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: options/panel10.php:
|
413 |
msgid "Daily"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: options/panel10.php:
|
417 |
msgid "If enabled, StCR will auto clean your information every day."
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: options/panel10.php:
|
421 |
msgid "Clean Up Log Archive"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: options/panel10.php:
|
425 |
msgid ""
|
426 |
"If you want to clean up the log archive please click the following button"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: options/panel10.php:
|
430 |
msgid "Clean"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: options/panel10.php:
|
434 |
msgid "System Information"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: options/panel10.php:
|
438 |
-
#: options/panel4.php:283 options/panel5.php:
|
439 |
msgid "Save Changes"
|
440 |
msgstr "Lagre endringer"
|
441 |
|
@@ -767,7 +763,7 @@ msgstr ""
|
|
767 |
#: options/panel4.php:128
|
768 |
msgid ""
|
769 |
"This will be use when the user click reply on their email agent. If not set "
|
770 |
-
"will be the same as the Sender email address."
|
771 |
msgstr ""
|
772 |
|
773 |
#: options/panel4.php:147
|
@@ -783,8 +779,8 @@ msgstr ""
|
|
783 |
|
784 |
#: options/panel4.php:171
|
785 |
msgid ""
|
786 |
-
"<p><strong>Note: To get a default template clear
|
787 |
-
"the options.</strong></p>"
|
788 |
msgstr ""
|
789 |
|
790 |
#: options/panel4.php:184
|
@@ -831,79 +827,95 @@ msgid ""
|
|
831 |
"[blog_name]"
|
832 |
msgstr "Emnefelt i bekreftelsesmeldingen. Tillatte elementer: [post_title]"
|
833 |
|
834 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
835 |
msgid "Show StCR checkbox / dropdown"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: options/panel5.php:
|
839 |
msgid "Safetly Uninstall"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: options/panel5.php:
|
843 |
msgid "Autopurge requests"
|
844 |
msgstr "Automatisk utløp av forespørsler"
|
845 |
|
846 |
-
#: options/panel5.php:
|
847 |
msgid "Enable double check"
|
848 |
msgstr "Aktiver bekreftelse per e-post"
|
849 |
|
850 |
-
#: options/panel5.php:
|
851 |
msgid "StCR Position"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: options/panel5.php:
|
855 |
msgid "Subscribe authors"
|
856 |
msgstr "Abonnert"
|
857 |
|
858 |
-
#: options/panel5.php:
|
859 |
msgid "Enable HTML emails"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: options/panel5.php:
|
863 |
msgid "HTMLify Links in HTML emails"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: options/panel5.php:
|
867 |
msgid "Send trackbacks"
|
868 |
msgstr "Send for tilbakesporinger"
|
869 |
|
870 |
-
#: options/panel5.php:
|
871 |
msgid "Notify admin"
|
872 |
msgstr "Varsle administratorer"
|
873 |
|
874 |
-
#: options/panel5.php:
|
875 |
msgid "Let admin subscribe"
|
876 |
msgstr "La administrator abonnere"
|
877 |
|
878 |
-
#: options/panel5.php:
|
879 |
msgid "BCC admin on Notifications"
|
880 |
msgstr "Emnefelt i varselmelding"
|
881 |
|
882 |
-
#: options/panel5.php:
|
883 |
msgid "Enable Font Awesome"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
887 |
msgid ""
|
888 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
889 |
"You should leave it to Yes always. "
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: options/panel5.php:
|
893 |
msgid "Safely Uninstall"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: options/panel5.php:
|
897 |
msgid ""
|
898 |
"This option will allow you to delete the plugin with WordPress without "
|
899 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: options/panel5.php:
|
903 |
msgid "days"
|
904 |
msgstr "dager"
|
905 |
|
906 |
-
#: options/panel5.php:
|
907 |
msgid ""
|
908 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
909 |
"this feature."
|
@@ -911,14 +923,14 @@ msgstr ""
|
|
911 |
"Slett ventende forespørsler (ubekreftede) etter X dager. Bruk null for å "
|
912 |
"deaktivere denne funksjonen."
|
913 |
|
914 |
-
#: options/panel5.php:
|
915 |
msgid ""
|
916 |
"If this option is enable the subscription box will be above the submit "
|
917 |
"button in your comment form. Use this when your theme is outdated and using "
|
918 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: options/panel5.php:
|
922 |
msgid ""
|
923 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
924 |
"misuse)."
|
@@ -926,87 +938,111 @@ msgstr ""
|
|
926 |
"Send bekreftelsesmelding per e-post for å bekrefte abonnement (for å "
|
927 |
"bekjempe uautorisert registrering av e-postadresser)."
|
928 |
|
929 |
-
#: options/panel5.php:
|
930 |
msgid ""
|
931 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: options/panel5.php:
|
935 |
msgid ""
|
936 |
"If enabled, will send email messages with content-type = text/html instead "
|
937 |
"of text/plain"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: options/panel5.php:
|
941 |
msgid "HTMLify links in emails"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: options/panel5.php:
|
945 |
msgid ""
|
946 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
947 |
"</a></code> (only when HTML emails enabled)."
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: options/panel5.php:
|
951 |
msgid "Process trackbacks"
|
952 |
msgstr "Send for tilbakesporinger"
|
953 |
|
954 |
-
#: options/panel5.php:
|
955 |
msgid ""
|
956 |
"Notify users when a new trackback or pingback is added to the discussion."
|
957 |
msgstr ""
|
958 |
"Varsle abonnenter også når en tilbakesporing eller et tilbakeping "
|
959 |
"registreres."
|
960 |
|
961 |
-
#: options/panel5.php:
|
962 |
msgid "Track all subscriptions"
|
963 |
msgstr "Spor alle abonnementspåmeldinger"
|
964 |
|
965 |
-
#: options/panel5.php:
|
966 |
msgid "Notify the administrator when users subscribe without commenting."
|
967 |
msgstr "Varsle administrator når brukere abonnerer uten å kommentere."
|
968 |
|
969 |
-
#: options/panel5.php:
|
970 |
msgid "Let the administrator subscribe to comments when logged in."
|
971 |
msgstr "La også innlogget administrator abonnere på kommentarer."
|
972 |
|
973 |
-
#: options/panel5.php:
|
974 |
msgid "Send a copy of all Notifications to the administrator."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: options/panel5.php:
|
978 |
msgid ""
|
979 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
980 |
"you theme already add this into your site."
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: options/panel5.php:
|
984 |
msgid "StCR Unique Key"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: options/panel5.php:
|
988 |
msgid "This Unique Key is not set, please click the following button to "
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: options/panel5.php:
|
992 |
msgid "Generate"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: options/panel5.php:
|
996 |
msgid ""
|
997 |
"This Unique Key will be use to send the notification to your subscribers "
|
998 |
"with more security."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: options/
|
1002 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1006 |
msgid ""
|
1007 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1008 |
"consider supporting the author if this plugin made your web site better, "
|
1009 |
-
"especially if you are making money out of it
|
|
|
1010 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1011 |
"strong>, and to buy some food for my hungry family."
|
1012 |
msgstr ""
|
@@ -1017,18 +1053,27 @@ msgstr ""
|
|
1017 |
"investert i utviklingen av Subscribe to Comments Reloaded, og i mat til "
|
1018 |
"utviklerens sultne familie."
|
1019 |
|
1020 |
-
#: options/panel7.php:
|
1021 |
-
|
|
|
|
|
1022 |
msgstr "Ønsker du ikke å donere? Du kan hjelpe likevel"
|
1023 |
|
1024 |
-
#: options/panel7.php:
|
1025 |
-
|
1026 |
-
|
1027 |
-
"
|
1028 |
-
"
|
1029 |
-
"
|
1030 |
-
"
|
1031 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1032 |
msgstr ""
|
1033 |
"Dersom du ikke ønsker å donere penger, vennligst vurder å \"blogge\" om "
|
1034 |
"dette innstikket med en link til innstikkets hjemmeside. Vennligst la dine "
|
@@ -1037,11 +1082,11 @@ msgstr ""
|
|
1037 |
"forbedringsforslag, og så videre. Uansett hva du velger, takk for at du "
|
1038 |
"bruker dette innstikket!"
|
1039 |
|
1040 |
-
#: options/panel7.php:
|
1041 |
msgid "Subscribe to the Beta testers"
|
1042 |
msgstr "Abonnert"
|
1043 |
|
1044 |
-
#: options/panel7.php:
|
1045 |
msgid ""
|
1046 |
"Before a new Update we release a Beta version so that our current users can "
|
1047 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1049,11 +1094,11 @@ msgid ""
|
|
1049 |
"a>"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: options/panel7.php:
|
1053 |
msgid "Vote and show your appreciation"
|
1054 |
msgstr "Stem og vis din tilfredshet"
|
1055 |
|
1056 |
-
#: options/panel7.php:
|
1057 |
msgid ""
|
1058 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1059 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1063,11 +1108,11 @@ msgstr ""
|
|
1063 |
"deg. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
|
1064 |
"reloaded/\">Stem</a> på dette innstikket på Wordpress.org."
|
1065 |
|
1066 |
-
#: options/panel8.php:
|
1067 |
msgid "Did you find a Bug on the plugin?"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: options/panel8.php:
|
1071 |
msgid ""
|
1072 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1073 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1162,212 +1207,46 @@ msgstr ""
|
|
1162 |
msgid "You have request to manage another email address and this is forbidden."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: utils/stcr_manage.php:
|
1166 |
-
msgid ""
|
1167 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1168 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1169 |
-
msgstr ""
|
1170 |
-
"Varsle meg om nye kommentarer via e-post. Du kan også <a "
|
1171 |
-
"href='[subscribe_link]'>abonnere</a> uten å legge inn en kommentar selv."
|
1172 |
-
|
1173 |
-
#: utils/stcr_manage.php:224
|
1174 |
-
msgid ""
|
1175 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1176 |
-
"subscriptions."
|
1177 |
-
msgstr ""
|
1178 |
-
"Du abonnerer på dette innlegget. <a href='[manager_link]'>Klikk her</a> for "
|
1179 |
-
"å administrere dine abonnement."
|
1180 |
-
|
1181 |
-
#: utils/stcr_manage.php:225
|
1182 |
-
msgid ""
|
1183 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1184 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1185 |
-
msgstr ""
|
1186 |
-
"Ditt abonnement på dette innlegget må bekreftes. <a "
|
1187 |
-
"href='[manager_link]'>Klikk her</a> for å administrere dine abonnement."
|
1188 |
-
|
1189 |
-
#: utils/stcr_manage.php:226
|
1190 |
-
msgid ""
|
1191 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1192 |
-
msgstr ""
|
1193 |
-
"<a href='[manager_link]'>Klikk her</a> for å administrere "
|
1194 |
-
"varslingsabonnementene for dette innlegget."
|
1195 |
-
|
1196 |
-
#: utils/stcr_manage.php:232
|
1197 |
-
msgid ""
|
1198 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1199 |
-
"will send you a message containing the link to access your personal "
|
1200 |
-
"management page."
|
1201 |
-
msgstr ""
|
1202 |
-
"For å administrere dine abonnement, vennligst skriv inn e-postadressen din "
|
1203 |
-
"nedenfor. Du vil så bli tilsendt en e-postmelding med en link til en side "
|
1204 |
-
"hvor du kan administrere abonnementene dine."
|
1205 |
-
|
1206 |
-
#: utils/stcr_manage.php:233
|
1207 |
-
msgid ""
|
1208 |
-
"Thank you for using our subscription service. Your request has been "
|
1209 |
-
"completed, and you should receive an email with the management link in a few "
|
1210 |
-
"minutes."
|
1211 |
-
msgstr ""
|
1212 |
-
"Takk for at du bruker abonnementstjenesten. Din forespørsel er effektuert. "
|
1213 |
-
"Innen få minutter skal du motta en e-postmelding med linken til "
|
1214 |
-
"administrasjonssiden."
|
1215 |
-
|
1216 |
-
#: utils/stcr_manage.php:234
|
1217 |
-
msgid ""
|
1218 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1219 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1220 |
-
"form here below and you're all set."
|
1221 |
-
msgstr ""
|
1222 |
-
"Du kan følge diskusjonen om innlegget <strong>[post_title]</strong> uten å "
|
1223 |
-
"måtte legge igjen en kommentar selv. Snedig, ikke sant? Bare skriv inn e-"
|
1224 |
-
"postadressen din nedenfor."
|
1225 |
-
|
1226 |
-
#: utils/stcr_manage.php:235
|
1227 |
-
msgid ""
|
1228 |
-
"Thank you for using our subscription service. Your request has been "
|
1229 |
-
"completed. You will receive a notification email every time a new comment to "
|
1230 |
-
"this article is approved and posted by the administrator."
|
1231 |
-
msgstr ""
|
1232 |
-
"Takk for at du bruker abonnementstjenesten. Din forespørsel er effektuert. "
|
1233 |
-
"Du vil motta en varsel per e-post hver gang en ny kommentar til dette "
|
1234 |
-
"innlegget blir godkjent av administratoren for nettstedet."
|
1235 |
-
|
1236 |
-
#: utils/stcr_manage.php:236
|
1237 |
-
msgid ""
|
1238 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1239 |
-
"request, please check your email for the verification message and follow the "
|
1240 |
-
"instructions."
|
1241 |
-
msgstr ""
|
1242 |
-
"Takk for at du bruker abonnementstjenesten. Du må bekrefte din forespørsel "
|
1243 |
-
"ved å følge instruksjonene i bekreftelsesmeldingen du nettopp er blitt "
|
1244 |
-
"tilsendt. Det kan ta et par minutter før meldingen kommer frem."
|
1245 |
-
|
1246 |
-
#: utils/stcr_manage.php:237
|
1247 |
-
msgid ""
|
1248 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1249 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1250 |
-
msgstr ""
|
1251 |
-
"For å avslutte eller midlertidig deaktivere et varslingsabonnement, sett "
|
1252 |
-
"kryss i korresponderende avkrysningsboks, velg handling og klikk på knappen "
|
1253 |
-
"for å lagre endringene i dine abonnement."
|
1254 |
-
|
1255 |
-
#: utils/stcr_manage.php:238
|
1256 |
-
msgid ""
|
1257 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1258 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1259 |
-
"You are currently subscribed to:"
|
1260 |
-
msgstr ""
|
1261 |
-
"For å avslutte eller midlertidig deaktivere et varslingsabonnement, sett "
|
1262 |
-
"krys i korresponderende avkrysningsboks, velg handling og klikk på knappen "
|
1263 |
-
"for å lagre endringene i dine abonnement. For øyeblikket abonnerer du på "
|
1264 |
-
"følgende:"
|
1265 |
-
|
1266 |
-
#: utils/stcr_manage.php:242
|
1267 |
-
msgid "There is a new comment to [post_title]"
|
1268 |
-
msgstr "Det er kommet en ny kommentar til [post_title]"
|
1269 |
-
|
1270 |
-
#: utils/stcr_manage.php:243
|
1271 |
-
msgid ""
|
1272 |
-
"There is a new comment to [post_title].\n"
|
1273 |
-
"Comment Link: [comment_permalink]\n"
|
1274 |
-
"Author: [comment_author]\n"
|
1275 |
-
"Comment:\n"
|
1276 |
-
"[comment_content]\n"
|
1277 |
-
"Permalink: [post_permalink]\n"
|
1278 |
-
"Manage your subscriptions: [manager_link]"
|
1279 |
-
msgstr ""
|
1280 |
-
"Det har kommet en ny kommentar til '[post_title]':\n"
|
1281 |
-
"[comment_permalink]\n"
|
1282 |
-
"\n"
|
1283 |
-
"Kommentar:\n"
|
1284 |
-
"[comment_content]\n"
|
1285 |
-
"\n"
|
1286 |
-
"Permalenke: [post_permalink]\n"
|
1287 |
-
"\n"
|
1288 |
-
"For å administrere hvilke varslinger du mottar: [manager_link]"
|
1289 |
-
|
1290 |
-
#: utils/stcr_manage.php:244
|
1291 |
-
msgid "Please confirm your subscription to [post_title]"
|
1292 |
-
msgstr "Vennligst bekreft ditt abonnement på [post_title]"
|
1293 |
-
|
1294 |
-
#: utils/stcr_manage.php:245
|
1295 |
-
msgid ""
|
1296 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1297 |
-
"[post_permalink]\n"
|
1298 |
-
"\n"
|
1299 |
-
"Please confirm your request by clicking on this link:\n"
|
1300 |
-
"[confirm_link]"
|
1301 |
-
msgstr ""
|
1302 |
-
"Du har bedt om å bli underrettet hver gang det kommer en ny kommentar til:\n"
|
1303 |
-
"[post_permalink]\n"
|
1304 |
-
"\n"
|
1305 |
-
"Vennligst bekreft forespørselen ved å klikke på følgende link:\n"
|
1306 |
-
"[confirm_link]\n"
|
1307 |
-
"\n"
|
1308 |
-
"Dersom adressen ovenfor ikke kan klikkes på, vennligst kopier den og lim den "
|
1309 |
-
"inn i adresselinjen i nettleseren din."
|
1310 |
-
|
1311 |
-
#: utils/stcr_manage.php:246
|
1312 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1313 |
-
msgstr "Administrer dine abonnement på [blog_name]"
|
1314 |
-
|
1315 |
-
#: utils/stcr_manage.php:247
|
1316 |
-
msgid ""
|
1317 |
-
"You have requested to manage your subscriptions to the articles on "
|
1318 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1319 |
-
msgstr ""
|
1320 |
-
|
1321 |
-
#: utils/stcr_manage.php:248
|
1322 |
-
msgid ""
|
1323 |
-
"You have requested to manage your subscriptions to the articles on "
|
1324 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1325 |
-
"[manager_link]"
|
1326 |
-
msgstr ""
|
1327 |
-
"Du har forespurt å administrere dine varslingsabonnement på [blog_name]. "
|
1328 |
-
"Følg denne linken for å komme til din personlige administrasjonsside:\n"
|
1329 |
-
"[manager_link]"
|
1330 |
-
|
1331 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1332 |
msgid "StCR System"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: utils/stcr_manage.php:
|
1336 |
-
#: utils/stcr_manage.php:
|
1337 |
-
#: utils/stcr_manage.php:
|
1338 |
-
#: utils/stcr_manage.php:
|
1339 |
-
#: utils/stcr_manage.php:
|
1340 |
msgid "You do not have sufficient permissions to access this page."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: utils/stcr_manage.php:
|
1344 |
msgid "Subscriptions"
|
1345 |
msgstr "Administrere abonnement"
|
1346 |
|
1347 |
-
#: utils/stcr_manage.php:
|
1348 |
msgid ""
|
1349 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1350 |
msgstr ""
|
1351 |
"Trenger du hjelp med bruk av Subscribe to Comments Reloaded? Besøk det "
|
1352 |
"offisielle"
|
1353 |
|
1354 |
-
#: utils/stcr_manage.php:
|
1355 |
msgid "support forum"
|
1356 |
msgstr "supportforumet"
|
1357 |
|
1358 |
-
#: utils/stcr_manage.php:
|
1359 |
msgid "Feeling generous?"
|
1360 |
msgstr "Føler du deg generøs?"
|
1361 |
|
1362 |
-
#: utils/stcr_manage.php:
|
1363 |
msgid "Donate a few bucks!"
|
1364 |
msgstr "Doner noen dollar!"
|
1365 |
|
1366 |
-
#: utils/stcr_upgrade.php:
|
1367 |
msgid "Important Notice"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: utils/stcr_upgrade.php:
|
1371 |
msgid ""
|
1372 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1373 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1375,28 +1254,28 @@ msgid ""
|
|
1375 |
"src=\""
|
1376 |
msgstr ""
|
1377 |
|
1378 |
-
#: utils/stcr_upgrade.php:
|
1379 |
msgid ""
|
1380 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1381 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1382 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: utils/stcr_upgrade.php:
|
1386 |
msgid ""
|
1387 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1388 |
"Comments to prevent confusion between the two plugins."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: utils/stcr_upgrade.php:
|
1392 |
msgid ""
|
1393 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1394 |
"that you want to import, you'll need to import that data manually, as only "
|
1395 |
"one import routine will ever run to prevent data loss."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#: utils/stcr_upgrade.php:
|
1399 |
-
#: utils/stcr_upgrade.php:
|
1400 |
msgid ""
|
1401 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1402 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1404,20 +1283,20 @@ msgid ""
|
|
1404 |
"\"stcr-loading-animation\" src=\""
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: utils/stcr_upgrade.php:
|
1408 |
msgid ""
|
1409 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1410 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1411 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: utils/stcr_upgrade.php:
|
1415 |
msgid ""
|
1416 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1417 |
"Notification to prevent confusion between the two plugins."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: utils/stcr_upgrade.php:
|
1421 |
msgid ""
|
1422 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1423 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1425,13 +1304,13 @@ msgid ""
|
|
1425 |
"Reloaded</strong>."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: utils/stcr_upgrade.php:
|
1429 |
msgid ""
|
1430 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1431 |
"Subscriptions to prevent confusion between the two plugins."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: utils/stcr_upgrade.php:
|
1435 |
msgid ""
|
1436 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1437 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1439,7 +1318,7 @@ msgid ""
|
|
1439 |
"ever run to prevent data loss."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: utils/stcr_upgrade.php:
|
1443 |
msgid ""
|
1444 |
"<strong>Note:</strong> If you were previously using the "
|
1445 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1448,29 +1327,29 @@ msgid ""
|
|
1448 |
"respectively."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: utils/stcr_upgrade.php:
|
1452 |
msgid ""
|
1453 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: utils/stcr_upgrade.php:
|
1457 |
-
#: utils/stcr_upgrade.php:
|
1458 |
msgid ""
|
1459 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1460 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#: utils/stcr_upgrade.php:
|
1464 |
msgid ""
|
1465 |
-
"Please consider to make a donation to support the plugin
|
1466 |
-
"<a href=\"\n"
|
1467 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1468 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1469 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1470 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: utils/stcr_upgrade.php:
|
1474 |
msgid ""
|
1475 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1476 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1478,23 +1357,23 @@ msgid ""
|
|
1478 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: utils/stcr_upgrade.php:
|
1482 |
msgid ""
|
1483 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1484 |
"160106."
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: utils/stcr_upgrade.php:
|
1488 |
msgid ""
|
1489 |
"This version includes many changes and fixes to improve your experience with "
|
1490 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1491 |
"email templates, Subscription Checkbox position, and more!"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: utils/stcr_upgrade.php:
|
1495 |
-
#: utils/stcr_upgrade.php:
|
1496 |
-
#: utils/stcr_upgrade.php:
|
1497 |
-
#: utils/stcr_upgrade.php:
|
1498 |
msgid ""
|
1499 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1500 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1502,123 +1381,126 @@ msgid ""
|
|
1502 |
"class=\"stcr-loading-animation\" src=\""
|
1503 |
msgstr ""
|
1504 |
|
1505 |
-
#: utils/stcr_upgrade.php:
|
1506 |
msgid ""
|
1507 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1508 |
"160115."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: utils/stcr_upgrade.php:
|
1512 |
msgid ""
|
1513 |
"This version includes fixes to broken links while managing your subscriptions"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: utils/stcr_upgrade.php:
|
1517 |
msgid ""
|
1518 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1519 |
"160831"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: utils/stcr_upgrade.php:
|
1523 |
msgid "This version includes fixes to many bugs and also new features, "
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: utils/stcr_upgrade.php:
|
1527 |
msgid ""
|
1528 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1529 |
"address. This will help the subscribers to use the Reply option in their "
|
1530 |
"email agents."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: utils/stcr_upgrade.php:
|
1534 |
msgid ""
|
1535 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1536 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: utils/stcr_upgrade.php:
|
1540 |
msgid ""
|
1541 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1542 |
"without loosing your subscriptions. You can use this option also for reset "
|
1543 |
"all the settings, see the FAQ."
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: utils/stcr_upgrade.php:
|
1547 |
msgid ""
|
1548 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1549 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1550 |
"Post Type."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: utils/stcr_upgrade.php:
|
1554 |
msgid ""
|
1555 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1556 |
"options to and the management link only by email and not to display it on "
|
1557 |
"the request link page."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: utils/stcr_upgrade.php:
|
1561 |
msgid ""
|
1562 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1563 |
"160902"
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: utils/stcr_upgrade.php:
|
1567 |
msgid ""
|
1568 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1569 |
"previous 160831 version."
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: utils/stcr_upgrade.php:
|
1573 |
msgid "Settings"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: utils/stcr_upgrade.php:
|
1577 |
msgid ""
|
1578 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1579 |
"160915"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: utils/stcr_upgrade.php:
|
1583 |
-
#: utils/stcr_upgrade.php:
|
1584 |
msgid "This version includes fixes and improvements, "
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: utils/stcr_upgrade.php:
|
1588 |
msgid ""
|
1589 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1590 |
"dropdown."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: utils/stcr_upgrade.php:
|
1594 |
msgid ""
|
1595 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: utils/stcr_upgrade.php:
|
|
|
1599 |
msgid "Log Settings"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
-
#: utils/stcr_upgrade.php:
|
|
|
1603 |
msgid ""
|
1604 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: utils/stcr_upgrade.php:
|
1608 |
msgid ""
|
1609 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1610 |
"enable."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: utils/stcr_upgrade.php:
|
1614 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: utils/stcr_upgrade.php:
|
|
|
1618 |
msgid "The support of this plugin is given thanks to your donations."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: utils/stcr_upgrade.php:
|
1622 |
msgid ""
|
1623 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1624 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1628,19 +1510,19 @@ msgid ""
|
|
1628 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: utils/stcr_upgrade.php:
|
1632 |
msgid ""
|
1633 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1634 |
"installation regarding a database table creation."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: utils/stcr_upgrade.php:
|
1638 |
msgid ""
|
1639 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1640 |
"Awesome."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: utils/stcr_upgrade.php:
|
1644 |
msgid ""
|
1645 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1646 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1651,7 +1533,207 @@ msgid ""
|
|
1651 |
"for the users that have supported the plugin development."
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1655 |
msgid "StCR Notification"
|
1656 |
msgstr "Emnefelt i varselmelding"
|
1657 |
|
@@ -1663,6 +1745,28 @@ msgstr "La administrator abonnere"
|
|
1663 |
msgid "All"
|
1664 |
msgstr ""
|
1665 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1666 |
#~ msgid ""
|
1667 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1668 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:11-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:11-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 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: er;\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Administrere abonnement"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Kommentarfelt"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Administrasjonsside"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Emnefelt i varselmelding"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Alternativer"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "Support"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr "Ønsker du ikke å donere? Du kan hjelpe likevel"
|
48 |
|
343 |
msgid "Sorry, no subscriptions match your search criteria."
|
344 |
msgstr "Beklager, ingen abonnement funnet for"
|
345 |
|
346 |
+
#: options/panel10.php:41
|
347 |
msgid "The log file has been successfully deleted."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: options/panel10.php:46
|
351 |
msgid "Can't delete the log file, check the file permissions."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: options/panel10.php:52
|
355 |
msgid "The log file does not exists."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: options/panel10.php:66 options/panel10.php:110
|
359 |
msgid "Enable Log Information"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: options/panel10.php:72 options/panel10.php:119
|
363 |
msgid "Enable Auto clean log data"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
367 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
368 |
msgid "Your settings have been successfully updated."
|
369 |
msgstr "Dine innstillinger har blitt vellykket oppdatert."
|
370 |
|
371 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
372 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
373 |
msgid "There was an error updating the following fields:"
|
374 |
msgstr "Det oppsto en feil ved oppdatering av følgende felter:"
|
375 |
|
376 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
377 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
378 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
379 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
380 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
381 |
+
#: options/panel5.php:210 options/panel5.php:219
|
382 |
msgid "Yes"
|
383 |
msgstr "Ja"
|
384 |
|
385 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
386 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
387 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
388 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
389 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
390 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
391 |
msgid "No"
|
392 |
msgstr "Nei"
|
393 |
|
394 |
+
#: options/panel10.php:114
|
395 |
msgid ""
|
396 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
397 |
"purposes."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: options/panel10.php:125
|
401 |
msgid "Hourly"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: options/panel10.php:126
|
405 |
msgid "Twice Daily"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: options/panel10.php:127
|
409 |
msgid "Daily"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: options/panel10.php:129
|
413 |
msgid "If enabled, StCR will auto clean your information every day."
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: options/panel10.php:134
|
417 |
msgid "Clean Up Log Archive"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: options/panel10.php:138
|
421 |
msgid ""
|
422 |
"If you want to clean up the log archive please click the following button"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: options/panel10.php:140
|
426 |
msgid "Clean"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: options/panel10.php:147 options/panel10.php:150
|
430 |
msgid "System Information"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
434 |
+
#: options/panel4.php:283 options/panel5.php:265
|
435 |
msgid "Save Changes"
|
436 |
msgstr "Lagre endringer"
|
437 |
|
763 |
#: options/panel4.php:128
|
764 |
msgid ""
|
765 |
"This will be use when the user click reply on their email agent. If not set "
|
766 |
+
"it will be the same as the Sender email address."
|
767 |
msgstr ""
|
768 |
|
769 |
#: options/panel4.php:147
|
779 |
|
780 |
#: options/panel4.php:171
|
781 |
msgid ""
|
782 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
783 |
+
"all the content and save the options.</strong></p>"
|
784 |
msgstr ""
|
785 |
|
786 |
#: options/panel4.php:184
|
827 |
"[blog_name]"
|
828 |
msgstr "Emnefelt i bekreftelsesmeldingen. Tillatte elementer: [post_title]"
|
829 |
|
830 |
+
#: options/panel5.php:38
|
831 |
+
#, fuzzy
|
832 |
+
#| msgid "Your settings have been successfully updated."
|
833 |
+
msgid "Your settings have been successfully reset."
|
834 |
+
msgstr "Dine innstillinger har blitt vellykket oppdatert."
|
835 |
+
|
836 |
+
#: options/panel5.php:40
|
837 |
+
#, fuzzy
|
838 |
+
#| msgid "There was an error updating the following fields:"
|
839 |
+
msgid "There was an error deleting the options:"
|
840 |
+
msgstr "Det oppsto en feil ved oppdatering av følgende felter:"
|
841 |
+
|
842 |
+
#: options/panel5.php:48 options/panel5.php:108
|
843 |
msgid "Show StCR checkbox / dropdown"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: options/panel5.php:51
|
847 |
msgid "Safetly Uninstall"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: options/panel5.php:54 options/panel5.php:125
|
851 |
msgid "Autopurge requests"
|
852 |
msgstr "Automatisk utløp av forespørsler"
|
853 |
|
854 |
+
#: options/panel5.php:57 options/panel5.php:143
|
855 |
msgid "Enable double check"
|
856 |
msgstr "Aktiver bekreftelse per e-post"
|
857 |
|
858 |
+
#: options/panel5.php:60 options/panel5.php:134
|
859 |
msgid "StCR Position"
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: options/panel5.php:63 options/panel5.php:151
|
863 |
msgid "Subscribe authors"
|
864 |
msgstr "Abonnert"
|
865 |
|
866 |
+
#: options/panel5.php:66 options/panel5.php:161
|
867 |
msgid "Enable HTML emails"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: options/panel5.php:69
|
871 |
msgid "HTMLify Links in HTML emails"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: options/panel5.php:72
|
875 |
msgid "Send trackbacks"
|
876 |
msgstr "Send for tilbakesporinger"
|
877 |
|
878 |
+
#: options/panel5.php:75
|
879 |
msgid "Notify admin"
|
880 |
msgstr "Varsle administratorer"
|
881 |
|
882 |
+
#: options/panel5.php:78 options/panel5.php:199
|
883 |
msgid "Let admin subscribe"
|
884 |
msgstr "La administrator abonnere"
|
885 |
|
886 |
+
#: options/panel5.php:81 options/panel5.php:208
|
887 |
msgid "BCC admin on Notifications"
|
888 |
msgstr "Emnefelt i varselmelding"
|
889 |
|
890 |
+
#: options/panel5.php:84 options/panel5.php:217
|
891 |
msgid "Enable Font Awesome"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
895 |
+
msgid "Reset All Options"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: options/panel5.php:112
|
899 |
msgid ""
|
900 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
901 |
"You should leave it to Yes always. "
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: options/panel5.php:117
|
905 |
msgid "Safely Uninstall"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: options/panel5.php:121
|
909 |
msgid ""
|
910 |
"This option will allow you to delete the plugin with WordPress without "
|
911 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: options/panel5.php:128
|
915 |
msgid "days"
|
916 |
msgstr "dager"
|
917 |
|
918 |
+
#: options/panel5.php:129
|
919 |
msgid ""
|
920 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
921 |
"this feature."
|
923 |
"Slett ventende forespørsler (ubekreftede) etter X dager. Bruk null for å "
|
924 |
"deaktivere denne funksjonen."
|
925 |
|
926 |
+
#: options/panel5.php:138
|
927 |
msgid ""
|
928 |
"If this option is enable the subscription box will be above the submit "
|
929 |
"button in your comment form. Use this when your theme is outdated and using "
|
930 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: options/panel5.php:147
|
934 |
msgid ""
|
935 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
936 |
"misuse)."
|
938 |
"Send bekreftelsesmelding per e-post for å bekrefte abonnement (for å "
|
939 |
"bekjempe uautorisert registrering av e-postadresser)."
|
940 |
|
941 |
+
#: options/panel5.php:156
|
942 |
msgid ""
|
943 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: options/panel5.php:165
|
947 |
msgid ""
|
948 |
"If enabled, will send email messages with content-type = text/html instead "
|
949 |
"of text/plain"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: options/panel5.php:170
|
953 |
msgid "HTMLify links in emails"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: options/panel5.php:175
|
957 |
msgid ""
|
958 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
959 |
"</a></code> (only when HTML emails enabled)."
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: options/panel5.php:180
|
963 |
msgid "Process trackbacks"
|
964 |
msgstr "Send for tilbakesporinger"
|
965 |
|
966 |
+
#: options/panel5.php:184
|
967 |
msgid ""
|
968 |
"Notify users when a new trackback or pingback is added to the discussion."
|
969 |
msgstr ""
|
970 |
"Varsle abonnenter også når en tilbakesporing eller et tilbakeping "
|
971 |
"registreres."
|
972 |
|
973 |
+
#: options/panel5.php:189
|
974 |
msgid "Track all subscriptions"
|
975 |
msgstr "Spor alle abonnementspåmeldinger"
|
976 |
|
977 |
+
#: options/panel5.php:194
|
978 |
msgid "Notify the administrator when users subscribe without commenting."
|
979 |
msgstr "Varsle administrator når brukere abonnerer uten å kommentere."
|
980 |
|
981 |
+
#: options/panel5.php:203
|
982 |
msgid "Let the administrator subscribe to comments when logged in."
|
983 |
msgstr "La også innlogget administrator abonnere på kommentarer."
|
984 |
|
985 |
+
#: options/panel5.php:212
|
986 |
msgid "Send a copy of all Notifications to the administrator."
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: options/panel5.php:221
|
990 |
msgid ""
|
991 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
992 |
"you theme already add this into your site."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: options/panel5.php:226
|
996 |
msgid "StCR Unique Key"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: options/panel5.php:231
|
1000 |
msgid "This Unique Key is not set, please click the following button to "
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1004 |
msgid "Generate"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: options/panel5.php:243
|
1008 |
msgid ""
|
1009 |
"This Unique Key will be use to send the notification to your subscribers "
|
1010 |
"with more security."
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: options/panel5.php:256
|
1014 |
+
msgid ""
|
1015 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1016 |
+
"with caution."
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: options/panel5.php:258
|
1020 |
+
msgid "Yes, Delete Options including subscriptions."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: options/panel5.php:259
|
1024 |
+
msgid "No, Only delete the StCR Options."
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1028 |
+
msgid ""
|
1029 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1030 |
+
"hidden=\"true\"></i>"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1034 |
+
#, fuzzy
|
1035 |
+
#| msgid ""
|
1036 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1037 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1038 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1039 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1040 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1041 |
msgid ""
|
1042 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1043 |
"consider supporting the author if this plugin made your web site better, "
|
1044 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1045 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1046 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1047 |
"strong>, and to buy some food for my hungry family."
|
1048 |
msgstr ""
|
1053 |
"investert i utviklingen av Subscribe to Comments Reloaded, og i mat til "
|
1054 |
"utviklerens sultne familie."
|
1055 |
|
1056 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1057 |
+
#, fuzzy
|
1058 |
+
#| msgid "You can help"
|
1059 |
+
msgid "You can still help"
|
1060 |
msgstr "Ønsker du ikke å donere? Du kan hjelpe likevel"
|
1061 |
|
1062 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1063 |
+
#, fuzzy
|
1064 |
+
#| msgid ""
|
1065 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1066 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1067 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1068 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1069 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1070 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1071 |
+
msgid ""
|
1072 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1073 |
+
"Please let your readers know what makes your blog better. You can also "
|
1074 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1075 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1076 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1077 |
msgstr ""
|
1078 |
"Dersom du ikke ønsker å donere penger, vennligst vurder å \"blogge\" om "
|
1079 |
"dette innstikket med en link til innstikkets hjemmeside. Vennligst la dine "
|
1082 |
"forbedringsforslag, og så videre. Uansett hva du velger, takk for at du "
|
1083 |
"bruker dette innstikket!"
|
1084 |
|
1085 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1086 |
msgid "Subscribe to the Beta testers"
|
1087 |
msgstr "Abonnert"
|
1088 |
|
1089 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1090 |
msgid ""
|
1091 |
"Before a new Update we release a Beta version so that our current users can "
|
1092 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1094 |
"a>"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1098 |
msgid "Vote and show your appreciation"
|
1099 |
msgstr "Stem og vis din tilfredshet"
|
1100 |
|
1101 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1102 |
msgid ""
|
1103 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1104 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1108 |
"deg. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
|
1109 |
"reloaded/\">Stem</a> på dette innstikket på Wordpress.org."
|
1110 |
|
1111 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1112 |
msgid "Did you find a Bug on the plugin?"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1116 |
msgid ""
|
1117 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1118 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1207 |
msgid "You have request to manage another email address and this is forbidden."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1211 |
msgid "StCR System"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1215 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1216 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1217 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1218 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1219 |
msgid "You do not have sufficient permissions to access this page."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: utils/stcr_manage.php:726
|
1223 |
msgid "Subscriptions"
|
1224 |
msgstr "Administrere abonnement"
|
1225 |
|
1226 |
+
#: utils/stcr_manage.php:782
|
1227 |
msgid ""
|
1228 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1229 |
msgstr ""
|
1230 |
"Trenger du hjelp med bruk av Subscribe to Comments Reloaded? Besøk det "
|
1231 |
"offisielle"
|
1232 |
|
1233 |
+
#: utils/stcr_manage.php:782
|
1234 |
msgid "support forum"
|
1235 |
msgstr "supportforumet"
|
1236 |
|
1237 |
+
#: utils/stcr_manage.php:783
|
1238 |
msgid "Feeling generous?"
|
1239 |
msgstr "Føler du deg generøs?"
|
1240 |
|
1241 |
+
#: utils/stcr_manage.php:783
|
1242 |
msgid "Donate a few bucks!"
|
1243 |
msgstr "Doner noen dollar!"
|
1244 |
|
1245 |
+
#: utils/stcr_upgrade.php:72
|
1246 |
msgid "Important Notice"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: utils/stcr_upgrade.php:120
|
1250 |
msgid ""
|
1251 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1252 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1254 |
"src=\""
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: utils/stcr_upgrade.php:175
|
1258 |
msgid ""
|
1259 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1260 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1261 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: utils/stcr_upgrade.php:175
|
1265 |
msgid ""
|
1266 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1267 |
"Comments to prevent confusion between the two plugins."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
+
#: utils/stcr_upgrade.php:176
|
1271 |
msgid ""
|
1272 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1273 |
"that you want to import, you'll need to import that data manually, as only "
|
1274 |
"one import routine will ever run to prevent data loss."
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1278 |
+
#: utils/stcr_upgrade.php:400
|
1279 |
msgid ""
|
1280 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1281 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1283 |
"\"stcr-loading-animation\" src=\""
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: utils/stcr_upgrade.php:250
|
1287 |
msgid ""
|
1288 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1289 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1290 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: utils/stcr_upgrade.php:250
|
1294 |
msgid ""
|
1295 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1296 |
"Notification to prevent confusion between the two plugins."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: utils/stcr_upgrade.php:397
|
1300 |
msgid ""
|
1301 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1302 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1304 |
"Reloaded</strong>."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: utils/stcr_upgrade.php:397
|
1308 |
msgid ""
|
1309 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1310 |
"Subscriptions to prevent confusion between the two plugins."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: utils/stcr_upgrade.php:398
|
1314 |
msgid ""
|
1315 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1316 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1318 |
"ever run to prevent data loss."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: utils/stcr_upgrade.php:399
|
1322 |
msgid ""
|
1323 |
"<strong>Note:</strong> If you were previously using the "
|
1324 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1327 |
"respectively."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: utils/stcr_upgrade.php:413
|
1331 |
msgid ""
|
1332 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1336 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1337 |
msgid ""
|
1338 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1339 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: utils/stcr_upgrade.php:415
|
1343 |
msgid ""
|
1344 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1345 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1346 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1347 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1348 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1349 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: utils/stcr_upgrade.php:417
|
1353 |
msgid ""
|
1354 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1355 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1357 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: utils/stcr_upgrade.php:428
|
1361 |
msgid ""
|
1362 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1363 |
"160106."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: utils/stcr_upgrade.php:429
|
1367 |
msgid ""
|
1368 |
"This version includes many changes and fixes to improve your experience with "
|
1369 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1370 |
"email templates, Subscription Checkbox position, and more!"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1374 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1375 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1376 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1377 |
msgid ""
|
1378 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1379 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1381 |
"class=\"stcr-loading-animation\" src=\""
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: utils/stcr_upgrade.php:443
|
1385 |
msgid ""
|
1386 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1387 |
"160115."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: utils/stcr_upgrade.php:444
|
1391 |
msgid ""
|
1392 |
"This version includes fixes to broken links while managing your subscriptions"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: utils/stcr_upgrade.php:458
|
1396 |
msgid ""
|
1397 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1398 |
"160831"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1402 |
msgid "This version includes fixes to many bugs and also new features, "
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1406 |
msgid ""
|
1407 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1408 |
"address. This will help the subscribers to use the Reply option in their "
|
1409 |
"email agents."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1413 |
msgid ""
|
1414 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1415 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1419 |
msgid ""
|
1420 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1421 |
"without loosing your subscriptions. You can use this option also for reset "
|
1422 |
"all the settings, see the FAQ."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1426 |
msgid ""
|
1427 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1428 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1429 |
"Post Type."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1433 |
msgid ""
|
1434 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1435 |
"options to and the management link only by email and not to display it on "
|
1436 |
"the request link page."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: utils/stcr_upgrade.php:480
|
1440 |
msgid ""
|
1441 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1442 |
"160902"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: utils/stcr_upgrade.php:483
|
1446 |
msgid ""
|
1447 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1448 |
"previous 160831 version."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1452 |
msgid "Settings"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: utils/stcr_upgrade.php:504
|
1456 |
msgid ""
|
1457 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1458 |
"160915"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1462 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1463 |
msgid "This version includes fixes and improvements, "
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: utils/stcr_upgrade.php:508
|
1467 |
msgid ""
|
1468 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1469 |
"dropdown."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: utils/stcr_upgrade.php:509
|
1473 |
msgid ""
|
1474 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1478 |
+
#: utils/stcr_upgrade.php:576
|
1479 |
msgid "Log Settings"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1483 |
+
#: utils/stcr_upgrade.php:580
|
1484 |
msgid ""
|
1485 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: utils/stcr_upgrade.php:529
|
1489 |
msgid ""
|
1490 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1491 |
"enable."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: utils/stcr_upgrade.php:530
|
1495 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1499 |
+
#: utils/stcr_upgrade.php:590
|
1500 |
msgid "The support of this plugin is given thanks to your donations."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: utils/stcr_upgrade.php:536
|
1504 |
msgid ""
|
1505 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1506 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1510 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: utils/stcr_upgrade.php:557
|
1514 |
msgid ""
|
1515 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1516 |
"installation regarding a database table creation."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: utils/stcr_upgrade.php:558
|
1520 |
msgid ""
|
1521 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1522 |
"Awesome."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: utils/stcr_upgrade.php:563
|
1526 |
msgid ""
|
1527 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1528 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1533 |
"for the users that have supported the plugin development."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: utils/stcr_upgrade.php:584
|
1537 |
+
msgid ""
|
1538 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1539 |
+
"issues."
|
1540 |
+
msgstr ""
|
1541 |
+
|
1542 |
+
#: utils/stcr_upgrade.php:585
|
1543 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
+
#: utils/stcr_upgrade.php:586
|
1547 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1548 |
+
msgstr ""
|
1549 |
+
|
1550 |
+
#: utils/stcr_upgrade.php:591
|
1551 |
+
msgid ""
|
1552 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1553 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1554 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1555 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1556 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1557 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1558 |
+
"Thanks for all the users that have supported the plugin development."
|
1559 |
+
msgstr ""
|
1560 |
+
|
1561 |
+
#: utils/stcr_utils.php:196
|
1562 |
+
msgid ""
|
1563 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1564 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1565 |
+
msgstr ""
|
1566 |
+
"Varsle meg om nye kommentarer via e-post. Du kan også <a "
|
1567 |
+
"href='[subscribe_link]'>abonnere</a> uten å legge inn en kommentar selv."
|
1568 |
+
|
1569 |
+
#: utils/stcr_utils.php:197
|
1570 |
+
msgid ""
|
1571 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1572 |
+
"subscriptions."
|
1573 |
+
msgstr ""
|
1574 |
+
"Du abonnerer på dette innlegget. <a href='[manager_link]'>Klikk her</a> for "
|
1575 |
+
"å administrere dine abonnement."
|
1576 |
+
|
1577 |
+
#: utils/stcr_utils.php:198
|
1578 |
+
msgid ""
|
1579 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1580 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1581 |
+
msgstr ""
|
1582 |
+
"Ditt abonnement på dette innlegget må bekreftes. <a "
|
1583 |
+
"href='[manager_link]'>Klikk her</a> for å administrere dine abonnement."
|
1584 |
+
|
1585 |
+
#: utils/stcr_utils.php:199
|
1586 |
+
msgid ""
|
1587 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1588 |
+
msgstr ""
|
1589 |
+
"<a href='[manager_link]'>Klikk her</a> for å administrere "
|
1590 |
+
"varslingsabonnementene for dette innlegget."
|
1591 |
+
|
1592 |
+
#: utils/stcr_utils.php:205
|
1593 |
+
msgid ""
|
1594 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1595 |
+
"will send you a message containing the link to access your personal "
|
1596 |
+
"management page."
|
1597 |
+
msgstr ""
|
1598 |
+
"For å administrere dine abonnement, vennligst skriv inn e-postadressen din "
|
1599 |
+
"nedenfor. Du vil så bli tilsendt en e-postmelding med en link til en side "
|
1600 |
+
"hvor du kan administrere abonnementene dine."
|
1601 |
+
|
1602 |
+
#: utils/stcr_utils.php:206
|
1603 |
+
msgid ""
|
1604 |
+
"Thank you for using our subscription service. Your request has been "
|
1605 |
+
"completed, and you should receive an email with the management link in a few "
|
1606 |
+
"minutes."
|
1607 |
+
msgstr ""
|
1608 |
+
"Takk for at du bruker abonnementstjenesten. Din forespørsel er effektuert. "
|
1609 |
+
"Innen få minutter skal du motta en e-postmelding med linken til "
|
1610 |
+
"administrasjonssiden."
|
1611 |
+
|
1612 |
+
#: utils/stcr_utils.php:207
|
1613 |
+
msgid ""
|
1614 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1615 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1616 |
+
"form here below and you're all set."
|
1617 |
+
msgstr ""
|
1618 |
+
"Du kan følge diskusjonen om innlegget <strong>[post_title]</strong> uten å "
|
1619 |
+
"måtte legge igjen en kommentar selv. Snedig, ikke sant? Bare skriv inn e-"
|
1620 |
+
"postadressen din nedenfor."
|
1621 |
+
|
1622 |
+
#: utils/stcr_utils.php:208
|
1623 |
+
msgid ""
|
1624 |
+
"Thank you for using our subscription service. Your request has been "
|
1625 |
+
"completed. You will receive a notification email every time a new comment to "
|
1626 |
+
"this article is approved and posted by the administrator."
|
1627 |
+
msgstr ""
|
1628 |
+
"Takk for at du bruker abonnementstjenesten. Din forespørsel er effektuert. "
|
1629 |
+
"Du vil motta en varsel per e-post hver gang en ny kommentar til dette "
|
1630 |
+
"innlegget blir godkjent av administratoren for nettstedet."
|
1631 |
+
|
1632 |
+
#: utils/stcr_utils.php:209
|
1633 |
+
msgid ""
|
1634 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1635 |
+
"request, please check your email for the verification message and follow the "
|
1636 |
+
"instructions."
|
1637 |
+
msgstr ""
|
1638 |
+
"Takk for at du bruker abonnementstjenesten. Du må bekrefte din forespørsel "
|
1639 |
+
"ved å følge instruksjonene i bekreftelsesmeldingen du nettopp er blitt "
|
1640 |
+
"tilsendt. Det kan ta et par minutter før meldingen kommer frem."
|
1641 |
+
|
1642 |
+
#: utils/stcr_utils.php:210
|
1643 |
+
msgid ""
|
1644 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1645 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1646 |
+
msgstr ""
|
1647 |
+
"For å avslutte eller midlertidig deaktivere et varslingsabonnement, sett "
|
1648 |
+
"kryss i korresponderende avkrysningsboks, velg handling og klikk på knappen "
|
1649 |
+
"for å lagre endringene i dine abonnement."
|
1650 |
+
|
1651 |
+
#: utils/stcr_utils.php:211
|
1652 |
+
msgid ""
|
1653 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1654 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1655 |
+
"You are currently subscribed to:"
|
1656 |
+
msgstr ""
|
1657 |
+
"For å avslutte eller midlertidig deaktivere et varslingsabonnement, sett "
|
1658 |
+
"krys i korresponderende avkrysningsboks, velg handling og klikk på knappen "
|
1659 |
+
"for å lagre endringene i dine abonnement. For øyeblikket abonnerer du på "
|
1660 |
+
"følgende:"
|
1661 |
+
|
1662 |
+
#: utils/stcr_utils.php:215
|
1663 |
+
msgid "There is a new comment to [post_title]"
|
1664 |
+
msgstr "Det er kommet en ny kommentar til [post_title]"
|
1665 |
+
|
1666 |
+
#: utils/stcr_utils.php:216
|
1667 |
+
msgid ""
|
1668 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1669 |
+
"\n"
|
1670 |
+
"<hr />\n"
|
1671 |
+
"<strong>Comment link:</strong> <a href="
|
1672 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1673 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1674 |
+
"\n"
|
1675 |
+
"<strong>Comment:</strong>\n"
|
1676 |
+
"[comment_content]\n"
|
1677 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1678 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1679 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1680 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: utils/stcr_utils.php:217
|
1684 |
+
msgid "Please confirm your subscription to [post_title]"
|
1685 |
+
msgstr "Vennligst bekreft ditt abonnement på [post_title]"
|
1686 |
+
|
1687 |
+
#: utils/stcr_utils.php:218
|
1688 |
+
#, fuzzy
|
1689 |
+
#| msgid ""
|
1690 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1691 |
+
#| "[post_permalink]\n"
|
1692 |
+
#| "\n"
|
1693 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1694 |
+
#| "[confirm_link]"
|
1695 |
+
msgid ""
|
1696 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1697 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1698 |
+
"\n"
|
1699 |
+
"Please confirm your request by clicking on this link:\n"
|
1700 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1701 |
+
msgstr ""
|
1702 |
+
"Du har bedt om å bli underrettet hver gang det kommer en ny kommentar til:\n"
|
1703 |
+
"[post_permalink]\n"
|
1704 |
+
"\n"
|
1705 |
+
"Vennligst bekreft forespørselen ved å klikke på følgende link:\n"
|
1706 |
+
"[confirm_link]\n"
|
1707 |
+
"\n"
|
1708 |
+
"Dersom adressen ovenfor ikke kan klikkes på, vennligst kopier den og lim den "
|
1709 |
+
"inn i adresselinjen i nettleseren din."
|
1710 |
+
|
1711 |
+
#: utils/stcr_utils.php:219
|
1712 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1713 |
+
msgstr "Administrer dine abonnement på [blog_name]"
|
1714 |
+
|
1715 |
+
#: utils/stcr_utils.php:220
|
1716 |
+
msgid ""
|
1717 |
+
"You have requested to manage your subscriptions to the articles on "
|
1718 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: utils/stcr_utils.php:221
|
1722 |
+
#, fuzzy
|
1723 |
+
#| msgid ""
|
1724 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1725 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1726 |
+
#| "[manager_link]"
|
1727 |
+
msgid ""
|
1728 |
+
"You have requested to manage your subscriptions to the articles on "
|
1729 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1730 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1731 |
+
msgstr ""
|
1732 |
+
"Du har forespurt å administrere dine varslingsabonnement på [blog_name]. "
|
1733 |
+
"Følg denne linken for å komme til din personlige administrasjonsside:\n"
|
1734 |
+
"[manager_link]"
|
1735 |
+
|
1736 |
+
#: utils/stcr_utils.php:300
|
1737 |
msgid "StCR Notification"
|
1738 |
msgstr "Emnefelt i varselmelding"
|
1739 |
|
1745 |
msgid "All"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#~ msgid "Don't want to donate? You can still help"
|
1749 |
+
#~ msgstr "Ønsker du ikke å donere? Du kan hjelpe likevel"
|
1750 |
+
|
1751 |
+
#~ msgid ""
|
1752 |
+
#~ "There is a new comment to [post_title].\n"
|
1753 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1754 |
+
#~ "Author: [comment_author]\n"
|
1755 |
+
#~ "Comment:\n"
|
1756 |
+
#~ "[comment_content]\n"
|
1757 |
+
#~ "Permalink: [post_permalink]\n"
|
1758 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1759 |
+
#~ msgstr ""
|
1760 |
+
#~ "Det har kommet en ny kommentar til '[post_title]':\n"
|
1761 |
+
#~ "[comment_permalink]\n"
|
1762 |
+
#~ "\n"
|
1763 |
+
#~ "Kommentar:\n"
|
1764 |
+
#~ "[comment_content]\n"
|
1765 |
+
#~ "\n"
|
1766 |
+
#~ "Permalenke: [post_permalink]\n"
|
1767 |
+
#~ "\n"
|
1768 |
+
#~ "For å administrere hvilke varslinger du mottar: [manager_link]"
|
1769 |
+
|
1770 |
#~ msgid ""
|
1771 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1772 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: nl_NL\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: er;\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Beheer Abonnementen"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Reactie formulier"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Beheerpagina"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Notificaties"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Opties"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Je kunt helpen"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr "Ondersteuning"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr ""
|
52 |
|
@@ -347,96 +343,96 @@ msgstr "Abonnementen bijwerken"
|
|
347 |
msgid "Sorry, no subscriptions match your search criteria."
|
348 |
msgstr "Sorry, er zijn geen abonnementen gevonden."
|
349 |
|
350 |
-
#: options/panel10.php:
|
351 |
msgid "The log file has been successfully deleted."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: options/panel10.php:
|
355 |
msgid "Can't delete the log file, check the file permissions."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: options/panel10.php:
|
359 |
msgid "The log file does not exists."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: options/panel10.php:
|
363 |
msgid "Enable Log Information"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: options/panel10.php:
|
367 |
msgid "Enable Auto clean log data"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: options/panel10.php:
|
371 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
372 |
msgid "Your settings have been successfully updated."
|
373 |
msgstr "De instellingen zijn succesvol bijgewerkt."
|
374 |
|
375 |
-
#: options/panel10.php:
|
376 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
377 |
msgid "There was an error updating the following fields:"
|
378 |
msgstr ""
|
379 |
"Er deed zich een probleem voor tijdens het bijwerken van de volgende velden:"
|
380 |
|
381 |
-
#: options/panel10.php:
|
382 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
-
#: options/panel5.php:
|
387 |
msgid "Yes"
|
388 |
msgstr "Ja"
|
389 |
|
390 |
-
#: options/panel10.php:
|
391 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
-
#: options/panel5.php:
|
396 |
msgid "No"
|
397 |
msgstr "Nee"
|
398 |
|
399 |
-
#: options/panel10.php:
|
400 |
msgid ""
|
401 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
402 |
"purposes."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: options/panel10.php:
|
406 |
msgid "Hourly"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: options/panel10.php:
|
410 |
msgid "Twice Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: options/panel10.php:
|
414 |
msgid "Daily"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: options/panel10.php:
|
418 |
msgid "If enabled, StCR will auto clean your information every day."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: options/panel10.php:
|
422 |
msgid "Clean Up Log Archive"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: options/panel10.php:
|
426 |
msgid ""
|
427 |
"If you want to clean up the log archive please click the following button"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: options/panel10.php:
|
431 |
msgid "Clean"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: options/panel10.php:
|
435 |
msgid "System Information"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: options/panel10.php:
|
439 |
-
#: options/panel4.php:283 options/panel5.php:
|
440 |
msgid "Save Changes"
|
441 |
msgstr "Opslaan"
|
442 |
|
@@ -786,7 +782,7 @@ msgstr "Alleen reacties op mijn reactie"
|
|
786 |
#: options/panel4.php:128
|
787 |
msgid ""
|
788 |
"This will be use when the user click reply on their email agent. If not set "
|
789 |
-
"will be the same as the Sender email address."
|
790 |
msgstr ""
|
791 |
|
792 |
#: options/panel4.php:147
|
@@ -802,8 +798,8 @@ msgstr ""
|
|
802 |
|
803 |
#: options/panel4.php:171
|
804 |
msgid ""
|
805 |
-
"<p><strong>Note: To get a default template clear
|
806 |
-
"the options.</strong></p>"
|
807 |
msgstr ""
|
808 |
|
809 |
#: options/panel4.php:184
|
@@ -850,79 +846,96 @@ msgid ""
|
|
850 |
"[blog_name]"
|
851 |
msgstr "Onderwerp van bevestigings e-mail. Beschikbare tag: [post_title]"
|
852 |
|
853 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
msgid "Show StCR checkbox / dropdown"
|
855 |
msgstr ""
|
856 |
|
857 |
-
#: options/panel5.php:
|
858 |
msgid "Safetly Uninstall"
|
859 |
msgstr ""
|
860 |
|
861 |
-
#: options/panel5.php:
|
862 |
msgid "Autopurge requests"
|
863 |
msgstr "Automatisch verwerpen van aanvragen"
|
864 |
|
865 |
-
#: options/panel5.php:
|
866 |
msgid "Enable double check"
|
867 |
msgstr "Dubbele check activeren"
|
868 |
|
869 |
-
#: options/panel5.php:
|
870 |
msgid "StCR Position"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: options/panel5.php:
|
874 |
msgid "Subscribe authors"
|
875 |
msgstr "Abonneer auteurs"
|
876 |
|
877 |
-
#: options/panel5.php:
|
878 |
msgid "Enable HTML emails"
|
879 |
msgstr "Activeer HTML e-mails"
|
880 |
|
881 |
-
#: options/panel5.php:
|
882 |
msgid "HTMLify Links in HTML emails"
|
883 |
msgstr "HTMLify Links in HTML e-mails"
|
884 |
|
885 |
-
#: options/panel5.php:
|
886 |
msgid "Send trackbacks"
|
887 |
msgstr "Verstuur trackbacks"
|
888 |
|
889 |
-
#: options/panel5.php:
|
890 |
msgid "Notify admin"
|
891 |
msgstr "Notificeer beheerder"
|
892 |
|
893 |
-
#: options/panel5.php:
|
894 |
msgid "Let admin subscribe"
|
895 |
msgstr "Laat beheerder abonneren"
|
896 |
|
897 |
-
#: options/panel5.php:
|
898 |
msgid "BCC admin on Notifications"
|
899 |
msgstr "BCC admin bij alle notificaties"
|
900 |
|
901 |
-
#: options/panel5.php:
|
902 |
msgid "Enable Font Awesome"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
906 |
msgid ""
|
907 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
908 |
"You should leave it to Yes always. "
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: options/panel5.php:
|
912 |
msgid "Safely Uninstall"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: options/panel5.php:
|
916 |
msgid ""
|
917 |
"This option will allow you to delete the plugin with WordPress without "
|
918 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
919 |
msgstr ""
|
920 |
|
921 |
-
#: options/panel5.php:
|
922 |
msgid "days"
|
923 |
msgstr "dagen"
|
924 |
|
925 |
-
#: options/panel5.php:
|
926 |
msgid ""
|
927 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
928 |
"this feature."
|
@@ -930,14 +943,14 @@ msgstr ""
|
|
930 |
"Verwijder abonnementen die niet bevestigd zijn na X dagen. 0 deactiveert "
|
931 |
"deze functie."
|
932 |
|
933 |
-
#: options/panel5.php:
|
934 |
msgid ""
|
935 |
"If this option is enable the subscription box will be above the submit "
|
936 |
"button in your comment form. Use this when your theme is outdated and using "
|
937 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: options/panel5.php:
|
941 |
msgid ""
|
942 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
943 |
"misuse)."
|
@@ -945,12 +958,12 @@ msgstr ""
|
|
945 |
"Verstuur een notificatie e-mail om het abonnement te bevestigen en misbruik "
|
946 |
"te voorkomen."
|
947 |
|
948 |
-
#: options/panel5.php:
|
949 |
msgid ""
|
950 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
951 |
msgstr "Abonneer auteurs automatisch op hun eigen artikelen."
|
952 |
|
953 |
-
#: options/panel5.php:
|
954 |
msgid ""
|
955 |
"If enabled, will send email messages with content-type = text/html instead "
|
956 |
"of text/plain"
|
@@ -958,11 +971,11 @@ msgstr ""
|
|
958 |
"Als dit aan staat dan zullen emails verstuurd worden met content-type text/"
|
959 |
"html in plaats van text/plain."
|
960 |
|
961 |
-
#: options/panel5.php:
|
962 |
msgid "HTMLify links in emails"
|
963 |
msgstr "HTMLify Links in HTML e-mails"
|
964 |
|
965 |
-
#: options/panel5.php:
|
966 |
msgid ""
|
967 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
968 |
"</a></code> (only when HTML emails enabled)."
|
@@ -971,69 +984,93 @@ msgstr ""
|
|
971 |
"<code><a href=\"\"></a></code> samengepakt worden (alleen "
|
972 |
"wanneer HTML e-mails gebruikt worden)."
|
973 |
|
974 |
-
#: options/panel5.php:
|
975 |
msgid "Process trackbacks"
|
976 |
msgstr "Verwerk trackbacks"
|
977 |
|
978 |
-
#: options/panel5.php:
|
979 |
msgid ""
|
980 |
"Notify users when a new trackback or pingback is added to the discussion."
|
981 |
msgstr ""
|
982 |
"Stel de gebruikers op de hoogte als er nieuwe trackbacks of pingbacks bij "
|
983 |
"een bericht geplaatst worden."
|
984 |
|
985 |
-
#: options/panel5.php:
|
986 |
msgid "Track all subscriptions"
|
987 |
msgstr "Bekijk alle abonnementen"
|
988 |
|
989 |
-
#: options/panel5.php:
|
990 |
msgid "Notify the administrator when users subscribe without commenting."
|
991 |
msgstr ""
|
992 |
"Stel beheerders op de hoogte als iemand een abonnement neemt zonder eerst "
|
993 |
"zelf te reageren."
|
994 |
|
995 |
-
#: options/panel5.php:
|
996 |
msgid "Let the administrator subscribe to comments when logged in."
|
997 |
msgstr ""
|
998 |
"Moet de beheerder zich kunnen abonneren op berichten als deze is ingelogd?"
|
999 |
|
1000 |
-
#: options/panel5.php:
|
1001 |
msgid "Send a copy of all Notifications to the administrator."
|
1002 |
msgstr "Verstuur een kopie van alle notificaties naar de admin."
|
1003 |
|
1004 |
-
#: options/panel5.php:
|
1005 |
msgid ""
|
1006 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1007 |
"you theme already add this into your site."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: options/panel5.php:
|
1011 |
msgid "StCR Unique Key"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: options/panel5.php:
|
1015 |
msgid "This Unique Key is not set, please click the following button to "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: options/panel5.php:
|
1019 |
msgid "Generate"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: options/panel5.php:
|
1023 |
msgid ""
|
1024 |
"This Unique Key will be use to send the notification to your subscribers "
|
1025 |
"with more security."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
-
#: options/
|
1029 |
-
msgid "
|
1030 |
-
|
|
|
|
|
1031 |
|
1032 |
-
#: options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1033 |
msgid ""
|
1034 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1035 |
"consider supporting the author if this plugin made your web site better, "
|
1036 |
-
"especially if you are making money out of it
|
|
|
1037 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1038 |
"strong>, and to buy some food for my hungry family."
|
1039 |
msgstr ""
|
@@ -1044,18 +1081,27 @@ msgstr ""
|
|
1044 |
"donatie zal in de plugin geïnvesteerd worden, in de ontwikkeling ervan en om "
|
1045 |
"er eten van te kopen voor mijn hongerige gezin."
|
1046 |
|
1047 |
-
#: options/panel7.php:
|
1048 |
-
|
1049 |
-
|
|
|
|
|
1050 |
|
1051 |
-
#: options/panel7.php:
|
1052 |
-
|
1053 |
-
|
1054 |
-
"
|
1055 |
-
"
|
1056 |
-
"
|
1057 |
-
"
|
1058 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1059 |
msgstr ""
|
1060 |
"Wil je geen geld doneren maar toch helpen? Denk er dan eens over om over "
|
1061 |
"mijn plugin te bloggen. Laat de lezers van je blog weten waarom deze plugin "
|
@@ -1064,11 +1110,11 @@ msgstr ""
|
|
1064 |
"Subscribe to Commentes Reloaded nog beter te maken. Wat je ook doet, in "
|
1065 |
"ieder geval bedankt voor het gebruiken van mijn plugin!"
|
1066 |
|
1067 |
-
#: options/panel7.php:
|
1068 |
msgid "Subscribe to the Beta testers"
|
1069 |
msgstr "Abonneer auteurs"
|
1070 |
|
1071 |
-
#: options/panel7.php:
|
1072 |
msgid ""
|
1073 |
"Before a new Update we release a Beta version so that our current users can "
|
1074 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1076,11 +1122,11 @@ msgid ""
|
|
1076 |
"a>"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: options/panel7.php:
|
1080 |
msgid "Vote and show your appreciation"
|
1081 |
msgstr "Ondersteun ons door te stemmen"
|
1082 |
|
1083 |
-
#: options/panel7.php:
|
1084 |
msgid ""
|
1085 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1086 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1091,11 +1137,11 @@ msgstr ""
|
|
1091 |
"comments-reloaded/\">Stem hier</a> op onze plugin in de WordPress Plugin "
|
1092 |
"Directory."
|
1093 |
|
1094 |
-
#: options/panel8.php:
|
1095 |
msgid "Did you find a Bug on the plugin?"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: options/panel8.php:
|
1099 |
msgid ""
|
1100 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1101 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1190,206 +1236,46 @@ msgstr ""
|
|
1190 |
msgid "You have request to manage another email address and this is forbidden."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
-
#: utils/stcr_manage.php:
|
1194 |
-
msgid ""
|
1195 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1196 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1197 |
-
msgstr ""
|
1198 |
-
"Houd mij op de hoogte van nieuwe reacties. Of <a "
|
1199 |
-
"href='[subscribe_link]'>abonneer jezelf</a> op deze discussie zonder te "
|
1200 |
-
"reageren."
|
1201 |
-
|
1202 |
-
#: utils/stcr_manage.php:224
|
1203 |
-
msgid ""
|
1204 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1205 |
-
"subscriptions."
|
1206 |
-
msgstr ""
|
1207 |
-
"Je hebt een abonnement op dit bericht. Beheer je abonnementen <a "
|
1208 |
-
"href='[manager_link]'>op deze pagina</a>. "
|
1209 |
-
|
1210 |
-
#: utils/stcr_manage.php:225
|
1211 |
-
msgid ""
|
1212 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1213 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1214 |
-
msgstr ""
|
1215 |
-
"Je abonnement op dit bericht moet eerst worden bevestigd. <a "
|
1216 |
-
"href='[manager_link]'>Beheer je abonnementen</a>."
|
1217 |
-
|
1218 |
-
#: utils/stcr_manage.php:226
|
1219 |
-
msgid ""
|
1220 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1221 |
-
msgstr ""
|
1222 |
-
"Op <a href='[manager_link]'>deze pagina</a> kun je de abonnementen van dit "
|
1223 |
-
"bericht beheren."
|
1224 |
-
|
1225 |
-
#: utils/stcr_manage.php:232
|
1226 |
-
msgid ""
|
1227 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1228 |
-
"will send you a message containing the link to access your personal "
|
1229 |
-
"management page."
|
1230 |
-
msgstr ""
|
1231 |
-
"Om je abonnementen te beheren moet je hieronder je e-mail adres invullen. We "
|
1232 |
-
"sturen je dan een persoonlijk link waar je je abonnementen aan kunt passen."
|
1233 |
-
|
1234 |
-
#: utils/stcr_manage.php:233
|
1235 |
-
msgid ""
|
1236 |
-
"Thank you for using our subscription service. Your request has been "
|
1237 |
-
"completed, and you should receive an email with the management link in a few "
|
1238 |
-
"minutes."
|
1239 |
-
msgstr ""
|
1240 |
-
"Bedankt voor het gebruikmaken van onze abonnementen service. Je aanvraag is "
|
1241 |
-
"voltooid en je ontvangt binnen enkele ogenblikken een e-mail met een link "
|
1242 |
-
"naar je persoonlijk beheerpagina."
|
1243 |
-
|
1244 |
-
#: utils/stcr_manage.php:234
|
1245 |
-
msgid ""
|
1246 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1247 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1248 |
-
"form here below and you're all set."
|
1249 |
-
msgstr ""
|
1250 |
-
"Je wilt je abonneren op de discussie <strong>[post_title]</strong> zonder "
|
1251 |
-
"zelf te reageren? Vul je e-mail adres hieronder in en de rest gaat vanzelf."
|
1252 |
-
|
1253 |
-
#: utils/stcr_manage.php:235
|
1254 |
-
msgid ""
|
1255 |
-
"Thank you for using our subscription service. Your request has been "
|
1256 |
-
"completed. You will receive a notification email every time a new comment to "
|
1257 |
-
"this article is approved and posted by the administrator."
|
1258 |
-
msgstr ""
|
1259 |
-
"Bedankt voor het gebruikmaken van onze abonnementen service. Je aanvraag is "
|
1260 |
-
"voltooid. Je ontvangt iedere keer een e-mail als er een nieuwe reactie is "
|
1261 |
-
"geplaatst."
|
1262 |
-
|
1263 |
-
#: utils/stcr_manage.php:236
|
1264 |
-
msgid ""
|
1265 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1266 |
-
"request, please check your email for the verification message and follow the "
|
1267 |
-
"instructions."
|
1268 |
-
msgstr ""
|
1269 |
-
"Bedankt voor het gebruikmaken van onze abonnementen service. Om je aanvraag "
|
1270 |
-
"te voltooien moet je deze eerst bevestigen. Je ontvangt hierover binnen "
|
1271 |
-
"enkele ogenblikken een e-mail bericht."
|
1272 |
-
|
1273 |
-
#: utils/stcr_manage.php:237
|
1274 |
-
msgid ""
|
1275 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1276 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1277 |
-
msgstr ""
|
1278 |
-
"Om je abonnementen aan te passen vink je het gewenste abonnement aan en klik "
|
1279 |
-
"je op de desgewenst actie."
|
1280 |
-
|
1281 |
-
#: utils/stcr_manage.php:238
|
1282 |
-
msgid ""
|
1283 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1284 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1285 |
-
"You are currently subscribed to:"
|
1286 |
-
msgstr ""
|
1287 |
-
"Om je abonnementen aan te passen vink je het gewenste abonnement aan en klik "
|
1288 |
-
"je op de desgewenst actie. Momenteel ben je geabonneerd op de volgende "
|
1289 |
-
"berichten:"
|
1290 |
-
|
1291 |
-
#: utils/stcr_manage.php:242
|
1292 |
-
msgid "There is a new comment to [post_title]"
|
1293 |
-
msgstr "Er is een nieuwe reactie geplaatst bij [post_title]"
|
1294 |
-
|
1295 |
-
#: utils/stcr_manage.php:243
|
1296 |
-
msgid ""
|
1297 |
-
"There is a new comment to [post_title].\n"
|
1298 |
-
"Comment Link: [comment_permalink]\n"
|
1299 |
-
"Author: [comment_author]\n"
|
1300 |
-
"Comment:\n"
|
1301 |
-
"[comment_content]\n"
|
1302 |
-
"Permalink: [post_permalink]\n"
|
1303 |
-
"Manage your subscriptions: [manager_link]"
|
1304 |
-
msgstr ""
|
1305 |
-
"Er is een nieuwe reactie op [post_title].\n"
|
1306 |
-
"Link naar de reactie: [comment_permalink]\n"
|
1307 |
-
"Auteur: [comment_author]\n"
|
1308 |
-
"Reactie:\n"
|
1309 |
-
"[comment_content]\n"
|
1310 |
-
"Permalink: [post_permalink]\n"
|
1311 |
-
"Beheer je abonnementen: [manager_link]"
|
1312 |
-
|
1313 |
-
#: utils/stcr_manage.php:244
|
1314 |
-
msgid "Please confirm your subscription to [post_title]"
|
1315 |
-
msgstr "Bevestig je abonnement op [post_title]"
|
1316 |
-
|
1317 |
-
#: utils/stcr_manage.php:245
|
1318 |
-
msgid ""
|
1319 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1320 |
-
"[post_permalink]\n"
|
1321 |
-
"\n"
|
1322 |
-
"Please confirm your request by clicking on this link:\n"
|
1323 |
-
"[confirm_link]"
|
1324 |
-
msgstr ""
|
1325 |
-
"Je hebt aangegeven dat je een melding wilt ontvangen elke keer dan er een "
|
1326 |
-
"nieuwe reactie geplaatst wordt op:\n"
|
1327 |
-
"[post_permalink]\n"
|
1328 |
-
"\n"
|
1329 |
-
"Bevestig je aanmelding door op deze link te klikken:\n"
|
1330 |
-
"[confirm_link]"
|
1331 |
-
|
1332 |
-
#: utils/stcr_manage.php:246
|
1333 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1334 |
-
msgstr "Beheer je abonnementen op [blog_name]"
|
1335 |
-
|
1336 |
-
#: utils/stcr_manage.php:247
|
1337 |
-
msgid ""
|
1338 |
-
"You have requested to manage your subscriptions to the articles on "
|
1339 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1340 |
-
msgstr ""
|
1341 |
-
|
1342 |
-
#: utils/stcr_manage.php:248
|
1343 |
-
msgid ""
|
1344 |
-
"You have requested to manage your subscriptions to the articles on "
|
1345 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1346 |
-
"[manager_link]"
|
1347 |
-
msgstr ""
|
1348 |
-
"Je hebt gevraagd om de link naar je abonnementen beheer pagina voor de "
|
1349 |
-
"website [blog_name]. Volg de volgende link om naar je persoonlijke beheer "
|
1350 |
-
"pagina te gaan:\n"
|
1351 |
-
"[manager_link]"
|
1352 |
-
|
1353 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1354 |
msgid "StCR System"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: utils/stcr_manage.php:
|
1358 |
-
#: utils/stcr_manage.php:
|
1359 |
-
#: utils/stcr_manage.php:
|
1360 |
-
#: utils/stcr_manage.php:
|
1361 |
-
#: utils/stcr_manage.php:
|
1362 |
msgid "You do not have sufficient permissions to access this page."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: utils/stcr_manage.php:
|
1366 |
msgid "Subscriptions"
|
1367 |
msgstr "Abonnement"
|
1368 |
|
1369 |
-
#: utils/stcr_manage.php:
|
1370 |
msgid ""
|
1371 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1372 |
msgstr ""
|
1373 |
"Hulp nodig bij het gebruik van de Subscribe to Comments Reloaded plugin? "
|
1374 |
"Bezoek de officiële"
|
1375 |
|
1376 |
-
#: utils/stcr_manage.php:
|
1377 |
msgid "support forum"
|
1378 |
msgstr "support forum"
|
1379 |
|
1380 |
-
#: utils/stcr_manage.php:
|
1381 |
msgid "Feeling generous?"
|
1382 |
msgstr "Wees eens gul!"
|
1383 |
|
1384 |
-
#: utils/stcr_manage.php:
|
1385 |
msgid "Donate a few bucks!"
|
1386 |
msgstr "Doneer een paar centen!"
|
1387 |
|
1388 |
-
#: utils/stcr_upgrade.php:
|
1389 |
msgid "Important Notice"
|
1390 |
msgstr "Belangrijke melding"
|
1391 |
|
1392 |
-
#: utils/stcr_upgrade.php:
|
1393 |
msgid ""
|
1394 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1395 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1397,7 +1283,7 @@ msgid ""
|
|
1397 |
"src=\""
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: utils/stcr_upgrade.php:
|
1401 |
msgid ""
|
1402 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1403 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
@@ -1407,7 +1293,7 @@ msgstr ""
|
|
1407 |
"gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
|
1408 |
"Reloaded</strong>."
|
1409 |
|
1410 |
-
#: utils/stcr_upgrade.php:
|
1411 |
msgid ""
|
1412 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1413 |
"Comments to prevent confusion between the two plugins."
|
@@ -1415,7 +1301,7 @@ msgstr ""
|
|
1415 |
"Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
|
1416 |
"problemen te voorkomen."
|
1417 |
|
1418 |
-
#: utils/stcr_upgrade.php:
|
1419 |
msgid ""
|
1420 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1421 |
"that you want to import, you'll need to import that data manually, as only "
|
@@ -1424,8 +1310,8 @@ msgstr ""
|
|
1424 |
"Als je data van Subscribe to Comments Reloaded < v2.0 wilt importeren moet "
|
1425 |
"je dit handmatig doen."
|
1426 |
|
1427 |
-
#: utils/stcr_upgrade.php:
|
1428 |
-
#: utils/stcr_upgrade.php:
|
1429 |
msgid ""
|
1430 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1431 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1433,7 +1319,7 @@ msgid ""
|
|
1433 |
"\"stcr-loading-animation\" src=\""
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: utils/stcr_upgrade.php:
|
1437 |
msgid ""
|
1438 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1439 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
@@ -1443,7 +1329,7 @@ msgstr ""
|
|
1443 |
"gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
|
1444 |
"Reloaded</strong>."
|
1445 |
|
1446 |
-
#: utils/stcr_upgrade.php:
|
1447 |
msgid ""
|
1448 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1449 |
"Notification to prevent confusion between the two plugins."
|
@@ -1451,7 +1337,7 @@ msgstr ""
|
|
1451 |
"Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
|
1452 |
"problemen te voorkomen."
|
1453 |
|
1454 |
-
#: utils/stcr_upgrade.php:
|
1455 |
msgid ""
|
1456 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1457 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1462,7 +1348,7 @@ msgstr ""
|
|
1462 |
"zijn gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
|
1463 |
"Reloaded</strong>."
|
1464 |
|
1465 |
-
#: utils/stcr_upgrade.php:
|
1466 |
msgid ""
|
1467 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1468 |
"Subscriptions to prevent confusion between the two plugins."
|
@@ -1470,7 +1356,7 @@ msgstr ""
|
|
1470 |
"Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
|
1471 |
"problemen te voorkomen."
|
1472 |
|
1473 |
-
#: utils/stcr_upgrade.php:
|
1474 |
msgid ""
|
1475 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1476 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1481,7 +1367,7 @@ msgstr ""
|
|
1481 |
"to Comments Reloaded < v2.0) hebt die je wilt importeren dan moet je dit "
|
1482 |
"handmatig doen."
|
1483 |
|
1484 |
-
#: utils/stcr_upgrade.php:
|
1485 |
msgid ""
|
1486 |
"<strong>Note:</strong> If you were previously using the "
|
1487 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1495,29 +1381,29 @@ msgstr ""
|
|
1495 |
"respectievelijk <code>subscribe_reloaded_show()</code> en <code>[subscribe-"
|
1496 |
"url]</code>."
|
1497 |
|
1498 |
-
#: utils/stcr_upgrade.php:
|
1499 |
msgid ""
|
1500 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: utils/stcr_upgrade.php:
|
1504 |
-
#: utils/stcr_upgrade.php:
|
1505 |
msgid ""
|
1506 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1507 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: utils/stcr_upgrade.php:
|
1511 |
msgid ""
|
1512 |
-
"Please consider to make a donation to support the plugin
|
1513 |
-
"<a href=\"\n"
|
1514 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1515 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1516 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1517 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: utils/stcr_upgrade.php:
|
1521 |
msgid ""
|
1522 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1523 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1525,23 +1411,23 @@ msgid ""
|
|
1525 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: utils/stcr_upgrade.php:
|
1529 |
msgid ""
|
1530 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1531 |
"160106."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: utils/stcr_upgrade.php:
|
1535 |
msgid ""
|
1536 |
"This version includes many changes and fixes to improve your experience with "
|
1537 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1538 |
"email templates, Subscription Checkbox position, and more!"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: utils/stcr_upgrade.php:
|
1542 |
-
#: utils/stcr_upgrade.php:
|
1543 |
-
#: utils/stcr_upgrade.php:
|
1544 |
-
#: utils/stcr_upgrade.php:
|
1545 |
msgid ""
|
1546 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1547 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1549,123 +1435,126 @@ msgid ""
|
|
1549 |
"class=\"stcr-loading-animation\" src=\""
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: utils/stcr_upgrade.php:
|
1553 |
msgid ""
|
1554 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1555 |
"160115."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: utils/stcr_upgrade.php:
|
1559 |
msgid ""
|
1560 |
"This version includes fixes to broken links while managing your subscriptions"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: utils/stcr_upgrade.php:
|
1564 |
msgid ""
|
1565 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1566 |
"160831"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: utils/stcr_upgrade.php:
|
1570 |
msgid "This version includes fixes to many bugs and also new features, "
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: utils/stcr_upgrade.php:
|
1574 |
msgid ""
|
1575 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1576 |
"address. This will help the subscribers to use the Reply option in their "
|
1577 |
"email agents."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: utils/stcr_upgrade.php:
|
1581 |
msgid ""
|
1582 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1583 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: utils/stcr_upgrade.php:
|
1587 |
msgid ""
|
1588 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1589 |
"without loosing your subscriptions. You can use this option also for reset "
|
1590 |
"all the settings, see the FAQ."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: utils/stcr_upgrade.php:
|
1594 |
msgid ""
|
1595 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1596 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1597 |
"Post Type."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: utils/stcr_upgrade.php:
|
1601 |
msgid ""
|
1602 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1603 |
"options to and the management link only by email and not to display it on "
|
1604 |
"the request link page."
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: utils/stcr_upgrade.php:
|
1608 |
msgid ""
|
1609 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1610 |
"160902"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: utils/stcr_upgrade.php:
|
1614 |
msgid ""
|
1615 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1616 |
"previous 160831 version."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: utils/stcr_upgrade.php:
|
1620 |
msgid "Settings"
|
1621 |
msgstr "Instellingen"
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
1624 |
msgid ""
|
1625 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1626 |
"160915"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: utils/stcr_upgrade.php:
|
1630 |
-
#: utils/stcr_upgrade.php:
|
1631 |
msgid "This version includes fixes and improvements, "
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: utils/stcr_upgrade.php:
|
1635 |
msgid ""
|
1636 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1637 |
"dropdown."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: utils/stcr_upgrade.php:
|
1641 |
msgid ""
|
1642 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
-
#: utils/stcr_upgrade.php:
|
|
|
1646 |
msgid "Log Settings"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: utils/stcr_upgrade.php:
|
|
|
1650 |
msgid ""
|
1651 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1652 |
msgstr ""
|
1653 |
|
1654 |
-
#: utils/stcr_upgrade.php:
|
1655 |
msgid ""
|
1656 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1657 |
"enable."
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: utils/stcr_upgrade.php:
|
1661 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: utils/stcr_upgrade.php:
|
|
|
1665 |
msgid "The support of this plugin is given thanks to your donations."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: utils/stcr_upgrade.php:
|
1669 |
msgid ""
|
1670 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1671 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1675,19 +1564,19 @@ msgid ""
|
|
1675 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: utils/stcr_upgrade.php:
|
1679 |
msgid ""
|
1680 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1681 |
"installation regarding a database table creation."
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: utils/stcr_upgrade.php:
|
1685 |
msgid ""
|
1686 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1687 |
"Awesome."
|
1688 |
msgstr ""
|
1689 |
|
1690 |
-
#: utils/stcr_upgrade.php:
|
1691 |
msgid ""
|
1692 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1693 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1698,7 +1587,203 @@ msgid ""
|
|
1698 |
"for the users that have supported the plugin development."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1702 |
msgid "StCR Notification"
|
1703 |
msgstr "Notificaties"
|
1704 |
|
@@ -1710,6 +1795,29 @@ msgstr "Meld niet aan"
|
|
1710 |
msgid "All"
|
1711 |
msgstr "Alles"
|
1712 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1713 |
#~ msgid ""
|
1714 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1715 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:11-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:11-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 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: er;\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Beheer Abonnementen"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Reactie formulier"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Beheerpagina"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Notificaties"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Opties"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "Ondersteuning"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr ""
|
48 |
|
343 |
msgid "Sorry, no subscriptions match your search criteria."
|
344 |
msgstr "Sorry, er zijn geen abonnementen gevonden."
|
345 |
|
346 |
+
#: options/panel10.php:41
|
347 |
msgid "The log file has been successfully deleted."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: options/panel10.php:46
|
351 |
msgid "Can't delete the log file, check the file permissions."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: options/panel10.php:52
|
355 |
msgid "The log file does not exists."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: options/panel10.php:66 options/panel10.php:110
|
359 |
msgid "Enable Log Information"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: options/panel10.php:72 options/panel10.php:119
|
363 |
msgid "Enable Auto clean log data"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
367 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
368 |
msgid "Your settings have been successfully updated."
|
369 |
msgstr "De instellingen zijn succesvol bijgewerkt."
|
370 |
|
371 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
372 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
373 |
msgid "There was an error updating the following fields:"
|
374 |
msgstr ""
|
375 |
"Er deed zich een probleem voor tijdens het bijwerken van de volgende velden:"
|
376 |
|
377 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
378 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
379 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
380 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
381 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
382 |
+
#: options/panel5.php:210 options/panel5.php:219
|
383 |
msgid "Yes"
|
384 |
msgstr "Ja"
|
385 |
|
386 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
387 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
388 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
389 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
390 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
391 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
392 |
msgid "No"
|
393 |
msgstr "Nee"
|
394 |
|
395 |
+
#: options/panel10.php:114
|
396 |
msgid ""
|
397 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
398 |
"purposes."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: options/panel10.php:125
|
402 |
msgid "Hourly"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: options/panel10.php:126
|
406 |
msgid "Twice Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: options/panel10.php:127
|
410 |
msgid "Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: options/panel10.php:129
|
414 |
msgid "If enabled, StCR will auto clean your information every day."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: options/panel10.php:134
|
418 |
msgid "Clean Up Log Archive"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: options/panel10.php:138
|
422 |
msgid ""
|
423 |
"If you want to clean up the log archive please click the following button"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: options/panel10.php:140
|
427 |
msgid "Clean"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: options/panel10.php:147 options/panel10.php:150
|
431 |
msgid "System Information"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
435 |
+
#: options/panel4.php:283 options/panel5.php:265
|
436 |
msgid "Save Changes"
|
437 |
msgstr "Opslaan"
|
438 |
|
782 |
#: options/panel4.php:128
|
783 |
msgid ""
|
784 |
"This will be use when the user click reply on their email agent. If not set "
|
785 |
+
"it will be the same as the Sender email address."
|
786 |
msgstr ""
|
787 |
|
788 |
#: options/panel4.php:147
|
798 |
|
799 |
#: options/panel4.php:171
|
800 |
msgid ""
|
801 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
802 |
+
"all the content and save the options.</strong></p>"
|
803 |
msgstr ""
|
804 |
|
805 |
#: options/panel4.php:184
|
846 |
"[blog_name]"
|
847 |
msgstr "Onderwerp van bevestigings e-mail. Beschikbare tag: [post_title]"
|
848 |
|
849 |
+
#: options/panel5.php:38
|
850 |
+
#, fuzzy
|
851 |
+
#| msgid "Your settings have been successfully updated."
|
852 |
+
msgid "Your settings have been successfully reset."
|
853 |
+
msgstr "De instellingen zijn succesvol bijgewerkt."
|
854 |
+
|
855 |
+
#: options/panel5.php:40
|
856 |
+
#, fuzzy
|
857 |
+
#| msgid "There was an error updating the following fields:"
|
858 |
+
msgid "There was an error deleting the options:"
|
859 |
+
msgstr ""
|
860 |
+
"Er deed zich een probleem voor tijdens het bijwerken van de volgende velden:"
|
861 |
+
|
862 |
+
#: options/panel5.php:48 options/panel5.php:108
|
863 |
msgid "Show StCR checkbox / dropdown"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: options/panel5.php:51
|
867 |
msgid "Safetly Uninstall"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: options/panel5.php:54 options/panel5.php:125
|
871 |
msgid "Autopurge requests"
|
872 |
msgstr "Automatisch verwerpen van aanvragen"
|
873 |
|
874 |
+
#: options/panel5.php:57 options/panel5.php:143
|
875 |
msgid "Enable double check"
|
876 |
msgstr "Dubbele check activeren"
|
877 |
|
878 |
+
#: options/panel5.php:60 options/panel5.php:134
|
879 |
msgid "StCR Position"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: options/panel5.php:63 options/panel5.php:151
|
883 |
msgid "Subscribe authors"
|
884 |
msgstr "Abonneer auteurs"
|
885 |
|
886 |
+
#: options/panel5.php:66 options/panel5.php:161
|
887 |
msgid "Enable HTML emails"
|
888 |
msgstr "Activeer HTML e-mails"
|
889 |
|
890 |
+
#: options/panel5.php:69
|
891 |
msgid "HTMLify Links in HTML emails"
|
892 |
msgstr "HTMLify Links in HTML e-mails"
|
893 |
|
894 |
+
#: options/panel5.php:72
|
895 |
msgid "Send trackbacks"
|
896 |
msgstr "Verstuur trackbacks"
|
897 |
|
898 |
+
#: options/panel5.php:75
|
899 |
msgid "Notify admin"
|
900 |
msgstr "Notificeer beheerder"
|
901 |
|
902 |
+
#: options/panel5.php:78 options/panel5.php:199
|
903 |
msgid "Let admin subscribe"
|
904 |
msgstr "Laat beheerder abonneren"
|
905 |
|
906 |
+
#: options/panel5.php:81 options/panel5.php:208
|
907 |
msgid "BCC admin on Notifications"
|
908 |
msgstr "BCC admin bij alle notificaties"
|
909 |
|
910 |
+
#: options/panel5.php:84 options/panel5.php:217
|
911 |
msgid "Enable Font Awesome"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
915 |
+
msgid "Reset All Options"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: options/panel5.php:112
|
919 |
msgid ""
|
920 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
921 |
"You should leave it to Yes always. "
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: options/panel5.php:117
|
925 |
msgid "Safely Uninstall"
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: options/panel5.php:121
|
929 |
msgid ""
|
930 |
"This option will allow you to delete the plugin with WordPress without "
|
931 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: options/panel5.php:128
|
935 |
msgid "days"
|
936 |
msgstr "dagen"
|
937 |
|
938 |
+
#: options/panel5.php:129
|
939 |
msgid ""
|
940 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
941 |
"this feature."
|
943 |
"Verwijder abonnementen die niet bevestigd zijn na X dagen. 0 deactiveert "
|
944 |
"deze functie."
|
945 |
|
946 |
+
#: options/panel5.php:138
|
947 |
msgid ""
|
948 |
"If this option is enable the subscription box will be above the submit "
|
949 |
"button in your comment form. Use this when your theme is outdated and using "
|
950 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: options/panel5.php:147
|
954 |
msgid ""
|
955 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
956 |
"misuse)."
|
958 |
"Verstuur een notificatie e-mail om het abonnement te bevestigen en misbruik "
|
959 |
"te voorkomen."
|
960 |
|
961 |
+
#: options/panel5.php:156
|
962 |
msgid ""
|
963 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
964 |
msgstr "Abonneer auteurs automatisch op hun eigen artikelen."
|
965 |
|
966 |
+
#: options/panel5.php:165
|
967 |
msgid ""
|
968 |
"If enabled, will send email messages with content-type = text/html instead "
|
969 |
"of text/plain"
|
971 |
"Als dit aan staat dan zullen emails verstuurd worden met content-type text/"
|
972 |
"html in plaats van text/plain."
|
973 |
|
974 |
+
#: options/panel5.php:170
|
975 |
msgid "HTMLify links in emails"
|
976 |
msgstr "HTMLify Links in HTML e-mails"
|
977 |
|
978 |
+
#: options/panel5.php:175
|
979 |
msgid ""
|
980 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
981 |
"</a></code> (only when HTML emails enabled)."
|
984 |
"<code><a href=\"\"></a></code> samengepakt worden (alleen "
|
985 |
"wanneer HTML e-mails gebruikt worden)."
|
986 |
|
987 |
+
#: options/panel5.php:180
|
988 |
msgid "Process trackbacks"
|
989 |
msgstr "Verwerk trackbacks"
|
990 |
|
991 |
+
#: options/panel5.php:184
|
992 |
msgid ""
|
993 |
"Notify users when a new trackback or pingback is added to the discussion."
|
994 |
msgstr ""
|
995 |
"Stel de gebruikers op de hoogte als er nieuwe trackbacks of pingbacks bij "
|
996 |
"een bericht geplaatst worden."
|
997 |
|
998 |
+
#: options/panel5.php:189
|
999 |
msgid "Track all subscriptions"
|
1000 |
msgstr "Bekijk alle abonnementen"
|
1001 |
|
1002 |
+
#: options/panel5.php:194
|
1003 |
msgid "Notify the administrator when users subscribe without commenting."
|
1004 |
msgstr ""
|
1005 |
"Stel beheerders op de hoogte als iemand een abonnement neemt zonder eerst "
|
1006 |
"zelf te reageren."
|
1007 |
|
1008 |
+
#: options/panel5.php:203
|
1009 |
msgid "Let the administrator subscribe to comments when logged in."
|
1010 |
msgstr ""
|
1011 |
"Moet de beheerder zich kunnen abonneren op berichten als deze is ingelogd?"
|
1012 |
|
1013 |
+
#: options/panel5.php:212
|
1014 |
msgid "Send a copy of all Notifications to the administrator."
|
1015 |
msgstr "Verstuur een kopie van alle notificaties naar de admin."
|
1016 |
|
1017 |
+
#: options/panel5.php:221
|
1018 |
msgid ""
|
1019 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1020 |
"you theme already add this into your site."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: options/panel5.php:226
|
1024 |
msgid "StCR Unique Key"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: options/panel5.php:231
|
1028 |
msgid "This Unique Key is not set, please click the following button to "
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1032 |
msgid "Generate"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: options/panel5.php:243
|
1036 |
msgid ""
|
1037 |
"This Unique Key will be use to send the notification to your subscribers "
|
1038 |
"with more security."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: options/panel5.php:256
|
1042 |
+
msgid ""
|
1043 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1044 |
+
"with caution."
|
1045 |
+
msgstr ""
|
1046 |
|
1047 |
+
#: options/panel5.php:258
|
1048 |
+
msgid "Yes, Delete Options including subscriptions."
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: options/panel5.php:259
|
1052 |
+
msgid "No, Only delete the StCR Options."
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1056 |
+
msgid ""
|
1057 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1058 |
+
"hidden=\"true\"></i>"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1062 |
+
#, fuzzy
|
1063 |
+
#| msgid ""
|
1064 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1065 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1066 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1067 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1068 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1069 |
msgid ""
|
1070 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1071 |
"consider supporting the author if this plugin made your web site better, "
|
1072 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1073 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1074 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1075 |
"strong>, and to buy some food for my hungry family."
|
1076 |
msgstr ""
|
1081 |
"donatie zal in de plugin geïnvesteerd worden, in de ontwikkeling ervan en om "
|
1082 |
"er eten van te kopen voor mijn hongerige gezin."
|
1083 |
|
1084 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1085 |
+
#, fuzzy
|
1086 |
+
#| msgid "You can help"
|
1087 |
+
msgid "You can still help"
|
1088 |
+
msgstr "Je kunt helpen"
|
1089 |
|
1090 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1091 |
+
#, fuzzy
|
1092 |
+
#| msgid ""
|
1093 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1094 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1095 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1096 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1097 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1098 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1099 |
+
msgid ""
|
1100 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1101 |
+
"Please let your readers know what makes your blog better. You can also "
|
1102 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1103 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1104 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1105 |
msgstr ""
|
1106 |
"Wil je geen geld doneren maar toch helpen? Denk er dan eens over om over "
|
1107 |
"mijn plugin te bloggen. Laat de lezers van je blog weten waarom deze plugin "
|
1110 |
"Subscribe to Commentes Reloaded nog beter te maken. Wat je ook doet, in "
|
1111 |
"ieder geval bedankt voor het gebruiken van mijn plugin!"
|
1112 |
|
1113 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1114 |
msgid "Subscribe to the Beta testers"
|
1115 |
msgstr "Abonneer auteurs"
|
1116 |
|
1117 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1118 |
msgid ""
|
1119 |
"Before a new Update we release a Beta version so that our current users can "
|
1120 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1122 |
"a>"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1126 |
msgid "Vote and show your appreciation"
|
1127 |
msgstr "Ondersteun ons door te stemmen"
|
1128 |
|
1129 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1130 |
msgid ""
|
1131 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1132 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1137 |
"comments-reloaded/\">Stem hier</a> op onze plugin in de WordPress Plugin "
|
1138 |
"Directory."
|
1139 |
|
1140 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1141 |
msgid "Did you find a Bug on the plugin?"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1145 |
msgid ""
|
1146 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1147 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1236 |
msgid "You have request to manage another email address and this is forbidden."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1240 |
msgid "StCR System"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1244 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1245 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1246 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1247 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1248 |
msgid "You do not have sufficient permissions to access this page."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: utils/stcr_manage.php:726
|
1252 |
msgid "Subscriptions"
|
1253 |
msgstr "Abonnement"
|
1254 |
|
1255 |
+
#: utils/stcr_manage.php:782
|
1256 |
msgid ""
|
1257 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1258 |
msgstr ""
|
1259 |
"Hulp nodig bij het gebruik van de Subscribe to Comments Reloaded plugin? "
|
1260 |
"Bezoek de officiële"
|
1261 |
|
1262 |
+
#: utils/stcr_manage.php:782
|
1263 |
msgid "support forum"
|
1264 |
msgstr "support forum"
|
1265 |
|
1266 |
+
#: utils/stcr_manage.php:783
|
1267 |
msgid "Feeling generous?"
|
1268 |
msgstr "Wees eens gul!"
|
1269 |
|
1270 |
+
#: utils/stcr_manage.php:783
|
1271 |
msgid "Donate a few bucks!"
|
1272 |
msgstr "Doneer een paar centen!"
|
1273 |
|
1274 |
+
#: utils/stcr_upgrade.php:72
|
1275 |
msgid "Important Notice"
|
1276 |
msgstr "Belangrijke melding"
|
1277 |
|
1278 |
+
#: utils/stcr_upgrade.php:120
|
1279 |
msgid ""
|
1280 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1281 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1283 |
"src=\""
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: utils/stcr_upgrade.php:175
|
1287 |
msgid ""
|
1288 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1289 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1293 |
"gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
|
1294 |
"Reloaded</strong>."
|
1295 |
|
1296 |
+
#: utils/stcr_upgrade.php:175
|
1297 |
msgid ""
|
1298 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1299 |
"Comments to prevent confusion between the two plugins."
|
1301 |
"Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
|
1302 |
"problemen te voorkomen."
|
1303 |
|
1304 |
+
#: utils/stcr_upgrade.php:176
|
1305 |
msgid ""
|
1306 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1307 |
"that you want to import, you'll need to import that data manually, as only "
|
1310 |
"Als je data van Subscribe to Comments Reloaded < v2.0 wilt importeren moet "
|
1311 |
"je dit handmatig doen."
|
1312 |
|
1313 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1314 |
+
#: utils/stcr_upgrade.php:400
|
1315 |
msgid ""
|
1316 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1317 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1319 |
"\"stcr-loading-animation\" src=\""
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: utils/stcr_upgrade.php:250
|
1323 |
msgid ""
|
1324 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1325 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1329 |
"gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
|
1330 |
"Reloaded</strong>."
|
1331 |
|
1332 |
+
#: utils/stcr_upgrade.php:250
|
1333 |
msgid ""
|
1334 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1335 |
"Notification to prevent confusion between the two plugins."
|
1337 |
"Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
|
1338 |
"problemen te voorkomen."
|
1339 |
|
1340 |
+
#: utils/stcr_upgrade.php:397
|
1341 |
msgid ""
|
1342 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1343 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1348 |
"zijn gevonden en automatisch geïmporteerd in <strong>Subscribe to Comments "
|
1349 |
"Reloaded</strong>."
|
1350 |
|
1351 |
+
#: utils/stcr_upgrade.php:397
|
1352 |
msgid ""
|
1353 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1354 |
"Subscriptions to prevent confusion between the two plugins."
|
1356 |
"Het is aan te raden Subscribe to Comments te <strong>deactiveren</strong> om "
|
1357 |
"problemen te voorkomen."
|
1358 |
|
1359 |
+
#: utils/stcr_upgrade.php:398
|
1360 |
msgid ""
|
1361 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1362 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1367 |
"to Comments Reloaded < v2.0) hebt die je wilt importeren dan moet je dit "
|
1368 |
"handmatig doen."
|
1369 |
|
1370 |
+
#: utils/stcr_upgrade.php:399
|
1371 |
msgid ""
|
1372 |
"<strong>Note:</strong> If you were previously using the "
|
1373 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1381 |
"respectievelijk <code>subscribe_reloaded_show()</code> en <code>[subscribe-"
|
1382 |
"url]</code>."
|
1383 |
|
1384 |
+
#: utils/stcr_upgrade.php:413
|
1385 |
msgid ""
|
1386 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1390 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1391 |
msgid ""
|
1392 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1393 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: utils/stcr_upgrade.php:415
|
1397 |
msgid ""
|
1398 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1399 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1400 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1401 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1402 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1403 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: utils/stcr_upgrade.php:417
|
1407 |
msgid ""
|
1408 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1409 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1411 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: utils/stcr_upgrade.php:428
|
1415 |
msgid ""
|
1416 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1417 |
"160106."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: utils/stcr_upgrade.php:429
|
1421 |
msgid ""
|
1422 |
"This version includes many changes and fixes to improve your experience with "
|
1423 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1424 |
"email templates, Subscription Checkbox position, and more!"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1428 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1429 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1430 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1431 |
msgid ""
|
1432 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1433 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1435 |
"class=\"stcr-loading-animation\" src=\""
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: utils/stcr_upgrade.php:443
|
1439 |
msgid ""
|
1440 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1441 |
"160115."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: utils/stcr_upgrade.php:444
|
1445 |
msgid ""
|
1446 |
"This version includes fixes to broken links while managing your subscriptions"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: utils/stcr_upgrade.php:458
|
1450 |
msgid ""
|
1451 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1452 |
"160831"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1456 |
msgid "This version includes fixes to many bugs and also new features, "
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1460 |
msgid ""
|
1461 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1462 |
"address. This will help the subscribers to use the Reply option in their "
|
1463 |
"email agents."
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1467 |
msgid ""
|
1468 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1469 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1473 |
msgid ""
|
1474 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1475 |
"without loosing your subscriptions. You can use this option also for reset "
|
1476 |
"all the settings, see the FAQ."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1480 |
msgid ""
|
1481 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1482 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1483 |
"Post Type."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1487 |
msgid ""
|
1488 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1489 |
"options to and the management link only by email and not to display it on "
|
1490 |
"the request link page."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: utils/stcr_upgrade.php:480
|
1494 |
msgid ""
|
1495 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1496 |
"160902"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: utils/stcr_upgrade.php:483
|
1500 |
msgid ""
|
1501 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1502 |
"previous 160831 version."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1506 |
msgid "Settings"
|
1507 |
msgstr "Instellingen"
|
1508 |
|
1509 |
+
#: utils/stcr_upgrade.php:504
|
1510 |
msgid ""
|
1511 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1512 |
"160915"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1516 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1517 |
msgid "This version includes fixes and improvements, "
|
1518 |
msgstr ""
|
1519 |
|
1520 |
+
#: utils/stcr_upgrade.php:508
|
1521 |
msgid ""
|
1522 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1523 |
"dropdown."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: utils/stcr_upgrade.php:509
|
1527 |
msgid ""
|
1528 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1532 |
+
#: utils/stcr_upgrade.php:576
|
1533 |
msgid "Log Settings"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1537 |
+
#: utils/stcr_upgrade.php:580
|
1538 |
msgid ""
|
1539 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: utils/stcr_upgrade.php:529
|
1543 |
msgid ""
|
1544 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1545 |
"enable."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: utils/stcr_upgrade.php:530
|
1549 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1553 |
+
#: utils/stcr_upgrade.php:590
|
1554 |
msgid "The support of this plugin is given thanks to your donations."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: utils/stcr_upgrade.php:536
|
1558 |
msgid ""
|
1559 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1560 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1564 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: utils/stcr_upgrade.php:557
|
1568 |
msgid ""
|
1569 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1570 |
"installation regarding a database table creation."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: utils/stcr_upgrade.php:558
|
1574 |
msgid ""
|
1575 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1576 |
"Awesome."
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: utils/stcr_upgrade.php:563
|
1580 |
msgid ""
|
1581 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1582 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1587 |
"for the users that have supported the plugin development."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: utils/stcr_upgrade.php:584
|
1591 |
+
msgid ""
|
1592 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1593 |
+
"issues."
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: utils/stcr_upgrade.php:585
|
1597 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1598 |
+
msgstr ""
|
1599 |
+
|
1600 |
+
#: utils/stcr_upgrade.php:586
|
1601 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: utils/stcr_upgrade.php:591
|
1605 |
+
msgid ""
|
1606 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1607 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1608 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1609 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1610 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1611 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1612 |
+
"Thanks for all the users that have supported the plugin development."
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: utils/stcr_utils.php:196
|
1616 |
+
msgid ""
|
1617 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1618 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1619 |
+
msgstr ""
|
1620 |
+
"Houd mij op de hoogte van nieuwe reacties. Of <a "
|
1621 |
+
"href='[subscribe_link]'>abonneer jezelf</a> op deze discussie zonder te "
|
1622 |
+
"reageren."
|
1623 |
+
|
1624 |
+
#: utils/stcr_utils.php:197
|
1625 |
+
msgid ""
|
1626 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1627 |
+
"subscriptions."
|
1628 |
+
msgstr ""
|
1629 |
+
"Je hebt een abonnement op dit bericht. Beheer je abonnementen <a "
|
1630 |
+
"href='[manager_link]'>op deze pagina</a>. "
|
1631 |
+
|
1632 |
+
#: utils/stcr_utils.php:198
|
1633 |
+
msgid ""
|
1634 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1635 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1636 |
+
msgstr ""
|
1637 |
+
"Je abonnement op dit bericht moet eerst worden bevestigd. <a "
|
1638 |
+
"href='[manager_link]'>Beheer je abonnementen</a>."
|
1639 |
+
|
1640 |
+
#: utils/stcr_utils.php:199
|
1641 |
+
msgid ""
|
1642 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1643 |
+
msgstr ""
|
1644 |
+
"Op <a href='[manager_link]'>deze pagina</a> kun je de abonnementen van dit "
|
1645 |
+
"bericht beheren."
|
1646 |
+
|
1647 |
+
#: utils/stcr_utils.php:205
|
1648 |
+
msgid ""
|
1649 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1650 |
+
"will send you a message containing the link to access your personal "
|
1651 |
+
"management page."
|
1652 |
+
msgstr ""
|
1653 |
+
"Om je abonnementen te beheren moet je hieronder je e-mail adres invullen. We "
|
1654 |
+
"sturen je dan een persoonlijk link waar je je abonnementen aan kunt passen."
|
1655 |
+
|
1656 |
+
#: utils/stcr_utils.php:206
|
1657 |
+
msgid ""
|
1658 |
+
"Thank you for using our subscription service. Your request has been "
|
1659 |
+
"completed, and you should receive an email with the management link in a few "
|
1660 |
+
"minutes."
|
1661 |
+
msgstr ""
|
1662 |
+
"Bedankt voor het gebruikmaken van onze abonnementen service. Je aanvraag is "
|
1663 |
+
"voltooid en je ontvangt binnen enkele ogenblikken een e-mail met een link "
|
1664 |
+
"naar je persoonlijk beheerpagina."
|
1665 |
+
|
1666 |
+
#: utils/stcr_utils.php:207
|
1667 |
+
msgid ""
|
1668 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1669 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1670 |
+
"form here below and you're all set."
|
1671 |
+
msgstr ""
|
1672 |
+
"Je wilt je abonneren op de discussie <strong>[post_title]</strong> zonder "
|
1673 |
+
"zelf te reageren? Vul je e-mail adres hieronder in en de rest gaat vanzelf."
|
1674 |
+
|
1675 |
+
#: utils/stcr_utils.php:208
|
1676 |
+
msgid ""
|
1677 |
+
"Thank you for using our subscription service. Your request has been "
|
1678 |
+
"completed. You will receive a notification email every time a new comment to "
|
1679 |
+
"this article is approved and posted by the administrator."
|
1680 |
+
msgstr ""
|
1681 |
+
"Bedankt voor het gebruikmaken van onze abonnementen service. Je aanvraag is "
|
1682 |
+
"voltooid. Je ontvangt iedere keer een e-mail als er een nieuwe reactie is "
|
1683 |
+
"geplaatst."
|
1684 |
+
|
1685 |
+
#: utils/stcr_utils.php:209
|
1686 |
+
msgid ""
|
1687 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1688 |
+
"request, please check your email for the verification message and follow the "
|
1689 |
+
"instructions."
|
1690 |
+
msgstr ""
|
1691 |
+
"Bedankt voor het gebruikmaken van onze abonnementen service. Om je aanvraag "
|
1692 |
+
"te voltooien moet je deze eerst bevestigen. Je ontvangt hierover binnen "
|
1693 |
+
"enkele ogenblikken een e-mail bericht."
|
1694 |
+
|
1695 |
+
#: utils/stcr_utils.php:210
|
1696 |
+
msgid ""
|
1697 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1698 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1699 |
+
msgstr ""
|
1700 |
+
"Om je abonnementen aan te passen vink je het gewenste abonnement aan en klik "
|
1701 |
+
"je op de desgewenst actie."
|
1702 |
+
|
1703 |
+
#: utils/stcr_utils.php:211
|
1704 |
+
msgid ""
|
1705 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1706 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1707 |
+
"You are currently subscribed to:"
|
1708 |
+
msgstr ""
|
1709 |
+
"Om je abonnementen aan te passen vink je het gewenste abonnement aan en klik "
|
1710 |
+
"je op de desgewenst actie. Momenteel ben je geabonneerd op de volgende "
|
1711 |
+
"berichten:"
|
1712 |
+
|
1713 |
+
#: utils/stcr_utils.php:215
|
1714 |
+
msgid "There is a new comment to [post_title]"
|
1715 |
+
msgstr "Er is een nieuwe reactie geplaatst bij [post_title]"
|
1716 |
+
|
1717 |
+
#: utils/stcr_utils.php:216
|
1718 |
+
msgid ""
|
1719 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1720 |
+
"\n"
|
1721 |
+
"<hr />\n"
|
1722 |
+
"<strong>Comment link:</strong> <a href="
|
1723 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1724 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1725 |
+
"\n"
|
1726 |
+
"<strong>Comment:</strong>\n"
|
1727 |
+
"[comment_content]\n"
|
1728 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1729 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1730 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1731 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1732 |
+
msgstr ""
|
1733 |
+
|
1734 |
+
#: utils/stcr_utils.php:217
|
1735 |
+
msgid "Please confirm your subscription to [post_title]"
|
1736 |
+
msgstr "Bevestig je abonnement op [post_title]"
|
1737 |
+
|
1738 |
+
#: utils/stcr_utils.php:218
|
1739 |
+
#, fuzzy
|
1740 |
+
#| msgid ""
|
1741 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1742 |
+
#| "[post_permalink]\n"
|
1743 |
+
#| "\n"
|
1744 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1745 |
+
#| "[confirm_link]"
|
1746 |
+
msgid ""
|
1747 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1748 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1749 |
+
"\n"
|
1750 |
+
"Please confirm your request by clicking on this link:\n"
|
1751 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1752 |
+
msgstr ""
|
1753 |
+
"Je hebt aangegeven dat je een melding wilt ontvangen elke keer dan er een "
|
1754 |
+
"nieuwe reactie geplaatst wordt op:\n"
|
1755 |
+
"[post_permalink]\n"
|
1756 |
+
"\n"
|
1757 |
+
"Bevestig je aanmelding door op deze link te klikken:\n"
|
1758 |
+
"[confirm_link]"
|
1759 |
+
|
1760 |
+
#: utils/stcr_utils.php:219
|
1761 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1762 |
+
msgstr "Beheer je abonnementen op [blog_name]"
|
1763 |
+
|
1764 |
+
#: utils/stcr_utils.php:220
|
1765 |
+
msgid ""
|
1766 |
+
"You have requested to manage your subscriptions to the articles on "
|
1767 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1768 |
+
msgstr ""
|
1769 |
+
|
1770 |
+
#: utils/stcr_utils.php:221
|
1771 |
+
#, fuzzy
|
1772 |
+
#| msgid ""
|
1773 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1774 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1775 |
+
#| "[manager_link]"
|
1776 |
+
msgid ""
|
1777 |
+
"You have requested to manage your subscriptions to the articles on "
|
1778 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1779 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1780 |
+
msgstr ""
|
1781 |
+
"Je hebt gevraagd om de link naar je abonnementen beheer pagina voor de "
|
1782 |
+
"website [blog_name]. Volg de volgende link om naar je persoonlijke beheer "
|
1783 |
+
"pagina te gaan:\n"
|
1784 |
+
"[manager_link]"
|
1785 |
+
|
1786 |
+
#: utils/stcr_utils.php:300
|
1787 |
msgid "StCR Notification"
|
1788 |
msgstr "Notificaties"
|
1789 |
|
1795 |
msgid "All"
|
1796 |
msgstr "Alles"
|
1797 |
|
1798 |
+
#~ msgid "Support the developers"
|
1799 |
+
#~ msgstr "Support de ontwikkelaar"
|
1800 |
+
|
1801 |
+
#~ msgid "Don't want to donate? You can still help"
|
1802 |
+
#~ msgstr "Wil je niet doneren? Je kunt toch helpen"
|
1803 |
+
|
1804 |
+
#~ msgid ""
|
1805 |
+
#~ "There is a new comment to [post_title].\n"
|
1806 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1807 |
+
#~ "Author: [comment_author]\n"
|
1808 |
+
#~ "Comment:\n"
|
1809 |
+
#~ "[comment_content]\n"
|
1810 |
+
#~ "Permalink: [post_permalink]\n"
|
1811 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1812 |
+
#~ msgstr ""
|
1813 |
+
#~ "Er is een nieuwe reactie op [post_title].\n"
|
1814 |
+
#~ "Link naar de reactie: [comment_permalink]\n"
|
1815 |
+
#~ "Auteur: [comment_author]\n"
|
1816 |
+
#~ "Reactie:\n"
|
1817 |
+
#~ "[comment_content]\n"
|
1818 |
+
#~ "Permalink: [post_permalink]\n"
|
1819 |
+
#~ "Beheer je abonnementen: [manager_link]"
|
1820 |
+
|
1821 |
#~ msgid ""
|
1822 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1823 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: Filip \"inzaghi89\" Cierpich <inzaghi89@gmail.com>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -14,40 +14,36 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Generator: Poedit
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: options/index.php:
|
21 |
-
#: utils/
|
22 |
msgid "Manage subscriptions"
|
23 |
msgstr "Zarządzaj subskrypcjami"
|
24 |
|
25 |
-
#: options/index.php:
|
26 |
msgid "Comment Form"
|
27 |
msgstr "Formularz komentarzy"
|
28 |
|
29 |
-
#: options/index.php:
|
30 |
msgid "Management Page"
|
31 |
msgstr "Zarządzaj stroną"
|
32 |
|
33 |
-
#: options/index.php:
|
34 |
msgid "Notifications"
|
35 |
msgstr "Powiadomienia"
|
36 |
|
37 |
-
#: options/index.php:
|
38 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
39 |
msgid "Options"
|
40 |
msgstr "Opcje"
|
41 |
|
42 |
-
#: options/index.php:
|
43 |
-
msgid "You can help"
|
44 |
-
msgstr "Możesz pomóc"
|
45 |
-
|
46 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
47 |
msgid "Support"
|
48 |
msgstr "Wsparcie"
|
49 |
|
50 |
-
#: options/index.php:
|
51 |
msgid "Donate"
|
52 |
msgstr ""
|
53 |
|
@@ -348,95 +344,95 @@ msgstr "Aktualizuj subskrypcje"
|
|
348 |
msgid "Sorry, no subscriptions match your search criteria."
|
349 |
msgstr "Przepraszamy, żadna subskrypcja nie spełnia wymaganych kryteriów."
|
350 |
|
351 |
-
#: options/panel10.php:
|
352 |
msgid "The log file has been successfully deleted."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: options/panel10.php:
|
356 |
msgid "Can't delete the log file, check the file permissions."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: options/panel10.php:
|
360 |
msgid "The log file does not exists."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: options/panel10.php:
|
364 |
msgid "Enable Log Information"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: options/panel10.php:
|
368 |
msgid "Enable Auto clean log data"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: options/panel10.php:
|
372 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
373 |
msgid "Your settings have been successfully updated."
|
374 |
msgstr "Twoje ustawienia zostały pomyślnie zapisane."
|
375 |
|
376 |
-
#: options/panel10.php:
|
377 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
378 |
msgid "There was an error updating the following fields:"
|
379 |
msgstr "Wystąpił problem podczas zapisu następujacych ustawień:"
|
380 |
|
381 |
-
#: options/panel10.php:
|
382 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
-
#: options/panel5.php:
|
387 |
msgid "Yes"
|
388 |
msgstr "Tak"
|
389 |
|
390 |
-
#: options/panel10.php:
|
391 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
-
#: options/panel5.php:
|
396 |
msgid "No"
|
397 |
msgstr "Nie"
|
398 |
|
399 |
-
#: options/panel10.php:
|
400 |
msgid ""
|
401 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
402 |
"purposes."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: options/panel10.php:
|
406 |
msgid "Hourly"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: options/panel10.php:
|
410 |
msgid "Twice Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: options/panel10.php:
|
414 |
msgid "Daily"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: options/panel10.php:
|
418 |
msgid "If enabled, StCR will auto clean your information every day."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: options/panel10.php:
|
422 |
msgid "Clean Up Log Archive"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: options/panel10.php:
|
426 |
msgid ""
|
427 |
"If you want to clean up the log archive please click the following button"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: options/panel10.php:
|
431 |
msgid "Clean"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: options/panel10.php:
|
435 |
msgid "System Information"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: options/panel10.php:
|
439 |
-
#: options/panel4.php:283 options/panel5.php:
|
440 |
msgid "Save Changes"
|
441 |
msgstr "Zapisz zmiany"
|
442 |
|
@@ -784,7 +780,7 @@ msgstr "Tylko odpowiedzi"
|
|
784 |
#: options/panel4.php:128
|
785 |
msgid ""
|
786 |
"This will be use when the user click reply on their email agent. If not set "
|
787 |
-
"will be the same as the Sender email address."
|
788 |
msgstr ""
|
789 |
|
790 |
#: options/panel4.php:147
|
@@ -800,8 +796,8 @@ msgstr ""
|
|
800 |
|
801 |
#: options/panel4.php:171
|
802 |
msgid ""
|
803 |
-
"<p><strong>Note: To get a default template clear
|
804 |
-
"the options.</strong></p>"
|
805 |
msgstr ""
|
806 |
|
807 |
#: options/panel4.php:184
|
@@ -852,79 +848,95 @@ msgstr ""
|
|
852 |
"Tytuł dla wiadomości potwierdzającej adres e-mail. Dostępne tagi: "
|
853 |
"[post_title]"
|
854 |
|
855 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
msgid "Show StCR checkbox / dropdown"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: options/panel5.php:
|
860 |
msgid "Safetly Uninstall"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: options/panel5.php:
|
864 |
msgid "Autopurge requests"
|
865 |
msgstr "Automatyczne czyszczenie"
|
866 |
|
867 |
-
#: options/panel5.php:
|
868 |
msgid "Enable double check"
|
869 |
msgstr "Włącz weryfikację e-mail"
|
870 |
|
871 |
-
#: options/panel5.php:
|
872 |
msgid "StCR Position"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: options/panel5.php:
|
876 |
msgid "Subscribe authors"
|
877 |
msgstr "Opis subskrypcji"
|
878 |
|
879 |
-
#: options/panel5.php:
|
880 |
msgid "Enable HTML emails"
|
881 |
msgstr "Włacz HTML w e-mailach"
|
882 |
|
883 |
-
#: options/panel5.php:
|
884 |
msgid "HTMLify Links in HTML emails"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: options/panel5.php:
|
888 |
msgid "Send trackbacks"
|
889 |
msgstr "Wysyłaj trackbacki"
|
890 |
|
891 |
-
#: options/panel5.php:
|
892 |
msgid "Notify admin"
|
893 |
msgstr "Informuj administratora"
|
894 |
|
895 |
-
#: options/panel5.php:
|
896 |
msgid "Let admin subscribe"
|
897 |
msgstr "Pozwól na subskrypcję administratorowi"
|
898 |
|
899 |
-
#: options/panel5.php:
|
900 |
msgid "BCC admin on Notifications"
|
901 |
msgstr "Powiadomienia"
|
902 |
|
903 |
-
#: options/panel5.php:
|
904 |
msgid "Enable Font Awesome"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
908 |
msgid ""
|
909 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
910 |
"You should leave it to Yes always. "
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: options/panel5.php:
|
914 |
msgid "Safely Uninstall"
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: options/panel5.php:
|
918 |
msgid ""
|
919 |
"This option will allow you to delete the plugin with WordPress without "
|
920 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: options/panel5.php:
|
924 |
msgid "days"
|
925 |
msgstr "dni"
|
926 |
|
927 |
-
#: options/panel5.php:
|
928 |
msgid ""
|
929 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
930 |
"this feature."
|
@@ -932,14 +944,14 @@ msgstr ""
|
|
932 |
"Usuwaj oczekujące subskrypcje (niepotwierdzone) po X dniach. \"0\" wyłącza "
|
933 |
"tę funkcjonalność."
|
934 |
|
935 |
-
#: options/panel5.php:
|
936 |
msgid ""
|
937 |
"If this option is enable the subscription box will be above the submit "
|
938 |
"button in your comment form. Use this when your theme is outdated and using "
|
939 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: options/panel5.php:
|
943 |
msgid ""
|
944 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
945 |
"misuse)."
|
@@ -947,12 +959,12 @@ msgstr ""
|
|
947 |
"Wysyłaj e-mail z potwierdzeniem subskrypcji (by zapobiec pomyłkom w "
|
948 |
"adresach, oraz zabezpieczyć przed botami)."
|
949 |
|
950 |
-
#: options/panel5.php:
|
951 |
msgid ""
|
952 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: options/panel5.php:
|
956 |
msgid ""
|
957 |
"If enabled, will send email messages with content-type = text/html instead "
|
958 |
"of text/plain"
|
@@ -960,78 +972,102 @@ msgstr ""
|
|
960 |
"Jeśli włączone, wysyłane będą wiadomości e-mail z content-type=text/html "
|
961 |
"zamiast text/plain"
|
962 |
|
963 |
-
#: options/panel5.php:
|
964 |
msgid "HTMLify links in emails"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: options/panel5.php:
|
968 |
msgid ""
|
969 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
970 |
"</a></code> (only when HTML emails enabled)."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: options/panel5.php:
|
974 |
msgid "Process trackbacks"
|
975 |
msgstr "Śledź trackbacki"
|
976 |
|
977 |
-
#: options/panel5.php:
|
978 |
msgid ""
|
979 |
"Notify users when a new trackback or pingback is added to the discussion."
|
980 |
msgstr ""
|
981 |
"Informuj użytkowników o nowych trackbackach i pingbackach dodanych do "
|
982 |
"dyskusji."
|
983 |
|
984 |
-
#: options/panel5.php:
|
985 |
msgid "Track all subscriptions"
|
986 |
msgstr "Śledź wszystkie subskrypcje"
|
987 |
|
988 |
-
#: options/panel5.php:
|
989 |
msgid "Notify the administrator when users subscribe without commenting."
|
990 |
msgstr ""
|
991 |
"Informuj administratora jeśli użytkownik rozpocznie subskrypcję bez "
|
992 |
"komentowania."
|
993 |
|
994 |
-
#: options/panel5.php:
|
995 |
msgid "Let the administrator subscribe to comments when logged in."
|
996 |
msgstr "Pozwól administratorowi subskrybować jeśli jest zalogowany."
|
997 |
|
998 |
-
#: options/panel5.php:
|
999 |
msgid "Send a copy of all Notifications to the administrator."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: options/panel5.php:
|
1003 |
msgid ""
|
1004 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1005 |
"you theme already add this into your site."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: options/panel5.php:
|
1009 |
msgid "StCR Unique Key"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: options/panel5.php:
|
1013 |
msgid "This Unique Key is not set, please click the following button to "
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: options/panel5.php:
|
1017 |
msgid "Generate"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: options/panel5.php:
|
1021 |
msgid ""
|
1022 |
"This Unique Key will be use to send the notification to your subscribers "
|
1023 |
"with more security."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: options/
|
1027 |
-
msgid "
|
1028 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1029 |
|
1030 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1031 |
msgid ""
|
1032 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1033 |
"consider supporting the author if this plugin made your web site better, "
|
1034 |
-
"especially if you are making money out of it
|
|
|
1035 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1036 |
"strong>, and to buy some food for my hungry family."
|
1037 |
msgstr ""
|
@@ -1041,18 +1077,27 @@ msgstr ""
|
|
1041 |
"funkcjonalność twojej strony. Każda otrzymana dotacja pomoże w rozwoju "
|
1042 |
"pluginu, oraz pozwoli na zakup jedzenia dla głodnej rodziny."
|
1043 |
|
1044 |
-
#: options/panel7.php:
|
1045 |
-
|
1046 |
-
|
|
|
|
|
1047 |
|
1048 |
-
#: options/panel7.php:
|
1049 |
-
|
1050 |
-
|
1051 |
-
"
|
1052 |
-
"
|
1053 |
-
"
|
1054 |
-
"
|
1055 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1056 |
msgstr ""
|
1057 |
"Jeśli nie chcesz przekazywać datków pieniężnych, proszę wspomnieć o używaniu "
|
1058 |
"mojego pluginu na swojej stronie. Proszę poinformować czytelników, co "
|
@@ -1061,11 +1106,11 @@ msgstr ""
|
|
1061 |
"oraz inne pomysły jak rozwijać Subscribe to Comments Reloaded. Cokolwiek "
|
1062 |
"zrobisz, dziękuję za używanie mojego pluginu!"
|
1063 |
|
1064 |
-
#: options/panel7.php:
|
1065 |
msgid "Subscribe to the Beta testers"
|
1066 |
msgstr "Opis subskrypcji"
|
1067 |
|
1068 |
-
#: options/panel7.php:
|
1069 |
msgid ""
|
1070 |
"Before a new Update we release a Beta version so that our current users can "
|
1071 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1073,11 +1118,11 @@ msgid ""
|
|
1073 |
"a>"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: options/panel7.php:
|
1077 |
msgid "Vote and show your appreciation"
|
1078 |
msgstr "Głosuj i doceń plugin"
|
1079 |
|
1080 |
-
#: options/panel7.php:
|
1081 |
msgid ""
|
1082 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1083 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1087,11 +1132,11 @@ msgstr ""
|
|
1087 |
"dobry jest. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1088 |
"comments-reloaded/\">Oceń go</a> na stronie Pluginów."
|
1089 |
|
1090 |
-
#: options/panel8.php:
|
1091 |
msgid "Did you find a Bug on the plugin?"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: options/panel8.php:
|
1095 |
msgid ""
|
1096 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1097 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1186,204 +1231,46 @@ msgstr ""
|
|
1186 |
msgid "You have request to manage another email address and this is forbidden."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: utils/stcr_manage.php:
|
1190 |
-
msgid ""
|
1191 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1192 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1193 |
-
msgstr ""
|
1194 |
-
"Informuj mnie o odpowiedziach poprzez e-mail. Możesz również <a "
|
1195 |
-
"href='[subscribe_link]'>subskrybować</a> wpis bez zostawiania komentarza."
|
1196 |
-
|
1197 |
-
#: utils/stcr_manage.php:224
|
1198 |
-
msgid ""
|
1199 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1200 |
-
"subscriptions."
|
1201 |
-
msgstr ""
|
1202 |
-
"Subskrybujesz ten wpis. <a href='[manager_link]'>Zarządzaj subskrypcją</a>."
|
1203 |
-
|
1204 |
-
#: utils/stcr_manage.php:225
|
1205 |
-
msgid ""
|
1206 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1207 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1208 |
-
msgstr ""
|
1209 |
-
"Twoja subskrypcja do tego postu musi zostać potwierdzona. <a "
|
1210 |
-
"href='[manager_link]'>Zarządzaj subskrypcją</a>."
|
1211 |
-
|
1212 |
-
#: utils/stcr_manage.php:226
|
1213 |
-
msgid ""
|
1214 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1215 |
-
msgstr "Możesz <a href='[manager_link]'>zarządzać subskrypcją</a> tego wpisu."
|
1216 |
-
|
1217 |
-
#: utils/stcr_manage.php:232
|
1218 |
-
msgid ""
|
1219 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1220 |
-
"will send you a message containing the link to access your personal "
|
1221 |
-
"management page."
|
1222 |
-
msgstr ""
|
1223 |
-
"By zarządzać subskrypcjami, proszę wprowadzić adres e-mail w polu poniżej. "
|
1224 |
-
"Otrzymasz wiadomość zawierajacą odnośnik do strony zarządzania subskrypcjami."
|
1225 |
-
|
1226 |
-
#: utils/stcr_manage.php:233
|
1227 |
-
msgid ""
|
1228 |
-
"Thank you for using our subscription service. Your request has been "
|
1229 |
-
"completed, and you should receive an email with the management link in a few "
|
1230 |
-
"minutes."
|
1231 |
-
msgstr ""
|
1232 |
-
"Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. W "
|
1233 |
-
"przeciągu kilku minut powinieneś otrzymać wiadomość e-mail z odnośnikiem do "
|
1234 |
-
"zarządzania subskrypcjami."
|
1235 |
-
|
1236 |
-
#: utils/stcr_manage.php:234
|
1237 |
-
msgid ""
|
1238 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1239 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1240 |
-
"form here below and you're all set."
|
1241 |
-
msgstr ""
|
1242 |
-
"Możesz śledzić dyskusję we wpisie <strong>[post_title]</strong> bez "
|
1243 |
-
"zostawiania komentarza. Wystarczy, że wpiszesz swój adres e-mail w polu "
|
1244 |
-
"poniżej, a o następnym komentarzu zostaniesz powiadomiony e-mailem."
|
1245 |
-
|
1246 |
-
#: utils/stcr_manage.php:235
|
1247 |
-
msgid ""
|
1248 |
-
"Thank you for using our subscription service. Your request has been "
|
1249 |
-
"completed. You will receive a notification email every time a new comment to "
|
1250 |
-
"this article is approved and posted by the administrator."
|
1251 |
-
msgstr ""
|
1252 |
-
"Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. "
|
1253 |
-
"Będziesz otrzymywał powiadomienie za każdym razem, gdy pojawi się nowy "
|
1254 |
-
"komentarz zaakceptowany przez administratora do tego wpisu."
|
1255 |
-
|
1256 |
-
#: utils/stcr_manage.php:236
|
1257 |
-
msgid ""
|
1258 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1259 |
-
"request, please check your email for the verification message and follow the "
|
1260 |
-
"instructions."
|
1261 |
-
msgstr ""
|
1262 |
-
"Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. Proszę "
|
1263 |
-
"sprawdzić swoją pocztę w celu weryfikacji adresu e-mail i podążać zgodnie z "
|
1264 |
-
"instrukcjami w nim zawartymi."
|
1265 |
-
|
1266 |
-
#: utils/stcr_manage.php:237
|
1267 |
-
msgid ""
|
1268 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1269 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1270 |
-
msgstr ""
|
1271 |
-
"W celu anulowania bądź zrezygnowania z subskrypcji, proszę wybrać z "
|
1272 |
-
"poniższej listy wpis, a następnie wybrać akcję, którą chcesz wykonać."
|
1273 |
-
|
1274 |
-
#: utils/stcr_manage.php:238
|
1275 |
-
msgid ""
|
1276 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1277 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1278 |
-
"You are currently subscribed to:"
|
1279 |
-
msgstr ""
|
1280 |
-
"W celu anulowania bądź zrezygnowania z subskrypcji, proszę wybrać z "
|
1281 |
-
"poniższej listy wpis, a następnie wybrać akcję, którą chcesz wykonać.\n"
|
1282 |
-
"\n"
|
1283 |
-
"Aktualnie subskrybujesz:"
|
1284 |
-
|
1285 |
-
#: utils/stcr_manage.php:242
|
1286 |
-
msgid "There is a new comment to [post_title]"
|
1287 |
-
msgstr "Pojawił się nowy komentarz do wpisu [post_title]"
|
1288 |
-
|
1289 |
-
#: utils/stcr_manage.php:243
|
1290 |
-
msgid ""
|
1291 |
-
"There is a new comment to [post_title].\n"
|
1292 |
-
"Comment Link: [comment_permalink]\n"
|
1293 |
-
"Author: [comment_author]\n"
|
1294 |
-
"Comment:\n"
|
1295 |
-
"[comment_content]\n"
|
1296 |
-
"Permalink: [post_permalink]\n"
|
1297 |
-
"Manage your subscriptions: [manager_link]"
|
1298 |
-
msgstr ""
|
1299 |
-
"Pojawił się nowy komentarz do wpisu [post_title].\n"
|
1300 |
-
"Odnośnik do komentarza: [comment_permalink]\n"
|
1301 |
-
"Autor: [comment_author]\n"
|
1302 |
-
"Komentarz: [comment_content]\n"
|
1303 |
-
"Odnośnik do wpisu: [post_permalink]\n"
|
1304 |
-
"\n"
|
1305 |
-
"Zarządzaj subskrypcjami: [manager_link]"
|
1306 |
-
|
1307 |
-
#: utils/stcr_manage.php:244
|
1308 |
-
msgid "Please confirm your subscription to [post_title]"
|
1309 |
-
msgstr "Proszę potwierdzić swoją subskrypcję do wpisu [post_title]"
|
1310 |
-
|
1311 |
-
#: utils/stcr_manage.php:245
|
1312 |
-
msgid ""
|
1313 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1314 |
-
"[post_permalink]\n"
|
1315 |
-
"\n"
|
1316 |
-
"Please confirm your request by clicking on this link:\n"
|
1317 |
-
"[confirm_link]"
|
1318 |
-
msgstr ""
|
1319 |
-
"Poprosiłeś, by informować cię o nowych komentarzach dodanych do wpisu "
|
1320 |
-
"[post_title]:\n"
|
1321 |
-
"[post_permalink]\n"
|
1322 |
-
"\n"
|
1323 |
-
"Proszę potwierdzić zgłoszenie poprzez kliknięcie w poniższy odnośnik:\n"
|
1324 |
-
"[confirm_link]"
|
1325 |
-
|
1326 |
-
#: utils/stcr_manage.php:246
|
1327 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1328 |
-
msgstr "Zarządzaj swoimi subskrypcjami na [blog_name]"
|
1329 |
-
|
1330 |
-
#: utils/stcr_manage.php:247
|
1331 |
-
msgid ""
|
1332 |
-
"You have requested to manage your subscriptions to the articles on "
|
1333 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1334 |
-
msgstr ""
|
1335 |
-
|
1336 |
-
#: utils/stcr_manage.php:248
|
1337 |
-
msgid ""
|
1338 |
-
"You have requested to manage your subscriptions to the articles on "
|
1339 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1340 |
-
"[manager_link]"
|
1341 |
-
msgstr ""
|
1342 |
-
"Poprosiłeś o możliwość zarządzanai swoimi subskrypcjami do wpisów na "
|
1343 |
-
"[blog_name]. Kliknij w poniższy odnośnik, by móc zarządzać swoimi "
|
1344 |
-
"subskrypcjami:\n"
|
1345 |
-
"[manager_link]"
|
1346 |
-
|
1347 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1348 |
msgid "StCR System"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: utils/stcr_manage.php:
|
1352 |
-
#: utils/stcr_manage.php:
|
1353 |
-
#: utils/stcr_manage.php:
|
1354 |
-
#: utils/stcr_manage.php:
|
1355 |
-
#: utils/stcr_manage.php:
|
1356 |
msgid "You do not have sufficient permissions to access this page."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: utils/stcr_manage.php:
|
1360 |
msgid "Subscriptions"
|
1361 |
msgstr "Subskrypcje"
|
1362 |
|
1363 |
-
#: utils/stcr_manage.php:
|
1364 |
msgid ""
|
1365 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1366 |
msgstr ""
|
1367 |
"Potrzebujesz pomocy, jak używać wtyczki Subscribe to Comments Reloaded? "
|
1368 |
"Odwiedź oficjalną stronę"
|
1369 |
|
1370 |
-
#: utils/stcr_manage.php:
|
1371 |
msgid "support forum"
|
1372 |
msgstr "forum wsparcia"
|
1373 |
|
1374 |
-
#: utils/stcr_manage.php:
|
1375 |
msgid "Feeling generous?"
|
1376 |
msgstr "Jesteś hojny?"
|
1377 |
|
1378 |
-
#: utils/stcr_manage.php:
|
1379 |
msgid "Donate a few bucks!"
|
1380 |
msgstr "Przelej kilka dolarów!"
|
1381 |
|
1382 |
-
#: utils/stcr_upgrade.php:
|
1383 |
msgid "Important Notice"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: utils/stcr_upgrade.php:
|
1387 |
msgid ""
|
1388 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1389 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1391,28 +1278,28 @@ msgid ""
|
|
1391 |
"src=\""
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: utils/stcr_upgrade.php:
|
1395 |
msgid ""
|
1396 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1397 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1398 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: utils/stcr_upgrade.php:
|
1402 |
msgid ""
|
1403 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1404 |
"Comments to prevent confusion between the two plugins."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: utils/stcr_upgrade.php:
|
1408 |
msgid ""
|
1409 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1410 |
"that you want to import, you'll need to import that data manually, as only "
|
1411 |
"one import routine will ever run to prevent data loss."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
-
#: utils/stcr_upgrade.php:
|
1415 |
-
#: utils/stcr_upgrade.php:
|
1416 |
msgid ""
|
1417 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1418 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1420,20 +1307,20 @@ msgid ""
|
|
1420 |
"\"stcr-loading-animation\" src=\""
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: utils/stcr_upgrade.php:
|
1424 |
msgid ""
|
1425 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1426 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1427 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: utils/stcr_upgrade.php:
|
1431 |
msgid ""
|
1432 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1433 |
"Notification to prevent confusion between the two plugins."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: utils/stcr_upgrade.php:
|
1437 |
msgid ""
|
1438 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1439 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1441,13 +1328,13 @@ msgid ""
|
|
1441 |
"Reloaded</strong>."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: utils/stcr_upgrade.php:
|
1445 |
msgid ""
|
1446 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1447 |
"Subscriptions to prevent confusion between the two plugins."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: utils/stcr_upgrade.php:
|
1451 |
msgid ""
|
1452 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1453 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1455,7 +1342,7 @@ msgid ""
|
|
1455 |
"ever run to prevent data loss."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: utils/stcr_upgrade.php:
|
1459 |
msgid ""
|
1460 |
"<strong>Note:</strong> If you were previously using the "
|
1461 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1464,29 +1351,29 @@ msgid ""
|
|
1464 |
"respectively."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: utils/stcr_upgrade.php:
|
1468 |
msgid ""
|
1469 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: utils/stcr_upgrade.php:
|
1473 |
-
#: utils/stcr_upgrade.php:
|
1474 |
msgid ""
|
1475 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1476 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: utils/stcr_upgrade.php:
|
1480 |
msgid ""
|
1481 |
-
"Please consider to make a donation to support the plugin
|
1482 |
-
"<a href=\"\n"
|
1483 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1484 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1485 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1486 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: utils/stcr_upgrade.php:
|
1490 |
msgid ""
|
1491 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1492 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1494,23 +1381,23 @@ msgid ""
|
|
1494 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#: utils/stcr_upgrade.php:
|
1498 |
msgid ""
|
1499 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1500 |
"160106."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: utils/stcr_upgrade.php:
|
1504 |
msgid ""
|
1505 |
"This version includes many changes and fixes to improve your experience with "
|
1506 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1507 |
"email templates, Subscription Checkbox position, and more!"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: utils/stcr_upgrade.php:
|
1511 |
-
#: utils/stcr_upgrade.php:
|
1512 |
-
#: utils/stcr_upgrade.php:
|
1513 |
-
#: utils/stcr_upgrade.php:
|
1514 |
msgid ""
|
1515 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1516 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1518,123 +1405,126 @@ msgid ""
|
|
1518 |
"class=\"stcr-loading-animation\" src=\""
|
1519 |
msgstr ""
|
1520 |
|
1521 |
-
#: utils/stcr_upgrade.php:
|
1522 |
msgid ""
|
1523 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1524 |
"160115."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: utils/stcr_upgrade.php:
|
1528 |
msgid ""
|
1529 |
"This version includes fixes to broken links while managing your subscriptions"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: utils/stcr_upgrade.php:
|
1533 |
msgid ""
|
1534 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1535 |
"160831"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: utils/stcr_upgrade.php:
|
1539 |
msgid "This version includes fixes to many bugs and also new features, "
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: utils/stcr_upgrade.php:
|
1543 |
msgid ""
|
1544 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1545 |
"address. This will help the subscribers to use the Reply option in their "
|
1546 |
"email agents."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: utils/stcr_upgrade.php:
|
1550 |
msgid ""
|
1551 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1552 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: utils/stcr_upgrade.php:
|
1556 |
msgid ""
|
1557 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1558 |
"without loosing your subscriptions. You can use this option also for reset "
|
1559 |
"all the settings, see the FAQ."
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
#: utils/stcr_upgrade.php:
|
1563 |
msgid ""
|
1564 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1565 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1566 |
"Post Type."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: utils/stcr_upgrade.php:
|
1570 |
msgid ""
|
1571 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1572 |
"options to and the management link only by email and not to display it on "
|
1573 |
"the request link page."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: utils/stcr_upgrade.php:
|
1577 |
msgid ""
|
1578 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1579 |
"160902"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: utils/stcr_upgrade.php:
|
1583 |
msgid ""
|
1584 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1585 |
"previous 160831 version."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: utils/stcr_upgrade.php:
|
1589 |
msgid "Settings"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: utils/stcr_upgrade.php:
|
1593 |
msgid ""
|
1594 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1595 |
"160915"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: utils/stcr_upgrade.php:
|
1599 |
-
#: utils/stcr_upgrade.php:
|
1600 |
msgid "This version includes fixes and improvements, "
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: utils/stcr_upgrade.php:
|
1604 |
msgid ""
|
1605 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1606 |
"dropdown."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: utils/stcr_upgrade.php:
|
1610 |
msgid ""
|
1611 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: utils/stcr_upgrade.php:
|
|
|
1615 |
msgid "Log Settings"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: utils/stcr_upgrade.php:
|
|
|
1619 |
msgid ""
|
1620 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
1624 |
msgid ""
|
1625 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1626 |
"enable."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: utils/stcr_upgrade.php:
|
1630 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: utils/stcr_upgrade.php:
|
|
|
1634 |
msgid "The support of this plugin is given thanks to your donations."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: utils/stcr_upgrade.php:
|
1638 |
msgid ""
|
1639 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1640 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1644,19 +1534,19 @@ msgid ""
|
|
1644 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: utils/stcr_upgrade.php:
|
1648 |
msgid ""
|
1649 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1650 |
"installation regarding a database table creation."
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: utils/stcr_upgrade.php:
|
1654 |
msgid ""
|
1655 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1656 |
"Awesome."
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: utils/stcr_upgrade.php:
|
1660 |
msgid ""
|
1661 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1662 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1667,7 +1557,201 @@ msgid ""
|
|
1667 |
"for the users that have supported the plugin development."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1671 |
msgid "StCR Notification"
|
1672 |
msgstr "Powiadomienia"
|
1673 |
|
@@ -1679,6 +1763,29 @@ msgstr "Nie subskrybuj"
|
|
1679 |
msgid "All"
|
1680 |
msgstr "Wszystko"
|
1681 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1682 |
#~ msgid ""
|
1683 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1684 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:11-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 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Generator: Poedit 2.0.6\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
21 |
+
#: utils/stcr_utils.php:203
|
22 |
msgid "Manage subscriptions"
|
23 |
msgstr "Zarządzaj subskrypcjami"
|
24 |
|
25 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
26 |
msgid "Comment Form"
|
27 |
msgstr "Formularz komentarzy"
|
28 |
|
29 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
30 |
msgid "Management Page"
|
31 |
msgstr "Zarządzaj stroną"
|
32 |
|
33 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
34 |
msgid "Notifications"
|
35 |
msgstr "Powiadomienia"
|
36 |
|
37 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
38 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
39 |
msgid "Options"
|
40 |
msgstr "Opcje"
|
41 |
|
42 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
43 |
msgid "Support"
|
44 |
msgstr "Wsparcie"
|
45 |
|
46 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
47 |
msgid "Donate"
|
48 |
msgstr ""
|
49 |
|
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:41
|
348 |
msgid "The log file has been successfully deleted."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: options/panel10.php:46
|
352 |
msgid "Can't delete the log file, check the file permissions."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: options/panel10.php:52
|
356 |
msgid "The log file does not exists."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: options/panel10.php:66 options/panel10.php:110
|
360 |
msgid "Enable Log Information"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: options/panel10.php:72 options/panel10.php:119
|
364 |
msgid "Enable Auto clean log data"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
368 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
369 |
msgid "Your settings have been successfully updated."
|
370 |
msgstr "Twoje ustawienia zostały pomyślnie zapisane."
|
371 |
|
372 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
373 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
374 |
msgid "There was an error updating the following fields:"
|
375 |
msgstr "Wystąpił problem podczas zapisu następujacych ustawień:"
|
376 |
|
377 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
378 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
379 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
380 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
381 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
382 |
+
#: options/panel5.php:210 options/panel5.php:219
|
383 |
msgid "Yes"
|
384 |
msgstr "Tak"
|
385 |
|
386 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
387 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
388 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
389 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
390 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
391 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
392 |
msgid "No"
|
393 |
msgstr "Nie"
|
394 |
|
395 |
+
#: options/panel10.php:114
|
396 |
msgid ""
|
397 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
398 |
"purposes."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: options/panel10.php:125
|
402 |
msgid "Hourly"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: options/panel10.php:126
|
406 |
msgid "Twice Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: options/panel10.php:127
|
410 |
msgid "Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: options/panel10.php:129
|
414 |
msgid "If enabled, StCR will auto clean your information every day."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: options/panel10.php:134
|
418 |
msgid "Clean Up Log Archive"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: options/panel10.php:138
|
422 |
msgid ""
|
423 |
"If you want to clean up the log archive please click the following button"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: options/panel10.php:140
|
427 |
msgid "Clean"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: options/panel10.php:147 options/panel10.php:150
|
431 |
msgid "System Information"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
435 |
+
#: options/panel4.php:283 options/panel5.php:265
|
436 |
msgid "Save Changes"
|
437 |
msgstr "Zapisz zmiany"
|
438 |
|
780 |
#: options/panel4.php:128
|
781 |
msgid ""
|
782 |
"This will be use when the user click reply on their email agent. If not set "
|
783 |
+
"it will be the same as the Sender email address."
|
784 |
msgstr ""
|
785 |
|
786 |
#: options/panel4.php:147
|
796 |
|
797 |
#: options/panel4.php:171
|
798 |
msgid ""
|
799 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
800 |
+
"all the content and save the options.</strong></p>"
|
801 |
msgstr ""
|
802 |
|
803 |
#: options/panel4.php:184
|
848 |
"Tytuł dla wiadomości potwierdzającej adres e-mail. Dostępne tagi: "
|
849 |
"[post_title]"
|
850 |
|
851 |
+
#: options/panel5.php:38
|
852 |
+
#, fuzzy
|
853 |
+
#| msgid "Your settings have been successfully updated."
|
854 |
+
msgid "Your settings have been successfully reset."
|
855 |
+
msgstr "Twoje ustawienia zostały pomyślnie zapisane."
|
856 |
+
|
857 |
+
#: options/panel5.php:40
|
858 |
+
#, fuzzy
|
859 |
+
#| msgid "There was an error updating the following fields:"
|
860 |
+
msgid "There was an error deleting the options:"
|
861 |
+
msgstr "Wystąpił problem podczas zapisu następujacych ustawień:"
|
862 |
+
|
863 |
+
#: options/panel5.php:48 options/panel5.php:108
|
864 |
msgid "Show StCR checkbox / dropdown"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: options/panel5.php:51
|
868 |
msgid "Safetly Uninstall"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: options/panel5.php:54 options/panel5.php:125
|
872 |
msgid "Autopurge requests"
|
873 |
msgstr "Automatyczne czyszczenie"
|
874 |
|
875 |
+
#: options/panel5.php:57 options/panel5.php:143
|
876 |
msgid "Enable double check"
|
877 |
msgstr "Włącz weryfikację e-mail"
|
878 |
|
879 |
+
#: options/panel5.php:60 options/panel5.php:134
|
880 |
msgid "StCR Position"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: options/panel5.php:63 options/panel5.php:151
|
884 |
msgid "Subscribe authors"
|
885 |
msgstr "Opis subskrypcji"
|
886 |
|
887 |
+
#: options/panel5.php:66 options/panel5.php:161
|
888 |
msgid "Enable HTML emails"
|
889 |
msgstr "Włacz HTML w e-mailach"
|
890 |
|
891 |
+
#: options/panel5.php:69
|
892 |
msgid "HTMLify Links in HTML emails"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: options/panel5.php:72
|
896 |
msgid "Send trackbacks"
|
897 |
msgstr "Wysyłaj trackbacki"
|
898 |
|
899 |
+
#: options/panel5.php:75
|
900 |
msgid "Notify admin"
|
901 |
msgstr "Informuj administratora"
|
902 |
|
903 |
+
#: options/panel5.php:78 options/panel5.php:199
|
904 |
msgid "Let admin subscribe"
|
905 |
msgstr "Pozwól na subskrypcję administratorowi"
|
906 |
|
907 |
+
#: options/panel5.php:81 options/panel5.php:208
|
908 |
msgid "BCC admin on Notifications"
|
909 |
msgstr "Powiadomienia"
|
910 |
|
911 |
+
#: options/panel5.php:84 options/panel5.php:217
|
912 |
msgid "Enable Font Awesome"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
916 |
+
msgid "Reset All Options"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: options/panel5.php:112
|
920 |
msgid ""
|
921 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
922 |
"You should leave it to Yes always. "
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: options/panel5.php:117
|
926 |
msgid "Safely Uninstall"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: options/panel5.php:121
|
930 |
msgid ""
|
931 |
"This option will allow you to delete the plugin with WordPress without "
|
932 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: options/panel5.php:128
|
936 |
msgid "days"
|
937 |
msgstr "dni"
|
938 |
|
939 |
+
#: options/panel5.php:129
|
940 |
msgid ""
|
941 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
942 |
"this feature."
|
944 |
"Usuwaj oczekujące subskrypcje (niepotwierdzone) po X dniach. \"0\" wyłącza "
|
945 |
"tę funkcjonalność."
|
946 |
|
947 |
+
#: options/panel5.php:138
|
948 |
msgid ""
|
949 |
"If this option is enable the subscription box will be above the submit "
|
950 |
"button in your comment form. Use this when your theme is outdated and using "
|
951 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: options/panel5.php:147
|
955 |
msgid ""
|
956 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
957 |
"misuse)."
|
959 |
"Wysyłaj e-mail z potwierdzeniem subskrypcji (by zapobiec pomyłkom w "
|
960 |
"adresach, oraz zabezpieczyć przed botami)."
|
961 |
|
962 |
+
#: options/panel5.php:156
|
963 |
msgid ""
|
964 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: options/panel5.php:165
|
968 |
msgid ""
|
969 |
"If enabled, will send email messages with content-type = text/html instead "
|
970 |
"of text/plain"
|
972 |
"Jeśli włączone, wysyłane będą wiadomości e-mail z content-type=text/html "
|
973 |
"zamiast text/plain"
|
974 |
|
975 |
+
#: options/panel5.php:170
|
976 |
msgid "HTMLify links in emails"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: options/panel5.php:175
|
980 |
msgid ""
|
981 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
982 |
"</a></code> (only when HTML emails enabled)."
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: options/panel5.php:180
|
986 |
msgid "Process trackbacks"
|
987 |
msgstr "Śledź trackbacki"
|
988 |
|
989 |
+
#: options/panel5.php:184
|
990 |
msgid ""
|
991 |
"Notify users when a new trackback or pingback is added to the discussion."
|
992 |
msgstr ""
|
993 |
"Informuj użytkowników o nowych trackbackach i pingbackach dodanych do "
|
994 |
"dyskusji."
|
995 |
|
996 |
+
#: options/panel5.php:189
|
997 |
msgid "Track all subscriptions"
|
998 |
msgstr "Śledź wszystkie subskrypcje"
|
999 |
|
1000 |
+
#: options/panel5.php:194
|
1001 |
msgid "Notify the administrator when users subscribe without commenting."
|
1002 |
msgstr ""
|
1003 |
"Informuj administratora jeśli użytkownik rozpocznie subskrypcję bez "
|
1004 |
"komentowania."
|
1005 |
|
1006 |
+
#: options/panel5.php:203
|
1007 |
msgid "Let the administrator subscribe to comments when logged in."
|
1008 |
msgstr "Pozwól administratorowi subskrybować jeśli jest zalogowany."
|
1009 |
|
1010 |
+
#: options/panel5.php:212
|
1011 |
msgid "Send a copy of all Notifications to the administrator."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: options/panel5.php:221
|
1015 |
msgid ""
|
1016 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1017 |
"you theme already add this into your site."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: options/panel5.php:226
|
1021 |
msgid "StCR Unique Key"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: options/panel5.php:231
|
1025 |
msgid "This Unique Key is not set, please click the following button to "
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1029 |
msgid "Generate"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: options/panel5.php:243
|
1033 |
msgid ""
|
1034 |
"This Unique Key will be use to send the notification to your subscribers "
|
1035 |
"with more security."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: options/panel5.php:256
|
1039 |
+
msgid ""
|
1040 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1041 |
+
"with caution."
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: options/panel5.php:258
|
1045 |
+
msgid "Yes, Delete Options including subscriptions."
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: options/panel5.php:259
|
1049 |
+
msgid "No, Only delete the StCR Options."
|
1050 |
+
msgstr ""
|
1051 |
|
1052 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1053 |
+
msgid ""
|
1054 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1055 |
+
"hidden=\"true\"></i>"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1059 |
+
#, fuzzy
|
1060 |
+
#| msgid ""
|
1061 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1062 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1063 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1064 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1065 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1066 |
msgid ""
|
1067 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1068 |
"consider supporting the author if this plugin made your web site better, "
|
1069 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1070 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1071 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1072 |
"strong>, and to buy some food for my hungry family."
|
1073 |
msgstr ""
|
1077 |
"funkcjonalność twojej strony. Każda otrzymana dotacja pomoże w rozwoju "
|
1078 |
"pluginu, oraz pozwoli na zakup jedzenia dla głodnej rodziny."
|
1079 |
|
1080 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1081 |
+
#, fuzzy
|
1082 |
+
#| msgid "You can help"
|
1083 |
+
msgid "You can still help"
|
1084 |
+
msgstr "Możesz pomóc"
|
1085 |
|
1086 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1087 |
+
#, fuzzy
|
1088 |
+
#| msgid ""
|
1089 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1090 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1091 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1092 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1093 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1094 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1095 |
+
msgid ""
|
1096 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1097 |
+
"Please let your readers know what makes your blog better. You can also "
|
1098 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1099 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1100 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1101 |
msgstr ""
|
1102 |
"Jeśli nie chcesz przekazywać datków pieniężnych, proszę wspomnieć o używaniu "
|
1103 |
"mojego pluginu na swojej stronie. Proszę poinformować czytelników, co "
|
1106 |
"oraz inne pomysły jak rozwijać Subscribe to Comments Reloaded. Cokolwiek "
|
1107 |
"zrobisz, dziękuję za używanie mojego pluginu!"
|
1108 |
|
1109 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1110 |
msgid "Subscribe to the Beta testers"
|
1111 |
msgstr "Opis subskrypcji"
|
1112 |
|
1113 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1114 |
msgid ""
|
1115 |
"Before a new Update we release a Beta version so that our current users can "
|
1116 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1118 |
"a>"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1122 |
msgid "Vote and show your appreciation"
|
1123 |
msgstr "Głosuj i doceń plugin"
|
1124 |
|
1125 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1126 |
msgid ""
|
1127 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1128 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1132 |
"dobry jest. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1133 |
"comments-reloaded/\">Oceń go</a> na stronie Pluginów."
|
1134 |
|
1135 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1136 |
msgid "Did you find a Bug on the plugin?"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1140 |
msgid ""
|
1141 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1142 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1231 |
msgid "You have request to manage another email address and this is forbidden."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1235 |
msgid "StCR System"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1239 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1240 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1241 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1242 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1243 |
msgid "You do not have sufficient permissions to access this page."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: utils/stcr_manage.php:726
|
1247 |
msgid "Subscriptions"
|
1248 |
msgstr "Subskrypcje"
|
1249 |
|
1250 |
+
#: utils/stcr_manage.php:782
|
1251 |
msgid ""
|
1252 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1253 |
msgstr ""
|
1254 |
"Potrzebujesz pomocy, jak używać wtyczki Subscribe to Comments Reloaded? "
|
1255 |
"Odwiedź oficjalną stronę"
|
1256 |
|
1257 |
+
#: utils/stcr_manage.php:782
|
1258 |
msgid "support forum"
|
1259 |
msgstr "forum wsparcia"
|
1260 |
|
1261 |
+
#: utils/stcr_manage.php:783
|
1262 |
msgid "Feeling generous?"
|
1263 |
msgstr "Jesteś hojny?"
|
1264 |
|
1265 |
+
#: utils/stcr_manage.php:783
|
1266 |
msgid "Donate a few bucks!"
|
1267 |
msgstr "Przelej kilka dolarów!"
|
1268 |
|
1269 |
+
#: utils/stcr_upgrade.php:72
|
1270 |
msgid "Important Notice"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: utils/stcr_upgrade.php:120
|
1274 |
msgid ""
|
1275 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1276 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1278 |
"src=\""
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: utils/stcr_upgrade.php:175
|
1282 |
msgid ""
|
1283 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1284 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1285 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: utils/stcr_upgrade.php:175
|
1289 |
msgid ""
|
1290 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1291 |
"Comments to prevent confusion between the two plugins."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: utils/stcr_upgrade.php:176
|
1295 |
msgid ""
|
1296 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1297 |
"that you want to import, you'll need to import that data manually, as only "
|
1298 |
"one import routine will ever run to prevent data loss."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1302 |
+
#: utils/stcr_upgrade.php:400
|
1303 |
msgid ""
|
1304 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1305 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1307 |
"\"stcr-loading-animation\" src=\""
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: utils/stcr_upgrade.php:250
|
1311 |
msgid ""
|
1312 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1313 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1314 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: utils/stcr_upgrade.php:250
|
1318 |
msgid ""
|
1319 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1320 |
"Notification to prevent confusion between the two plugins."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: utils/stcr_upgrade.php:397
|
1324 |
msgid ""
|
1325 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1326 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1328 |
"Reloaded</strong>."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: utils/stcr_upgrade.php:397
|
1332 |
msgid ""
|
1333 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1334 |
"Subscriptions to prevent confusion between the two plugins."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: utils/stcr_upgrade.php:398
|
1338 |
msgid ""
|
1339 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1340 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1342 |
"ever run to prevent data loss."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: utils/stcr_upgrade.php:399
|
1346 |
msgid ""
|
1347 |
"<strong>Note:</strong> If you were previously using the "
|
1348 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1351 |
"respectively."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: utils/stcr_upgrade.php:413
|
1355 |
msgid ""
|
1356 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1360 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1361 |
msgid ""
|
1362 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1363 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: utils/stcr_upgrade.php:415
|
1367 |
msgid ""
|
1368 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1369 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1370 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1371 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1372 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1373 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: utils/stcr_upgrade.php:417
|
1377 |
msgid ""
|
1378 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1379 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1381 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: utils/stcr_upgrade.php:428
|
1385 |
msgid ""
|
1386 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1387 |
"160106."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: utils/stcr_upgrade.php:429
|
1391 |
msgid ""
|
1392 |
"This version includes many changes and fixes to improve your experience with "
|
1393 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1394 |
"email templates, Subscription Checkbox position, and more!"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1398 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1399 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1400 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1401 |
msgid ""
|
1402 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1403 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1405 |
"class=\"stcr-loading-animation\" src=\""
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: utils/stcr_upgrade.php:443
|
1409 |
msgid ""
|
1410 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1411 |
"160115."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: utils/stcr_upgrade.php:444
|
1415 |
msgid ""
|
1416 |
"This version includes fixes to broken links while managing your subscriptions"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: utils/stcr_upgrade.php:458
|
1420 |
msgid ""
|
1421 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1422 |
"160831"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1426 |
msgid "This version includes fixes to many bugs and also new features, "
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1430 |
msgid ""
|
1431 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1432 |
"address. This will help the subscribers to use the Reply option in their "
|
1433 |
"email agents."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1437 |
msgid ""
|
1438 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1439 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1443 |
msgid ""
|
1444 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1445 |
"without loosing your subscriptions. You can use this option also for reset "
|
1446 |
"all the settings, see the FAQ."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1450 |
msgid ""
|
1451 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1452 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1453 |
"Post Type."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1457 |
msgid ""
|
1458 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1459 |
"options to and the management link only by email and not to display it on "
|
1460 |
"the request link page."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: utils/stcr_upgrade.php:480
|
1464 |
msgid ""
|
1465 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1466 |
"160902"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: utils/stcr_upgrade.php:483
|
1470 |
msgid ""
|
1471 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1472 |
"previous 160831 version."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1476 |
msgid "Settings"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: utils/stcr_upgrade.php:504
|
1480 |
msgid ""
|
1481 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1482 |
"160915"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1486 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1487 |
msgid "This version includes fixes and improvements, "
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: utils/stcr_upgrade.php:508
|
1491 |
msgid ""
|
1492 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1493 |
"dropdown."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: utils/stcr_upgrade.php:509
|
1497 |
msgid ""
|
1498 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1502 |
+
#: utils/stcr_upgrade.php:576
|
1503 |
msgid "Log Settings"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1507 |
+
#: utils/stcr_upgrade.php:580
|
1508 |
msgid ""
|
1509 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: utils/stcr_upgrade.php:529
|
1513 |
msgid ""
|
1514 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1515 |
"enable."
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: utils/stcr_upgrade.php:530
|
1519 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1523 |
+
#: utils/stcr_upgrade.php:590
|
1524 |
msgid "The support of this plugin is given thanks to your donations."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: utils/stcr_upgrade.php:536
|
1528 |
msgid ""
|
1529 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1530 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1534 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: utils/stcr_upgrade.php:557
|
1538 |
msgid ""
|
1539 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1540 |
"installation regarding a database table creation."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: utils/stcr_upgrade.php:558
|
1544 |
msgid ""
|
1545 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1546 |
"Awesome."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: utils/stcr_upgrade.php:563
|
1550 |
msgid ""
|
1551 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1552 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1557 |
"for the users that have supported the plugin development."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: utils/stcr_upgrade.php:584
|
1561 |
+
msgid ""
|
1562 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1563 |
+
"issues."
|
1564 |
+
msgstr ""
|
1565 |
+
|
1566 |
+
#: utils/stcr_upgrade.php:585
|
1567 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1568 |
+
msgstr ""
|
1569 |
+
|
1570 |
+
#: utils/stcr_upgrade.php:586
|
1571 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1572 |
+
msgstr ""
|
1573 |
+
|
1574 |
+
#: utils/stcr_upgrade.php:591
|
1575 |
+
msgid ""
|
1576 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1577 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1578 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1579 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1580 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1581 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1582 |
+
"Thanks for all the users that have supported the plugin development."
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: utils/stcr_utils.php:196
|
1586 |
+
msgid ""
|
1587 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1588 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1589 |
+
msgstr ""
|
1590 |
+
"Informuj mnie o odpowiedziach poprzez e-mail. Możesz również <a "
|
1591 |
+
"href='[subscribe_link]'>subskrybować</a> wpis bez zostawiania komentarza."
|
1592 |
+
|
1593 |
+
#: utils/stcr_utils.php:197
|
1594 |
+
msgid ""
|
1595 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1596 |
+
"subscriptions."
|
1597 |
+
msgstr ""
|
1598 |
+
"Subskrybujesz ten wpis. <a href='[manager_link]'>Zarządzaj subskrypcją</a>."
|
1599 |
+
|
1600 |
+
#: utils/stcr_utils.php:198
|
1601 |
+
msgid ""
|
1602 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1603 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1604 |
+
msgstr ""
|
1605 |
+
"Twoja subskrypcja do tego postu musi zostać potwierdzona. <a "
|
1606 |
+
"href='[manager_link]'>Zarządzaj subskrypcją</a>."
|
1607 |
+
|
1608 |
+
#: utils/stcr_utils.php:199
|
1609 |
+
msgid ""
|
1610 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1611 |
+
msgstr "Możesz <a href='[manager_link]'>zarządzać subskrypcją</a> tego wpisu."
|
1612 |
+
|
1613 |
+
#: utils/stcr_utils.php:205
|
1614 |
+
msgid ""
|
1615 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1616 |
+
"will send you a message containing the link to access your personal "
|
1617 |
+
"management page."
|
1618 |
+
msgstr ""
|
1619 |
+
"By zarządzać subskrypcjami, proszę wprowadzić adres e-mail w polu poniżej. "
|
1620 |
+
"Otrzymasz wiadomość zawierajacą odnośnik do strony zarządzania subskrypcjami."
|
1621 |
+
|
1622 |
+
#: utils/stcr_utils.php:206
|
1623 |
+
msgid ""
|
1624 |
+
"Thank you for using our subscription service. Your request has been "
|
1625 |
+
"completed, and you should receive an email with the management link in a few "
|
1626 |
+
"minutes."
|
1627 |
+
msgstr ""
|
1628 |
+
"Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. W "
|
1629 |
+
"przeciągu kilku minut powinieneś otrzymać wiadomość e-mail z odnośnikiem do "
|
1630 |
+
"zarządzania subskrypcjami."
|
1631 |
+
|
1632 |
+
#: utils/stcr_utils.php:207
|
1633 |
+
msgid ""
|
1634 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1635 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1636 |
+
"form here below and you're all set."
|
1637 |
+
msgstr ""
|
1638 |
+
"Możesz śledzić dyskusję we wpisie <strong>[post_title]</strong> bez "
|
1639 |
+
"zostawiania komentarza. Wystarczy, że wpiszesz swój adres e-mail w polu "
|
1640 |
+
"poniżej, a o następnym komentarzu zostaniesz powiadomiony e-mailem."
|
1641 |
+
|
1642 |
+
#: utils/stcr_utils.php:208
|
1643 |
+
msgid ""
|
1644 |
+
"Thank you for using our subscription service. Your request has been "
|
1645 |
+
"completed. You will receive a notification email every time a new comment to "
|
1646 |
+
"this article is approved and posted by the administrator."
|
1647 |
+
msgstr ""
|
1648 |
+
"Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. "
|
1649 |
+
"Będziesz otrzymywał powiadomienie za każdym razem, gdy pojawi się nowy "
|
1650 |
+
"komentarz zaakceptowany przez administratora do tego wpisu."
|
1651 |
+
|
1652 |
+
#: utils/stcr_utils.php:209
|
1653 |
+
msgid ""
|
1654 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1655 |
+
"request, please check your email for the verification message and follow the "
|
1656 |
+
"instructions."
|
1657 |
+
msgstr ""
|
1658 |
+
"Twoja prośba dołączenia do listy subskrybentów została sfinalizowana. Proszę "
|
1659 |
+
"sprawdzić swoją pocztę w celu weryfikacji adresu e-mail i podążać zgodnie z "
|
1660 |
+
"instrukcjami w nim zawartymi."
|
1661 |
+
|
1662 |
+
#: utils/stcr_utils.php:210
|
1663 |
+
msgid ""
|
1664 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1665 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1666 |
+
msgstr ""
|
1667 |
+
"W celu anulowania bądź zrezygnowania z subskrypcji, proszę wybrać z "
|
1668 |
+
"poniższej listy wpis, a następnie wybrać akcję, którą chcesz wykonać."
|
1669 |
+
|
1670 |
+
#: utils/stcr_utils.php:211
|
1671 |
+
msgid ""
|
1672 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1673 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1674 |
+
"You are currently subscribed to:"
|
1675 |
+
msgstr ""
|
1676 |
+
"W celu anulowania bądź zrezygnowania z subskrypcji, proszę wybrać z "
|
1677 |
+
"poniższej listy wpis, a następnie wybrać akcję, którą chcesz wykonać.\n"
|
1678 |
+
"\n"
|
1679 |
+
"Aktualnie subskrybujesz:"
|
1680 |
+
|
1681 |
+
#: utils/stcr_utils.php:215
|
1682 |
+
msgid "There is a new comment to [post_title]"
|
1683 |
+
msgstr "Pojawił się nowy komentarz do wpisu [post_title]"
|
1684 |
+
|
1685 |
+
#: utils/stcr_utils.php:216
|
1686 |
+
msgid ""
|
1687 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1688 |
+
"\n"
|
1689 |
+
"<hr />\n"
|
1690 |
+
"<strong>Comment link:</strong> <a href="
|
1691 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1692 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1693 |
+
"\n"
|
1694 |
+
"<strong>Comment:</strong>\n"
|
1695 |
+
"[comment_content]\n"
|
1696 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1697 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1698 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1699 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: utils/stcr_utils.php:217
|
1703 |
+
msgid "Please confirm your subscription to [post_title]"
|
1704 |
+
msgstr "Proszę potwierdzić swoją subskrypcję do wpisu [post_title]"
|
1705 |
+
|
1706 |
+
#: utils/stcr_utils.php:218
|
1707 |
+
#, fuzzy
|
1708 |
+
#| msgid ""
|
1709 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1710 |
+
#| "[post_permalink]\n"
|
1711 |
+
#| "\n"
|
1712 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1713 |
+
#| "[confirm_link]"
|
1714 |
+
msgid ""
|
1715 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1716 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1717 |
+
"\n"
|
1718 |
+
"Please confirm your request by clicking on this link:\n"
|
1719 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1720 |
+
msgstr ""
|
1721 |
+
"Poprosiłeś, by informować cię o nowych komentarzach dodanych do wpisu "
|
1722 |
+
"[post_title]:\n"
|
1723 |
+
"[post_permalink]\n"
|
1724 |
+
"\n"
|
1725 |
+
"Proszę potwierdzić zgłoszenie poprzez kliknięcie w poniższy odnośnik:\n"
|
1726 |
+
"[confirm_link]"
|
1727 |
+
|
1728 |
+
#: utils/stcr_utils.php:219
|
1729 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1730 |
+
msgstr "Zarządzaj swoimi subskrypcjami na [blog_name]"
|
1731 |
+
|
1732 |
+
#: utils/stcr_utils.php:220
|
1733 |
+
msgid ""
|
1734 |
+
"You have requested to manage your subscriptions to the articles on "
|
1735 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1736 |
+
msgstr ""
|
1737 |
+
|
1738 |
+
#: utils/stcr_utils.php:221
|
1739 |
+
#, fuzzy
|
1740 |
+
#| msgid ""
|
1741 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1742 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1743 |
+
#| "[manager_link]"
|
1744 |
+
msgid ""
|
1745 |
+
"You have requested to manage your subscriptions to the articles on "
|
1746 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1747 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1748 |
+
msgstr ""
|
1749 |
+
"Poprosiłeś o możliwość zarządzanai swoimi subskrypcjami do wpisów na "
|
1750 |
+
"[blog_name]. Kliknij w poniższy odnośnik, by móc zarządzać swoimi "
|
1751 |
+
"subskrypcjami:\n"
|
1752 |
+
"[manager_link]"
|
1753 |
+
|
1754 |
+
#: utils/stcr_utils.php:300
|
1755 |
msgid "StCR Notification"
|
1756 |
msgstr "Powiadomienia"
|
1757 |
|
1763 |
msgid "All"
|
1764 |
msgstr "Wszystko"
|
1765 |
|
1766 |
+
#~ msgid "Support the developers"
|
1767 |
+
#~ msgstr "Wspomóż autora"
|
1768 |
+
|
1769 |
+
#~ msgid "Don't want to donate? You can still help"
|
1770 |
+
#~ msgstr "Nie chcesz wspomagać finansowo? Wciąż możesz pomóc"
|
1771 |
+
|
1772 |
+
#~ msgid ""
|
1773 |
+
#~ "There is a new comment to [post_title].\n"
|
1774 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1775 |
+
#~ "Author: [comment_author]\n"
|
1776 |
+
#~ "Comment:\n"
|
1777 |
+
#~ "[comment_content]\n"
|
1778 |
+
#~ "Permalink: [post_permalink]\n"
|
1779 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1780 |
+
#~ msgstr ""
|
1781 |
+
#~ "Pojawił się nowy komentarz do wpisu [post_title].\n"
|
1782 |
+
#~ "Odnośnik do komentarza: [comment_permalink]\n"
|
1783 |
+
#~ "Autor: [comment_author]\n"
|
1784 |
+
#~ "Komentarz: [comment_content]\n"
|
1785 |
+
#~ "Odnośnik do wpisu: [post_permalink]\n"
|
1786 |
+
#~ "\n"
|
1787 |
+
#~ "Zarządzaj subskrypcjami: [manager_link]"
|
1788 |
+
|
1789 |
#~ msgid ""
|
1790 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1791 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: pt_BR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -15,46 +15,42 @@ msgstr ""
|
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
-
"X-Generator: Poedit
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ subscribe-reloaded
|
22 |
-
#: options/index.php:
|
23 |
-
#: utils/
|
24 |
msgid "Manage subscriptions"
|
25 |
msgstr "Gerenciar inscrições"
|
26 |
|
27 |
# @ subscribe-reloaded
|
28 |
-
#: options/index.php:
|
29 |
msgid "Comment Form"
|
30 |
msgstr "Formulário de resposta"
|
31 |
|
32 |
# @ subscribe-reloaded
|
33 |
-
#: options/index.php:
|
34 |
msgid "Management Page"
|
35 |
msgstr "Página de Gerenciamento"
|
36 |
|
37 |
# @ subscribe-reloaded
|
38 |
-
#: options/index.php:
|
39 |
msgid "Notifications"
|
40 |
msgstr "Notificações"
|
41 |
|
42 |
# @ subscribe-reloaded
|
43 |
-
#: options/index.php:
|
44 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
45 |
msgid "Options"
|
46 |
msgstr "Opções"
|
47 |
|
48 |
-
#: options/index.php:65 utils/stcr_manage.php:453 utils/stcr_manage.php:454
|
49 |
-
msgid "You can help"
|
50 |
-
msgstr "Você pode ajudar"
|
51 |
-
|
52 |
# @ subscribe-reloaded
|
53 |
-
#: options/index.php:
|
54 |
msgid "Support"
|
55 |
msgstr "Suporte"
|
56 |
|
57 |
-
#: options/index.php:
|
58 |
msgid "Donate"
|
59 |
msgstr "Não quer doar? Você ainda pode ajudar"
|
60 |
|
@@ -393,100 +389,100 @@ msgstr "Atualizar inscrições"
|
|
393 |
msgid "Sorry, no subscriptions match your search criteria."
|
394 |
msgstr "Desculpe, nenhuma inscrição encontrada para sua busca."
|
395 |
|
396 |
-
#: options/panel10.php:
|
397 |
msgid "The log file has been successfully deleted."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: options/panel10.php:
|
401 |
msgid "Can't delete the log file, check the file permissions."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: options/panel10.php:
|
405 |
msgid "The log file does not exists."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: options/panel10.php:
|
409 |
msgid "Enable Log Information"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: options/panel10.php:
|
413 |
msgid "Enable Auto clean log data"
|
414 |
msgstr ""
|
415 |
|
416 |
# @ subscribe-reloaded
|
417 |
-
#: options/panel10.php:
|
418 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
419 |
msgid "Your settings have been successfully updated."
|
420 |
msgstr "Suas configurações foram atualizadas"
|
421 |
|
422 |
# @ subscribe-reloaded
|
423 |
-
#: options/panel10.php:
|
424 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
425 |
msgid "There was an error updating the following fields:"
|
426 |
msgstr "Houve um erro ao atualizar os seguintes campos:"
|
427 |
|
428 |
# @ subscribe-reloaded
|
429 |
-
#: options/panel10.php:
|
430 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
431 |
-
#: options/panel5.php:
|
432 |
-
#: options/panel5.php:
|
433 |
-
#: options/panel5.php:
|
434 |
-
#: options/panel5.php:
|
435 |
msgid "Yes"
|
436 |
msgstr "Sim"
|
437 |
|
438 |
# @ subscribe-reloaded
|
439 |
-
#: options/panel10.php:
|
440 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
441 |
-
#: options/panel5.php:
|
442 |
-
#: options/panel5.php:
|
443 |
-
#: options/panel5.php:
|
444 |
-
#: options/panel5.php:
|
445 |
msgid "No"
|
446 |
msgstr "Não"
|
447 |
|
448 |
-
#: options/panel10.php:
|
449 |
msgid ""
|
450 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
451 |
"purposes."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: options/panel10.php:
|
455 |
msgid "Hourly"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: options/panel10.php:
|
459 |
msgid "Twice Daily"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: options/panel10.php:
|
463 |
msgid "Daily"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: options/panel10.php:
|
467 |
msgid "If enabled, StCR will auto clean your information every day."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: options/panel10.php:
|
471 |
msgid "Clean Up Log Archive"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: options/panel10.php:
|
475 |
msgid ""
|
476 |
"If you want to clean up the log archive please click the following button"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: options/panel10.php:
|
480 |
msgid "Clean"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: options/panel10.php:
|
484 |
msgid "System Information"
|
485 |
msgstr ""
|
486 |
|
487 |
# @ default
|
488 |
-
#: options/panel10.php:
|
489 |
-
#: options/panel4.php:283 options/panel5.php:
|
490 |
msgid "Save Changes"
|
491 |
msgstr "Salvar Alterações"
|
492 |
|
@@ -884,7 +880,7 @@ msgstr "Respostas apenas"
|
|
884 |
#: options/panel4.php:128
|
885 |
msgid ""
|
886 |
"This will be use when the user click reply on their email agent. If not set "
|
887 |
-
"will be the same as the Sender email address."
|
888 |
msgstr ""
|
889 |
|
890 |
# @ subscribe-reloaded
|
@@ -901,8 +897,8 @@ msgstr ""
|
|
901 |
|
902 |
#: options/panel4.php:171
|
903 |
msgid ""
|
904 |
-
"<p><strong>Note: To get a default template clear
|
905 |
-
"the options.</strong></p>"
|
906 |
msgstr ""
|
907 |
|
908 |
# @ subscribe-reloaded
|
@@ -953,86 +949,104 @@ msgid ""
|
|
953 |
"[blog_name]"
|
954 |
msgstr "Assunto do e-mail de confirmação. Tags permitidas: [post_title]"
|
955 |
|
956 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
957 |
msgid "Show StCR checkbox / dropdown"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: options/panel5.php:
|
961 |
msgid "Safetly Uninstall"
|
962 |
msgstr ""
|
963 |
|
964 |
# @ subscribe-reloaded
|
965 |
-
#: options/panel5.php:
|
966 |
msgid "Autopurge requests"
|
967 |
msgstr "Pedidos de auto remoção"
|
968 |
|
969 |
# @ subscribe-reloaded
|
970 |
-
#: options/panel5.php:
|
971 |
msgid "Enable double check"
|
972 |
msgstr "Habilitar confirmação"
|
973 |
|
974 |
-
#: options/panel5.php:
|
975 |
msgid "StCR Position"
|
976 |
msgstr ""
|
977 |
|
978 |
# @ subscribe-reloaded
|
979 |
-
#: options/panel5.php:
|
980 |
msgid "Subscribe authors"
|
981 |
msgstr "Inscrito"
|
982 |
|
983 |
-
#: options/panel5.php:
|
984 |
msgid "Enable HTML emails"
|
985 |
msgstr "Habilitar e-mails HTML"
|
986 |
|
987 |
-
#: options/panel5.php:
|
988 |
msgid "HTMLify Links in HTML emails"
|
989 |
msgstr ""
|
990 |
|
991 |
# @ subscribe-reloaded
|
992 |
-
#: options/panel5.php:
|
993 |
msgid "Send trackbacks"
|
994 |
msgstr "Enviar trackbacks"
|
995 |
|
996 |
# @ subscribe-reloaded
|
997 |
-
#: options/panel5.php:
|
998 |
msgid "Notify admin"
|
999 |
msgstr "Notificar Administrador"
|
1000 |
|
1001 |
-
#: options/panel5.php:
|
1002 |
msgid "Let admin subscribe"
|
1003 |
msgstr "Permitir inscrições do Admin"
|
1004 |
|
1005 |
# @ subscribe-reloaded
|
1006 |
-
#: options/panel5.php:
|
1007 |
msgid "BCC admin on Notifications"
|
1008 |
msgstr "Notificações"
|
1009 |
|
1010 |
-
#: options/panel5.php:
|
1011 |
msgid "Enable Font Awesome"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
1015 |
msgid ""
|
1016 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
1017 |
"You should leave it to Yes always. "
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: options/panel5.php:
|
1021 |
msgid "Safely Uninstall"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: options/panel5.php:
|
1025 |
msgid ""
|
1026 |
"This option will allow you to delete the plugin with WordPress without "
|
1027 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: options/panel5.php:
|
1031 |
msgid "days"
|
1032 |
msgstr "dias"
|
1033 |
|
1034 |
# @ subscribe-reloaded
|
1035 |
-
#: options/panel5.php:
|
1036 |
msgid ""
|
1037 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
1038 |
"this feature."
|
@@ -1040,7 +1054,7 @@ msgstr ""
|
|
1040 |
"Excluir inscrições pendentes (não-confirmadas) após X dias. Zero desativa "
|
1041 |
"esse recurso."
|
1042 |
|
1043 |
-
#: options/panel5.php:
|
1044 |
msgid ""
|
1045 |
"If this option is enable the subscription box will be above the submit "
|
1046 |
"button in your comment form. Use this when your theme is outdated and using "
|
@@ -1048,7 +1062,7 @@ msgid ""
|
|
1048 |
msgstr ""
|
1049 |
|
1050 |
# @ subscribe-reloaded
|
1051 |
-
#: options/panel5.php:
|
1052 |
msgid ""
|
1053 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
1054 |
"misuse)."
|
@@ -1056,12 +1070,12 @@ msgstr ""
|
|
1056 |
"Enviar um e-mail de notificação para confirmar a inscrição (para evitar "
|
1057 |
"abusos de endereços)."
|
1058 |
|
1059 |
-
#: options/panel5.php:
|
1060 |
msgid ""
|
1061 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: options/panel5.php:
|
1065 |
msgid ""
|
1066 |
"If enabled, will send email messages with content-type = text/html instead "
|
1067 |
"of text/plain"
|
@@ -1069,23 +1083,23 @@ msgstr ""
|
|
1069 |
"Se ativado envia mensagens de e-mail com o content-type = text/html, em vez "
|
1070 |
"de text/plain"
|
1071 |
|
1072 |
-
#: options/panel5.php:
|
1073 |
msgid "HTMLify links in emails"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: options/panel5.php:
|
1077 |
msgid ""
|
1078 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
1079 |
"</a></code> (only when HTML emails enabled)."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
# @ subscribe-reloaded
|
1083 |
-
#: options/panel5.php:
|
1084 |
msgid "Process trackbacks"
|
1085 |
msgstr "Enviar trackbacks"
|
1086 |
|
1087 |
# @ subscribe-reloaded
|
1088 |
-
#: options/panel5.php:
|
1089 |
msgid ""
|
1090 |
"Notify users when a new trackback or pingback is added to the discussion."
|
1091 |
msgstr ""
|
@@ -1093,60 +1107,84 @@ msgstr ""
|
|
1093 |
"discussão."
|
1094 |
|
1095 |
# @ subscribe-reloaded
|
1096 |
-
#: options/panel5.php:
|
1097 |
msgid "Track all subscriptions"
|
1098 |
msgstr "Acompanhe todas as inscrições"
|
1099 |
|
1100 |
# @ subscribe-reloaded
|
1101 |
-
#: options/panel5.php:
|
1102 |
msgid "Notify the administrator when users subscribe without commenting."
|
1103 |
msgstr ""
|
1104 |
"Notificar o administrador quando os usuários se inscrever sem comentar."
|
1105 |
|
1106 |
# @ subscribe-reloaded
|
1107 |
-
#: options/panel5.php:
|
1108 |
msgid "Let the administrator subscribe to comments when logged in."
|
1109 |
msgstr ""
|
1110 |
"Deixe o administrador inscrever-se em comentários, quando estiver logado."
|
1111 |
|
1112 |
-
#: options/panel5.php:
|
1113 |
msgid "Send a copy of all Notifications to the administrator."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: options/panel5.php:
|
1117 |
msgid ""
|
1118 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1119 |
"you theme already add this into your site."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: options/panel5.php:
|
1123 |
msgid "StCR Unique Key"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: options/panel5.php:
|
1127 |
msgid "This Unique Key is not set, please click the following button to "
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: options/panel5.php:
|
1131 |
msgid "Generate"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: options/panel5.php:
|
1135 |
msgid ""
|
1136 |
"This Unique Key will be use to send the notification to your subscribers "
|
1137 |
"with more security."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: options/
|
1141 |
-
msgid "
|
1142 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1143 |
|
1144 |
# @ subscribe-reloaded
|
1145 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1146 |
msgid ""
|
1147 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1148 |
"consider supporting the author if this plugin made your web site better, "
|
1149 |
-
"especially if you are making money out of it
|
|
|
1150 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1151 |
"strong>, and to buy some food for my hungry family."
|
1152 |
msgstr ""
|
@@ -1157,20 +1195,28 @@ msgstr ""
|
|
1157 |
"reinvestido no desenvolvimento do plugin e para comprar comida para minha "
|
1158 |
"família com fome."
|
1159 |
|
1160 |
-
|
1161 |
-
|
1162 |
-
msgid "
|
1163 |
-
|
|
|
1164 |
|
1165 |
# @ subscribe-reloaded
|
1166 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1167 |
msgid ""
|
1168 |
-
"
|
1169 |
-
"
|
1170 |
-
"
|
1171 |
-
"
|
1172 |
-
"
|
1173 |
-
"you do, thanks for using my plugin!"
|
1174 |
msgstr ""
|
1175 |
"Se você não quiser doar dinheiro, por favor, considere blogar sobre o meu "
|
1176 |
"plugin com um link para o plugin da página. Por favor, deixe seus leitores "
|
@@ -1180,11 +1226,11 @@ msgstr ""
|
|
1180 |
"fizer, obrigado por usar o meu plugin!"
|
1181 |
|
1182 |
# @ subscribe-reloaded
|
1183 |
-
#: options/panel7.php:
|
1184 |
msgid "Subscribe to the Beta testers"
|
1185 |
msgstr "Inscrito"
|
1186 |
|
1187 |
-
#: options/panel7.php:
|
1188 |
msgid ""
|
1189 |
"Before a new Update we release a Beta version so that our current users can "
|
1190 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1193,12 +1239,12 @@ msgid ""
|
|
1193 |
msgstr ""
|
1194 |
|
1195 |
# @ subscribe-reloaded
|
1196 |
-
#: options/panel7.php:
|
1197 |
msgid "Vote and show your appreciation"
|
1198 |
msgstr "Vote e mostre o seu apreço"
|
1199 |
|
1200 |
# @ subscribe-reloaded
|
1201 |
-
#: options/panel7.php:
|
1202 |
msgid ""
|
1203 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1204 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1208,11 +1254,11 @@ msgstr ""
|
|
1208 |
"e como é bom. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1209 |
"comments-reloaded/\">Classifique-o</a> em sua página do \"Plugin Directory\"."
|
1210 |
|
1211 |
-
#: options/panel8.php:
|
1212 |
msgid "Did you find a Bug on the plugin?"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: options/panel8.php:
|
1216 |
msgid ""
|
1217 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1218 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1314,198 +1360,24 @@ msgstr ""
|
|
1314 |
msgid "You have request to manage another email address and this is forbidden."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
|
1318 |
-
#: utils/stcr_manage.php:223
|
1319 |
-
msgid ""
|
1320 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1321 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1322 |
-
msgstr ""
|
1323 |
-
"Notifique-me de novos comentários via e-mail. Você também pode <a "
|
1324 |
-
"href='[subscribe_link]'>se inscrever</a> sem comentar."
|
1325 |
-
|
1326 |
-
# @ subscribe-reloaded
|
1327 |
-
#: utils/stcr_manage.php:224
|
1328 |
-
msgid ""
|
1329 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1330 |
-
"subscriptions."
|
1331 |
-
msgstr ""
|
1332 |
-
"Você está inscrito neste post. <a href='[manager_link]'>Gerencie</a> suas "
|
1333 |
-
"inscrições."
|
1334 |
-
|
1335 |
-
# @ subscribe-reloaded
|
1336 |
-
#: utils/stcr_manage.php:225
|
1337 |
-
msgid ""
|
1338 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1339 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1340 |
-
msgstr ""
|
1341 |
-
"A sua inscrição para este post deve ser confirmada. <a "
|
1342 |
-
"href='[manager_link]'>Gerencie as suas inscrições</a>."
|
1343 |
-
|
1344 |
-
# @ subscribe-reloaded
|
1345 |
-
#: utils/stcr_manage.php:226
|
1346 |
-
msgid ""
|
1347 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1348 |
-
msgstr ""
|
1349 |
-
"Você pode <a href='[manager_link]'>gerenciar as inscrições</a> deste post."
|
1350 |
-
|
1351 |
-
# @ subscribe-reloaded
|
1352 |
-
#: utils/stcr_manage.php:232
|
1353 |
-
msgid ""
|
1354 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1355 |
-
"will send you a message containing the link to access your personal "
|
1356 |
-
"management page."
|
1357 |
-
msgstr ""
|
1358 |
-
"Para gerenciar suas inscrições, digite o seu endereço de e-mail aqui em "
|
1359 |
-
"baixo. Nós lhe enviaremos uma mensagem contendo o link para acessar sua "
|
1360 |
-
"página pessoal de gerenciamento."
|
1361 |
-
|
1362 |
-
# @ subscribe-reloaded
|
1363 |
-
#: utils/stcr_manage.php:233
|
1364 |
-
msgid ""
|
1365 |
-
"Thank you for using our subscription service. Your request has been "
|
1366 |
-
"completed, and you should receive an email with the management link in a few "
|
1367 |
-
"minutes."
|
1368 |
-
msgstr ""
|
1369 |
-
"Obrigado por usar nosso serviço de inscrições. Seu pedido foi concluído, e "
|
1370 |
-
"você deverá receber um email com o link de gerenciamento em poucos minutos."
|
1371 |
-
|
1372 |
-
# @ subscribe-reloaded
|
1373 |
-
#: utils/stcr_manage.php:234
|
1374 |
-
msgid ""
|
1375 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1376 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1377 |
-
"form here below and you're all set."
|
1378 |
-
msgstr ""
|
1379 |
-
"Você pode acompanhar a discussão sobre <strong>[post_title]</strong> sem ter "
|
1380 |
-
"que deixar um comentário. Legal, não? Basta digitar seu endereço de e-mail "
|
1381 |
-
"no formulário abaixo."
|
1382 |
-
|
1383 |
-
# @ subscribe-reloaded
|
1384 |
-
#: utils/stcr_manage.php:235
|
1385 |
-
msgid ""
|
1386 |
-
"Thank you for using our subscription service. Your request has been "
|
1387 |
-
"completed. You will receive a notification email every time a new comment to "
|
1388 |
-
"this article is approved and posted by the administrator."
|
1389 |
-
msgstr ""
|
1390 |
-
"Obrigado por usar nosso serviço de inscrições. Seu pedido foi concluído. "
|
1391 |
-
"Você receberá um e-mail de notificação toda vez que um novo comentário a "
|
1392 |
-
"este artigo for aprovado e publicado pelo administrador."
|
1393 |
-
|
1394 |
-
# @ subscribe-reloaded
|
1395 |
-
#: utils/stcr_manage.php:236
|
1396 |
-
msgid ""
|
1397 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1398 |
-
"request, please check your email for the verification message and follow the "
|
1399 |
-
"instructions."
|
1400 |
-
msgstr ""
|
1401 |
-
"Obrigado por usar nosso serviço de inscrições. Para confirmar o seu pedido, "
|
1402 |
-
"verifique seu e-mail para a mensagem de confirmação e siga as instruções."
|
1403 |
-
|
1404 |
-
# @ subscribe-reloaded
|
1405 |
-
#: utils/stcr_manage.php:237
|
1406 |
-
msgid ""
|
1407 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1408 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1409 |
-
msgstr ""
|
1410 |
-
"A fim de cancelar ou suspender uma ou mais notificações, selecione a opção "
|
1411 |
-
"correspondente (s) e clique no botão no final da lista."
|
1412 |
-
|
1413 |
-
# @ subscribe-reloaded
|
1414 |
-
#: utils/stcr_manage.php:238
|
1415 |
-
msgid ""
|
1416 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1417 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1418 |
-
"You are currently subscribed to:"
|
1419 |
-
msgstr ""
|
1420 |
-
"A fim de cancelar ou suspender uma ou mais notificações, selecione a opção "
|
1421 |
-
"correspondente (s) e clique no botão no final da lista. Você está inscrito "
|
1422 |
-
"em:"
|
1423 |
-
|
1424 |
-
# @ subscribe-reloaded
|
1425 |
-
#: utils/stcr_manage.php:242
|
1426 |
-
msgid "There is a new comment to [post_title]"
|
1427 |
-
msgstr "Há um novo comentário para [post_title]"
|
1428 |
-
|
1429 |
-
# @ subscribe-reloaded
|
1430 |
-
#: utils/stcr_manage.php:243
|
1431 |
-
msgid ""
|
1432 |
-
"There is a new comment to [post_title].\n"
|
1433 |
-
"Comment Link: [comment_permalink]\n"
|
1434 |
-
"Author: [comment_author]\n"
|
1435 |
-
"Comment:\n"
|
1436 |
-
"[comment_content]\n"
|
1437 |
-
"Permalink: [post_permalink]\n"
|
1438 |
-
"Manage your subscriptions: [manager_link]"
|
1439 |
-
msgstr ""
|
1440 |
-
"Há um novo comentário para [post_title].\n"
|
1441 |
-
"Link do Comentáro: [comment_permalink]\n"
|
1442 |
-
"Autor: [comment_author]\n"
|
1443 |
-
"Comentário:\n"
|
1444 |
-
"[comment_content]\n"
|
1445 |
-
"Permalink: [post_permalink]\n"
|
1446 |
-
"Gerencie suas inscrições: [manager_link]"
|
1447 |
-
|
1448 |
-
# @ subscribe-reloaded
|
1449 |
-
#: utils/stcr_manage.php:244
|
1450 |
-
msgid "Please confirm your subscription to [post_title]"
|
1451 |
-
msgstr "Por favor, confirme sua inscrição para [post_title]"
|
1452 |
-
|
1453 |
-
# @ subscribe-reloaded
|
1454 |
-
#: utils/stcr_manage.php:245
|
1455 |
-
msgid ""
|
1456 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1457 |
-
"[post_permalink]\n"
|
1458 |
-
"\n"
|
1459 |
-
"Please confirm your request by clicking on this link:\n"
|
1460 |
-
"[confirm_link]"
|
1461 |
-
msgstr ""
|
1462 |
-
"Você pediu para ser notificado sempre que um novo comentário é adicionado "
|
1463 |
-
"a:\n"
|
1464 |
-
"[post_permalink]\n"
|
1465 |
-
"\n"
|
1466 |
-
"Por favor, confirme seu pedido clicando neste link:\n"
|
1467 |
-
"[confirm_link]"
|
1468 |
-
|
1469 |
-
# @ subscribe-reloaded
|
1470 |
-
#: utils/stcr_manage.php:246
|
1471 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1472 |
-
msgstr "Gerenciar as suas inscrições em [blog_name]"
|
1473 |
-
|
1474 |
-
#: utils/stcr_manage.php:247
|
1475 |
-
msgid ""
|
1476 |
-
"You have requested to manage your subscriptions to the articles on "
|
1477 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1478 |
-
msgstr ""
|
1479 |
-
|
1480 |
-
# @ subscribe-reloaded
|
1481 |
-
#: utils/stcr_manage.php:248
|
1482 |
-
msgid ""
|
1483 |
-
"You have requested to manage your subscriptions to the articles on "
|
1484 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1485 |
-
"[manager_link]"
|
1486 |
-
msgstr ""
|
1487 |
-
"Você pediu para gerenciar suas inscrições para os artigos no blog "
|
1488 |
-
"[blog_name]. Siga este link para acessar sua página pessoal de inscrições:\n"
|
1489 |
-
"[manager_link]"
|
1490 |
-
|
1491 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1492 |
msgid "StCR System"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: utils/stcr_manage.php:
|
1496 |
-
#: utils/stcr_manage.php:
|
1497 |
-
#: utils/stcr_manage.php:
|
1498 |
-
#: utils/stcr_manage.php:
|
1499 |
-
#: utils/stcr_manage.php:
|
1500 |
msgid "You do not have sufficient permissions to access this page."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
# @ subscribe-reloaded
|
1504 |
-
#: utils/stcr_manage.php:
|
1505 |
msgid "Subscriptions"
|
1506 |
msgstr "Inscrições"
|
1507 |
|
1508 |
-
#: utils/stcr_manage.php:
|
1509 |
msgid ""
|
1510 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1511 |
msgstr ""
|
@@ -1513,23 +1385,23 @@ msgstr ""
|
|
1513 |
"oficial"
|
1514 |
|
1515 |
# @ subscribe-reloaded
|
1516 |
-
#: utils/stcr_manage.php:
|
1517 |
msgid "support forum"
|
1518 |
msgstr "fórum de suporte"
|
1519 |
|
1520 |
-
#: utils/stcr_manage.php:
|
1521 |
msgid "Feeling generous?"
|
1522 |
msgstr "Sentindo-se generoso(a)?"
|
1523 |
|
1524 |
-
#: utils/stcr_manage.php:
|
1525 |
msgid "Donate a few bucks!"
|
1526 |
msgstr "Doe alguns trocados!"
|
1527 |
|
1528 |
-
#: utils/stcr_upgrade.php:
|
1529 |
msgid "Important Notice"
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: utils/stcr_upgrade.php:
|
1533 |
msgid ""
|
1534 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1535 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1537,28 +1409,28 @@ msgid ""
|
|
1537 |
"src=\""
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: utils/stcr_upgrade.php:
|
1541 |
msgid ""
|
1542 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1543 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1544 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: utils/stcr_upgrade.php:
|
1548 |
msgid ""
|
1549 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1550 |
"Comments to prevent confusion between the two plugins."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: utils/stcr_upgrade.php:
|
1554 |
msgid ""
|
1555 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1556 |
"that you want to import, you'll need to import that data manually, as only "
|
1557 |
"one import routine will ever run to prevent data loss."
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: utils/stcr_upgrade.php:
|
1561 |
-
#: utils/stcr_upgrade.php:
|
1562 |
msgid ""
|
1563 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1564 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1566,20 +1438,20 @@ msgid ""
|
|
1566 |
"\"stcr-loading-animation\" src=\""
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: utils/stcr_upgrade.php:
|
1570 |
msgid ""
|
1571 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1572 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1573 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: utils/stcr_upgrade.php:
|
1577 |
msgid ""
|
1578 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1579 |
"Notification to prevent confusion between the two plugins."
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: utils/stcr_upgrade.php:
|
1583 |
msgid ""
|
1584 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1585 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1587,13 +1459,13 @@ msgid ""
|
|
1587 |
"Reloaded</strong>."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: utils/stcr_upgrade.php:
|
1591 |
msgid ""
|
1592 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1593 |
"Subscriptions to prevent confusion between the two plugins."
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: utils/stcr_upgrade.php:
|
1597 |
msgid ""
|
1598 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1599 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1601,7 +1473,7 @@ msgid ""
|
|
1601 |
"ever run to prevent data loss."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: utils/stcr_upgrade.php:
|
1605 |
msgid ""
|
1606 |
"<strong>Note:</strong> If you were previously using the "
|
1607 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1610,29 +1482,29 @@ msgid ""
|
|
1610 |
"respectively."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: utils/stcr_upgrade.php:
|
1614 |
msgid ""
|
1615 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: utils/stcr_upgrade.php:
|
1619 |
-
#: utils/stcr_upgrade.php:
|
1620 |
msgid ""
|
1621 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1622 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: utils/stcr_upgrade.php:
|
1626 |
msgid ""
|
1627 |
-
"Please consider to make a donation to support the plugin
|
1628 |
-
"<a href=\"\n"
|
1629 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1630 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1631 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1632 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: utils/stcr_upgrade.php:
|
1636 |
msgid ""
|
1637 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1638 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1640,23 +1512,23 @@ msgid ""
|
|
1640 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: utils/stcr_upgrade.php:
|
1644 |
msgid ""
|
1645 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1646 |
"160106."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: utils/stcr_upgrade.php:
|
1650 |
msgid ""
|
1651 |
"This version includes many changes and fixes to improve your experience with "
|
1652 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1653 |
"email templates, Subscription Checkbox position, and more!"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: utils/stcr_upgrade.php:
|
1657 |
-
#: utils/stcr_upgrade.php:
|
1658 |
-
#: utils/stcr_upgrade.php:
|
1659 |
-
#: utils/stcr_upgrade.php:
|
1660 |
msgid ""
|
1661 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1662 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1664,123 +1536,126 @@ msgid ""
|
|
1664 |
"class=\"stcr-loading-animation\" src=\""
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: utils/stcr_upgrade.php:
|
1668 |
msgid ""
|
1669 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1670 |
"160115."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: utils/stcr_upgrade.php:
|
1674 |
msgid ""
|
1675 |
"This version includes fixes to broken links while managing your subscriptions"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
-
#: utils/stcr_upgrade.php:
|
1679 |
msgid ""
|
1680 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1681 |
"160831"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: utils/stcr_upgrade.php:
|
1685 |
msgid "This version includes fixes to many bugs and also new features, "
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: utils/stcr_upgrade.php:
|
1689 |
msgid ""
|
1690 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1691 |
"address. This will help the subscribers to use the Reply option in their "
|
1692 |
"email agents."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: utils/stcr_upgrade.php:
|
1696 |
msgid ""
|
1697 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1698 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: utils/stcr_upgrade.php:
|
1702 |
msgid ""
|
1703 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1704 |
"without loosing your subscriptions. You can use this option also for reset "
|
1705 |
"all the settings, see the FAQ."
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: utils/stcr_upgrade.php:
|
1709 |
msgid ""
|
1710 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1711 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1712 |
"Post Type."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: utils/stcr_upgrade.php:
|
1716 |
msgid ""
|
1717 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1718 |
"options to and the management link only by email and not to display it on "
|
1719 |
"the request link page."
|
1720 |
msgstr ""
|
1721 |
|
1722 |
-
#: utils/stcr_upgrade.php:
|
1723 |
msgid ""
|
1724 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1725 |
"160902"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: utils/stcr_upgrade.php:
|
1729 |
msgid ""
|
1730 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1731 |
"previous 160831 version."
|
1732 |
msgstr ""
|
1733 |
|
1734 |
-
#: utils/stcr_upgrade.php:
|
1735 |
msgid "Settings"
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: utils/stcr_upgrade.php:
|
1739 |
msgid ""
|
1740 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1741 |
"160915"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#: utils/stcr_upgrade.php:
|
1745 |
-
#: utils/stcr_upgrade.php:
|
1746 |
msgid "This version includes fixes and improvements, "
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: utils/stcr_upgrade.php:
|
1750 |
msgid ""
|
1751 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1752 |
"dropdown."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: utils/stcr_upgrade.php:
|
1756 |
msgid ""
|
1757 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: utils/stcr_upgrade.php:
|
|
|
1761 |
msgid "Log Settings"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: utils/stcr_upgrade.php:
|
|
|
1765 |
msgid ""
|
1766 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: utils/stcr_upgrade.php:
|
1770 |
msgid ""
|
1771 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1772 |
"enable."
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: utils/stcr_upgrade.php:
|
1776 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: utils/stcr_upgrade.php:
|
|
|
1780 |
msgid "The support of this plugin is given thanks to your donations."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: utils/stcr_upgrade.php:
|
1784 |
msgid ""
|
1785 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1786 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1790,19 +1665,19 @@ msgid ""
|
|
1790 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: utils/stcr_upgrade.php:
|
1794 |
msgid ""
|
1795 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1796 |
"installation regarding a database table creation."
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: utils/stcr_upgrade.php:
|
1800 |
msgid ""
|
1801 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1802 |
"Awesome."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: utils/stcr_upgrade.php:
|
1806 |
msgid ""
|
1807 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1808 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1813,8 +1688,217 @@ msgid ""
|
|
1813 |
"for the users that have supported the plugin development."
|
1814 |
msgstr ""
|
1815 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1816 |
# @ subscribe-reloaded
|
1817 |
-
#: utils/stcr_utils.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1818 |
msgid "StCR Notification"
|
1819 |
msgstr "Notificações"
|
1820 |
|
@@ -1826,6 +1910,31 @@ msgstr "Não se inscrever"
|
|
1826 |
msgid "All"
|
1827 |
msgstr "Todos os comentários"
|
1828 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1829 |
# @ subscribe-reloaded
|
1830 |
#~ msgid ""
|
1831 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:11-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:12-0700\n"
|
7 |
+
"Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: pt_BR\n"
|
10 |
"MIME-Version: 1.0\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
+
"X-Generator: Poedit 2.0.6\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ subscribe-reloaded
|
22 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
23 |
+
#: utils/stcr_utils.php:203
|
24 |
msgid "Manage subscriptions"
|
25 |
msgstr "Gerenciar inscrições"
|
26 |
|
27 |
# @ subscribe-reloaded
|
28 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
29 |
msgid "Comment Form"
|
30 |
msgstr "Formulário de resposta"
|
31 |
|
32 |
# @ subscribe-reloaded
|
33 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
34 |
msgid "Management Page"
|
35 |
msgstr "Página de Gerenciamento"
|
36 |
|
37 |
# @ subscribe-reloaded
|
38 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
39 |
msgid "Notifications"
|
40 |
msgstr "Notificações"
|
41 |
|
42 |
# @ subscribe-reloaded
|
43 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
44 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
45 |
msgid "Options"
|
46 |
msgstr "Opções"
|
47 |
|
|
|
|
|
|
|
|
|
48 |
# @ subscribe-reloaded
|
49 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
50 |
msgid "Support"
|
51 |
msgstr "Suporte"
|
52 |
|
53 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
54 |
msgid "Donate"
|
55 |
msgstr "Não quer doar? Você ainda pode ajudar"
|
56 |
|
389 |
msgid "Sorry, no subscriptions match your search criteria."
|
390 |
msgstr "Desculpe, nenhuma inscrição encontrada para sua busca."
|
391 |
|
392 |
+
#: options/panel10.php:41
|
393 |
msgid "The log file has been successfully deleted."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: options/panel10.php:46
|
397 |
msgid "Can't delete the log file, check the file permissions."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: options/panel10.php:52
|
401 |
msgid "The log file does not exists."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: options/panel10.php:66 options/panel10.php:110
|
405 |
msgid "Enable Log Information"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: options/panel10.php:72 options/panel10.php:119
|
409 |
msgid "Enable Auto clean log data"
|
410 |
msgstr ""
|
411 |
|
412 |
# @ subscribe-reloaded
|
413 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
414 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
415 |
msgid "Your settings have been successfully updated."
|
416 |
msgstr "Suas configurações foram atualizadas"
|
417 |
|
418 |
# @ subscribe-reloaded
|
419 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
420 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
421 |
msgid "There was an error updating the following fields:"
|
422 |
msgstr "Houve um erro ao atualizar os seguintes campos:"
|
423 |
|
424 |
# @ subscribe-reloaded
|
425 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
426 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
427 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
428 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
429 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
430 |
+
#: options/panel5.php:210 options/panel5.php:219
|
431 |
msgid "Yes"
|
432 |
msgstr "Sim"
|
433 |
|
434 |
# @ subscribe-reloaded
|
435 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
436 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
437 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
438 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
439 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
440 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
441 |
msgid "No"
|
442 |
msgstr "Não"
|
443 |
|
444 |
+
#: options/panel10.php:114
|
445 |
msgid ""
|
446 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
447 |
"purposes."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: options/panel10.php:125
|
451 |
msgid "Hourly"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: options/panel10.php:126
|
455 |
msgid "Twice Daily"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: options/panel10.php:127
|
459 |
msgid "Daily"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: options/panel10.php:129
|
463 |
msgid "If enabled, StCR will auto clean your information every day."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: options/panel10.php:134
|
467 |
msgid "Clean Up Log Archive"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: options/panel10.php:138
|
471 |
msgid ""
|
472 |
"If you want to clean up the log archive please click the following button"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: options/panel10.php:140
|
476 |
msgid "Clean"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: options/panel10.php:147 options/panel10.php:150
|
480 |
msgid "System Information"
|
481 |
msgstr ""
|
482 |
|
483 |
# @ default
|
484 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
485 |
+
#: options/panel4.php:283 options/panel5.php:265
|
486 |
msgid "Save Changes"
|
487 |
msgstr "Salvar Alterações"
|
488 |
|
880 |
#: options/panel4.php:128
|
881 |
msgid ""
|
882 |
"This will be use when the user click reply on their email agent. If not set "
|
883 |
+
"it will be the same as the Sender email address."
|
884 |
msgstr ""
|
885 |
|
886 |
# @ subscribe-reloaded
|
897 |
|
898 |
#: options/panel4.php:171
|
899 |
msgid ""
|
900 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
901 |
+
"all the content and save the options.</strong></p>"
|
902 |
msgstr ""
|
903 |
|
904 |
# @ subscribe-reloaded
|
949 |
"[blog_name]"
|
950 |
msgstr "Assunto do e-mail de confirmação. Tags permitidas: [post_title]"
|
951 |
|
952 |
+
# @ subscribe-reloaded
|
953 |
+
#: options/panel5.php:38
|
954 |
+
#, fuzzy
|
955 |
+
#| msgid "Your settings have been successfully updated."
|
956 |
+
msgid "Your settings have been successfully reset."
|
957 |
+
msgstr "Suas configurações foram atualizadas"
|
958 |
+
|
959 |
+
# @ subscribe-reloaded
|
960 |
+
#: options/panel5.php:40
|
961 |
+
#, fuzzy
|
962 |
+
#| msgid "There was an error updating the following fields:"
|
963 |
+
msgid "There was an error deleting the options:"
|
964 |
+
msgstr "Houve um erro ao atualizar os seguintes campos:"
|
965 |
+
|
966 |
+
#: options/panel5.php:48 options/panel5.php:108
|
967 |
msgid "Show StCR checkbox / dropdown"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: options/panel5.php:51
|
971 |
msgid "Safetly Uninstall"
|
972 |
msgstr ""
|
973 |
|
974 |
# @ subscribe-reloaded
|
975 |
+
#: options/panel5.php:54 options/panel5.php:125
|
976 |
msgid "Autopurge requests"
|
977 |
msgstr "Pedidos de auto remoção"
|
978 |
|
979 |
# @ subscribe-reloaded
|
980 |
+
#: options/panel5.php:57 options/panel5.php:143
|
981 |
msgid "Enable double check"
|
982 |
msgstr "Habilitar confirmação"
|
983 |
|
984 |
+
#: options/panel5.php:60 options/panel5.php:134
|
985 |
msgid "StCR Position"
|
986 |
msgstr ""
|
987 |
|
988 |
# @ subscribe-reloaded
|
989 |
+
#: options/panel5.php:63 options/panel5.php:151
|
990 |
msgid "Subscribe authors"
|
991 |
msgstr "Inscrito"
|
992 |
|
993 |
+
#: options/panel5.php:66 options/panel5.php:161
|
994 |
msgid "Enable HTML emails"
|
995 |
msgstr "Habilitar e-mails HTML"
|
996 |
|
997 |
+
#: options/panel5.php:69
|
998 |
msgid "HTMLify Links in HTML emails"
|
999 |
msgstr ""
|
1000 |
|
1001 |
# @ subscribe-reloaded
|
1002 |
+
#: options/panel5.php:72
|
1003 |
msgid "Send trackbacks"
|
1004 |
msgstr "Enviar trackbacks"
|
1005 |
|
1006 |
# @ subscribe-reloaded
|
1007 |
+
#: options/panel5.php:75
|
1008 |
msgid "Notify admin"
|
1009 |
msgstr "Notificar Administrador"
|
1010 |
|
1011 |
+
#: options/panel5.php:78 options/panel5.php:199
|
1012 |
msgid "Let admin subscribe"
|
1013 |
msgstr "Permitir inscrições do Admin"
|
1014 |
|
1015 |
# @ subscribe-reloaded
|
1016 |
+
#: options/panel5.php:81 options/panel5.php:208
|
1017 |
msgid "BCC admin on Notifications"
|
1018 |
msgstr "Notificações"
|
1019 |
|
1020 |
+
#: options/panel5.php:84 options/panel5.php:217
|
1021 |
msgid "Enable Font Awesome"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
1025 |
+
msgid "Reset All Options"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: options/panel5.php:112
|
1029 |
msgid ""
|
1030 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
1031 |
"You should leave it to Yes always. "
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: options/panel5.php:117
|
1035 |
msgid "Safely Uninstall"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: options/panel5.php:121
|
1039 |
msgid ""
|
1040 |
"This option will allow you to delete the plugin with WordPress without "
|
1041 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: options/panel5.php:128
|
1045 |
msgid "days"
|
1046 |
msgstr "dias"
|
1047 |
|
1048 |
# @ subscribe-reloaded
|
1049 |
+
#: options/panel5.php:129
|
1050 |
msgid ""
|
1051 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
1052 |
"this feature."
|
1054 |
"Excluir inscrições pendentes (não-confirmadas) após X dias. Zero desativa "
|
1055 |
"esse recurso."
|
1056 |
|
1057 |
+
#: options/panel5.php:138
|
1058 |
msgid ""
|
1059 |
"If this option is enable the subscription box will be above the submit "
|
1060 |
"button in your comment form. Use this when your theme is outdated and using "
|
1062 |
msgstr ""
|
1063 |
|
1064 |
# @ subscribe-reloaded
|
1065 |
+
#: options/panel5.php:147
|
1066 |
msgid ""
|
1067 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
1068 |
"misuse)."
|
1070 |
"Enviar um e-mail de notificação para confirmar a inscrição (para evitar "
|
1071 |
"abusos de endereços)."
|
1072 |
|
1073 |
+
#: options/panel5.php:156
|
1074 |
msgid ""
|
1075 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: options/panel5.php:165
|
1079 |
msgid ""
|
1080 |
"If enabled, will send email messages with content-type = text/html instead "
|
1081 |
"of text/plain"
|
1083 |
"Se ativado envia mensagens de e-mail com o content-type = text/html, em vez "
|
1084 |
"de text/plain"
|
1085 |
|
1086 |
+
#: options/panel5.php:170
|
1087 |
msgid "HTMLify links in emails"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: options/panel5.php:175
|
1091 |
msgid ""
|
1092 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
1093 |
"</a></code> (only when HTML emails enabled)."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
# @ subscribe-reloaded
|
1097 |
+
#: options/panel5.php:180
|
1098 |
msgid "Process trackbacks"
|
1099 |
msgstr "Enviar trackbacks"
|
1100 |
|
1101 |
# @ subscribe-reloaded
|
1102 |
+
#: options/panel5.php:184
|
1103 |
msgid ""
|
1104 |
"Notify users when a new trackback or pingback is added to the discussion."
|
1105 |
msgstr ""
|
1107 |
"discussão."
|
1108 |
|
1109 |
# @ subscribe-reloaded
|
1110 |
+
#: options/panel5.php:189
|
1111 |
msgid "Track all subscriptions"
|
1112 |
msgstr "Acompanhe todas as inscrições"
|
1113 |
|
1114 |
# @ subscribe-reloaded
|
1115 |
+
#: options/panel5.php:194
|
1116 |
msgid "Notify the administrator when users subscribe without commenting."
|
1117 |
msgstr ""
|
1118 |
"Notificar o administrador quando os usuários se inscrever sem comentar."
|
1119 |
|
1120 |
# @ subscribe-reloaded
|
1121 |
+
#: options/panel5.php:203
|
1122 |
msgid "Let the administrator subscribe to comments when logged in."
|
1123 |
msgstr ""
|
1124 |
"Deixe o administrador inscrever-se em comentários, quando estiver logado."
|
1125 |
|
1126 |
+
#: options/panel5.php:212
|
1127 |
msgid "Send a copy of all Notifications to the administrator."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: options/panel5.php:221
|
1131 |
msgid ""
|
1132 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1133 |
"you theme already add this into your site."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: options/panel5.php:226
|
1137 |
msgid "StCR Unique Key"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: options/panel5.php:231
|
1141 |
msgid "This Unique Key is not set, please click the following button to "
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1145 |
msgid "Generate"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: options/panel5.php:243
|
1149 |
msgid ""
|
1150 |
"This Unique Key will be use to send the notification to your subscribers "
|
1151 |
"with more security."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: options/panel5.php:256
|
1155 |
+
msgid ""
|
1156 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1157 |
+
"with caution."
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: options/panel5.php:258
|
1161 |
+
msgid "Yes, Delete Options including subscriptions."
|
1162 |
+
msgstr ""
|
1163 |
+
|
1164 |
+
#: options/panel5.php:259
|
1165 |
+
msgid "No, Only delete the StCR Options."
|
1166 |
+
msgstr ""
|
1167 |
+
|
1168 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1169 |
+
msgid ""
|
1170 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1171 |
+
"hidden=\"true\"></i>"
|
1172 |
+
msgstr ""
|
1173 |
|
1174 |
# @ subscribe-reloaded
|
1175 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1176 |
+
#, fuzzy
|
1177 |
+
#| msgid ""
|
1178 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1179 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1180 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1181 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1182 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1183 |
msgid ""
|
1184 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1185 |
"consider supporting the author if this plugin made your web site better, "
|
1186 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1187 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1188 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1189 |
"strong>, and to buy some food for my hungry family."
|
1190 |
msgstr ""
|
1195 |
"reinvestido no desenvolvimento do plugin e para comprar comida para minha "
|
1196 |
"família com fome."
|
1197 |
|
1198 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1199 |
+
#, fuzzy
|
1200 |
+
#| msgid "You can help"
|
1201 |
+
msgid "You can still help"
|
1202 |
+
msgstr "Você pode ajudar"
|
1203 |
|
1204 |
# @ subscribe-reloaded
|
1205 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1206 |
+
#, fuzzy
|
1207 |
+
#| msgid ""
|
1208 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1209 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1210 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1211 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1212 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1213 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1214 |
msgid ""
|
1215 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1216 |
+
"Please let your readers know what makes your blog better. You can also "
|
1217 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1218 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1219 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
|
|
1220 |
msgstr ""
|
1221 |
"Se você não quiser doar dinheiro, por favor, considere blogar sobre o meu "
|
1222 |
"plugin com um link para o plugin da página. Por favor, deixe seus leitores "
|
1226 |
"fizer, obrigado por usar o meu plugin!"
|
1227 |
|
1228 |
# @ subscribe-reloaded
|
1229 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1230 |
msgid "Subscribe to the Beta testers"
|
1231 |
msgstr "Inscrito"
|
1232 |
|
1233 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1234 |
msgid ""
|
1235 |
"Before a new Update we release a Beta version so that our current users can "
|
1236 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1239 |
msgstr ""
|
1240 |
|
1241 |
# @ subscribe-reloaded
|
1242 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1243 |
msgid "Vote and show your appreciation"
|
1244 |
msgstr "Vote e mostre o seu apreço"
|
1245 |
|
1246 |
# @ subscribe-reloaded
|
1247 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1248 |
msgid ""
|
1249 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1250 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1254 |
"e como é bom. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1255 |
"comments-reloaded/\">Classifique-o</a> em sua página do \"Plugin Directory\"."
|
1256 |
|
1257 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1258 |
msgid "Did you find a Bug on the plugin?"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1262 |
msgid ""
|
1263 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1264 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1360 |
msgid "You have request to manage another email address and this is forbidden."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1364 |
msgid "StCR System"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1368 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1369 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1370 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1371 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1372 |
msgid "You do not have sufficient permissions to access this page."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
# @ subscribe-reloaded
|
1376 |
+
#: utils/stcr_manage.php:726
|
1377 |
msgid "Subscriptions"
|
1378 |
msgstr "Inscrições"
|
1379 |
|
1380 |
+
#: utils/stcr_manage.php:782
|
1381 |
msgid ""
|
1382 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1383 |
msgstr ""
|
1385 |
"oficial"
|
1386 |
|
1387 |
# @ subscribe-reloaded
|
1388 |
+
#: utils/stcr_manage.php:782
|
1389 |
msgid "support forum"
|
1390 |
msgstr "fórum de suporte"
|
1391 |
|
1392 |
+
#: utils/stcr_manage.php:783
|
1393 |
msgid "Feeling generous?"
|
1394 |
msgstr "Sentindo-se generoso(a)?"
|
1395 |
|
1396 |
+
#: utils/stcr_manage.php:783
|
1397 |
msgid "Donate a few bucks!"
|
1398 |
msgstr "Doe alguns trocados!"
|
1399 |
|
1400 |
+
#: utils/stcr_upgrade.php:72
|
1401 |
msgid "Important Notice"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: utils/stcr_upgrade.php:120
|
1405 |
msgid ""
|
1406 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1407 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1409 |
"src=\""
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: utils/stcr_upgrade.php:175
|
1413 |
msgid ""
|
1414 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1415 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1416 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: utils/stcr_upgrade.php:175
|
1420 |
msgid ""
|
1421 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1422 |
"Comments to prevent confusion between the two plugins."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: utils/stcr_upgrade.php:176
|
1426 |
msgid ""
|
1427 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1428 |
"that you want to import, you'll need to import that data manually, as only "
|
1429 |
"one import routine will ever run to prevent data loss."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1433 |
+
#: utils/stcr_upgrade.php:400
|
1434 |
msgid ""
|
1435 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1436 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1438 |
"\"stcr-loading-animation\" src=\""
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: utils/stcr_upgrade.php:250
|
1442 |
msgid ""
|
1443 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1444 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1445 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: utils/stcr_upgrade.php:250
|
1449 |
msgid ""
|
1450 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1451 |
"Notification to prevent confusion between the two plugins."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: utils/stcr_upgrade.php:397
|
1455 |
msgid ""
|
1456 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1457 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1459 |
"Reloaded</strong>."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: utils/stcr_upgrade.php:397
|
1463 |
msgid ""
|
1464 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1465 |
"Subscriptions to prevent confusion between the two plugins."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: utils/stcr_upgrade.php:398
|
1469 |
msgid ""
|
1470 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1471 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1473 |
"ever run to prevent data loss."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: utils/stcr_upgrade.php:399
|
1477 |
msgid ""
|
1478 |
"<strong>Note:</strong> If you were previously using the "
|
1479 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1482 |
"respectively."
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: utils/stcr_upgrade.php:413
|
1486 |
msgid ""
|
1487 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1488 |
msgstr ""
|
1489 |
|
1490 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1491 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1492 |
msgid ""
|
1493 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1494 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: utils/stcr_upgrade.php:415
|
1498 |
msgid ""
|
1499 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1500 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1501 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1502 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1503 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1504 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: utils/stcr_upgrade.php:417
|
1508 |
msgid ""
|
1509 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1510 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1512 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: utils/stcr_upgrade.php:428
|
1516 |
msgid ""
|
1517 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1518 |
"160106."
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: utils/stcr_upgrade.php:429
|
1522 |
msgid ""
|
1523 |
"This version includes many changes and fixes to improve your experience with "
|
1524 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1525 |
"email templates, Subscription Checkbox position, and more!"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1529 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1530 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1531 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1532 |
msgid ""
|
1533 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1534 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1536 |
"class=\"stcr-loading-animation\" src=\""
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: utils/stcr_upgrade.php:443
|
1540 |
msgid ""
|
1541 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1542 |
"160115."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: utils/stcr_upgrade.php:444
|
1546 |
msgid ""
|
1547 |
"This version includes fixes to broken links while managing your subscriptions"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: utils/stcr_upgrade.php:458
|
1551 |
msgid ""
|
1552 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1553 |
"160831"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1557 |
msgid "This version includes fixes to many bugs and also new features, "
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1561 |
msgid ""
|
1562 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1563 |
"address. This will help the subscribers to use the Reply option in their "
|
1564 |
"email agents."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1568 |
msgid ""
|
1569 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1570 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1574 |
msgid ""
|
1575 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1576 |
"without loosing your subscriptions. You can use this option also for reset "
|
1577 |
"all the settings, see the FAQ."
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1581 |
msgid ""
|
1582 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1583 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1584 |
"Post Type."
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1588 |
msgid ""
|
1589 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1590 |
"options to and the management link only by email and not to display it on "
|
1591 |
"the request link page."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: utils/stcr_upgrade.php:480
|
1595 |
msgid ""
|
1596 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1597 |
"160902"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: utils/stcr_upgrade.php:483
|
1601 |
msgid ""
|
1602 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1603 |
"previous 160831 version."
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1607 |
msgid "Settings"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: utils/stcr_upgrade.php:504
|
1611 |
msgid ""
|
1612 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1613 |
"160915"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1617 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1618 |
msgid "This version includes fixes and improvements, "
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: utils/stcr_upgrade.php:508
|
1622 |
msgid ""
|
1623 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1624 |
"dropdown."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: utils/stcr_upgrade.php:509
|
1628 |
msgid ""
|
1629 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1633 |
+
#: utils/stcr_upgrade.php:576
|
1634 |
msgid "Log Settings"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1638 |
+
#: utils/stcr_upgrade.php:580
|
1639 |
msgid ""
|
1640 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: utils/stcr_upgrade.php:529
|
1644 |
msgid ""
|
1645 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1646 |
"enable."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: utils/stcr_upgrade.php:530
|
1650 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1654 |
+
#: utils/stcr_upgrade.php:590
|
1655 |
msgid "The support of this plugin is given thanks to your donations."
|
1656 |
msgstr ""
|
1657 |
|
1658 |
+
#: utils/stcr_upgrade.php:536
|
1659 |
msgid ""
|
1660 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1661 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1665 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: utils/stcr_upgrade.php:557
|
1669 |
msgid ""
|
1670 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1671 |
"installation regarding a database table creation."
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: utils/stcr_upgrade.php:558
|
1675 |
msgid ""
|
1676 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1677 |
"Awesome."
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: utils/stcr_upgrade.php:563
|
1681 |
msgid ""
|
1682 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1683 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1688 |
"for the users that have supported the plugin development."
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: utils/stcr_upgrade.php:584
|
1692 |
+
msgid ""
|
1693 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1694 |
+
"issues."
|
1695 |
+
msgstr ""
|
1696 |
+
|
1697 |
+
#: utils/stcr_upgrade.php:585
|
1698 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1699 |
+
msgstr ""
|
1700 |
+
|
1701 |
+
#: utils/stcr_upgrade.php:586
|
1702 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1703 |
+
msgstr ""
|
1704 |
+
|
1705 |
+
#: utils/stcr_upgrade.php:591
|
1706 |
+
msgid ""
|
1707 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1708 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1709 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1710 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1711 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1712 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1713 |
+
"Thanks for all the users that have supported the plugin development."
|
1714 |
+
msgstr ""
|
1715 |
+
|
1716 |
+
# @ subscribe-reloaded
|
1717 |
+
#: utils/stcr_utils.php:196
|
1718 |
+
msgid ""
|
1719 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1720 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1721 |
+
msgstr ""
|
1722 |
+
"Notifique-me de novos comentários via e-mail. Você também pode <a "
|
1723 |
+
"href='[subscribe_link]'>se inscrever</a> sem comentar."
|
1724 |
+
|
1725 |
+
# @ subscribe-reloaded
|
1726 |
+
#: utils/stcr_utils.php:197
|
1727 |
+
msgid ""
|
1728 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1729 |
+
"subscriptions."
|
1730 |
+
msgstr ""
|
1731 |
+
"Você está inscrito neste post. <a href='[manager_link]'>Gerencie</a> suas "
|
1732 |
+
"inscrições."
|
1733 |
+
|
1734 |
+
# @ subscribe-reloaded
|
1735 |
+
#: utils/stcr_utils.php:198
|
1736 |
+
msgid ""
|
1737 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1738 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1739 |
+
msgstr ""
|
1740 |
+
"A sua inscrição para este post deve ser confirmada. <a "
|
1741 |
+
"href='[manager_link]'>Gerencie as suas inscrições</a>."
|
1742 |
+
|
1743 |
+
# @ subscribe-reloaded
|
1744 |
+
#: utils/stcr_utils.php:199
|
1745 |
+
msgid ""
|
1746 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1747 |
+
msgstr ""
|
1748 |
+
"Você pode <a href='[manager_link]'>gerenciar as inscrições</a> deste post."
|
1749 |
+
|
1750 |
+
# @ subscribe-reloaded
|
1751 |
+
#: utils/stcr_utils.php:205
|
1752 |
+
msgid ""
|
1753 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1754 |
+
"will send you a message containing the link to access your personal "
|
1755 |
+
"management page."
|
1756 |
+
msgstr ""
|
1757 |
+
"Para gerenciar suas inscrições, digite o seu endereço de e-mail aqui em "
|
1758 |
+
"baixo. Nós lhe enviaremos uma mensagem contendo o link para acessar sua "
|
1759 |
+
"página pessoal de gerenciamento."
|
1760 |
+
|
1761 |
+
# @ subscribe-reloaded
|
1762 |
+
#: utils/stcr_utils.php:206
|
1763 |
+
msgid ""
|
1764 |
+
"Thank you for using our subscription service. Your request has been "
|
1765 |
+
"completed, and you should receive an email with the management link in a few "
|
1766 |
+
"minutes."
|
1767 |
+
msgstr ""
|
1768 |
+
"Obrigado por usar nosso serviço de inscrições. Seu pedido foi concluído, e "
|
1769 |
+
"você deverá receber um email com o link de gerenciamento em poucos minutos."
|
1770 |
+
|
1771 |
+
# @ subscribe-reloaded
|
1772 |
+
#: utils/stcr_utils.php:207
|
1773 |
+
msgid ""
|
1774 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1775 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1776 |
+
"form here below and you're all set."
|
1777 |
+
msgstr ""
|
1778 |
+
"Você pode acompanhar a discussão sobre <strong>[post_title]</strong> sem ter "
|
1779 |
+
"que deixar um comentário. Legal, não? Basta digitar seu endereço de e-mail "
|
1780 |
+
"no formulário abaixo."
|
1781 |
+
|
1782 |
+
# @ subscribe-reloaded
|
1783 |
+
#: utils/stcr_utils.php:208
|
1784 |
+
msgid ""
|
1785 |
+
"Thank you for using our subscription service. Your request has been "
|
1786 |
+
"completed. You will receive a notification email every time a new comment to "
|
1787 |
+
"this article is approved and posted by the administrator."
|
1788 |
+
msgstr ""
|
1789 |
+
"Obrigado por usar nosso serviço de inscrições. Seu pedido foi concluído. "
|
1790 |
+
"Você receberá um e-mail de notificação toda vez que um novo comentário a "
|
1791 |
+
"este artigo for aprovado e publicado pelo administrador."
|
1792 |
+
|
1793 |
+
# @ subscribe-reloaded
|
1794 |
+
#: utils/stcr_utils.php:209
|
1795 |
+
msgid ""
|
1796 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1797 |
+
"request, please check your email for the verification message and follow the "
|
1798 |
+
"instructions."
|
1799 |
+
msgstr ""
|
1800 |
+
"Obrigado por usar nosso serviço de inscrições. Para confirmar o seu pedido, "
|
1801 |
+
"verifique seu e-mail para a mensagem de confirmação e siga as instruções."
|
1802 |
+
|
1803 |
+
# @ subscribe-reloaded
|
1804 |
+
#: utils/stcr_utils.php:210
|
1805 |
+
msgid ""
|
1806 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1807 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1808 |
+
msgstr ""
|
1809 |
+
"A fim de cancelar ou suspender uma ou mais notificações, selecione a opção "
|
1810 |
+
"correspondente (s) e clique no botão no final da lista."
|
1811 |
+
|
1812 |
+
# @ subscribe-reloaded
|
1813 |
+
#: utils/stcr_utils.php:211
|
1814 |
+
msgid ""
|
1815 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1816 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1817 |
+
"You are currently subscribed to:"
|
1818 |
+
msgstr ""
|
1819 |
+
"A fim de cancelar ou suspender uma ou mais notificações, selecione a opção "
|
1820 |
+
"correspondente (s) e clique no botão no final da lista. Você está inscrito "
|
1821 |
+
"em:"
|
1822 |
+
|
1823 |
+
# @ subscribe-reloaded
|
1824 |
+
#: utils/stcr_utils.php:215
|
1825 |
+
msgid "There is a new comment to [post_title]"
|
1826 |
+
msgstr "Há um novo comentário para [post_title]"
|
1827 |
+
|
1828 |
+
#: utils/stcr_utils.php:216
|
1829 |
+
msgid ""
|
1830 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1831 |
+
"\n"
|
1832 |
+
"<hr />\n"
|
1833 |
+
"<strong>Comment link:</strong> <a href="
|
1834 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1835 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1836 |
+
"\n"
|
1837 |
+
"<strong>Comment:</strong>\n"
|
1838 |
+
"[comment_content]\n"
|
1839 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1840 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1841 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1842 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1843 |
+
msgstr ""
|
1844 |
+
|
1845 |
# @ subscribe-reloaded
|
1846 |
+
#: utils/stcr_utils.php:217
|
1847 |
+
msgid "Please confirm your subscription to [post_title]"
|
1848 |
+
msgstr "Por favor, confirme sua inscrição para [post_title]"
|
1849 |
+
|
1850 |
+
# @ subscribe-reloaded
|
1851 |
+
#: utils/stcr_utils.php:218
|
1852 |
+
#, fuzzy
|
1853 |
+
#| msgid ""
|
1854 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1855 |
+
#| "[post_permalink]\n"
|
1856 |
+
#| "\n"
|
1857 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1858 |
+
#| "[confirm_link]"
|
1859 |
+
msgid ""
|
1860 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1861 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1862 |
+
"\n"
|
1863 |
+
"Please confirm your request by clicking on this link:\n"
|
1864 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1865 |
+
msgstr ""
|
1866 |
+
"Você pediu para ser notificado sempre que um novo comentário é adicionado "
|
1867 |
+
"a:\n"
|
1868 |
+
"[post_permalink]\n"
|
1869 |
+
"\n"
|
1870 |
+
"Por favor, confirme seu pedido clicando neste link:\n"
|
1871 |
+
"[confirm_link]"
|
1872 |
+
|
1873 |
+
# @ subscribe-reloaded
|
1874 |
+
#: utils/stcr_utils.php:219
|
1875 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1876 |
+
msgstr "Gerenciar as suas inscrições em [blog_name]"
|
1877 |
+
|
1878 |
+
#: utils/stcr_utils.php:220
|
1879 |
+
msgid ""
|
1880 |
+
"You have requested to manage your subscriptions to the articles on "
|
1881 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1882 |
+
msgstr ""
|
1883 |
+
|
1884 |
+
# @ subscribe-reloaded
|
1885 |
+
#: utils/stcr_utils.php:221
|
1886 |
+
#, fuzzy
|
1887 |
+
#| msgid ""
|
1888 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1889 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1890 |
+
#| "[manager_link]"
|
1891 |
+
msgid ""
|
1892 |
+
"You have requested to manage your subscriptions to the articles on "
|
1893 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1894 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1895 |
+
msgstr ""
|
1896 |
+
"Você pediu para gerenciar suas inscrições para os artigos no blog "
|
1897 |
+
"[blog_name]. Siga este link para acessar sua página pessoal de inscrições:\n"
|
1898 |
+
"[manager_link]"
|
1899 |
+
|
1900 |
+
# @ subscribe-reloaded
|
1901 |
+
#: utils/stcr_utils.php:300
|
1902 |
msgid "StCR Notification"
|
1903 |
msgstr "Notificações"
|
1904 |
|
1910 |
msgid "All"
|
1911 |
msgstr "Todos os comentários"
|
1912 |
|
1913 |
+
#~ msgid "Support the developers"
|
1914 |
+
#~ msgstr "Suporte o autor"
|
1915 |
+
|
1916 |
+
# @ subscribe-reloaded
|
1917 |
+
#~ msgid "Don't want to donate? You can still help"
|
1918 |
+
#~ msgstr "Não quer doar? Você ainda pode ajudar"
|
1919 |
+
|
1920 |
+
# @ subscribe-reloaded
|
1921 |
+
#~ msgid ""
|
1922 |
+
#~ "There is a new comment to [post_title].\n"
|
1923 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1924 |
+
#~ "Author: [comment_author]\n"
|
1925 |
+
#~ "Comment:\n"
|
1926 |
+
#~ "[comment_content]\n"
|
1927 |
+
#~ "Permalink: [post_permalink]\n"
|
1928 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1929 |
+
#~ msgstr ""
|
1930 |
+
#~ "Há um novo comentário para [post_title].\n"
|
1931 |
+
#~ "Link do Comentáro: [comment_permalink]\n"
|
1932 |
+
#~ "Autor: [comment_author]\n"
|
1933 |
+
#~ "Comentário:\n"
|
1934 |
+
#~ "[comment_content]\n"
|
1935 |
+
#~ "Permalink: [post_permalink]\n"
|
1936 |
+
#~ "Gerencie suas inscrições: [manager_link]"
|
1937 |
+
|
1938 |
# @ subscribe-reloaded
|
1939 |
#~ msgid ""
|
1940 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: Sérgio Martins <inove@live.com.pt>\n"
|
9 |
"Language: pt_PT\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -15,46 +15,42 @@ msgstr ""
|
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
-
"X-Generator: Poedit
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ subscribe-reloaded
|
22 |
-
#: options/index.php:
|
23 |
-
#: utils/
|
24 |
msgid "Manage subscriptions"
|
25 |
msgstr "Gerir Subscrições"
|
26 |
|
27 |
# @ subscribe-reloaded
|
28 |
-
#: options/index.php:
|
29 |
msgid "Comment Form"
|
30 |
msgstr "Formulário de resposta"
|
31 |
|
32 |
# @ subscribe-reloaded
|
33 |
-
#: options/index.php:
|
34 |
msgid "Management Page"
|
35 |
msgstr "Página de gestão"
|
36 |
|
37 |
# @ subscribe-reloaded
|
38 |
-
#: options/index.php:
|
39 |
msgid "Notifications"
|
40 |
msgstr "Assunto da notificação"
|
41 |
|
42 |
# @ subscribe-reloaded
|
43 |
-
#: options/index.php:
|
44 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
45 |
msgid "Options"
|
46 |
msgstr "Opções"
|
47 |
|
48 |
-
#: options/index.php:65 utils/stcr_manage.php:453 utils/stcr_manage.php:454
|
49 |
-
msgid "You can help"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
# @ subscribe-reloaded
|
53 |
-
#: options/index.php:
|
54 |
msgid "Support"
|
55 |
msgstr "Suporte"
|
56 |
|
57 |
-
#: options/index.php:
|
58 |
msgid "Donate"
|
59 |
msgstr ""
|
60 |
|
@@ -393,100 +389,100 @@ msgstr "Atualizar assinaturas"
|
|
393 |
msgid "Sorry, no subscriptions match your search criteria."
|
394 |
msgstr "Desculpe, nenhuma subscrição foi encontrada para"
|
395 |
|
396 |
-
#: options/panel10.php:
|
397 |
msgid "The log file has been successfully deleted."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: options/panel10.php:
|
401 |
msgid "Can't delete the log file, check the file permissions."
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: options/panel10.php:
|
405 |
msgid "The log file does not exists."
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: options/panel10.php:
|
409 |
msgid "Enable Log Information"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: options/panel10.php:
|
413 |
msgid "Enable Auto clean log data"
|
414 |
msgstr ""
|
415 |
|
416 |
# @ subscribe-reloaded
|
417 |
-
#: options/panel10.php:
|
418 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
419 |
msgid "Your settings have been successfully updated."
|
420 |
msgstr "As suas configurações foram atualizadas"
|
421 |
|
422 |
# @ subscribe-reloaded
|
423 |
-
#: options/panel10.php:
|
424 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
425 |
msgid "There was an error updating the following fields:"
|
426 |
msgstr "Houve um erro ao atualizar os seguintes campos:"
|
427 |
|
428 |
# @ subscribe-reloaded
|
429 |
-
#: options/panel10.php:
|
430 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
431 |
-
#: options/panel5.php:
|
432 |
-
#: options/panel5.php:
|
433 |
-
#: options/panel5.php:
|
434 |
-
#: options/panel5.php:
|
435 |
msgid "Yes"
|
436 |
msgstr "Sim"
|
437 |
|
438 |
# @ subscribe-reloaded
|
439 |
-
#: options/panel10.php:
|
440 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
441 |
-
#: options/panel5.php:
|
442 |
-
#: options/panel5.php:
|
443 |
-
#: options/panel5.php:
|
444 |
-
#: options/panel5.php:
|
445 |
msgid "No"
|
446 |
msgstr "Não"
|
447 |
|
448 |
-
#: options/panel10.php:
|
449 |
msgid ""
|
450 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
451 |
"purposes."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: options/panel10.php:
|
455 |
msgid "Hourly"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: options/panel10.php:
|
459 |
msgid "Twice Daily"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: options/panel10.php:
|
463 |
msgid "Daily"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: options/panel10.php:
|
467 |
msgid "If enabled, StCR will auto clean your information every day."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: options/panel10.php:
|
471 |
msgid "Clean Up Log Archive"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: options/panel10.php:
|
475 |
msgid ""
|
476 |
"If you want to clean up the log archive please click the following button"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: options/panel10.php:
|
480 |
msgid "Clean"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: options/panel10.php:
|
484 |
msgid "System Information"
|
485 |
msgstr ""
|
486 |
|
487 |
# @ default
|
488 |
-
#: options/panel10.php:
|
489 |
-
#: options/panel4.php:283 options/panel5.php:
|
490 |
msgid "Save Changes"
|
491 |
msgstr "Guardar Alterações"
|
492 |
|
@@ -875,7 +871,7 @@ msgstr ""
|
|
875 |
#: options/panel4.php:128
|
876 |
msgid ""
|
877 |
"This will be use when the user click reply on their email agent. If not set "
|
878 |
-
"will be the same as the Sender email address."
|
879 |
msgstr ""
|
880 |
|
881 |
# @ subscribe-reloaded
|
@@ -892,8 +888,8 @@ msgstr ""
|
|
892 |
|
893 |
#: options/panel4.php:171
|
894 |
msgid ""
|
895 |
-
"<p><strong>Note: To get a default template clear
|
896 |
-
"the options.</strong></p>"
|
897 |
msgstr ""
|
898 |
|
899 |
# @ subscribe-reloaded
|
@@ -944,86 +940,104 @@ msgid ""
|
|
944 |
"[blog_name]"
|
945 |
msgstr "Assunto do Email de confirmação. Tags permitidas: [post_title]"
|
946 |
|
947 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
948 |
msgid "Show StCR checkbox / dropdown"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: options/panel5.php:
|
952 |
msgid "Safetly Uninstall"
|
953 |
msgstr ""
|
954 |
|
955 |
# @ subscribe-reloaded
|
956 |
-
#: options/panel5.php:
|
957 |
msgid "Autopurge requests"
|
958 |
msgstr "Pedidos de auto remoção"
|
959 |
|
960 |
# @ subscribe-reloaded
|
961 |
-
#: options/panel5.php:
|
962 |
msgid "Enable double check"
|
963 |
msgstr "Ativar confirmação"
|
964 |
|
965 |
-
#: options/panel5.php:
|
966 |
msgid "StCR Position"
|
967 |
msgstr ""
|
968 |
|
969 |
# @ subscribe-reloaded
|
970 |
-
#: options/panel5.php:
|
971 |
msgid "Subscribe authors"
|
972 |
msgstr "Subscrito"
|
973 |
|
974 |
-
#: options/panel5.php:
|
975 |
msgid "Enable HTML emails"
|
976 |
msgstr "Ativar e-mails com HTML"
|
977 |
|
978 |
-
#: options/panel5.php:
|
979 |
msgid "HTMLify Links in HTML emails"
|
980 |
msgstr ""
|
981 |
|
982 |
# @ subscribe-reloaded
|
983 |
-
#: options/panel5.php:
|
984 |
msgid "Send trackbacks"
|
985 |
msgstr "Enviar trackbacks"
|
986 |
|
987 |
# @ subscribe-reloaded
|
988 |
-
#: options/panel5.php:
|
989 |
msgid "Notify admin"
|
990 |
msgstr "Notificar Administrador"
|
991 |
|
992 |
-
#: options/panel5.php:
|
993 |
msgid "Let admin subscribe"
|
994 |
msgstr "Permitir subscrições do Administrador"
|
995 |
|
996 |
# @ subscribe-reloaded
|
997 |
-
#: options/panel5.php:
|
998 |
msgid "BCC admin on Notifications"
|
999 |
msgstr "Assunto da notificação"
|
1000 |
|
1001 |
-
#: options/panel5.php:
|
1002 |
msgid "Enable Font Awesome"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
1006 |
msgid ""
|
1007 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
1008 |
"You should leave it to Yes always. "
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: options/panel5.php:
|
1012 |
msgid "Safely Uninstall"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: options/panel5.php:
|
1016 |
msgid ""
|
1017 |
"This option will allow you to delete the plugin with WordPress without "
|
1018 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: options/panel5.php:
|
1022 |
msgid "days"
|
1023 |
msgstr "dias"
|
1024 |
|
1025 |
# @ subscribe-reloaded
|
1026 |
-
#: options/panel5.php:
|
1027 |
msgid ""
|
1028 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
1029 |
"this feature."
|
@@ -1031,7 +1045,7 @@ msgstr ""
|
|
1031 |
"Excluir assinaturas pendentes (não confirmada) após X dias. Zero desativa "
|
1032 |
"este recurso."
|
1033 |
|
1034 |
-
#: options/panel5.php:
|
1035 |
msgid ""
|
1036 |
"If this option is enable the subscription box will be above the submit "
|
1037 |
"button in your comment form. Use this when your theme is outdated and using "
|
@@ -1039,7 +1053,7 @@ msgid ""
|
|
1039 |
msgstr ""
|
1040 |
|
1041 |
# @ subscribe-reloaded
|
1042 |
-
#: options/panel5.php:
|
1043 |
msgid ""
|
1044 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
1045 |
"misuse)."
|
@@ -1047,12 +1061,12 @@ msgstr ""
|
|
1047 |
"Enviar um e-mail de notificação para confirmar a inscrição (para evitar "
|
1048 |
"abusos de endereços)."
|
1049 |
|
1050 |
-
#: options/panel5.php:
|
1051 |
msgid ""
|
1052 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: options/panel5.php:
|
1056 |
msgid ""
|
1057 |
"If enabled, will send email messages with content-type = text/html instead "
|
1058 |
"of text/plain"
|
@@ -1060,23 +1074,23 @@ msgstr ""
|
|
1060 |
"Se ativado envia mensagens de e-mail com o content-type = text/html, em vez "
|
1061 |
"de text/plain"
|
1062 |
|
1063 |
-
#: options/panel5.php:
|
1064 |
msgid "HTMLify links in emails"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: options/panel5.php:
|
1068 |
msgid ""
|
1069 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
1070 |
"</a></code> (only when HTML emails enabled)."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
# @ subscribe-reloaded
|
1074 |
-
#: options/panel5.php:
|
1075 |
msgid "Process trackbacks"
|
1076 |
msgstr "Enviar trackbacks"
|
1077 |
|
1078 |
# @ subscribe-reloaded
|
1079 |
-
#: options/panel5.php:
|
1080 |
msgid ""
|
1081 |
"Notify users when a new trackback or pingback is added to the discussion."
|
1082 |
msgstr ""
|
@@ -1084,61 +1098,85 @@ msgstr ""
|
|
1084 |
"acrescentado à discussão."
|
1085 |
|
1086 |
# @ subscribe-reloaded
|
1087 |
-
#: options/panel5.php:
|
1088 |
msgid "Track all subscriptions"
|
1089 |
msgstr "Seguir todas as assinaturas"
|
1090 |
|
1091 |
# @ subscribe-reloaded
|
1092 |
-
#: options/panel5.php:
|
1093 |
msgid "Notify the administrator when users subscribe without commenting."
|
1094 |
msgstr ""
|
1095 |
"Notificar o administrador quando os utilizadores se inscreverem sem comentar."
|
1096 |
|
1097 |
# @ subscribe-reloaded
|
1098 |
-
#: options/panel5.php:
|
1099 |
msgid "Let the administrator subscribe to comments when logged in."
|
1100 |
msgstr ""
|
1101 |
"Deixe o administrador inscrever-se em comentários, quando estiver iniciado "
|
1102 |
"sessão."
|
1103 |
|
1104 |
-
#: options/panel5.php:
|
1105 |
msgid "Send a copy of all Notifications to the administrator."
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: options/panel5.php:
|
1109 |
msgid ""
|
1110 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1111 |
"you theme already add this into your site."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: options/panel5.php:
|
1115 |
msgid "StCR Unique Key"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: options/panel5.php:
|
1119 |
msgid "This Unique Key is not set, please click the following button to "
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: options/panel5.php:
|
1123 |
msgid "Generate"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: options/panel5.php:
|
1127 |
msgid ""
|
1128 |
"This Unique Key will be use to send the notification to your subscribers "
|
1129 |
"with more security."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: options/
|
1133 |
-
msgid "
|
1134 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1135 |
|
1136 |
# @ subscribe-reloaded
|
1137 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1138 |
msgid ""
|
1139 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1140 |
"consider supporting the author if this plugin made your web site better, "
|
1141 |
-
"especially if you are making money out of it
|
|
|
1142 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1143 |
"strong>, and to buy some food for my hungry family."
|
1144 |
msgstr ""
|
@@ -1150,19 +1188,28 @@ msgstr ""
|
|
1150 |
"família com fome."
|
1151 |
|
1152 |
# @ subscribe-reloaded
|
1153 |
-
#: options/panel7.php:
|
1154 |
-
|
|
|
|
|
1155 |
msgstr "Não quer doar? Você ainda pode ajudar"
|
1156 |
|
1157 |
# @ subscribe-reloaded
|
1158 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1159 |
msgid ""
|
1160 |
-
"
|
1161 |
-
"
|
1162 |
-
"
|
1163 |
-
"
|
1164 |
-
"
|
1165 |
-
"you do, thanks for using my plugin!"
|
1166 |
msgstr ""
|
1167 |
"Se não quiser doar dinheiro, por favor, considere falar sobre o meu plugin "
|
1168 |
"com um link para o plugin da página. Por favor, deixe que os seus leitores "
|
@@ -1172,11 +1219,11 @@ msgstr ""
|
|
1172 |
"fizer, obrigado por usar o meu plugin!"
|
1173 |
|
1174 |
# @ subscribe-reloaded
|
1175 |
-
#: options/panel7.php:
|
1176 |
msgid "Subscribe to the Beta testers"
|
1177 |
msgstr "Subscrito"
|
1178 |
|
1179 |
-
#: options/panel7.php:
|
1180 |
msgid ""
|
1181 |
"Before a new Update we release a Beta version so that our current users can "
|
1182 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1185,12 +1232,12 @@ msgid ""
|
|
1185 |
msgstr ""
|
1186 |
|
1187 |
# @ subscribe-reloaded
|
1188 |
-
#: options/panel7.php:
|
1189 |
msgid "Vote and show your appreciation"
|
1190 |
msgstr "Vote e mostre o seu apreço"
|
1191 |
|
1192 |
# @ subscribe-reloaded
|
1193 |
-
#: options/panel7.php:
|
1194 |
msgid ""
|
1195 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1196 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1201,11 +1248,11 @@ msgstr ""
|
|
1201 |
"subscribe-to-comments-reloaded/\\\">Classifique-o</a> na sua página wm \\"
|
1202 |
"\"Plugin Directory\\\"."
|
1203 |
|
1204 |
-
#: options/panel8.php:
|
1205 |
msgid "Did you find a Bug on the plugin?"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: options/panel8.php:
|
1209 |
msgid ""
|
1210 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1211 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1307,196 +1354,24 @@ msgstr ""
|
|
1307 |
msgid "You have request to manage another email address and this is forbidden."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
|
1311 |
-
#: utils/stcr_manage.php:223
|
1312 |
-
msgid ""
|
1313 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1314 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1315 |
-
msgstr ""
|
1316 |
-
"Notifique-me de novos comentários via Email. Também pode <a "
|
1317 |
-
"href='[subscribe_link]'>se inscrever</a> sem comentar."
|
1318 |
-
|
1319 |
-
# @ subscribe-reloaded
|
1320 |
-
#: utils/stcr_manage.php:224
|
1321 |
-
msgid ""
|
1322 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1323 |
-
"subscriptions."
|
1324 |
-
msgstr ""
|
1325 |
-
"Está inscrito para esta entrada. <a href='[manager_link]'>Gerir</a> suas "
|
1326 |
-
"subscrições."
|
1327 |
-
|
1328 |
-
# @ subscribe-reloaded
|
1329 |
-
#: utils/stcr_manage.php:225
|
1330 |
-
msgid ""
|
1331 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1332 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1333 |
-
msgstr ""
|
1334 |
-
"A sua subscrição para esta entrada deve ser confirmada. <a "
|
1335 |
-
"href='[manager_link]'>Gerir as suas subscrições</a> ."
|
1336 |
-
|
1337 |
-
# @ subscribe-reloaded
|
1338 |
-
#: utils/stcr_manage.php:226
|
1339 |
-
msgid ""
|
1340 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1341 |
-
msgstr "Pode <a href='[manager_link]'>gerir as subscrições</a> desta entrada."
|
1342 |
-
|
1343 |
-
# @ subscribe-reloaded
|
1344 |
-
#: utils/stcr_manage.php:232
|
1345 |
-
msgid ""
|
1346 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1347 |
-
"will send you a message containing the link to access your personal "
|
1348 |
-
"management page."
|
1349 |
-
msgstr ""
|
1350 |
-
"Para gerir as suas subscrições, digite o seu endereço de e-mail aqui em "
|
1351 |
-
"baixo. Nós enviaremos-lhe uma mensagem contendo o link para aceder à sua "
|
1352 |
-
"página de gestão pessoal."
|
1353 |
-
|
1354 |
-
# @ subscribe-reloaded
|
1355 |
-
#: utils/stcr_manage.php:233
|
1356 |
-
msgid ""
|
1357 |
-
"Thank you for using our subscription service. Your request has been "
|
1358 |
-
"completed, and you should receive an email with the management link in a few "
|
1359 |
-
"minutes."
|
1360 |
-
msgstr ""
|
1361 |
-
"Obrigado por usar nosso serviço de Subscrição. Seu pedido foi concluído, "
|
1362 |
-
"deverá receber dentro de minutos um Email com o link de gestão."
|
1363 |
-
|
1364 |
-
# @ subscribe-reloaded
|
1365 |
-
#: utils/stcr_manage.php:234
|
1366 |
-
msgid ""
|
1367 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1368 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1369 |
-
"form here below and you're all set."
|
1370 |
-
msgstr ""
|
1371 |
-
"Pode acompanhar a discussão sobre <strong>[post_title]</strong> sem ter que "
|
1372 |
-
"deixar um comentário. Basta digitar seu endereço de Email no formulário "
|
1373 |
-
"abaixo."
|
1374 |
-
|
1375 |
-
# @ subscribe-reloaded
|
1376 |
-
#: utils/stcr_manage.php:235
|
1377 |
-
msgid ""
|
1378 |
-
"Thank you for using our subscription service. Your request has been "
|
1379 |
-
"completed. You will receive a notification email every time a new comment to "
|
1380 |
-
"this article is approved and posted by the administrator."
|
1381 |
-
msgstr ""
|
1382 |
-
"Obrigado por usar nosso serviço de Subscrição. Seu pedido foi concluído. "
|
1383 |
-
"Receberá agora um Email de notificação sempre que um novo comentário a este "
|
1384 |
-
"artigo for aprovado e publicado pelo administrador."
|
1385 |
-
|
1386 |
-
# @ subscribe-reloaded
|
1387 |
-
#: utils/stcr_manage.php:236
|
1388 |
-
msgid ""
|
1389 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1390 |
-
"request, please check your email for the verification message and follow the "
|
1391 |
-
"instructions."
|
1392 |
-
msgstr ""
|
1393 |
-
"Obrigado por usar nosso serviço de Subscrição. Para confirmar o seu pedido, "
|
1394 |
-
"verifique o seu Email para a mensagem de confirmação e siga as instruções."
|
1395 |
-
|
1396 |
-
# @ subscribe-reloaded
|
1397 |
-
#: utils/stcr_manage.php:237
|
1398 |
-
msgid ""
|
1399 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1400 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1401 |
-
msgstr ""
|
1402 |
-
"A fim de cancelar ou suspender uma ou mais subscrições, selecione a opção "
|
1403 |
-
"correspondente (s) e clique no botão no final da lista."
|
1404 |
-
|
1405 |
-
# @ subscribe-reloaded
|
1406 |
-
#: utils/stcr_manage.php:238
|
1407 |
-
msgid ""
|
1408 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1409 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1410 |
-
"You are currently subscribed to:"
|
1411 |
-
msgstr ""
|
1412 |
-
"A fim de cancelar ou suspender uma ou mais subscrições, selecione a opção "
|
1413 |
-
"correspondente (s) e clique no botão no final da lista. Você está inscrito "
|
1414 |
-
"em:"
|
1415 |
-
|
1416 |
-
# @ subscribe-reloaded
|
1417 |
-
#: utils/stcr_manage.php:242
|
1418 |
-
msgid "There is a new comment to [post_title]"
|
1419 |
-
msgstr "Há um novo comentário para: [post_title]"
|
1420 |
-
|
1421 |
-
# @ subscribe-reloaded
|
1422 |
-
#: utils/stcr_manage.php:243
|
1423 |
-
msgid ""
|
1424 |
-
"There is a new comment to [post_title].\n"
|
1425 |
-
"Comment Link: [comment_permalink]\n"
|
1426 |
-
"Author: [comment_author]\n"
|
1427 |
-
"Comment:\n"
|
1428 |
-
"[comment_content]\n"
|
1429 |
-
"Permalink: [post_permalink]\n"
|
1430 |
-
"Manage your subscriptions: [manager_link]"
|
1431 |
-
msgstr ""
|
1432 |
-
"Há um novo comentário para: [post_title].\n"
|
1433 |
-
"Link do Comentáro: [comment_permalink]\n"
|
1434 |
-
"Autor: [comment_author]\n"
|
1435 |
-
"Comentário:\n"
|
1436 |
-
"[comment_content]\n"
|
1437 |
-
"Link Permanente: [post_permalink]\n"
|
1438 |
-
"Gerir as suas subscrições: [manager_link]"
|
1439 |
-
|
1440 |
-
# @ subscribe-reloaded
|
1441 |
-
#: utils/stcr_manage.php:244
|
1442 |
-
msgid "Please confirm your subscription to [post_title]"
|
1443 |
-
msgstr "Por favor, confirme sua subscrição da página [post_title]"
|
1444 |
-
|
1445 |
-
# @ subscribe-reloaded
|
1446 |
-
#: utils/stcr_manage.php:245
|
1447 |
-
msgid ""
|
1448 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1449 |
-
"[post_permalink]\n"
|
1450 |
-
"\n"
|
1451 |
-
"Please confirm your request by clicking on this link:\n"
|
1452 |
-
"[confirm_link]"
|
1453 |
-
msgstr ""
|
1454 |
-
"Pediu para ser notificado sempre que um novo comentário é adicionado a:\n"
|
1455 |
-
"[post_permalink]\n"
|
1456 |
-
"\n"
|
1457 |
-
"Por favor, confirme seu pedido clicando neste link:\n"
|
1458 |
-
"[confirm_link]"
|
1459 |
-
|
1460 |
-
# @ subscribe-reloaded
|
1461 |
-
#: utils/stcr_manage.php:246
|
1462 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1463 |
-
msgstr "Gerir as suas subscrições no Site [blog_name]"
|
1464 |
-
|
1465 |
-
#: utils/stcr_manage.php:247
|
1466 |
-
msgid ""
|
1467 |
-
"You have requested to manage your subscriptions to the articles on "
|
1468 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1469 |
-
msgstr ""
|
1470 |
-
|
1471 |
-
# @ subscribe-reloaded
|
1472 |
-
#: utils/stcr_manage.php:248
|
1473 |
-
msgid ""
|
1474 |
-
"You have requested to manage your subscriptions to the articles on "
|
1475 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1476 |
-
"[manager_link]"
|
1477 |
-
msgstr ""
|
1478 |
-
"Pediu para gerir suas subscrições para os artigos no Site [blog_name]. Siga "
|
1479 |
-
"este link para aceder à sua página pessoal de subscrições:\n"
|
1480 |
-
"[manager_link]"
|
1481 |
-
|
1482 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1483 |
msgid "StCR System"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: utils/stcr_manage.php:
|
1487 |
-
#: utils/stcr_manage.php:
|
1488 |
-
#: utils/stcr_manage.php:
|
1489 |
-
#: utils/stcr_manage.php:
|
1490 |
-
#: utils/stcr_manage.php:
|
1491 |
msgid "You do not have sufficient permissions to access this page."
|
1492 |
msgstr ""
|
1493 |
|
1494 |
# @ subscribe-reloaded
|
1495 |
-
#: utils/stcr_manage.php:
|
1496 |
msgid "Subscriptions"
|
1497 |
msgstr "Gerir Subscrições"
|
1498 |
|
1499 |
-
#: utils/stcr_manage.php:
|
1500 |
msgid ""
|
1501 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1502 |
msgstr ""
|
@@ -1504,23 +1379,23 @@ msgstr ""
|
|
1504 |
"o oficial"
|
1505 |
|
1506 |
# @ subscribe-reloaded
|
1507 |
-
#: utils/stcr_manage.php:
|
1508 |
msgid "support forum"
|
1509 |
msgstr "Fórum de Suporte"
|
1510 |
|
1511 |
-
#: utils/stcr_manage.php:
|
1512 |
msgid "Feeling generous?"
|
1513 |
msgstr "Sentindo-se generoso(a)?"
|
1514 |
|
1515 |
-
#: utils/stcr_manage.php:
|
1516 |
msgid "Donate a few bucks!"
|
1517 |
msgstr "Doe alguns trocados!"
|
1518 |
|
1519 |
-
#: utils/stcr_upgrade.php:
|
1520 |
msgid "Important Notice"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: utils/stcr_upgrade.php:
|
1524 |
msgid ""
|
1525 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1526 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1528,28 +1403,28 @@ msgid ""
|
|
1528 |
"src=\""
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: utils/stcr_upgrade.php:
|
1532 |
msgid ""
|
1533 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1534 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1535 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: utils/stcr_upgrade.php:
|
1539 |
msgid ""
|
1540 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1541 |
"Comments to prevent confusion between the two plugins."
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: utils/stcr_upgrade.php:
|
1545 |
msgid ""
|
1546 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1547 |
"that you want to import, you'll need to import that data manually, as only "
|
1548 |
"one import routine will ever run to prevent data loss."
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: utils/stcr_upgrade.php:
|
1552 |
-
#: utils/stcr_upgrade.php:
|
1553 |
msgid ""
|
1554 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1555 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1557,20 +1432,20 @@ msgid ""
|
|
1557 |
"\"stcr-loading-animation\" src=\""
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: utils/stcr_upgrade.php:
|
1561 |
msgid ""
|
1562 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1563 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1564 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: utils/stcr_upgrade.php:
|
1568 |
msgid ""
|
1569 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1570 |
"Notification to prevent confusion between the two plugins."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: utils/stcr_upgrade.php:
|
1574 |
msgid ""
|
1575 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1576 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1578,13 +1453,13 @@ msgid ""
|
|
1578 |
"Reloaded</strong>."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: utils/stcr_upgrade.php:
|
1582 |
msgid ""
|
1583 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1584 |
"Subscriptions to prevent confusion between the two plugins."
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: utils/stcr_upgrade.php:
|
1588 |
msgid ""
|
1589 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1590 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1592,7 +1467,7 @@ msgid ""
|
|
1592 |
"ever run to prevent data loss."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: utils/stcr_upgrade.php:
|
1596 |
msgid ""
|
1597 |
"<strong>Note:</strong> If you were previously using the "
|
1598 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1601,29 +1476,29 @@ msgid ""
|
|
1601 |
"respectively."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: utils/stcr_upgrade.php:
|
1605 |
msgid ""
|
1606 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: utils/stcr_upgrade.php:
|
1610 |
-
#: utils/stcr_upgrade.php:
|
1611 |
msgid ""
|
1612 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1613 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: utils/stcr_upgrade.php:
|
1617 |
msgid ""
|
1618 |
-
"Please consider to make a donation to support the plugin
|
1619 |
-
"<a href=\"\n"
|
1620 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1621 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1622 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1623 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
-
#: utils/stcr_upgrade.php:
|
1627 |
msgid ""
|
1628 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1629 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1631,23 +1506,23 @@ msgid ""
|
|
1631 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: utils/stcr_upgrade.php:
|
1635 |
msgid ""
|
1636 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1637 |
"160106."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: utils/stcr_upgrade.php:
|
1641 |
msgid ""
|
1642 |
"This version includes many changes and fixes to improve your experience with "
|
1643 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1644 |
"email templates, Subscription Checkbox position, and more!"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: utils/stcr_upgrade.php:
|
1648 |
-
#: utils/stcr_upgrade.php:
|
1649 |
-
#: utils/stcr_upgrade.php:
|
1650 |
-
#: utils/stcr_upgrade.php:
|
1651 |
msgid ""
|
1652 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1653 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1655,123 +1530,126 @@ msgid ""
|
|
1655 |
"class=\"stcr-loading-animation\" src=\""
|
1656 |
msgstr ""
|
1657 |
|
1658 |
-
#: utils/stcr_upgrade.php:
|
1659 |
msgid ""
|
1660 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1661 |
"160115."
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#: utils/stcr_upgrade.php:
|
1665 |
msgid ""
|
1666 |
"This version includes fixes to broken links while managing your subscriptions"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: utils/stcr_upgrade.php:
|
1670 |
msgid ""
|
1671 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1672 |
"160831"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: utils/stcr_upgrade.php:
|
1676 |
msgid "This version includes fixes to many bugs and also new features, "
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: utils/stcr_upgrade.php:
|
1680 |
msgid ""
|
1681 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1682 |
"address. This will help the subscribers to use the Reply option in their "
|
1683 |
"email agents."
|
1684 |
msgstr ""
|
1685 |
|
1686 |
-
#: utils/stcr_upgrade.php:
|
1687 |
msgid ""
|
1688 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1689 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: utils/stcr_upgrade.php:
|
1693 |
msgid ""
|
1694 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1695 |
"without loosing your subscriptions. You can use this option also for reset "
|
1696 |
"all the settings, see the FAQ."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: utils/stcr_upgrade.php:
|
1700 |
msgid ""
|
1701 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1702 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1703 |
"Post Type."
|
1704 |
msgstr ""
|
1705 |
|
1706 |
-
#: utils/stcr_upgrade.php:
|
1707 |
msgid ""
|
1708 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1709 |
"options to and the management link only by email and not to display it on "
|
1710 |
"the request link page."
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: utils/stcr_upgrade.php:
|
1714 |
msgid ""
|
1715 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1716 |
"160902"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: utils/stcr_upgrade.php:
|
1720 |
msgid ""
|
1721 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1722 |
"previous 160831 version."
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: utils/stcr_upgrade.php:
|
1726 |
msgid "Settings"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: utils/stcr_upgrade.php:
|
1730 |
msgid ""
|
1731 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1732 |
"160915"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: utils/stcr_upgrade.php:
|
1736 |
-
#: utils/stcr_upgrade.php:
|
1737 |
msgid "This version includes fixes and improvements, "
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: utils/stcr_upgrade.php:
|
1741 |
msgid ""
|
1742 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1743 |
"dropdown."
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: utils/stcr_upgrade.php:
|
1747 |
msgid ""
|
1748 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: utils/stcr_upgrade.php:
|
|
|
1752 |
msgid "Log Settings"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: utils/stcr_upgrade.php:
|
|
|
1756 |
msgid ""
|
1757 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: utils/stcr_upgrade.php:
|
1761 |
msgid ""
|
1762 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1763 |
"enable."
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: utils/stcr_upgrade.php:
|
1767 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: utils/stcr_upgrade.php:
|
|
|
1771 |
msgid "The support of this plugin is given thanks to your donations."
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: utils/stcr_upgrade.php:
|
1775 |
msgid ""
|
1776 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1777 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1781,19 +1659,19 @@ msgid ""
|
|
1781 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: utils/stcr_upgrade.php:
|
1785 |
msgid ""
|
1786 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1787 |
"installation regarding a database table creation."
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: utils/stcr_upgrade.php:
|
1791 |
msgid ""
|
1792 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1793 |
"Awesome."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
#: utils/stcr_upgrade.php:
|
1797 |
msgid ""
|
1798 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1799 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1804,8 +1682,215 @@ msgid ""
|
|
1804 |
"for the users that have supported the plugin development."
|
1805 |
msgstr ""
|
1806 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1807 |
# @ subscribe-reloaded
|
1808 |
-
#: utils/stcr_utils.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1809 |
msgid "StCR Notification"
|
1810 |
msgstr "Assunto da notificação"
|
1811 |
|
@@ -1817,6 +1902,27 @@ msgstr "Permitir subscrições do Administrador"
|
|
1817 |
msgid "All"
|
1818 |
msgstr ""
|
1819 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1820 |
# @ subscribe-reloaded
|
1821 |
#~ msgid ""
|
1822 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:12-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:12-0700\n"
|
7 |
+
"Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
|
8 |
"Language-Team: Sérgio Martins <inove@live.com.pt>\n"
|
9 |
"Language: pt_PT\n"
|
10 |
"MIME-Version: 1.0\n"
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
+
"X-Generator: Poedit 2.0.6\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
# @ subscribe-reloaded
|
22 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
23 |
+
#: utils/stcr_utils.php:203
|
24 |
msgid "Manage subscriptions"
|
25 |
msgstr "Gerir Subscrições"
|
26 |
|
27 |
# @ subscribe-reloaded
|
28 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
29 |
msgid "Comment Form"
|
30 |
msgstr "Formulário de resposta"
|
31 |
|
32 |
# @ subscribe-reloaded
|
33 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
34 |
msgid "Management Page"
|
35 |
msgstr "Página de gestão"
|
36 |
|
37 |
# @ subscribe-reloaded
|
38 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
39 |
msgid "Notifications"
|
40 |
msgstr "Assunto da notificação"
|
41 |
|
42 |
# @ subscribe-reloaded
|
43 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
44 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
45 |
msgid "Options"
|
46 |
msgstr "Opções"
|
47 |
|
|
|
|
|
|
|
|
|
48 |
# @ subscribe-reloaded
|
49 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
50 |
msgid "Support"
|
51 |
msgstr "Suporte"
|
52 |
|
53 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
54 |
msgid "Donate"
|
55 |
msgstr ""
|
56 |
|
389 |
msgid "Sorry, no subscriptions match your search criteria."
|
390 |
msgstr "Desculpe, nenhuma subscrição foi encontrada para"
|
391 |
|
392 |
+
#: options/panel10.php:41
|
393 |
msgid "The log file has been successfully deleted."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: options/panel10.php:46
|
397 |
msgid "Can't delete the log file, check the file permissions."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: options/panel10.php:52
|
401 |
msgid "The log file does not exists."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: options/panel10.php:66 options/panel10.php:110
|
405 |
msgid "Enable Log Information"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: options/panel10.php:72 options/panel10.php:119
|
409 |
msgid "Enable Auto clean log data"
|
410 |
msgstr ""
|
411 |
|
412 |
# @ subscribe-reloaded
|
413 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
414 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
415 |
msgid "Your settings have been successfully updated."
|
416 |
msgstr "As suas configurações foram atualizadas"
|
417 |
|
418 |
# @ subscribe-reloaded
|
419 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
420 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
421 |
msgid "There was an error updating the following fields:"
|
422 |
msgstr "Houve um erro ao atualizar os seguintes campos:"
|
423 |
|
424 |
# @ subscribe-reloaded
|
425 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
426 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
427 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
428 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
429 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
430 |
+
#: options/panel5.php:210 options/panel5.php:219
|
431 |
msgid "Yes"
|
432 |
msgstr "Sim"
|
433 |
|
434 |
# @ subscribe-reloaded
|
435 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
436 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
437 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
438 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
439 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
440 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
441 |
msgid "No"
|
442 |
msgstr "Não"
|
443 |
|
444 |
+
#: options/panel10.php:114
|
445 |
msgid ""
|
446 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
447 |
"purposes."
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: options/panel10.php:125
|
451 |
msgid "Hourly"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: options/panel10.php:126
|
455 |
msgid "Twice Daily"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: options/panel10.php:127
|
459 |
msgid "Daily"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: options/panel10.php:129
|
463 |
msgid "If enabled, StCR will auto clean your information every day."
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: options/panel10.php:134
|
467 |
msgid "Clean Up Log Archive"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: options/panel10.php:138
|
471 |
msgid ""
|
472 |
"If you want to clean up the log archive please click the following button"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: options/panel10.php:140
|
476 |
msgid "Clean"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: options/panel10.php:147 options/panel10.php:150
|
480 |
msgid "System Information"
|
481 |
msgstr ""
|
482 |
|
483 |
# @ default
|
484 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
485 |
+
#: options/panel4.php:283 options/panel5.php:265
|
486 |
msgid "Save Changes"
|
487 |
msgstr "Guardar Alterações"
|
488 |
|
871 |
#: options/panel4.php:128
|
872 |
msgid ""
|
873 |
"This will be use when the user click reply on their email agent. If not set "
|
874 |
+
"it will be the same as the Sender email address."
|
875 |
msgstr ""
|
876 |
|
877 |
# @ subscribe-reloaded
|
888 |
|
889 |
#: options/panel4.php:171
|
890 |
msgid ""
|
891 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
892 |
+
"all the content and save the options.</strong></p>"
|
893 |
msgstr ""
|
894 |
|
895 |
# @ subscribe-reloaded
|
940 |
"[blog_name]"
|
941 |
msgstr "Assunto do Email de confirmação. Tags permitidas: [post_title]"
|
942 |
|
943 |
+
# @ subscribe-reloaded
|
944 |
+
#: options/panel5.php:38
|
945 |
+
#, fuzzy
|
946 |
+
#| msgid "Your settings have been successfully updated."
|
947 |
+
msgid "Your settings have been successfully reset."
|
948 |
+
msgstr "As suas configurações foram atualizadas"
|
949 |
+
|
950 |
+
# @ subscribe-reloaded
|
951 |
+
#: options/panel5.php:40
|
952 |
+
#, fuzzy
|
953 |
+
#| msgid "There was an error updating the following fields:"
|
954 |
+
msgid "There was an error deleting the options:"
|
955 |
+
msgstr "Houve um erro ao atualizar os seguintes campos:"
|
956 |
+
|
957 |
+
#: options/panel5.php:48 options/panel5.php:108
|
958 |
msgid "Show StCR checkbox / dropdown"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: options/panel5.php:51
|
962 |
msgid "Safetly Uninstall"
|
963 |
msgstr ""
|
964 |
|
965 |
# @ subscribe-reloaded
|
966 |
+
#: options/panel5.php:54 options/panel5.php:125
|
967 |
msgid "Autopurge requests"
|
968 |
msgstr "Pedidos de auto remoção"
|
969 |
|
970 |
# @ subscribe-reloaded
|
971 |
+
#: options/panel5.php:57 options/panel5.php:143
|
972 |
msgid "Enable double check"
|
973 |
msgstr "Ativar confirmação"
|
974 |
|
975 |
+
#: options/panel5.php:60 options/panel5.php:134
|
976 |
msgid "StCR Position"
|
977 |
msgstr ""
|
978 |
|
979 |
# @ subscribe-reloaded
|
980 |
+
#: options/panel5.php:63 options/panel5.php:151
|
981 |
msgid "Subscribe authors"
|
982 |
msgstr "Subscrito"
|
983 |
|
984 |
+
#: options/panel5.php:66 options/panel5.php:161
|
985 |
msgid "Enable HTML emails"
|
986 |
msgstr "Ativar e-mails com HTML"
|
987 |
|
988 |
+
#: options/panel5.php:69
|
989 |
msgid "HTMLify Links in HTML emails"
|
990 |
msgstr ""
|
991 |
|
992 |
# @ subscribe-reloaded
|
993 |
+
#: options/panel5.php:72
|
994 |
msgid "Send trackbacks"
|
995 |
msgstr "Enviar trackbacks"
|
996 |
|
997 |
# @ subscribe-reloaded
|
998 |
+
#: options/panel5.php:75
|
999 |
msgid "Notify admin"
|
1000 |
msgstr "Notificar Administrador"
|
1001 |
|
1002 |
+
#: options/panel5.php:78 options/panel5.php:199
|
1003 |
msgid "Let admin subscribe"
|
1004 |
msgstr "Permitir subscrições do Administrador"
|
1005 |
|
1006 |
# @ subscribe-reloaded
|
1007 |
+
#: options/panel5.php:81 options/panel5.php:208
|
1008 |
msgid "BCC admin on Notifications"
|
1009 |
msgstr "Assunto da notificação"
|
1010 |
|
1011 |
+
#: options/panel5.php:84 options/panel5.php:217
|
1012 |
msgid "Enable Font Awesome"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
1016 |
+
msgid "Reset All Options"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: options/panel5.php:112
|
1020 |
msgid ""
|
1021 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
1022 |
"You should leave it to Yes always. "
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: options/panel5.php:117
|
1026 |
msgid "Safely Uninstall"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: options/panel5.php:121
|
1030 |
msgid ""
|
1031 |
"This option will allow you to delete the plugin with WordPress without "
|
1032 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: options/panel5.php:128
|
1036 |
msgid "days"
|
1037 |
msgstr "dias"
|
1038 |
|
1039 |
# @ subscribe-reloaded
|
1040 |
+
#: options/panel5.php:129
|
1041 |
msgid ""
|
1042 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
1043 |
"this feature."
|
1045 |
"Excluir assinaturas pendentes (não confirmada) após X dias. Zero desativa "
|
1046 |
"este recurso."
|
1047 |
|
1048 |
+
#: options/panel5.php:138
|
1049 |
msgid ""
|
1050 |
"If this option is enable the subscription box will be above the submit "
|
1051 |
"button in your comment form. Use this when your theme is outdated and using "
|
1053 |
msgstr ""
|
1054 |
|
1055 |
# @ subscribe-reloaded
|
1056 |
+
#: options/panel5.php:147
|
1057 |
msgid ""
|
1058 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
1059 |
"misuse)."
|
1061 |
"Enviar um e-mail de notificação para confirmar a inscrição (para evitar "
|
1062 |
"abusos de endereços)."
|
1063 |
|
1064 |
+
#: options/panel5.php:156
|
1065 |
msgid ""
|
1066 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: options/panel5.php:165
|
1070 |
msgid ""
|
1071 |
"If enabled, will send email messages with content-type = text/html instead "
|
1072 |
"of text/plain"
|
1074 |
"Se ativado envia mensagens de e-mail com o content-type = text/html, em vez "
|
1075 |
"de text/plain"
|
1076 |
|
1077 |
+
#: options/panel5.php:170
|
1078 |
msgid "HTMLify links in emails"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: options/panel5.php:175
|
1082 |
msgid ""
|
1083 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
1084 |
"</a></code> (only when HTML emails enabled)."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
# @ subscribe-reloaded
|
1088 |
+
#: options/panel5.php:180
|
1089 |
msgid "Process trackbacks"
|
1090 |
msgstr "Enviar trackbacks"
|
1091 |
|
1092 |
# @ subscribe-reloaded
|
1093 |
+
#: options/panel5.php:184
|
1094 |
msgid ""
|
1095 |
"Notify users when a new trackback or pingback is added to the discussion."
|
1096 |
msgstr ""
|
1098 |
"acrescentado à discussão."
|
1099 |
|
1100 |
# @ subscribe-reloaded
|
1101 |
+
#: options/panel5.php:189
|
1102 |
msgid "Track all subscriptions"
|
1103 |
msgstr "Seguir todas as assinaturas"
|
1104 |
|
1105 |
# @ subscribe-reloaded
|
1106 |
+
#: options/panel5.php:194
|
1107 |
msgid "Notify the administrator when users subscribe without commenting."
|
1108 |
msgstr ""
|
1109 |
"Notificar o administrador quando os utilizadores se inscreverem sem comentar."
|
1110 |
|
1111 |
# @ subscribe-reloaded
|
1112 |
+
#: options/panel5.php:203
|
1113 |
msgid "Let the administrator subscribe to comments when logged in."
|
1114 |
msgstr ""
|
1115 |
"Deixe o administrador inscrever-se em comentários, quando estiver iniciado "
|
1116 |
"sessão."
|
1117 |
|
1118 |
+
#: options/panel5.php:212
|
1119 |
msgid "Send a copy of all Notifications to the administrator."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: options/panel5.php:221
|
1123 |
msgid ""
|
1124 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1125 |
"you theme already add this into your site."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: options/panel5.php:226
|
1129 |
msgid "StCR Unique Key"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: options/panel5.php:231
|
1133 |
msgid "This Unique Key is not set, please click the following button to "
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1137 |
msgid "Generate"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: options/panel5.php:243
|
1141 |
msgid ""
|
1142 |
"This Unique Key will be use to send the notification to your subscribers "
|
1143 |
"with more security."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: options/panel5.php:256
|
1147 |
+
msgid ""
|
1148 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1149 |
+
"with caution."
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: options/panel5.php:258
|
1153 |
+
msgid "Yes, Delete Options including subscriptions."
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: options/panel5.php:259
|
1157 |
+
msgid "No, Only delete the StCR Options."
|
1158 |
+
msgstr ""
|
1159 |
+
|
1160 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1161 |
+
msgid ""
|
1162 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1163 |
+
"hidden=\"true\"></i>"
|
1164 |
+
msgstr ""
|
1165 |
|
1166 |
# @ subscribe-reloaded
|
1167 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1168 |
+
#, fuzzy
|
1169 |
+
#| msgid ""
|
1170 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1171 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1172 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1173 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1174 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1175 |
msgid ""
|
1176 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1177 |
"consider supporting the author if this plugin made your web site better, "
|
1178 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1179 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1180 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1181 |
"strong>, and to buy some food for my hungry family."
|
1182 |
msgstr ""
|
1188 |
"família com fome."
|
1189 |
|
1190 |
# @ subscribe-reloaded
|
1191 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1192 |
+
#, fuzzy
|
1193 |
+
#| msgid "Don't want to donate? You can still help"
|
1194 |
+
msgid "You can still help"
|
1195 |
msgstr "Não quer doar? Você ainda pode ajudar"
|
1196 |
|
1197 |
# @ subscribe-reloaded
|
1198 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1199 |
+
#, fuzzy
|
1200 |
+
#| msgid ""
|
1201 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1202 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1203 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1204 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1205 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1206 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1207 |
msgid ""
|
1208 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1209 |
+
"Please let your readers know what makes your blog better. You can also "
|
1210 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1211 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1212 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
|
|
1213 |
msgstr ""
|
1214 |
"Se não quiser doar dinheiro, por favor, considere falar sobre o meu plugin "
|
1215 |
"com um link para o plugin da página. Por favor, deixe que os seus leitores "
|
1219 |
"fizer, obrigado por usar o meu plugin!"
|
1220 |
|
1221 |
# @ subscribe-reloaded
|
1222 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1223 |
msgid "Subscribe to the Beta testers"
|
1224 |
msgstr "Subscrito"
|
1225 |
|
1226 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1227 |
msgid ""
|
1228 |
"Before a new Update we release a Beta version so that our current users can "
|
1229 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1232 |
msgstr ""
|
1233 |
|
1234 |
# @ subscribe-reloaded
|
1235 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1236 |
msgid "Vote and show your appreciation"
|
1237 |
msgstr "Vote e mostre o seu apreço"
|
1238 |
|
1239 |
# @ subscribe-reloaded
|
1240 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1241 |
msgid ""
|
1242 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1243 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1248 |
"subscribe-to-comments-reloaded/\\\">Classifique-o</a> na sua página wm \\"
|
1249 |
"\"Plugin Directory\\\"."
|
1250 |
|
1251 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1252 |
msgid "Did you find a Bug on the plugin?"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1256 |
msgid ""
|
1257 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1258 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1354 |
msgid "You have request to manage another email address and this is forbidden."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1358 |
msgid "StCR System"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1362 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1363 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1364 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1365 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1366 |
msgid "You do not have sufficient permissions to access this page."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
# @ subscribe-reloaded
|
1370 |
+
#: utils/stcr_manage.php:726
|
1371 |
msgid "Subscriptions"
|
1372 |
msgstr "Gerir Subscrições"
|
1373 |
|
1374 |
+
#: utils/stcr_manage.php:782
|
1375 |
msgid ""
|
1376 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1377 |
msgstr ""
|
1379 |
"o oficial"
|
1380 |
|
1381 |
# @ subscribe-reloaded
|
1382 |
+
#: utils/stcr_manage.php:782
|
1383 |
msgid "support forum"
|
1384 |
msgstr "Fórum de Suporte"
|
1385 |
|
1386 |
+
#: utils/stcr_manage.php:783
|
1387 |
msgid "Feeling generous?"
|
1388 |
msgstr "Sentindo-se generoso(a)?"
|
1389 |
|
1390 |
+
#: utils/stcr_manage.php:783
|
1391 |
msgid "Donate a few bucks!"
|
1392 |
msgstr "Doe alguns trocados!"
|
1393 |
|
1394 |
+
#: utils/stcr_upgrade.php:72
|
1395 |
msgid "Important Notice"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: utils/stcr_upgrade.php:120
|
1399 |
msgid ""
|
1400 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1401 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1403 |
"src=\""
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: utils/stcr_upgrade.php:175
|
1407 |
msgid ""
|
1408 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1409 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1410 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: utils/stcr_upgrade.php:175
|
1414 |
msgid ""
|
1415 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1416 |
"Comments to prevent confusion between the two plugins."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: utils/stcr_upgrade.php:176
|
1420 |
msgid ""
|
1421 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1422 |
"that you want to import, you'll need to import that data manually, as only "
|
1423 |
"one import routine will ever run to prevent data loss."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1427 |
+
#: utils/stcr_upgrade.php:400
|
1428 |
msgid ""
|
1429 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1430 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1432 |
"\"stcr-loading-animation\" src=\""
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: utils/stcr_upgrade.php:250
|
1436 |
msgid ""
|
1437 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1438 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1439 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: utils/stcr_upgrade.php:250
|
1443 |
msgid ""
|
1444 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1445 |
"Notification to prevent confusion between the two plugins."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: utils/stcr_upgrade.php:397
|
1449 |
msgid ""
|
1450 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1451 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1453 |
"Reloaded</strong>."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: utils/stcr_upgrade.php:397
|
1457 |
msgid ""
|
1458 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1459 |
"Subscriptions to prevent confusion between the two plugins."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: utils/stcr_upgrade.php:398
|
1463 |
msgid ""
|
1464 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1465 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1467 |
"ever run to prevent data loss."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: utils/stcr_upgrade.php:399
|
1471 |
msgid ""
|
1472 |
"<strong>Note:</strong> If you were previously using the "
|
1473 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1476 |
"respectively."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: utils/stcr_upgrade.php:413
|
1480 |
msgid ""
|
1481 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1485 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1486 |
msgid ""
|
1487 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1488 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: utils/stcr_upgrade.php:415
|
1492 |
msgid ""
|
1493 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1494 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1495 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1496 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1497 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1498 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: utils/stcr_upgrade.php:417
|
1502 |
msgid ""
|
1503 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1504 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1506 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: utils/stcr_upgrade.php:428
|
1510 |
msgid ""
|
1511 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1512 |
"160106."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: utils/stcr_upgrade.php:429
|
1516 |
msgid ""
|
1517 |
"This version includes many changes and fixes to improve your experience with "
|
1518 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1519 |
"email templates, Subscription Checkbox position, and more!"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1523 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1524 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1525 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1526 |
msgid ""
|
1527 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1528 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1530 |
"class=\"stcr-loading-animation\" src=\""
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: utils/stcr_upgrade.php:443
|
1534 |
msgid ""
|
1535 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1536 |
"160115."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: utils/stcr_upgrade.php:444
|
1540 |
msgid ""
|
1541 |
"This version includes fixes to broken links while managing your subscriptions"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
+
#: utils/stcr_upgrade.php:458
|
1545 |
msgid ""
|
1546 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1547 |
"160831"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1551 |
msgid "This version includes fixes to many bugs and also new features, "
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1555 |
msgid ""
|
1556 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1557 |
"address. This will help the subscribers to use the Reply option in their "
|
1558 |
"email agents."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1562 |
msgid ""
|
1563 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1564 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1568 |
msgid ""
|
1569 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1570 |
"without loosing your subscriptions. You can use this option also for reset "
|
1571 |
"all the settings, see the FAQ."
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1575 |
msgid ""
|
1576 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1577 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1578 |
"Post Type."
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1582 |
msgid ""
|
1583 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1584 |
"options to and the management link only by email and not to display it on "
|
1585 |
"the request link page."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: utils/stcr_upgrade.php:480
|
1589 |
msgid ""
|
1590 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1591 |
"160902"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: utils/stcr_upgrade.php:483
|
1595 |
msgid ""
|
1596 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1597 |
"previous 160831 version."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1601 |
msgid "Settings"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: utils/stcr_upgrade.php:504
|
1605 |
msgid ""
|
1606 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1607 |
"160915"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1611 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1612 |
msgid "This version includes fixes and improvements, "
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: utils/stcr_upgrade.php:508
|
1616 |
msgid ""
|
1617 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1618 |
"dropdown."
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: utils/stcr_upgrade.php:509
|
1622 |
msgid ""
|
1623 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1627 |
+
#: utils/stcr_upgrade.php:576
|
1628 |
msgid "Log Settings"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1632 |
+
#: utils/stcr_upgrade.php:580
|
1633 |
msgid ""
|
1634 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: utils/stcr_upgrade.php:529
|
1638 |
msgid ""
|
1639 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1640 |
"enable."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: utils/stcr_upgrade.php:530
|
1644 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1648 |
+
#: utils/stcr_upgrade.php:590
|
1649 |
msgid "The support of this plugin is given thanks to your donations."
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: utils/stcr_upgrade.php:536
|
1653 |
msgid ""
|
1654 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1655 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1659 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: utils/stcr_upgrade.php:557
|
1663 |
msgid ""
|
1664 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1665 |
"installation regarding a database table creation."
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: utils/stcr_upgrade.php:558
|
1669 |
msgid ""
|
1670 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1671 |
"Awesome."
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: utils/stcr_upgrade.php:563
|
1675 |
msgid ""
|
1676 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1677 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1682 |
"for the users that have supported the plugin development."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: utils/stcr_upgrade.php:584
|
1686 |
+
msgid ""
|
1687 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1688 |
+
"issues."
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: utils/stcr_upgrade.php:585
|
1692 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: utils/stcr_upgrade.php:586
|
1696 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: utils/stcr_upgrade.php:591
|
1700 |
+
msgid ""
|
1701 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1702 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1703 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1704 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1705 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1706 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1707 |
+
"Thanks for all the users that have supported the plugin development."
|
1708 |
+
msgstr ""
|
1709 |
+
|
1710 |
+
# @ subscribe-reloaded
|
1711 |
+
#: utils/stcr_utils.php:196
|
1712 |
+
msgid ""
|
1713 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1714 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1715 |
+
msgstr ""
|
1716 |
+
"Notifique-me de novos comentários via Email. Também pode <a "
|
1717 |
+
"href='[subscribe_link]'>se inscrever</a> sem comentar."
|
1718 |
+
|
1719 |
+
# @ subscribe-reloaded
|
1720 |
+
#: utils/stcr_utils.php:197
|
1721 |
+
msgid ""
|
1722 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1723 |
+
"subscriptions."
|
1724 |
+
msgstr ""
|
1725 |
+
"Está inscrito para esta entrada. <a href='[manager_link]'>Gerir</a> suas "
|
1726 |
+
"subscrições."
|
1727 |
+
|
1728 |
+
# @ subscribe-reloaded
|
1729 |
+
#: utils/stcr_utils.php:198
|
1730 |
+
msgid ""
|
1731 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1732 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1733 |
+
msgstr ""
|
1734 |
+
"A sua subscrição para esta entrada deve ser confirmada. <a "
|
1735 |
+
"href='[manager_link]'>Gerir as suas subscrições</a> ."
|
1736 |
+
|
1737 |
# @ subscribe-reloaded
|
1738 |
+
#: utils/stcr_utils.php:199
|
1739 |
+
msgid ""
|
1740 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1741 |
+
msgstr "Pode <a href='[manager_link]'>gerir as subscrições</a> desta entrada."
|
1742 |
+
|
1743 |
+
# @ subscribe-reloaded
|
1744 |
+
#: utils/stcr_utils.php:205
|
1745 |
+
msgid ""
|
1746 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1747 |
+
"will send you a message containing the link to access your personal "
|
1748 |
+
"management page."
|
1749 |
+
msgstr ""
|
1750 |
+
"Para gerir as suas subscrições, digite o seu endereço de e-mail aqui em "
|
1751 |
+
"baixo. Nós enviaremos-lhe uma mensagem contendo o link para aceder à sua "
|
1752 |
+
"página de gestão pessoal."
|
1753 |
+
|
1754 |
+
# @ subscribe-reloaded
|
1755 |
+
#: utils/stcr_utils.php:206
|
1756 |
+
msgid ""
|
1757 |
+
"Thank you for using our subscription service. Your request has been "
|
1758 |
+
"completed, and you should receive an email with the management link in a few "
|
1759 |
+
"minutes."
|
1760 |
+
msgstr ""
|
1761 |
+
"Obrigado por usar nosso serviço de Subscrição. Seu pedido foi concluído, "
|
1762 |
+
"deverá receber dentro de minutos um Email com o link de gestão."
|
1763 |
+
|
1764 |
+
# @ subscribe-reloaded
|
1765 |
+
#: utils/stcr_utils.php:207
|
1766 |
+
msgid ""
|
1767 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1768 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1769 |
+
"form here below and you're all set."
|
1770 |
+
msgstr ""
|
1771 |
+
"Pode acompanhar a discussão sobre <strong>[post_title]</strong> sem ter que "
|
1772 |
+
"deixar um comentário. Basta digitar seu endereço de Email no formulário "
|
1773 |
+
"abaixo."
|
1774 |
+
|
1775 |
+
# @ subscribe-reloaded
|
1776 |
+
#: utils/stcr_utils.php:208
|
1777 |
+
msgid ""
|
1778 |
+
"Thank you for using our subscription service. Your request has been "
|
1779 |
+
"completed. You will receive a notification email every time a new comment to "
|
1780 |
+
"this article is approved and posted by the administrator."
|
1781 |
+
msgstr ""
|
1782 |
+
"Obrigado por usar nosso serviço de Subscrição. Seu pedido foi concluído. "
|
1783 |
+
"Receberá agora um Email de notificação sempre que um novo comentário a este "
|
1784 |
+
"artigo for aprovado e publicado pelo administrador."
|
1785 |
+
|
1786 |
+
# @ subscribe-reloaded
|
1787 |
+
#: utils/stcr_utils.php:209
|
1788 |
+
msgid ""
|
1789 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1790 |
+
"request, please check your email for the verification message and follow the "
|
1791 |
+
"instructions."
|
1792 |
+
msgstr ""
|
1793 |
+
"Obrigado por usar nosso serviço de Subscrição. Para confirmar o seu pedido, "
|
1794 |
+
"verifique o seu Email para a mensagem de confirmação e siga as instruções."
|
1795 |
+
|
1796 |
+
# @ subscribe-reloaded
|
1797 |
+
#: utils/stcr_utils.php:210
|
1798 |
+
msgid ""
|
1799 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1800 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1801 |
+
msgstr ""
|
1802 |
+
"A fim de cancelar ou suspender uma ou mais subscrições, selecione a opção "
|
1803 |
+
"correspondente (s) e clique no botão no final da lista."
|
1804 |
+
|
1805 |
+
# @ subscribe-reloaded
|
1806 |
+
#: utils/stcr_utils.php:211
|
1807 |
+
msgid ""
|
1808 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1809 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1810 |
+
"You are currently subscribed to:"
|
1811 |
+
msgstr ""
|
1812 |
+
"A fim de cancelar ou suspender uma ou mais subscrições, selecione a opção "
|
1813 |
+
"correspondente (s) e clique no botão no final da lista. Você está inscrito "
|
1814 |
+
"em:"
|
1815 |
+
|
1816 |
+
# @ subscribe-reloaded
|
1817 |
+
#: utils/stcr_utils.php:215
|
1818 |
+
msgid "There is a new comment to [post_title]"
|
1819 |
+
msgstr "Há um novo comentário para: [post_title]"
|
1820 |
+
|
1821 |
+
#: utils/stcr_utils.php:216
|
1822 |
+
msgid ""
|
1823 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1824 |
+
"\n"
|
1825 |
+
"<hr />\n"
|
1826 |
+
"<strong>Comment link:</strong> <a href="
|
1827 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1828 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1829 |
+
"\n"
|
1830 |
+
"<strong>Comment:</strong>\n"
|
1831 |
+
"[comment_content]\n"
|
1832 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1833 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1834 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1835 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1836 |
+
msgstr ""
|
1837 |
+
|
1838 |
+
# @ subscribe-reloaded
|
1839 |
+
#: utils/stcr_utils.php:217
|
1840 |
+
msgid "Please confirm your subscription to [post_title]"
|
1841 |
+
msgstr "Por favor, confirme sua subscrição da página [post_title]"
|
1842 |
+
|
1843 |
+
# @ subscribe-reloaded
|
1844 |
+
#: utils/stcr_utils.php:218
|
1845 |
+
#, fuzzy
|
1846 |
+
#| msgid ""
|
1847 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1848 |
+
#| "[post_permalink]\n"
|
1849 |
+
#| "\n"
|
1850 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1851 |
+
#| "[confirm_link]"
|
1852 |
+
msgid ""
|
1853 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1854 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1855 |
+
"\n"
|
1856 |
+
"Please confirm your request by clicking on this link:\n"
|
1857 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1858 |
+
msgstr ""
|
1859 |
+
"Pediu para ser notificado sempre que um novo comentário é adicionado a:\n"
|
1860 |
+
"[post_permalink]\n"
|
1861 |
+
"\n"
|
1862 |
+
"Por favor, confirme seu pedido clicando neste link:\n"
|
1863 |
+
"[confirm_link]"
|
1864 |
+
|
1865 |
+
# @ subscribe-reloaded
|
1866 |
+
#: utils/stcr_utils.php:219
|
1867 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1868 |
+
msgstr "Gerir as suas subscrições no Site [blog_name]"
|
1869 |
+
|
1870 |
+
#: utils/stcr_utils.php:220
|
1871 |
+
msgid ""
|
1872 |
+
"You have requested to manage your subscriptions to the articles on "
|
1873 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1874 |
+
msgstr ""
|
1875 |
+
|
1876 |
+
# @ subscribe-reloaded
|
1877 |
+
#: utils/stcr_utils.php:221
|
1878 |
+
#, fuzzy
|
1879 |
+
#| msgid ""
|
1880 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1881 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1882 |
+
#| "[manager_link]"
|
1883 |
+
msgid ""
|
1884 |
+
"You have requested to manage your subscriptions to the articles on "
|
1885 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1886 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1887 |
+
msgstr ""
|
1888 |
+
"Pediu para gerir suas subscrições para os artigos no Site [blog_name]. Siga "
|
1889 |
+
"este link para aceder à sua página pessoal de subscrições:\n"
|
1890 |
+
"[manager_link]"
|
1891 |
+
|
1892 |
+
# @ subscribe-reloaded
|
1893 |
+
#: utils/stcr_utils.php:300
|
1894 |
msgid "StCR Notification"
|
1895 |
msgstr "Assunto da notificação"
|
1896 |
|
1902 |
msgid "All"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#~ msgid "Support the developers"
|
1906 |
+
#~ msgstr "Suporte do autor"
|
1907 |
+
|
1908 |
+
# @ subscribe-reloaded
|
1909 |
+
#~ msgid ""
|
1910 |
+
#~ "There is a new comment to [post_title].\n"
|
1911 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1912 |
+
#~ "Author: [comment_author]\n"
|
1913 |
+
#~ "Comment:\n"
|
1914 |
+
#~ "[comment_content]\n"
|
1915 |
+
#~ "Permalink: [post_permalink]\n"
|
1916 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1917 |
+
#~ msgstr ""
|
1918 |
+
#~ "Há um novo comentário para: [post_title].\n"
|
1919 |
+
#~ "Link do Comentáro: [comment_permalink]\n"
|
1920 |
+
#~ "Autor: [comment_author]\n"
|
1921 |
+
#~ "Comentário:\n"
|
1922 |
+
#~ "[comment_content]\n"
|
1923 |
+
#~ "Link Permanente: [post_permalink]\n"
|
1924 |
+
#~ "Gerir as suas subscrições: [manager_link]"
|
1925 |
+
|
1926 |
# @ subscribe-reloaded
|
1927 |
#~ msgid ""
|
1928 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: due chiacchiere <info@duechiacchiere.it>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Редактировать подписки"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Форма комментария"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Страница управления"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Уведомления"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Параметры"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Вы можете помочь"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr "Поддержка"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr "Не хотите делать пожертвование? Вы все равно можете помочь"
|
52 |
|
@@ -345,95 +341,95 @@ msgstr "Обновить подписки"
|
|
345 |
msgid "Sorry, no subscriptions match your search criteria."
|
346 |
msgstr "Извините, ни одна подписка не соответствует вашему поисковому запросу."
|
347 |
|
348 |
-
#: options/panel10.php:
|
349 |
msgid "The log file has been successfully deleted."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: options/panel10.php:
|
353 |
msgid "Can't delete the log file, check the file permissions."
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: options/panel10.php:
|
357 |
msgid "The log file does not exists."
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: options/panel10.php:
|
361 |
msgid "Enable Log Information"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: options/panel10.php:
|
365 |
msgid "Enable Auto clean log data"
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: options/panel10.php:
|
369 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
370 |
msgid "Your settings have been successfully updated."
|
371 |
msgstr "Ваши настройки успешно обновлены."
|
372 |
|
373 |
-
#: options/panel10.php:
|
374 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
375 |
msgid "There was an error updating the following fields:"
|
376 |
msgstr "Произошла ошибка в обновлении следующих полей:"
|
377 |
|
378 |
-
#: options/panel10.php:
|
379 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
380 |
-
#: options/panel5.php:
|
381 |
-
#: options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
msgid "Yes"
|
385 |
msgstr "Да"
|
386 |
|
387 |
-
#: options/panel10.php:
|
388 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
389 |
-
#: options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
msgid "No"
|
394 |
msgstr "Нет"
|
395 |
|
396 |
-
#: options/panel10.php:
|
397 |
msgid ""
|
398 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
399 |
"purposes."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: options/panel10.php:
|
403 |
msgid "Hourly"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: options/panel10.php:
|
407 |
msgid "Twice Daily"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: options/panel10.php:
|
411 |
msgid "Daily"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: options/panel10.php:
|
415 |
msgid "If enabled, StCR will auto clean your information every day."
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: options/panel10.php:
|
419 |
msgid "Clean Up Log Archive"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: options/panel10.php:
|
423 |
msgid ""
|
424 |
"If you want to clean up the log archive please click the following button"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: options/panel10.php:
|
428 |
msgid "Clean"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: options/panel10.php:
|
432 |
msgid "System Information"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: options/panel10.php:
|
436 |
-
#: options/panel4.php:283 options/panel5.php:
|
437 |
msgid "Save Changes"
|
438 |
msgstr "Сохранить изменения"
|
439 |
|
@@ -775,7 +771,7 @@ msgstr "Только ответы"
|
|
775 |
#: options/panel4.php:128
|
776 |
msgid ""
|
777 |
"This will be use when the user click reply on their email agent. If not set "
|
778 |
-
"will be the same as the Sender email address."
|
779 |
msgstr ""
|
780 |
|
781 |
#: options/panel4.php:147
|
@@ -791,8 +787,8 @@ msgstr ""
|
|
791 |
|
792 |
#: options/panel4.php:171
|
793 |
msgid ""
|
794 |
-
"<p><strong>Note: To get a default template clear
|
795 |
-
"the options.</strong></p>"
|
796 |
msgstr ""
|
797 |
|
798 |
#: options/panel4.php:184
|
@@ -839,79 +835,95 @@ msgid ""
|
|
839 |
"[blog_name]"
|
840 |
msgstr "Тема письма о подтверждении. Разрешенный тег: [post_title]"
|
841 |
|
842 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
msgid "Show StCR checkbox / dropdown"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: options/panel5.php:
|
847 |
msgid "Safetly Uninstall"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: options/panel5.php:
|
851 |
msgid "Autopurge requests"
|
852 |
msgstr "Автоматически удалять запросы"
|
853 |
|
854 |
-
#: options/panel5.php:
|
855 |
msgid "Enable double check"
|
856 |
msgstr "Включить двойное подтверждение"
|
857 |
|
858 |
-
#: options/panel5.php:
|
859 |
msgid "StCR Position"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: options/panel5.php:
|
863 |
msgid "Subscribe authors"
|
864 |
msgstr "Ярлык оформленной подписки"
|
865 |
|
866 |
-
#: options/panel5.php:
|
867 |
msgid "Enable HTML emails"
|
868 |
msgstr "Использовать HTML письма"
|
869 |
|
870 |
-
#: options/panel5.php:
|
871 |
msgid "HTMLify Links in HTML emails"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: options/panel5.php:
|
875 |
msgid "Send trackbacks"
|
876 |
msgstr "Отправлять трэкбеки"
|
877 |
|
878 |
-
#: options/panel5.php:
|
879 |
msgid "Notify admin"
|
880 |
msgstr "Уведомить админа"
|
881 |
|
882 |
-
#: options/panel5.php:
|
883 |
msgid "Let admin subscribe"
|
884 |
msgstr "Позволить админу подписываться"
|
885 |
|
886 |
-
#: options/panel5.php:
|
887 |
msgid "BCC admin on Notifications"
|
888 |
msgstr "Уведомления"
|
889 |
|
890 |
-
#: options/panel5.php:
|
891 |
msgid "Enable Font Awesome"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
895 |
msgid ""
|
896 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
897 |
"You should leave it to Yes always. "
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: options/panel5.php:
|
901 |
msgid "Safely Uninstall"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: options/panel5.php:
|
905 |
msgid ""
|
906 |
"This option will allow you to delete the plugin with WordPress without "
|
907 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: options/panel5.php:
|
911 |
msgid "days"
|
912 |
msgstr "дней"
|
913 |
|
914 |
-
#: options/panel5.php:
|
915 |
msgid ""
|
916 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
917 |
"this feature."
|
@@ -919,14 +931,14 @@ msgstr ""
|
|
919 |
"Удалять ожидающие подтверждения (не подтвержденные) подписки через Х дней. "
|
920 |
"Ноль отключает эту функцию."
|
921 |
|
922 |
-
#: options/panel5.php:
|
923 |
msgid ""
|
924 |
"If this option is enable the subscription box will be above the submit "
|
925 |
"button in your comment form. Use this when your theme is outdated and using "
|
926 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: options/panel5.php:
|
930 |
msgid ""
|
931 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
932 |
"misuse)."
|
@@ -934,12 +946,12 @@ msgstr ""
|
|
934 |
"Отправлять письмо с просьбой подтвердить подписку (чтобы избежать "
|
935 |
"использования эл. адреса без ведома владельца)"
|
936 |
|
937 |
-
#: options/panel5.php:
|
938 |
msgid ""
|
939 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: options/panel5.php:
|
943 |
msgid ""
|
944 |
"If enabled, will send email messages with content-type = text/html instead "
|
945 |
"of text/plain"
|
@@ -947,75 +959,99 @@ msgstr ""
|
|
947 |
"При выборе этой функции сообщения будут отправляться в формате текст/html "
|
948 |
"вместо обычного текста"
|
949 |
|
950 |
-
#: options/panel5.php:
|
951 |
msgid "HTMLify links in emails"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: options/panel5.php:
|
955 |
msgid ""
|
956 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
957 |
"</a></code> (only when HTML emails enabled)."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: options/panel5.php:
|
961 |
msgid "Process trackbacks"
|
962 |
msgstr "Обрабатывать трэкбеки"
|
963 |
|
964 |
-
#: options/panel5.php:
|
965 |
msgid ""
|
966 |
"Notify users when a new trackback or pingback is added to the discussion."
|
967 |
msgstr "Уведомлять подписчиков о новых трэкбеках или пингбэках к обсуждению"
|
968 |
|
969 |
-
#: options/panel5.php:
|
970 |
msgid "Track all subscriptions"
|
971 |
msgstr "Отследить все подписки"
|
972 |
|
973 |
-
#: options/panel5.php:
|
974 |
msgid "Notify the administrator when users subscribe without commenting."
|
975 |
msgstr ""
|
976 |
"Уведомлять администратора, когда пользователи подписываются без комментария."
|
977 |
|
978 |
-
#: options/panel5.php:
|
979 |
msgid "Let the administrator subscribe to comments when logged in."
|
980 |
msgstr "Позволить админу подписываться, когда он авторизован."
|
981 |
|
982 |
-
#: options/panel5.php:
|
983 |
msgid "Send a copy of all Notifications to the administrator."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: options/panel5.php:
|
987 |
msgid ""
|
988 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
989 |
"you theme already add this into your site."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: options/panel5.php:
|
993 |
msgid "StCR Unique Key"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: options/panel5.php:
|
997 |
msgid "This Unique Key is not set, please click the following button to "
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: options/panel5.php:
|
1001 |
msgid "Generate"
|
1002 |
msgstr "Tasso di rimbalzo"
|
1003 |
|
1004 |
-
#: options/panel5.php:
|
1005 |
msgid ""
|
1006 |
"This Unique Key will be use to send the notification to your subscribers "
|
1007 |
"with more security."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: options/
|
1011 |
-
msgid "
|
1012 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 |
|
1014 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1015 |
msgid ""
|
1016 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1017 |
"consider supporting the author if this plugin made your web site better, "
|
1018 |
-
"especially if you are making money out of it
|
|
|
1019 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1020 |
"strong>, and to buy some food for my hungry family."
|
1021 |
msgstr ""
|
@@ -1027,18 +1063,27 @@ msgstr ""
|
|
1027 |
"плагина <b>Subscribe to Comments Reloaded</b> и на то, чтобы купить немного "
|
1028 |
"еды моей голодной семье."
|
1029 |
|
1030 |
-
#: options/panel7.php:
|
1031 |
-
|
1032 |
-
|
|
|
|
|
1033 |
|
1034 |
-
#: options/panel7.php:
|
1035 |
-
|
1036 |
-
|
1037 |
-
"
|
1038 |
-
"
|
1039 |
-
"
|
1040 |
-
"
|
1041 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1042 |
msgstr ""
|
1043 |
"Если вы не хотите помочь деньгами, пожалуйста, рассмотрите возможность "
|
1044 |
"написать о моем плагине в своем блоге и оставить ссылку на страницу плагина. "
|
@@ -1048,11 +1093,11 @@ msgstr ""
|
|
1048 |
"Comments Reloaded</b> и так далее. Что бы вы ни выбрали, спасибо, что "
|
1049 |
"пользуетесь моим плагином!"
|
1050 |
|
1051 |
-
#: options/panel7.php:
|
1052 |
msgid "Subscribe to the Beta testers"
|
1053 |
msgstr "Ярлык оформленной подписки"
|
1054 |
|
1055 |
-
#: options/panel7.php:
|
1056 |
msgid ""
|
1057 |
"Before a new Update we release a Beta version so that our current users can "
|
1058 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1060,11 +1105,11 @@ msgid ""
|
|
1060 |
"a>"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: options/panel7.php:
|
1064 |
msgid "Vote and show your appreciation"
|
1065 |
msgstr "Проголосуйте и покажите свою признательность"
|
1066 |
|
1067 |
-
#: options/panel7.php:
|
1068 |
msgid ""
|
1069 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1070 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1075,11 +1120,11 @@ msgstr ""
|
|
1075 |
"wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">Оцените</a> "
|
1076 |
"его в разделе плагинов на сайте Wordpress."
|
1077 |
|
1078 |
-
#: options/panel8.php:
|
1079 |
msgid "Did you find a Bug on the plugin?"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: options/panel8.php:
|
1083 |
msgid ""
|
1084 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1085 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1174,206 +1219,46 @@ msgstr ""
|
|
1174 |
msgid "You have request to manage another email address and this is forbidden."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: utils/stcr_manage.php:
|
1178 |
-
msgid ""
|
1179 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1180 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1181 |
-
msgstr ""
|
1182 |
-
"Получать новые комментарии по электронной почте. Вы можете <a "
|
1183 |
-
"href='[subscribe_link]'>подписаться</a> без комментирования."
|
1184 |
-
|
1185 |
-
#: utils/stcr_manage.php:224
|
1186 |
-
msgid ""
|
1187 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1188 |
-
"subscriptions."
|
1189 |
-
msgstr ""
|
1190 |
-
"Вы подписаны на эту статью. <a href='[manager_link]'>Редактировать</a> свои "
|
1191 |
-
"подписки."
|
1192 |
-
|
1193 |
-
#: utils/stcr_manage.php:225
|
1194 |
-
msgid ""
|
1195 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1196 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1197 |
-
msgstr ""
|
1198 |
-
"Ваша подписка на эту статью нуждается в подтверждении. <a "
|
1199 |
-
"href='[manager_link]'>Редактировать</a> свои подписки."
|
1200 |
-
|
1201 |
-
#: utils/stcr_manage.php:226
|
1202 |
-
msgid ""
|
1203 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1204 |
-
msgstr ""
|
1205 |
-
"Вы можете <a href='[manager_link]'>управлять подписками</a> на эту запись."
|
1206 |
-
|
1207 |
-
#: utils/stcr_manage.php:232
|
1208 |
-
msgid ""
|
1209 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1210 |
-
"will send you a message containing the link to access your personal "
|
1211 |
-
"management page."
|
1212 |
-
msgstr ""
|
1213 |
-
"Для управления своими подписками, пожалуйста, введите свой электронный адрес "
|
1214 |
-
"в форму ниже. Мы отправим вам сообщение со ссылкой на вашу персональную "
|
1215 |
-
"страницу управления."
|
1216 |
-
|
1217 |
-
#: utils/stcr_manage.php:233
|
1218 |
-
msgid ""
|
1219 |
-
"Thank you for using our subscription service. Your request has been "
|
1220 |
-
"completed, and you should receive an email with the management link in a few "
|
1221 |
-
"minutes."
|
1222 |
-
msgstr ""
|
1223 |
-
"Спасибо, что пользуетесь нашим сервисом подписок. Ваш запрос выполнен. В "
|
1224 |
-
"течение нескольких минут вы должны получить письмо со ссылкой на страницу "
|
1225 |
-
"управления подписками."
|
1226 |
-
|
1227 |
-
#: utils/stcr_manage.php:234
|
1228 |
-
msgid ""
|
1229 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1230 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1231 |
-
"form here below and you're all set."
|
1232 |
-
msgstr ""
|
1233 |
-
"Вы можете следить за обсуждением статьи <strong>[post_title]</strong>, не "
|
1234 |
-
"оставляя своего комментария. Здорово, не правда ли? Просто введите свой "
|
1235 |
-
"электронный адрес в форму ниже, и готово!"
|
1236 |
-
|
1237 |
-
#: utils/stcr_manage.php:235
|
1238 |
-
msgid ""
|
1239 |
-
"Thank you for using our subscription service. Your request has been "
|
1240 |
-
"completed. You will receive a notification email every time a new comment to "
|
1241 |
-
"this article is approved and posted by the administrator."
|
1242 |
-
msgstr ""
|
1243 |
-
"Спасибо, что пользуетесь нашим сервисом подписок. Ваш запрос выполнен. Вы "
|
1244 |
-
"будете получать уведомления каждый раз, как новый комментарий к этот статье "
|
1245 |
-
"будет одобрен и опубликован администратором сайта."
|
1246 |
-
|
1247 |
-
#: utils/stcr_manage.php:236
|
1248 |
-
msgid ""
|
1249 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1250 |
-
"request, please check your email for the verification message and follow the "
|
1251 |
-
"instructions."
|
1252 |
-
msgstr ""
|
1253 |
-
"Спасибо, что пользуетесь нашим сервисом подписок. Чтобы подтвердить свой "
|
1254 |
-
"запрос, пожалуйста, проверьте свою почту и следуйте инструкциям в письме о "
|
1255 |
-
"подтверждении."
|
1256 |
-
|
1257 |
-
#: utils/stcr_manage.php:237
|
1258 |
-
msgid ""
|
1259 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1260 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1261 |
-
msgstr ""
|
1262 |
-
"Чтобы отменить или приостановить одно или более уведомлений, щелкните в "
|
1263 |
-
"соответствующем окошке выбора и нажмите на кнопку в конце списка."
|
1264 |
-
|
1265 |
-
#: utils/stcr_manage.php:238
|
1266 |
-
msgid ""
|
1267 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1268 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1269 |
-
"You are currently subscribed to:"
|
1270 |
-
msgstr ""
|
1271 |
-
"Чтобы отменить или приостановить одно или более уведомлений, щелкните в "
|
1272 |
-
"соответствующем окошке выбора и нажмите на кнопку в конце списка. На данный "
|
1273 |
-
"момент вы подписаны на:"
|
1274 |
-
|
1275 |
-
#: utils/stcr_manage.php:242
|
1276 |
-
msgid "There is a new comment to [post_title]"
|
1277 |
-
msgstr "Появился новый комментарий к статье [post_title]"
|
1278 |
-
|
1279 |
-
#: utils/stcr_manage.php:243
|
1280 |
-
msgid ""
|
1281 |
-
"There is a new comment to [post_title].\n"
|
1282 |
-
"Comment Link: [comment_permalink]\n"
|
1283 |
-
"Author: [comment_author]\n"
|
1284 |
-
"Comment:\n"
|
1285 |
-
"[comment_content]\n"
|
1286 |
-
"Permalink: [post_permalink]\n"
|
1287 |
-
"Manage your subscriptions: [manager_link]"
|
1288 |
-
msgstr ""
|
1289 |
-
"Появился новый комментарий к статье [post_title].\n"
|
1290 |
-
"Ссылка на комментарий: [comment_permalink]\n"
|
1291 |
-
"Автор: [comment_author]\n"
|
1292 |
-
"Комментарий:\n"
|
1293 |
-
"[comment_content]\n"
|
1294 |
-
"\n"
|
1295 |
-
"Ссылка на статью: [post_permalink]\n"
|
1296 |
-
"Управление подписками: [manager_link]"
|
1297 |
-
|
1298 |
-
#: utils/stcr_manage.php:244
|
1299 |
-
msgid "Please confirm your subscription to [post_title]"
|
1300 |
-
msgstr "Пожалуйста, подтвердите свою подписку на статью [post_title]"
|
1301 |
-
|
1302 |
-
#: utils/stcr_manage.php:245
|
1303 |
-
msgid ""
|
1304 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1305 |
-
"[post_permalink]\n"
|
1306 |
-
"\n"
|
1307 |
-
"Please confirm your request by clicking on this link:\n"
|
1308 |
-
"[confirm_link]"
|
1309 |
-
msgstr ""
|
1310 |
-
"Вы сделали запрос на получение новых комментариев к статье:\n"
|
1311 |
-
"[post_permalink]\n"
|
1312 |
-
"\n"
|
1313 |
-
"Пожалуйста, перейдите по следующей ссылке, чтобы подтвердить подписку:\n"
|
1314 |
-
"[confirm_link]"
|
1315 |
-
|
1316 |
-
#: utils/stcr_manage.php:246
|
1317 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1318 |
-
msgstr "Редактировать свои подписки на сайте [blog_name]"
|
1319 |
-
|
1320 |
-
#: utils/stcr_manage.php:247
|
1321 |
-
msgid ""
|
1322 |
-
"You have requested to manage your subscriptions to the articles on "
|
1323 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1324 |
-
msgstr ""
|
1325 |
-
|
1326 |
-
#: utils/stcr_manage.php:248
|
1327 |
-
msgid ""
|
1328 |
-
"You have requested to manage your subscriptions to the articles on "
|
1329 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1330 |
-
"[manager_link]"
|
1331 |
-
msgstr ""
|
1332 |
-
"Вы сделали запрос на редактирование своих подписок на комментарии к статьям "
|
1333 |
-
"на сайте [blog_name]. Вот ссылка на вашу личную страницу управления "
|
1334 |
-
"подписками:\n"
|
1335 |
-
"[manager_link]"
|
1336 |
-
|
1337 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1338 |
msgid "StCR System"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: utils/stcr_manage.php:
|
1342 |
-
#: utils/stcr_manage.php:
|
1343 |
-
#: utils/stcr_manage.php:
|
1344 |
-
#: utils/stcr_manage.php:
|
1345 |
-
#: utils/stcr_manage.php:
|
1346 |
msgid "You do not have sufficient permissions to access this page."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: utils/stcr_manage.php:
|
1350 |
msgid "Subscriptions"
|
1351 |
msgstr "Подписки"
|
1352 |
|
1353 |
-
#: utils/stcr_manage.php:
|
1354 |
msgid ""
|
1355 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1356 |
msgstr ""
|
1357 |
"Нужна помощь в использовани плагина Subscribe to Comments Reloaded? Посетите "
|
1358 |
"наш официальный"
|
1359 |
|
1360 |
-
#: utils/stcr_manage.php:
|
1361 |
msgid "support forum"
|
1362 |
msgstr "форум поддержки"
|
1363 |
|
1364 |
-
#: utils/stcr_manage.php:
|
1365 |
msgid "Feeling generous?"
|
1366 |
msgstr "Хотите проявить щедрость?"
|
1367 |
|
1368 |
-
#: utils/stcr_manage.php:
|
1369 |
msgid "Donate a few bucks!"
|
1370 |
msgstr "Пожертвуйте пару баксов!"
|
1371 |
|
1372 |
-
#: utils/stcr_upgrade.php:
|
1373 |
msgid "Important Notice"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: utils/stcr_upgrade.php:
|
1377 |
msgid ""
|
1378 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1379 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1381,28 +1266,28 @@ msgid ""
|
|
1381 |
"src=\""
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: utils/stcr_upgrade.php:
|
1385 |
msgid ""
|
1386 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1387 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1388 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: utils/stcr_upgrade.php:
|
1392 |
msgid ""
|
1393 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1394 |
"Comments to prevent confusion between the two plugins."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: utils/stcr_upgrade.php:
|
1398 |
msgid ""
|
1399 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1400 |
"that you want to import, you'll need to import that data manually, as only "
|
1401 |
"one import routine will ever run to prevent data loss."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: utils/stcr_upgrade.php:
|
1405 |
-
#: utils/stcr_upgrade.php:
|
1406 |
msgid ""
|
1407 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1408 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1410,20 +1295,20 @@ msgid ""
|
|
1410 |
"\"stcr-loading-animation\" src=\""
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: utils/stcr_upgrade.php:
|
1414 |
msgid ""
|
1415 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1416 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1417 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: utils/stcr_upgrade.php:
|
1421 |
msgid ""
|
1422 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1423 |
"Notification to prevent confusion between the two plugins."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: utils/stcr_upgrade.php:
|
1427 |
msgid ""
|
1428 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1429 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1431,13 +1316,13 @@ msgid ""
|
|
1431 |
"Reloaded</strong>."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: utils/stcr_upgrade.php:
|
1435 |
msgid ""
|
1436 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1437 |
"Subscriptions to prevent confusion between the two plugins."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: utils/stcr_upgrade.php:
|
1441 |
msgid ""
|
1442 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1443 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1445,7 +1330,7 @@ msgid ""
|
|
1445 |
"ever run to prevent data loss."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: utils/stcr_upgrade.php:
|
1449 |
msgid ""
|
1450 |
"<strong>Note:</strong> If you were previously using the "
|
1451 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1454,29 +1339,29 @@ msgid ""
|
|
1454 |
"respectively."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: utils/stcr_upgrade.php:
|
1458 |
msgid ""
|
1459 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: utils/stcr_upgrade.php:
|
1463 |
-
#: utils/stcr_upgrade.php:
|
1464 |
msgid ""
|
1465 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1466 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: utils/stcr_upgrade.php:
|
1470 |
msgid ""
|
1471 |
-
"Please consider to make a donation to support the plugin
|
1472 |
-
"<a href=\"\n"
|
1473 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1474 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1475 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1476 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: utils/stcr_upgrade.php:
|
1480 |
msgid ""
|
1481 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1482 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1484,23 +1369,23 @@ msgid ""
|
|
1484 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: utils/stcr_upgrade.php:
|
1488 |
msgid ""
|
1489 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1490 |
"160106."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: utils/stcr_upgrade.php:
|
1494 |
msgid ""
|
1495 |
"This version includes many changes and fixes to improve your experience with "
|
1496 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1497 |
"email templates, Subscription Checkbox position, and more!"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: utils/stcr_upgrade.php:
|
1501 |
-
#: utils/stcr_upgrade.php:
|
1502 |
-
#: utils/stcr_upgrade.php:
|
1503 |
-
#: utils/stcr_upgrade.php:
|
1504 |
msgid ""
|
1505 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1506 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1508,123 +1393,126 @@ msgid ""
|
|
1508 |
"class=\"stcr-loading-animation\" src=\""
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: utils/stcr_upgrade.php:
|
1512 |
msgid ""
|
1513 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1514 |
"160115."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: utils/stcr_upgrade.php:
|
1518 |
msgid ""
|
1519 |
"This version includes fixes to broken links while managing your subscriptions"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: utils/stcr_upgrade.php:
|
1523 |
msgid ""
|
1524 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1525 |
"160831"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: utils/stcr_upgrade.php:
|
1529 |
msgid "This version includes fixes to many bugs and also new features, "
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: utils/stcr_upgrade.php:
|
1533 |
msgid ""
|
1534 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1535 |
"address. This will help the subscribers to use the Reply option in their "
|
1536 |
"email agents."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: utils/stcr_upgrade.php:
|
1540 |
msgid ""
|
1541 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1542 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: utils/stcr_upgrade.php:
|
1546 |
msgid ""
|
1547 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1548 |
"without loosing your subscriptions. You can use this option also for reset "
|
1549 |
"all the settings, see the FAQ."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: utils/stcr_upgrade.php:
|
1553 |
msgid ""
|
1554 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1555 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1556 |
"Post Type."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: utils/stcr_upgrade.php:
|
1560 |
msgid ""
|
1561 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1562 |
"options to and the management link only by email and not to display it on "
|
1563 |
"the request link page."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: utils/stcr_upgrade.php:
|
1567 |
msgid ""
|
1568 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1569 |
"160902"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: utils/stcr_upgrade.php:
|
1573 |
msgid ""
|
1574 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1575 |
"previous 160831 version."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: utils/stcr_upgrade.php:
|
1579 |
msgid "Settings"
|
1580 |
msgstr "Scegli ordine"
|
1581 |
|
1582 |
-
#: utils/stcr_upgrade.php:
|
1583 |
msgid ""
|
1584 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1585 |
"160915"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: utils/stcr_upgrade.php:
|
1589 |
-
#: utils/stcr_upgrade.php:
|
1590 |
msgid "This version includes fixes and improvements, "
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: utils/stcr_upgrade.php:
|
1594 |
msgid ""
|
1595 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1596 |
"dropdown."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: utils/stcr_upgrade.php:
|
1600 |
msgid ""
|
1601 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: utils/stcr_upgrade.php:
|
|
|
1605 |
msgid "Log Settings"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: utils/stcr_upgrade.php:
|
|
|
1609 |
msgid ""
|
1610 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: utils/stcr_upgrade.php:
|
1614 |
msgid ""
|
1615 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1616 |
"enable."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: utils/stcr_upgrade.php:
|
1620 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
|
|
1624 |
msgid "The support of this plugin is given thanks to your donations."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: utils/stcr_upgrade.php:
|
1628 |
msgid ""
|
1629 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1630 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1634,19 +1522,19 @@ msgid ""
|
|
1634 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: utils/stcr_upgrade.php:
|
1638 |
msgid ""
|
1639 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1640 |
"installation regarding a database table creation."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: utils/stcr_upgrade.php:
|
1644 |
msgid ""
|
1645 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1646 |
"Awesome."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: utils/stcr_upgrade.php:
|
1650 |
msgid ""
|
1651 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1652 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1657,7 +1545,202 @@ msgid ""
|
|
1657 |
"for the users that have supported the plugin development."
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1661 |
msgid "StCR Notification"
|
1662 |
msgstr "Уведомления"
|
1663 |
|
@@ -1669,6 +1752,30 @@ msgstr "Не подписываться"
|
|
1669 |
msgid "All"
|
1670 |
msgstr "Все"
|
1671 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1672 |
#~ msgid ""
|
1673 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1674 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:12-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:12-0700\n"
|
7 |
+
"Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
|
8 |
"Language-Team: due chiacchiere <info@duechiacchiere.it>\n"
|
9 |
"Language: ru_RU\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 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Редактировать подписки"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Форма комментария"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Страница управления"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Уведомления"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Параметры"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "Поддержка"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr "Не хотите делать пожертвование? Вы все равно можете помочь"
|
48 |
|
341 |
msgid "Sorry, no subscriptions match your search criteria."
|
342 |
msgstr "Извините, ни одна подписка не соответствует вашему поисковому запросу."
|
343 |
|
344 |
+
#: options/panel10.php:41
|
345 |
msgid "The log file has been successfully deleted."
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: options/panel10.php:46
|
349 |
msgid "Can't delete the log file, check the file permissions."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: options/panel10.php:52
|
353 |
msgid "The log file does not exists."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: options/panel10.php:66 options/panel10.php:110
|
357 |
msgid "Enable Log Information"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: options/panel10.php:72 options/panel10.php:119
|
361 |
msgid "Enable Auto clean log data"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
365 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
366 |
msgid "Your settings have been successfully updated."
|
367 |
msgstr "Ваши настройки успешно обновлены."
|
368 |
|
369 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
370 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
371 |
msgid "There was an error updating the following fields:"
|
372 |
msgstr "Произошла ошибка в обновлении следующих полей:"
|
373 |
|
374 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
375 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
376 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
377 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
378 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
379 |
+
#: options/panel5.php:210 options/panel5.php:219
|
380 |
msgid "Yes"
|
381 |
msgstr "Да"
|
382 |
|
383 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
384 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
385 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
386 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
387 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
388 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
389 |
msgid "No"
|
390 |
msgstr "Нет"
|
391 |
|
392 |
+
#: options/panel10.php:114
|
393 |
msgid ""
|
394 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
395 |
"purposes."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: options/panel10.php:125
|
399 |
msgid "Hourly"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: options/panel10.php:126
|
403 |
msgid "Twice Daily"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: options/panel10.php:127
|
407 |
msgid "Daily"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: options/panel10.php:129
|
411 |
msgid "If enabled, StCR will auto clean your information every day."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: options/panel10.php:134
|
415 |
msgid "Clean Up Log Archive"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: options/panel10.php:138
|
419 |
msgid ""
|
420 |
"If you want to clean up the log archive please click the following button"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: options/panel10.php:140
|
424 |
msgid "Clean"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: options/panel10.php:147 options/panel10.php:150
|
428 |
msgid "System Information"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
432 |
+
#: options/panel4.php:283 options/panel5.php:265
|
433 |
msgid "Save Changes"
|
434 |
msgstr "Сохранить изменения"
|
435 |
|
771 |
#: options/panel4.php:128
|
772 |
msgid ""
|
773 |
"This will be use when the user click reply on their email agent. If not set "
|
774 |
+
"it will be the same as the Sender email address."
|
775 |
msgstr ""
|
776 |
|
777 |
#: options/panel4.php:147
|
787 |
|
788 |
#: options/panel4.php:171
|
789 |
msgid ""
|
790 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
791 |
+
"all the content and save the options.</strong></p>"
|
792 |
msgstr ""
|
793 |
|
794 |
#: options/panel4.php:184
|
835 |
"[blog_name]"
|
836 |
msgstr "Тема письма о подтверждении. Разрешенный тег: [post_title]"
|
837 |
|
838 |
+
#: options/panel5.php:38
|
839 |
+
#, fuzzy
|
840 |
+
#| msgid "Your settings have been successfully updated."
|
841 |
+
msgid "Your settings have been successfully reset."
|
842 |
+
msgstr "Ваши настройки успешно обновлены."
|
843 |
+
|
844 |
+
#: options/panel5.php:40
|
845 |
+
#, fuzzy
|
846 |
+
#| msgid "There was an error updating the following fields:"
|
847 |
+
msgid "There was an error deleting the options:"
|
848 |
+
msgstr "Произошла ошибка в обновлении следующих полей:"
|
849 |
+
|
850 |
+
#: options/panel5.php:48 options/panel5.php:108
|
851 |
msgid "Show StCR checkbox / dropdown"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: options/panel5.php:51
|
855 |
msgid "Safetly Uninstall"
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: options/panel5.php:54 options/panel5.php:125
|
859 |
msgid "Autopurge requests"
|
860 |
msgstr "Автоматически удалять запросы"
|
861 |
|
862 |
+
#: options/panel5.php:57 options/panel5.php:143
|
863 |
msgid "Enable double check"
|
864 |
msgstr "Включить двойное подтверждение"
|
865 |
|
866 |
+
#: options/panel5.php:60 options/panel5.php:134
|
867 |
msgid "StCR Position"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: options/panel5.php:63 options/panel5.php:151
|
871 |
msgid "Subscribe authors"
|
872 |
msgstr "Ярлык оформленной подписки"
|
873 |
|
874 |
+
#: options/panel5.php:66 options/panel5.php:161
|
875 |
msgid "Enable HTML emails"
|
876 |
msgstr "Использовать HTML письма"
|
877 |
|
878 |
+
#: options/panel5.php:69
|
879 |
msgid "HTMLify Links in HTML emails"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: options/panel5.php:72
|
883 |
msgid "Send trackbacks"
|
884 |
msgstr "Отправлять трэкбеки"
|
885 |
|
886 |
+
#: options/panel5.php:75
|
887 |
msgid "Notify admin"
|
888 |
msgstr "Уведомить админа"
|
889 |
|
890 |
+
#: options/panel5.php:78 options/panel5.php:199
|
891 |
msgid "Let admin subscribe"
|
892 |
msgstr "Позволить админу подписываться"
|
893 |
|
894 |
+
#: options/panel5.php:81 options/panel5.php:208
|
895 |
msgid "BCC admin on Notifications"
|
896 |
msgstr "Уведомления"
|
897 |
|
898 |
+
#: options/panel5.php:84 options/panel5.php:217
|
899 |
msgid "Enable Font Awesome"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
903 |
+
msgid "Reset All Options"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: options/panel5.php:112
|
907 |
msgid ""
|
908 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
909 |
"You should leave it to Yes always. "
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: options/panel5.php:117
|
913 |
msgid "Safely Uninstall"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: options/panel5.php:121
|
917 |
msgid ""
|
918 |
"This option will allow you to delete the plugin with WordPress without "
|
919 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: options/panel5.php:128
|
923 |
msgid "days"
|
924 |
msgstr "дней"
|
925 |
|
926 |
+
#: options/panel5.php:129
|
927 |
msgid ""
|
928 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
929 |
"this feature."
|
931 |
"Удалять ожидающие подтверждения (не подтвержденные) подписки через Х дней. "
|
932 |
"Ноль отключает эту функцию."
|
933 |
|
934 |
+
#: options/panel5.php:138
|
935 |
msgid ""
|
936 |
"If this option is enable the subscription box will be above the submit "
|
937 |
"button in your comment form. Use this when your theme is outdated and using "
|
938 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: options/panel5.php:147
|
942 |
msgid ""
|
943 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
944 |
"misuse)."
|
946 |
"Отправлять письмо с просьбой подтвердить подписку (чтобы избежать "
|
947 |
"использования эл. адреса без ведома владельца)"
|
948 |
|
949 |
+
#: options/panel5.php:156
|
950 |
msgid ""
|
951 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: options/panel5.php:165
|
955 |
msgid ""
|
956 |
"If enabled, will send email messages with content-type = text/html instead "
|
957 |
"of text/plain"
|
959 |
"При выборе этой функции сообщения будут отправляться в формате текст/html "
|
960 |
"вместо обычного текста"
|
961 |
|
962 |
+
#: options/panel5.php:170
|
963 |
msgid "HTMLify links in emails"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: options/panel5.php:175
|
967 |
msgid ""
|
968 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
969 |
"</a></code> (only when HTML emails enabled)."
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: options/panel5.php:180
|
973 |
msgid "Process trackbacks"
|
974 |
msgstr "Обрабатывать трэкбеки"
|
975 |
|
976 |
+
#: options/panel5.php:184
|
977 |
msgid ""
|
978 |
"Notify users when a new trackback or pingback is added to the discussion."
|
979 |
msgstr "Уведомлять подписчиков о новых трэкбеках или пингбэках к обсуждению"
|
980 |
|
981 |
+
#: options/panel5.php:189
|
982 |
msgid "Track all subscriptions"
|
983 |
msgstr "Отследить все подписки"
|
984 |
|
985 |
+
#: options/panel5.php:194
|
986 |
msgid "Notify the administrator when users subscribe without commenting."
|
987 |
msgstr ""
|
988 |
"Уведомлять администратора, когда пользователи подписываются без комментария."
|
989 |
|
990 |
+
#: options/panel5.php:203
|
991 |
msgid "Let the administrator subscribe to comments when logged in."
|
992 |
msgstr "Позволить админу подписываться, когда он авторизован."
|
993 |
|
994 |
+
#: options/panel5.php:212
|
995 |
msgid "Send a copy of all Notifications to the administrator."
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: options/panel5.php:221
|
999 |
msgid ""
|
1000 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1001 |
"you theme already add this into your site."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: options/panel5.php:226
|
1005 |
msgid "StCR Unique Key"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: options/panel5.php:231
|
1009 |
msgid "This Unique Key is not set, please click the following button to "
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1013 |
msgid "Generate"
|
1014 |
msgstr "Tasso di rimbalzo"
|
1015 |
|
1016 |
+
#: options/panel5.php:243
|
1017 |
msgid ""
|
1018 |
"This Unique Key will be use to send the notification to your subscribers "
|
1019 |
"with more security."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: options/panel5.php:256
|
1023 |
+
msgid ""
|
1024 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1025 |
+
"with caution."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: options/panel5.php:258
|
1029 |
+
msgid "Yes, Delete Options including subscriptions."
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: options/panel5.php:259
|
1033 |
+
msgid "No, Only delete the StCR Options."
|
1034 |
+
msgstr ""
|
1035 |
|
1036 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1037 |
+
msgid ""
|
1038 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1039 |
+
"hidden=\"true\"></i>"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1043 |
+
#, fuzzy
|
1044 |
+
#| msgid ""
|
1045 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1046 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1047 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1048 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1049 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1050 |
msgid ""
|
1051 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1052 |
"consider supporting the author if this plugin made your web site better, "
|
1053 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1054 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1055 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1056 |
"strong>, and to buy some food for my hungry family."
|
1057 |
msgstr ""
|
1063 |
"плагина <b>Subscribe to Comments Reloaded</b> и на то, чтобы купить немного "
|
1064 |
"еды моей голодной семье."
|
1065 |
|
1066 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1067 |
+
#, fuzzy
|
1068 |
+
#| msgid "You can help"
|
1069 |
+
msgid "You can still help"
|
1070 |
+
msgstr "Вы можете помочь"
|
1071 |
|
1072 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1073 |
+
#, fuzzy
|
1074 |
+
#| msgid ""
|
1075 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1076 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1077 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1078 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1079 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1080 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1081 |
+
msgid ""
|
1082 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1083 |
+
"Please let your readers know what makes your blog better. You can also "
|
1084 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1085 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1086 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1087 |
msgstr ""
|
1088 |
"Если вы не хотите помочь деньгами, пожалуйста, рассмотрите возможность "
|
1089 |
"написать о моем плагине в своем блоге и оставить ссылку на страницу плагина. "
|
1093 |
"Comments Reloaded</b> и так далее. Что бы вы ни выбрали, спасибо, что "
|
1094 |
"пользуетесь моим плагином!"
|
1095 |
|
1096 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1097 |
msgid "Subscribe to the Beta testers"
|
1098 |
msgstr "Ярлык оформленной подписки"
|
1099 |
|
1100 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1101 |
msgid ""
|
1102 |
"Before a new Update we release a Beta version so that our current users can "
|
1103 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1105 |
"a>"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1109 |
msgid "Vote and show your appreciation"
|
1110 |
msgstr "Проголосуйте и покажите свою признательность"
|
1111 |
|
1112 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1113 |
msgid ""
|
1114 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1115 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1120 |
"wordpress.org/extend/plugins/subscribe-to-comments-reloaded/\">Оцените</a> "
|
1121 |
"его в разделе плагинов на сайте Wordpress."
|
1122 |
|
1123 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1124 |
msgid "Did you find a Bug on the plugin?"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1128 |
msgid ""
|
1129 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1130 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1219 |
msgid "You have request to manage another email address and this is forbidden."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1223 |
msgid "StCR System"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1227 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1228 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1229 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1230 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1231 |
msgid "You do not have sufficient permissions to access this page."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: utils/stcr_manage.php:726
|
1235 |
msgid "Subscriptions"
|
1236 |
msgstr "Подписки"
|
1237 |
|
1238 |
+
#: utils/stcr_manage.php:782
|
1239 |
msgid ""
|
1240 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1241 |
msgstr ""
|
1242 |
"Нужна помощь в использовани плагина Subscribe to Comments Reloaded? Посетите "
|
1243 |
"наш официальный"
|
1244 |
|
1245 |
+
#: utils/stcr_manage.php:782
|
1246 |
msgid "support forum"
|
1247 |
msgstr "форум поддержки"
|
1248 |
|
1249 |
+
#: utils/stcr_manage.php:783
|
1250 |
msgid "Feeling generous?"
|
1251 |
msgstr "Хотите проявить щедрость?"
|
1252 |
|
1253 |
+
#: utils/stcr_manage.php:783
|
1254 |
msgid "Donate a few bucks!"
|
1255 |
msgstr "Пожертвуйте пару баксов!"
|
1256 |
|
1257 |
+
#: utils/stcr_upgrade.php:72
|
1258 |
msgid "Important Notice"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: utils/stcr_upgrade.php:120
|
1262 |
msgid ""
|
1263 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1264 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1266 |
"src=\""
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: utils/stcr_upgrade.php:175
|
1270 |
msgid ""
|
1271 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1272 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1273 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: utils/stcr_upgrade.php:175
|
1277 |
msgid ""
|
1278 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1279 |
"Comments to prevent confusion between the two plugins."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: utils/stcr_upgrade.php:176
|
1283 |
msgid ""
|
1284 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1285 |
"that you want to import, you'll need to import that data manually, as only "
|
1286 |
"one import routine will ever run to prevent data loss."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1290 |
+
#: utils/stcr_upgrade.php:400
|
1291 |
msgid ""
|
1292 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1293 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1295 |
"\"stcr-loading-animation\" src=\""
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: utils/stcr_upgrade.php:250
|
1299 |
msgid ""
|
1300 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1301 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1302 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: utils/stcr_upgrade.php:250
|
1306 |
msgid ""
|
1307 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1308 |
"Notification to prevent confusion between the two plugins."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: utils/stcr_upgrade.php:397
|
1312 |
msgid ""
|
1313 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1314 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1316 |
"Reloaded</strong>."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: utils/stcr_upgrade.php:397
|
1320 |
msgid ""
|
1321 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1322 |
"Subscriptions to prevent confusion between the two plugins."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: utils/stcr_upgrade.php:398
|
1326 |
msgid ""
|
1327 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1328 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1330 |
"ever run to prevent data loss."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: utils/stcr_upgrade.php:399
|
1334 |
msgid ""
|
1335 |
"<strong>Note:</strong> If you were previously using the "
|
1336 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1339 |
"respectively."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: utils/stcr_upgrade.php:413
|
1343 |
msgid ""
|
1344 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1348 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
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:415
|
1355 |
msgid ""
|
1356 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1357 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <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¤cy_code=USD&bn=PP%2dDonationsBF"
|
1361 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: utils/stcr_upgrade.php:417
|
1365 |
msgid ""
|
1366 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1367 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1369 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: utils/stcr_upgrade.php:428
|
1373 |
msgid ""
|
1374 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1375 |
"160106."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: utils/stcr_upgrade.php:429
|
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:430 utils/stcr_upgrade.php:445
|
1386 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1387 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1388 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1389 |
msgid ""
|
1390 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1391 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1393 |
"class=\"stcr-loading-animation\" src=\""
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: utils/stcr_upgrade.php:443
|
1397 |
msgid ""
|
1398 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1399 |
"160115."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: utils/stcr_upgrade.php:444
|
1403 |
msgid ""
|
1404 |
"This version includes fixes to broken links while managing your subscriptions"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: utils/stcr_upgrade.php:458
|
1408 |
msgid ""
|
1409 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1410 |
"160831"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1414 |
msgid "This version includes fixes to many bugs and also new features, "
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1418 |
msgid ""
|
1419 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1420 |
"address. This will help the subscribers to use the Reply option in their "
|
1421 |
"email agents."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1425 |
msgid ""
|
1426 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1427 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1431 |
msgid ""
|
1432 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1433 |
"without loosing your subscriptions. You can use this option also for reset "
|
1434 |
"all the settings, see the FAQ."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1438 |
msgid ""
|
1439 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1440 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1441 |
"Post Type."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1445 |
msgid ""
|
1446 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1447 |
"options to and the management link only by email and not to display it on "
|
1448 |
"the request link page."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: utils/stcr_upgrade.php:480
|
1452 |
msgid ""
|
1453 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1454 |
"160902"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: utils/stcr_upgrade.php:483
|
1458 |
msgid ""
|
1459 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1460 |
"previous 160831 version."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1464 |
msgid "Settings"
|
1465 |
msgstr "Scegli ordine"
|
1466 |
|
1467 |
+
#: utils/stcr_upgrade.php:504
|
1468 |
msgid ""
|
1469 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1470 |
"160915"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1474 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1475 |
msgid "This version includes fixes and improvements, "
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: utils/stcr_upgrade.php:508
|
1479 |
msgid ""
|
1480 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1481 |
"dropdown."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: utils/stcr_upgrade.php:509
|
1485 |
msgid ""
|
1486 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1490 |
+
#: utils/stcr_upgrade.php:576
|
1491 |
msgid "Log Settings"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1495 |
+
#: utils/stcr_upgrade.php:580
|
1496 |
msgid ""
|
1497 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: utils/stcr_upgrade.php:529
|
1501 |
msgid ""
|
1502 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1503 |
"enable."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: utils/stcr_upgrade.php:530
|
1507 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1511 |
+
#: utils/stcr_upgrade.php:590
|
1512 |
msgid "The support of this plugin is given thanks to your donations."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: utils/stcr_upgrade.php:536
|
1516 |
msgid ""
|
1517 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1518 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1522 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: utils/stcr_upgrade.php:557
|
1526 |
msgid ""
|
1527 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1528 |
"installation regarding a database table creation."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: utils/stcr_upgrade.php:558
|
1532 |
msgid ""
|
1533 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1534 |
"Awesome."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: utils/stcr_upgrade.php:563
|
1538 |
msgid ""
|
1539 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1540 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1545 |
"for the users that have supported the plugin development."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: utils/stcr_upgrade.php:584
|
1549 |
+
msgid ""
|
1550 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1551 |
+
"issues."
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: utils/stcr_upgrade.php:585
|
1555 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: utils/stcr_upgrade.php:586
|
1559 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: utils/stcr_upgrade.php:591
|
1563 |
+
msgid ""
|
1564 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1565 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1566 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1567 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1568 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1569 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1570 |
+
"Thanks for all the users that have supported the plugin development."
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: utils/stcr_utils.php:196
|
1574 |
+
msgid ""
|
1575 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1576 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1577 |
+
msgstr ""
|
1578 |
+
"Получать новые комментарии по электронной почте. Вы можете <a "
|
1579 |
+
"href='[subscribe_link]'>подписаться</a> без комментирования."
|
1580 |
+
|
1581 |
+
#: utils/stcr_utils.php:197
|
1582 |
+
msgid ""
|
1583 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1584 |
+
"subscriptions."
|
1585 |
+
msgstr ""
|
1586 |
+
"Вы подписаны на эту статью. <a href='[manager_link]'>Редактировать</a> свои "
|
1587 |
+
"подписки."
|
1588 |
+
|
1589 |
+
#: utils/stcr_utils.php:198
|
1590 |
+
msgid ""
|
1591 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1592 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1593 |
+
msgstr ""
|
1594 |
+
"Ваша подписка на эту статью нуждается в подтверждении. <a "
|
1595 |
+
"href='[manager_link]'>Редактировать</a> свои подписки."
|
1596 |
+
|
1597 |
+
#: utils/stcr_utils.php:199
|
1598 |
+
msgid ""
|
1599 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1600 |
+
msgstr ""
|
1601 |
+
"Вы можете <a href='[manager_link]'>управлять подписками</a> на эту запись."
|
1602 |
+
|
1603 |
+
#: utils/stcr_utils.php:205
|
1604 |
+
msgid ""
|
1605 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1606 |
+
"will send you a message containing the link to access your personal "
|
1607 |
+
"management page."
|
1608 |
+
msgstr ""
|
1609 |
+
"Для управления своими подписками, пожалуйста, введите свой электронный адрес "
|
1610 |
+
"в форму ниже. Мы отправим вам сообщение со ссылкой на вашу персональную "
|
1611 |
+
"страницу управления."
|
1612 |
+
|
1613 |
+
#: utils/stcr_utils.php:206
|
1614 |
+
msgid ""
|
1615 |
+
"Thank you for using our subscription service. Your request has been "
|
1616 |
+
"completed, and you should receive an email with the management link in a few "
|
1617 |
+
"minutes."
|
1618 |
+
msgstr ""
|
1619 |
+
"Спасибо, что пользуетесь нашим сервисом подписок. Ваш запрос выполнен. В "
|
1620 |
+
"течение нескольких минут вы должны получить письмо со ссылкой на страницу "
|
1621 |
+
"управления подписками."
|
1622 |
+
|
1623 |
+
#: utils/stcr_utils.php:207
|
1624 |
+
msgid ""
|
1625 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1626 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1627 |
+
"form here below and you're all set."
|
1628 |
+
msgstr ""
|
1629 |
+
"Вы можете следить за обсуждением статьи <strong>[post_title]</strong>, не "
|
1630 |
+
"оставляя своего комментария. Здорово, не правда ли? Просто введите свой "
|
1631 |
+
"электронный адрес в форму ниже, и готово!"
|
1632 |
+
|
1633 |
+
#: utils/stcr_utils.php:208
|
1634 |
+
msgid ""
|
1635 |
+
"Thank you for using our subscription service. Your request has been "
|
1636 |
+
"completed. You will receive a notification email every time a new comment to "
|
1637 |
+
"this article is approved and posted by the administrator."
|
1638 |
+
msgstr ""
|
1639 |
+
"Спасибо, что пользуетесь нашим сервисом подписок. Ваш запрос выполнен. Вы "
|
1640 |
+
"будете получать уведомления каждый раз, как новый комментарий к этот статье "
|
1641 |
+
"будет одобрен и опубликован администратором сайта."
|
1642 |
+
|
1643 |
+
#: utils/stcr_utils.php:209
|
1644 |
+
msgid ""
|
1645 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1646 |
+
"request, please check your email for the verification message and follow the "
|
1647 |
+
"instructions."
|
1648 |
+
msgstr ""
|
1649 |
+
"Спасибо, что пользуетесь нашим сервисом подписок. Чтобы подтвердить свой "
|
1650 |
+
"запрос, пожалуйста, проверьте свою почту и следуйте инструкциям в письме о "
|
1651 |
+
"подтверждении."
|
1652 |
+
|
1653 |
+
#: utils/stcr_utils.php:210
|
1654 |
+
msgid ""
|
1655 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1656 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1657 |
+
msgstr ""
|
1658 |
+
"Чтобы отменить или приостановить одно или более уведомлений, щелкните в "
|
1659 |
+
"соответствующем окошке выбора и нажмите на кнопку в конце списка."
|
1660 |
+
|
1661 |
+
#: utils/stcr_utils.php:211
|
1662 |
+
msgid ""
|
1663 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1664 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1665 |
+
"You are currently subscribed to:"
|
1666 |
+
msgstr ""
|
1667 |
+
"Чтобы отменить или приостановить одно или более уведомлений, щелкните в "
|
1668 |
+
"соответствующем окошке выбора и нажмите на кнопку в конце списка. На данный "
|
1669 |
+
"момент вы подписаны на:"
|
1670 |
+
|
1671 |
+
#: utils/stcr_utils.php:215
|
1672 |
+
msgid "There is a new comment to [post_title]"
|
1673 |
+
msgstr "Появился новый комментарий к статье [post_title]"
|
1674 |
+
|
1675 |
+
#: utils/stcr_utils.php:216
|
1676 |
+
msgid ""
|
1677 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1678 |
+
"\n"
|
1679 |
+
"<hr />\n"
|
1680 |
+
"<strong>Comment link:</strong> <a href="
|
1681 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1682 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1683 |
+
"\n"
|
1684 |
+
"<strong>Comment:</strong>\n"
|
1685 |
+
"[comment_content]\n"
|
1686 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1687 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1688 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1689 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1690 |
+
msgstr ""
|
1691 |
+
|
1692 |
+
#: utils/stcr_utils.php:217
|
1693 |
+
msgid "Please confirm your subscription to [post_title]"
|
1694 |
+
msgstr "Пожалуйста, подтвердите свою подписку на статью [post_title]"
|
1695 |
+
|
1696 |
+
#: utils/stcr_utils.php:218
|
1697 |
+
#, fuzzy
|
1698 |
+
#| msgid ""
|
1699 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1700 |
+
#| "[post_permalink]\n"
|
1701 |
+
#| "\n"
|
1702 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1703 |
+
#| "[confirm_link]"
|
1704 |
+
msgid ""
|
1705 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1706 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1707 |
+
"\n"
|
1708 |
+
"Please confirm your request by clicking on this link:\n"
|
1709 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1710 |
+
msgstr ""
|
1711 |
+
"Вы сделали запрос на получение новых комментариев к статье:\n"
|
1712 |
+
"[post_permalink]\n"
|
1713 |
+
"\n"
|
1714 |
+
"Пожалуйста, перейдите по следующей ссылке, чтобы подтвердить подписку:\n"
|
1715 |
+
"[confirm_link]"
|
1716 |
+
|
1717 |
+
#: utils/stcr_utils.php:219
|
1718 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1719 |
+
msgstr "Редактировать свои подписки на сайте [blog_name]"
|
1720 |
+
|
1721 |
+
#: utils/stcr_utils.php:220
|
1722 |
+
msgid ""
|
1723 |
+
"You have requested to manage your subscriptions to the articles on "
|
1724 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: utils/stcr_utils.php:221
|
1728 |
+
#, fuzzy
|
1729 |
+
#| msgid ""
|
1730 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1731 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1732 |
+
#| "[manager_link]"
|
1733 |
+
msgid ""
|
1734 |
+
"You have requested to manage your subscriptions to the articles on "
|
1735 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1736 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1737 |
+
msgstr ""
|
1738 |
+
"Вы сделали запрос на редактирование своих подписок на комментарии к статьям "
|
1739 |
+
"на сайте [blog_name]. Вот ссылка на вашу личную страницу управления "
|
1740 |
+
"подписками:\n"
|
1741 |
+
"[manager_link]"
|
1742 |
+
|
1743 |
+
#: utils/stcr_utils.php:300
|
1744 |
msgid "StCR Notification"
|
1745 |
msgstr "Уведомления"
|
1746 |
|
1752 |
msgid "All"
|
1753 |
msgstr "Все"
|
1754 |
|
1755 |
+
#~ msgid "Support the developers"
|
1756 |
+
#~ msgstr "Поддержать автора"
|
1757 |
+
|
1758 |
+
#~ msgid "Don't want to donate? You can still help"
|
1759 |
+
#~ msgstr "Не хотите делать пожертвование? Вы все равно можете помочь"
|
1760 |
+
|
1761 |
+
#~ msgid ""
|
1762 |
+
#~ "There is a new comment to [post_title].\n"
|
1763 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1764 |
+
#~ "Author: [comment_author]\n"
|
1765 |
+
#~ "Comment:\n"
|
1766 |
+
#~ "[comment_content]\n"
|
1767 |
+
#~ "Permalink: [post_permalink]\n"
|
1768 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1769 |
+
#~ msgstr ""
|
1770 |
+
#~ "Появился новый комментарий к статье [post_title].\n"
|
1771 |
+
#~ "Ссылка на комментарий: [comment_permalink]\n"
|
1772 |
+
#~ "Автор: [comment_author]\n"
|
1773 |
+
#~ "Комментарий:\n"
|
1774 |
+
#~ "[comment_content]\n"
|
1775 |
+
#~ "\n"
|
1776 |
+
#~ "Ссылка на статью: [post_permalink]\n"
|
1777 |
+
#~ "Управление подписками: [manager_link]"
|
1778 |
+
|
1779 |
#~ msgid ""
|
1780 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1781 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: Filip \"inzaghi89\" Cierpich <inzaghi89@gmail.com>\n"
|
9 |
"Language: sr\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -14,40 +14,36 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Generator: Poedit
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: options/index.php:
|
21 |
-
#: utils/
|
22 |
msgid "Manage subscriptions"
|
23 |
msgstr "Управљај пријавама"
|
24 |
|
25 |
-
#: options/index.php:
|
26 |
msgid "Comment Form"
|
27 |
msgstr "Формулар за коментаре"
|
28 |
|
29 |
-
#: options/index.php:
|
30 |
msgid "Management Page"
|
31 |
msgstr "Управљачка страница"
|
32 |
|
33 |
-
#: options/index.php:
|
34 |
msgid "Notifications"
|
35 |
msgstr "Обавештења"
|
36 |
|
37 |
-
#: options/index.php:
|
38 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
39 |
msgid "Options"
|
40 |
msgstr "Параметри"
|
41 |
|
42 |
-
#: options/index.php:
|
43 |
-
msgid "You can help"
|
44 |
-
msgstr "И Ви можете да помогнете"
|
45 |
-
|
46 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
47 |
msgid "Support"
|
48 |
msgstr "Wsparcie"
|
49 |
|
50 |
-
#: options/index.php:
|
51 |
msgid "Donate"
|
52 |
msgstr ""
|
53 |
|
@@ -348,95 +344,95 @@ msgstr "Ажурирај пријаве"
|
|
348 |
msgid "Sorry, no subscriptions match your search criteria."
|
349 |
msgstr "Нажалост нема пријава које одговарају траженим критеријумима."
|
350 |
|
351 |
-
#: options/panel10.php:
|
352 |
msgid "The log file has been successfully deleted."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: options/panel10.php:
|
356 |
msgid "Can't delete the log file, check the file permissions."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: options/panel10.php:
|
360 |
msgid "The log file does not exists."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: options/panel10.php:
|
364 |
msgid "Enable Log Information"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: options/panel10.php:
|
368 |
msgid "Enable Auto clean log data"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: options/panel10.php:
|
372 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
373 |
msgid "Your settings have been successfully updated."
|
374 |
msgstr "Ваша подешавања су успешно ажурирана."
|
375 |
|
376 |
-
#: options/panel10.php:
|
377 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
378 |
msgid "There was an error updating the following fields:"
|
379 |
msgstr "Дошло је до грешке при ажурирању следећих поља:"
|
380 |
|
381 |
-
#: options/panel10.php:
|
382 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
-
#: options/panel5.php:
|
387 |
msgid "Yes"
|
388 |
msgstr "Да"
|
389 |
|
390 |
-
#: options/panel10.php:
|
391 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
-
#: options/panel5.php:
|
396 |
msgid "No"
|
397 |
msgstr "Не"
|
398 |
|
399 |
-
#: options/panel10.php:
|
400 |
msgid ""
|
401 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
402 |
"purposes."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: options/panel10.php:
|
406 |
msgid "Hourly"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: options/panel10.php:
|
410 |
msgid "Twice Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: options/panel10.php:
|
414 |
msgid "Daily"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: options/panel10.php:
|
418 |
msgid "If enabled, StCR will auto clean your information every day."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: options/panel10.php:
|
422 |
msgid "Clean Up Log Archive"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: options/panel10.php:
|
426 |
msgid ""
|
427 |
"If you want to clean up the log archive please click the following button"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: options/panel10.php:
|
431 |
msgid "Clean"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: options/panel10.php:
|
435 |
msgid "System Information"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: options/panel10.php:
|
439 |
-
#: options/panel4.php:283 options/panel5.php:
|
440 |
msgid "Save Changes"
|
441 |
msgstr "Сачувај промене"
|
442 |
|
@@ -781,7 +777,7 @@ msgstr "Само одговори"
|
|
781 |
#: options/panel4.php:128
|
782 |
msgid ""
|
783 |
"This will be use when the user click reply on their email agent. If not set "
|
784 |
-
"will be the same as the Sender email address."
|
785 |
msgstr ""
|
786 |
|
787 |
#: options/panel4.php:147
|
@@ -797,8 +793,8 @@ msgstr ""
|
|
797 |
|
798 |
#: options/panel4.php:171
|
799 |
msgid ""
|
800 |
-
"<p><strong>Note: To get a default template clear
|
801 |
-
"the options.</strong></p>"
|
802 |
msgstr ""
|
803 |
|
804 |
#: options/panel4.php:184
|
@@ -845,79 +841,95 @@ msgid ""
|
|
845 |
"[blog_name]"
|
846 |
msgstr "Наслов е-поште за потврду. Доступне ознаке: [post_title]"
|
847 |
|
848 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
849 |
msgid "Show StCR checkbox / dropdown"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: options/panel5.php:
|
853 |
msgid "Safetly Uninstall"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: options/panel5.php:
|
857 |
msgid "Autopurge requests"
|
858 |
msgstr "Аутоматско чишћење"
|
859 |
|
860 |
-
#: options/panel5.php:
|
861 |
msgid "Enable double check"
|
862 |
msgstr "Укључи двоструку верификацију"
|
863 |
|
864 |
-
#: options/panel5.php:
|
865 |
msgid "StCR Position"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: options/panel5.php:
|
869 |
msgid "Subscribe authors"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: options/panel5.php:
|
873 |
msgid "Enable HTML emails"
|
874 |
msgstr "Укључи HTML за е-пошту"
|
875 |
|
876 |
-
#: options/panel5.php:
|
877 |
msgid "HTMLify Links in HTML emails"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: options/panel5.php:
|
881 |
msgid "Send trackbacks"
|
882 |
msgstr "Шаљи повратне везе"
|
883 |
|
884 |
-
#: options/panel5.php:
|
885 |
msgid "Notify admin"
|
886 |
msgstr "Обавештавај администратора"
|
887 |
|
888 |
-
#: options/panel5.php:
|
889 |
msgid "Let admin subscribe"
|
890 |
msgstr "Дозволи пријаве администратору"
|
891 |
|
892 |
-
#: options/panel5.php:
|
893 |
msgid "BCC admin on Notifications"
|
894 |
msgstr "Обавештења"
|
895 |
|
896 |
-
#: options/panel5.php:
|
897 |
msgid "Enable Font Awesome"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
901 |
msgid ""
|
902 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
903 |
"You should leave it to Yes always. "
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: options/panel5.php:
|
907 |
msgid "Safely Uninstall"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: options/panel5.php:
|
911 |
msgid ""
|
912 |
"This option will allow you to delete the plugin with WordPress without "
|
913 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: options/panel5.php:
|
917 |
msgid "days"
|
918 |
msgstr "дана"
|
919 |
|
920 |
-
#: options/panel5.php:
|
921 |
msgid ""
|
922 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
923 |
"this feature."
|
@@ -925,101 +937,125 @@ msgstr ""
|
|
925 |
"Бриши потврде које су на чекању (непотврђене) после X дана. \"Нула\" "
|
926 |
"искључује ову функцију."
|
927 |
|
928 |
-
#: options/panel5.php:
|
929 |
msgid ""
|
930 |
"If this option is enable the subscription box will be above the submit "
|
931 |
"button in your comment form. Use this when your theme is outdated and using "
|
932 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: options/panel5.php:
|
936 |
msgid ""
|
937 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
938 |
"misuse)."
|
939 |
msgstr "Шаљи е-пошту са потврдом пријаве (да се избегне злоупотреба адреса)."
|
940 |
|
941 |
-
#: options/panel5.php:
|
942 |
msgid ""
|
943 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: options/panel5.php:
|
947 |
msgid ""
|
948 |
"If enabled, will send email messages with content-type = text/html instead "
|
949 |
"of text/plain"
|
950 |
msgstr ""
|
951 |
"Ако је укључено, биће послата е-пошта са text/html уместо обичног текста."
|
952 |
|
953 |
-
#: options/panel5.php:
|
954 |
msgid "HTMLify links in emails"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: options/panel5.php:
|
958 |
msgid ""
|
959 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
960 |
"</a></code> (only when HTML emails enabled)."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: options/panel5.php:
|
964 |
msgid "Process trackbacks"
|
965 |
msgstr "Прати trackbacks"
|
966 |
|
967 |
-
#: options/panel5.php:
|
968 |
msgid ""
|
969 |
"Notify users when a new trackback or pingback is added to the discussion."
|
970 |
msgstr ""
|
971 |
"Информиши кориснике о новим trackback или pingback додатим у дискусији."
|
972 |
|
973 |
-
#: options/panel5.php:
|
974 |
msgid "Track all subscriptions"
|
975 |
msgstr "Прати све пријаве"
|
976 |
|
977 |
-
#: options/panel5.php:
|
978 |
msgid "Notify the administrator when users subscribe without commenting."
|
979 |
msgstr ""
|
980 |
"Информиши администратора ако коросник покрене пријаву без коментарисања."
|
981 |
|
982 |
-
#: options/panel5.php:
|
983 |
msgid "Let the administrator subscribe to comments when logged in."
|
984 |
msgstr "Дозволи администратору пријаву на коментаре ако је улогован."
|
985 |
|
986 |
-
#: options/panel5.php:
|
987 |
msgid "Send a copy of all Notifications to the administrator."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: options/panel5.php:
|
991 |
msgid ""
|
992 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
993 |
"you theme already add this into your site."
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: options/panel5.php:
|
997 |
msgid "StCR Unique Key"
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: options/panel5.php:
|
1001 |
msgid "This Unique Key is not set, please click the following button to "
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: options/panel5.php:
|
1005 |
msgid "Generate"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: options/panel5.php:
|
1009 |
msgid ""
|
1010 |
"This Unique Key will be use to send the notification to your subscribers "
|
1011 |
"with more security."
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: options/
|
1015 |
-
msgid "
|
1016 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
|
1018 |
-
#: options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
msgid ""
|
1020 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1021 |
"consider supporting the author if this plugin made your web site better, "
|
1022 |
-
"especially if you are making money out of it
|
|
|
1023 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1024 |
"strong>, and to buy some food for my hungry family."
|
1025 |
msgstr ""
|
@@ -1029,18 +1065,27 @@ msgstr ""
|
|
1029 |
"сајта. Свака донација ће бити искоришћена за помоћ у развијању додатка, и "
|
1030 |
"куповину хране за гладну породицу."
|
1031 |
|
1032 |
-
#: options/panel7.php:
|
1033 |
-
|
1034 |
-
|
|
|
|
|
1035 |
|
1036 |
-
#: options/panel7.php:
|
1037 |
-
|
1038 |
-
|
1039 |
-
"
|
1040 |
-
"
|
1041 |
-
"
|
1042 |
-
"
|
1043 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1044 |
msgstr ""
|
1045 |
"Ако не желите да донирате новац, било би лепо да споменете на Вашем блогу да "
|
1046 |
"користите мој додатак. Јавите читаоцима шта је допринело побољшању Вашег "
|
@@ -1049,11 +1094,11 @@ msgstr ""
|
|
1049 |
"Reloaded. Шта год да урадите од горе наведеног, хвала што користите мој "
|
1050 |
"додатак!"
|
1051 |
|
1052 |
-
#: options/panel7.php:
|
1053 |
msgid "Subscribe to the Beta testers"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: options/panel7.php:
|
1057 |
msgid ""
|
1058 |
"Before a new Update we release a Beta version so that our current users can "
|
1059 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1061,11 +1106,11 @@ msgid ""
|
|
1061 |
"a>"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: options/panel7.php:
|
1065 |
msgid "Vote and show your appreciation"
|
1066 |
msgstr "Гласај и оцени додатак"
|
1067 |
|
1068 |
-
#: options/panel7.php:
|
1069 |
msgid ""
|
1070 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1071 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1075,11 +1120,11 @@ msgstr ""
|
|
1075 |
"добар. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
|
1076 |
"reloaded/\">Оцени додатак</a> на страници Додаци."
|
1077 |
|
1078 |
-
#: options/panel8.php:
|
1079 |
msgid "Did you find a Bug on the plugin?"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: options/panel8.php:
|
1083 |
msgid ""
|
1084 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1085 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1174,201 +1219,46 @@ msgstr ""
|
|
1174 |
msgid "You have request to manage another email address and this is forbidden."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: utils/stcr_manage.php:
|
1178 |
-
msgid ""
|
1179 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1180 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1181 |
-
msgstr ""
|
1182 |
-
"Обавести ме о коментарима на е-пошту. Такође можете <a "
|
1183 |
-
"href='[subscribe_link]'>да се пријавите</a> без остављања коментара."
|
1184 |
-
|
1185 |
-
#: utils/stcr_manage.php:224
|
1186 |
-
msgid ""
|
1187 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1188 |
-
"subscriptions."
|
1189 |
-
msgstr ""
|
1190 |
-
"Пријавили сте се на овај чланак. <a href='[manager_link]'>Управљај пријавом</"
|
1191 |
-
"a>."
|
1192 |
-
|
1193 |
-
#: utils/stcr_manage.php:225
|
1194 |
-
msgid ""
|
1195 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1196 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1197 |
-
msgstr ""
|
1198 |
-
"Пријава за овај чланак мора да буде потврђена <a "
|
1199 |
-
"href='[manager_link]'>Управљај пријавама</a>."
|
1200 |
-
|
1201 |
-
#: utils/stcr_manage.php:226
|
1202 |
-
msgid ""
|
1203 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1204 |
-
msgstr ""
|
1205 |
-
"Можете да <a href='[manager_link]'>управљате пријавама</a> на овом чланку."
|
1206 |
-
|
1207 |
-
#: utils/stcr_manage.php:232
|
1208 |
-
msgid ""
|
1209 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1210 |
-
"will send you a message containing the link to access your personal "
|
1211 |
-
"management page."
|
1212 |
-
msgstr ""
|
1213 |
-
"Да би управљали пријавама, прво унесите е-адресу у поље испод. Добићете "
|
1214 |
-
"поруку са везом ка страници за управљање пријавама."
|
1215 |
-
|
1216 |
-
#: utils/stcr_manage.php:233
|
1217 |
-
msgid ""
|
1218 |
-
"Thank you for using our subscription service. Your request has been "
|
1219 |
-
"completed, and you should receive an email with the management link in a few "
|
1220 |
-
"minutes."
|
1221 |
-
msgstr ""
|
1222 |
-
"Ваш захтев је прихваћен. У наредних неколико минута тебало би да добијете е-"
|
1223 |
-
"пошту са везом за управљање пријавама."
|
1224 |
-
|
1225 |
-
#: utils/stcr_manage.php:234
|
1226 |
-
msgid ""
|
1227 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1228 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1229 |
-
"form here below and you're all set."
|
1230 |
-
msgstr ""
|
1231 |
-
"Можете да пратите дискусију на чланку <strong>[post_title]</strong> без "
|
1232 |
-
"остављања коментара. Занимљиво, зар не? Довољно је да унесете е-адресу у "
|
1233 |
-
"поље испод, и бићете на време обавештени."
|
1234 |
-
|
1235 |
-
#: utils/stcr_manage.php:235
|
1236 |
-
msgid ""
|
1237 |
-
"Thank you for using our subscription service. Your request has been "
|
1238 |
-
"completed. You will receive a notification email every time a new comment to "
|
1239 |
-
"this article is approved and posted by the administrator."
|
1240 |
-
msgstr ""
|
1241 |
-
"Ваш захтев је прихваћен и завршен. Добићете обавештење путем е-поште сваки "
|
1242 |
-
"пут када се појави нови коментар."
|
1243 |
-
|
1244 |
-
#: utils/stcr_manage.php:236
|
1245 |
-
msgid ""
|
1246 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1247 |
-
"request, please check your email for the verification message and follow the "
|
1248 |
-
"instructions."
|
1249 |
-
msgstr ""
|
1250 |
-
"Ваш захтев је прихваћен и завршен. Како би потврдили захтев, проверите е-"
|
1251 |
-
"пошту за верификацију поруке и пратите упутства."
|
1252 |
-
|
1253 |
-
#: utils/stcr_manage.php:237
|
1254 |
-
msgid ""
|
1255 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1256 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1257 |
-
msgstr ""
|
1258 |
-
"Да би поништили или обуставили једно или више обавештења, изаберите "
|
1259 |
-
"одговарајуће поље за потврду и кликните на дугме на крају листе."
|
1260 |
-
|
1261 |
-
#: utils/stcr_manage.php:238
|
1262 |
-
msgid ""
|
1263 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1264 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1265 |
-
"You are currently subscribed to:"
|
1266 |
-
msgstr ""
|
1267 |
-
"Да би поништили или обуставили једно или више обавештења, изаберите "
|
1268 |
-
"одговарајуће поље за потврду и кликните на дугме на крају листе. Тренутно "
|
1269 |
-
"сте пријављени на:"
|
1270 |
-
|
1271 |
-
#: utils/stcr_manage.php:242
|
1272 |
-
msgid "There is a new comment to [post_title]"
|
1273 |
-
msgstr "Нови коментар на [post_title]"
|
1274 |
-
|
1275 |
-
#: utils/stcr_manage.php:243
|
1276 |
-
msgid ""
|
1277 |
-
"There is a new comment to [post_title].\n"
|
1278 |
-
"Comment Link: [comment_permalink]\n"
|
1279 |
-
"Author: [comment_author]\n"
|
1280 |
-
"Comment:\n"
|
1281 |
-
"[comment_content]\n"
|
1282 |
-
"Permalink: [post_permalink]\n"
|
1283 |
-
"Manage your subscriptions: [manager_link]"
|
1284 |
-
msgstr ""
|
1285 |
-
"Нови коментар на [post_title].\n"
|
1286 |
-
"Веза за коментар: [comment_permalink]\n"
|
1287 |
-
"Аутор: [comment_author]\n"
|
1288 |
-
"Коментар: [comment_content]\n"
|
1289 |
-
"Веза за чланак: [post_permalink]\n"
|
1290 |
-
"\n"
|
1291 |
-
"Управљај пријавама: [manager_link]"
|
1292 |
-
|
1293 |
-
#: utils/stcr_manage.php:244
|
1294 |
-
msgid "Please confirm your subscription to [post_title]"
|
1295 |
-
msgstr "Потврдите своју пријаву на [post_title]"
|
1296 |
-
|
1297 |
-
#: utils/stcr_manage.php:245
|
1298 |
-
msgid ""
|
1299 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1300 |
-
"[post_permalink]\n"
|
1301 |
-
"\n"
|
1302 |
-
"Please confirm your request by clicking on this link:\n"
|
1303 |
-
"[confirm_link]"
|
1304 |
-
msgstr ""
|
1305 |
-
"Пријавили сте се да будете обавештени сваки пут када се појави нови коментар "
|
1306 |
-
"на [post_title]:\n"
|
1307 |
-
"[post_permalink]\n"
|
1308 |
-
"\n"
|
1309 |
-
"Потврдите свој захтев кликом на ову везу:\n"
|
1310 |
-
"[confirm_link]"
|
1311 |
-
|
1312 |
-
#: utils/stcr_manage.php:246
|
1313 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1314 |
-
msgstr "Управљај пријавама на [blog_name]"
|
1315 |
-
|
1316 |
-
#: utils/stcr_manage.php:247
|
1317 |
-
msgid ""
|
1318 |
-
"You have requested to manage your subscriptions to the articles on "
|
1319 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1320 |
-
msgstr ""
|
1321 |
-
|
1322 |
-
#: utils/stcr_manage.php:248
|
1323 |
-
msgid ""
|
1324 |
-
"You have requested to manage your subscriptions to the articles on "
|
1325 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1326 |
-
"[manager_link]"
|
1327 |
-
msgstr ""
|
1328 |
-
"Поднели сте захтев да управљате својим пријавама за текстове на [blog_name]. "
|
1329 |
-
"Кликните на везу испод да би могли да управљате Вашим пријавама :\n"
|
1330 |
-
"[manager_link]"
|
1331 |
-
|
1332 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1333 |
msgid "StCR System"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: utils/stcr_manage.php:
|
1337 |
-
#: utils/stcr_manage.php:
|
1338 |
-
#: utils/stcr_manage.php:
|
1339 |
-
#: utils/stcr_manage.php:
|
1340 |
-
#: utils/stcr_manage.php:
|
1341 |
msgid "You do not have sufficient permissions to access this page."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: utils/stcr_manage.php:
|
1345 |
msgid "Subscriptions"
|
1346 |
msgstr "Пријаве"
|
1347 |
|
1348 |
-
#: utils/stcr_manage.php:
|
1349 |
msgid ""
|
1350 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1351 |
msgstr ""
|
1352 |
"Потребна Вам је помоћ о коришћењу Subscribe to Comments Reloaded? Посетите "
|
1353 |
"званични"
|
1354 |
|
1355 |
-
#: utils/stcr_manage.php:
|
1356 |
msgid "support forum"
|
1357 |
msgstr "форум подршке"
|
1358 |
|
1359 |
-
#: utils/stcr_manage.php:
|
1360 |
msgid "Feeling generous?"
|
1361 |
msgstr "Да ли сте великодушни?"
|
1362 |
|
1363 |
-
#: utils/stcr_manage.php:
|
1364 |
msgid "Donate a few bucks!"
|
1365 |
msgstr "Донирајте неколико динара!"
|
1366 |
|
1367 |
-
#: utils/stcr_upgrade.php:
|
1368 |
msgid "Important Notice"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: utils/stcr_upgrade.php:
|
1372 |
msgid ""
|
1373 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1374 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1376,28 +1266,28 @@ msgid ""
|
|
1376 |
"src=\""
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: utils/stcr_upgrade.php:
|
1380 |
msgid ""
|
1381 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1382 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1383 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
-
#: utils/stcr_upgrade.php:
|
1387 |
msgid ""
|
1388 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1389 |
"Comments to prevent confusion between the two plugins."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: utils/stcr_upgrade.php:
|
1393 |
msgid ""
|
1394 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1395 |
"that you want to import, you'll need to import that data manually, as only "
|
1396 |
"one import routine will ever run to prevent data loss."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: utils/stcr_upgrade.php:
|
1400 |
-
#: utils/stcr_upgrade.php:
|
1401 |
msgid ""
|
1402 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1403 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1405,20 +1295,20 @@ msgid ""
|
|
1405 |
"\"stcr-loading-animation\" src=\""
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: utils/stcr_upgrade.php:
|
1409 |
msgid ""
|
1410 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1411 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1412 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: utils/stcr_upgrade.php:
|
1416 |
msgid ""
|
1417 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1418 |
"Notification to prevent confusion between the two plugins."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: utils/stcr_upgrade.php:
|
1422 |
msgid ""
|
1423 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1424 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1426,13 +1316,13 @@ msgid ""
|
|
1426 |
"Reloaded</strong>."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: utils/stcr_upgrade.php:
|
1430 |
msgid ""
|
1431 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1432 |
"Subscriptions to prevent confusion between the two plugins."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: utils/stcr_upgrade.php:
|
1436 |
msgid ""
|
1437 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1438 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1440,7 +1330,7 @@ msgid ""
|
|
1440 |
"ever run to prevent data loss."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: utils/stcr_upgrade.php:
|
1444 |
msgid ""
|
1445 |
"<strong>Note:</strong> If you were previously using the "
|
1446 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1449,29 +1339,29 @@ msgid ""
|
|
1449 |
"respectively."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: utils/stcr_upgrade.php:
|
1453 |
msgid ""
|
1454 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: utils/stcr_upgrade.php:
|
1458 |
-
#: utils/stcr_upgrade.php:
|
1459 |
msgid ""
|
1460 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1461 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: utils/stcr_upgrade.php:
|
1465 |
msgid ""
|
1466 |
-
"Please consider to make a donation to support the plugin
|
1467 |
-
"<a href=\"\n"
|
1468 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1469 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1470 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1471 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: utils/stcr_upgrade.php:
|
1475 |
msgid ""
|
1476 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1477 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1479,23 +1369,23 @@ msgid ""
|
|
1479 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: utils/stcr_upgrade.php:
|
1483 |
msgid ""
|
1484 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1485 |
"160106."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: utils/stcr_upgrade.php:
|
1489 |
msgid ""
|
1490 |
"This version includes many changes and fixes to improve your experience with "
|
1491 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1492 |
"email templates, Subscription Checkbox position, and more!"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: utils/stcr_upgrade.php:
|
1496 |
-
#: utils/stcr_upgrade.php:
|
1497 |
-
#: utils/stcr_upgrade.php:
|
1498 |
-
#: utils/stcr_upgrade.php:
|
1499 |
msgid ""
|
1500 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1501 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1503,123 +1393,126 @@ msgid ""
|
|
1503 |
"class=\"stcr-loading-animation\" src=\""
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: utils/stcr_upgrade.php:
|
1507 |
msgid ""
|
1508 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1509 |
"160115."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: utils/stcr_upgrade.php:
|
1513 |
msgid ""
|
1514 |
"This version includes fixes to broken links while managing your subscriptions"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: utils/stcr_upgrade.php:
|
1518 |
msgid ""
|
1519 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1520 |
"160831"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: utils/stcr_upgrade.php:
|
1524 |
msgid "This version includes fixes to many bugs and also new features, "
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: utils/stcr_upgrade.php:
|
1528 |
msgid ""
|
1529 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1530 |
"address. This will help the subscribers to use the Reply option in their "
|
1531 |
"email agents."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: utils/stcr_upgrade.php:
|
1535 |
msgid ""
|
1536 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1537 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: utils/stcr_upgrade.php:
|
1541 |
msgid ""
|
1542 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1543 |
"without loosing your subscriptions. You can use this option also for reset "
|
1544 |
"all the settings, see the FAQ."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: utils/stcr_upgrade.php:
|
1548 |
msgid ""
|
1549 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1550 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1551 |
"Post Type."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: utils/stcr_upgrade.php:
|
1555 |
msgid ""
|
1556 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1557 |
"options to and the management link only by email and not to display it on "
|
1558 |
"the request link page."
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: utils/stcr_upgrade.php:
|
1562 |
msgid ""
|
1563 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1564 |
"160902"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: utils/stcr_upgrade.php:
|
1568 |
msgid ""
|
1569 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1570 |
"previous 160831 version."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: utils/stcr_upgrade.php:
|
1574 |
msgid "Settings"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: utils/stcr_upgrade.php:
|
1578 |
msgid ""
|
1579 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1580 |
"160915"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: utils/stcr_upgrade.php:
|
1584 |
-
#: utils/stcr_upgrade.php:
|
1585 |
msgid "This version includes fixes and improvements, "
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: utils/stcr_upgrade.php:
|
1589 |
msgid ""
|
1590 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1591 |
"dropdown."
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: utils/stcr_upgrade.php:
|
1595 |
msgid ""
|
1596 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: utils/stcr_upgrade.php:
|
|
|
1600 |
msgid "Log Settings"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: utils/stcr_upgrade.php:
|
|
|
1604 |
msgid ""
|
1605 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: utils/stcr_upgrade.php:
|
1609 |
msgid ""
|
1610 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1611 |
"enable."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: utils/stcr_upgrade.php:
|
1615 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: utils/stcr_upgrade.php:
|
|
|
1619 |
msgid "The support of this plugin is given thanks to your donations."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
-
#: utils/stcr_upgrade.php:
|
1623 |
msgid ""
|
1624 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1625 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1629,19 +1522,19 @@ msgid ""
|
|
1629 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: utils/stcr_upgrade.php:
|
1633 |
msgid ""
|
1634 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1635 |
"installation regarding a database table creation."
|
1636 |
msgstr ""
|
1637 |
|
1638 |
-
#: utils/stcr_upgrade.php:
|
1639 |
msgid ""
|
1640 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1641 |
"Awesome."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: utils/stcr_upgrade.php:
|
1645 |
msgid ""
|
1646 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1647 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1652,7 +1545,198 @@ msgid ""
|
|
1652 |
"for the users that have supported the plugin development."
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1656 |
msgid "StCR Notification"
|
1657 |
msgstr "Обавештења"
|
1658 |
|
@@ -1664,6 +1748,29 @@ msgstr "Не пријављуј"
|
|
1664 |
msgid "All"
|
1665 |
msgstr "Све"
|
1666 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1667 |
#~ msgid ""
|
1668 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1669 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:12-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: sr\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 2.0.6\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
21 |
+
#: utils/stcr_utils.php:203
|
22 |
msgid "Manage subscriptions"
|
23 |
msgstr "Управљај пријавама"
|
24 |
|
25 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
26 |
msgid "Comment Form"
|
27 |
msgstr "Формулар за коментаре"
|
28 |
|
29 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
30 |
msgid "Management Page"
|
31 |
msgstr "Управљачка страница"
|
32 |
|
33 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
34 |
msgid "Notifications"
|
35 |
msgstr "Обавештења"
|
36 |
|
37 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
38 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
39 |
msgid "Options"
|
40 |
msgstr "Параметри"
|
41 |
|
42 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
43 |
msgid "Support"
|
44 |
msgstr "Wsparcie"
|
45 |
|
46 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
47 |
msgid "Donate"
|
48 |
msgstr ""
|
49 |
|
344 |
msgid "Sorry, no subscriptions match your search criteria."
|
345 |
msgstr "Нажалост нема пријава које одговарају траженим критеријумима."
|
346 |
|
347 |
+
#: options/panel10.php:41
|
348 |
msgid "The log file has been successfully deleted."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: options/panel10.php:46
|
352 |
msgid "Can't delete the log file, check the file permissions."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: options/panel10.php:52
|
356 |
msgid "The log file does not exists."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: options/panel10.php:66 options/panel10.php:110
|
360 |
msgid "Enable Log Information"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: options/panel10.php:72 options/panel10.php:119
|
364 |
msgid "Enable Auto clean log data"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
368 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
369 |
msgid "Your settings have been successfully updated."
|
370 |
msgstr "Ваша подешавања су успешно ажурирана."
|
371 |
|
372 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
373 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
374 |
msgid "There was an error updating the following fields:"
|
375 |
msgstr "Дошло је до грешке при ажурирању следећих поља:"
|
376 |
|
377 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
378 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
379 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
380 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
381 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
382 |
+
#: options/panel5.php:210 options/panel5.php:219
|
383 |
msgid "Yes"
|
384 |
msgstr "Да"
|
385 |
|
386 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
387 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
388 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
389 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
390 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
391 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
392 |
msgid "No"
|
393 |
msgstr "Не"
|
394 |
|
395 |
+
#: options/panel10.php:114
|
396 |
msgid ""
|
397 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
398 |
"purposes."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: options/panel10.php:125
|
402 |
msgid "Hourly"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: options/panel10.php:126
|
406 |
msgid "Twice Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: options/panel10.php:127
|
410 |
msgid "Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: options/panel10.php:129
|
414 |
msgid "If enabled, StCR will auto clean your information every day."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: options/panel10.php:134
|
418 |
msgid "Clean Up Log Archive"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: options/panel10.php:138
|
422 |
msgid ""
|
423 |
"If you want to clean up the log archive please click the following button"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: options/panel10.php:140
|
427 |
msgid "Clean"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: options/panel10.php:147 options/panel10.php:150
|
431 |
msgid "System Information"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
435 |
+
#: options/panel4.php:283 options/panel5.php:265
|
436 |
msgid "Save Changes"
|
437 |
msgstr "Сачувај промене"
|
438 |
|
777 |
#: options/panel4.php:128
|
778 |
msgid ""
|
779 |
"This will be use when the user click reply on their email agent. If not set "
|
780 |
+
"it will be the same as the Sender email address."
|
781 |
msgstr ""
|
782 |
|
783 |
#: options/panel4.php:147
|
793 |
|
794 |
#: options/panel4.php:171
|
795 |
msgid ""
|
796 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
797 |
+
"all the content and save the options.</strong></p>"
|
798 |
msgstr ""
|
799 |
|
800 |
#: options/panel4.php:184
|
841 |
"[blog_name]"
|
842 |
msgstr "Наслов е-поште за потврду. Доступне ознаке: [post_title]"
|
843 |
|
844 |
+
#: options/panel5.php:38
|
845 |
+
#, fuzzy
|
846 |
+
#| msgid "Your settings have been successfully updated."
|
847 |
+
msgid "Your settings have been successfully reset."
|
848 |
+
msgstr "Ваша подешавања су успешно ажурирана."
|
849 |
+
|
850 |
+
#: options/panel5.php:40
|
851 |
+
#, fuzzy
|
852 |
+
#| msgid "There was an error updating the following fields:"
|
853 |
+
msgid "There was an error deleting the options:"
|
854 |
+
msgstr "Дошло је до грешке при ажурирању следећих поља:"
|
855 |
+
|
856 |
+
#: options/panel5.php:48 options/panel5.php:108
|
857 |
msgid "Show StCR checkbox / dropdown"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: options/panel5.php:51
|
861 |
msgid "Safetly Uninstall"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: options/panel5.php:54 options/panel5.php:125
|
865 |
msgid "Autopurge requests"
|
866 |
msgstr "Аутоматско чишћење"
|
867 |
|
868 |
+
#: options/panel5.php:57 options/panel5.php:143
|
869 |
msgid "Enable double check"
|
870 |
msgstr "Укључи двоструку верификацију"
|
871 |
|
872 |
+
#: options/panel5.php:60 options/panel5.php:134
|
873 |
msgid "StCR Position"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: options/panel5.php:63 options/panel5.php:151
|
877 |
msgid "Subscribe authors"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: options/panel5.php:66 options/panel5.php:161
|
881 |
msgid "Enable HTML emails"
|
882 |
msgstr "Укључи HTML за е-пошту"
|
883 |
|
884 |
+
#: options/panel5.php:69
|
885 |
msgid "HTMLify Links in HTML emails"
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: options/panel5.php:72
|
889 |
msgid "Send trackbacks"
|
890 |
msgstr "Шаљи повратне везе"
|
891 |
|
892 |
+
#: options/panel5.php:75
|
893 |
msgid "Notify admin"
|
894 |
msgstr "Обавештавај администратора"
|
895 |
|
896 |
+
#: options/panel5.php:78 options/panel5.php:199
|
897 |
msgid "Let admin subscribe"
|
898 |
msgstr "Дозволи пријаве администратору"
|
899 |
|
900 |
+
#: options/panel5.php:81 options/panel5.php:208
|
901 |
msgid "BCC admin on Notifications"
|
902 |
msgstr "Обавештења"
|
903 |
|
904 |
+
#: options/panel5.php:84 options/panel5.php:217
|
905 |
msgid "Enable Font Awesome"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
909 |
+
msgid "Reset All Options"
|
910 |
+
msgstr ""
|
911 |
+
|
912 |
+
#: options/panel5.php:112
|
913 |
msgid ""
|
914 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
915 |
"You should leave it to Yes always. "
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: options/panel5.php:117
|
919 |
msgid "Safely Uninstall"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: options/panel5.php:121
|
923 |
msgid ""
|
924 |
"This option will allow you to delete the plugin with WordPress without "
|
925 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: options/panel5.php:128
|
929 |
msgid "days"
|
930 |
msgstr "дана"
|
931 |
|
932 |
+
#: options/panel5.php:129
|
933 |
msgid ""
|
934 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
935 |
"this feature."
|
937 |
"Бриши потврде које су на чекању (непотврђене) после X дана. \"Нула\" "
|
938 |
"искључује ову функцију."
|
939 |
|
940 |
+
#: options/panel5.php:138
|
941 |
msgid ""
|
942 |
"If this option is enable the subscription box will be above the submit "
|
943 |
"button in your comment form. Use this when your theme is outdated and using "
|
944 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: options/panel5.php:147
|
948 |
msgid ""
|
949 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
950 |
"misuse)."
|
951 |
msgstr "Шаљи е-пошту са потврдом пријаве (да се избегне злоупотреба адреса)."
|
952 |
|
953 |
+
#: options/panel5.php:156
|
954 |
msgid ""
|
955 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: options/panel5.php:165
|
959 |
msgid ""
|
960 |
"If enabled, will send email messages with content-type = text/html instead "
|
961 |
"of text/plain"
|
962 |
msgstr ""
|
963 |
"Ако је укључено, биће послата е-пошта са text/html уместо обичног текста."
|
964 |
|
965 |
+
#: options/panel5.php:170
|
966 |
msgid "HTMLify links in emails"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: options/panel5.php:175
|
970 |
msgid ""
|
971 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
972 |
"</a></code> (only when HTML emails enabled)."
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: options/panel5.php:180
|
976 |
msgid "Process trackbacks"
|
977 |
msgstr "Прати trackbacks"
|
978 |
|
979 |
+
#: options/panel5.php:184
|
980 |
msgid ""
|
981 |
"Notify users when a new trackback or pingback is added to the discussion."
|
982 |
msgstr ""
|
983 |
"Информиши кориснике о новим trackback или pingback додатим у дискусији."
|
984 |
|
985 |
+
#: options/panel5.php:189
|
986 |
msgid "Track all subscriptions"
|
987 |
msgstr "Прати све пријаве"
|
988 |
|
989 |
+
#: options/panel5.php:194
|
990 |
msgid "Notify the administrator when users subscribe without commenting."
|
991 |
msgstr ""
|
992 |
"Информиши администратора ако коросник покрене пријаву без коментарисања."
|
993 |
|
994 |
+
#: options/panel5.php:203
|
995 |
msgid "Let the administrator subscribe to comments when logged in."
|
996 |
msgstr "Дозволи администратору пријаву на коментаре ако је улогован."
|
997 |
|
998 |
+
#: options/panel5.php:212
|
999 |
msgid "Send a copy of all Notifications to the administrator."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: options/panel5.php:221
|
1003 |
msgid ""
|
1004 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1005 |
"you theme already add this into your site."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: options/panel5.php:226
|
1009 |
msgid "StCR Unique Key"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: options/panel5.php:231
|
1013 |
msgid "This Unique Key is not set, please click the following button to "
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1017 |
msgid "Generate"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: options/panel5.php:243
|
1021 |
msgid ""
|
1022 |
"This Unique Key will be use to send the notification to your subscribers "
|
1023 |
"with more security."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: options/panel5.php:256
|
1027 |
+
msgid ""
|
1028 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1029 |
+
"with caution."
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: options/panel5.php:258
|
1033 |
+
msgid "Yes, Delete Options including subscriptions."
|
1034 |
+
msgstr ""
|
1035 |
|
1036 |
+
#: options/panel5.php:259
|
1037 |
+
msgid "No, Only delete the StCR Options."
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1041 |
+
msgid ""
|
1042 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1043 |
+
"hidden=\"true\"></i>"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1047 |
+
#, fuzzy
|
1048 |
+
#| msgid ""
|
1049 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1050 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1051 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1052 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1053 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1054 |
msgid ""
|
1055 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1056 |
"consider supporting the author if this plugin made your web site better, "
|
1057 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1058 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1059 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1060 |
"strong>, and to buy some food for my hungry family."
|
1061 |
msgstr ""
|
1065 |
"сајта. Свака донација ће бити искоришћена за помоћ у развијању додатка, и "
|
1066 |
"куповину хране за гладну породицу."
|
1067 |
|
1068 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1069 |
+
#, fuzzy
|
1070 |
+
#| msgid "You can help"
|
1071 |
+
msgid "You can still help"
|
1072 |
+
msgstr "И Ви можете да помогнете"
|
1073 |
|
1074 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1075 |
+
#, fuzzy
|
1076 |
+
#| msgid ""
|
1077 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1078 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1079 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1080 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1081 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1082 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1083 |
+
msgid ""
|
1084 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1085 |
+
"Please let your readers know what makes your blog better. You can also "
|
1086 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1087 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1088 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1089 |
msgstr ""
|
1090 |
"Ако не желите да донирате новац, било би лепо да споменете на Вашем блогу да "
|
1091 |
"користите мој додатак. Јавите читаоцима шта је допринело побољшању Вашег "
|
1094 |
"Reloaded. Шта год да урадите од горе наведеног, хвала што користите мој "
|
1095 |
"додатак!"
|
1096 |
|
1097 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1098 |
msgid "Subscribe to the Beta testers"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1102 |
msgid ""
|
1103 |
"Before a new Update we release a Beta version so that our current users can "
|
1104 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1106 |
"a>"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1110 |
msgid "Vote and show your appreciation"
|
1111 |
msgstr "Гласај и оцени додатак"
|
1112 |
|
1113 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1114 |
msgid ""
|
1115 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1116 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1120 |
"добар. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-comments-"
|
1121 |
"reloaded/\">Оцени додатак</a> на страници Додаци."
|
1122 |
|
1123 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1124 |
msgid "Did you find a Bug on the plugin?"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1128 |
msgid ""
|
1129 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1130 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1219 |
msgid "You have request to manage another email address and this is forbidden."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1223 |
msgid "StCR System"
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1227 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1228 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1229 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1230 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1231 |
msgid "You do not have sufficient permissions to access this page."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: utils/stcr_manage.php:726
|
1235 |
msgid "Subscriptions"
|
1236 |
msgstr "Пријаве"
|
1237 |
|
1238 |
+
#: utils/stcr_manage.php:782
|
1239 |
msgid ""
|
1240 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1241 |
msgstr ""
|
1242 |
"Потребна Вам је помоћ о коришћењу Subscribe to Comments Reloaded? Посетите "
|
1243 |
"званични"
|
1244 |
|
1245 |
+
#: utils/stcr_manage.php:782
|
1246 |
msgid "support forum"
|
1247 |
msgstr "форум подршке"
|
1248 |
|
1249 |
+
#: utils/stcr_manage.php:783
|
1250 |
msgid "Feeling generous?"
|
1251 |
msgstr "Да ли сте великодушни?"
|
1252 |
|
1253 |
+
#: utils/stcr_manage.php:783
|
1254 |
msgid "Donate a few bucks!"
|
1255 |
msgstr "Донирајте неколико динара!"
|
1256 |
|
1257 |
+
#: utils/stcr_upgrade.php:72
|
1258 |
msgid "Important Notice"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: utils/stcr_upgrade.php:120
|
1262 |
msgid ""
|
1263 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1264 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1266 |
"src=\""
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: utils/stcr_upgrade.php:175
|
1270 |
msgid ""
|
1271 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1272 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1273 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: utils/stcr_upgrade.php:175
|
1277 |
msgid ""
|
1278 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1279 |
"Comments to prevent confusion between the two plugins."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: utils/stcr_upgrade.php:176
|
1283 |
msgid ""
|
1284 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1285 |
"that you want to import, you'll need to import that data manually, as only "
|
1286 |
"one import routine will ever run to prevent data loss."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1290 |
+
#: utils/stcr_upgrade.php:400
|
1291 |
msgid ""
|
1292 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1293 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1295 |
"\"stcr-loading-animation\" src=\""
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: utils/stcr_upgrade.php:250
|
1299 |
msgid ""
|
1300 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1301 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1302 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: utils/stcr_upgrade.php:250
|
1306 |
msgid ""
|
1307 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1308 |
"Notification to prevent confusion between the two plugins."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: utils/stcr_upgrade.php:397
|
1312 |
msgid ""
|
1313 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1314 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1316 |
"Reloaded</strong>."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: utils/stcr_upgrade.php:397
|
1320 |
msgid ""
|
1321 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1322 |
"Subscriptions to prevent confusion between the two plugins."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: utils/stcr_upgrade.php:398
|
1326 |
msgid ""
|
1327 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1328 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1330 |
"ever run to prevent data loss."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: utils/stcr_upgrade.php:399
|
1334 |
msgid ""
|
1335 |
"<strong>Note:</strong> If you were previously using the "
|
1336 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1339 |
"respectively."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: utils/stcr_upgrade.php:413
|
1343 |
msgid ""
|
1344 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1348 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
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:415
|
1355 |
msgid ""
|
1356 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1357 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <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¤cy_code=USD&bn=PP%2dDonationsBF"
|
1361 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: utils/stcr_upgrade.php:417
|
1365 |
msgid ""
|
1366 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1367 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1369 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: utils/stcr_upgrade.php:428
|
1373 |
msgid ""
|
1374 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1375 |
"160106."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: utils/stcr_upgrade.php:429
|
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:430 utils/stcr_upgrade.php:445
|
1386 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1387 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1388 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1389 |
msgid ""
|
1390 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1391 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1393 |
"class=\"stcr-loading-animation\" src=\""
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: utils/stcr_upgrade.php:443
|
1397 |
msgid ""
|
1398 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1399 |
"160115."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: utils/stcr_upgrade.php:444
|
1403 |
msgid ""
|
1404 |
"This version includes fixes to broken links while managing your subscriptions"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: utils/stcr_upgrade.php:458
|
1408 |
msgid ""
|
1409 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1410 |
"160831"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1414 |
msgid "This version includes fixes to many bugs and also new features, "
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1418 |
msgid ""
|
1419 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1420 |
"address. This will help the subscribers to use the Reply option in their "
|
1421 |
"email agents."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1425 |
msgid ""
|
1426 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1427 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1431 |
msgid ""
|
1432 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1433 |
"without loosing your subscriptions. You can use this option also for reset "
|
1434 |
"all the settings, see the FAQ."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1438 |
msgid ""
|
1439 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1440 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1441 |
"Post Type."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1445 |
msgid ""
|
1446 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1447 |
"options to and the management link only by email and not to display it on "
|
1448 |
"the request link page."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: utils/stcr_upgrade.php:480
|
1452 |
msgid ""
|
1453 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1454 |
"160902"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: utils/stcr_upgrade.php:483
|
1458 |
msgid ""
|
1459 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1460 |
"previous 160831 version."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1464 |
msgid "Settings"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: utils/stcr_upgrade.php:504
|
1468 |
msgid ""
|
1469 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1470 |
"160915"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1474 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1475 |
msgid "This version includes fixes and improvements, "
|
1476 |
msgstr ""
|
1477 |
|
1478 |
+
#: utils/stcr_upgrade.php:508
|
1479 |
msgid ""
|
1480 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1481 |
"dropdown."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: utils/stcr_upgrade.php:509
|
1485 |
msgid ""
|
1486 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1490 |
+
#: utils/stcr_upgrade.php:576
|
1491 |
msgid "Log Settings"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1495 |
+
#: utils/stcr_upgrade.php:580
|
1496 |
msgid ""
|
1497 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: utils/stcr_upgrade.php:529
|
1501 |
msgid ""
|
1502 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1503 |
"enable."
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: utils/stcr_upgrade.php:530
|
1507 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1511 |
+
#: utils/stcr_upgrade.php:590
|
1512 |
msgid "The support of this plugin is given thanks to your donations."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: utils/stcr_upgrade.php:536
|
1516 |
msgid ""
|
1517 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1518 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1522 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: utils/stcr_upgrade.php:557
|
1526 |
msgid ""
|
1527 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1528 |
"installation regarding a database table creation."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: utils/stcr_upgrade.php:558
|
1532 |
msgid ""
|
1533 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1534 |
"Awesome."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: utils/stcr_upgrade.php:563
|
1538 |
msgid ""
|
1539 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1540 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1545 |
"for the users that have supported the plugin development."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: utils/stcr_upgrade.php:584
|
1549 |
+
msgid ""
|
1550 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1551 |
+
"issues."
|
1552 |
+
msgstr ""
|
1553 |
+
|
1554 |
+
#: utils/stcr_upgrade.php:585
|
1555 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1556 |
+
msgstr ""
|
1557 |
+
|
1558 |
+
#: utils/stcr_upgrade.php:586
|
1559 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1560 |
+
msgstr ""
|
1561 |
+
|
1562 |
+
#: utils/stcr_upgrade.php:591
|
1563 |
+
msgid ""
|
1564 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1565 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1566 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1567 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1568 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1569 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1570 |
+
"Thanks for all the users that have supported the plugin development."
|
1571 |
+
msgstr ""
|
1572 |
+
|
1573 |
+
#: utils/stcr_utils.php:196
|
1574 |
+
msgid ""
|
1575 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1576 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1577 |
+
msgstr ""
|
1578 |
+
"Обавести ме о коментарима на е-пошту. Такође можете <a "
|
1579 |
+
"href='[subscribe_link]'>да се пријавите</a> без остављања коментара."
|
1580 |
+
|
1581 |
+
#: utils/stcr_utils.php:197
|
1582 |
+
msgid ""
|
1583 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1584 |
+
"subscriptions."
|
1585 |
+
msgstr ""
|
1586 |
+
"Пријавили сте се на овај чланак. <a href='[manager_link]'>Управљај пријавом</"
|
1587 |
+
"a>."
|
1588 |
+
|
1589 |
+
#: utils/stcr_utils.php:198
|
1590 |
+
msgid ""
|
1591 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1592 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1593 |
+
msgstr ""
|
1594 |
+
"Пријава за овај чланак мора да буде потврђена <a "
|
1595 |
+
"href='[manager_link]'>Управљај пријавама</a>."
|
1596 |
+
|
1597 |
+
#: utils/stcr_utils.php:199
|
1598 |
+
msgid ""
|
1599 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1600 |
+
msgstr ""
|
1601 |
+
"Можете да <a href='[manager_link]'>управљате пријавама</a> на овом чланку."
|
1602 |
+
|
1603 |
+
#: utils/stcr_utils.php:205
|
1604 |
+
msgid ""
|
1605 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1606 |
+
"will send you a message containing the link to access your personal "
|
1607 |
+
"management page."
|
1608 |
+
msgstr ""
|
1609 |
+
"Да би управљали пријавама, прво унесите е-адресу у поље испод. Добићете "
|
1610 |
+
"поруку са везом ка страници за управљање пријавама."
|
1611 |
+
|
1612 |
+
#: utils/stcr_utils.php:206
|
1613 |
+
msgid ""
|
1614 |
+
"Thank you for using our subscription service. Your request has been "
|
1615 |
+
"completed, and you should receive an email with the management link in a few "
|
1616 |
+
"minutes."
|
1617 |
+
msgstr ""
|
1618 |
+
"Ваш захтев је прихваћен. У наредних неколико минута тебало би да добијете е-"
|
1619 |
+
"пошту са везом за управљање пријавама."
|
1620 |
+
|
1621 |
+
#: utils/stcr_utils.php:207
|
1622 |
+
msgid ""
|
1623 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1624 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1625 |
+
"form here below and you're all set."
|
1626 |
+
msgstr ""
|
1627 |
+
"Можете да пратите дискусију на чланку <strong>[post_title]</strong> без "
|
1628 |
+
"остављања коментара. Занимљиво, зар не? Довољно је да унесете е-адресу у "
|
1629 |
+
"поље испод, и бићете на време обавештени."
|
1630 |
+
|
1631 |
+
#: utils/stcr_utils.php:208
|
1632 |
+
msgid ""
|
1633 |
+
"Thank you for using our subscription service. Your request has been "
|
1634 |
+
"completed. You will receive a notification email every time a new comment to "
|
1635 |
+
"this article is approved and posted by the administrator."
|
1636 |
+
msgstr ""
|
1637 |
+
"Ваш захтев је прихваћен и завршен. Добићете обавештење путем е-поште сваки "
|
1638 |
+
"пут када се појави нови коментар."
|
1639 |
+
|
1640 |
+
#: utils/stcr_utils.php:209
|
1641 |
+
msgid ""
|
1642 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1643 |
+
"request, please check your email for the verification message and follow the "
|
1644 |
+
"instructions."
|
1645 |
+
msgstr ""
|
1646 |
+
"Ваш захтев је прихваћен и завршен. Како би потврдили захтев, проверите е-"
|
1647 |
+
"пошту за верификацију поруке и пратите упутства."
|
1648 |
+
|
1649 |
+
#: utils/stcr_utils.php:210
|
1650 |
+
msgid ""
|
1651 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1652 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1653 |
+
msgstr ""
|
1654 |
+
"Да би поништили или обуставили једно или више обавештења, изаберите "
|
1655 |
+
"одговарајуће поље за потврду и кликните на дугме на крају листе."
|
1656 |
+
|
1657 |
+
#: utils/stcr_utils.php:211
|
1658 |
+
msgid ""
|
1659 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1660 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1661 |
+
"You are currently subscribed to:"
|
1662 |
+
msgstr ""
|
1663 |
+
"Да би поништили или обуставили једно или више обавештења, изаберите "
|
1664 |
+
"одговарајуће поље за потврду и кликните на дугме на крају листе. Тренутно "
|
1665 |
+
"сте пријављени на:"
|
1666 |
+
|
1667 |
+
#: utils/stcr_utils.php:215
|
1668 |
+
msgid "There is a new comment to [post_title]"
|
1669 |
+
msgstr "Нови коментар на [post_title]"
|
1670 |
+
|
1671 |
+
#: utils/stcr_utils.php:216
|
1672 |
+
msgid ""
|
1673 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1674 |
+
"\n"
|
1675 |
+
"<hr />\n"
|
1676 |
+
"<strong>Comment link:</strong> <a href="
|
1677 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1678 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1679 |
+
"\n"
|
1680 |
+
"<strong>Comment:</strong>\n"
|
1681 |
+
"[comment_content]\n"
|
1682 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1683 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1684 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1685 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1686 |
+
msgstr ""
|
1687 |
+
|
1688 |
+
#: utils/stcr_utils.php:217
|
1689 |
+
msgid "Please confirm your subscription to [post_title]"
|
1690 |
+
msgstr "Потврдите своју пријаву на [post_title]"
|
1691 |
+
|
1692 |
+
#: utils/stcr_utils.php:218
|
1693 |
+
#, fuzzy
|
1694 |
+
#| msgid ""
|
1695 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1696 |
+
#| "[post_permalink]\n"
|
1697 |
+
#| "\n"
|
1698 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1699 |
+
#| "[confirm_link]"
|
1700 |
+
msgid ""
|
1701 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1702 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1703 |
+
"\n"
|
1704 |
+
"Please confirm your request by clicking on this link:\n"
|
1705 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1706 |
+
msgstr ""
|
1707 |
+
"Пријавили сте се да будете обавештени сваки пут када се појави нови коментар "
|
1708 |
+
"на [post_title]:\n"
|
1709 |
+
"[post_permalink]\n"
|
1710 |
+
"\n"
|
1711 |
+
"Потврдите свој захтев кликом на ову везу:\n"
|
1712 |
+
"[confirm_link]"
|
1713 |
+
|
1714 |
+
#: utils/stcr_utils.php:219
|
1715 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1716 |
+
msgstr "Управљај пријавама на [blog_name]"
|
1717 |
+
|
1718 |
+
#: utils/stcr_utils.php:220
|
1719 |
+
msgid ""
|
1720 |
+
"You have requested to manage your subscriptions to the articles on "
|
1721 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1722 |
+
msgstr ""
|
1723 |
+
|
1724 |
+
#: utils/stcr_utils.php:221
|
1725 |
+
#, fuzzy
|
1726 |
+
#| msgid ""
|
1727 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1728 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1729 |
+
#| "[manager_link]"
|
1730 |
+
msgid ""
|
1731 |
+
"You have requested to manage your subscriptions to the articles on "
|
1732 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1733 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1734 |
+
msgstr ""
|
1735 |
+
"Поднели сте захтев да управљате својим пријавама за текстове на [blog_name]. "
|
1736 |
+
"Кликните на везу испод да би могли да управљате Вашим пријавама :\n"
|
1737 |
+
"[manager_link]"
|
1738 |
+
|
1739 |
+
#: utils/stcr_utils.php:300
|
1740 |
msgid "StCR Notification"
|
1741 |
msgstr "Обавештења"
|
1742 |
|
1748 |
msgid "All"
|
1749 |
msgstr "Све"
|
1750 |
|
1751 |
+
#~ msgid "Support the developers"
|
1752 |
+
#~ msgstr "Подржи аутора"
|
1753 |
+
|
1754 |
+
#~ msgid "Don't want to donate? You can still help"
|
1755 |
+
#~ msgstr "Не желите да дате финансијску подршку? Још увек можете помоћи"
|
1756 |
+
|
1757 |
+
#~ msgid ""
|
1758 |
+
#~ "There is a new comment to [post_title].\n"
|
1759 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1760 |
+
#~ "Author: [comment_author]\n"
|
1761 |
+
#~ "Comment:\n"
|
1762 |
+
#~ "[comment_content]\n"
|
1763 |
+
#~ "Permalink: [post_permalink]\n"
|
1764 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1765 |
+
#~ msgstr ""
|
1766 |
+
#~ "Нови коментар на [post_title].\n"
|
1767 |
+
#~ "Веза за коментар: [comment_permalink]\n"
|
1768 |
+
#~ "Аутор: [comment_author]\n"
|
1769 |
+
#~ "Коментар: [comment_content]\n"
|
1770 |
+
#~ "Веза за чланак: [post_permalink]\n"
|
1771 |
+
#~ "\n"
|
1772 |
+
#~ "Управљај пријавама: [manager_link]"
|
1773 |
+
|
1774 |
#~ msgid ""
|
1775 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1776 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: Terese Mörtvik <terese.mortvik@tiarin.se>\n"
|
9 |
"Language: sv_SE\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: er, nplurals=2; plural=(n != 1);\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Administrera prenumerationer"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Kommentarsfält"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "Administrationssida"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "Notifieringar"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "Alternativ"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "Du kan hjälpa till"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
46 |
msgid "Support"
|
47 |
msgstr "Support"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr "Vill eller kan du inte donera? Du kan fortfarande hjälpa"
|
52 |
|
@@ -344,95 +340,95 @@ msgstr "Uppdatera prenumerationer"
|
|
344 |
msgid "Sorry, no subscriptions match your search criteria."
|
345 |
msgstr "Beklagar, men inga prenumerationer matchar dina sökkriteria."
|
346 |
|
347 |
-
#: options/panel10.php:
|
348 |
msgid "The log file has been successfully deleted."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: options/panel10.php:
|
352 |
msgid "Can't delete the log file, check the file permissions."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: options/panel10.php:
|
356 |
msgid "The log file does not exists."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: options/panel10.php:
|
360 |
msgid "Enable Log Information"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: options/panel10.php:
|
364 |
msgid "Enable Auto clean log data"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: options/panel10.php:
|
368 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
369 |
msgid "Your settings have been successfully updated."
|
370 |
msgstr "Dina inställningar har sparats."
|
371 |
|
372 |
-
#: options/panel10.php:
|
373 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
374 |
msgid "There was an error updating the following fields:"
|
375 |
msgstr "Det uppstod ett fel vid uppdateringen av följande:"
|
376 |
|
377 |
-
#: options/panel10.php:
|
378 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
379 |
-
#: options/panel5.php:
|
380 |
-
#: options/panel5.php:
|
381 |
-
#: options/panel5.php:
|
382 |
-
#: options/panel5.php:
|
383 |
msgid "Yes"
|
384 |
msgstr "Ja"
|
385 |
|
386 |
-
#: options/panel10.php:
|
387 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
388 |
-
#: options/panel5.php:
|
389 |
-
#: options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
-
#: options/panel5.php:
|
392 |
msgid "No"
|
393 |
msgstr "Nej"
|
394 |
|
395 |
-
#: options/panel10.php:
|
396 |
msgid ""
|
397 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
398 |
"purposes."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: options/panel10.php:
|
402 |
msgid "Hourly"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: options/panel10.php:
|
406 |
msgid "Twice Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: options/panel10.php:
|
410 |
msgid "Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: options/panel10.php:
|
414 |
msgid "If enabled, StCR will auto clean your information every day."
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: options/panel10.php:
|
418 |
msgid "Clean Up Log Archive"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: options/panel10.php:
|
422 |
msgid ""
|
423 |
"If you want to clean up the log archive please click the following button"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: options/panel10.php:
|
427 |
msgid "Clean"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: options/panel10.php:
|
431 |
msgid "System Information"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: options/panel10.php:
|
435 |
-
#: options/panel4.php:283 options/panel5.php:
|
436 |
msgid "Save Changes"
|
437 |
msgstr "Spara ändringar"
|
438 |
|
@@ -779,7 +775,7 @@ msgstr "Endast svar"
|
|
779 |
#: options/panel4.php:128
|
780 |
msgid ""
|
781 |
"This will be use when the user click reply on their email agent. If not set "
|
782 |
-
"will be the same as the Sender email address."
|
783 |
msgstr ""
|
784 |
|
785 |
#: options/panel4.php:147
|
@@ -796,8 +792,8 @@ msgstr ""
|
|
796 |
|
797 |
#: options/panel4.php:171
|
798 |
msgid ""
|
799 |
-
"<p><strong>Note: To get a default template clear
|
800 |
-
"the options.</strong></p>"
|
801 |
msgstr ""
|
802 |
|
803 |
#: options/panel4.php:184
|
@@ -844,93 +840,109 @@ msgid ""
|
|
844 |
"[blog_name]"
|
845 |
msgstr "Ämnesfält för bekräftelsemeddelandet. Tillåtna taggar: [post_title]"
|
846 |
|
847 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
848 |
msgid "Show StCR checkbox / dropdown"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: options/panel5.php:
|
852 |
msgid "Safetly Uninstall"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: options/panel5.php:
|
856 |
msgid "Autopurge requests"
|
857 |
msgstr "Autorensa obekräftade"
|
858 |
|
859 |
-
#: options/panel5.php:
|
860 |
msgid "Enable double check"
|
861 |
msgstr "Aktivera dubbelkoll"
|
862 |
|
863 |
-
#: options/panel5.php:
|
864 |
msgid "StCR Position"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: options/panel5.php:
|
868 |
msgid "Subscribe authors"
|
869 |
msgstr "Prenumeration författare"
|
870 |
|
871 |
-
#: options/panel5.php:
|
872 |
msgid "Enable HTML emails"
|
873 |
msgstr "Aktivera HTML-e-post"
|
874 |
|
875 |
-
#: options/panel5.php:
|
876 |
msgid "HTMLify Links in HTML emails"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: options/panel5.php:
|
880 |
msgid "Send trackbacks"
|
881 |
msgstr "Skicka trackbacks"
|
882 |
|
883 |
-
#: options/panel5.php:
|
884 |
msgid "Notify admin"
|
885 |
msgstr "Meddela administratör"
|
886 |
|
887 |
-
#: options/panel5.php:
|
888 |
msgid "Let admin subscribe"
|
889 |
msgstr "Låt administratör prenumerera"
|
890 |
|
891 |
-
#: options/panel5.php:
|
892 |
msgid "BCC admin on Notifications"
|
893 |
msgstr "Notifieringar"
|
894 |
|
895 |
-
#: options/panel5.php:
|
896 |
msgid "Enable Font Awesome"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
900 |
msgid ""
|
901 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
902 |
"You should leave it to Yes always. "
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: options/panel5.php:
|
906 |
msgid "Safely Uninstall"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: options/panel5.php:
|
910 |
msgid ""
|
911 |
"This option will allow you to delete the plugin with WordPress without "
|
912 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: options/panel5.php:
|
916 |
msgid "days"
|
917 |
msgstr "dagar"
|
918 |
|
919 |
-
#: options/panel5.php:
|
920 |
msgid ""
|
921 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
922 |
"this feature."
|
923 |
msgstr ""
|
924 |
"Radera obekräftade prenumerationer efter X dagar. 0 inaktiverar denna tjänst."
|
925 |
|
926 |
-
#: options/panel5.php:
|
927 |
msgid ""
|
928 |
"If this option is enable the subscription box will be above the submit "
|
929 |
"button in your comment form. Use this when your theme is outdated and using "
|
930 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: options/panel5.php:
|
934 |
msgid ""
|
935 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
936 |
"misuse)."
|
@@ -938,14 +950,14 @@ msgstr ""
|
|
938 |
"Skicka administrationsmeddelande för att bekräfta prenumeration (för att "
|
939 |
"undvika missbruk)."
|
940 |
|
941 |
-
#: options/panel5.php:
|
942 |
msgid ""
|
943 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
944 |
msgstr ""
|
945 |
"Låt författare automatiskt prenumerera på sina egna artiklar (ej "
|
946 |
"retroaktivt)."
|
947 |
|
948 |
-
#: options/panel5.php:
|
949 |
msgid ""
|
950 |
"If enabled, will send email messages with content-type = text/html instead "
|
951 |
"of text/plain"
|
@@ -953,75 +965,99 @@ msgstr ""
|
|
953 |
"Om aktiverat skickar detta alternativ ut e-postmeddelanden med innehållet = "
|
954 |
"text/html istället för text/plain."
|
955 |
|
956 |
-
#: options/panel5.php:
|
957 |
msgid "HTMLify links in emails"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: options/panel5.php:
|
961 |
msgid ""
|
962 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
963 |
"</a></code> (only when HTML emails enabled)."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: options/panel5.php:
|
967 |
msgid "Process trackbacks"
|
968 |
msgstr "Bearbeta trackbacks"
|
969 |
|
970 |
-
#: options/panel5.php:
|
971 |
msgid ""
|
972 |
"Notify users when a new trackback or pingback is added to the discussion."
|
973 |
msgstr ""
|
974 |
"Meddela användare när en trackback eller pingback läggs till i diskussionen."
|
975 |
|
976 |
-
#: options/panel5.php:
|
977 |
msgid "Track all subscriptions"
|
978 |
msgstr "Spåra alla prenumerationer"
|
979 |
|
980 |
-
#: options/panel5.php:
|
981 |
msgid "Notify the administrator when users subscribe without commenting."
|
982 |
msgstr "Meddela administratör när användare prenumererar utan att kommentera."
|
983 |
|
984 |
-
#: options/panel5.php:
|
985 |
msgid "Let the administrator subscribe to comments when logged in."
|
986 |
msgstr "Låt administratör prenumerera på kommentarer även när inloggad."
|
987 |
|
988 |
-
#: options/panel5.php:
|
989 |
msgid "Send a copy of all Notifications to the administrator."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: options/panel5.php:
|
993 |
msgid ""
|
994 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
995 |
"you theme already add this into your site."
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: options/panel5.php:
|
999 |
msgid "StCR Unique Key"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: options/panel5.php:
|
1003 |
msgid "This Unique Key is not set, please click the following button to "
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: options/panel5.php:
|
1007 |
msgid "Generate"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: options/panel5.php:
|
1011 |
msgid ""
|
1012 |
"This Unique Key will be use to send the notification to your subscribers "
|
1013 |
"with more security."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: options/
|
1017 |
-
msgid "
|
1018 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
|
1020 |
-
#: options/panel7.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
1025 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1026 |
"strong>, and to buy some food for my hungry family."
|
1027 |
msgstr ""
|
@@ -1031,18 +1067,27 @@ msgstr ""
|
|
1031 |
"bättre. Speciellt om du tjänar pengar på det. Alla donationer går till att "
|
1032 |
"förbättra Subscribe to Comments Reloaded, och att föda min hungriga familj."
|
1033 |
|
1034 |
-
#: options/panel7.php:
|
1035 |
-
|
1036 |
-
|
|
|
|
|
1037 |
|
1038 |
-
#: options/panel7.php:
|
1039 |
-
|
1040 |
-
|
1041 |
-
"
|
1042 |
-
"
|
1043 |
-
"
|
1044 |
-
"
|
1045 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1046 |
msgstr ""
|
1047 |
"Om du inte vill donera pengar var snäll och berätta om mitt tillägg (plugin) "
|
1048 |
"med en länk till tilläggets sida. Låt gärna dina läsare veta vad som gör din "
|
@@ -1051,11 +1096,11 @@ msgstr ""
|
|
1051 |
"to Comments kan förbättras, med mera. Oavsett vad du gör, tack för att du "
|
1052 |
"använder mitt tillägg!"
|
1053 |
|
1054 |
-
#: options/panel7.php:
|
1055 |
msgid "Subscribe to the Beta testers"
|
1056 |
msgstr "Prenumeration författare"
|
1057 |
|
1058 |
-
#: options/panel7.php:
|
1059 |
msgid ""
|
1060 |
"Before a new Update we release a Beta version so that our current users can "
|
1061 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1063,11 +1108,11 @@ msgid ""
|
|
1063 |
"a>"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: options/panel7.php:
|
1067 |
msgid "Vote and show your appreciation"
|
1068 |
msgstr "Rösta och visa din uppskattning"
|
1069 |
|
1070 |
-
#: options/panel7.php:
|
1071 |
msgid ""
|
1072 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1073 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1077,11 +1122,11 @@ msgstr ""
|
|
1077 |
"bra det är. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1078 |
"comments-reloaded/\">Betygsätt det</a> på dess sida på Plugin Directory."
|
1079 |
|
1080 |
-
#: options/panel8.php:
|
1081 |
msgid "Did you find a Bug on the plugin?"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: options/panel8.php:
|
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"
|
@@ -1176,204 +1221,46 @@ msgstr ""
|
|
1176 |
msgid "You have request to manage another email address and this is forbidden."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: utils/stcr_manage.php:
|
1180 |
-
msgid ""
|
1181 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1182 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1183 |
-
msgstr ""
|
1184 |
-
"Vill du veta när din kommentar har fått ett svar, eller prenumerera på "
|
1185 |
-
"inläggets kommentarer via e-post? Du kan även <a "
|
1186 |
-
"href='[subscribe_link]'>prenumerera</a> utan att lämna en kommentar."
|
1187 |
-
|
1188 |
-
#: utils/stcr_manage.php:224
|
1189 |
-
msgid ""
|
1190 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1191 |
-
"subscriptions."
|
1192 |
-
msgstr ""
|
1193 |
-
"Du prenumererar på detta inlägg. <a href='[manager_link]'>Redigera</a> dina "
|
1194 |
-
"prenumerationer."
|
1195 |
-
|
1196 |
-
#: utils/stcr_manage.php:225
|
1197 |
-
msgid ""
|
1198 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1199 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1200 |
-
msgstr ""
|
1201 |
-
"Din prenumeration på inlägget måste bekräftas. <a "
|
1202 |
-
"href='[manager_link]'>Redigera dina prenumerationer</a>."
|
1203 |
-
|
1204 |
-
#: utils/stcr_manage.php:226
|
1205 |
-
msgid ""
|
1206 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1207 |
-
msgstr ""
|
1208 |
-
"Du kan <a href='[manager_link]'>redigera </a> din prenumeration på detta "
|
1209 |
-
"inlägg."
|
1210 |
-
|
1211 |
-
#: utils/stcr_manage.php:232
|
1212 |
-
msgid ""
|
1213 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1214 |
-
"will send you a message containing the link to access your personal "
|
1215 |
-
"management page."
|
1216 |
-
msgstr ""
|
1217 |
-
"För att administrera dina prenumerationer, vänligen ange din e-postadress "
|
1218 |
-
"här nedanför. Du får sedan ett meddelande med en aktiveringslänk så att du "
|
1219 |
-
"kan komma åt din personliga administrationssida."
|
1220 |
-
|
1221 |
-
#: utils/stcr_manage.php:233
|
1222 |
-
msgid ""
|
1223 |
-
"Thank you for using our subscription service. Your request has been "
|
1224 |
-
"completed, and you should receive an email with the management link in a few "
|
1225 |
-
"minutes."
|
1226 |
-
msgstr ""
|
1227 |
-
"Tack för att du prenumerar! Du borde få e-postmeddelandet med "
|
1228 |
-
"aktiveringslänken inom några minuter."
|
1229 |
-
|
1230 |
-
#: utils/stcr_manage.php:234
|
1231 |
-
msgid ""
|
1232 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1233 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1234 |
-
"form here below and you're all set."
|
1235 |
-
msgstr ""
|
1236 |
-
"Du kan följa diskussionen för <strong>[post_title]</strong> utan att lämna "
|
1237 |
-
"en kommentar. Skriv bara in din e-postadress här nedanför så är det klart "
|
1238 |
-
"sen."
|
1239 |
-
|
1240 |
-
#: utils/stcr_manage.php:235
|
1241 |
-
msgid ""
|
1242 |
-
"Thank you for using our subscription service. Your request has been "
|
1243 |
-
"completed. You will receive a notification email every time a new comment to "
|
1244 |
-
"this article is approved and posted by the administrator."
|
1245 |
-
msgstr ""
|
1246 |
-
"Tack för att du prenumererar! Du kommer nu att få ett e-postmeddelande varje "
|
1247 |
-
"gång en kommentar publiceras på inlägget."
|
1248 |
-
|
1249 |
-
#: utils/stcr_manage.php:236
|
1250 |
-
msgid ""
|
1251 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1252 |
-
"request, please check your email for the verification message and follow the "
|
1253 |
-
"instructions."
|
1254 |
-
msgstr ""
|
1255 |
-
"Tack för att du prenumererar! För att bekräfta prenumerationen, vänligen "
|
1256 |
-
"logga in på din e-post och följ instruktionerna i aktiveringsmeddelandet."
|
1257 |
-
|
1258 |
-
#: utils/stcr_manage.php:237
|
1259 |
-
msgid ""
|
1260 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1261 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1262 |
-
msgstr ""
|
1263 |
-
"Vill du redigera dina prenumerationer? För att säga upp en eller flera "
|
1264 |
-
"prenumerationer, vänligen klicka i motsvarande ruta eller rutor och bekräfta "
|
1265 |
-
"på knappen längst ned."
|
1266 |
-
|
1267 |
-
#: utils/stcr_manage.php:238
|
1268 |
-
msgid ""
|
1269 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1270 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1271 |
-
"You are currently subscribed to:"
|
1272 |
-
msgstr ""
|
1273 |
-
"Vill du redigera dina prenumerationer? För att säga upp en eller flera "
|
1274 |
-
"prenumerationer, vänligen klicka i motsvarande ruta eller rutor och bekräfta "
|
1275 |
-
"på knappen längst ned. Du prenumererar för närvarande på:"
|
1276 |
-
|
1277 |
-
#: utils/stcr_manage.php:242
|
1278 |
-
msgid "There is a new comment to [post_title]"
|
1279 |
-
msgstr "Det har kommit en ny kommentar på [post_title]"
|
1280 |
-
|
1281 |
-
#: utils/stcr_manage.php:243
|
1282 |
-
msgid ""
|
1283 |
-
"There is a new comment to [post_title].\n"
|
1284 |
-
"Comment Link: [comment_permalink]\n"
|
1285 |
-
"Author: [comment_author]\n"
|
1286 |
-
"Comment:\n"
|
1287 |
-
"[comment_content]\n"
|
1288 |
-
"Permalink: [post_permalink]\n"
|
1289 |
-
"Manage your subscriptions: [manager_link]"
|
1290 |
-
msgstr ""
|
1291 |
-
"Det finns en ny kommentar på [post_title].\n"
|
1292 |
-
"Länk: [comment_permalink]\n"
|
1293 |
-
"Skriven av: [comment_author]\n"
|
1294 |
-
"Kommentar:[comment_content]\n"
|
1295 |
-
"Permalänk: [post_permalink]\n"
|
1296 |
-
"Redigera dina prenumerationer: [manager_link]"
|
1297 |
-
|
1298 |
-
#: utils/stcr_manage.php:244
|
1299 |
-
msgid "Please confirm your subscription to [post_title]"
|
1300 |
-
msgstr "Vänligen bekräfta din prenumeration på [post_title]"
|
1301 |
-
|
1302 |
-
#: utils/stcr_manage.php:245
|
1303 |
-
msgid ""
|
1304 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1305 |
-
"[post_permalink]\n"
|
1306 |
-
"\n"
|
1307 |
-
"Please confirm your request by clicking on this link:\n"
|
1308 |
-
"[confirm_link]"
|
1309 |
-
msgstr ""
|
1310 |
-
"Du, eller någon med din adress, har begärt att prenumerera på kommentarer "
|
1311 |
-
"till följande inlägg: [post_permalink]\n"
|
1312 |
-
"Vänligen bekräfta prenumerationen genom att klicka på länken här nedanför:\n"
|
1313 |
-
"[confirm_link] \n"
|
1314 |
-
"Om länken inte går att klicka på, kopiera adressen och klistra in den i "
|
1315 |
-
"adressfönstret på din webbläsare."
|
1316 |
-
|
1317 |
-
#: utils/stcr_manage.php:246
|
1318 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1319 |
-
msgstr "Administrera dina prenumerationer på [blog_name]"
|
1320 |
-
|
1321 |
-
#: utils/stcr_manage.php:247
|
1322 |
-
msgid ""
|
1323 |
-
"You have requested to manage your subscriptions to the articles on "
|
1324 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1325 |
-
msgstr ""
|
1326 |
-
|
1327 |
-
#: utils/stcr_manage.php:248
|
1328 |
-
msgid ""
|
1329 |
-
"You have requested to manage your subscriptions to the articles on "
|
1330 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1331 |
-
"[manager_link]"
|
1332 |
-
msgstr ""
|
1333 |
-
"Du har begärt att redigera dina prenumerationer för artiklarna på "
|
1334 |
-
"[blog_name]. Följ denna länk för att logga in på din personliga sida: \n"
|
1335 |
-
"[manager_link]"
|
1336 |
-
|
1337 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1338 |
msgid "StCR System"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: utils/stcr_manage.php:
|
1342 |
-
#: utils/stcr_manage.php:
|
1343 |
-
#: utils/stcr_manage.php:
|
1344 |
-
#: utils/stcr_manage.php:
|
1345 |
-
#: utils/stcr_manage.php:
|
1346 |
msgid "You do not have sufficient permissions to access this page."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: utils/stcr_manage.php:
|
1350 |
msgid "Subscriptions"
|
1351 |
msgstr "Prenumeration"
|
1352 |
|
1353 |
-
#: utils/stcr_manage.php:
|
1354 |
msgid ""
|
1355 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1356 |
msgstr ""
|
1357 |
"Behöver du hjälp med att använda Subscribe to Comments Reloaded? Besök det "
|
1358 |
"officiella"
|
1359 |
|
1360 |
-
#: utils/stcr_manage.php:
|
1361 |
msgid "support forum"
|
1362 |
msgstr "supportforumet"
|
1363 |
|
1364 |
-
#: utils/stcr_manage.php:
|
1365 |
msgid "Feeling generous?"
|
1366 |
msgstr "Känner du dig generös?"
|
1367 |
|
1368 |
-
#: utils/stcr_manage.php:
|
1369 |
msgid "Donate a few bucks!"
|
1370 |
msgstr "Donera några kronor!"
|
1371 |
|
1372 |
-
#: utils/stcr_upgrade.php:
|
1373 |
msgid "Important Notice"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: utils/stcr_upgrade.php:
|
1377 |
msgid ""
|
1378 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1379 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1381,28 +1268,28 @@ msgid ""
|
|
1381 |
"src=\""
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: utils/stcr_upgrade.php:
|
1385 |
msgid ""
|
1386 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1387 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1388 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: utils/stcr_upgrade.php:
|
1392 |
msgid ""
|
1393 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1394 |
"Comments to prevent confusion between the two plugins."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: utils/stcr_upgrade.php:
|
1398 |
msgid ""
|
1399 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1400 |
"that you want to import, you'll need to import that data manually, as only "
|
1401 |
"one import routine will ever run to prevent data loss."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: utils/stcr_upgrade.php:
|
1405 |
-
#: utils/stcr_upgrade.php:
|
1406 |
msgid ""
|
1407 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1408 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1410,20 +1297,20 @@ msgid ""
|
|
1410 |
"\"stcr-loading-animation\" src=\""
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: utils/stcr_upgrade.php:
|
1414 |
msgid ""
|
1415 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1416 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1417 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: utils/stcr_upgrade.php:
|
1421 |
msgid ""
|
1422 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1423 |
"Notification to prevent confusion between the two plugins."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: utils/stcr_upgrade.php:
|
1427 |
msgid ""
|
1428 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1429 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1431,13 +1318,13 @@ msgid ""
|
|
1431 |
"Reloaded</strong>."
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: utils/stcr_upgrade.php:
|
1435 |
msgid ""
|
1436 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1437 |
"Subscriptions to prevent confusion between the two plugins."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: utils/stcr_upgrade.php:
|
1441 |
msgid ""
|
1442 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1443 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1445,7 +1332,7 @@ msgid ""
|
|
1445 |
"ever run to prevent data loss."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: utils/stcr_upgrade.php:
|
1449 |
msgid ""
|
1450 |
"<strong>Note:</strong> If you were previously using the "
|
1451 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1454,29 +1341,29 @@ msgid ""
|
|
1454 |
"respectively."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
-
#: utils/stcr_upgrade.php:
|
1458 |
msgid ""
|
1459 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: utils/stcr_upgrade.php:
|
1463 |
-
#: utils/stcr_upgrade.php:
|
1464 |
msgid ""
|
1465 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1466 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: utils/stcr_upgrade.php:
|
1470 |
msgid ""
|
1471 |
-
"Please consider to make a donation to support the plugin
|
1472 |
-
"<a href=\"\n"
|
1473 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1474 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1475 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1476 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: utils/stcr_upgrade.php:
|
1480 |
msgid ""
|
1481 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1482 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1484,23 +1371,23 @@ msgid ""
|
|
1484 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: utils/stcr_upgrade.php:
|
1488 |
msgid ""
|
1489 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1490 |
"160106."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: utils/stcr_upgrade.php:
|
1494 |
msgid ""
|
1495 |
"This version includes many changes and fixes to improve your experience with "
|
1496 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1497 |
"email templates, Subscription Checkbox position, and more!"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: utils/stcr_upgrade.php:
|
1501 |
-
#: utils/stcr_upgrade.php:
|
1502 |
-
#: utils/stcr_upgrade.php:
|
1503 |
-
#: utils/stcr_upgrade.php:
|
1504 |
msgid ""
|
1505 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1506 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1508,123 +1395,126 @@ msgid ""
|
|
1508 |
"class=\"stcr-loading-animation\" src=\""
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: utils/stcr_upgrade.php:
|
1512 |
msgid ""
|
1513 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1514 |
"160115."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
-
#: utils/stcr_upgrade.php:
|
1518 |
msgid ""
|
1519 |
"This version includes fixes to broken links while managing your subscriptions"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: utils/stcr_upgrade.php:
|
1523 |
msgid ""
|
1524 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1525 |
"160831"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: utils/stcr_upgrade.php:
|
1529 |
msgid "This version includes fixes to many bugs and also new features, "
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#: utils/stcr_upgrade.php:
|
1533 |
msgid ""
|
1534 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1535 |
"address. This will help the subscribers to use the Reply option in their "
|
1536 |
"email agents."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: utils/stcr_upgrade.php:
|
1540 |
msgid ""
|
1541 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1542 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: utils/stcr_upgrade.php:
|
1546 |
msgid ""
|
1547 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1548 |
"without loosing your subscriptions. You can use this option also for reset "
|
1549 |
"all the settings, see the FAQ."
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: utils/stcr_upgrade.php:
|
1553 |
msgid ""
|
1554 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1555 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1556 |
"Post Type."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: utils/stcr_upgrade.php:
|
1560 |
msgid ""
|
1561 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1562 |
"options to and the management link only by email and not to display it on "
|
1563 |
"the request link page."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
-
#: utils/stcr_upgrade.php:
|
1567 |
msgid ""
|
1568 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1569 |
"160902"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: utils/stcr_upgrade.php:
|
1573 |
msgid ""
|
1574 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1575 |
"previous 160831 version."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
#: utils/stcr_upgrade.php:
|
1579 |
msgid "Settings"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: utils/stcr_upgrade.php:
|
1583 |
msgid ""
|
1584 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1585 |
"160915"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: utils/stcr_upgrade.php:
|
1589 |
-
#: utils/stcr_upgrade.php:
|
1590 |
msgid "This version includes fixes and improvements, "
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: utils/stcr_upgrade.php:
|
1594 |
msgid ""
|
1595 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1596 |
"dropdown."
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: utils/stcr_upgrade.php:
|
1600 |
msgid ""
|
1601 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: utils/stcr_upgrade.php:
|
|
|
1605 |
msgid "Log Settings"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: utils/stcr_upgrade.php:
|
|
|
1609 |
msgid ""
|
1610 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: utils/stcr_upgrade.php:
|
1614 |
msgid ""
|
1615 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1616 |
"enable."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: utils/stcr_upgrade.php:
|
1620 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: utils/stcr_upgrade.php:
|
|
|
1624 |
msgid "The support of this plugin is given thanks to your donations."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: utils/stcr_upgrade.php:
|
1628 |
msgid ""
|
1629 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1630 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1634,19 +1524,19 @@ msgid ""
|
|
1634 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: utils/stcr_upgrade.php:
|
1638 |
msgid ""
|
1639 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1640 |
"installation regarding a database table creation."
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: utils/stcr_upgrade.php:
|
1644 |
msgid ""
|
1645 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1646 |
"Awesome."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: utils/stcr_upgrade.php:
|
1650 |
msgid ""
|
1651 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1652 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1657,7 +1547,202 @@ msgid ""
|
|
1657 |
"for the users that have supported the plugin development."
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1661 |
msgid "StCR Notification"
|
1662 |
msgstr "Notifieringar"
|
1663 |
|
@@ -1670,6 +1755,28 @@ msgstr "Prenumerera inte"
|
|
1670 |
msgid "All"
|
1671 |
msgstr "Alla"
|
1672 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1673 |
#~ msgid ""
|
1674 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1675 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:12-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:13-0700\n"
|
7 |
+
"Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
|
8 |
"Language-Team: Terese Mörtvik <terese.mortvik@tiarin.se>\n"
|
9 |
"Language: sv_SE\n"
|
10 |
"MIME-Version: 1.0\n"
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: er, nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "Administrera prenumerationer"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "Kommentarsfält"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "Administrationssida"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "Notifieringar"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "Alternativ"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "Support"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr "Vill eller kan du inte donera? Du kan fortfarande hjälpa"
|
48 |
|
340 |
msgid "Sorry, no subscriptions match your search criteria."
|
341 |
msgstr "Beklagar, men inga prenumerationer matchar dina sökkriteria."
|
342 |
|
343 |
+
#: options/panel10.php:41
|
344 |
msgid "The log file has been successfully deleted."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: options/panel10.php:46
|
348 |
msgid "Can't delete the log file, check the file permissions."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: options/panel10.php:52
|
352 |
msgid "The log file does not exists."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: options/panel10.php:66 options/panel10.php:110
|
356 |
msgid "Enable Log Information"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: options/panel10.php:72 options/panel10.php:119
|
360 |
msgid "Enable Auto clean log data"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
364 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
365 |
msgid "Your settings have been successfully updated."
|
366 |
msgstr "Dina inställningar har sparats."
|
367 |
|
368 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
369 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
370 |
msgid "There was an error updating the following fields:"
|
371 |
msgstr "Det uppstod ett fel vid uppdateringen av följande:"
|
372 |
|
373 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
374 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
375 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
376 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
377 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
378 |
+
#: options/panel5.php:210 options/panel5.php:219
|
379 |
msgid "Yes"
|
380 |
msgstr "Ja"
|
381 |
|
382 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
383 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
384 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
385 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
386 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
387 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
388 |
msgid "No"
|
389 |
msgstr "Nej"
|
390 |
|
391 |
+
#: options/panel10.php:114
|
392 |
msgid ""
|
393 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
394 |
"purposes."
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: options/panel10.php:125
|
398 |
msgid "Hourly"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: options/panel10.php:126
|
402 |
msgid "Twice Daily"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: options/panel10.php:127
|
406 |
msgid "Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: options/panel10.php:129
|
410 |
msgid "If enabled, StCR will auto clean your information every day."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: options/panel10.php:134
|
414 |
msgid "Clean Up Log Archive"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: options/panel10.php:138
|
418 |
msgid ""
|
419 |
"If you want to clean up the log archive please click the following button"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: options/panel10.php:140
|
423 |
msgid "Clean"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: options/panel10.php:147 options/panel10.php:150
|
427 |
msgid "System Information"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
431 |
+
#: options/panel4.php:283 options/panel5.php:265
|
432 |
msgid "Save Changes"
|
433 |
msgstr "Spara ändringar"
|
434 |
|
775 |
#: options/panel4.php:128
|
776 |
msgid ""
|
777 |
"This will be use when the user click reply on their email agent. If not set "
|
778 |
+
"it will be the same as the Sender email address."
|
779 |
msgstr ""
|
780 |
|
781 |
#: options/panel4.php:147
|
792 |
|
793 |
#: options/panel4.php:171
|
794 |
msgid ""
|
795 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
796 |
+
"all the content and save the options.</strong></p>"
|
797 |
msgstr ""
|
798 |
|
799 |
#: options/panel4.php:184
|
840 |
"[blog_name]"
|
841 |
msgstr "Ämnesfält för bekräftelsemeddelandet. Tillåtna taggar: [post_title]"
|
842 |
|
843 |
+
#: options/panel5.php:38
|
844 |
+
#, fuzzy
|
845 |
+
#| msgid "Your settings have been successfully updated."
|
846 |
+
msgid "Your settings have been successfully reset."
|
847 |
+
msgstr "Dina inställningar har sparats."
|
848 |
+
|
849 |
+
#: options/panel5.php:40
|
850 |
+
#, fuzzy
|
851 |
+
#| msgid "There was an error updating the following fields:"
|
852 |
+
msgid "There was an error deleting the options:"
|
853 |
+
msgstr "Det uppstod ett fel vid uppdateringen av följande:"
|
854 |
+
|
855 |
+
#: options/panel5.php:48 options/panel5.php:108
|
856 |
msgid "Show StCR checkbox / dropdown"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: options/panel5.php:51
|
860 |
msgid "Safetly Uninstall"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: options/panel5.php:54 options/panel5.php:125
|
864 |
msgid "Autopurge requests"
|
865 |
msgstr "Autorensa obekräftade"
|
866 |
|
867 |
+
#: options/panel5.php:57 options/panel5.php:143
|
868 |
msgid "Enable double check"
|
869 |
msgstr "Aktivera dubbelkoll"
|
870 |
|
871 |
+
#: options/panel5.php:60 options/panel5.php:134
|
872 |
msgid "StCR Position"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: options/panel5.php:63 options/panel5.php:151
|
876 |
msgid "Subscribe authors"
|
877 |
msgstr "Prenumeration författare"
|
878 |
|
879 |
+
#: options/panel5.php:66 options/panel5.php:161
|
880 |
msgid "Enable HTML emails"
|
881 |
msgstr "Aktivera HTML-e-post"
|
882 |
|
883 |
+
#: options/panel5.php:69
|
884 |
msgid "HTMLify Links in HTML emails"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: options/panel5.php:72
|
888 |
msgid "Send trackbacks"
|
889 |
msgstr "Skicka trackbacks"
|
890 |
|
891 |
+
#: options/panel5.php:75
|
892 |
msgid "Notify admin"
|
893 |
msgstr "Meddela administratör"
|
894 |
|
895 |
+
#: options/panel5.php:78 options/panel5.php:199
|
896 |
msgid "Let admin subscribe"
|
897 |
msgstr "Låt administratör prenumerera"
|
898 |
|
899 |
+
#: options/panel5.php:81 options/panel5.php:208
|
900 |
msgid "BCC admin on Notifications"
|
901 |
msgstr "Notifieringar"
|
902 |
|
903 |
+
#: options/panel5.php:84 options/panel5.php:217
|
904 |
msgid "Enable Font Awesome"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
908 |
+
msgid "Reset All Options"
|
909 |
+
msgstr ""
|
910 |
+
|
911 |
+
#: options/panel5.php:112
|
912 |
msgid ""
|
913 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
914 |
"You should leave it to Yes always. "
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: options/panel5.php:117
|
918 |
msgid "Safely Uninstall"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: options/panel5.php:121
|
922 |
msgid ""
|
923 |
"This option will allow you to delete the plugin with WordPress without "
|
924 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: options/panel5.php:128
|
928 |
msgid "days"
|
929 |
msgstr "dagar"
|
930 |
|
931 |
+
#: options/panel5.php:129
|
932 |
msgid ""
|
933 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
934 |
"this feature."
|
935 |
msgstr ""
|
936 |
"Radera obekräftade prenumerationer efter X dagar. 0 inaktiverar denna tjänst."
|
937 |
|
938 |
+
#: options/panel5.php:138
|
939 |
msgid ""
|
940 |
"If this option is enable the subscription box will be above the submit "
|
941 |
"button in your comment form. Use this when your theme is outdated and using "
|
942 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: options/panel5.php:147
|
946 |
msgid ""
|
947 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
948 |
"misuse)."
|
950 |
"Skicka administrationsmeddelande för att bekräfta prenumeration (för att "
|
951 |
"undvika missbruk)."
|
952 |
|
953 |
+
#: options/panel5.php:156
|
954 |
msgid ""
|
955 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
956 |
msgstr ""
|
957 |
"Låt författare automatiskt prenumerera på sina egna artiklar (ej "
|
958 |
"retroaktivt)."
|
959 |
|
960 |
+
#: options/panel5.php:165
|
961 |
msgid ""
|
962 |
"If enabled, will send email messages with content-type = text/html instead "
|
963 |
"of text/plain"
|
965 |
"Om aktiverat skickar detta alternativ ut e-postmeddelanden med innehållet = "
|
966 |
"text/html istället för text/plain."
|
967 |
|
968 |
+
#: options/panel5.php:170
|
969 |
msgid "HTMLify links in emails"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: options/panel5.php:175
|
973 |
msgid ""
|
974 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
975 |
"</a></code> (only when HTML emails enabled)."
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: options/panel5.php:180
|
979 |
msgid "Process trackbacks"
|
980 |
msgstr "Bearbeta trackbacks"
|
981 |
|
982 |
+
#: options/panel5.php:184
|
983 |
msgid ""
|
984 |
"Notify users when a new trackback or pingback is added to the discussion."
|
985 |
msgstr ""
|
986 |
"Meddela användare när en trackback eller pingback läggs till i diskussionen."
|
987 |
|
988 |
+
#: options/panel5.php:189
|
989 |
msgid "Track all subscriptions"
|
990 |
msgstr "Spåra alla prenumerationer"
|
991 |
|
992 |
+
#: options/panel5.php:194
|
993 |
msgid "Notify the administrator when users subscribe without commenting."
|
994 |
msgstr "Meddela administratör när användare prenumererar utan att kommentera."
|
995 |
|
996 |
+
#: options/panel5.php:203
|
997 |
msgid "Let the administrator subscribe to comments when logged in."
|
998 |
msgstr "Låt administratör prenumerera på kommentarer även när inloggad."
|
999 |
|
1000 |
+
#: options/panel5.php:212
|
1001 |
msgid "Send a copy of all Notifications to the administrator."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: options/panel5.php:221
|
1005 |
msgid ""
|
1006 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1007 |
"you theme already add this into your site."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: options/panel5.php:226
|
1011 |
msgid "StCR Unique Key"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: options/panel5.php:231
|
1015 |
msgid "This Unique Key is not set, please click the following button to "
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1019 |
msgid "Generate"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: options/panel5.php:243
|
1023 |
msgid ""
|
1024 |
"This Unique Key will be use to send the notification to your subscribers "
|
1025 |
"with more security."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: options/panel5.php:256
|
1029 |
+
msgid ""
|
1030 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1031 |
+
"with caution."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: options/panel5.php:258
|
1035 |
+
msgid "Yes, Delete Options including subscriptions."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: options/panel5.php:259
|
1039 |
+
msgid "No, Only delete the StCR Options."
|
1040 |
+
msgstr ""
|
1041 |
|
1042 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1043 |
+
msgid ""
|
1044 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1045 |
+
"hidden=\"true\"></i>"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1049 |
+
#, fuzzy
|
1050 |
+
#| msgid ""
|
1051 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1052 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1053 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1054 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1055 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1056 |
msgid ""
|
1057 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1058 |
"consider supporting the author if this plugin made your web site better, "
|
1059 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1060 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1061 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1062 |
"strong>, and to buy some food for my hungry family."
|
1063 |
msgstr ""
|
1067 |
"bättre. Speciellt om du tjänar pengar på det. Alla donationer går till att "
|
1068 |
"förbättra Subscribe to Comments Reloaded, och att föda min hungriga familj."
|
1069 |
|
1070 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1071 |
+
#, fuzzy
|
1072 |
+
#| msgid "You can help"
|
1073 |
+
msgid "You can still help"
|
1074 |
+
msgstr "Du kan hjälpa till"
|
1075 |
|
1076 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1077 |
+
#, fuzzy
|
1078 |
+
#| msgid ""
|
1079 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1080 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1081 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1082 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1083 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1084 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1085 |
+
msgid ""
|
1086 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1087 |
+
"Please let your readers know what makes your blog better. You can also "
|
1088 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1089 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1090 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1091 |
msgstr ""
|
1092 |
"Om du inte vill donera pengar var snäll och berätta om mitt tillägg (plugin) "
|
1093 |
"med en länk till tilläggets sida. Låt gärna dina läsare veta vad som gör din "
|
1096 |
"to Comments kan förbättras, med mera. Oavsett vad du gör, tack för att du "
|
1097 |
"använder mitt tillägg!"
|
1098 |
|
1099 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1100 |
msgid "Subscribe to the Beta testers"
|
1101 |
msgstr "Prenumeration författare"
|
1102 |
|
1103 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1104 |
msgid ""
|
1105 |
"Before a new Update we release a Beta version so that our current users can "
|
1106 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1108 |
"a>"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1112 |
msgid "Vote and show your appreciation"
|
1113 |
msgstr "Rösta och visa din uppskattning"
|
1114 |
|
1115 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1116 |
msgid ""
|
1117 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1118 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1122 |
"bra det är. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1123 |
"comments-reloaded/\">Betygsätt det</a> på dess sida på Plugin Directory."
|
1124 |
|
1125 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1126 |
msgid "Did you find a Bug on the plugin?"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1130 |
msgid ""
|
1131 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1132 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1221 |
msgid "You have request to manage another email address and this is forbidden."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1225 |
msgid "StCR System"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1229 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1230 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1231 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1232 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1233 |
msgid "You do not have sufficient permissions to access this page."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: utils/stcr_manage.php:726
|
1237 |
msgid "Subscriptions"
|
1238 |
msgstr "Prenumeration"
|
1239 |
|
1240 |
+
#: utils/stcr_manage.php:782
|
1241 |
msgid ""
|
1242 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1243 |
msgstr ""
|
1244 |
"Behöver du hjälp med att använda Subscribe to Comments Reloaded? Besök det "
|
1245 |
"officiella"
|
1246 |
|
1247 |
+
#: utils/stcr_manage.php:782
|
1248 |
msgid "support forum"
|
1249 |
msgstr "supportforumet"
|
1250 |
|
1251 |
+
#: utils/stcr_manage.php:783
|
1252 |
msgid "Feeling generous?"
|
1253 |
msgstr "Känner du dig generös?"
|
1254 |
|
1255 |
+
#: utils/stcr_manage.php:783
|
1256 |
msgid "Donate a few bucks!"
|
1257 |
msgstr "Donera några kronor!"
|
1258 |
|
1259 |
+
#: utils/stcr_upgrade.php:72
|
1260 |
msgid "Important Notice"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: utils/stcr_upgrade.php:120
|
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="
|
1268 |
"src=\""
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: utils/stcr_upgrade.php:175
|
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:175
|
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:176
|
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:177 utils/stcr_upgrade.php:251
|
1292 |
+
#: utils/stcr_upgrade.php:400
|
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 "
|
1297 |
"\"stcr-loading-animation\" src=\""
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: utils/stcr_upgrade.php:250
|
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:250
|
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:397
|
1314 |
msgid ""
|
1315 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1316 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1318 |
"Reloaded</strong>."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: utils/stcr_upgrade.php:397
|
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:398
|
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, "
|
1332 |
"ever run to prevent data loss."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: utils/stcr_upgrade.php:399
|
1336 |
msgid ""
|
1337 |
"<strong>Note:</strong> If you were previously using the "
|
1338 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1341 |
"respectively."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: utils/stcr_upgrade.php:413
|
1345 |
msgid ""
|
1346 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1350 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1351 |
msgid ""
|
1352 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1353 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: utils/stcr_upgrade.php:415
|
1357 |
msgid ""
|
1358 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1359 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1360 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1361 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1362 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1363 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: utils/stcr_upgrade.php:417
|
1367 |
msgid ""
|
1368 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1369 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1371 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: utils/stcr_upgrade.php:428
|
1375 |
msgid ""
|
1376 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1377 |
"160106."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: utils/stcr_upgrade.php:429
|
1381 |
msgid ""
|
1382 |
"This version includes many changes and fixes to improve your experience with "
|
1383 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1384 |
"email templates, Subscription Checkbox position, and more!"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1388 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1389 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1390 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1391 |
msgid ""
|
1392 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1393 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1395 |
"class=\"stcr-loading-animation\" src=\""
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: utils/stcr_upgrade.php:443
|
1399 |
msgid ""
|
1400 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1401 |
"160115."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: utils/stcr_upgrade.php:444
|
1405 |
msgid ""
|
1406 |
"This version includes fixes to broken links while managing your subscriptions"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: utils/stcr_upgrade.php:458
|
1410 |
msgid ""
|
1411 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1412 |
"160831"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1416 |
msgid "This version includes fixes to many bugs and also new features, "
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1420 |
msgid ""
|
1421 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1422 |
"address. This will help the subscribers to use the Reply option in their "
|
1423 |
"email agents."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1427 |
msgid ""
|
1428 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1429 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1433 |
msgid ""
|
1434 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1435 |
"without loosing your subscriptions. You can use this option also for reset "
|
1436 |
"all the settings, see the FAQ."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1440 |
msgid ""
|
1441 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1442 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1443 |
"Post Type."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1447 |
msgid ""
|
1448 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1449 |
"options to and the management link only by email and not to display it on "
|
1450 |
"the request link page."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: utils/stcr_upgrade.php:480
|
1454 |
msgid ""
|
1455 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1456 |
"160902"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: utils/stcr_upgrade.php:483
|
1460 |
msgid ""
|
1461 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1462 |
"previous 160831 version."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1466 |
msgid "Settings"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: utils/stcr_upgrade.php:504
|
1470 |
msgid ""
|
1471 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1472 |
"160915"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1476 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1477 |
msgid "This version includes fixes and improvements, "
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: utils/stcr_upgrade.php:508
|
1481 |
msgid ""
|
1482 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1483 |
"dropdown."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: utils/stcr_upgrade.php:509
|
1487 |
msgid ""
|
1488 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1492 |
+
#: utils/stcr_upgrade.php:576
|
1493 |
msgid "Log Settings"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1497 |
+
#: utils/stcr_upgrade.php:580
|
1498 |
msgid ""
|
1499 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: utils/stcr_upgrade.php:529
|
1503 |
msgid ""
|
1504 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1505 |
"enable."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
+
#: utils/stcr_upgrade.php:530
|
1509 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1513 |
+
#: utils/stcr_upgrade.php:590
|
1514 |
msgid "The support of this plugin is given thanks to your donations."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: utils/stcr_upgrade.php:536
|
1518 |
msgid ""
|
1519 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1520 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1524 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: utils/stcr_upgrade.php:557
|
1528 |
msgid ""
|
1529 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1530 |
"installation regarding a database table creation."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: utils/stcr_upgrade.php:558
|
1534 |
msgid ""
|
1535 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1536 |
"Awesome."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: utils/stcr_upgrade.php:563
|
1540 |
msgid ""
|
1541 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1542 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1547 |
"for the users that have supported the plugin development."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: utils/stcr_upgrade.php:584
|
1551 |
+
msgid ""
|
1552 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1553 |
+
"issues."
|
1554 |
+
msgstr ""
|
1555 |
+
|
1556 |
+
#: utils/stcr_upgrade.php:585
|
1557 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1558 |
+
msgstr ""
|
1559 |
+
|
1560 |
+
#: utils/stcr_upgrade.php:586
|
1561 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1562 |
+
msgstr ""
|
1563 |
+
|
1564 |
+
#: utils/stcr_upgrade.php:591
|
1565 |
+
msgid ""
|
1566 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1567 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1568 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1569 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1570 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1571 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1572 |
+
"Thanks for all the users that have supported the plugin development."
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: utils/stcr_utils.php:196
|
1576 |
+
msgid ""
|
1577 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1578 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1579 |
+
msgstr ""
|
1580 |
+
"Vill du veta när din kommentar har fått ett svar, eller prenumerera på "
|
1581 |
+
"inläggets kommentarer via e-post? Du kan även <a "
|
1582 |
+
"href='[subscribe_link]'>prenumerera</a> utan att lämna en kommentar."
|
1583 |
+
|
1584 |
+
#: utils/stcr_utils.php:197
|
1585 |
+
msgid ""
|
1586 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1587 |
+
"subscriptions."
|
1588 |
+
msgstr ""
|
1589 |
+
"Du prenumererar på detta inlägg. <a href='[manager_link]'>Redigera</a> dina "
|
1590 |
+
"prenumerationer."
|
1591 |
+
|
1592 |
+
#: utils/stcr_utils.php:198
|
1593 |
+
msgid ""
|
1594 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1595 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1596 |
+
msgstr ""
|
1597 |
+
"Din prenumeration på inlägget måste bekräftas. <a "
|
1598 |
+
"href='[manager_link]'>Redigera dina prenumerationer</a>."
|
1599 |
+
|
1600 |
+
#: utils/stcr_utils.php:199
|
1601 |
+
msgid ""
|
1602 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1603 |
+
msgstr ""
|
1604 |
+
"Du kan <a href='[manager_link]'>redigera </a> din prenumeration på detta "
|
1605 |
+
"inlägg."
|
1606 |
+
|
1607 |
+
#: utils/stcr_utils.php:205
|
1608 |
+
msgid ""
|
1609 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1610 |
+
"will send you a message containing the link to access your personal "
|
1611 |
+
"management page."
|
1612 |
+
msgstr ""
|
1613 |
+
"För att administrera dina prenumerationer, vänligen ange din e-postadress "
|
1614 |
+
"här nedanför. Du får sedan ett meddelande med en aktiveringslänk så att du "
|
1615 |
+
"kan komma åt din personliga administrationssida."
|
1616 |
+
|
1617 |
+
#: utils/stcr_utils.php:206
|
1618 |
+
msgid ""
|
1619 |
+
"Thank you for using our subscription service. Your request has been "
|
1620 |
+
"completed, and you should receive an email with the management link in a few "
|
1621 |
+
"minutes."
|
1622 |
+
msgstr ""
|
1623 |
+
"Tack för att du prenumerar! Du borde få e-postmeddelandet med "
|
1624 |
+
"aktiveringslänken inom några minuter."
|
1625 |
+
|
1626 |
+
#: utils/stcr_utils.php:207
|
1627 |
+
msgid ""
|
1628 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1629 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1630 |
+
"form here below and you're all set."
|
1631 |
+
msgstr ""
|
1632 |
+
"Du kan följa diskussionen för <strong>[post_title]</strong> utan att lämna "
|
1633 |
+
"en kommentar. Skriv bara in din e-postadress här nedanför så är det klart "
|
1634 |
+
"sen."
|
1635 |
+
|
1636 |
+
#: utils/stcr_utils.php:208
|
1637 |
+
msgid ""
|
1638 |
+
"Thank you for using our subscription service. Your request has been "
|
1639 |
+
"completed. You will receive a notification email every time a new comment to "
|
1640 |
+
"this article is approved and posted by the administrator."
|
1641 |
+
msgstr ""
|
1642 |
+
"Tack för att du prenumererar! Du kommer nu att få ett e-postmeddelande varje "
|
1643 |
+
"gång en kommentar publiceras på inlägget."
|
1644 |
+
|
1645 |
+
#: utils/stcr_utils.php:209
|
1646 |
+
msgid ""
|
1647 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1648 |
+
"request, please check your email for the verification message and follow the "
|
1649 |
+
"instructions."
|
1650 |
+
msgstr ""
|
1651 |
+
"Tack för att du prenumererar! För att bekräfta prenumerationen, vänligen "
|
1652 |
+
"logga in på din e-post och följ instruktionerna i aktiveringsmeddelandet."
|
1653 |
+
|
1654 |
+
#: utils/stcr_utils.php:210
|
1655 |
+
msgid ""
|
1656 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1657 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1658 |
+
msgstr ""
|
1659 |
+
"Vill du redigera dina prenumerationer? För att säga upp en eller flera "
|
1660 |
+
"prenumerationer, vänligen klicka i motsvarande ruta eller rutor och bekräfta "
|
1661 |
+
"på knappen längst ned."
|
1662 |
+
|
1663 |
+
#: utils/stcr_utils.php:211
|
1664 |
+
msgid ""
|
1665 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1666 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1667 |
+
"You are currently subscribed to:"
|
1668 |
+
msgstr ""
|
1669 |
+
"Vill du redigera dina prenumerationer? För att säga upp en eller flera "
|
1670 |
+
"prenumerationer, vänligen klicka i motsvarande ruta eller rutor och bekräfta "
|
1671 |
+
"på knappen längst ned. Du prenumererar för närvarande på:"
|
1672 |
+
|
1673 |
+
#: utils/stcr_utils.php:215
|
1674 |
+
msgid "There is a new comment to [post_title]"
|
1675 |
+
msgstr "Det har kommit en ny kommentar på [post_title]"
|
1676 |
+
|
1677 |
+
#: utils/stcr_utils.php:216
|
1678 |
+
msgid ""
|
1679 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1680 |
+
"\n"
|
1681 |
+
"<hr />\n"
|
1682 |
+
"<strong>Comment link:</strong> <a href="
|
1683 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1684 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1685 |
+
"\n"
|
1686 |
+
"<strong>Comment:</strong>\n"
|
1687 |
+
"[comment_content]\n"
|
1688 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1689 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1690 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1691 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1692 |
+
msgstr ""
|
1693 |
+
|
1694 |
+
#: utils/stcr_utils.php:217
|
1695 |
+
msgid "Please confirm your subscription to [post_title]"
|
1696 |
+
msgstr "Vänligen bekräfta din prenumeration på [post_title]"
|
1697 |
+
|
1698 |
+
#: utils/stcr_utils.php:218
|
1699 |
+
#, fuzzy
|
1700 |
+
#| msgid ""
|
1701 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1702 |
+
#| "[post_permalink]\n"
|
1703 |
+
#| "\n"
|
1704 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1705 |
+
#| "[confirm_link]"
|
1706 |
+
msgid ""
|
1707 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1708 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1709 |
+
"\n"
|
1710 |
+
"Please confirm your request by clicking on this link:\n"
|
1711 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1712 |
+
msgstr ""
|
1713 |
+
"Du, eller någon med din adress, har begärt att prenumerera på kommentarer "
|
1714 |
+
"till följande inlägg: [post_permalink]\n"
|
1715 |
+
"Vänligen bekräfta prenumerationen genom att klicka på länken här nedanför:\n"
|
1716 |
+
"[confirm_link] \n"
|
1717 |
+
"Om länken inte går att klicka på, kopiera adressen och klistra in den i "
|
1718 |
+
"adressfönstret på din webbläsare."
|
1719 |
+
|
1720 |
+
#: utils/stcr_utils.php:219
|
1721 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1722 |
+
msgstr "Administrera dina prenumerationer på [blog_name]"
|
1723 |
+
|
1724 |
+
#: utils/stcr_utils.php:220
|
1725 |
+
msgid ""
|
1726 |
+
"You have requested to manage your subscriptions to the articles on "
|
1727 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1728 |
+
msgstr ""
|
1729 |
+
|
1730 |
+
#: utils/stcr_utils.php:221
|
1731 |
+
#, fuzzy
|
1732 |
+
#| msgid ""
|
1733 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1734 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1735 |
+
#| "[manager_link]"
|
1736 |
+
msgid ""
|
1737 |
+
"You have requested to manage your subscriptions to the articles on "
|
1738 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1739 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1740 |
+
msgstr ""
|
1741 |
+
"Du har begärt att redigera dina prenumerationer för artiklarna på "
|
1742 |
+
"[blog_name]. Följ denna länk för att logga in på din personliga sida: \n"
|
1743 |
+
"[manager_link]"
|
1744 |
+
|
1745 |
+
#: utils/stcr_utils.php:300
|
1746 |
msgid "StCR Notification"
|
1747 |
msgstr "Notifieringar"
|
1748 |
|
1755 |
msgid "All"
|
1756 |
msgstr "Alla"
|
1757 |
|
1758 |
+
#~ msgid "Support the developers"
|
1759 |
+
#~ msgstr "Stöd författaren"
|
1760 |
+
|
1761 |
+
#~ msgid "Don't want to donate? You can still help"
|
1762 |
+
#~ msgstr "Vill eller kan du inte donera? Du kan fortfarande hjälpa"
|
1763 |
+
|
1764 |
+
#~ msgid ""
|
1765 |
+
#~ "There is a new comment to [post_title].\n"
|
1766 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1767 |
+
#~ "Author: [comment_author]\n"
|
1768 |
+
#~ "Comment:\n"
|
1769 |
+
#~ "[comment_content]\n"
|
1770 |
+
#~ "Permalink: [post_permalink]\n"
|
1771 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1772 |
+
#~ msgstr ""
|
1773 |
+
#~ "Det finns en ny kommentar på [post_title].\n"
|
1774 |
+
#~ "Länk: [comment_permalink]\n"
|
1775 |
+
#~ "Skriven av: [comment_author]\n"
|
1776 |
+
#~ "Kommentar:[comment_content]\n"
|
1777 |
+
#~ "Permalänk: [post_permalink]\n"
|
1778 |
+
#~ "Redigera dina prenumerationer: [manager_link]"
|
1779 |
+
|
1780 |
#~ msgid ""
|
1781 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1782 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: tr_TR\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -14,40 +14,36 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: nplurals=1; plural= (1 != 1);\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
-
"X-Generator: Poedit
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: options/index.php:
|
21 |
-
#: utils/
|
22 |
msgid "Manage subscriptions"
|
23 |
msgstr "Abonelikler"
|
24 |
|
25 |
-
#: options/index.php:
|
26 |
msgid "Comment Form"
|
27 |
msgstr "Yorum Sayfası"
|
28 |
|
29 |
-
#: options/index.php:
|
30 |
msgid "Management Page"
|
31 |
msgstr "Yönetim Sayfası"
|
32 |
|
33 |
-
#: options/index.php:
|
34 |
msgid "Notifications"
|
35 |
msgstr "Bildiriler"
|
36 |
|
37 |
-
#: options/index.php:
|
38 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
39 |
msgid "Options"
|
40 |
msgstr "Ayarlar"
|
41 |
|
42 |
-
#: options/index.php:
|
43 |
-
msgid "You can help"
|
44 |
-
msgstr "Yardım edebilirsiniz"
|
45 |
-
|
46 |
-
#: options/index.php:66 utils/stcr_manage.php:459 utils/stcr_manage.php:460
|
47 |
msgid "Support"
|
48 |
msgstr "Destek"
|
49 |
|
50 |
-
#: options/index.php:
|
51 |
msgid "Donate"
|
52 |
msgstr "Para bağışlamak istemiyor musunuz? Yine de yardım edebilirsiniz"
|
53 |
|
@@ -348,95 +344,95 @@ msgstr "Abonelikleri güncelle"
|
|
348 |
msgid "Sorry, no subscriptions match your search criteria."
|
349 |
msgstr "Üzgünüm, arama kriterlerinize uygun abonelik bulunamadı."
|
350 |
|
351 |
-
#: options/panel10.php:
|
352 |
msgid "The log file has been successfully deleted."
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: options/panel10.php:
|
356 |
msgid "Can't delete the log file, check the file permissions."
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: options/panel10.php:
|
360 |
msgid "The log file does not exists."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: options/panel10.php:
|
364 |
msgid "Enable Log Information"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: options/panel10.php:
|
368 |
msgid "Enable Auto clean log data"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: options/panel10.php:
|
372 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
373 |
msgid "Your settings have been successfully updated."
|
374 |
msgstr "Ayarlarınız başarıyla kaydedildi."
|
375 |
|
376 |
-
#: options/panel10.php:
|
377 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
378 |
msgid "There was an error updating the following fields:"
|
379 |
msgstr "Ayarlarınız kaydedilirken şu hatalara rastlandı:"
|
380 |
|
381 |
-
#: options/panel10.php:
|
382 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
383 |
-
#: options/panel5.php:
|
384 |
-
#: options/panel5.php:
|
385 |
-
#: options/panel5.php:
|
386 |
-
#: options/panel5.php:
|
387 |
msgid "Yes"
|
388 |
msgstr "Evet"
|
389 |
|
390 |
-
#: options/panel10.php:
|
391 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
392 |
-
#: options/panel5.php:
|
393 |
-
#: options/panel5.php:
|
394 |
-
#: options/panel5.php:
|
395 |
-
#: options/panel5.php:
|
396 |
msgid "No"
|
397 |
msgstr "Hayır"
|
398 |
|
399 |
-
#: options/panel10.php:
|
400 |
msgid ""
|
401 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
402 |
"purposes."
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: options/panel10.php:
|
406 |
msgid "Hourly"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: options/panel10.php:
|
410 |
msgid "Twice Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: options/panel10.php:
|
414 |
msgid "Daily"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: options/panel10.php:
|
418 |
msgid "If enabled, StCR will auto clean your information every day."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: options/panel10.php:
|
422 |
msgid "Clean Up Log Archive"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: options/panel10.php:
|
426 |
msgid ""
|
427 |
"If you want to clean up the log archive please click the following button"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: options/panel10.php:
|
431 |
msgid "Clean"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: options/panel10.php:
|
435 |
msgid "System Information"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: options/panel10.php:
|
439 |
-
#: options/panel4.php:283 options/panel5.php:
|
440 |
msgid "Save Changes"
|
441 |
msgstr "Ayarları Kaydet"
|
442 |
|
@@ -778,7 +774,7 @@ msgstr "Yalnızca yanıtlar"
|
|
778 |
#: options/panel4.php:128
|
779 |
msgid ""
|
780 |
"This will be use when the user click reply on their email agent. If not set "
|
781 |
-
"will be the same as the Sender email address."
|
782 |
msgstr ""
|
783 |
|
784 |
#: options/panel4.php:147
|
@@ -794,8 +790,8 @@ msgstr ""
|
|
794 |
|
795 |
#: options/panel4.php:171
|
796 |
msgid ""
|
797 |
-
"<p><strong>Note: To get a default template clear
|
798 |
-
"the options.</strong></p>"
|
799 |
msgstr ""
|
800 |
|
801 |
#: options/panel4.php:184
|
@@ -842,79 +838,95 @@ msgid ""
|
|
842 |
"[blog_name]"
|
843 |
msgstr "Doğrulama epostasının konusu. İzin verilen etiketler: [post_title]"
|
844 |
|
845 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
846 |
msgid "Show StCR checkbox / dropdown"
|
847 |
msgstr ""
|
848 |
|
849 |
-
#: options/panel5.php:
|
850 |
msgid "Safetly Uninstall"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: options/panel5.php:
|
854 |
msgid "Autopurge requests"
|
855 |
msgstr "İstekleri ayrıştır"
|
856 |
|
857 |
-
#: options/panel5.php:
|
858 |
msgid "Enable double check"
|
859 |
msgstr "Doğrulama"
|
860 |
|
861 |
-
#: options/panel5.php:
|
862 |
msgid "StCR Position"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: options/panel5.php:
|
866 |
msgid "Subscribe authors"
|
867 |
msgstr "Abone olundu"
|
868 |
|
869 |
-
#: options/panel5.php:
|
870 |
msgid "Enable HTML emails"
|
871 |
msgstr "HTML epostalarına izin ver"
|
872 |
|
873 |
-
#: options/panel5.php:
|
874 |
msgid "HTMLify Links in HTML emails"
|
875 |
msgstr ""
|
876 |
|
877 |
-
#: options/panel5.php:
|
878 |
msgid "Send trackbacks"
|
879 |
msgstr "Trackback'leri gönder"
|
880 |
|
881 |
-
#: options/panel5.php:
|
882 |
msgid "Notify admin"
|
883 |
msgstr "Admini haberdar et"
|
884 |
|
885 |
-
#: options/panel5.php:
|
886 |
msgid "Let admin subscribe"
|
887 |
msgstr "Adminin abone olmasına izin ver"
|
888 |
|
889 |
-
#: options/panel5.php:
|
890 |
msgid "BCC admin on Notifications"
|
891 |
msgstr "Bildiriler"
|
892 |
|
893 |
-
#: options/panel5.php:
|
894 |
msgid "Enable Font Awesome"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
898 |
msgid ""
|
899 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
900 |
"You should leave it to Yes always. "
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: options/panel5.php:
|
904 |
msgid "Safely Uninstall"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: options/panel5.php:
|
908 |
msgid ""
|
909 |
"This option will allow you to delete the plugin with WordPress without "
|
910 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
911 |
msgstr ""
|
912 |
|
913 |
-
#: options/panel5.php:
|
914 |
msgid "days"
|
915 |
msgstr "günler"
|
916 |
|
917 |
-
#: options/panel5.php:
|
918 |
msgid ""
|
919 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
920 |
"this feature."
|
@@ -922,14 +934,14 @@ msgstr ""
|
|
922 |
"Doğrulama gerçekleşmeyen abonelikleri x gün sonra sil. Sıfır değeri devre "
|
923 |
"dışı bırakır."
|
924 |
|
925 |
-
#: options/panel5.php:
|
926 |
msgid ""
|
927 |
"If this option is enable the subscription box will be above the submit "
|
928 |
"button in your comment form. Use this when your theme is outdated and using "
|
929 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: options/panel5.php:
|
933 |
msgid ""
|
934 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
935 |
"misuse)."
|
@@ -937,12 +949,12 @@ msgstr ""
|
|
937 |
"Aboneliği doğrulamak için eposta gönderir. Eposta adreslerinin doğruluğunu "
|
938 |
"tespit için kullanılabilir."
|
939 |
|
940 |
-
#: options/panel5.php:
|
941 |
msgid ""
|
942 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: options/panel5.php:
|
946 |
msgid ""
|
947 |
"If enabled, will send email messages with content-type = text/html instead "
|
948 |
"of text/plain"
|
@@ -950,74 +962,98 @@ msgstr ""
|
|
950 |
"Etkinleştirilmişse, gönderilen epostalar text/plain yerine text/html olarak "
|
951 |
"gönderilecektir."
|
952 |
|
953 |
-
#: options/panel5.php:
|
954 |
msgid "HTMLify links in emails"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: options/panel5.php:
|
958 |
msgid ""
|
959 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
960 |
"</a></code> (only when HTML emails enabled)."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: options/panel5.php:
|
964 |
msgid "Process trackbacks"
|
965 |
msgstr "Trackback'leri işle"
|
966 |
|
967 |
-
#: options/panel5.php:
|
968 |
msgid ""
|
969 |
"Notify users when a new trackback or pingback is added to the discussion."
|
970 |
msgstr "Yeni bir trackback ya da pingback olduğunda kullanıcılara bildirir."
|
971 |
|
972 |
-
#: options/panel5.php:
|
973 |
msgid "Track all subscriptions"
|
974 |
msgstr "Tüm abonelikleri takip et"
|
975 |
|
976 |
-
#: options/panel5.php:
|
977 |
msgid "Notify the administrator when users subscribe without commenting."
|
978 |
msgstr "Kullanıcılar yorum bırakmadan abone olduğunda admine bildir."
|
979 |
|
980 |
-
#: options/panel5.php:
|
981 |
msgid "Let the administrator subscribe to comments when logged in."
|
982 |
msgstr "Adminler giriş yaptığında yorumlara abone olmalarına izin ver."
|
983 |
|
984 |
-
#: options/panel5.php:
|
985 |
msgid "Send a copy of all Notifications to the administrator."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: options/panel5.php:
|
989 |
msgid ""
|
990 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
991 |
"you theme already add this into your site."
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: options/panel5.php:
|
995 |
msgid "StCR Unique Key"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: options/panel5.php:
|
999 |
msgid "This Unique Key is not set, please click the following button to "
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: options/panel5.php:
|
1003 |
msgid "Generate"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: options/panel5.php:
|
1007 |
msgid ""
|
1008 |
"This Unique Key will be use to send the notification to your subscribers "
|
1009 |
"with more security."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: options/
|
1013 |
-
msgid "
|
1014 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1015 |
|
1016 |
-
#: options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
msgid ""
|
1018 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1019 |
"consider supporting the author if this plugin made your web site better, "
|
1020 |
-
"especially if you are making money out of it
|
|
|
1021 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1022 |
"strong>, and to buy some food for my hungry family."
|
1023 |
msgstr ""
|
@@ -1028,18 +1064,27 @@ msgstr ""
|
|
1028 |
"misiniz? Yapılan her bağış Subscribe to Comments Reloaded'a yatırım olarak "
|
1029 |
"geri dönecek ve aç aileme yemek olacaktır."
|
1030 |
|
1031 |
-
#: options/panel7.php:
|
1032 |
-
|
1033 |
-
|
|
|
|
|
1034 |
|
1035 |
-
#: options/panel7.php:
|
1036 |
-
|
1037 |
-
|
1038 |
-
"
|
1039 |
-
"
|
1040 |
-
"
|
1041 |
-
"
|
1042 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1043 |
msgstr ""
|
1044 |
"Eğer para bağışlamak istemiyorsanız, eklentime link veren bir blog girmeyi "
|
1045 |
"düşünebilirsiniz. Lütfen okuyucularınıza blogunuzu nasıl daha iyi "
|
@@ -1048,11 +1093,11 @@ msgstr ""
|
|
1048 |
"geliştirebileceğimiz hakkındaki fikirlerinizi gönderebilirsiniz. Bu arada, "
|
1049 |
"eklentimi kullandığınız için teşekkür ederim!"
|
1050 |
|
1051 |
-
#: options/panel7.php:
|
1052 |
msgid "Subscribe to the Beta testers"
|
1053 |
msgstr "Abone olundu"
|
1054 |
|
1055 |
-
#: options/panel7.php:
|
1056 |
msgid ""
|
1057 |
"Before a new Update we release a Beta version so that our current users can "
|
1058 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1060,11 +1105,11 @@ msgid ""
|
|
1060 |
"a>"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: options/panel7.php:
|
1064 |
msgid "Vote and show your appreciation"
|
1065 |
msgstr "Oylayın ve bizi memnun edin :)"
|
1066 |
|
1067 |
-
#: options/panel7.php:
|
1068 |
msgid ""
|
1069 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1070 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1074,11 +1119,11 @@ msgstr ""
|
|
1074 |
"Ya da eklentiler sayfasında <a href=\"http://wordpress.org/extend/plugins/"
|
1075 |
"subscribe-to-comments-reloaded/\">puan verin</a>."
|
1076 |
|
1077 |
-
#: options/panel8.php:
|
1078 |
msgid "Did you find a Bug on the plugin?"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: options/panel8.php:
|
1082 |
msgid ""
|
1083 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1084 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1173,198 +1218,46 @@ msgstr ""
|
|
1173 |
msgid "You have request to manage another email address and this is forbidden."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: utils/stcr_manage.php:
|
1177 |
-
msgid ""
|
1178 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1179 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1180 |
-
msgstr ""
|
1181 |
-
"Yeni yorumları e-posta aracılığıyla bana bildir. Ayrıca yorum yapmadan da <a "
|
1182 |
-
"href='[subscribe_link]'>abone</a> olabilirsiniz."
|
1183 |
-
|
1184 |
-
#: utils/stcr_manage.php:224
|
1185 |
-
msgid ""
|
1186 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1187 |
-
"subscriptions."
|
1188 |
-
msgstr ""
|
1189 |
-
"Bu yazıya abone oldunuz. Aboneliklerinizi incelemek için <a "
|
1190 |
-
"href='[manager_link]'>tıklayınız</a>."
|
1191 |
-
|
1192 |
-
#: utils/stcr_manage.php:225
|
1193 |
-
msgid ""
|
1194 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1195 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1196 |
-
msgstr ""
|
1197 |
-
"Bu yazıya olan aboneliğinizin doğrulanması gerekiyor. Aboneliklerinizi "
|
1198 |
-
"incelemek için <a href='[manager_link]'>tıklayın</a>."
|
1199 |
-
|
1200 |
-
#: utils/stcr_manage.php:226
|
1201 |
-
msgid ""
|
1202 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1203 |
-
msgstr ""
|
1204 |
-
"Bu yazıya olan aboneliklerinizi <a href='[manager_link]'>buradan</a> "
|
1205 |
-
"inceleyebilirsiniz."
|
1206 |
-
|
1207 |
-
#: utils/stcr_manage.php:232
|
1208 |
-
msgid ""
|
1209 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1210 |
-
"will send you a message containing the link to access your personal "
|
1211 |
-
"management page."
|
1212 |
-
msgstr ""
|
1213 |
-
"Aboneliklerinizi incelemek için aşağıya e-posta adresinizi girin. Biz de "
|
1214 |
-
"size aboneliklerinizi listeyebileceğiniz bir link gönderelim."
|
1215 |
-
|
1216 |
-
#: utils/stcr_manage.php:233
|
1217 |
-
msgid ""
|
1218 |
-
"Thank you for using our subscription service. Your request has been "
|
1219 |
-
"completed, and you should receive an email with the management link in a few "
|
1220 |
-
"minutes."
|
1221 |
-
msgstr ""
|
1222 |
-
"Abonelik servisini kullandığınız için teşekkür ederim. İsteğiniz tamamlandı "
|
1223 |
-
"ve aboneliğinizi yönetebileceğiniz bir link bir kaç dakika içerisinde e-"
|
1224 |
-
"posta adresinize gelmek üzere yola çıktı :) . "
|
1225 |
-
|
1226 |
-
#: utils/stcr_manage.php:234
|
1227 |
-
msgid ""
|
1228 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1229 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1230 |
-
"form here below and you're all set."
|
1231 |
-
msgstr ""
|
1232 |
-
"<strong>[post_title]</strong> yazısındaki tartışmaları yorum bırakmadan da "
|
1233 |
-
"takip edebilirsiniz. Havalı değil mi? Aşağıdaki kutuya e-posta adresinizi "
|
1234 |
-
"girmeniz yeterli."
|
1235 |
-
|
1236 |
-
#: utils/stcr_manage.php:235
|
1237 |
-
msgid ""
|
1238 |
-
"Thank you for using our subscription service. Your request has been "
|
1239 |
-
"completed. You will receive a notification email every time a new comment to "
|
1240 |
-
"this article is approved and posted by the administrator."
|
1241 |
-
msgstr ""
|
1242 |
-
"Abonelik servisini kullandığınız için teşekkür ederim. İsteğiniz tamamlandı. "
|
1243 |
-
"Bu yazıya yapılan, yöneticilerin onaylayıp yayınladığı her yorum için e-"
|
1244 |
-
"posta alıcaksınız."
|
1245 |
-
|
1246 |
-
#: utils/stcr_manage.php:236
|
1247 |
-
msgid ""
|
1248 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1249 |
-
"request, please check your email for the verification message and follow the "
|
1250 |
-
"instructions."
|
1251 |
-
msgstr ""
|
1252 |
-
"Abonelik servsini kullandığınız için teşekkür ederim. İsteğinizi tamamlamak "
|
1253 |
-
"için lütfen e-posta adresinize gelen doğrulama mesajına bakın ve talimatları "
|
1254 |
-
"izleyin."
|
1255 |
-
|
1256 |
-
#: utils/stcr_manage.php:237
|
1257 |
-
msgid ""
|
1258 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1259 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1260 |
-
msgstr ""
|
1261 |
-
"Bir ya da daha fazla aboneliğinizi iptal etmek ya da dondurmak için ilgili "
|
1262 |
-
"kutucukları düzenleyin ve listenin sonundaki düğmeye basın."
|
1263 |
-
|
1264 |
-
#: utils/stcr_manage.php:238
|
1265 |
-
msgid ""
|
1266 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1267 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1268 |
-
"You are currently subscribed to:"
|
1269 |
-
msgstr ""
|
1270 |
-
"Bir ya da daha fazla aboneliğinizi iptal etmek ya da dondurmak için ilgili "
|
1271 |
-
"kutucukları düzenleyin ve listenin sonundaki düğmeye basın. Şu an ki "
|
1272 |
-
"abonelikleriniz:"
|
1273 |
-
|
1274 |
-
#: utils/stcr_manage.php:242
|
1275 |
-
msgid "There is a new comment to [post_title]"
|
1276 |
-
msgstr "[post_title] yazısı için yeni yorum yapıldı."
|
1277 |
-
|
1278 |
-
#: utils/stcr_manage.php:243
|
1279 |
-
msgid ""
|
1280 |
-
"There is a new comment to [post_title].\n"
|
1281 |
-
"Comment Link: [comment_permalink]\n"
|
1282 |
-
"Author: [comment_author]\n"
|
1283 |
-
"Comment:\n"
|
1284 |
-
"[comment_content]\n"
|
1285 |
-
"Permalink: [post_permalink]\n"
|
1286 |
-
"Manage your subscriptions: [manager_link]"
|
1287 |
-
msgstr ""
|
1288 |
-
"[post_title] yazısına yeni yorum gönderildi.Yorum Linki: "
|
1289 |
-
"[comment_permalink]Yazar: [comment_author]Yorum:[comment_content]Kalıcı "
|
1290 |
-
"Bağlantı: [post_permalink]Aboneliklerinizi İnceleme: [manager_link]"
|
1291 |
-
|
1292 |
-
#: utils/stcr_manage.php:244
|
1293 |
-
msgid "Please confirm your subscription to [post_title]"
|
1294 |
-
msgstr ""
|
1295 |
-
"Lütfen [post_title] yazısı için başvurduğunuz aboneliğinizi doğrulayın."
|
1296 |
-
|
1297 |
-
#: utils/stcr_manage.php:245
|
1298 |
-
msgid ""
|
1299 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1300 |
-
"[post_permalink]\n"
|
1301 |
-
"\n"
|
1302 |
-
"Please confirm your request by clicking on this link:\n"
|
1303 |
-
"[confirm_link]"
|
1304 |
-
msgstr ""
|
1305 |
-
"Aşağıdaki linke her yorum yapıldığında bilgilendirilmeyi istediniz:"
|
1306 |
-
"[post_permalink]Aşağıdaki linke tıklayarak isteğinizi doğrulayın."
|
1307 |
-
"[confirm_link]"
|
1308 |
-
|
1309 |
-
#: utils/stcr_manage.php:246
|
1310 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1311 |
-
msgstr "[blog_name] üzerindeki aboneliklerinizi inceleyin"
|
1312 |
-
|
1313 |
-
#: utils/stcr_manage.php:247
|
1314 |
-
msgid ""
|
1315 |
-
"You have requested to manage your subscriptions to the articles on "
|
1316 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1317 |
-
msgstr ""
|
1318 |
-
|
1319 |
-
#: utils/stcr_manage.php:248
|
1320 |
-
msgid ""
|
1321 |
-
"You have requested to manage your subscriptions to the articles on "
|
1322 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1323 |
-
"[manager_link]"
|
1324 |
-
msgstr ""
|
1325 |
-
"[blog_name] üzerindeki aboneliklerinizi incelemek istediniz. Kişisel "
|
1326 |
-
"sayfanıza ulaşmak için aşağıdaki linke tıklayın: [manager_link]"
|
1327 |
-
|
1328 |
-
#: utils/stcr_manage.php:471 utils/stcr_manage.php:472
|
1329 |
msgid "StCR System"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: utils/stcr_manage.php:
|
1333 |
-
#: utils/stcr_manage.php:
|
1334 |
-
#: utils/stcr_manage.php:
|
1335 |
-
#: utils/stcr_manage.php:
|
1336 |
-
#: utils/stcr_manage.php:
|
1337 |
msgid "You do not have sufficient permissions to access this page."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: utils/stcr_manage.php:
|
1341 |
msgid "Subscriptions"
|
1342 |
msgstr "Abonelikler"
|
1343 |
|
1344 |
-
#: utils/stcr_manage.php:
|
1345 |
msgid ""
|
1346 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1347 |
msgstr ""
|
1348 |
"Subscribe to Comments Reloaded 'ı nasıl kullanacağınızı bilmiyor musunuz? "
|
1349 |
"Şurayı ziyaret edin"
|
1350 |
|
1351 |
-
#: utils/stcr_manage.php:
|
1352 |
msgid "support forum"
|
1353 |
msgstr "destek forumları"
|
1354 |
|
1355 |
-
#: utils/stcr_manage.php:
|
1356 |
msgid "Feeling generous?"
|
1357 |
msgstr "Cömert mi hissediyorsunuz?"
|
1358 |
|
1359 |
-
#: utils/stcr_manage.php:
|
1360 |
msgid "Donate a few bucks!"
|
1361 |
msgstr "Bir kaç dolar bağışlayın!"
|
1362 |
|
1363 |
-
#: utils/stcr_upgrade.php:
|
1364 |
msgid "Important Notice"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: utils/stcr_upgrade.php:
|
1368 |
msgid ""
|
1369 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1370 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1372,28 +1265,28 @@ msgid ""
|
|
1372 |
"src=\""
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: utils/stcr_upgrade.php:
|
1376 |
msgid ""
|
1377 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1378 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1379 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: utils/stcr_upgrade.php:
|
1383 |
msgid ""
|
1384 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1385 |
"Comments to prevent confusion between the two plugins."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: utils/stcr_upgrade.php:
|
1389 |
msgid ""
|
1390 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1391 |
"that you want to import, you'll need to import that data manually, as only "
|
1392 |
"one import routine will ever run to prevent data loss."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: utils/stcr_upgrade.php:
|
1396 |
-
#: utils/stcr_upgrade.php:
|
1397 |
msgid ""
|
1398 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1399 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1401,20 +1294,20 @@ msgid ""
|
|
1401 |
"\"stcr-loading-animation\" src=\""
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: utils/stcr_upgrade.php:
|
1405 |
msgid ""
|
1406 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1407 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1408 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: utils/stcr_upgrade.php:
|
1412 |
msgid ""
|
1413 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1414 |
"Notification to prevent confusion between the two plugins."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: utils/stcr_upgrade.php:
|
1418 |
msgid ""
|
1419 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1420 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1422,13 +1315,13 @@ msgid ""
|
|
1422 |
"Reloaded</strong>."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: utils/stcr_upgrade.php:
|
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 |
|
1431 |
-
#: utils/stcr_upgrade.php:
|
1432 |
msgid ""
|
1433 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1434 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1436,7 +1329,7 @@ msgid ""
|
|
1436 |
"ever run to prevent data loss."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: utils/stcr_upgrade.php:
|
1440 |
msgid ""
|
1441 |
"<strong>Note:</strong> If you were previously using the "
|
1442 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1445,29 +1338,29 @@ msgid ""
|
|
1445 |
"respectively."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: utils/stcr_upgrade.php:
|
1449 |
msgid ""
|
1450 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: utils/stcr_upgrade.php:
|
1454 |
-
#: utils/stcr_upgrade.php:
|
1455 |
msgid ""
|
1456 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1457 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: utils/stcr_upgrade.php:
|
1461 |
msgid ""
|
1462 |
-
"Please consider to make a donation to support the plugin
|
1463 |
-
"<a href=\"\n"
|
1464 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1465 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1466 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1467 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: utils/stcr_upgrade.php:
|
1471 |
msgid ""
|
1472 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1473 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1475,23 +1368,23 @@ msgid ""
|
|
1475 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: utils/stcr_upgrade.php:
|
1479 |
msgid ""
|
1480 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1481 |
"160106."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: utils/stcr_upgrade.php:
|
1485 |
msgid ""
|
1486 |
"This version includes many changes and fixes to improve your experience with "
|
1487 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1488 |
"email templates, Subscription Checkbox position, and more!"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: utils/stcr_upgrade.php:
|
1492 |
-
#: utils/stcr_upgrade.php:
|
1493 |
-
#: utils/stcr_upgrade.php:
|
1494 |
-
#: utils/stcr_upgrade.php:
|
1495 |
msgid ""
|
1496 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1497 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1499,123 +1392,126 @@ msgid ""
|
|
1499 |
"class=\"stcr-loading-animation\" src=\""
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: utils/stcr_upgrade.php:
|
1503 |
msgid ""
|
1504 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1505 |
"160115."
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: utils/stcr_upgrade.php:
|
1509 |
msgid ""
|
1510 |
"This version includes fixes to broken links while managing your subscriptions"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: utils/stcr_upgrade.php:
|
1514 |
msgid ""
|
1515 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1516 |
"160831"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: utils/stcr_upgrade.php:
|
1520 |
msgid "This version includes fixes to many bugs and also new features, "
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: utils/stcr_upgrade.php:
|
1524 |
msgid ""
|
1525 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1526 |
"address. This will help the subscribers to use the Reply option in their "
|
1527 |
"email agents."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: utils/stcr_upgrade.php:
|
1531 |
msgid ""
|
1532 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1533 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#: utils/stcr_upgrade.php:
|
1537 |
msgid ""
|
1538 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1539 |
"without loosing your subscriptions. You can use this option also for reset "
|
1540 |
"all the settings, see the FAQ."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: utils/stcr_upgrade.php:
|
1544 |
msgid ""
|
1545 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1546 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1547 |
"Post Type."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: utils/stcr_upgrade.php:
|
1551 |
msgid ""
|
1552 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1553 |
"options to and the management link only by email and not to display it on "
|
1554 |
"the request link page."
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: utils/stcr_upgrade.php:
|
1558 |
msgid ""
|
1559 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1560 |
"160902"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: utils/stcr_upgrade.php:
|
1564 |
msgid ""
|
1565 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1566 |
"previous 160831 version."
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: utils/stcr_upgrade.php:
|
1570 |
msgid "Settings"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: utils/stcr_upgrade.php:
|
1574 |
msgid ""
|
1575 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1576 |
"160915"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: utils/stcr_upgrade.php:
|
1580 |
-
#: utils/stcr_upgrade.php:
|
1581 |
msgid "This version includes fixes and improvements, "
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: utils/stcr_upgrade.php:
|
1585 |
msgid ""
|
1586 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1587 |
"dropdown."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: utils/stcr_upgrade.php:
|
1591 |
msgid ""
|
1592 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: utils/stcr_upgrade.php:
|
|
|
1596 |
msgid "Log Settings"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
#: utils/stcr_upgrade.php:
|
|
|
1600 |
msgid ""
|
1601 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: utils/stcr_upgrade.php:
|
1605 |
msgid ""
|
1606 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1607 |
"enable."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: utils/stcr_upgrade.php:
|
1611 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: utils/stcr_upgrade.php:
|
|
|
1615 |
msgid "The support of this plugin is given thanks to your donations."
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: utils/stcr_upgrade.php:
|
1619 |
msgid ""
|
1620 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1621 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1625,19 +1521,19 @@ msgid ""
|
|
1625 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: utils/stcr_upgrade.php:
|
1629 |
msgid ""
|
1630 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1631 |
"installation regarding a database table creation."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: utils/stcr_upgrade.php:
|
1635 |
msgid ""
|
1636 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1637 |
"Awesome."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: utils/stcr_upgrade.php:
|
1641 |
msgid ""
|
1642 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1643 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1648,7 +1544,199 @@ msgid ""
|
|
1648 |
"for the users that have supported the plugin development."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1652 |
msgid "StCR Notification"
|
1653 |
msgstr "Bildiriler"
|
1654 |
|
@@ -1660,6 +1748,25 @@ msgstr "Abone olma"
|
|
1660 |
msgid "All"
|
1661 |
msgstr "Tümü"
|
1662 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1663 |
#~ msgid ""
|
1664 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1665 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:13-0700\n"
|
6 |
+
"PO-Revision-Date: 2018-02-12 15:13-0700\n"
|
7 |
+
"Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: tr_TR\n"
|
10 |
"MIME-Version: 1.0\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: nplurals=1; plural= (1 != 1);\n"
|
16 |
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Generator: Poedit 2.0.6\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
21 |
+
#: utils/stcr_utils.php:203
|
22 |
msgid "Manage subscriptions"
|
23 |
msgstr "Abonelikler"
|
24 |
|
25 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
26 |
msgid "Comment Form"
|
27 |
msgstr "Yorum Sayfası"
|
28 |
|
29 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
30 |
msgid "Management Page"
|
31 |
msgstr "Yönetim Sayfası"
|
32 |
|
33 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
34 |
msgid "Notifications"
|
35 |
msgstr "Bildiriler"
|
36 |
|
37 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
38 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
39 |
msgid "Options"
|
40 |
msgstr "Ayarlar"
|
41 |
|
42 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
43 |
msgid "Support"
|
44 |
msgstr "Destek"
|
45 |
|
46 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
47 |
msgid "Donate"
|
48 |
msgstr "Para bağışlamak istemiyor musunuz? Yine de yardım edebilirsiniz"
|
49 |
|
344 |
msgid "Sorry, no subscriptions match your search criteria."
|
345 |
msgstr "Üzgünüm, arama kriterlerinize uygun abonelik bulunamadı."
|
346 |
|
347 |
+
#: options/panel10.php:41
|
348 |
msgid "The log file has been successfully deleted."
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: options/panel10.php:46
|
352 |
msgid "Can't delete the log file, check the file permissions."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: options/panel10.php:52
|
356 |
msgid "The log file does not exists."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: options/panel10.php:66 options/panel10.php:110
|
360 |
msgid "Enable Log Information"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: options/panel10.php:72 options/panel10.php:119
|
364 |
msgid "Enable Auto clean log data"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
368 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
369 |
msgid "Your settings have been successfully updated."
|
370 |
msgstr "Ayarlarınız başarıyla kaydedildi."
|
371 |
|
372 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
373 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
374 |
msgid "There was an error updating the following fields:"
|
375 |
msgstr "Ayarlarınız kaydedilirken şu hatalara rastlandı:"
|
376 |
|
377 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
378 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
379 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
380 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
381 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
382 |
+
#: options/panel5.php:210 options/panel5.php:219
|
383 |
msgid "Yes"
|
384 |
msgstr "Evet"
|
385 |
|
386 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
387 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
388 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
389 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
390 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
391 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
392 |
msgid "No"
|
393 |
msgstr "Hayır"
|
394 |
|
395 |
+
#: options/panel10.php:114
|
396 |
msgid ""
|
397 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
398 |
"purposes."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: options/panel10.php:125
|
402 |
msgid "Hourly"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: options/panel10.php:126
|
406 |
msgid "Twice Daily"
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: options/panel10.php:127
|
410 |
msgid "Daily"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: options/panel10.php:129
|
414 |
msgid "If enabled, StCR will auto clean your information every day."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: options/panel10.php:134
|
418 |
msgid "Clean Up Log Archive"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: options/panel10.php:138
|
422 |
msgid ""
|
423 |
"If you want to clean up the log archive please click the following button"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: options/panel10.php:140
|
427 |
msgid "Clean"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: options/panel10.php:147 options/panel10.php:150
|
431 |
msgid "System Information"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
435 |
+
#: options/panel4.php:283 options/panel5.php:265
|
436 |
msgid "Save Changes"
|
437 |
msgstr "Ayarları Kaydet"
|
438 |
|
774 |
#: options/panel4.php:128
|
775 |
msgid ""
|
776 |
"This will be use when the user click reply on their email agent. If not set "
|
777 |
+
"it will be the same as the Sender email address."
|
778 |
msgstr ""
|
779 |
|
780 |
#: options/panel4.php:147
|
790 |
|
791 |
#: options/panel4.php:171
|
792 |
msgid ""
|
793 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
794 |
+
"all the content and save the options.</strong></p>"
|
795 |
msgstr ""
|
796 |
|
797 |
#: options/panel4.php:184
|
838 |
"[blog_name]"
|
839 |
msgstr "Doğrulama epostasının konusu. İzin verilen etiketler: [post_title]"
|
840 |
|
841 |
+
#: options/panel5.php:38
|
842 |
+
#, fuzzy
|
843 |
+
#| msgid "Your settings have been successfully updated."
|
844 |
+
msgid "Your settings have been successfully reset."
|
845 |
+
msgstr "Ayarlarınız başarıyla kaydedildi."
|
846 |
+
|
847 |
+
#: options/panel5.php:40
|
848 |
+
#, fuzzy
|
849 |
+
#| msgid "There was an error updating the following fields:"
|
850 |
+
msgid "There was an error deleting the options:"
|
851 |
+
msgstr "Ayarlarınız kaydedilirken şu hatalara rastlandı:"
|
852 |
+
|
853 |
+
#: options/panel5.php:48 options/panel5.php:108
|
854 |
msgid "Show StCR checkbox / dropdown"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: options/panel5.php:51
|
858 |
msgid "Safetly Uninstall"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: options/panel5.php:54 options/panel5.php:125
|
862 |
msgid "Autopurge requests"
|
863 |
msgstr "İstekleri ayrıştır"
|
864 |
|
865 |
+
#: options/panel5.php:57 options/panel5.php:143
|
866 |
msgid "Enable double check"
|
867 |
msgstr "Doğrulama"
|
868 |
|
869 |
+
#: options/panel5.php:60 options/panel5.php:134
|
870 |
msgid "StCR Position"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: options/panel5.php:63 options/panel5.php:151
|
874 |
msgid "Subscribe authors"
|
875 |
msgstr "Abone olundu"
|
876 |
|
877 |
+
#: options/panel5.php:66 options/panel5.php:161
|
878 |
msgid "Enable HTML emails"
|
879 |
msgstr "HTML epostalarına izin ver"
|
880 |
|
881 |
+
#: options/panel5.php:69
|
882 |
msgid "HTMLify Links in HTML emails"
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: options/panel5.php:72
|
886 |
msgid "Send trackbacks"
|
887 |
msgstr "Trackback'leri gönder"
|
888 |
|
889 |
+
#: options/panel5.php:75
|
890 |
msgid "Notify admin"
|
891 |
msgstr "Admini haberdar et"
|
892 |
|
893 |
+
#: options/panel5.php:78 options/panel5.php:199
|
894 |
msgid "Let admin subscribe"
|
895 |
msgstr "Adminin abone olmasına izin ver"
|
896 |
|
897 |
+
#: options/panel5.php:81 options/panel5.php:208
|
898 |
msgid "BCC admin on Notifications"
|
899 |
msgstr "Bildiriler"
|
900 |
|
901 |
+
#: options/panel5.php:84 options/panel5.php:217
|
902 |
msgid "Enable Font Awesome"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
906 |
+
msgid "Reset All Options"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: options/panel5.php:112
|
910 |
msgid ""
|
911 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
912 |
"You should leave it to Yes always. "
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: options/panel5.php:117
|
916 |
msgid "Safely Uninstall"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: options/panel5.php:121
|
920 |
msgid ""
|
921 |
"This option will allow you to delete the plugin with WordPress without "
|
922 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: options/panel5.php:128
|
926 |
msgid "days"
|
927 |
msgstr "günler"
|
928 |
|
929 |
+
#: options/panel5.php:129
|
930 |
msgid ""
|
931 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
932 |
"this feature."
|
934 |
"Doğrulama gerçekleşmeyen abonelikleri x gün sonra sil. Sıfır değeri devre "
|
935 |
"dışı bırakır."
|
936 |
|
937 |
+
#: options/panel5.php:138
|
938 |
msgid ""
|
939 |
"If this option is enable the subscription box will be above the submit "
|
940 |
"button in your comment form. Use this when your theme is outdated and using "
|
941 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: options/panel5.php:147
|
945 |
msgid ""
|
946 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
947 |
"misuse)."
|
949 |
"Aboneliği doğrulamak için eposta gönderir. Eposta adreslerinin doğruluğunu "
|
950 |
"tespit için kullanılabilir."
|
951 |
|
952 |
+
#: options/panel5.php:156
|
953 |
msgid ""
|
954 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: options/panel5.php:165
|
958 |
msgid ""
|
959 |
"If enabled, will send email messages with content-type = text/html instead "
|
960 |
"of text/plain"
|
962 |
"Etkinleştirilmişse, gönderilen epostalar text/plain yerine text/html olarak "
|
963 |
"gönderilecektir."
|
964 |
|
965 |
+
#: options/panel5.php:170
|
966 |
msgid "HTMLify links in emails"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: options/panel5.php:175
|
970 |
msgid ""
|
971 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
972 |
"</a></code> (only when HTML emails enabled)."
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: options/panel5.php:180
|
976 |
msgid "Process trackbacks"
|
977 |
msgstr "Trackback'leri işle"
|
978 |
|
979 |
+
#: options/panel5.php:184
|
980 |
msgid ""
|
981 |
"Notify users when a new trackback or pingback is added to the discussion."
|
982 |
msgstr "Yeni bir trackback ya da pingback olduğunda kullanıcılara bildirir."
|
983 |
|
984 |
+
#: options/panel5.php:189
|
985 |
msgid "Track all subscriptions"
|
986 |
msgstr "Tüm abonelikleri takip et"
|
987 |
|
988 |
+
#: options/panel5.php:194
|
989 |
msgid "Notify the administrator when users subscribe without commenting."
|
990 |
msgstr "Kullanıcılar yorum bırakmadan abone olduğunda admine bildir."
|
991 |
|
992 |
+
#: options/panel5.php:203
|
993 |
msgid "Let the administrator subscribe to comments when logged in."
|
994 |
msgstr "Adminler giriş yaptığında yorumlara abone olmalarına izin ver."
|
995 |
|
996 |
+
#: options/panel5.php:212
|
997 |
msgid "Send a copy of all Notifications to the administrator."
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: options/panel5.php:221
|
1001 |
msgid ""
|
1002 |
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
1003 |
"you theme already add this into your site."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: options/panel5.php:226
|
1007 |
msgid "StCR Unique Key"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: options/panel5.php:231
|
1011 |
msgid "This Unique Key is not set, please click the following button to "
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: options/panel5.php:235 options/panel5.php:246
|
1015 |
msgid "Generate"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: options/panel5.php:243
|
1019 |
msgid ""
|
1020 |
"This Unique Key will be use to send the notification to your subscribers "
|
1021 |
"with more security."
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: options/panel5.php:256
|
1025 |
+
msgid ""
|
1026 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
1027 |
+
"with caution."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: options/panel5.php:258
|
1031 |
+
msgid "Yes, Delete Options including subscriptions."
|
1032 |
+
msgstr ""
|
1033 |
|
1034 |
+
#: options/panel5.php:259
|
1035 |
+
msgid "No, Only delete the StCR Options."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1039 |
+
msgid ""
|
1040 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1041 |
+
"hidden=\"true\"></i>"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1045 |
+
#, fuzzy
|
1046 |
+
#| msgid ""
|
1047 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1048 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1049 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1050 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1051 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
1052 |
msgid ""
|
1053 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
1054 |
"consider supporting the author if this plugin made your web site better, "
|
1055 |
+
"especially if you are making money out of it.<br><br> You can donate <strong>"
|
1056 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1057 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1058 |
"strong>, and to buy some food for my hungry family."
|
1059 |
msgstr ""
|
1064 |
"misiniz? Yapılan her bağış Subscribe to Comments Reloaded'a yatırım olarak "
|
1065 |
"geri dönecek ve aç aileme yemek olacaktır."
|
1066 |
|
1067 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1068 |
+
#, fuzzy
|
1069 |
+
#| msgid "You can help"
|
1070 |
+
msgid "You can still help"
|
1071 |
+
msgstr "Yardım edebilirsiniz"
|
1072 |
|
1073 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1074 |
+
#, fuzzy
|
1075 |
+
#| msgid ""
|
1076 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1077 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1078 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1079 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1080 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1081 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1082 |
+
msgid ""
|
1083 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1084 |
+
"Please let your readers know what makes your blog better. You can also "
|
1085 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1086 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1087 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1088 |
msgstr ""
|
1089 |
"Eğer para bağışlamak istemiyorsanız, eklentime link veren bir blog girmeyi "
|
1090 |
"düşünebilirsiniz. Lütfen okuyucularınıza blogunuzu nasıl daha iyi "
|
1093 |
"geliştirebileceğimiz hakkındaki fikirlerinizi gönderebilirsiniz. Bu arada, "
|
1094 |
"eklentimi kullandığınız için teşekkür ederim!"
|
1095 |
|
1096 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1097 |
msgid "Subscribe to the Beta testers"
|
1098 |
msgstr "Abone olundu"
|
1099 |
|
1100 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1101 |
msgid ""
|
1102 |
"Before a new Update we release a Beta version so that our current users can "
|
1103 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1105 |
"a>"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1109 |
msgid "Vote and show your appreciation"
|
1110 |
msgstr "Oylayın ve bizi memnun edin :)"
|
1111 |
|
1112 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1113 |
msgid ""
|
1114 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1115 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1119 |
"Ya da eklentiler sayfasında <a href=\"http://wordpress.org/extend/plugins/"
|
1120 |
"subscribe-to-comments-reloaded/\">puan verin</a>."
|
1121 |
|
1122 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1123 |
msgid "Did you find a Bug on the plugin?"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1127 |
msgid ""
|
1128 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1129 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1218 |
msgid "You have request to manage another email address and this is forbidden."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1222 |
msgid "StCR System"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1226 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1227 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1228 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1229 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1230 |
msgid "You do not have sufficient permissions to access this page."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: utils/stcr_manage.php:726
|
1234 |
msgid "Subscriptions"
|
1235 |
msgstr "Abonelikler"
|
1236 |
|
1237 |
+
#: utils/stcr_manage.php:782
|
1238 |
msgid ""
|
1239 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1240 |
msgstr ""
|
1241 |
"Subscribe to Comments Reloaded 'ı nasıl kullanacağınızı bilmiyor musunuz? "
|
1242 |
"Şurayı ziyaret edin"
|
1243 |
|
1244 |
+
#: utils/stcr_manage.php:782
|
1245 |
msgid "support forum"
|
1246 |
msgstr "destek forumları"
|
1247 |
|
1248 |
+
#: utils/stcr_manage.php:783
|
1249 |
msgid "Feeling generous?"
|
1250 |
msgstr "Cömert mi hissediyorsunuz?"
|
1251 |
|
1252 |
+
#: utils/stcr_manage.php:783
|
1253 |
msgid "Donate a few bucks!"
|
1254 |
msgstr "Bir kaç dolar bağışlayın!"
|
1255 |
|
1256 |
+
#: utils/stcr_upgrade.php:72
|
1257 |
msgid "Important Notice"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: utils/stcr_upgrade.php:120
|
1261 |
msgid ""
|
1262 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1263 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1265 |
"src=\""
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: utils/stcr_upgrade.php:175
|
1269 |
msgid ""
|
1270 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1271 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1272 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: utils/stcr_upgrade.php:175
|
1276 |
msgid ""
|
1277 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1278 |
"Comments to prevent confusion between the two plugins."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: utils/stcr_upgrade.php:176
|
1282 |
msgid ""
|
1283 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1284 |
"that you want to import, you'll need to import that data manually, as only "
|
1285 |
"one import routine will ever run to prevent data loss."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1289 |
+
#: utils/stcr_upgrade.php:400
|
1290 |
msgid ""
|
1291 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1292 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1294 |
"\"stcr-loading-animation\" src=\""
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: utils/stcr_upgrade.php:250
|
1298 |
msgid ""
|
1299 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1300 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1301 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: utils/stcr_upgrade.php:250
|
1305 |
msgid ""
|
1306 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1307 |
"Notification to prevent confusion between the two plugins."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: utils/stcr_upgrade.php:397
|
1311 |
msgid ""
|
1312 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1313 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1315 |
"Reloaded</strong>."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: utils/stcr_upgrade.php:397
|
1319 |
msgid ""
|
1320 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1321 |
"Subscriptions to prevent confusion between the two plugins."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: utils/stcr_upgrade.php:398
|
1325 |
msgid ""
|
1326 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1327 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1329 |
"ever run to prevent data loss."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: utils/stcr_upgrade.php:399
|
1333 |
msgid ""
|
1334 |
"<strong>Note:</strong> If you were previously using the "
|
1335 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1338 |
"respectively."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: utils/stcr_upgrade.php:413
|
1342 |
msgid ""
|
1343 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1347 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1348 |
msgid ""
|
1349 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1350 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: utils/stcr_upgrade.php:415
|
1354 |
msgid ""
|
1355 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1356 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1357 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1358 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1359 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1360 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: utils/stcr_upgrade.php:417
|
1364 |
msgid ""
|
1365 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1366 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1368 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: utils/stcr_upgrade.php:428
|
1372 |
msgid ""
|
1373 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1374 |
"160106."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: utils/stcr_upgrade.php:429
|
1378 |
msgid ""
|
1379 |
"This version includes many changes and fixes to improve your experience with "
|
1380 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1381 |
"email templates, Subscription Checkbox position, and more!"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1385 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1386 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1387 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1388 |
msgid ""
|
1389 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1390 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1392 |
"class=\"stcr-loading-animation\" src=\""
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: utils/stcr_upgrade.php:443
|
1396 |
msgid ""
|
1397 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1398 |
"160115."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: utils/stcr_upgrade.php:444
|
1402 |
msgid ""
|
1403 |
"This version includes fixes to broken links while managing your subscriptions"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: utils/stcr_upgrade.php:458
|
1407 |
msgid ""
|
1408 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1409 |
"160831"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1413 |
msgid "This version includes fixes to many bugs and also new features, "
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
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:462 utils/stcr_upgrade.php:485
|
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:463 utils/stcr_upgrade.php:486
|
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:464 utils/stcr_upgrade.php:487
|
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:465 utils/stcr_upgrade.php:488
|
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:480
|
1451 |
msgid ""
|
1452 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1453 |
"160902"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: utils/stcr_upgrade.php:483
|
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_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1463 |
msgid "Settings"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: utils/stcr_upgrade.php:504
|
1467 |
msgid ""
|
1468 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1469 |
"160915"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1473 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1474 |
msgid "This version includes fixes and improvements, "
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: utils/stcr_upgrade.php:508
|
1478 |
msgid ""
|
1479 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1480 |
"dropdown."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: utils/stcr_upgrade.php:509
|
1484 |
msgid ""
|
1485 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1489 |
+
#: utils/stcr_upgrade.php:576
|
1490 |
msgid "Log Settings"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1494 |
+
#: utils/stcr_upgrade.php:580
|
1495 |
msgid ""
|
1496 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: utils/stcr_upgrade.php:529
|
1500 |
msgid ""
|
1501 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1502 |
"enable."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: utils/stcr_upgrade.php:530
|
1506 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1510 |
+
#: utils/stcr_upgrade.php:590
|
1511 |
msgid "The support of this plugin is given thanks to your donations."
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: utils/stcr_upgrade.php:536
|
1515 |
msgid ""
|
1516 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1517 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1521 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: utils/stcr_upgrade.php:557
|
1525 |
msgid ""
|
1526 |
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1527 |
"installation regarding a database table creation."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: utils/stcr_upgrade.php:558
|
1531 |
msgid ""
|
1532 |
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1533 |
"Awesome."
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: utils/stcr_upgrade.php:563
|
1537 |
msgid ""
|
1538 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1539 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1544 |
"for the users that have supported the plugin development."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: utils/stcr_upgrade.php:584
|
1548 |
+
msgid ""
|
1549 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1550 |
+
"issues."
|
1551 |
+
msgstr ""
|
1552 |
+
|
1553 |
+
#: utils/stcr_upgrade.php:585
|
1554 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1555 |
+
msgstr ""
|
1556 |
+
|
1557 |
+
#: utils/stcr_upgrade.php:586
|
1558 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1559 |
+
msgstr ""
|
1560 |
+
|
1561 |
+
#: utils/stcr_upgrade.php:591
|
1562 |
+
msgid ""
|
1563 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1564 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1565 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1566 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1567 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1568 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1569 |
+
"Thanks for all the users that have supported the plugin development."
|
1570 |
+
msgstr ""
|
1571 |
+
|
1572 |
+
#: utils/stcr_utils.php:196
|
1573 |
+
msgid ""
|
1574 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1575 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1576 |
+
msgstr ""
|
1577 |
+
"Yeni yorumları e-posta aracılığıyla bana bildir. Ayrıca yorum yapmadan da <a "
|
1578 |
+
"href='[subscribe_link]'>abone</a> olabilirsiniz."
|
1579 |
+
|
1580 |
+
#: utils/stcr_utils.php:197
|
1581 |
+
msgid ""
|
1582 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1583 |
+
"subscriptions."
|
1584 |
+
msgstr ""
|
1585 |
+
"Bu yazıya abone oldunuz. Aboneliklerinizi incelemek için <a "
|
1586 |
+
"href='[manager_link]'>tıklayınız</a>."
|
1587 |
+
|
1588 |
+
#: utils/stcr_utils.php:198
|
1589 |
+
msgid ""
|
1590 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1591 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1592 |
+
msgstr ""
|
1593 |
+
"Bu yazıya olan aboneliğinizin doğrulanması gerekiyor. Aboneliklerinizi "
|
1594 |
+
"incelemek için <a href='[manager_link]'>tıklayın</a>."
|
1595 |
+
|
1596 |
+
#: utils/stcr_utils.php:199
|
1597 |
+
msgid ""
|
1598 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1599 |
+
msgstr ""
|
1600 |
+
"Bu yazıya olan aboneliklerinizi <a href='[manager_link]'>buradan</a> "
|
1601 |
+
"inceleyebilirsiniz."
|
1602 |
+
|
1603 |
+
#: utils/stcr_utils.php:205
|
1604 |
+
msgid ""
|
1605 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1606 |
+
"will send you a message containing the link to access your personal "
|
1607 |
+
"management page."
|
1608 |
+
msgstr ""
|
1609 |
+
"Aboneliklerinizi incelemek için aşağıya e-posta adresinizi girin. Biz de "
|
1610 |
+
"size aboneliklerinizi listeyebileceğiniz bir link gönderelim."
|
1611 |
+
|
1612 |
+
#: utils/stcr_utils.php:206
|
1613 |
+
msgid ""
|
1614 |
+
"Thank you for using our subscription service. Your request has been "
|
1615 |
+
"completed, and you should receive an email with the management link in a few "
|
1616 |
+
"minutes."
|
1617 |
+
msgstr ""
|
1618 |
+
"Abonelik servisini kullandığınız için teşekkür ederim. İsteğiniz tamamlandı "
|
1619 |
+
"ve aboneliğinizi yönetebileceğiniz bir link bir kaç dakika içerisinde e-"
|
1620 |
+
"posta adresinize gelmek üzere yola çıktı :) . "
|
1621 |
+
|
1622 |
+
#: utils/stcr_utils.php:207
|
1623 |
+
msgid ""
|
1624 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1625 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1626 |
+
"form here below and you're all set."
|
1627 |
+
msgstr ""
|
1628 |
+
"<strong>[post_title]</strong> yazısındaki tartışmaları yorum bırakmadan da "
|
1629 |
+
"takip edebilirsiniz. Havalı değil mi? Aşağıdaki kutuya e-posta adresinizi "
|
1630 |
+
"girmeniz yeterli."
|
1631 |
+
|
1632 |
+
#: utils/stcr_utils.php:208
|
1633 |
+
msgid ""
|
1634 |
+
"Thank you for using our subscription service. Your request has been "
|
1635 |
+
"completed. You will receive a notification email every time a new comment to "
|
1636 |
+
"this article is approved and posted by the administrator."
|
1637 |
+
msgstr ""
|
1638 |
+
"Abonelik servisini kullandığınız için teşekkür ederim. İsteğiniz tamamlandı. "
|
1639 |
+
"Bu yazıya yapılan, yöneticilerin onaylayıp yayınladığı her yorum için e-"
|
1640 |
+
"posta alıcaksınız."
|
1641 |
+
|
1642 |
+
#: utils/stcr_utils.php:209
|
1643 |
+
msgid ""
|
1644 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1645 |
+
"request, please check your email for the verification message and follow the "
|
1646 |
+
"instructions."
|
1647 |
+
msgstr ""
|
1648 |
+
"Abonelik servsini kullandığınız için teşekkür ederim. İsteğinizi tamamlamak "
|
1649 |
+
"için lütfen e-posta adresinize gelen doğrulama mesajına bakın ve talimatları "
|
1650 |
+
"izleyin."
|
1651 |
+
|
1652 |
+
#: utils/stcr_utils.php:210
|
1653 |
+
msgid ""
|
1654 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1655 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1656 |
+
msgstr ""
|
1657 |
+
"Bir ya da daha fazla aboneliğinizi iptal etmek ya da dondurmak için ilgili "
|
1658 |
+
"kutucukları düzenleyin ve listenin sonundaki düğmeye basın."
|
1659 |
+
|
1660 |
+
#: utils/stcr_utils.php:211
|
1661 |
+
msgid ""
|
1662 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1663 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1664 |
+
"You are currently subscribed to:"
|
1665 |
+
msgstr ""
|
1666 |
+
"Bir ya da daha fazla aboneliğinizi iptal etmek ya da dondurmak için ilgili "
|
1667 |
+
"kutucukları düzenleyin ve listenin sonundaki düğmeye basın. Şu an ki "
|
1668 |
+
"abonelikleriniz:"
|
1669 |
+
|
1670 |
+
#: utils/stcr_utils.php:215
|
1671 |
+
msgid "There is a new comment to [post_title]"
|
1672 |
+
msgstr "[post_title] yazısı için yeni yorum yapıldı."
|
1673 |
+
|
1674 |
+
#: utils/stcr_utils.php:216
|
1675 |
+
msgid ""
|
1676 |
+
"<h1>There is a new comment on [post_title].</h1>\n"
|
1677 |
+
"\n"
|
1678 |
+
"<hr />\n"
|
1679 |
+
"<strong>Comment link:</strong> <a href="
|
1680 |
+
"\"[comment_permalink]\">[comment_permalink]</a>\n"
|
1681 |
+
"<strong>Author:</strong> [comment_author]\n"
|
1682 |
+
"\n"
|
1683 |
+
"<strong>Comment:</strong>\n"
|
1684 |
+
"[comment_content]\n"
|
1685 |
+
"<div style=\"font-size: 0.8em;\"><strong>Permalink:</strong> <a href="
|
1686 |
+
"\"[post_permalink]\">[post_permalink]</a>\n"
|
1687 |
+
"<a href=\"[manager_link]\">Manage your subscriptions</a> | <a href="
|
1688 |
+
"\"[oneclick_link]\">One click unsubscribe</a></div>"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: utils/stcr_utils.php:217
|
1692 |
+
msgid "Please confirm your subscription to [post_title]"
|
1693 |
+
msgstr ""
|
1694 |
+
"Lütfen [post_title] yazısı için başvurduğunuz aboneliğinizi doğrulayın."
|
1695 |
+
|
1696 |
+
#: utils/stcr_utils.php:218
|
1697 |
+
#, fuzzy
|
1698 |
+
#| msgid ""
|
1699 |
+
#| "You have requested to be notified every time a new comment is added to:\n"
|
1700 |
+
#| "[post_permalink]\n"
|
1701 |
+
#| "\n"
|
1702 |
+
#| "Please confirm your request by clicking on this link:\n"
|
1703 |
+
#| "[confirm_link]"
|
1704 |
+
msgid ""
|
1705 |
+
"You have requested to be notified every time a new comment is added to:\n"
|
1706 |
+
"<a href='[post_permalink]'>[post_permalink]</a>\n"
|
1707 |
+
"\n"
|
1708 |
+
"Please confirm your request by clicking on this link:\n"
|
1709 |
+
"<a href='[confirm_link]'>[confirm_link]</a>"
|
1710 |
+
msgstr ""
|
1711 |
+
"Aşağıdaki linke her yorum yapıldığında bilgilendirilmeyi istediniz:"
|
1712 |
+
"[post_permalink]Aşağıdaki linke tıklayarak isteğinizi doğrulayın."
|
1713 |
+
"[confirm_link]"
|
1714 |
+
|
1715 |
+
#: utils/stcr_utils.php:219
|
1716 |
+
msgid "Manage your subscriptions on [blog_name]"
|
1717 |
+
msgstr "[blog_name] üzerindeki aboneliklerinizi inceleyin"
|
1718 |
+
|
1719 |
+
#: utils/stcr_utils.php:220
|
1720 |
+
msgid ""
|
1721 |
+
"You have requested to manage your subscriptions to the articles on "
|
1722 |
+
"[blog_name]. Please check the Subscriptions management link in your email"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: utils/stcr_utils.php:221
|
1726 |
+
#, fuzzy
|
1727 |
+
#| msgid ""
|
1728 |
+
#| "You have requested to manage your subscriptions to the articles on "
|
1729 |
+
#| "[blog_name]. Follow this link to access your personal page:\n"
|
1730 |
+
#| "[manager_link]"
|
1731 |
+
msgid ""
|
1732 |
+
"You have requested to manage your subscriptions to the articles on "
|
1733 |
+
"[blog_name]. Follow this link to access your personal page:\n"
|
1734 |
+
"<a href='[manager_link]'>[manager_link]</a>"
|
1735 |
+
msgstr ""
|
1736 |
+
"[blog_name] üzerindeki aboneliklerinizi incelemek istediniz. Kişisel "
|
1737 |
+
"sayfanıza ulaşmak için aşağıdaki linke tıklayın: [manager_link]"
|
1738 |
+
|
1739 |
+
#: utils/stcr_utils.php:300
|
1740 |
msgid "StCR Notification"
|
1741 |
msgstr "Bildiriler"
|
1742 |
|
1748 |
msgid "All"
|
1749 |
msgstr "Tümü"
|
1750 |
|
1751 |
+
#~ msgid "Support the developers"
|
1752 |
+
#~ msgstr "Yazarı destekle"
|
1753 |
+
|
1754 |
+
#~ msgid "Don't want to donate? You can still help"
|
1755 |
+
#~ msgstr "Para bağışlamak istemiyor musunuz? Yine de yardım edebilirsiniz"
|
1756 |
+
|
1757 |
+
#~ msgid ""
|
1758 |
+
#~ "There is a new comment to [post_title].\n"
|
1759 |
+
#~ "Comment Link: [comment_permalink]\n"
|
1760 |
+
#~ "Author: [comment_author]\n"
|
1761 |
+
#~ "Comment:\n"
|
1762 |
+
#~ "[comment_content]\n"
|
1763 |
+
#~ "Permalink: [post_permalink]\n"
|
1764 |
+
#~ "Manage your subscriptions: [manager_link]"
|
1765 |
+
#~ msgstr ""
|
1766 |
+
#~ "[post_title] yazısına yeni yorum gönderildi.Yorum Linki: "
|
1767 |
+
#~ "[comment_permalink]Yazar: [comment_author]Yorum:[comment_content]Kalıcı "
|
1768 |
+
#~ "Bağlantı: [post_permalink]Aboneliklerinizi İnceleme: [manager_link]"
|
1769 |
+
|
1770 |
#~ msgid ""
|
1771 |
#~ "Content of the notification email. Allowed tags: [post_title], "
|
1772 |
#~ "[comment_permalink], [comment_author], [comment_content], "
|
Binary file
|
@@ -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:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator: Reedyseth
|
8 |
"Language-Team: \n"
|
9 |
"Language: zh_CN\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -13,40 +13,36 @@ msgstr ""
|
|
13 |
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"Plural-Forms: s;\n"
|
16 |
-
"X-Generator: Poedit
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: options/index.php:
|
20 |
-
#: utils/
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "管理评论订阅"
|
23 |
|
24 |
-
#: options/index.php:
|
25 |
msgid "Comment Form"
|
26 |
msgstr "评论form"
|
27 |
|
28 |
-
#: options/index.php:
|
29 |
msgid "Management Page"
|
30 |
msgstr "管理页面"
|
31 |
|
32 |
-
#: options/index.php:
|
33 |
msgid "Notifications"
|
34 |
msgstr "通知"
|
35 |
|
36 |
-
#: options/index.php:
|
37 |
-
#: options/panel4.php:89 utils/stcr_manage.php:
|
38 |
msgid "Options"
|
39 |
msgstr "设置"
|
40 |
|
41 |
-
#: options/index.php:
|
42 |
-
msgid "You can help"
|
43 |
-
msgstr "你可以帮助"
|
44 |
-
|
45 |
-
#: options/index.php:66 utils/stcr_manage.php:458 utils/stcr_manage.php:459
|
46 |
msgid "Support"
|
47 |
msgstr "技术论坛"
|
48 |
|
49 |
-
#: options/index.php:
|
50 |
msgid "Donate"
|
51 |
msgstr ""
|
52 |
|
@@ -343,95 +339,95 @@ msgstr "更新订阅"
|
|
343 |
msgid "Sorry, no subscriptions match your search criteria."
|
344 |
msgstr "对不起,没有符合搜索条件的结果"
|
345 |
|
346 |
-
#: options/panel10.php:
|
347 |
msgid "The log file has been successfully deleted."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: options/panel10.php:
|
351 |
msgid "Can't delete the log file, check the file permissions."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: options/panel10.php:
|
355 |
msgid "The log file does not exists."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: options/panel10.php:
|
359 |
msgid "Enable Log Information"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: options/panel10.php:
|
363 |
msgid "Enable Auto clean log data"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: options/panel10.php:
|
367 |
-
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:
|
368 |
msgid "Your settings have been successfully updated."
|
369 |
msgstr "你的设置已经成功更新了。"
|
370 |
|
371 |
-
#: options/panel10.php:
|
372 |
-
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:
|
373 |
msgid "There was an error updating the following fields:"
|
374 |
msgstr "更新以下内容时出现错误了:"
|
375 |
|
376 |
-
#: options/panel10.php:
|
377 |
-
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:
|
378 |
-
#: options/panel5.php:
|
379 |
-
#: options/panel5.php:
|
380 |
-
#: options/panel5.php:
|
381 |
-
#: options/panel5.php:
|
382 |
msgid "Yes"
|
383 |
msgstr "Yes"
|
384 |
|
385 |
-
#: options/panel10.php:
|
386 |
-
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:
|
387 |
-
#: options/panel5.php:
|
388 |
-
#: options/panel5.php:
|
389 |
-
#: options/panel5.php:
|
390 |
-
#: options/panel5.php:
|
391 |
msgid "No"
|
392 |
msgstr "No"
|
393 |
|
394 |
-
#: options/panel10.php:
|
395 |
msgid ""
|
396 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
397 |
"purposes."
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: options/panel10.php:
|
401 |
msgid "Hourly"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: options/panel10.php:
|
405 |
msgid "Twice Daily"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: options/panel10.php:
|
409 |
msgid "Daily"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: options/panel10.php:
|
413 |
msgid "If enabled, StCR will auto clean your information every day."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: options/panel10.php:
|
417 |
msgid "Clean Up Log Archive"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: options/panel10.php:
|
421 |
msgid ""
|
422 |
"If you want to clean up the log archive please click the following button"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: options/panel10.php:
|
426 |
msgid "Clean"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: options/panel10.php:
|
430 |
msgid "System Information"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: options/panel10.php:
|
434 |
-
#: options/panel4.php:283 options/panel5.php:
|
435 |
msgid "Save Changes"
|
436 |
msgstr "保存更改"
|
437 |
|
@@ -755,7 +751,7 @@ msgstr "限制与回复"
|
|
755 |
#: options/panel4.php:128
|
756 |
msgid ""
|
757 |
"This will be use when the user click reply on their email agent. If not set "
|
758 |
-
"will be the same as the Sender email address."
|
759 |
msgstr ""
|
760 |
|
761 |
#: options/panel4.php:147
|
@@ -771,8 +767,8 @@ msgstr ""
|
|
771 |
|
772 |
#: options/panel4.php:171
|
773 |
msgid ""
|
774 |
-
"<p><strong>Note: To get a default template clear
|
775 |
-
"the options.</strong></p>"
|
776 |
msgstr ""
|
777 |
|
778 |
#: options/panel4.php:184
|
@@ -817,166 +813,216 @@ msgid ""
|
|
817 |
"[blog_name]"
|
818 |
msgstr "确认邮件的标题。允许的标签:[post_title]"
|
819 |
|
820 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
821 |
msgid "Show StCR checkbox / dropdown"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: options/panel5.php:
|
825 |
msgid "Safetly Uninstall"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: options/panel5.php:
|
829 |
msgid "Autopurge requests"
|
830 |
msgstr "自动删除的请求"
|
831 |
|
832 |
-
#: options/panel5.php:
|
833 |
msgid "Enable double check"
|
834 |
msgstr "启用确认"
|
835 |
|
836 |
-
#: options/panel5.php:
|
837 |
msgid "StCR Position"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: options/panel5.php:
|
841 |
msgid "Subscribe authors"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: options/panel5.php:
|
845 |
msgid "Enable HTML emails"
|
846 |
msgstr "启用HTML的邮件"
|
847 |
|
848 |
-
#: options/panel5.php:
|
849 |
msgid "HTMLify Links in HTML emails"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: options/panel5.php:
|
853 |
msgid "Send trackbacks"
|
854 |
msgstr "发送trackback"
|
855 |
|
856 |
-
#: options/panel5.php:
|
857 |
msgid "Notify admin"
|
858 |
msgstr "通知管理员"
|
859 |
|
860 |
-
#: options/panel5.php:
|
861 |
msgid "Let admin subscribe"
|
862 |
msgstr "让管理员订阅"
|
863 |
|
864 |
-
#: options/panel5.php:
|
865 |
msgid "BCC admin on Notifications"
|
866 |
msgstr "通知"
|
867 |
|
868 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
869 |
msgid ""
|
870 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
871 |
"You should leave it to Yes always. "
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: options/panel5.php:
|
875 |
msgid "Safely Uninstall"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: options/panel5.php:
|
879 |
msgid ""
|
880 |
"This option will allow you to delete the plugin with WordPress without "
|
881 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: options/panel5.php:
|
885 |
msgid "days"
|
886 |
msgstr "天"
|
887 |
|
888 |
-
#: options/panel5.php:
|
889 |
msgid ""
|
890 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
891 |
"this feature."
|
892 |
msgstr "在X天之后删除没有激活的订阅(没有确认)。0代表禁用此功能。"
|
893 |
|
894 |
-
#: options/panel5.php:
|
895 |
msgid ""
|
896 |
"If this option is enable the subscription box will be above the submit "
|
897 |
"button in your comment form. Use this when your theme is outdated and using "
|
898 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: options/panel5.php:
|
902 |
msgid ""
|
903 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
904 |
"misuse)."
|
905 |
msgstr "发送激活邮件确认订阅(避免提交他人的邮箱)。"
|
906 |
|
907 |
-
#: options/panel5.php:
|
908 |
msgid ""
|
909 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: options/panel5.php:
|
913 |
msgid ""
|
914 |
"If enabled, will send email messages with content-type = text/html instead "
|
915 |
"of text/plain"
|
916 |
msgstr "如果启用的话,发送的邮件会content-type = text/html而不是text/plain"
|
917 |
|
918 |
-
#: options/panel5.php:
|
919 |
msgid "HTMLify links in emails"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: options/panel5.php:
|
923 |
msgid ""
|
924 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
925 |
"</a></code> (only when HTML emails enabled)."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: options/panel5.php:
|
929 |
msgid "Process trackbacks"
|
930 |
msgstr "处理tackbacks"
|
931 |
|
932 |
-
#: options/panel5.php:
|
933 |
msgid ""
|
934 |
"Notify users when a new trackback or pingback is added to the discussion."
|
935 |
msgstr "收到新的trackback或pingback之后通知订阅者。"
|
936 |
|
937 |
-
#: options/panel5.php:
|
938 |
msgid "Track all subscriptions"
|
939 |
msgstr "Track all subscriptions"
|
940 |
|
941 |
-
#: options/panel5.php:
|
942 |
msgid "Notify the administrator when users subscribe without commenting."
|
943 |
msgstr "人不留评论订阅时,通知管理员。"
|
944 |
|
945 |
-
#: options/panel5.php:
|
946 |
msgid "Let the administrator subscribe to comments when logged in."
|
947 |
msgstr "让管理员登录后订阅评论。"
|
948 |
|
949 |
-
#: options/panel5.php:
|
950 |
msgid "Send a copy of all Notifications to the administrator."
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: options/panel5.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
954 |
msgid "StCR Unique Key"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: options/panel5.php:
|
958 |
msgid "This Unique Key is not set, please click the following button to "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: options/panel5.php:
|
962 |
msgid "Generate"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: options/panel5.php:
|
966 |
msgid ""
|
967 |
"This Unique Key will be use to send the notification to your subscribers "
|
968 |
"with more security."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: options/
|
972 |
-
msgid "
|
973 |
-
|
|
|
|
|
974 |
|
975 |
-
#: options/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
976 |
msgid ""
|
977 |
"How valuable is the feature offered by this plugin to your visitors? please "
|
978 |
"consider supporting the author if this plugin made your web site better, "
|
979 |
-
"especially if you are making money out of it
|
|
|
980 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
981 |
"strong>, and to buy some food for my hungry family."
|
982 |
msgstr ""
|
@@ -987,18 +1033,27 @@ msgstr ""
|
|
987 |
"in the development of Subscribe to Comments Reloaded, and to buy some food "
|
988 |
"for my hungry family."
|
989 |
|
990 |
-
#: options/panel7.php:
|
991 |
-
|
992 |
-
|
|
|
|
|
993 |
|
994 |
-
#: options/panel7.php:
|
995 |
-
|
996 |
-
|
997 |
-
"
|
998 |
-
"
|
999 |
-
"
|
1000 |
-
"
|
1001 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1002 |
msgstr ""
|
1003 |
"If you don't want to donate money, please consider blogging about my plugin "
|
1004 |
"with a link to the plugin's page. Please let your readers know what makes "
|
@@ -1007,11 +1062,11 @@ msgstr ""
|
|
1007 |
"improve Subscribe to Comments Reloaded and so on. Whatever you do, thanks "
|
1008 |
"for using my plugin!"
|
1009 |
|
1010 |
-
#: options/panel7.php:
|
1011 |
msgid "Subscribe to the Beta testers"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: options/panel7.php:
|
1015 |
msgid ""
|
1016 |
"Before a new Update we release a Beta version so that our current users can "
|
1017 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
@@ -1019,11 +1074,11 @@ msgid ""
|
|
1019 |
"a>"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: options/panel7.php:
|
1023 |
msgid "Vote and show your appreciation"
|
1024 |
msgstr "Vote and show your appreciation"
|
1025 |
|
1026 |
-
#: options/panel7.php:
|
1027 |
msgid ""
|
1028 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1029 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
@@ -1033,11 +1088,11 @@ msgstr ""
|
|
1033 |
"good it is. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1034 |
"comments-reloaded/\">Rate it</a> on its Plugin Directory page."
|
1035 |
|
1036 |
-
#: options/panel8.php:
|
1037 |
msgid "Did you find a Bug on the plugin?"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: options/panel8.php:
|
1041 |
msgid ""
|
1042 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1043 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
@@ -1130,189 +1185,44 @@ msgstr ""
|
|
1130 |
msgid "You have request to manage another email address and this is forbidden."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: utils/stcr_manage.php:
|
1134 |
-
msgid ""
|
1135 |
-
"Notify me of followup comments via e-mail. You can also <a "
|
1136 |
-
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1137 |
-
msgstr ""
|
1138 |
-
"有新评论,请电子邮件通知我。你也不需要留评论就可以<a href='[subscribe_link]'>"
|
1139 |
-
"订阅</a>。"
|
1140 |
-
|
1141 |
-
#: utils/stcr_manage.php:224
|
1142 |
-
msgid ""
|
1143 |
-
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1144 |
-
"subscriptions."
|
1145 |
-
msgstr "你已经订阅过本篇文章。<a href='[manager_link]'>管理</a>你的订阅。"
|
1146 |
-
|
1147 |
-
#: utils/stcr_manage.php:225
|
1148 |
-
msgid ""
|
1149 |
-
"Your subscription to this post needs to be confirmed. <a "
|
1150 |
-
"href='[manager_link]'>Manage your subscriptions</a>."
|
1151 |
-
msgstr "你需要激活你的订阅。<a href='[manager_link]'>管理你的订阅</a>。"
|
1152 |
-
|
1153 |
-
#: utils/stcr_manage.php:226
|
1154 |
-
msgid ""
|
1155 |
-
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1156 |
-
msgstr "你可以<a href='[manager_link]'>管理</a>本篇文章的订阅。"
|
1157 |
-
|
1158 |
-
#: utils/stcr_manage.php:232
|
1159 |
-
msgid ""
|
1160 |
-
"To manage your subscriptions, please enter your email address here below. We "
|
1161 |
-
"will send you a message containing the link to access your personal "
|
1162 |
-
"management page."
|
1163 |
-
msgstr ""
|
1164 |
-
"为了管理你的评论订阅,请在这里输入你的邮箱地址。我们会把管理你个人订阅的链接"
|
1165 |
-
"发到你的邮箱。"
|
1166 |
-
|
1167 |
-
#: utils/stcr_manage.php:233
|
1168 |
-
msgid ""
|
1169 |
-
"Thank you for using our subscription service. Your request has been "
|
1170 |
-
"completed, and you should receive an email with the management link in a few "
|
1171 |
-
"minutes."
|
1172 |
-
msgstr ""
|
1173 |
-
"谢谢你使用评论订阅。你的请求已处理完,过几分钟你就会收到有管理页面链接的邮"
|
1174 |
-
"件。"
|
1175 |
-
|
1176 |
-
#: utils/stcr_manage.php:234
|
1177 |
-
msgid ""
|
1178 |
-
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1179 |
-
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1180 |
-
"form here below and you're all set."
|
1181 |
-
msgstr ""
|
1182 |
-
"你不需要留评论就可以关注《<strong>[post_title]</strong>》的讨论。不错,啊?在"
|
1183 |
-
"下面输入你的邮箱地址就可以。"
|
1184 |
-
|
1185 |
-
#: utils/stcr_manage.php:235
|
1186 |
-
msgid ""
|
1187 |
-
"Thank you for using our subscription service. Your request has been "
|
1188 |
-
"completed. You will receive a notification email every time a new comment to "
|
1189 |
-
"this article is approved and posted by the administrator."
|
1190 |
-
msgstr ""
|
1191 |
-
"谢谢你使用评论订阅。你的请求已处理完。每次管理员审核和发布新评论你就会收到邮"
|
1192 |
-
"件通知。"
|
1193 |
-
|
1194 |
-
#: utils/stcr_manage.php:236
|
1195 |
-
msgid ""
|
1196 |
-
"Thank you for using our subscription service. In order to confirm your "
|
1197 |
-
"request, please check your email for the verification message and follow the "
|
1198 |
-
"instructions."
|
1199 |
-
msgstr ""
|
1200 |
-
"谢谢你使用评论订阅。为了确认你的请求,请查看你的电子邮箱,你会收到确认邮件和"
|
1201 |
-
"下一步的说明。"
|
1202 |
-
|
1203 |
-
#: utils/stcr_manage.php:237
|
1204 |
-
msgid ""
|
1205 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1206 |
-
"corresponding checkbox(es) and click on the button at the end of the list."
|
1207 |
-
msgstr ""
|
1208 |
-
"为了取消或者停止一个或更多的通知,请点击相关的复选框,并点击最下面的按钮。"
|
1209 |
-
|
1210 |
-
#: utils/stcr_manage.php:238
|
1211 |
-
msgid ""
|
1212 |
-
"In order to cancel or suspend one or more notifications, select the "
|
1213 |
-
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1214 |
-
"You are currently subscribed to:"
|
1215 |
-
msgstr ""
|
1216 |
-
"为了取消或者停止一个或更多的通知,请点击相关的复选框,并点击最下面的按钮。你"
|
1217 |
-
"已经订阅了这些:"
|
1218 |
-
|
1219 |
-
#: utils/stcr_manage.php:242
|
1220 |
-
msgid "There is a new comment to [post_title]"
|
1221 |
-
msgstr "[post_title]有一条新的评论"
|
1222 |
-
|
1223 |
-
#: utils/stcr_manage.php:243
|
1224 |
-
msgid ""
|
1225 |
-
"There is a new comment to [post_title].\n"
|
1226 |
-
"Comment Link: [comment_permalink]\n"
|
1227 |
-
"Author: [comment_author]\n"
|
1228 |
-
"Comment:\n"
|
1229 |
-
"[comment_content]\n"
|
1230 |
-
"Permalink: [post_permalink]\n"
|
1231 |
-
"Manage your subscriptions: [manager_link]"
|
1232 |
-
msgstr ""
|
1233 |
-
"《[post_title]》有新的评论。\n"
|
1234 |
-
"文章链接: [post_permalink]\n"
|
1235 |
-
"用户名:[comment_author]\n"
|
1236 |
-
"评论:\n"
|
1237 |
-
"[comment_content]\n"
|
1238 |
-
"评论链接:[comment_permalink]\n"
|
1239 |
-
"管理你的订阅:[manager_link]"
|
1240 |
-
|
1241 |
-
#: utils/stcr_manage.php:244
|
1242 |
-
msgid "Please confirm your subscription to [post_title]"
|
1243 |
-
msgstr "请确认你要订阅《[post_title]》"
|
1244 |
-
|
1245 |
-
#: utils/stcr_manage.php:245
|
1246 |
-
msgid ""
|
1247 |
-
"You have requested to be notified every time a new comment is added to:\n"
|
1248 |
-
"[post_permalink]\n"
|
1249 |
-
"\n"
|
1250 |
-
"Please confirm your request by clicking on this link:\n"
|
1251 |
-
"[confirm_link]"
|
1252 |
-
msgstr ""
|
1253 |
-
"你提交过申请每次这篇文章有新评论邮件通知你\n"
|
1254 |
-
"[post_permalink]\n"
|
1255 |
-
"\n"
|
1256 |
-
"请通过点击以下的链接确认:\n"
|
1257 |
-
"[confirm_link]"
|
1258 |
-
|
1259 |
-
#: utils/stcr_manage.php:246
|
1260 |
-
msgid "Manage your subscriptions on [blog_name]"
|
1261 |
-
msgstr "管理你在[blog_name]上的订阅"
|
1262 |
-
|
1263 |
-
#: utils/stcr_manage.php:247
|
1264 |
-
msgid ""
|
1265 |
-
"You have requested to manage your subscriptions to the articles on "
|
1266 |
-
"[blog_name]. Please check the Subscriptions management link in your email"
|
1267 |
-
msgstr ""
|
1268 |
-
|
1269 |
-
#: utils/stcr_manage.php:248
|
1270 |
-
msgid ""
|
1271 |
-
"You have requested to manage your subscriptions to the articles on "
|
1272 |
-
"[blog_name]. Follow this link to access your personal page:\n"
|
1273 |
-
"[manager_link]"
|
1274 |
-
msgstr ""
|
1275 |
-
"你申请过管理[blog_name]的评论订阅。请点击以下的链接去你的个人管理页面:\n"
|
1276 |
-
"[manager_link]"
|
1277 |
-
|
1278 |
-
#: utils/stcr_manage.php:470 utils/stcr_manage.php:471
|
1279 |
msgid "StCR System"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: utils/stcr_manage.php:
|
1283 |
-
#: utils/stcr_manage.php:
|
1284 |
-
#: utils/stcr_manage.php:
|
1285 |
-
#: utils/stcr_manage.php:
|
1286 |
-
#: utils/stcr_manage.php:
|
1287 |
msgid "You do not have sufficient permissions to access this page."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: utils/stcr_manage.php:
|
1291 |
msgid "Subscriptions"
|
1292 |
msgstr "搜索订阅"
|
1293 |
|
1294 |
-
#: utils/stcr_manage.php:
|
1295 |
msgid ""
|
1296 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1297 |
msgstr "需要帮忙如何使用Subscribe to Comments Reloaded? 请访问官方"
|
1298 |
|
1299 |
-
#: utils/stcr_manage.php:
|
1300 |
msgid "support forum"
|
1301 |
msgstr "技术论坛"
|
1302 |
|
1303 |
-
#: utils/stcr_manage.php:
|
1304 |
msgid "Feeling generous?"
|
1305 |
msgstr "想做贡献"
|
1306 |
|
1307 |
-
#: utils/stcr_manage.php:
|
1308 |
msgid "Donate a few bucks!"
|
1309 |
msgstr "捐赠几元!"
|
1310 |
|
1311 |
-
#: utils/stcr_upgrade.php:
|
1312 |
msgid "Important Notice"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: utils/stcr_upgrade.php:
|
1316 |
msgid ""
|
1317 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1318 |
"database has been sanitized to prevent the raw html messages. <a class="
|
@@ -1320,28 +1230,28 @@ msgid ""
|
|
1320 |
"src=\""
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: utils/stcr_upgrade.php:
|
1324 |
msgid ""
|
1325 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1326 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1327 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: utils/stcr_upgrade.php:
|
1331 |
msgid ""
|
1332 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1333 |
"Comments to prevent confusion between the two plugins."
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: utils/stcr_upgrade.php:
|
1337 |
msgid ""
|
1338 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1339 |
"that you want to import, you'll need to import that data manually, as only "
|
1340 |
"one import routine will ever run to prevent data loss."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: utils/stcr_upgrade.php:
|
1344 |
-
#: utils/stcr_upgrade.php:
|
1345 |
msgid ""
|
1346 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1347 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
@@ -1349,20 +1259,20 @@ msgid ""
|
|
1349 |
"\"stcr-loading-animation\" src=\""
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: utils/stcr_upgrade.php:
|
1353 |
msgid ""
|
1354 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1355 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1356 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: utils/stcr_upgrade.php:
|
1360 |
msgid ""
|
1361 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1362 |
"Notification to prevent confusion between the two plugins."
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: utils/stcr_upgrade.php:
|
1366 |
msgid ""
|
1367 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1368 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
@@ -1370,13 +1280,13 @@ msgid ""
|
|
1370 |
"Reloaded</strong>."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: utils/stcr_upgrade.php:
|
1374 |
msgid ""
|
1375 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1376 |
"Subscriptions to prevent confusion between the two plugins."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: utils/stcr_upgrade.php:
|
1380 |
msgid ""
|
1381 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1382 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
@@ -1384,7 +1294,7 @@ msgid ""
|
|
1384 |
"ever run to prevent data loss."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: utils/stcr_upgrade.php:
|
1388 |
msgid ""
|
1389 |
"<strong>Note:</strong> If you were previously using the "
|
1390 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
@@ -1393,28 +1303,29 @@ msgid ""
|
|
1393 |
"respectively."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: utils/stcr_upgrade.php:
|
1397 |
msgid ""
|
1398 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: utils/stcr_upgrade.php:
|
|
|
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 |
|
1407 |
-
#: utils/stcr_upgrade.php:
|
1408 |
msgid ""
|
1409 |
-
"Please consider to make a donation to support the plugin
|
1410 |
-
"<a href=\"\n"
|
1411 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1412 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1413 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1414 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: utils/stcr_upgrade.php:
|
1418 |
msgid ""
|
1419 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1420 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
@@ -1422,22 +1333,23 @@ msgid ""
|
|
1422 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: utils/stcr_upgrade.php:
|
1426 |
msgid ""
|
1427 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1428 |
"160106."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: utils/stcr_upgrade.php:
|
1432 |
msgid ""
|
1433 |
"This version includes many changes and fixes to improve your experience with "
|
1434 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1435 |
"email templates, Subscription Checkbox position, and more!"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: utils/stcr_upgrade.php:
|
1439 |
-
#: utils/stcr_upgrade.php:
|
1440 |
-
#: utils/stcr_upgrade.php:
|
|
|
1441 |
msgid ""
|
1442 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1443 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
@@ -1445,122 +1357,126 @@ msgid ""
|
|
1445 |
"class=\"stcr-loading-animation\" src=\""
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: utils/stcr_upgrade.php:
|
1449 |
msgid ""
|
1450 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1451 |
"160115."
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: utils/stcr_upgrade.php:
|
1455 |
msgid ""
|
1456 |
"This version includes fixes to broken links while managing your subscriptions"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: utils/stcr_upgrade.php:
|
1460 |
msgid ""
|
1461 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1462 |
"160831"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: utils/stcr_upgrade.php:
|
1466 |
msgid "This version includes fixes to many bugs and also new features, "
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: utils/stcr_upgrade.php:
|
1470 |
msgid ""
|
1471 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1472 |
"address. This will help the subscribers to use the Reply option in their "
|
1473 |
"email agents."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: utils/stcr_upgrade.php:
|
1477 |
msgid ""
|
1478 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1479 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: utils/stcr_upgrade.php:
|
1483 |
msgid ""
|
1484 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1485 |
"without loosing your subscriptions. You can use this option also for reset "
|
1486 |
"all the settings, see the FAQ."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: utils/stcr_upgrade.php:
|
1490 |
msgid ""
|
1491 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1492 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1493 |
"Post Type."
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: utils/stcr_upgrade.php:
|
1497 |
msgid ""
|
1498 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1499 |
"options to and the management link only by email and not to display it on "
|
1500 |
"the request link page."
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: utils/stcr_upgrade.php:
|
1504 |
msgid ""
|
1505 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1506 |
"160902"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: utils/stcr_upgrade.php:
|
1510 |
msgid ""
|
1511 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1512 |
"previous 160831 version."
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: utils/stcr_upgrade.php:
|
1516 |
msgid "Settings"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: utils/stcr_upgrade.php:
|
1520 |
msgid ""
|
1521 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1522 |
"160915"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
-
#: utils/stcr_upgrade.php:
|
|
|
1526 |
msgid "This version includes fixes and improvements, "
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
#: utils/stcr_upgrade.php:
|
1530 |
msgid ""
|
1531 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1532 |
"dropdown."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: utils/stcr_upgrade.php:
|
1536 |
msgid ""
|
1537 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#: utils/stcr_upgrade.php:
|
|
|
1541 |
msgid "Log Settings"
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: utils/stcr_upgrade.php:
|
|
|
1545 |
msgid ""
|
1546 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: utils/stcr_upgrade.php:
|
1550 |
msgid ""
|
1551 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1552 |
"enable."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: utils/stcr_upgrade.php:
|
1556 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: utils/stcr_upgrade.php:
|
|
|
1560 |
msgid "The support of this plugin is given thanks to your donations."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: utils/stcr_upgrade.php:
|
1564 |
msgid ""
|
1565 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1566 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
@@ -1570,7 +1486,211 @@ msgid ""
|
|
1570 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: utils/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Subscribe to Comments Reloaded\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2018-02-12 15:13-0700\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Reedyseth <reedyseth@gmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: zh_CN\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 2.0.6\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: options/index.php:69 utils/stcr_manage.php:352 utils/stcr_manage.php:353
|
20 |
+
#: utils/stcr_utils.php:203
|
21 |
msgid "Manage subscriptions"
|
22 |
msgstr "管理评论订阅"
|
23 |
|
24 |
+
#: options/index.php:70 utils/stcr_manage.php:358 utils/stcr_manage.php:359
|
25 |
msgid "Comment Form"
|
26 |
msgstr "评论form"
|
27 |
|
28 |
+
#: options/index.php:71 utils/stcr_manage.php:364 utils/stcr_manage.php:365
|
29 |
msgid "Management Page"
|
30 |
msgstr "管理页面"
|
31 |
|
32 |
+
#: options/index.php:72 utils/stcr_manage.php:370 utils/stcr_manage.php:371
|
33 |
msgid "Notifications"
|
34 |
msgstr "通知"
|
35 |
|
36 |
+
#: options/index.php:73 options/panel2.php:58 options/panel3.php:82
|
37 |
+
#: options/panel4.php:89 utils/stcr_manage.php:376 utils/stcr_manage.php:377
|
38 |
msgid "Options"
|
39 |
msgstr "设置"
|
40 |
|
41 |
+
#: options/index.php:76 utils/stcr_manage.php:398 utils/stcr_manage.php:399
|
|
|
|
|
|
|
|
|
42 |
msgid "Support"
|
43 |
msgstr "技术论坛"
|
44 |
|
45 |
+
#: options/index.php:77 utils/stcr_manage.php:404 utils/stcr_manage.php:405
|
46 |
msgid "Donate"
|
47 |
msgstr ""
|
48 |
|
339 |
msgid "Sorry, no subscriptions match your search criteria."
|
340 |
msgstr "对不起,没有符合搜索条件的结果"
|
341 |
|
342 |
+
#: options/panel10.php:41
|
343 |
msgid "The log file has been successfully deleted."
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: options/panel10.php:46
|
347 |
msgid "Can't delete the log file, check the file permissions."
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: options/panel10.php:52
|
351 |
msgid "The log file does not exists."
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: options/panel10.php:66 options/panel10.php:110
|
355 |
msgid "Enable Log Information"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: options/panel10.php:72 options/panel10.php:119
|
359 |
msgid "Enable Auto clean log data"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: options/panel10.php:93 options/panel2.php:49 options/panel3.php:70
|
363 |
+
#: options/panel4.php:78 options/panel5.php:18 options/panel5.php:92
|
364 |
msgid "Your settings have been successfully updated."
|
365 |
msgstr "你的设置已经成功更新了。"
|
366 |
|
367 |
+
#: options/panel10.php:95 options/panel2.php:51 options/panel3.php:72
|
368 |
+
#: options/panel4.php:80 options/panel5.php:20 options/panel5.php:94
|
369 |
msgid "There was an error updating the following fields:"
|
370 |
msgstr "更新以下内容时出现错误了:"
|
371 |
|
372 |
+
#: options/panel10.php:112 options/panel10.php:121 options/panel2.php:66
|
373 |
+
#: options/panel2.php:76 options/panel2.php:105 options/panel5.php:110
|
374 |
+
#: options/panel5.php:119 options/panel5.php:136 options/panel5.php:145
|
375 |
+
#: options/panel5.php:154 options/panel5.php:163 options/panel5.php:173
|
376 |
+
#: options/panel5.php:182 options/panel5.php:192 options/panel5.php:201
|
377 |
+
#: options/panel5.php:210 options/panel5.php:219
|
378 |
msgid "Yes"
|
379 |
msgstr "Yes"
|
380 |
|
381 |
+
#: options/panel10.php:113 options/panel10.php:122 options/panel2.php:67
|
382 |
+
#: options/panel2.php:77 options/panel2.php:106 options/panel5.php:111
|
383 |
+
#: options/panel5.php:120 options/panel5.php:137 options/panel5.php:146
|
384 |
+
#: options/panel5.php:155 options/panel5.php:164 options/panel5.php:174
|
385 |
+
#: options/panel5.php:183 options/panel5.php:193 options/panel5.php:202
|
386 |
+
#: options/panel5.php:211 options/panel5.php:220 utils/stcr_manage.php:755
|
387 |
msgid "No"
|
388 |
msgstr "No"
|
389 |
|
390 |
+
#: options/panel10.php:114
|
391 |
msgid ""
|
392 |
"If enabled, will log information of the plugin. Helpful for debugging "
|
393 |
"purposes."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: options/panel10.php:125
|
397 |
msgid "Hourly"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: options/panel10.php:126
|
401 |
msgid "Twice Daily"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: options/panel10.php:127
|
405 |
msgid "Daily"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: options/panel10.php:129
|
409 |
msgid "If enabled, StCR will auto clean your information every day."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: options/panel10.php:134
|
413 |
msgid "Clean Up Log Archive"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: options/panel10.php:138
|
417 |
msgid ""
|
418 |
"If you want to clean up the log archive please click the following button"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: options/panel10.php:140
|
422 |
msgid "Clean"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: options/panel10.php:147 options/panel10.php:150
|
426 |
msgid "System Information"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: options/panel10.php:164 options/panel2.php:230 options/panel3.php:253
|
430 |
+
#: options/panel4.php:283 options/panel5.php:265
|
431 |
msgid "Save Changes"
|
432 |
msgstr "保存更改"
|
433 |
|
751 |
#: options/panel4.php:128
|
752 |
msgid ""
|
753 |
"This will be use when the user click reply on their email agent. If not set "
|
754 |
+
"it will be the same as the Sender email address."
|
755 |
msgstr ""
|
756 |
|
757 |
#: options/panel4.php:147
|
767 |
|
768 |
#: options/panel4.php:171
|
769 |
msgid ""
|
770 |
+
"<p style=\"color: #156dc7;\"><strong>Note: To get a default template clear "
|
771 |
+
"all the content and save the options.</strong></p>"
|
772 |
msgstr ""
|
773 |
|
774 |
#: options/panel4.php:184
|
813 |
"[blog_name]"
|
814 |
msgstr "确认邮件的标题。允许的标签:[post_title]"
|
815 |
|
816 |
+
#: options/panel5.php:38
|
817 |
+
#, fuzzy
|
818 |
+
#| msgid "Your settings have been successfully updated."
|
819 |
+
msgid "Your settings have been successfully reset."
|
820 |
+
msgstr "你的设置已经成功更新了。"
|
821 |
+
|
822 |
+
#: options/panel5.php:40
|
823 |
+
#, fuzzy
|
824 |
+
#| msgid "There was an error updating the following fields:"
|
825 |
+
msgid "There was an error deleting the options:"
|
826 |
+
msgstr "更新以下内容时出现错误了:"
|
827 |
+
|
828 |
+
#: options/panel5.php:48 options/panel5.php:108
|
829 |
msgid "Show StCR checkbox / dropdown"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: options/panel5.php:51
|
833 |
msgid "Safetly Uninstall"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: options/panel5.php:54 options/panel5.php:125
|
837 |
msgid "Autopurge requests"
|
838 |
msgstr "自动删除的请求"
|
839 |
|
840 |
+
#: options/panel5.php:57 options/panel5.php:143
|
841 |
msgid "Enable double check"
|
842 |
msgstr "启用确认"
|
843 |
|
844 |
+
#: options/panel5.php:60 options/panel5.php:134
|
845 |
msgid "StCR Position"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: options/panel5.php:63 options/panel5.php:151
|
849 |
msgid "Subscribe authors"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: options/panel5.php:66 options/panel5.php:161
|
853 |
msgid "Enable HTML emails"
|
854 |
msgstr "启用HTML的邮件"
|
855 |
|
856 |
+
#: options/panel5.php:69
|
857 |
msgid "HTMLify Links in HTML emails"
|
858 |
msgstr ""
|
859 |
|
860 |
+
#: options/panel5.php:72
|
861 |
msgid "Send trackbacks"
|
862 |
msgstr "发送trackback"
|
863 |
|
864 |
+
#: options/panel5.php:75
|
865 |
msgid "Notify admin"
|
866 |
msgstr "通知管理员"
|
867 |
|
868 |
+
#: options/panel5.php:78 options/panel5.php:199
|
869 |
msgid "Let admin subscribe"
|
870 |
msgstr "让管理员订阅"
|
871 |
|
872 |
+
#: options/panel5.php:81 options/panel5.php:208
|
873 |
msgid "BCC admin on Notifications"
|
874 |
msgstr "通知"
|
875 |
|
876 |
+
#: options/panel5.php:84 options/panel5.php:217
|
877 |
+
msgid "Enable Font Awesome"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: options/panel5.php:87 options/panel5.php:254 options/panel5.php:261
|
881 |
+
msgid "Reset All Options"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: options/panel5.php:112
|
885 |
msgid ""
|
886 |
"This option will disable the StCR checkbox or dropdown in you comment form. "
|
887 |
"You should leave it to Yes always. "
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: options/panel5.php:117
|
891 |
msgid "Safely Uninstall"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: options/panel5.php:121
|
895 |
msgid ""
|
896 |
"This option will allow you to delete the plugin with WordPress without "
|
897 |
"loosing your subscribers. Any database table and plugin options are wipeout."
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: options/panel5.php:128
|
901 |
msgid "days"
|
902 |
msgstr "天"
|
903 |
|
904 |
+
#: options/panel5.php:129
|
905 |
msgid ""
|
906 |
"Delete pending subscriptions (not confirmed) after X days. Zero disables "
|
907 |
"this feature."
|
908 |
msgstr "在X天之后删除没有激活的订阅(没有确认)。0代表禁用此功能。"
|
909 |
|
910 |
+
#: options/panel5.php:138
|
911 |
msgid ""
|
912 |
"If this option is enable the subscription box will be above the submit "
|
913 |
"button in your comment form. Use this when your theme is outdated and using "
|
914 |
"the incorrect WordPress Hooks and the checkbox is not displayed."
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: options/panel5.php:147
|
918 |
msgid ""
|
919 |
"Send a notification email to confirm the subscription (to avoid addresses "
|
920 |
"misuse)."
|
921 |
msgstr "发送激活邮件确认订阅(避免提交他人的邮箱)。"
|
922 |
|
923 |
+
#: options/panel5.php:156
|
924 |
msgid ""
|
925 |
"Automatically subscribe authors to their own articles (not retroactive)."
|
926 |
msgstr ""
|
927 |
|
928 |
+
#: options/panel5.php:165
|
929 |
msgid ""
|
930 |
"If enabled, will send email messages with content-type = text/html instead "
|
931 |
"of text/plain"
|
932 |
msgstr "如果启用的话,发送的邮件会content-type = text/html而不是text/plain"
|
933 |
|
934 |
+
#: options/panel5.php:170
|
935 |
msgid "HTMLify links in emails"
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: options/panel5.php:175
|
939 |
msgid ""
|
940 |
"If enabled, will wrap all links in messages with <code><a href=\"\">"
|
941 |
"</a></code> (only when HTML emails enabled)."
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: options/panel5.php:180
|
945 |
msgid "Process trackbacks"
|
946 |
msgstr "处理tackbacks"
|
947 |
|
948 |
+
#: options/panel5.php:184
|
949 |
msgid ""
|
950 |
"Notify users when a new trackback or pingback is added to the discussion."
|
951 |
msgstr "收到新的trackback或pingback之后通知订阅者。"
|
952 |
|
953 |
+
#: options/panel5.php:189
|
954 |
msgid "Track all subscriptions"
|
955 |
msgstr "Track all subscriptions"
|
956 |
|
957 |
+
#: options/panel5.php:194
|
958 |
msgid "Notify the administrator when users subscribe without commenting."
|
959 |
msgstr "人不留评论订阅时,通知管理员。"
|
960 |
|
961 |
+
#: options/panel5.php:203
|
962 |
msgid "Let the administrator subscribe to comments when logged in."
|
963 |
msgstr "让管理员登录后订阅评论。"
|
964 |
|
965 |
+
#: options/panel5.php:212
|
966 |
msgid "Send a copy of all Notifications to the administrator."
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: options/panel5.php:221
|
970 |
+
msgid ""
|
971 |
+
"Let you control the inclusion of the Font Awesome into your site. Disable if "
|
972 |
+
"you theme already add this into your site."
|
973 |
+
msgstr ""
|
974 |
+
|
975 |
+
#: options/panel5.php:226
|
976 |
msgid "StCR Unique Key"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: options/panel5.php:231
|
980 |
msgid "This Unique Key is not set, please click the following button to "
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: options/panel5.php:235 options/panel5.php:246
|
984 |
msgid "Generate"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: options/panel5.php:243
|
988 |
msgid ""
|
989 |
"This Unique Key will be use to send the notification to your subscribers "
|
990 |
"with more security."
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: options/panel5.php:256
|
994 |
+
msgid ""
|
995 |
+
"This will reset all the options and messages of the plugin. Please proceed "
|
996 |
+
"with caution."
|
997 |
+
msgstr ""
|
998 |
|
999 |
+
#: options/panel5.php:258
|
1000 |
+
msgid "Yes, Delete Options including subscriptions."
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: options/panel5.php:259
|
1004 |
+
msgid "No, Only delete the StCR Options."
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: options/panel7.php:11 options/panel8.php:11
|
1008 |
+
msgid ""
|
1009 |
+
"Support the developer, You can donate via <i class=\"fa fa-paypal\" aria-"
|
1010 |
+
"hidden=\"true\"></i>"
|
1011 |
+
msgstr ""
|
1012 |
+
|
1013 |
+
#: options/panel7.php:21 options/panel8.php:21
|
1014 |
+
#, fuzzy
|
1015 |
+
#| msgid ""
|
1016 |
+
#| "How valuable is the feature offered by this plugin to your visitors? "
|
1017 |
+
#| "please consider supporting the author if this plugin made your web site "
|
1018 |
+
#| "better, especially if you are making money out of it. Any donation "
|
1019 |
+
#| "received will be reinvested in the development of <strong>Subscribe to "
|
1020 |
+
#| "Comments Reloaded</strong>, and to buy some food for my hungry family."
|
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.<br><br> You can donate <strong>"
|
1025 |
+
"$5.00, $10.00, $20.00</strong> or more, $Any donation received will be "
|
1026 |
"reinvested in the development of <strong>Subscribe to Comments Reloaded</"
|
1027 |
"strong>, and to buy some food for my hungry family."
|
1028 |
msgstr ""
|
1033 |
"in the development of Subscribe to Comments Reloaded, and to buy some food "
|
1034 |
"for my hungry family."
|
1035 |
|
1036 |
+
#: options/panel7.php:23 options/panel8.php:23
|
1037 |
+
#, fuzzy
|
1038 |
+
#| msgid "You can help"
|
1039 |
+
msgid "You can still help"
|
1040 |
+
msgstr "你可以帮助"
|
1041 |
|
1042 |
+
#: options/panel7.php:24 options/panel8.php:24
|
1043 |
+
#, fuzzy
|
1044 |
+
#| msgid ""
|
1045 |
+
#| "If you don't want to donate money, please consider blogging about my "
|
1046 |
+
#| "plugin with a link to the plugin's page. Please let your readers know "
|
1047 |
+
#| "what makes your blog better. You can also contribute donating your time: "
|
1048 |
+
#| "do not hesitate to send me bug reports, your localization files, ideas on "
|
1049 |
+
#| "how to improve <strong>Subscribe to Comments Reloaded</strong> and so on. "
|
1050 |
+
#| "Whatever you do, thanks for using my plugin!"
|
1051 |
+
msgid ""
|
1052 |
+
"Please consider blogging about my plugin with a link to the plugin's page. "
|
1053 |
+
"Please let your readers know what makes your blog better. You can also "
|
1054 |
+
"contribute donating your time: do not hesitate to send me bug reports, your "
|
1055 |
+
"localization files, ideas on how to improve <strong>Subscribe to Comments "
|
1056 |
+
"Reloaded</strong> and so on. Whatever you do, thanks for using my plugin!"
|
1057 |
msgstr ""
|
1058 |
"If you don't want to donate money, please consider blogging about my plugin "
|
1059 |
"with a link to the plugin's page. Please let your readers know what makes "
|
1062 |
"improve Subscribe to Comments Reloaded and so on. Whatever you do, thanks "
|
1063 |
"for using my plugin!"
|
1064 |
|
1065 |
+
#: options/panel7.php:26 options/panel8.php:26
|
1066 |
msgid "Subscribe to the Beta testers"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: options/panel7.php:27 options/panel8.php:27
|
1070 |
msgid ""
|
1071 |
"Before a new Update we release a Beta version so that our current users can "
|
1072 |
"give us feedback if they find a bug, If you want to join the tester list you "
|
1074 |
"a>"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: options/panel7.php:29 options/panel8.php:29
|
1078 |
msgid "Vote and show your appreciation"
|
1079 |
msgstr "Vote and show your appreciation"
|
1080 |
|
1081 |
+
#: options/panel7.php:30 options/panel8.php:30
|
1082 |
msgid ""
|
1083 |
"Tell other people if <strong>Subscribe to Comments Reloaded</strong> works "
|
1084 |
"for you and how good it is. <a href=\"http://wordpress.org/extend/plugins/"
|
1088 |
"good it is. <a href=\"http://wordpress.org/extend/plugins/subscribe-to-"
|
1089 |
"comments-reloaded/\">Rate it</a> on its Plugin Directory page."
|
1090 |
|
1091 |
+
#: options/panel7.php:32 options/panel8.php:32
|
1092 |
msgid "Did you find a Bug on the plugin?"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: options/panel7.php:33 options/panel8.php:33
|
1096 |
msgid ""
|
1097 |
"Please report any bug on the <a href=\"https://github.com/stcr/subscribe-to-"
|
1098 |
"comments-reloaded/issues/new?title=Bug%20Report:%20%3Cshort%20description"
|
1185 |
msgid "You have request to manage another email address and this is forbidden."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: utils/stcr_manage.php:410 utils/stcr_manage.php:411
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1189 |
msgid "StCR System"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: utils/stcr_manage.php:431 utils/stcr_manage.php:459
|
1193 |
+
#: utils/stcr_manage.php:486 utils/stcr_manage.php:513
|
1194 |
+
#: utils/stcr_manage.php:540 utils/stcr_manage.php:567
|
1195 |
+
#: utils/stcr_manage.php:594 utils/stcr_manage.php:621
|
1196 |
+
#: utils/stcr_manage.php:648 utils/stcr_manage.php:676
|
1197 |
msgid "You do not have sufficient permissions to access this page."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: utils/stcr_manage.php:726
|
1201 |
msgid "Subscriptions"
|
1202 |
msgstr "搜索订阅"
|
1203 |
|
1204 |
+
#: utils/stcr_manage.php:782
|
1205 |
msgid ""
|
1206 |
"Need help on how to use Subscribe to Comments Reloaded? Visit the official"
|
1207 |
msgstr "需要帮忙如何使用Subscribe to Comments Reloaded? 请访问官方"
|
1208 |
|
1209 |
+
#: utils/stcr_manage.php:782
|
1210 |
msgid "support forum"
|
1211 |
msgstr "技术论坛"
|
1212 |
|
1213 |
+
#: utils/stcr_manage.php:783
|
1214 |
msgid "Feeling generous?"
|
1215 |
msgstr "想做贡献"
|
1216 |
|
1217 |
+
#: utils/stcr_manage.php:783
|
1218 |
msgid "Donate a few bucks!"
|
1219 |
msgstr "捐赠几元!"
|
1220 |
|
1221 |
+
#: utils/stcr_upgrade.php:72
|
1222 |
msgid "Important Notice"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: utils/stcr_upgrade.php:120
|
1226 |
msgid ""
|
1227 |
"<strong>Subscribe to Comments Reloaded:</strong> The information in your "
|
1228 |
"database has been sanitized to prevent the raw html messages. <a class="
|
1230 |
"src=\""
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: utils/stcr_upgrade.php:175
|
1234 |
msgid ""
|
1235 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1236 |
"from the <strong>Subscribe to Comments</strong> plugin was detected and "
|
1237 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: utils/stcr_upgrade.php:175
|
1241 |
msgid ""
|
1242 |
" It is recommended that you now <strong>deactivate</strong> Subscribe to "
|
1243 |
"Comments to prevent confusion between the two plugins."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: utils/stcr_upgrade.php:176
|
1247 |
msgid ""
|
1248 |
"If you have subscription data from Subscribe to Comments Reloaded < v2.0 "
|
1249 |
"that you want to import, you'll need to import that data manually, as only "
|
1250 |
"one import routine will ever run to prevent data loss."
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: utils/stcr_upgrade.php:177 utils/stcr_upgrade.php:251
|
1254 |
+
#: utils/stcr_upgrade.php:400
|
1255 |
msgid ""
|
1256 |
"Please visit <a href=\"options-general.php?page=subscribe-to-comments-"
|
1257 |
"reloaded/options/index.php\">Settings -> Subscribe to Comments</a> to review "
|
1259 |
"\"stcr-loading-animation\" src=\""
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: utils/stcr_upgrade.php:250
|
1263 |
msgid ""
|
1264 |
"<strong>Subscribe to Comments Reloaded:</strong> Comment subscription data "
|
1265 |
"from the <strong>Comment Reply Notification</strong> plugin was detected and "
|
1266 |
"automatically imported into <strong>Subscribe to Comments Reloaded</strong>."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: utils/stcr_upgrade.php:250
|
1270 |
msgid ""
|
1271 |
" It is recommended that you now <strong>deactivate</strong> Comment Reply "
|
1272 |
"Notification to prevent confusion between the two plugins."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: utils/stcr_upgrade.php:397
|
1276 |
msgid ""
|
1277 |
"<strong>Subscribe to Comments Reloaded:</strong> Plugin options and comment "
|
1278 |
"subscription data from the <strong>WP Comment Subscriptions</strong> plugin "
|
1280 |
"Reloaded</strong>."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: utils/stcr_upgrade.php:397
|
1284 |
msgid ""
|
1285 |
" It is recommended that you now <strong>deactivate</strong> WP Comment "
|
1286 |
"Subscriptions to prevent confusion between the two plugins."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: utils/stcr_upgrade.php:398
|
1290 |
msgid ""
|
1291 |
"If you have subscription data from another plugin (such as Subscribe to "
|
1292 |
"Comments or Subscribe to Comments Reloaded < v2.0) that you want to import, "
|
1294 |
"ever run to prevent data loss."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: utils/stcr_upgrade.php:399
|
1298 |
msgid ""
|
1299 |
"<strong>Note:</strong> If you were previously using the "
|
1300 |
"<code>wp_comment_subscriptions_show()</code> function or the <code>[wpcs-"
|
1303 |
"respectively."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: utils/stcr_upgrade.php:413
|
1307 |
msgid ""
|
1308 |
"<strong>Thank you for installing Subscribe to Comments Reloaded!</strong>."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: utils/stcr_upgrade.php:414 utils/stcr_upgrade.php:534
|
1312 |
+
#: utils/stcr_upgrade.php:561 utils/stcr_upgrade.php:589
|
1313 |
msgid ""
|
1314 |
"If you find a bug or an issue you can report it <a href=\"https://github.com/"
|
1315 |
"stcr/subscribe-to-comments-reloaded/issues\" target=\"_blank\">here</a>."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: utils/stcr_upgrade.php:415
|
1319 |
msgid ""
|
1320 |
+
"Please consider to make a donation to support the plugin. You can donate via "
|
1321 |
+
"<i class=\"fa fa-paypal\" aria-hidden=\"true\"></i> <a href=\"\n"
|
1322 |
"https://www.paypal.com/cgi-bin/webscr?"
|
1323 |
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1324 |
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1325 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: utils/stcr_upgrade.php:417
|
1329 |
msgid ""
|
1330 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1331 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for detailed "
|
1333 |
"a><img class=\"stcr-loading-animation\" src=\""
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: utils/stcr_upgrade.php:428
|
1337 |
msgid ""
|
1338 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1339 |
"160106."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: utils/stcr_upgrade.php:429
|
1343 |
msgid ""
|
1344 |
"This version includes many changes and fixes to improve your experience with "
|
1345 |
"the plugin, including One Click Unsubscribe, Rich Text Editor to create HTML "
|
1346 |
"email templates, Subscription Checkbox position, and more!"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: utils/stcr_upgrade.php:430 utils/stcr_upgrade.php:445
|
1350 |
+
#: utils/stcr_upgrade.php:467 utils/stcr_upgrade.php:490
|
1351 |
+
#: utils/stcr_upgrade.php:511 utils/stcr_upgrade.php:539
|
1352 |
+
#: utils/stcr_upgrade.php:566 utils/stcr_upgrade.php:594
|
1353 |
msgid ""
|
1354 |
"Please visit the <a href=\"https://wordpress.org/plugins/subscribe-to-"
|
1355 |
"comments-reloaded/changelog/\" target=\"_blank\">Changelog</a> for a "
|
1357 |
"class=\"stcr-loading-animation\" src=\""
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: utils/stcr_upgrade.php:443
|
1361 |
msgid ""
|
1362 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1363 |
"160115."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: utils/stcr_upgrade.php:444
|
1367 |
msgid ""
|
1368 |
"This version includes fixes to broken links while managing your subscriptions"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: utils/stcr_upgrade.php:458
|
1372 |
msgid ""
|
1373 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1374 |
"160831"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: utils/stcr_upgrade.php:459 utils/stcr_upgrade.php:481
|
1378 |
msgid "This version includes fixes to many bugs and also new features, "
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: utils/stcr_upgrade.php:461 utils/stcr_upgrade.php:484
|
1382 |
msgid ""
|
1383 |
"<strong>New Feature</strong> Add new option to set the Reply To email "
|
1384 |
"address. This will help the subscribers to use the Reply option in their "
|
1385 |
"email agents."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: utils/stcr_upgrade.php:462 utils/stcr_upgrade.php:485
|
1389 |
msgid ""
|
1390 |
"<strong>New Feature</strong> Improve the Admin Menu for StCR. Replace the "
|
1391 |
"StCR menu on the Settings Menu for a new Menu with sub menus for the pages."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: utils/stcr_upgrade.php:463 utils/stcr_upgrade.php:486
|
1395 |
msgid ""
|
1396 |
"<strong>New Feature</strong> Safely Uninstall option to Delete the plugin "
|
1397 |
"without loosing your subscriptions. You can use this option also for reset "
|
1398 |
"all the settings, see the FAQ."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: utils/stcr_upgrade.php:464 utils/stcr_upgrade.php:487
|
1402 |
msgid ""
|
1403 |
"<strong>New Feature</strong> Now the WordPress Authors can use the "
|
1404 |
"<strong>Subscribe authors</strong> option to autor subscribe to a Custom "
|
1405 |
"Post Type."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: utils/stcr_upgrade.php:465 utils/stcr_upgrade.php:488
|
1409 |
msgid ""
|
1410 |
"<strong>New Feature</strong> A new field was added under the notification "
|
1411 |
"options to and the management link only by email and not to display it on "
|
1412 |
"the request link page."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: utils/stcr_upgrade.php:480
|
1416 |
msgid ""
|
1417 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1418 |
"160902"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: utils/stcr_upgrade.php:483
|
1422 |
msgid ""
|
1423 |
"<strong>Fix update</strong> this version Fixes some issue trigger by the "
|
1424 |
"previous 160831 version."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: utils/stcr_upgrade.php:500 wp_subscribe_reloaded.php:123
|
1428 |
msgid "Settings"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: utils/stcr_upgrade.php:504
|
1432 |
msgid ""
|
1433 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1434 |
"160915"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: utils/stcr_upgrade.php:505 utils/stcr_upgrade.php:526
|
1438 |
+
#: utils/stcr_upgrade.php:554 utils/stcr_upgrade.php:581
|
1439 |
msgid "This version includes fixes and improvements, "
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: utils/stcr_upgrade.php:508
|
1443 |
msgid ""
|
1444 |
"<strong>Change</strong> the radio buttons in the management page for a "
|
1445 |
"dropdown."
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#: utils/stcr_upgrade.php:509
|
1449 |
msgid ""
|
1450 |
"<strong>Improve</strong> Email validation for empty values and using a regex."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: utils/stcr_upgrade.php:521 utils/stcr_upgrade.php:549
|
1454 |
+
#: utils/stcr_upgrade.php:576
|
1455 |
msgid "Log Settings"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: utils/stcr_upgrade.php:525 utils/stcr_upgrade.php:553
|
1459 |
+
#: utils/stcr_upgrade.php:580
|
1460 |
msgid ""
|
1461 |
"<strong>Subscribe to Comments Reloaded</strong> has been updated to version "
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: utils/stcr_upgrade.php:529
|
1465 |
msgid ""
|
1466 |
"<strong>Fix</strong> Wrong confirmation link when the double check option is "
|
1467 |
"enable."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: utils/stcr_upgrade.php:530
|
1471 |
msgid "<strong>Improve</strong> Manage subscription page. Take a look ;)."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: utils/stcr_upgrade.php:535 utils/stcr_upgrade.php:562
|
1475 |
+
#: utils/stcr_upgrade.php:590
|
1476 |
msgid "The support of this plugin is given thanks to your donations."
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: utils/stcr_upgrade.php:536
|
1480 |
msgid ""
|
1481 |
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1482 |
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1486 |
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: utils/stcr_upgrade.php:557
|
1490 |
+
msgid ""
|
1491 |
+
"<strong>Fix Critical Bug</strong> This version fix a critical bug on fresh "
|
1492 |
+
"installation regarding a database table creation."
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: utils/stcr_upgrade.php:558
|
1496 |
+
msgid ""
|
1497 |
+
"<strong>Add</strong> Option to control the inclusion of the style Font "
|
1498 |
+
"Awesome."
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: utils/stcr_upgrade.php:563
|
1502 |
+
msgid ""
|
1503 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1504 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1505 |
+
"https://www.paypal.com/cgi-bin/webscr?"
|
1506 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1507 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1508 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. Thank you "
|
1509 |
+
"for the users that have supported the plugin development."
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: utils/stcr_upgrade.php:584
|
1513 |
+
msgid ""
|
1514 |
+
"<strong>Security Patch</strong> This version add a patch for some security "
|
1515 |
+
"issues."
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: utils/stcr_upgrade.php:585
|
1519 |
+
msgid "<strong>Add</strong> Option to reset all the plugin options"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: utils/stcr_upgrade.php:586
|
1523 |
+
msgid "<strong>Fix</strong> issue regarding database collations"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: utils/stcr_upgrade.php:591
|
1527 |
+
msgid ""
|
1528 |
+
"Help to keep the support alive. You can donate via <i class=\"fa fa-paypal\" "
|
1529 |
+
"aria-hidden=\"true\"></i> <a href=\"\n"
|
1530 |
+
" https://www.paypal.com/cgi-bin/webscr?"
|
1531 |
+
"cmd=_donations&business=XF86X93FDCGYA&lc=US&item_name=Datasoft"
|
1532 |
+
"%20Engineering&item_number=DI%2dSTCR¤cy_code=USD&bn=PP%2dDonationsBF"
|
1533 |
+
"%3abtn_donate_LG%2egif%3aNonHosted\" target=\"_blank\">PayPal</a>. A big "
|
1534 |
+
"Thanks for all the users that have supported the plugin development."
|
1535 |
+
msgstr ""
|
1536 |
+
|
1537 |
+
#: utils/stcr_utils.php:196
|
1538 |
+
msgid ""
|
1539 |
+
"Notify me of followup comments via e-mail. You can also <a "
|
1540 |
+
"href='[subscribe_link]'>subscribe</a> without commenting."
|
1541 |
+
msgstr ""
|
1542 |
+
"有新评论,请电子邮件通知我。你也不需要留评论就可以<a href='[subscribe_link]'>"
|
1543 |
+
"订阅</a>。"
|
1544 |
+
|
1545 |
+
#: utils/stcr_utils.php:197
|
1546 |
+
msgid ""
|
1547 |
+
"You are subscribed to this post. <a href='[manager_link]'>Manage</a> your "
|
1548 |
+
"subscriptions."
|
1549 |
+
msgstr "你已经订阅过本篇文章。<a href='[manager_link]'>管理</a>你的订阅。"
|
1550 |
+
|
1551 |
+
#: utils/stcr_utils.php:198
|
1552 |
+
msgid ""
|
1553 |
+
"Your subscription to this post needs to be confirmed. <a "
|
1554 |
+
"href='[manager_link]'>Manage your subscriptions</a>."
|
1555 |
+
msgstr "你需要激活你的订阅。<a href='[manager_link]'>管理你的订阅</a>。"
|
1556 |
+
|
1557 |
+
#: utils/stcr_utils.php:199
|
1558 |
+
msgid ""
|
1559 |
+
"You can <a href='[manager_link]'>manage the subscriptions</a> of this post."
|
1560 |
+
msgstr "你可以<a href='[manager_link]'>管理</a>本篇文章的订阅。"
|
1561 |
+
|
1562 |
+
#: utils/stcr_utils.php:205
|
1563 |
+
msgid ""
|
1564 |
+
"To manage your subscriptions, please enter your email address here below. We "
|
1565 |
+
"will send you a message containing the link to access your personal "
|
1566 |
+
"management page."
|
1567 |
+
msgstr ""
|
1568 |
+
"为了管理你的评论订阅,请在这里输入你的邮箱地址。我们会把管理你个人订阅的链接"
|
1569 |
+
"发到你的邮箱。"
|
1570 |
+
|
1571 |
+
#: utils/stcr_utils.php:206
|
1572 |
+
msgid ""
|
1573 |
+
"Thank you for using our subscription service. Your request has been "
|
1574 |
+
"completed, and you should receive an email with the management link in a few "
|
1575 |
+
"minutes."
|
1576 |
+
msgstr ""
|
1577 |
+
"谢谢你使用评论订阅。你的请求已处理完,过几分钟你就会收到有管理页面链接的邮"
|
1578 |
+
"件。"
|
1579 |
+
|
1580 |
+
#: utils/stcr_utils.php:207
|
1581 |
+
msgid ""
|
1582 |
+
"You can follow the discussion on <strong>[post_title]</strong> without "
|
1583 |
+
"having to leave a comment. Cool, huh? Just enter your email address in the "
|
1584 |
+
"form here below and you're all set."
|
1585 |
+
msgstr ""
|
1586 |
+
"你不需要留评论就可以关注《<strong>[post_title]</strong>》的讨论。不错,啊?在"
|
1587 |
+
"下面输入你的邮箱地址就可以。"
|
1588 |
+
|
1589 |
+
#: utils/stcr_utils.php:208
|
1590 |
+
msgid ""
|
1591 |
+
"Thank you for using our subscription service. Your request has been "
|
1592 |
+
"completed. You will receive a notification email every time a new comment to "
|
1593 |
+
"this article is approved and posted by the administrator."
|
1594 |
+
msgstr ""
|
1595 |
+
"谢谢你使用评论订阅。你的请求已处理完。每次管理员审核和发布新评论你就会收到邮"
|
1596 |
+
"件通知。"
|
1597 |
+
|
1598 |
+
#: utils/stcr_utils.php:209
|
1599 |
+
msgid ""
|
1600 |
+
"Thank you for using our subscription service. In order to confirm your "
|
1601 |
+
"request, please check your email for the verification message and follow the "
|
1602 |
+
"instructions."
|
1603 |
+
msgstr ""
|
1604 |
+
"谢谢你使用评论订阅。为了确认你的请求,请查看你的电子邮箱,你会收到确认邮件和"
|
1605 |
+
"下一步的说明。"
|
1606 |
+
|
1607 |
+
#: utils/stcr_utils.php:210
|
1608 |
+
msgid ""
|
1609 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1610 |
+
"corresponding checkbox(es) and click on the button at the end of the list."
|
1611 |
+
msgstr ""
|
1612 |
+
"为了取消或者停止一个或更多的通知,请点击相关的复选框,并点击最下面的按钮。"
|
1613 |
+
|
1614 |
+
#: utils/stcr_utils.php:211
|
1615 |
+
msgid ""
|
1616 |
+
"In order to cancel or suspend one or more notifications, select the "
|
1617 |
+
"corresponding checkbox(es) and click on the button at the end of the list. "
|
1618 |
+
"You are currently subscribed to:"
|
1619 |
+
msgstr ""
|
1620 |
+
"为了取消或者停止一个或更多的通知,请点击相关的复选框,并点击最下面的按钮。你"
|
1621 |
+
"已经订阅了这些:"
|
1622 |
+
|
1623 |
+
#: utils/stcr_utils.php:215
|
1624 |
+
msgid "There is a new comment to [post_title]"
|
1625 |
+
msgstr "[post_title]有一条新的评论"
|
1626 |
+
|
1627 |
+
#: utils/stcr_utils.php:216
|
1628 |
+
msgid ""
|
1629 |
+
"<h1>There is a new comment on [
|