Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin - Version 2.0.8

Version Description

  • Fixed a regular expression warning
  • Use PHP's url validation in utils
Download this release

Release Info

Developer supercleanse
Plugin Icon 128x128 Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin
Version 2.0.8
Comparing to
See all releases

Code changes from version 2.0.7 to 2.0.8

Files changed (4) hide show
  1. app/models/PrliUtils.php +5 -15
  2. i18n/pretty-link.pot +142 -523
  3. pretty-link.php +1 -1
  4. readme.txt +5 -1
app/models/PrliUtils.php CHANGED
@@ -1033,28 +1033,18 @@ class PrliUtils {
1033
  return apply_filters('prli-get-page-title', $title, $url, $slug);
1034
  }
1035
 
1036
- //public static function is_date($str) {
1037
- // return ( preg_match('/^(\d\d\d\d)-(\d\d)-(\d\d)$/', $str, $m) &&
1038
- // (int)$m[1] >= 1900 && (int)$m[1] <= 2200 && // Validate Year
1039
- // (int)$m[2] >= 1 && (int)$m[2] <= 12 && // Validate Month
1040
- // (int)$m[3] >= 1 && (int)$m[3] <= 31 ); // Validate Day
1041
- // }
1042
- //}
1043
-
1044
  public static function is_date($str) {
1045
  if(!is_string($str)) { return false; }
1046
  $d = strtotime($str);
1047
  return ($d !== false);
1048
  }
1049
 
1050
- //public static function is_url($url) {
1051
- // return ( preg_match('/^http.?:\/\/.*\..*$/', $url ) ||
1052
- // preg_match('!^(http|https)://(localhost|127\.0\.0\.1)(:\d+)?(/[\w- ./?%&=]*)?!', $url ) );
1053
- //}
1054
-
1055
- // This uses the @diegoperini URL matching regex adapted for PHP from https://gist.github.com/dperini/729294
1056
  public static function is_url($str) {
1057
- return preg_match('_^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)(?:\.(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)*(?:\.(?:[a-z\x{00a1}-\x{ffff}]{2,}))\.?)(?::\d{2,5})?(?:[/?#]\S*)?$_iuS', $str);
 
 
 
 
1058
  }
1059
 
1060
  public static function is_email($str) {
1033
  return apply_filters('prli-get-page-title', $title, $url, $slug);
1034
  }
1035
 
 
 
 
 
 
 
 
 
1036
  public static function is_date($str) {
1037
  if(!is_string($str)) { return false; }
1038
  $d = strtotime($str);
1039
  return ($d !== false);
1040
  }
1041
 
 
 
 
 
 
 
1042
  public static function is_url($str) {
1043
+ // This uses the @diegoperini URL matching regex adapted for PHP from https://gist.github.com/dperini/729294
1044
+ // return preg_match('_^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)(?:\.(?:[a-z\x{00a1}-\x{ffff}0-9]-*)*[a-z\x{00a1}-\x{ffff}0-9]+)*(?:\.(?:[a-z\x{00a1}-\x{ffff}]{2,}))\.?)(?::\d{2,5})?(?:[/?#]\S*)?$_iuS', $str);
1045
+
1046
+ //Let's see how PHP's built in validator does instead?
1047
+ return apply_filters('prli_is_valid_url', (filter_var($str, FILTER_VALIDATE_URL) !== FALSE), $str);
1048
  }
1049
 
1050
  public static function is_email($str) {
i18n/pretty-link.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Pretty Link package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Pretty Link 2.0.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
7
- "POT-Creation-Date: 2017-03-08 17:52:26+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,8 +17,6 @@ msgstr ""
17
  msgid "Pretty Link | Manage Pretty Links"
18
  msgstr ""
19
 
20
- #. #-#-#-#-# pretty-link.pot (Pretty Link 2.0.7) #-#-#-#-#
21
- #. Plugin Name of the plugin/theme
22
  #: app/controllers/PrliAppController.php:37
23
  #: app/controllers/PrliAppController.php:46 app/views/links/form.php:47
24
  #: app/views/shared/tinymce_form_popup.php:109 app/views/widgets/widget.php:17
@@ -99,8 +97,7 @@ msgid "Buy"
99
  msgstr ""
100
 
101
  #: app/controllers/PrliAppController.php:279
102
- msgid ""
103
- "You're almost done!<br/>%1$sFinish your Re-Install of Pretty Link Pro%2$s"
104
  msgstr ""
105
 
106
  #: app/controllers/PrliAppController.php:286
@@ -113,9 +110,7 @@ msgstr ""
113
 
114
  #: app/controllers/PrliAppController.php:385
115
  #: app/controllers/PrliAppController.php:404
116
- msgid ""
117
- "Your Pretty Link Pro installation isn't quite complete yet.<br/>"
118
- "%1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s"
119
  msgstr ""
120
 
121
  #: app/controllers/PrliClicksController.php:89
@@ -218,15 +213,11 @@ msgid "Options saved."
218
  msgstr ""
219
 
220
  #: app/controllers/PrliOptionsController.php:75
221
- msgid ""
222
- "Excluded IP Addresses must be a comma separated list of IPv4 or IPv6 "
223
- "addresses or ranges."
224
  msgstr ""
225
 
226
  #: app/controllers/PrliOptionsController.php:79
227
- msgid ""
228
- "Whitlist IP Addresses must be a comma separated list of IPv4 or IPv6 "
229
- "addresses or ranges."
230
  msgstr ""
231
 
232
  #: app/controllers/PrliPopupController.php:62
@@ -465,9 +456,7 @@ msgid "Edit %s"
465
  msgstr ""
466
 
467
  #: app/helpers/PrliLinksHelper.php:115
468
- msgid ""
469
- "Are you sure you want to delete your %s Pretty Link? This will delete the "
470
- "Pretty Link and all of the statistical data about it in your database."
471
  msgstr ""
472
 
473
  #: app/helpers/PrliLinksHelper.php:115
@@ -475,9 +464,7 @@ msgid "Delete %s"
475
  msgstr ""
476
 
477
  #: app/helpers/PrliLinksHelper.php:116
478
- msgid ""
479
- "Are you sure you want to reset your %s Pretty Link? This will delete all of "
480
- "the statistical data about this Pretty Link in your database."
481
  msgstr ""
482
 
483
  #: app/helpers/PrliLinksHelper.php:116
@@ -551,9 +538,7 @@ msgid "Link URL must be a correctly formatted url"
551
  msgstr ""
552
 
553
  #: app/models/PrliLink.php:575
554
- msgid ""
555
- "Pretty Link slugs must not contain question marks, ampersands or number "
556
- "signs."
557
  msgstr ""
558
 
559
  #: app/models/PrliLink.php:579
@@ -561,11 +546,7 @@ msgid "Pretty Link slugs must not end with a slash (\"/\")"
561
  msgstr ""
562
 
563
  #: app/models/PrliLink.php:584
564
- msgid ""
565
- "This Pretty Link Slug is already taken. Check to make sure it isn't being "
566
- "used by another pretty link, post, page, category or tag slug. If none of "
567
- "these are true then check to see that this slug isn't the name of a file in "
568
- "the root folder of your wordpress install."
569
  msgstr ""
570
 
571
  #: app/models/PrliUtils.php:93
@@ -581,9 +562,7 @@ msgid "Rate Pretty Link"
581
  msgstr ""
582
 
583
  #: app/views/admin/popups/rating.php:7
584
- msgid ""
585
- "If you enjoy using Pretty Link would you mind taking a moment to rate it on "
586
- "WordPress.org? It won't take more than a minute."
587
  msgstr ""
588
 
589
  #: app/views/admin/popups/rating.php:8
@@ -642,9 +621,7 @@ msgstr ""
642
 
643
  #: app/views/admin/popups/upgrade.php:17 app/views/admin/update/license.php:45
644
  #: app/views/links/form.php:233
645
- msgid ""
646
- "Plus, upgrading is fast, easy and won't disrupt any of your existing links "
647
- "or data. And there's even a 14 day money back guarantee."
648
  msgstr ""
649
 
650
  #: app/views/admin/popups/upgrade.php:18 app/views/admin/update/license.php:47
@@ -666,32 +643,23 @@ msgid "Pretty Link Pro isn't able to get critical automatic updates"
666
  msgstr ""
667
 
668
  #: app/views/admin/update/activation_warning.php:8
669
- msgid ""
670
- "It looks like you used to have Pretty Link Pro activated with a username and "
671
- "password but now you need a license key to activate it."
672
  msgstr ""
673
 
674
  #: app/views/admin/update/activation_warning.php:9
675
- msgid ""
676
- "You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s"
677
  msgstr ""
678
 
679
  #: app/views/admin/update/activation_warning.php:10
680
- msgid ""
681
- "After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro"
682
- "\" admin page,%2$s you'll start getting updates again."
683
  msgstr ""
684
 
685
  #: app/views/admin/update/activation_warning.php:15
686
- msgid ""
687
- "You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to "
688
- "enable automatic updates today."
689
  msgstr ""
690
 
691
  #: app/views/admin/update/activation_warning.php:16
692
- msgid ""
693
- "After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro"
694
- "\" admin page,%2$s you'll start getting automatic updates."
695
  msgstr ""
696
 
697
  #: app/views/admin/update/addon_popup.php:4
@@ -699,34 +667,23 @@ msgid "ACTION REQUIRED"
699
  msgstr ""
700
 
701
  #: app/views/admin/update/addon_popup.php:5
702
- msgid ""
703
- "The %s features in your Pretty Link options have been moved from Pretty Link "
704
- "into a separate plugin."
705
  msgstr ""
706
 
707
  #: app/views/admin/update/addon_popup.php:6
708
- msgid ""
709
- "Why you ask? Well, it's to streamline and increase the performance of Pretty "
710
- "Link for you."
711
  msgstr ""
712
 
713
  #: app/views/admin/update/addon_popup.php:9
714
- msgid ""
715
- "And good for you, it looks like you've already got the %1$s Add-on "
716
- "installed. Just click the \"Activate %2$s Add-on\" button below and you'll "
717
- "get all these features back now."
718
  msgstr ""
719
 
720
  #: app/views/admin/update/addon_popup.php:11
721
- msgid ""
722
- "Luckily it's easy to get these features back now. Just click the \"Install "
723
- "%s Add-on\" button below."
724
  msgstr ""
725
 
726
  #: app/views/admin/update/addon_popup.php:12
727
- msgid ""
728
- "If you have problems with the auto-install please refer to %1$sthe user "
729
- "manual%2$s for manual install instructions."
730
  msgstr ""
731
 
732
  #: app/views/admin/update/addon_popup.php:18
@@ -774,9 +731,7 @@ msgid "Installed & Inactive"
774
  msgstr ""
775
 
776
  #: app/views/admin/update/edge_updates.php:4
777
- msgid ""
778
- "Include Pretty Link Pro edge (development) releases in automatic updates "
779
- "(not recommended for production websites)"
780
  msgstr ""
781
 
782
  #: app/views/admin/update/edge_updates.php:4
@@ -788,10 +743,7 @@ msgid "Pretty Link Pro License"
788
  msgstr ""
789
 
790
  #: app/views/admin/update/license.php:7
791
- msgid ""
792
- "You must have a License Key to enable automatic updates for Pretty Link Pro. "
793
- "If you don't have a License please go to %1$s to get one. If you do have a "
794
- "license you can login at %2$s to manage your licenses and site activations."
795
  msgstr ""
796
 
797
  #: app/views/admin/update/license.php:13
@@ -803,9 +755,7 @@ msgid "Activate License Key on %s"
803
  msgstr ""
804
 
805
  #: app/views/admin/update/license.php:30 app/views/links/form.php:221
806
- msgid ""
807
- "It looks like you haven't %1$supgraded to Pretty Link Pro%2$s yet. Here are "
808
- "just a few things you could be doing with pro:"
809
  msgstr ""
810
 
811
  #: app/views/admin/update/license.php:49 app/views/links/form.php:237
@@ -837,9 +787,7 @@ msgid "Activations:"
837
  msgstr ""
838
 
839
  #: app/views/admin/update/license.php:72
840
- msgid ""
841
- "Are you sure? Pretty Link Pro will not be functional on %s if this License "
842
- "Key is deactivated."
843
  msgstr ""
844
 
845
  #: app/views/admin/update/license.php:72
@@ -1027,9 +975,7 @@ msgid "Current Group"
1027
  msgstr ""
1028
 
1029
  #: app/views/groups/edit.php:48 app/views/groups/new.php:52
1030
- msgid ""
1031
- "Select some links for this group. <strong>Note: each link can only be in one "
1032
- "group at a time.</strong>"
1033
  msgstr ""
1034
 
1035
  #: app/views/groups/edit.php:54 app/views/links/edit.php:16
@@ -1098,10 +1044,7 @@ msgid "This is the method of redirection for your link."
1098
  msgstr ""
1099
 
1100
  #: app/views/links/form.php:24
1101
- msgid ""
1102
- "Make your life easier by upgrading to %1$sPretty Link Pro%2$s -- get more "
1103
- "redirection types, speed, automations and <b>results from your links</b> by "
1104
- "%1$sgoing pro today!%2$s"
1105
  msgstr ""
1106
 
1107
  #: app/views/links/form.php:31
@@ -1122,9 +1065,7 @@ msgid "Pretty Link*"
1122
  msgstr ""
1123
 
1124
  #: app/views/links/form.php:48
1125
- msgid ""
1126
- "This is how your pretty link will appear. You can edit the Pretty Link slug "
1127
- "here."
1128
  msgstr ""
1129
 
1130
  #: app/views/links/form.php:57 app/views/links/form.php:60
@@ -1132,9 +1073,7 @@ msgid "Title"
1132
  msgstr ""
1133
 
1134
  #: app/views/links/form.php:61
1135
- msgid ""
1136
- "Leave this blank and Pretty Link will attempt to detect the title from the "
1137
- "target url. Alternatively you can enter a custom title here."
1138
  msgstr ""
1139
 
1140
  #: app/views/links/form.php:70 app/views/links/form.php:73
@@ -1142,10 +1081,7 @@ msgid "Notes"
1142
  msgstr ""
1143
 
1144
  #: app/views/links/form.php:74
1145
- msgid ""
1146
- "This is a field where you can enter notes about a particular link. This "
1147
- "notes field is mainly for your own link management needs. It isn't currently "
1148
- "used anywhere on the front end."
1149
  msgstr ""
1150
 
1151
  #: app/views/links/form.php:84
@@ -1218,22 +1154,15 @@ msgid "Google Analytics Tracking"
1218
  msgstr ""
1219
 
1220
  #: app/views/links/form.php:170
1221
- msgid ""
1222
- "Requires the Google Analyticator, Google Analytics by MonsterInsights "
1223
- "(formerly Yoast) or Google Analytics Plugin installed and configured for "
1224
- "this to work."
1225
  msgstr ""
1226
 
1227
  #: app/views/links/form.php:180
1228
- msgid ""
1229
- "It appears that <strong>%s</strong> is currently installed. Pretty Link will "
1230
- "attempt to use its settings to track this link."
1231
  msgstr ""
1232
 
1233
  #: app/views/links/form.php:185
1234
- msgid ""
1235
- "No Google Analytics Plugin is currently installed. Pretty Link cannot track "
1236
- "links using Google Analytics until one is."
1237
  msgstr ""
1238
 
1239
  #: app/views/links/form.php:198
@@ -1249,9 +1178,7 @@ msgid "Add Pretty Link"
1249
  msgstr ""
1250
 
1251
  #: app/views/links/list.php:19
1252
- msgid ""
1253
- "WordPress Must be Configured:</strong> Pretty Link won't work until you "
1254
- "select a Permalink Structure other than 'Default'"
1255
  msgstr ""
1256
 
1257
  #: app/views/links/list.php:19 app/views/options/form.php:12
@@ -1315,9 +1242,7 @@ msgid "WordPress Must be Configured:"
1315
  msgstr ""
1316
 
1317
  #: app/views/options/form.php:12
1318
- msgid ""
1319
- "Pretty Link won't work until you select a Permalink Structure other than "
1320
- "'Default'"
1321
  msgstr ""
1322
 
1323
  #: app/views/options/form.php:37
@@ -1337,8 +1262,7 @@ msgid "Default Link Options"
1337
  msgstr ""
1338
 
1339
  #: app/views/options/form.php:61
1340
- msgid ""
1341
- "Select the type of redirection you want your newly created links to have."
1342
  msgstr ""
1343
 
1344
  #: app/views/options/form.php:70 app/views/options/form.php:72
@@ -1370,14 +1294,7 @@ msgid "Use fix for index.php Permalink Structure"
1370
  msgstr ""
1371
 
1372
  #: app/views/options/form.php:97
1373
- msgid ""
1374
- "This option should ONLY be checked if you have elements in your permalink "
1375
- "structure that must be present in any link on your site. For example, some "
1376
- "WordPress installs don't have the benefit of full rewrite capabilities and "
1377
- "in this case you'd need an index.php included in each link (http://example."
1378
- "com/index.php/mycoolslug instead of http://example.com/mycoolslug). If this "
1379
- "is the case for you then check this option but the vast majority of users "
1380
- "will want to keep this unchecked."
1381
  msgstr ""
1382
 
1383
  #: app/views/options/form.php:110
@@ -1389,9 +1306,7 @@ msgid "Tracking Style"
1389
  msgstr ""
1390
 
1391
  #: app/views/options/form.php:118
1392
- msgid ""
1393
- "Changing your tracking style can affect the accuracy of your existing "
1394
- "statistics. Extended mode must be used for Conversion reporting."
1395
  msgstr ""
1396
 
1397
  #: app/views/options/form.php:122
@@ -1415,11 +1330,7 @@ msgid "Excluded IP Addresses"
1415
  msgstr ""
1416
 
1417
  #: app/views/options/form.php:133
1418
- msgid ""
1419
- "Enter IP Addresses or IP Ranges you want to exclude from your Click data and "
1420
- "Stats. Each IP Address should be separated by commas. Example: 192.168.0.1, "
1421
- "192.168.2.1, 192.168.3.4 or 192.168.*.*<br/><br/><strong>FYI, your current "
1422
- "IP address is %s."
1423
  msgstr ""
1424
 
1425
  #: app/views/options/form.php:143
@@ -1431,10 +1342,7 @@ msgid "Automatically Trim Clicks"
1431
  msgstr ""
1432
 
1433
  #: app/views/options/form.php:146
1434
- msgid ""
1435
- "Will automatically delete all hits older than 90 days. We strongly recommend "
1436
- "doing this to keep your database performance up. This will permanently "
1437
- "delete this click data, and is not undo-able. "
1438
  msgstr ""
1439
 
1440
  #: app/views/options/form.php:155 app/views/options/form.php:157
@@ -1442,10 +1350,7 @@ msgid "Filter Robots"
1442
  msgstr ""
1443
 
1444
  #: app/views/options/form.php:158
1445
- msgid ""
1446
- "Filter known Robots and unidentifiable browser clients from your click data, "
1447
- "stats and reports. Works best if Tracking Style above is set to 'Extended "
1448
- "Tracking'."
1449
  msgstr ""
1450
 
1451
  #: app/views/options/form.php:174
@@ -1457,11 +1362,7 @@ msgid "Whiltelist IP Addresses"
1457
  msgstr ""
1458
 
1459
  #: app/views/options/form.php:177
1460
- msgid ""
1461
- "Enter IP Addresses or IP Ranges you want to always include in your Click "
1462
- "data and Stats even if they are flagged as robots. Each IP Address should be "
1463
- "separated by commas. Example: 192.168.0.1, 192.168.2.1, 192.168.3.4 or "
1464
- "192.168.*.*"
1465
  msgstr ""
1466
 
1467
  #: app/views/shared/link-table-nav.php:17
@@ -1614,11 +1515,7 @@ msgid "Install Pretty Link Bookmarklet"
1614
  msgstr ""
1615
 
1616
  #: app/views/tools/form.php:29
1617
- msgid ""
1618
- "Just drag this \"Get PrettyLink\" link to your toolbar to install the "
1619
- "bookmarklet. As you browse the web, you can just click this bookmarklet to "
1620
- "create a pretty link from the current url you're looking at. <a href="
1621
- "\"http://blairwilliams.com/pretty-link-bookmarklet/\">(more help)</a>"
1622
  msgstr ""
1623
 
1624
  #: app/views/tools/form.php:31
@@ -1626,9 +1523,7 @@ msgid "Show iPhone Bookmarklet Instructions"
1626
  msgstr ""
1627
 
1628
  #: app/views/tools/form.php:35
1629
- msgid ""
1630
- "<strong>Note:</strong> iPhone users can install this bookmarklet in their "
1631
- "Safari to create Pretty Links with the following steps:"
1632
  msgstr ""
1633
 
1634
  #: app/views/tools/form.php:37
@@ -1640,16 +1535,11 @@ msgid "Tap the + button at the bottom of the screen"
1640
  msgstr ""
1641
 
1642
  #: app/views/tools/form.php:39
1643
- msgid ""
1644
- "Choose to share the page, then click on \"Bookmark\". We recommend saving it "
1645
- "in your Favorites folder. Rename your bookmark to \"Get PrettyLink\" (or "
1646
- "whatever you want) and then \"Save\""
1647
  msgstr ""
1648
 
1649
  #: app/views/tools/form.php:40
1650
- msgid ""
1651
- "Navigate through your Bookmarks until you find the new bookmark and click "
1652
- "\"Edit\""
1653
  msgstr ""
1654
 
1655
  #: app/views/tools/form.php:41
@@ -1665,25 +1555,15 @@ msgid "To save the changes hit \"Bookmarks\" and <strong>you're done!"
1665
  msgstr ""
1666
 
1667
  #: app/views/tools/form.php:43
1668
- msgid ""
1669
- "Now when you find a page you want to save off as a Pretty Link, just click "
1670
- "the \"Bookmarks\" icon at the bottom of the screen and select your \"Get "
1671
- "PrettyLink\" bookmarklet."
1672
  msgstr ""
1673
 
1674
  #: app/views/tools/form.php:50
1675
- msgid ""
1676
- "Pretty Link is already automatically trimming Clicks older than 90 days. "
1677
- "Although not necessary, you can still use the buttons below to force click "
1678
- "trimming."
1679
  msgstr ""
1680
 
1681
  #: app/views/tools/form.php:53
1682
- msgid ""
1683
- "***WARNING*** If you click OK you will delete ALL of the Click data that is "
1684
- "older than 30 days. Your data will be gone forever -- no way to retreive it. "
1685
- "Do not click OK unless you are absolutely sure you want to delete this data "
1686
- "because there is no going back!"
1687
  msgstr ""
1688
 
1689
  #: app/views/tools/form.php:53
@@ -1695,16 +1575,11 @@ msgid "Clear clicks 30 days or older"
1695
  msgstr ""
1696
 
1697
  #: app/views/tools/form.php:56
1698
- msgid ""
1699
- "This will clear all clicks in your database that are older than 30 days."
1700
  msgstr ""
1701
 
1702
  #: app/views/tools/form.php:58
1703
- msgid ""
1704
- "***WARNING*** If you click OK you will delete ALL of the Click data that is "
1705
- "older than 90 days. Your data will be gone forever -- no way to retreive it. "
1706
- "Do not click OK unless you are absolutely sure you want to delete this data "
1707
- "because there is no going back!"
1708
  msgstr ""
1709
 
1710
  #: app/views/tools/form.php:58
@@ -1716,16 +1591,11 @@ msgid "Clear clicks 90 days or older"
1716
  msgstr ""
1717
 
1718
  #: app/views/tools/form.php:61
1719
- msgid ""
1720
- "This will clear all clicks in your database that are older than 90 days."
1721
  msgstr ""
1722
 
1723
  #: app/views/tools/form.php:65
1724
- msgid ""
1725
- "***WARNING*** If you click OK you will delete ALL of the Click data in your "
1726
- "Database. Your data will be gone forever -- no way to retreive it. Do not "
1727
- "click OK unless you are absolutely sure you want to delete all your data "
1728
- "because there is no going back!"
1729
  msgstr ""
1730
 
1731
  #: app/views/tools/form.php:65
@@ -1737,9 +1607,7 @@ msgid "Clear all clicks"
1737
  msgstr ""
1738
 
1739
  #: app/views/tools/form.php:68
1740
- msgid ""
1741
- "Seriously, only click this link if you want to delete all the Click data in "
1742
- "your database."
1743
  msgstr ""
1744
 
1745
  #: pro/app/controllers/PlpAppController.php:165
@@ -1768,9 +1636,7 @@ msgid "Keywords"
1768
  msgstr ""
1769
 
1770
  #: pro/app/controllers/PlpLinksController.php:213
1771
- msgid ""
1772
- "Your URL Replacements must be formatted as a comma separated list of "
1773
- "properly formatted URLs (http[s]://example.com/whatever)"
1774
  msgstr ""
1775
 
1776
  #: pro/app/controllers/PlpLinksController.php:224
@@ -1871,8 +1737,7 @@ msgid "This link is set to expire after the date %s"
1871
  msgstr ""
1872
 
1873
  #: pro/app/controllers/PlpLinksController.php:846
1874
- msgid ""
1875
- "This link expired after %d clicks and will now cause a 404 error when visited"
1876
  msgstr ""
1877
 
1878
  #: pro/app/controllers/PlpLinksController.php:849
@@ -1896,16 +1761,11 @@ msgid "This link has additional Technology Dependent Conditional Target URLs"
1896
  msgstr ""
1897
 
1898
  #: pro/app/controllers/PlpLinksController.php:872
1899
- msgid ""
1900
- "A Time Period Redirect is currently active for this link. When visited it "
1901
- "will currently redirect to %s rather than the Target URL unless the link is "
1902
- "expired."
1903
  msgstr ""
1904
 
1905
  #: pro/app/controllers/PlpLinksController.php:876
1906
- msgid ""
1907
- "Time Period Redirects have been setup for this link but the current time is "
1908
- "not within any of them currently."
1909
  msgstr ""
1910
 
1911
  #: pro/app/controllers/PlpOptionsController.php:102
@@ -1917,15 +1777,11 @@ msgid "Keyword Links Per Page is required"
1917
  msgstr ""
1918
 
1919
  #: pro/app/controllers/PlpOptionsController.php:111
1920
- msgid ""
1921
- "You need to enter a valid Pretty Link Base URL now that you have selected "
1922
- "\"Use an alternate base url for your Pretty Links\""
1923
  msgstr ""
1924
 
1925
  #: pro/app/controllers/PlpOptionsController.php:116
1926
- msgid ""
1927
- "You need to enter a valid Public Link Display URL now that you have selected "
1928
- "\"Use a custom public link display page\""
1929
  msgstr ""
1930
 
1931
  #: pro/app/controllers/PlpOptionsController.php:122
@@ -2068,9 +1924,7 @@ msgid "visit"
2068
  msgstr ""
2069
 
2070
  #: pro/app/helpers/PlpPostsHelper.php:76
2071
- msgid ""
2072
- "A Pretty Link hasn't been generated for this entry yet. Click \"Update Post"
2073
- "\" to generate."
2074
  msgstr ""
2075
 
2076
  #: pro/app/models/PlpOptions.php:99
@@ -2185,12 +2039,7 @@ msgid "Import Pretty Links"
2185
  msgstr ""
2186
 
2187
  #: pro/app/views/import-export/form.php:26
2188
- msgid ""
2189
- "There are two ways to import a file.<br/><br/>1) Importing to update "
2190
- "existing links and<br/><br/>2) Importing to generate new links. When "
2191
- "Importing to generate new links, you must delete the \"id\" column from the "
2192
- "CSV before importing. If the \"id\" column is present, Pretty Link Pro will "
2193
- "attempt to update existing links."
2194
  msgstr ""
2195
 
2196
  #: pro/app/views/import-export/form.php:36
@@ -2202,9 +2051,7 @@ msgid "Links Import File"
2202
  msgstr ""
2203
 
2204
  #: pro/app/views/import-export/form.php:40
2205
- msgid ""
2206
- "Select a file that has been formatted as a Pretty Link CSV import file and "
2207
- "click \"Import\""
2208
  msgstr ""
2209
 
2210
  #: pro/app/views/import-export/form.php:48
@@ -2272,11 +2119,7 @@ msgid "Expiration Type"
2272
  msgstr ""
2273
 
2274
  #: pro/app/views/links/form.php:30
2275
- msgid ""
2276
- "Select the type of expiration you want for this link.<br/><br/><b>Date</b> "
2277
- "Select this option if you'd like to expire your link after a certain date."
2278
- "<br/><br/><b>Clicks</b>: Select this option to expire this link after it has "
2279
- "been clicked a specific number of times."
2280
  msgstr ""
2281
 
2282
  #: pro/app/views/links/form.php:51
@@ -2284,11 +2127,7 @@ msgid "Number of Clicks"
2284
  msgstr ""
2285
 
2286
  #: pro/app/views/links/form.php:52
2287
- msgid ""
2288
- "Enter the number of times this link can be clicked before it expires.<br/"
2289
- "><br/><b>Note: Expirations based on clicks wouldn't work properly if you had "
2290
- "tracking turned off for this link so as long as this is set to Clicks, "
2291
- "Pretty Link will ensure tracking is turned on for this link as well.</b>"
2292
  msgstr ""
2293
 
2294
  #: pro/app/views/links/form.php:71
@@ -2296,9 +2135,7 @@ msgid "Expiration Date"
2296
  msgstr ""
2297
 
2298
  #: pro/app/views/links/form.php:72
2299
- msgid ""
2300
- "Enter a date here in the format YYYY-MM-DD to set when this link should "
2301
- "expire."
2302
  msgstr ""
2303
 
2304
  #: pro/app/views/links/form.php:88
@@ -2310,11 +2147,7 @@ msgid "Redirect to URL when Expired"
2310
  msgstr ""
2311
 
2312
  #: pro/app/views/links/form.php:92
2313
- msgid ""
2314
- "When this link expires, do you want to redirect to a specific URL. You can "
2315
- "use this to redirect to a page you've setup to indicate that the link is "
2316
- "expired.<br/><br/><b>Note: If this is not set the link will throw a 404 "
2317
- "error when expired</b>."
2318
  msgstr ""
2319
 
2320
  #: pro/app/views/links/form.php:107 pro/app/views/options/form.php:165
@@ -2326,9 +2159,7 @@ msgid "Expired URL"
2326
  msgstr ""
2327
 
2328
  #: pro/app/views/links/form.php:111
2329
- msgid ""
2330
- "This is the URL that this link will redirect to after the expiration date "
2331
- "above."
2332
  msgstr ""
2333
 
2334
  #: pro/app/views/links/form.php:131
@@ -2336,9 +2167,7 @@ msgid "Auto-Replace Keywords"
2336
  msgstr ""
2337
 
2338
  #: pro/app/views/links/form.php:132
2339
- msgid ""
2340
- "Enter a comma separated list of keywords / keyword phrases that you'd like "
2341
- "to replace with this link in your Posts &amp; Pages."
2342
  msgstr ""
2343
 
2344
  #: pro/app/views/links/form.php:140
@@ -2350,11 +2179,7 @@ msgid "Auto-Replace URLs"
2350
  msgstr ""
2351
 
2352
  #: pro/app/views/links/form.php:144
2353
- msgid ""
2354
- "Enter a comma separated list of the URLs that you'd like to replace with "
2355
- "this Pretty Link in your Posts &amp; Pages. These must be formatted as URLs "
2356
- "for example: <code>http://example.com</code> or <code>http://example.com?"
2357
- "product_id=53</code>"
2358
  msgstr ""
2359
 
2360
  #: pro/app/views/links/form.php:159 pro/app/views/links/form.php:162
@@ -2362,12 +2187,7 @@ msgid "Head Scripts"
2362
  msgstr ""
2363
 
2364
  #: pro/app/views/links/form.php:163
2365
- msgid ""
2366
- "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or "
2367
- "any other kind of tracking script to the HTML head for this pretty link.<br/"
2368
- "><br/>These scripts will be in addition to any global one's you've defined "
2369
- "in the options.<br/><br/><b>NOTE:</b> This does NOT work with 301, 302 and "
2370
- "307 type redirects."
2371
  msgstr ""
2372
 
2373
  #: pro/app/views/links/form.php:176
@@ -2379,9 +2199,7 @@ msgid "Dynamic Redirection Options"
2379
  msgstr ""
2380
 
2381
  #: pro/app/views/links/form.php:180
2382
- msgid ""
2383
- "These powerful options are available to give you dynamic control over "
2384
- "redirection for this pretty link."
2385
  msgstr ""
2386
 
2387
  #: pro/app/views/links/form.php:187
@@ -2401,10 +2219,7 @@ msgid "Target URL Rotations"
2401
  msgstr ""
2402
 
2403
  #: pro/app/views/links/form.php:203
2404
- msgid ""
2405
- "Enter the Target URLs that you'd like to rotate through when this Pretty "
2406
- "Link is Clicked. These must be formatted as URLs example: <code>http://"
2407
- "example.com</code> or <code>http://example.com?product_id=53</code>"
2408
  msgstr ""
2409
 
2410
  #: pro/app/views/links/form.php:208
@@ -2424,10 +2239,7 @@ msgid "Split Test This Link"
2424
  msgstr ""
2425
 
2426
  #: pro/app/views/links/form.php:230
2427
- msgid ""
2428
- "Split testing will enable you to track the effectiveness of several links "
2429
- "against each other. This works best when you have multiple link rotation "
2430
- "URLs entered."
2431
  msgstr ""
2432
 
2433
  #: pro/app/views/links/form.php:246 pro/app/views/reports/list.php:31
@@ -2452,9 +2264,7 @@ msgid "Geographic Redirects"
2452
  msgstr ""
2453
 
2454
  #: pro/app/views/links/form.php:285
2455
- msgid ""
2456
- "This will enable you to setup specific target urls that this pretty link "
2457
- "will redirect to based on the country of the person visiting the url."
2458
  msgstr ""
2459
 
2460
  #: pro/app/views/links/form.php:290 pro/app/views/links/form.php:304
@@ -2467,9 +2277,7 @@ msgid "Technology Redirects"
2467
  msgstr ""
2468
 
2469
  #: pro/app/views/links/form.php:299
2470
- msgid ""
2471
- "This will allow you to redirect based on your visitor's device, operating "
2472
- "system and/or browser"
2473
  msgstr ""
2474
 
2475
  #: pro/app/views/links/form.php:309 pro/app/views/links/form.php:312
@@ -2477,11 +2285,7 @@ msgid "Time Period Redirects"
2477
  msgstr ""
2478
 
2479
  #: pro/app/views/links/form.php:313
2480
- msgid ""
2481
- "This will allow you to redirect based on the time period in which your "
2482
- "visitor visits this link.<br/><br/><b>Note: If your visitor doesn't visit "
2483
- "the link during any of the specified time periods set here, they'll simply "
2484
- "be redirected to the main target url.</b>"
2485
  msgstr ""
2486
 
2487
  #: pro/app/views/links/geo_row.php:12
@@ -2493,12 +2297,7 @@ msgid "Technology Redirection Countries"
2493
  msgstr ""
2494
 
2495
  #: pro/app/views/links/geo_row.php:16
2496
- msgid ""
2497
- "This is a comma-separated list of countries that this redirect will match "
2498
- "on. Just start typing a country's name and an autocomplete dropdown will "
2499
- "appear to select from. Once a country is selected, feel free to start typing "
2500
- "the name of another country. You can add as many as you'd like this redirect "
2501
- "to match on"
2502
  msgstr ""
2503
 
2504
  #: pro/app/views/links/geo_row.php:25 pro/app/views/links/tech_row.php:79
@@ -2511,9 +2310,7 @@ msgid "Geographic Redirection URL"
2511
  msgstr ""
2512
 
2513
  #: pro/app/views/links/geo_row.php:29
2514
- msgid ""
2515
- "This is the URL that this Pretty Link will redirect to if the visitor's "
2516
- "country match the settings here."
2517
  msgstr ""
2518
 
2519
  #: pro/app/views/links/geo_row.php:38 pro/app/views/links/tech_row.php:92
@@ -2535,15 +2332,7 @@ msgid "Base Slug Prefix"
2535
  msgstr ""
2536
 
2537
  #: pro/app/views/links/link-options.php:6
2538
- msgid ""
2539
- "Use this to prefix all newly generated pretty links with a directory of your "
2540
- "choice. For example set to <b>out</b> to make your pretty links look like "
2541
- "http://site.com/<b>out</b>/xyz. Changing this option will NOT affect "
2542
- "existing pretty links. If you do not wish to use a directory prefix, leave "
2543
- "this text field blank. Whatever you type here will be sanitized and modified "
2544
- "to ensure it is URL-safe. So <b>Hello World</b> might get changed to "
2545
- "something like <b>hello-world</b> instead. Lowercase letters, numbers, "
2546
- "dashes, and underscores are allowed."
2547
  msgstr ""
2548
 
2549
  #: pro/app/views/links/link-options.php:16
@@ -2552,9 +2341,7 @@ msgid "Slug Character Count"
2552
  msgstr ""
2553
 
2554
  #: pro/app/views/links/link-options.php:19
2555
- msgid ""
2556
- "The number of characters to use when auto-generating a random slug for "
2557
- "pretty links. The default is 4. You cannot use less than 2."
2558
  msgstr ""
2559
 
2560
  #: pro/app/views/links/link-options.php:29
@@ -2563,10 +2350,7 @@ msgid "Enable Google Analytics"
2563
  msgstr ""
2564
 
2565
  #: pro/app/views/links/link-options.php:31
2566
- msgid ""
2567
- "Requires Google Analyticator, Google Analytics by MonsterInsights (formerly "
2568
- "Yoast), or the Google Analytics Plugin to be installed and configured on "
2569
- "your site."
2570
  msgstr ""
2571
 
2572
  #: pro/app/views/links/link-options.php:41
@@ -2578,9 +2362,7 @@ msgid "Generate QR Codes"
2578
  msgstr ""
2579
 
2580
  #: pro/app/views/links/link-options.php:44
2581
- msgid ""
2582
- "This will enable a link in your pretty link admin that will allow you to "
2583
- "automatically download a QR Code for each individual Pretty Link."
2584
  msgstr ""
2585
 
2586
  #: pro/app/views/links/link-options.php:54
@@ -2589,11 +2371,7 @@ msgid "Global Head Scripts"
2589
  msgstr ""
2590
 
2591
  #: pro/app/views/links/link-options.php:57
2592
- msgid ""
2593
- "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or "
2594
- "any other kind of tracking script to the HTML head.<br/><br/>What you enter "
2595
- "in this box will be applied to all supported pretty links.<br/><br/><b>NOTE:"
2596
- "</b> This does NOT work with 301, 302 and 307 type redirects."
2597
  msgstr ""
2598
 
2599
  #: pro/app/views/links/prettybar.php:174
@@ -2613,11 +2391,7 @@ msgid "Technology Redirection Device"
2613
  msgstr ""
2614
 
2615
  #: pro/app/views/links/tech_row.php:18
2616
- msgid ""
2617
- "<b>Desktop</b> will match on any conventional laptop or desktop computer.<br/"
2618
- "><br/><b>Mobile</b> will match on any phone, tablet or other portable device."
2619
- "<br/><br/><b>Phone</b> will match on any phone or similarly small device.<br/"
2620
- "><br/><b>Tablet</b> will match on any tablet sized device."
2621
  msgstr ""
2622
 
2623
  #: pro/app/views/links/tech_row.php:23 pro/app/views/links/tech_row.php:42
@@ -2650,9 +2424,7 @@ msgid "Technology Redirection OS"
2650
  msgstr ""
2651
 
2652
  #: pro/app/views/links/tech_row.php:37
2653
- msgid ""
2654
- "Use this dropdown to select which Operating System this redirect will match "
2655
- "on."
2656
  msgstr ""
2657
 
2658
  #: pro/app/views/links/tech_row.php:43 pro/app/views/links/tech_row.php:64
@@ -2732,9 +2504,7 @@ msgid "Technology Redirection URL"
2732
  msgstr ""
2733
 
2734
  #: pro/app/views/links/tech_row.php:83
2735
- msgid ""
2736
- "This is the URL that this Pretty Link will redirect to if the visitor's "
2737
- "device, os and browser match the settings here."
2738
  msgstr ""
2739
 
2740
  #: pro/app/views/links/time_row.php:13
@@ -2746,8 +2516,7 @@ msgid "Start of Time Period"
2746
  msgstr ""
2747
 
2748
  #: pro/app/views/links/time_row.php:17
2749
- msgid ""
2750
- "This is where you'll enter the beginning of the time period for this redirect"
2751
  msgstr ""
2752
 
2753
  #: pro/app/views/links/time_row.php:26
@@ -2767,9 +2536,7 @@ msgid "Time Period Redirect URL"
2767
  msgstr ""
2768
 
2769
  #: pro/app/views/links/time_row.php:43
2770
- msgid ""
2771
- "This is the URL that this Pretty Link will redirect to when the visitor "
2772
- "visits the link in the associated time period."
2773
  msgstr ""
2774
 
2775
  #: pro/app/views/options/autocreate.php:7
@@ -2801,9 +2568,7 @@ msgid "Show Social Buttons on %s"
2801
  msgstr ""
2802
 
2803
  #: pro/app/views/options/autocreate.php:51
2804
- msgid ""
2805
- "If this button is checked then you'll have the ability to include a social "
2806
- "buttons bar on your %s."
2807
  msgstr ""
2808
 
2809
  #: pro/app/views/options/form.php:4
@@ -2819,10 +2584,7 @@ msgid "Enable Keyword and URL Auto Replacement"
2819
  msgstr ""
2820
 
2821
  #: pro/app/views/options/form.php:16
2822
- msgid ""
2823
- "If checked, this will enable you to automatically replace keywords and/or "
2824
- "URLs on your blog with pretty links. You will specify the specific keywords "
2825
- "and urls from your Pretty Link edit page."
2826
  msgstr ""
2827
 
2828
  #: pro/app/views/options/form.php:34
@@ -2834,9 +2596,7 @@ msgid "Set Keyword Replacement Thresholds"
2834
  msgstr ""
2835
 
2836
  #: pro/app/views/options/form.php:37
2837
- msgid ""
2838
- "Don't want to have too many keyword replacements per page? Select to set "
2839
- "some reasonable keyword replacement thresholds."
2840
  msgstr ""
2841
 
2842
  #: pro/app/views/options/form.php:54
@@ -2848,9 +2608,7 @@ msgid "Set Maximum Keywords per Page"
2848
  msgstr ""
2849
 
2850
  #: pro/app/views/options/form.php:57
2851
- msgid ""
2852
- "Maximum number of unique keyword / keyphrases you can replace with Pretty "
2853
- "Links per page."
2854
  msgstr ""
2855
 
2856
  #: pro/app/views/options/form.php:68
@@ -2874,10 +2632,7 @@ msgid "Open Keyword Replacement Links in New Window"
2874
  msgstr ""
2875
 
2876
  #: pro/app/views/options/form.php:90
2877
- msgid ""
2878
- "Ensure that these keyword replacement links are opened in a separate window. "
2879
- "<strong>Note:</strong> This does not apply to url replacements--only keyword "
2880
- "replacements."
2881
  msgstr ""
2882
 
2883
  #: pro/app/views/options/form.php:101
@@ -2889,10 +2644,7 @@ msgid "Add 'nofollow' attribute to all Keyword Pretty Links"
2889
  msgstr ""
2890
 
2891
  #: pro/app/views/options/form.php:104
2892
- msgid ""
2893
- "This adds the html <code>NOFOLLOW</code> attribute to all keyword "
2894
- "replacement links. <strong>Note:</strong> This does not apply to url "
2895
- "replacements--only keyword replacements."
2896
  msgstr ""
2897
 
2898
  #: pro/app/views/options/form.php:115
@@ -2904,10 +2656,7 @@ msgid "Add custom CSS to your keyword replacement links"
2904
  msgstr ""
2905
 
2906
  #: pro/app/views/options/form.php:118
2907
- msgid ""
2908
- "Add some custom formatting to your keyword pretty link replacements. "
2909
- "<strong>Note:</strong> This does not apply to url replacements--only keyword "
2910
- "replacements."
2911
  msgstr ""
2912
 
2913
  #: pro/app/views/options/form.php:129
@@ -2919,10 +2668,7 @@ msgid "Add custom hover CSS to your keyword replacement links"
2919
  msgstr ""
2920
 
2921
  #: pro/app/views/options/form.php:132
2922
- msgid ""
2923
- "Add some custom formatting to the hover attribute of your keyword pretty "
2924
- "links. <strong>Note:</strong> This does not apply to url replacements--only "
2925
- "keyword replacements."
2926
  msgstr ""
2927
 
2928
  #: pro/app/views/options/form.php:143
@@ -2934,11 +2680,7 @@ msgid "Automatically Add a Link to Disclosures"
2934
  msgstr ""
2935
 
2936
  #: pro/app/views/options/form.php:147
2937
- msgid ""
2938
- "When enabled, this will add a link to your official affiliate link "
2939
- "disclosure page to any page, post or custom post type that have any keyword "
2940
- "or URL replacements. You'll also be able to customize the URL and position "
2941
- "of the disclosure link."
2942
  msgstr ""
2943
 
2944
  #: pro/app/views/options/form.php:168
@@ -2946,9 +2688,7 @@ msgid "Disclosures Link URL"
2946
  msgstr ""
2947
 
2948
  #: pro/app/views/options/form.php:169
2949
- msgid ""
2950
- "This is the URL of the page that contains your official affiliate link "
2951
- "disclosures. This URL will be used in the link that will be generated."
2952
  msgstr ""
2953
 
2954
  #: pro/app/views/options/form.php:180
@@ -2960,9 +2700,7 @@ msgid "Disclosures Link Text"
2960
  msgstr ""
2961
 
2962
  #: pro/app/views/options/form.php:184
2963
- msgid ""
2964
- "This is the text of the link to your disclosures. This text will be visible "
2965
- "to your visitors when the link is displayed."
2966
  msgstr ""
2967
 
2968
  #: pro/app/views/options/form.php:195
@@ -2974,9 +2712,7 @@ msgid "Disclosures Link Position"
2974
  msgstr ""
2975
 
2976
  #: pro/app/views/options/form.php:199
2977
- msgid ""
2978
- "This is the position of the link to your disclosures in relation to your "
2979
- "post content."
2980
  msgstr ""
2981
 
2982
  #: pro/app/views/options/form.php:205 pro/app/views/options/form.php:701
@@ -3000,10 +2736,7 @@ msgid "Automatically Add Affiliate Link Disclosures to Keyword Replacements"
3000
  msgstr ""
3001
 
3002
  #: pro/app/views/options/form.php:223
3003
- msgid ""
3004
- "When enabled, this will add an affiliate link disclosure next to each one of "
3005
- "your keyword replacements. <b>Note:</b> This does not apply to url "
3006
- "replacements--only keyword replacements."
3007
  msgstr ""
3008
 
3009
  #: pro/app/views/options/form.php:241
@@ -3015,9 +2748,7 @@ msgid "Keyword Link Disclosure Text"
3015
  msgstr ""
3016
 
3017
  #: pro/app/views/options/form.php:245
3018
- msgid ""
3019
- "This is the text that will be added after each keyword replacement to "
3020
- "indicate that the link is an affiliate link."
3021
  msgstr ""
3022
 
3023
  #: pro/app/views/options/form.php:261
@@ -3029,9 +2760,7 @@ msgid "Replace All non-Pretty Link URLs With Pretty Link URLs"
3029
  msgstr ""
3030
 
3031
  #: pro/app/views/options/form.php:264
3032
- msgid ""
3033
- "This feature will take each url it finds and create or use an existing "
3034
- "pretty link pointing to the url and replace it with the pretty link."
3035
  msgstr ""
3036
 
3037
  #: pro/app/views/options/form.php:281
@@ -3043,13 +2772,7 @@ msgid "Do not replace links from these domains"
3043
  msgstr ""
3044
 
3045
  #: pro/app/views/options/form.php:284
3046
- msgid ""
3047
- "Any links on your site which point to domains you define here will not be "
3048
- "replaced automatically with Pretty Links. Place one domain per line.<br/><br/"
3049
- ">You MUST enter http:// or https:// in front of the domain names and do NOT "
3050
- "include any /'s or other text after the domain name.<br/><br/>Proper entry "
3051
- "example:<br/><b>https://www.google.com</b><br/><b>http://mysite.org</b><br/"
3052
- "><br/>Improperly entered domains will be removed upon saving the Options."
3053
  msgstr ""
3054
 
3055
  #: pro/app/views/options/form.php:300
@@ -3061,9 +2784,7 @@ msgid "Replace Keywords and URLs in Comments"
3061
  msgstr ""
3062
 
3063
  #: pro/app/views/options/form.php:303
3064
- msgid ""
3065
- "This option will enable the keyword / URL replacement routine to run in "
3066
- "Comments."
3067
  msgstr ""
3068
 
3069
  #: pro/app/views/options/form.php:314
@@ -3075,15 +2796,7 @@ msgid "Replace Keywords and URLs in Feeds"
3075
  msgstr ""
3076
 
3077
  #: pro/app/views/options/form.php:317
3078
- msgid ""
3079
- "This option will enable the keyword / URL replacement routine to run in RSS "
3080
- "Feeds.<br/><strong>Note:</strong> This option can slow the load speed of "
3081
- "your RSS feed -- unless used in conjunction with a caching plugin like W3 "
3082
- "Total Cache or WP Super Cache.<br/><strong>Note #2</strong> This option will "
3083
- "only work if you have \"Full Text\" selected in your General WordPress "
3084
- "Reading settings.<br/><strong>Note #3:</strong> If this option is used along "
3085
- "with \"Replace Keywords and URLs in Comments\" then your post comment feeds "
3086
- "will have keywords replaced in them as well."
3087
  msgstr ""
3088
 
3089
  #: pro/app/views/options/form.php:328 pro/app/views/options/form.php:330
@@ -3091,13 +2804,7 @@ msgid "Index Replacements"
3091
  msgstr ""
3092
 
3093
  #: pro/app/views/options/form.php:331
3094
- msgid ""
3095
- "This feature will index all of your keyword & URL replacements to "
3096
- "dramatically improve performance.<br/><br/>If your site has a large number "
3097
- "of replacements and/or posts then this feature may increase the load on your "
3098
- "server temporarily and your replacements may not show up on your posts for a "
3099
- "day or two initially (until all posts are indexed).<br/><br/><strong>Note:</"
3100
- "strong> this feature requires the use of wp-cron."
3101
  msgstr ""
3102
 
3103
  #: pro/app/views/options/form.php:348 pro/app/views/options/form.php:350
@@ -3105,9 +2812,7 @@ msgid "Keyword Index Status"
3105
  msgstr ""
3106
 
3107
  #: pro/app/views/options/form.php:351
3108
- msgid ""
3109
- "This shows how many posts have keywords indexed for and are ready for "
3110
- "replacement."
3111
  msgstr ""
3112
 
3113
  #: pro/app/views/options/form.php:359 pro/app/views/options/form.php:382
@@ -3127,9 +2832,7 @@ msgid "URL Replacements Index Status"
3127
  msgstr ""
3128
 
3129
  #: pro/app/views/options/form.php:374
3130
- msgid ""
3131
- "This shows how many posts have url replacements indexed for and are ready "
3132
- "for replacement."
3133
  msgstr ""
3134
 
3135
  #: pro/app/views/options/form.php:402
@@ -3149,9 +2852,7 @@ msgid "Pretty Bar Image URL"
3149
  msgstr ""
3150
 
3151
  #: pro/app/views/options/form.php:432
3152
- msgid ""
3153
- "If set, this will replace the logo image on the Pretty Bar. The image that "
3154
- "this URL references should be 48x48 Pixels to fit."
3155
  msgstr ""
3156
 
3157
  #: pro/app/views/options/form.php:443
@@ -3163,10 +2864,7 @@ msgid "Pretty Bar Background Image URL"
3163
  msgstr ""
3164
 
3165
  #: pro/app/views/options/form.php:446
3166
- msgid ""
3167
- "If set, this will replace the background image on Pretty Bar. The image that "
3168
- "this URL references should be 65px tall - this image will be repeated "
3169
- "horizontally across the bar."
3170
  msgstr ""
3171
 
3172
  #: pro/app/views/options/form.php:457
@@ -3178,9 +2876,7 @@ msgid "Pretty Bar Background Color"
3178
  msgstr ""
3179
 
3180
  #: pro/app/views/options/form.php:460
3181
- msgid ""
3182
- "This will alter the background color of the Pretty Bar if you haven't "
3183
- "specified a Pretty Bar background image."
3184
  msgstr ""
3185
 
3186
  #: pro/app/views/options/form.php:471
@@ -3192,9 +2888,7 @@ msgid "Pretty Bar Text Color"
3192
  msgstr ""
3193
 
3194
  #: pro/app/views/options/form.php:474
3195
- msgid ""
3196
- "If not set, this defaults to black (RGB value <code>#000000</code>) but you "
3197
- "can change it to whatever color you like."
3198
  msgstr ""
3199
 
3200
  #: pro/app/views/options/form.php:485
@@ -3206,9 +2900,7 @@ msgid "Pretty Bar Link Color"
3206
  msgstr ""
3207
 
3208
  #: pro/app/views/options/form.php:488
3209
- msgid ""
3210
- "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
3211
- "can change it to whatever color you like."
3212
  msgstr ""
3213
 
3214
  #: pro/app/views/options/form.php:499
@@ -3220,9 +2912,7 @@ msgid "Pretty Bar Link Hover Color"
3220
  msgstr ""
3221
 
3222
  #: pro/app/views/options/form.php:502
3223
- msgid ""
3224
- "If not set, this defaults to RGB value <code>#ababab</code> but you can "
3225
- "change it to whatever color you like."
3226
  msgstr ""
3227
 
3228
  #: pro/app/views/options/form.php:513
@@ -3234,9 +2924,7 @@ msgid "Pretty Bar Visited Link Color"
3234
  msgstr ""
3235
 
3236
  #: pro/app/views/options/form.php:516
3237
- msgid ""
3238
- "If not set, this defaults to RGB value <code>#551a8b</code> but you can "
3239
- "change it to whatever color you like."
3240
  msgstr ""
3241
 
3242
  #: pro/app/views/options/form.php:527
@@ -3248,11 +2936,7 @@ msgid "Pretty Bar Title Char Limit"
3248
  msgstr ""
3249
 
3250
  #: pro/app/views/options/form.php:530
3251
- msgid ""
3252
- "If your Website has a long title then you may need to adjust this value so "
3253
- "that it will all fit on the Pretty Bar. It is recommended that you keep this "
3254
- "value to <code>30</code> characters or less so the Pretty Bar's format looks "
3255
- "good across different browsers and screen resolutions."
3256
  msgstr ""
3257
 
3258
  #: pro/app/views/options/form.php:541
@@ -3264,11 +2948,7 @@ msgid "Pretty Bar Description Char Limit"
3264
  msgstr ""
3265
 
3266
  #: pro/app/views/options/form.php:544
3267
- msgid ""
3268
- "If your Website has a long Description (tagline) then you may need to adjust "
3269
- "this value so that it will all fit on the Pretty Bar. It is recommended that "
3270
- "you keep this value to <code>40</code> characters or less so the Pretty "
3271
- "Bar's format looks good across different browsers and screen resolutions."
3272
  msgstr ""
3273
 
3274
  #: pro/app/views/options/form.php:555
@@ -3280,10 +2960,7 @@ msgid "Pretty Bar Target URL Char Limit"
3280
  msgstr ""
3281
 
3282
  #: pro/app/views/options/form.php:558
3283
- msgid ""
3284
- "If you link to a lot of large Target URLs you may want to adjust this value. "
3285
- "It is recommended that you keep this value to <code>40</code> or below so "
3286
- "the Pretty Bar's format looks good across different browsers and URL sizes"
3287
  msgstr ""
3288
 
3289
  #: pro/app/views/options/form.php:569
@@ -3295,9 +2972,7 @@ msgid "Pretty Bar Show Title"
3295
  msgstr ""
3296
 
3297
  #: pro/app/views/options/form.php:572
3298
- msgid ""
3299
- "Make sure this is checked if you want the title of your blog (and link) to "
3300
- "show up on the Pretty Bar."
3301
  msgstr ""
3302
 
3303
  #: pro/app/views/options/form.php:583
@@ -3309,9 +2984,7 @@ msgid "Pretty Bar Show Description"
3309
  msgstr ""
3310
 
3311
  #: pro/app/views/options/form.php:586
3312
- msgid ""
3313
- "Make sure this is checked if you want your site description to show up on "
3314
- "the Pretty Bar."
3315
  msgstr ""
3316
 
3317
  #: pro/app/views/options/form.php:597
@@ -3323,9 +2996,7 @@ msgid "Pretty Bar Show Share Links"
3323
  msgstr ""
3324
 
3325
  #: pro/app/views/options/form.php:600
3326
- msgid ""
3327
- "Make sure this is checked if you want \"share links\" to show up on the "
3328
- "Pretty Bar."
3329
  msgstr ""
3330
 
3331
  #: pro/app/views/options/form.php:611
@@ -3337,9 +3008,7 @@ msgid "Pretty Bar Show Target URL Links"
3337
  msgstr ""
3338
 
3339
  #: pro/app/views/options/form.php:614
3340
- msgid ""
3341
- "Make sure this is checked if you want a link displaying the Target URL to "
3342
- "show up on the Pretty Bar."
3343
  msgstr ""
3344
 
3345
  #: pro/app/views/options/form.php:625 pro/app/views/options/form.php:627
@@ -3347,12 +3016,7 @@ msgid "Hide Attribution Link"
3347
  msgstr ""
3348
 
3349
  #: pro/app/views/options/form.php:628
3350
- msgid ""
3351
- "Check this to hide the pretty link attribution link on the pretty bar.<br/"
3352
- "><br/><strong>Wait, before you do this, you might want to leave this un-"
3353
- "checked and set the alternate URL of this link to your <em>Pretty Link Pro</"
3354
- "em> <a href=\"https://prettylinkpro.com/plp/options/aff-attribution"
3355
- "\">Affiliate URL</a> to earn a few bucks while you are at it."
3356
  msgstr ""
3357
 
3358
  #: pro/app/views/options/form.php:646
@@ -3364,10 +3028,7 @@ msgid "Alternate Pretty Bar Attribution URL"
3364
  msgstr ""
3365
 
3366
  #: pro/app/views/options/form.php:649
3367
- msgid ""
3368
- "If set, this will replace the Pretty Bars attribution URL. This is a very "
3369
- "good place to put your <em>Pretty Link Pro</em> <a href=\"https://"
3370
- "prettylinkpro.com/plp/options/aff-attribution-2\">Affiliate Link</a>."
3371
  msgstr ""
3372
 
3373
  #: pro/app/views/options/form.php:663
@@ -3383,11 +3044,7 @@ msgid "Social Buttons"
3383
  msgstr ""
3384
 
3385
  #: pro/app/views/options/form.php:669
3386
- msgid ""
3387
- "Select which buttons you want to be visible on the Social Buttons Bar.<br/"
3388
- "><br/><code>Note:</code> In order for the Social Buttons Bar to be visible "
3389
- "on Pages and or Posts, you must first enable it in the \"Page &amp; Post "
3390
- "Options\" section above."
3391
  msgstr ""
3392
 
3393
  #: pro/app/views/options/form.php:692
@@ -3399,11 +3056,7 @@ msgid "Social Buttons Placement"
3399
  msgstr ""
3400
 
3401
  #: pro/app/views/options/form.php:695
3402
- msgid ""
3403
- "This determines where your Social Buttons Placement should appear in "
3404
- "relation to content on Pages and/or Posts.<br/><br/><code>Note:</code> If "
3405
- "you want this bar to appear then you must enable it in the \"Page and Post "
3406
- "Options\" above."
3407
  msgstr ""
3408
 
3409
  #: pro/app/views/options/form.php:705
@@ -3411,11 +3064,7 @@ msgid "Social Buttons Manual Placement"
3411
  msgstr ""
3412
 
3413
  #: pro/app/views/options/form.php:706
3414
- msgid ""
3415
- "If you select none, you can still show your Social Buttons by manually "
3416
- "adding the <code>[social_buttons_bar]</code> shortcode to your blog posts or "
3417
- "<code>&lt;?php the_social_buttons_bar(); ?&gt;</code> template tag to your "
3418
- "WordPress Theme."
3419
  msgstr ""
3420
 
3421
  #: pro/app/views/options/form.php:731
@@ -3431,12 +3080,7 @@ msgid "Enable Public Link Creation on this Site"
3431
  msgstr ""
3432
 
3433
  #: pro/app/views/options/form.php:740
3434
- msgid ""
3435
- "This option will give you the ability to turn your website into a link "
3436
- "shortening service for your users. Once selected, you can enable the Pretty "
3437
- "Link Pro Sidebar Widget or just display the link creation form with the "
3438
- "<code>[prli_create_form]</code> shortcode in any post or page on your "
3439
- "website."
3440
  msgstr ""
3441
 
3442
  #: pro/app/views/options/form.php:757
@@ -3448,12 +3092,7 @@ msgid "Use Public Link Display Page"
3448
  msgstr ""
3449
 
3450
  #: pro/app/views/options/form.php:760
3451
- msgid ""
3452
- "When a link is created using the public form, the user is typically "
3453
- "redirected to a simple page displaying their new pretty link. But, you can "
3454
- "specify a page that you want them to be redirected to on your website, using "
3455
- "your branding instead by selecting this box and entering the url of the page "
3456
- "you want them to go to."
3457
  msgstr ""
3458
 
3459
  #: pro/app/views/options/form.php:777
@@ -3465,12 +3104,7 @@ msgid "Public Pretty Link Creation Display URL"
3465
  msgstr ""
3466
 
3467
  #: pro/app/views/options/form.php:780
3468
- msgid ""
3469
- "To set this up, create a new page on your WordPress site and make sure the "
3470
- "<code>[prli_create_display]</code> appears somewhere on this page -- "
3471
- "otherwise the link will never get created. Once this page is created, just "
3472
- "enter the full URL to it here. Make sure this URL does npt end with a slash "
3473
- "(/)."
3474
  msgstr ""
3475
 
3476
  #: pro/app/views/options/general.php:8
@@ -3482,13 +3116,7 @@ msgid "Use an Alternate Shortlink URL"
3482
  msgstr ""
3483
 
3484
  #: pro/app/views/options/general.php:11
3485
- msgid ""
3486
- "Use this option if you want to substitute your actual blog's url with "
3487
- "another URL. You must have another valid domain name pointing to this "
3488
- "WordPress install before you enable this option. If you are using this "
3489
- "option to just get rid of the www in the beginning of your url that is fine "
3490
- "-- just make sure your domain works without the www before enabling this "
3491
- "option."
3492
  msgstr ""
3493
 
3494
  #: pro/app/views/options/general.php:28 pro/app/views/options/general.php:30
@@ -3496,9 +3124,7 @@ msgid "Shortlink URL"
3496
  msgstr ""
3497
 
3498
  #: pro/app/views/options/general.php:31
3499
- msgid ""
3500
- "Enter a valid base url that points at this WordPress install. Make sure this "
3501
- "URL does not end with a slash (/)."
3502
  msgstr ""
3503
 
3504
  #: pro/app/views/options/general.php:47
@@ -3510,9 +3136,7 @@ msgid "Set Minimum Role Required To Access Pretty Link"
3510
  msgstr ""
3511
 
3512
  #: pro/app/views/options/general.php:50
3513
- msgid ""
3514
- "Use this option to set the minimum role of users who can access the Admin "
3515
- "interface for Pretty Link."
3516
  msgstr ""
3517
 
3518
  #: pro/app/views/options/general.php:56
@@ -3600,9 +3224,7 @@ msgid "Select Your Goal Link (optional):"
3600
  msgstr ""
3601
 
3602
  #: pro/app/views/reports/edit.php:103 pro/app/views/reports/new.php:103
3603
- msgid ""
3604
- "If you want to enable conversion tracking in this report then select a goal "
3605
- "link."
3606
  msgstr ""
3607
 
3608
  #: pro/app/views/reports/list.php:4 pro/app/views/reports/reports.php:7
@@ -3658,12 +3280,7 @@ msgid "Customize Pretty Link Bookmarklet"
3658
  msgstr ""
3659
 
3660
  #: pro/app/views/tools/generator.php:10
3661
- msgid ""
3662
- "Alter the options below to customize this Bookmarklet. As you modify the "
3663
- "label, redirect type, tracking and group, you will see this bookmarklet "
3664
- "update -- when the settings are how you want them, drag the bookmarklet into "
3665
- "your toolbar. You can create as many bookmarklets as you want each with "
3666
- "different settings."
3667
  msgstr ""
3668
 
3669
  #: pro/app/views/tools/generator.php:13
@@ -4726,14 +4343,16 @@ msgstr ""
4726
  #: script/i18n/pomo/sample/app.php:62
4727
  msgid "Bye\n"
4728
  msgstr ""
 
 
 
4729
 
4730
  #. Plugin URI of the plugin/theme
4731
  msgid "https://prettylinkpro.com/pl/plugin-uri"
4732
  msgstr ""
4733
 
4734
  #. Description of the plugin/theme
4735
- msgid ""
4736
- "Shrink, track and share any URL on the Internet from your WordPress website!"
4737
  msgstr ""
4738
 
4739
  #. Author of the plugin/theme
2
  # This file is distributed under the same license as the Pretty Link package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Pretty Link 2.0.8\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
7
+ "POT-Creation-Date: 2017-04-11 22:17:29+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
17
  msgid "Pretty Link | Manage Pretty Links"
18
  msgstr ""
19
 
 
 
20
  #: app/controllers/PrliAppController.php:37
21
  #: app/controllers/PrliAppController.php:46 app/views/links/form.php:47
22
  #: app/views/shared/tinymce_form_popup.php:109 app/views/widgets/widget.php:17
97
  msgstr ""
98
 
99
  #: app/controllers/PrliAppController.php:279
100
+ msgid "You're almost done!<br/>%1$sFinish your Re-Install of Pretty Link Pro%2$s"
 
101
  msgstr ""
102
 
103
  #: app/controllers/PrliAppController.php:286
110
 
111
  #: app/controllers/PrliAppController.php:385
112
  #: app/controllers/PrliAppController.php:404
113
+ msgid "Your Pretty Link Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s"
 
 
114
  msgstr ""
115
 
116
  #: app/controllers/PrliClicksController.php:89
213
  msgstr ""
214
 
215
  #: app/controllers/PrliOptionsController.php:75
216
+ msgid "Excluded IP Addresses must be a comma separated list of IPv4 or IPv6 addresses or ranges."
 
 
217
  msgstr ""
218
 
219
  #: app/controllers/PrliOptionsController.php:79
220
+ msgid "Whitlist IP Addresses must be a comma separated list of IPv4 or IPv6 addresses or ranges."
 
 
221
  msgstr ""
222
 
223
  #: app/controllers/PrliPopupController.php:62
456
  msgstr ""
457
 
458
  #: app/helpers/PrliLinksHelper.php:115
459
+ msgid "Are you sure you want to delete your %s Pretty Link? This will delete the Pretty Link and all of the statistical data about it in your database."
 
 
460
  msgstr ""
461
 
462
  #: app/helpers/PrliLinksHelper.php:115
464
  msgstr ""
465
 
466
  #: app/helpers/PrliLinksHelper.php:116
467
+ msgid "Are you sure you want to reset your %s Pretty Link? This will delete all of the statistical data about this Pretty Link in your database."
 
 
468
  msgstr ""
469
 
470
  #: app/helpers/PrliLinksHelper.php:116
538
  msgstr ""
539
 
540
  #: app/models/PrliLink.php:575
541
+ msgid "Pretty Link slugs must not contain question marks, ampersands or number signs."
 
 
542
  msgstr ""
543
 
544
  #: app/models/PrliLink.php:579
546
  msgstr ""
547
 
548
  #: app/models/PrliLink.php:584
549
+ msgid "This Pretty Link Slug is already taken. Check to make sure it isn't being used by another pretty link, post, page, category or tag slug. If none of these are true then check to see that this slug isn't the name of a file in the root folder of your wordpress install."
 
 
 
 
550
  msgstr ""
551
 
552
  #: app/models/PrliUtils.php:93
562
  msgstr ""
563
 
564
  #: app/views/admin/popups/rating.php:7
565
+ msgid "If you enjoy using Pretty Link would you mind taking a moment to rate it on WordPress.org? It won't take more than a minute."
 
 
566
  msgstr ""
567
 
568
  #: app/views/admin/popups/rating.php:8
621
 
622
  #: app/views/admin/popups/upgrade.php:17 app/views/admin/update/license.php:45
623
  #: app/views/links/form.php:233
624
+ msgid "Plus, upgrading is fast, easy and won't disrupt any of your existing links or data. And there's even a 14 day money back guarantee."
 
 
625
  msgstr ""
626
 
627
  #: app/views/admin/popups/upgrade.php:18 app/views/admin/update/license.php:47
643
  msgstr ""
644
 
645
  #: app/views/admin/update/activation_warning.php:8
646
+ msgid "It looks like you used to have Pretty Link Pro activated with a username and password but now you need a license key to activate it."
 
 
647
  msgstr ""
648
 
649
  #: app/views/admin/update/activation_warning.php:9
650
+ msgid "You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s"
 
651
  msgstr ""
652
 
653
  #: app/views/admin/update/activation_warning.php:10
654
+ msgid "After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro\" admin page,%2$s you'll start getting updates again."
 
 
655
  msgstr ""
656
 
657
  #: app/views/admin/update/activation_warning.php:15
658
+ msgid "You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to enable automatic updates today."
 
 
659
  msgstr ""
660
 
661
  #: app/views/admin/update/activation_warning.php:16
662
+ msgid "After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro\" admin page,%2$s you'll start getting automatic updates."
 
 
663
  msgstr ""
664
 
665
  #: app/views/admin/update/addon_popup.php:4
667
  msgstr ""
668
 
669
  #: app/views/admin/update/addon_popup.php:5
670
+ msgid "The %s features in your Pretty Link options have been moved from Pretty Link into a separate plugin."
 
 
671
  msgstr ""
672
 
673
  #: app/views/admin/update/addon_popup.php:6
674
+ msgid "Why you ask? Well, it's to streamline and increase the performance of Pretty Link for you."
 
 
675
  msgstr ""
676
 
677
  #: app/views/admin/update/addon_popup.php:9
678
+ msgid "And good for you, it looks like you've already got the %1$s Add-on installed. Just click the \"Activate %2$s Add-on\" button below and you'll get all these features back now."
 
 
 
679
  msgstr ""
680
 
681
  #: app/views/admin/update/addon_popup.php:11
682
+ msgid "Luckily it's easy to get these features back now. Just click the \"Install %s Add-on\" button below."
 
 
683
  msgstr ""
684
 
685
  #: app/views/admin/update/addon_popup.php:12
686
+ msgid "If you have problems with the auto-install please refer to %1$sthe user manual%2$s for manual install instructions."
 
 
687
  msgstr ""
688
 
689
  #: app/views/admin/update/addon_popup.php:18
731
  msgstr ""
732
 
733
  #: app/views/admin/update/edge_updates.php:4
734
+ msgid "Include Pretty Link Pro edge (development) releases in automatic updates (not recommended for production websites)"
 
 
735
  msgstr ""
736
 
737
  #: app/views/admin/update/edge_updates.php:4
743
  msgstr ""
744
 
745
  #: app/views/admin/update/license.php:7
746
+ msgid "You must have a License Key to enable automatic updates for Pretty Link Pro. If you don't have a License please go to %1$s to get one. If you do have a license you can login at %2$s to manage your licenses and site activations."
 
 
 
747
  msgstr ""
748
 
749
  #: app/views/admin/update/license.php:13
755
  msgstr ""
756
 
757
  #: app/views/admin/update/license.php:30 app/views/links/form.php:221
758
+ msgid "It looks like you haven't %1$supgraded to Pretty Link Pro%2$s yet. Here are just a few things you could be doing with pro:"
 
 
759
  msgstr ""
760
 
761
  #: app/views/admin/update/license.php:49 app/views/links/form.php:237
787
  msgstr ""
788
 
789
  #: app/views/admin/update/license.php:72
790
+ msgid "Are you sure? Pretty Link Pro will not be functional on %s if this License Key is deactivated."
 
 
791
  msgstr ""
792
 
793
  #: app/views/admin/update/license.php:72
975
  msgstr ""
976
 
977
  #: app/views/groups/edit.php:48 app/views/groups/new.php:52
978
+ msgid "Select some links for this group. <strong>Note: each link can only be in one group at a time.</strong>"
 
 
979
  msgstr ""
980
 
981
  #: app/views/groups/edit.php:54 app/views/links/edit.php:16
1044
  msgstr ""
1045
 
1046
  #: app/views/links/form.php:24
1047
+ msgid "Make your life easier by upgrading to %1$sPretty Link Pro%2$s -- get more redirection types, speed, automations and <b>results from your links</b> by %1$sgoing pro today!%2$s"
 
 
 
1048
  msgstr ""
1049
 
1050
  #: app/views/links/form.php:31
1065
  msgstr ""
1066
 
1067
  #: app/views/links/form.php:48
1068
+ msgid "This is how your pretty link will appear. You can edit the Pretty Link slug here."
 
 
1069
  msgstr ""
1070
 
1071
  #: app/views/links/form.php:57 app/views/links/form.php:60
1073
  msgstr ""
1074
 
1075
  #: app/views/links/form.php:61
1076
+ msgid "Leave this blank and Pretty Link will attempt to detect the title from the target url. Alternatively you can enter a custom title here."
 
 
1077
  msgstr ""
1078
 
1079
  #: app/views/links/form.php:70 app/views/links/form.php:73
1081
  msgstr ""
1082
 
1083
  #: app/views/links/form.php:74
1084
+ msgid "This is a field where you can enter notes about a particular link. This notes field is mainly for your own link management needs. It isn't currently used anywhere on the front end."
 
 
 
1085
  msgstr ""
1086
 
1087
  #: app/views/links/form.php:84
1154
  msgstr ""
1155
 
1156
  #: app/views/links/form.php:170
1157
+ msgid "Requires the Google Analyticator, Google Analytics by MonsterInsights (formerly Yoast) or Google Analytics Plugin installed and configured for this to work."
 
 
 
1158
  msgstr ""
1159
 
1160
  #: app/views/links/form.php:180
1161
+ msgid "It appears that <strong>%s</strong> is currently installed. Pretty Link will attempt to use its settings to track this link."
 
 
1162
  msgstr ""
1163
 
1164
  #: app/views/links/form.php:185
1165
+ msgid "No Google Analytics Plugin is currently installed. Pretty Link cannot track links using Google Analytics until one is."
 
 
1166
  msgstr ""
1167
 
1168
  #: app/views/links/form.php:198
1178
  msgstr ""
1179
 
1180
  #: app/views/links/list.php:19
1181
+ msgid "WordPress Must be Configured:</strong> Pretty Link won't work until you select a Permalink Structure other than 'Default'"
 
 
1182
  msgstr ""
1183
 
1184
  #: app/views/links/list.php:19 app/views/options/form.php:12
1242
  msgstr ""
1243
 
1244
  #: app/views/options/form.php:12
1245
+ msgid "Pretty Link won't work until you select a Permalink Structure other than 'Default'"
 
 
1246
  msgstr ""
1247
 
1248
  #: app/views/options/form.php:37
1262
  msgstr ""
1263
 
1264
  #: app/views/options/form.php:61
1265
+ msgid "Select the type of redirection you want your newly created links to have."
 
1266
  msgstr ""
1267
 
1268
  #: app/views/options/form.php:70 app/views/options/form.php:72
1294
  msgstr ""
1295
 
1296
  #: app/views/options/form.php:97
1297
+ msgid "This option should ONLY be checked if you have elements in your permalink structure that must be present in any link on your site. For example, some WordPress installs don't have the benefit of full rewrite capabilities and in this case you'd need an index.php included in each link (http://example.com/index.php/mycoolslug instead of http://example.com/mycoolslug). If this is the case for you then check this option but the vast majority of users will want to keep this unchecked."
 
 
 
 
 
 
 
1298
  msgstr ""
1299
 
1300
  #: app/views/options/form.php:110
1306
  msgstr ""
1307
 
1308
  #: app/views/options/form.php:118
1309
+ msgid "Changing your tracking style can affect the accuracy of your existing statistics. Extended mode must be used for Conversion reporting."
 
 
1310
  msgstr ""
1311
 
1312
  #: app/views/options/form.php:122
1330
  msgstr ""
1331
 
1332
  #: app/views/options/form.php:133
1333
+ msgid "Enter IP Addresses or IP Ranges you want to exclude from your Click data and Stats. Each IP Address should be separated by commas. Example: 192.168.0.1, 192.168.2.1, 192.168.3.4 or 192.168.*.*<br/><br/><strong>FYI, your current IP address is %s."
 
 
 
 
1334
  msgstr ""
1335
 
1336
  #: app/views/options/form.php:143
1342
  msgstr ""
1343
 
1344
  #: app/views/options/form.php:146
1345
+ msgid "Will automatically delete all hits older than 90 days. We strongly recommend doing this to keep your database performance up. This will permanently delete this click data, and is not undo-able. "
 
 
 
1346
  msgstr ""
1347
 
1348
  #: app/views/options/form.php:155 app/views/options/form.php:157
1350
  msgstr ""
1351
 
1352
  #: app/views/options/form.php:158
1353
+ msgid "Filter known Robots and unidentifiable browser clients from your click data, stats and reports. Works best if Tracking Style above is set to 'Extended Tracking'."
 
 
 
1354
  msgstr ""
1355
 
1356
  #: app/views/options/form.php:174
1362
  msgstr ""
1363
 
1364
  #: app/views/options/form.php:177
1365
+ msgid "Enter IP Addresses or IP Ranges you want to always include in your Click data and Stats even if they are flagged as robots. Each IP Address should be separated by commas. Example: 192.168.0.1, 192.168.2.1, 192.168.3.4 or 192.168.*.*"
 
 
 
 
1366
  msgstr ""
1367
 
1368
  #: app/views/shared/link-table-nav.php:17
1515
  msgstr ""
1516
 
1517
  #: app/views/tools/form.php:29
1518
+ msgid "Just drag this \"Get PrettyLink\" link to your toolbar to install the bookmarklet. As you browse the web, you can just click this bookmarklet to create a pretty link from the current url you're looking at. <a href=\"http://blairwilliams.com/pretty-link-bookmarklet/\">(more help)</a>"
 
 
 
 
1519
  msgstr ""
1520
 
1521
  #: app/views/tools/form.php:31
1523
  msgstr ""
1524
 
1525
  #: app/views/tools/form.php:35
1526
+ msgid "<strong>Note:</strong> iPhone users can install this bookmarklet in their Safari to create Pretty Links with the following steps:"
 
 
1527
  msgstr ""
1528
 
1529
  #: app/views/tools/form.php:37
1535
  msgstr ""
1536
 
1537
  #: app/views/tools/form.php:39
1538
+ msgid "Choose to share the page, then click on \"Bookmark\". We recommend saving it in your Favorites folder. Rename your bookmark to \"Get PrettyLink\" (or whatever you want) and then \"Save\""
 
 
 
1539
  msgstr ""
1540
 
1541
  #: app/views/tools/form.php:40
1542
+ msgid "Navigate through your Bookmarks until you find the new bookmark and click \"Edit\""
 
 
1543
  msgstr ""
1544
 
1545
  #: app/views/tools/form.php:41
1555
  msgstr ""
1556
 
1557
  #: app/views/tools/form.php:43
1558
+ msgid "Now when you find a page you want to save off as a Pretty Link, just click the \"Bookmarks\" icon at the bottom of the screen and select your \"Get PrettyLink\" bookmarklet."
 
 
 
1559
  msgstr ""
1560
 
1561
  #: app/views/tools/form.php:50
1562
+ msgid "Pretty Link is already automatically trimming Clicks older than 90 days. Although not necessary, you can still use the buttons below to force click trimming."
 
 
 
1563
  msgstr ""
1564
 
1565
  #: app/views/tools/form.php:53
1566
+ msgid "***WARNING*** If you click OK you will delete ALL of the Click data that is older than 30 days. Your data will be gone forever -- no way to retreive it. Do not click OK unless you are absolutely sure you want to delete this data because there is no going back!"
 
 
 
 
1567
  msgstr ""
1568
 
1569
  #: app/views/tools/form.php:53
1575
  msgstr ""
1576
 
1577
  #: app/views/tools/form.php:56
1578
+ msgid "This will clear all clicks in your database that are older than 30 days."
 
1579
  msgstr ""
1580
 
1581
  #: app/views/tools/form.php:58
1582
+ msgid "***WARNING*** If you click OK you will delete ALL of the Click data that is older than 90 days. Your data will be gone forever -- no way to retreive it. Do not click OK unless you are absolutely sure you want to delete this data because there is no going back!"
 
 
 
 
1583
  msgstr ""
1584
 
1585
  #: app/views/tools/form.php:58
1591
  msgstr ""
1592
 
1593
  #: app/views/tools/form.php:61
1594
+ msgid "This will clear all clicks in your database that are older than 90 days."
 
1595
  msgstr ""
1596
 
1597
  #: app/views/tools/form.php:65
1598
+ msgid "***WARNING*** If you click OK you will delete ALL of the Click data in your Database. Your data will be gone forever -- no way to retreive it. Do not click OK unless you are absolutely sure you want to delete all your data because there is no going back!"
 
 
 
 
1599
  msgstr ""
1600
 
1601
  #: app/views/tools/form.php:65
1607
  msgstr ""
1608
 
1609
  #: app/views/tools/form.php:68
1610
+ msgid "Seriously, only click this link if you want to delete all the Click data in your database."
 
 
1611
  msgstr ""
1612
 
1613
  #: pro/app/controllers/PlpAppController.php:165
1636
  msgstr ""
1637
 
1638
  #: pro/app/controllers/PlpLinksController.php:213
1639
+ msgid "Your URL Replacements must be formatted as a comma separated list of properly formatted URLs (http[s]://example.com/whatever)"
 
 
1640
  msgstr ""
1641
 
1642
  #: pro/app/controllers/PlpLinksController.php:224
1737
  msgstr ""
1738
 
1739
  #: pro/app/controllers/PlpLinksController.php:846
1740
+ msgid "This link expired after %d clicks and will now cause a 404 error when visited"
 
1741
  msgstr ""
1742
 
1743
  #: pro/app/controllers/PlpLinksController.php:849
1761
  msgstr ""
1762
 
1763
  #: pro/app/controllers/PlpLinksController.php:872
1764
+ msgid "A Time Period Redirect is currently active for this link. When visited it will currently redirect to %s rather than the Target URL unless the link is expired."
 
 
 
1765
  msgstr ""
1766
 
1767
  #: pro/app/controllers/PlpLinksController.php:876
1768
+ msgid "Time Period Redirects have been setup for this link but the current time is not within any of them currently."
 
 
1769
  msgstr ""
1770
 
1771
  #: pro/app/controllers/PlpOptionsController.php:102
1777
  msgstr ""
1778
 
1779
  #: pro/app/controllers/PlpOptionsController.php:111
1780
+ msgid "You need to enter a valid Pretty Link Base URL now that you have selected \"Use an alternate base url for your Pretty Links\""
 
 
1781
  msgstr ""
1782
 
1783
  #: pro/app/controllers/PlpOptionsController.php:116
1784
+ msgid "You need to enter a valid Public Link Display URL now that you have selected \"Use a custom public link display page\""
 
 
1785
  msgstr ""
1786
 
1787
  #: pro/app/controllers/PlpOptionsController.php:122
1924
  msgstr ""
1925
 
1926
  #: pro/app/helpers/PlpPostsHelper.php:76
1927
+ msgid "A Pretty Link hasn't been generated for this entry yet. Click \"Update Post\" to generate."
 
 
1928
  msgstr ""
1929
 
1930
  #: pro/app/models/PlpOptions.php:99
2039
  msgstr ""
2040
 
2041
  #: pro/app/views/import-export/form.php:26
2042
+ msgid "There are two ways to import a file.<br/><br/>1) Importing to update existing links and<br/><br/>2) Importing to generate new links. When Importing to generate new links, you must delete the \"id\" column from the CSV before importing. If the \"id\" column is present, Pretty Link Pro will attempt to update existing links."
 
 
 
 
 
2043
  msgstr ""
2044
 
2045
  #: pro/app/views/import-export/form.php:36
2051
  msgstr ""
2052
 
2053
  #: pro/app/views/import-export/form.php:40
2054
+ msgid "Select a file that has been formatted as a Pretty Link CSV import file and click \"Import\""
 
 
2055
  msgstr ""
2056
 
2057
  #: pro/app/views/import-export/form.php:48
2119
  msgstr ""
2120
 
2121
  #: pro/app/views/links/form.php:30
2122
+ msgid "Select the type of expiration you want for this link.<br/><br/><b>Date</b> Select this option if you'd like to expire your link after a certain date.<br/><br/><b>Clicks</b>: Select this option to expire this link after it has been clicked a specific number of times."
 
 
 
 
2123
  msgstr ""
2124
 
2125
  #: pro/app/views/links/form.php:51
2127
  msgstr ""
2128
 
2129
  #: pro/app/views/links/form.php:52
2130
+ msgid "Enter the number of times this link can be clicked before it expires.<br/><br/><b>Note: Expirations based on clicks wouldn't work properly if you had tracking turned off for this link so as long as this is set to Clicks, Pretty Link will ensure tracking is turned on for this link as well.</b>"
 
 
 
 
2131
  msgstr ""
2132
 
2133
  #: pro/app/views/links/form.php:71
2135
  msgstr ""
2136
 
2137
  #: pro/app/views/links/form.php:72
2138
+ msgid "Enter a date here in the format YYYY-MM-DD to set when this link should expire."
 
 
2139
  msgstr ""
2140
 
2141
  #: pro/app/views/links/form.php:88
2147
  msgstr ""
2148
 
2149
  #: pro/app/views/links/form.php:92
2150
+ msgid "When this link expires, do you want to redirect to a specific URL. You can use this to redirect to a page you've setup to indicate that the link is expired.<br/><br/><b>Note: If this is not set the link will throw a 404 error when expired</b>."
 
 
 
 
2151
  msgstr ""
2152
 
2153
  #: pro/app/views/links/form.php:107 pro/app/views/options/form.php:165
2159
  msgstr ""
2160
 
2161
  #: pro/app/views/links/form.php:111
2162
+ msgid "This is the URL that this link will redirect to after the expiration date above."
 
 
2163
  msgstr ""
2164
 
2165
  #: pro/app/views/links/form.php:131
2167
  msgstr ""
2168
 
2169
  #: pro/app/views/links/form.php:132
2170
+ msgid "Enter a comma separated list of keywords / keyword phrases that you'd like to replace with this link in your Posts &amp; Pages."
 
 
2171
  msgstr ""
2172
 
2173
  #: pro/app/views/links/form.php:140
2179
  msgstr ""
2180
 
2181
  #: pro/app/views/links/form.php:144
2182
+ msgid "Enter a comma separated list of the URLs that you'd like to replace with this Pretty Link in your Posts &amp; Pages. These must be formatted as URLs for example: <code>http://example.com</code> or <code>http://example.com?product_id=53</code>"
 
 
 
 
2183
  msgstr ""
2184
 
2185
  #: pro/app/views/links/form.php:159 pro/app/views/links/form.php:162
2187
  msgstr ""
2188
 
2189
  #: pro/app/views/links/form.php:163
2190
+ msgid "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or any other kind of tracking script to the HTML head for this pretty link.<br/><br/>These scripts will be in addition to any global one's you've defined in the options.<br/><br/><b>NOTE:</b> This does NOT work with 301, 302 and 307 type redirects."
 
 
 
 
 
2191
  msgstr ""
2192
 
2193
  #: pro/app/views/links/form.php:176
2199
  msgstr ""
2200
 
2201
  #: pro/app/views/links/form.php:180
2202
+ msgid "These powerful options are available to give you dynamic control over redirection for this pretty link."
 
 
2203
  msgstr ""
2204
 
2205
  #: pro/app/views/links/form.php:187
2219
  msgstr ""
2220
 
2221
  #: pro/app/views/links/form.php:203
2222
+ msgid "Enter the Target URLs that you'd like to rotate through when this Pretty Link is Clicked. These must be formatted as URLs example: <code>http://example.com</code> or <code>http://example.com?product_id=53</code>"
 
 
 
2223
  msgstr ""
2224
 
2225
  #: pro/app/views/links/form.php:208
2239
  msgstr ""
2240
 
2241
  #: pro/app/views/links/form.php:230
2242
+ msgid "Split testing will enable you to track the effectiveness of several links against each other. This works best when you have multiple link rotation URLs entered."
 
 
 
2243
  msgstr ""
2244
 
2245
  #: pro/app/views/links/form.php:246 pro/app/views/reports/list.php:31
2264
  msgstr ""
2265
 
2266
  #: pro/app/views/links/form.php:285
2267
+ msgid "This will enable you to setup specific target urls that this pretty link will redirect to based on the country of the person visiting the url."
 
 
2268
  msgstr ""
2269
 
2270
  #: pro/app/views/links/form.php:290 pro/app/views/links/form.php:304
2277
  msgstr ""
2278
 
2279
  #: pro/app/views/links/form.php:299
2280
+ msgid "This will allow you to redirect based on your visitor's device, operating system and/or browser"
 
 
2281
  msgstr ""
2282
 
2283
  #: pro/app/views/links/form.php:309 pro/app/views/links/form.php:312
2285
  msgstr ""
2286
 
2287
  #: pro/app/views/links/form.php:313
2288
+ msgid "This will allow you to redirect based on the time period in which your visitor visits this link.<br/><br/><b>Note: If your visitor doesn't visit the link during any of the specified time periods set here, they'll simply be redirected to the main target url.</b>"
 
 
 
 
2289
  msgstr ""
2290
 
2291
  #: pro/app/views/links/geo_row.php:12
2297
  msgstr ""
2298
 
2299
  #: pro/app/views/links/geo_row.php:16
2300
+ msgid "This is a comma-separated list of countries that this redirect will match on. Just start typing a country's name and an autocomplete dropdown will appear to select from. Once a country is selected, feel free to start typing the name of another country. You can add as many as you'd like this redirect to match on"
 
 
 
 
 
2301
  msgstr ""
2302
 
2303
  #: pro/app/views/links/geo_row.php:25 pro/app/views/links/tech_row.php:79
2310
  msgstr ""
2311
 
2312
  #: pro/app/views/links/geo_row.php:29
2313
+ msgid "This is the URL that this Pretty Link will redirect to if the visitor's country match the settings here."
 
 
2314
  msgstr ""
2315
 
2316
  #: pro/app/views/links/geo_row.php:38 pro/app/views/links/tech_row.php:92
2332
  msgstr ""
2333
 
2334
  #: pro/app/views/links/link-options.php:6
2335
+ msgid "Use this to prefix all newly generated pretty links with a directory of your choice. For example set to <b>out</b> to make your pretty links look like http://site.com/<b>out</b>/xyz. Changing this option will NOT affect existing pretty links. If you do not wish to use a directory prefix, leave this text field blank. Whatever you type here will be sanitized and modified to ensure it is URL-safe. So <b>Hello World</b> might get changed to something like <b>hello-world</b> instead. Lowercase letters, numbers, dashes, and underscores are allowed."
 
 
 
 
 
 
 
 
2336
  msgstr ""
2337
 
2338
  #: pro/app/views/links/link-options.php:16
2341
  msgstr ""
2342
 
2343
  #: pro/app/views/links/link-options.php:19
2344
+ msgid "The number of characters to use when auto-generating a random slug for pretty links. The default is 4. You cannot use less than 2."
 
 
2345
  msgstr ""
2346
 
2347
  #: pro/app/views/links/link-options.php:29
2350
  msgstr ""
2351
 
2352
  #: pro/app/views/links/link-options.php:31
2353
+ msgid "Requires Google Analyticator, Google Analytics by MonsterInsights (formerly Yoast), or the Google Analytics Plugin to be installed and configured on your site."
 
 
 
2354
  msgstr ""
2355
 
2356
  #: pro/app/views/links/link-options.php:41
2362
  msgstr ""
2363
 
2364
  #: pro/app/views/links/link-options.php:44
2365
+ msgid "This will enable a link in your pretty link admin that will allow you to automatically download a QR Code for each individual Pretty Link."
 
 
2366
  msgstr ""
2367
 
2368
  #: pro/app/views/links/link-options.php:54
2371
  msgstr ""
2372
 
2373
  #: pro/app/views/links/link-options.php:57
2374
+ msgid "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or any other kind of tracking script to the HTML head.<br/><br/>What you enter in this box will be applied to all supported pretty links.<br/><br/><b>NOTE:</b> This does NOT work with 301, 302 and 307 type redirects."
 
 
 
 
2375
  msgstr ""
2376
 
2377
  #: pro/app/views/links/prettybar.php:174
2391
  msgstr ""
2392
 
2393
  #: pro/app/views/links/tech_row.php:18
2394
+ msgid "<b>Desktop</b> will match on any conventional laptop or desktop computer.<br/><br/><b>Mobile</b> will match on any phone, tablet or other portable device.<br/><br/><b>Phone</b> will match on any phone or similarly small device.<br/><br/><b>Tablet</b> will match on any tablet sized device."
 
 
 
 
2395
  msgstr ""
2396
 
2397
  #: pro/app/views/links/tech_row.php:23 pro/app/views/links/tech_row.php:42
2424
  msgstr ""
2425
 
2426
  #: pro/app/views/links/tech_row.php:37
2427
+ msgid "Use this dropdown to select which Operating System this redirect will match on."
 
 
2428
  msgstr ""
2429
 
2430
  #: pro/app/views/links/tech_row.php:43 pro/app/views/links/tech_row.php:64
2504
  msgstr ""
2505
 
2506
  #: pro/app/views/links/tech_row.php:83
2507
+ msgid "This is the URL that this Pretty Link will redirect to if the visitor's device, os and browser match the settings here."
 
 
2508
  msgstr ""
2509
 
2510
  #: pro/app/views/links/time_row.php:13
2516
  msgstr ""
2517
 
2518
  #: pro/app/views/links/time_row.php:17
2519
+ msgid "This is where you'll enter the beginning of the time period for this redirect"
 
2520
  msgstr ""
2521
 
2522
  #: pro/app/views/links/time_row.php:26
2536
  msgstr ""
2537
 
2538
  #: pro/app/views/links/time_row.php:43
2539
+ msgid "This is the URL that this Pretty Link will redirect to when the visitor visits the link in the associated time period."
 
 
2540
  msgstr ""
2541
 
2542
  #: pro/app/views/options/autocreate.php:7
2568
  msgstr ""
2569
 
2570
  #: pro/app/views/options/autocreate.php:51
2571
+ msgid "If this button is checked then you'll have the ability to include a social buttons bar on your %s."
 
 
2572
  msgstr ""
2573
 
2574
  #: pro/app/views/options/form.php:4
2584
  msgstr ""
2585
 
2586
  #: pro/app/views/options/form.php:16
2587
+ msgid "If checked, this will enable you to automatically replace keywords and/or URLs on your blog with pretty links. You will specify the specific keywords and urls from your Pretty Link edit page."
 
 
 
2588
  msgstr ""
2589
 
2590
  #: pro/app/views/options/form.php:34
2596
  msgstr ""
2597
 
2598
  #: pro/app/views/options/form.php:37
2599
+ msgid "Don't want to have too many keyword replacements per page? Select to set some reasonable keyword replacement thresholds."
 
 
2600
  msgstr ""
2601
 
2602
  #: pro/app/views/options/form.php:54
2608
  msgstr ""
2609
 
2610
  #: pro/app/views/options/form.php:57
2611
+ msgid "Maximum number of unique keyword / keyphrases you can replace with Pretty Links per page."
 
 
2612
  msgstr ""
2613
 
2614
  #: pro/app/views/options/form.php:68
2632
  msgstr ""
2633
 
2634
  #: pro/app/views/options/form.php:90
2635
+ msgid "Ensure that these keyword replacement links are opened in a separate window. <strong>Note:</strong> This does not apply to url replacements--only keyword replacements."
 
 
 
2636
  msgstr ""
2637
 
2638
  #: pro/app/views/options/form.php:101
2644
  msgstr ""
2645
 
2646
  #: pro/app/views/options/form.php:104
2647
+ msgid "This adds the html <code>NOFOLLOW</code> attribute to all keyword replacement links. <strong>Note:</strong> This does not apply to url replacements--only keyword replacements."
 
 
 
2648
  msgstr ""
2649
 
2650
  #: pro/app/views/options/form.php:115
2656
  msgstr ""
2657
 
2658
  #: pro/app/views/options/form.php:118
2659
+ msgid "Add some custom formatting to your keyword pretty link replacements. <strong>Note:</strong> This does not apply to url replacements--only keyword replacements."
 
 
 
2660
  msgstr ""
2661
 
2662
  #: pro/app/views/options/form.php:129
2668
  msgstr ""
2669
 
2670
  #: pro/app/views/options/form.php:132
2671
+ msgid "Add some custom formatting to the hover attribute of your keyword pretty links. <strong>Note:</strong> This does not apply to url replacements--only keyword replacements."
 
 
 
2672
  msgstr ""
2673
 
2674
  #: pro/app/views/options/form.php:143
2680
  msgstr ""
2681
 
2682
  #: pro/app/views/options/form.php:147
2683
+ msgid "When enabled, this will add a link to your official affiliate link disclosure page to any page, post or custom post type that have any keyword or URL replacements. You'll also be able to customize the URL and position of the disclosure link."
 
 
 
 
2684
  msgstr ""
2685
 
2686
  #: pro/app/views/options/form.php:168
2688
  msgstr ""
2689
 
2690
  #: pro/app/views/options/form.php:169
2691
+ msgid "This is the URL of the page that contains your official affiliate link disclosures. This URL will be used in the link that will be generated."
 
 
2692
  msgstr ""
2693
 
2694
  #: pro/app/views/options/form.php:180
2700
  msgstr ""
2701
 
2702
  #: pro/app/views/options/form.php:184
2703
+ msgid "This is the text of the link to your disclosures. This text will be visible to your visitors when the link is displayed."
 
 
2704
  msgstr ""
2705
 
2706
  #: pro/app/views/options/form.php:195
2712
  msgstr ""
2713
 
2714
  #: pro/app/views/options/form.php:199
2715
+ msgid "This is the position of the link to your disclosures in relation to your post content."
 
 
2716
  msgstr ""
2717
 
2718
  #: pro/app/views/options/form.php:205 pro/app/views/options/form.php:701
2736
  msgstr ""
2737
 
2738
  #: pro/app/views/options/form.php:223
2739
+ msgid "When enabled, this will add an affiliate link disclosure next to each one of your keyword replacements. <b>Note:</b> This does not apply to url replacements--only keyword replacements."
 
 
 
2740
  msgstr ""
2741
 
2742
  #: pro/app/views/options/form.php:241
2748
  msgstr ""
2749
 
2750
  #: pro/app/views/options/form.php:245
2751
+ msgid "This is the text that will be added after each keyword replacement to indicate that the link is an affiliate link."
 
 
2752
  msgstr ""
2753
 
2754
  #: pro/app/views/options/form.php:261
2760
  msgstr ""
2761
 
2762
  #: pro/app/views/options/form.php:264
2763
+ msgid "This feature will take each url it finds and create or use an existing pretty link pointing to the url and replace it with the pretty link."
 
 
2764
  msgstr ""
2765
 
2766
  #: pro/app/views/options/form.php:281
2772
  msgstr ""
2773
 
2774
  #: pro/app/views/options/form.php:284
2775
+ msgid "Any links on your site which point to domains you define here will not be replaced automatically with Pretty Links. Place one domain per line.<br/><br/>You MUST enter http:// or https:// in front of the domain names and do NOT include any /'s or other text after the domain name.<br/><br/>Proper entry example:<br/><b>https://www.google.com</b><br/><b>http://mysite.org</b><br/><br/>Improperly entered domains will be removed upon saving the Options."
 
 
 
 
 
 
2776
  msgstr ""
2777
 
2778
  #: pro/app/views/options/form.php:300
2784
  msgstr ""
2785
 
2786
  #: pro/app/views/options/form.php:303
2787
+ msgid "This option will enable the keyword / URL replacement routine to run in Comments."
 
 
2788
  msgstr ""
2789
 
2790
  #: pro/app/views/options/form.php:314
2796
  msgstr ""
2797
 
2798
  #: pro/app/views/options/form.php:317
2799
+ msgid "This option will enable the keyword / URL replacement routine to run in RSS Feeds.<br/><strong>Note:</strong> This option can slow the load speed of your RSS feed -- unless used in conjunction with a caching plugin like W3 Total Cache or WP Super Cache.<br/><strong>Note #2</strong> This option will only work if you have \"Full Text\" selected in your General WordPress Reading settings.<br/><strong>Note #3:</strong> If this option is used along with \"Replace Keywords and URLs in Comments\" then your post comment feeds will have keywords replaced in them as well."
 
 
 
 
 
 
 
 
2800
  msgstr ""
2801
 
2802
  #: pro/app/views/options/form.php:328 pro/app/views/options/form.php:330
2804
  msgstr ""
2805
 
2806
  #: pro/app/views/options/form.php:331
2807
+ msgid "This feature will index all of your keyword & URL replacements to dramatically improve performance.<br/><br/>If your site has a large number of replacements and/or posts then this feature may increase the load on your server temporarily and your replacements may not show up on your posts for a day or two initially (until all posts are indexed).<br/><br/><strong>Note:</strong> this feature requires the use of wp-cron."
 
 
 
 
 
 
2808
  msgstr ""
2809
 
2810
  #: pro/app/views/options/form.php:348 pro/app/views/options/form.php:350
2812
  msgstr ""
2813
 
2814
  #: pro/app/views/options/form.php:351
2815
+ msgid "This shows how many posts have keywords indexed for and are ready for replacement."
 
 
2816
  msgstr ""
2817
 
2818
  #: pro/app/views/options/form.php:359 pro/app/views/options/form.php:382
2832
  msgstr ""
2833
 
2834
  #: pro/app/views/options/form.php:374
2835
+ msgid "This shows how many posts have url replacements indexed for and are ready for replacement."
 
 
2836
  msgstr ""
2837
 
2838
  #: pro/app/views/options/form.php:402
2852
  msgstr ""
2853
 
2854
  #: pro/app/views/options/form.php:432
2855
+ msgid "If set, this will replace the logo image on the Pretty Bar. The image that this URL references should be 48x48 Pixels to fit."
 
 
2856
  msgstr ""
2857
 
2858
  #: pro/app/views/options/form.php:443
2864
  msgstr ""
2865
 
2866
  #: pro/app/views/options/form.php:446
2867
+ msgid "If set, this will replace the background image on Pretty Bar. The image that this URL references should be 65px tall - this image will be repeated horizontally across the bar."
 
 
 
2868
  msgstr ""
2869
 
2870
  #: pro/app/views/options/form.php:457
2876
  msgstr ""
2877
 
2878
  #: pro/app/views/options/form.php:460
2879
+ msgid "This will alter the background color of the Pretty Bar if you haven't specified a Pretty Bar background image."
 
 
2880
  msgstr ""
2881
 
2882
  #: pro/app/views/options/form.php:471
2888
  msgstr ""
2889
 
2890
  #: pro/app/views/options/form.php:474
2891
+ msgid "If not set, this defaults to black (RGB value <code>#000000</code>) but you can change it to whatever color you like."
 
 
2892
  msgstr ""
2893
 
2894
  #: pro/app/views/options/form.php:485
2900
  msgstr ""
2901
 
2902
  #: pro/app/views/options/form.php:488
2903
+ msgid "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you can change it to whatever color you like."
 
 
2904
  msgstr ""
2905
 
2906
  #: pro/app/views/options/form.php:499
2912
  msgstr ""
2913
 
2914
  #: pro/app/views/options/form.php:502
2915
+ msgid "If not set, this defaults to RGB value <code>#ababab</code> but you can change it to whatever color you like."
 
 
2916
  msgstr ""
2917
 
2918
  #: pro/app/views/options/form.php:513
2924
  msgstr ""
2925
 
2926
  #: pro/app/views/options/form.php:516
2927
+ msgid "If not set, this defaults to RGB value <code>#551a8b</code> but you can change it to whatever color you like."
 
 
2928
  msgstr ""
2929
 
2930
  #: pro/app/views/options/form.php:527
2936
  msgstr ""
2937
 
2938
  #: pro/app/views/options/form.php:530
2939
+ msgid "If your Website has a long title then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to <code>30</code> characters or less so the Pretty Bar's format looks good across different browsers and screen resolutions."
 
 
 
 
2940
  msgstr ""
2941
 
2942
  #: pro/app/views/options/form.php:541
2948
  msgstr ""
2949
 
2950
  #: pro/app/views/options/form.php:544
2951
+ msgid "If your Website has a long Description (tagline) then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to <code>40</code> characters or less so the Pretty Bar's format looks good across different browsers and screen resolutions."
 
 
 
 
2952
  msgstr ""
2953
 
2954
  #: pro/app/views/options/form.php:555
2960
  msgstr ""
2961
 
2962
  #: pro/app/views/options/form.php:558
2963
+ msgid "If you link to a lot of large Target URLs you may want to adjust this value. It is recommended that you keep this value to <code>40</code> or below so the Pretty Bar's format looks good across different browsers and URL sizes"
 
 
 
2964
  msgstr ""
2965
 
2966
  #: pro/app/views/options/form.php:569
2972
  msgstr ""
2973
 
2974
  #: pro/app/views/options/form.php:572
2975
+ msgid "Make sure this is checked if you want the title of your blog (and link) to show up on the Pretty Bar."
 
 
2976
  msgstr ""
2977
 
2978
  #: pro/app/views/options/form.php:583
2984
  msgstr ""
2985
 
2986
  #: pro/app/views/options/form.php:586
2987
+ msgid "Make sure this is checked if you want your site description to show up on the Pretty Bar."
 
 
2988
  msgstr ""
2989
 
2990
  #: pro/app/views/options/form.php:597
2996
  msgstr ""
2997
 
2998
  #: pro/app/views/options/form.php:600
2999
+ msgid "Make sure this is checked if you want \"share links\" to show up on the Pretty Bar."
 
 
3000
  msgstr ""
3001
 
3002
  #: pro/app/views/options/form.php:611
3008
  msgstr ""
3009
 
3010
  #: pro/app/views/options/form.php:614
3011
+ msgid "Make sure this is checked if you want a link displaying the Target URL to show up on the Pretty Bar."
 
 
3012
  msgstr ""
3013
 
3014
  #: pro/app/views/options/form.php:625 pro/app/views/options/form.php:627
3016
  msgstr ""
3017
 
3018
  #: pro/app/views/options/form.php:628
3019
+ msgid "Check this to hide the pretty link attribution link on the pretty bar.<br/><br/><strong>Wait, before you do this, you might want to leave this un-checked and set the alternate URL of this link to your <em>Pretty Link Pro</em> <a href=\"https://prettylinkpro.com/plp/options/aff-attribution\">Affiliate URL</a> to earn a few bucks while you are at it."
 
 
 
 
 
3020
  msgstr ""
3021
 
3022
  #: pro/app/views/options/form.php:646
3028
  msgstr ""
3029
 
3030
  #: pro/app/views/options/form.php:649
3031
+ msgid "If set, this will replace the Pretty Bars attribution URL. This is a very good place to put your <em>Pretty Link Pro</em> <a href=\"https://prettylinkpro.com/plp/options/aff-attribution-2\">Affiliate Link</a>."
 
 
 
3032
  msgstr ""
3033
 
3034
  #: pro/app/views/options/form.php:663
3044
  msgstr ""
3045
 
3046
  #: pro/app/views/options/form.php:669
3047
+ msgid "Select which buttons you want to be visible on the Social Buttons Bar.<br/><br/><code>Note:</code> In order for the Social Buttons Bar to be visible on Pages and or Posts, you must first enable it in the \"Page &amp; Post Options\" section above."
 
 
 
 
3048
  msgstr ""
3049
 
3050
  #: pro/app/views/options/form.php:692
3056
  msgstr ""
3057
 
3058
  #: pro/app/views/options/form.php:695
3059
+ msgid "This determines where your Social Buttons Placement should appear in relation to content on Pages and/or Posts.<br/><br/><code>Note:</code> If you want this bar to appear then you must enable it in the \"Page and Post Options\" above."
 
 
 
 
3060
  msgstr ""
3061
 
3062
  #: pro/app/views/options/form.php:705
3064
  msgstr ""
3065
 
3066
  #: pro/app/views/options/form.php:706
3067
+ msgid "If you select none, you can still show your Social Buttons by manually adding the <code>[social_buttons_bar]</code> shortcode to your blog posts or <code>&lt;?php the_social_buttons_bar(); ?&gt;</code> template tag to your WordPress Theme."
 
 
 
 
3068
  msgstr ""
3069
 
3070
  #: pro/app/views/options/form.php:731
3080
  msgstr ""
3081
 
3082
  #: pro/app/views/options/form.php:740
3083
+ msgid "This option will give you the ability to turn your website into a link shortening service for your users. Once selected, you can enable the Pretty Link Pro Sidebar Widget or just display the link creation form with the <code>[prli_create_form]</code> shortcode in any post or page on your website."
 
 
 
 
 
3084
  msgstr ""
3085
 
3086
  #: pro/app/views/options/form.php:757
3092
  msgstr ""
3093
 
3094
  #: pro/app/views/options/form.php:760
3095
+ msgid "When a link is created using the public form, the user is typically redirected to a simple page displaying their new pretty link. But, you can specify a page that you want them to be redirected to on your website, using your branding instead by selecting this box and entering the url of the page you want them to go to."
 
 
 
 
 
3096
  msgstr ""
3097
 
3098
  #: pro/app/views/options/form.php:777
3104
  msgstr ""
3105
 
3106
  #: pro/app/views/options/form.php:780
3107
+ msgid "To set this up, create a new page on your WordPress site and make sure the <code>[prli_create_display]</code> appears somewhere on this page -- otherwise the link will never get created. Once this page is created, just enter the full URL to it here. Make sure this URL does npt end with a slash (/)."
 
 
 
 
 
3108
  msgstr ""
3109
 
3110
  #: pro/app/views/options/general.php:8
3116
  msgstr ""
3117
 
3118
  #: pro/app/views/options/general.php:11
3119
+ msgid "Use this option if you want to substitute your actual blog's url with another URL. You must have another valid domain name pointing to this WordPress install before you enable this option. If you are using this option to just get rid of the www in the beginning of your url that is fine -- just make sure your domain works without the www before enabling this option."
 
 
 
 
 
 
3120
  msgstr ""
3121
 
3122
  #: pro/app/views/options/general.php:28 pro/app/views/options/general.php:30
3124
  msgstr ""
3125
 
3126
  #: pro/app/views/options/general.php:31
3127
+ msgid "Enter a valid base url that points at this WordPress install. Make sure this URL does not end with a slash (/)."
 
 
3128
  msgstr ""
3129
 
3130
  #: pro/app/views/options/general.php:47
3136
  msgstr ""
3137
 
3138
  #: pro/app/views/options/general.php:50
3139
+ msgid "Use this option to set the minimum role of users who can access the Admin interface for Pretty Link."
 
 
3140
  msgstr ""
3141
 
3142
  #: pro/app/views/options/general.php:56
3224
  msgstr ""
3225
 
3226
  #: pro/app/views/reports/edit.php:103 pro/app/views/reports/new.php:103
3227
+ msgid "If you want to enable conversion tracking in this report then select a goal link."
 
 
3228
  msgstr ""
3229
 
3230
  #: pro/app/views/reports/list.php:4 pro/app/views/reports/reports.php:7
3280
  msgstr ""
3281
 
3282
  #: pro/app/views/tools/generator.php:10
3283
+ msgid "Alter the options below to customize this Bookmarklet. As you modify the label, redirect type, tracking and group, you will see this bookmarklet update -- when the settings are how you want them, drag the bookmarklet into your toolbar. You can create as many bookmarklets as you want each with different settings."
 
 
 
 
 
3284
  msgstr ""
3285
 
3286
  #: pro/app/views/tools/generator.php:13
4343
  #: script/i18n/pomo/sample/app.php:62
4344
  msgid "Bye\n"
4345
  msgstr ""
4346
+ #. Plugin Name of the plugin/theme
4347
+ msgid "Pretty Link"
4348
+ msgstr ""
4349
 
4350
  #. Plugin URI of the plugin/theme
4351
  msgid "https://prettylinkpro.com/pl/plugin-uri"
4352
  msgstr ""
4353
 
4354
  #. Description of the plugin/theme
4355
+ msgid "Shrink, track and share any URL on the Internet from your WordPress website!"
 
4356
  msgstr ""
4357
 
4358
  #. Author of the plugin/theme
pretty-link.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Pretty Link
4
  Plugin URI: https://prettylinkpro.com/pl/plugin-uri
5
  Description: Shrink, track and share any URL on the Internet from your WordPress website!
6
- Version: 2.0.7
7
  Author: Blair Williams
8
  Author URI: http://blairwilliams.com
9
  Text Domain: pretty-link
3
  Plugin Name: Pretty Link
4
  Plugin URI: https://prettylinkpro.com/pl/plugin-uri
5
  Description: Shrink, track and share any URL on the Internet from your WordPress website!
6
+ Version: 2.0.8
7
  Author: Blair Williams
8
  Author URI: http://blairwilliams.com
9
  Text Domain: pretty-link
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://prettylinkpro.com
4
  Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
5
  Requires at least: 4.7
6
  Tested up to: 4.7.2
7
- Stable tag: 2.0.7
8
 
9
  Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
10
 
@@ -66,6 +66,10 @@ http://blairwilliams.com/w7a
66
 
67
  == Changelog ==
68
 
 
 
 
 
69
  = 2.0.7 =
70
  * Enhanced database performance
71
  * Added code to automatically remove click data from the database that is no longer being used
4
  Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
5
  Requires at least: 4.7
6
  Tested up to: 4.7.2
7
+ Stable tag: 2.0.8
8
 
9
  Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
10
 
66
 
67
  == Changelog ==
68
 
69
+ = 2.0.8 =
70
+ * Fixed a regular expression warning
71
+ * Use PHP's url validation in utils
72
+
73
  = 2.0.7 =
74
  * Enhanced database performance
75
  * Added code to automatically remove click data from the database that is no longer being used