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

Version Description

  • Fixed pixel redirect type tracking
  • Fixed ordering for geo redirects
  • Fixed URL validation
  • Fixed split test reporting
Download this release

Release Info

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

Code changes from version 2.0.8 to 2.0.9

app/controllers/PrliAppController.php CHANGED
@@ -117,12 +117,13 @@ class PrliAppController extends PrliBaseController {
117
  $pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'">'.__('Activate', 'pretty-link').'</a>';
118
  }
119
  else if($plp_update->is_installed()) {
120
- $pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'" class="prli-menu-red">'.__('Activate Pro', 'pretty-link').'</a>';
121
  $pllinks[] = '<a href="https://prettylinkpro.com/pl/plugin-actions/installed/buy" target="_blank" class="prli-menu-red">'.__('Buy', 'pretty-link').'</a>';
122
  $pllinks[] = '<a href="https://prettylinkpro.com/pl/plugin-actions/installed/docs" target="_blank">'.__('Docs', 'pretty-link').'</a>';
123
  }
124
  else {
125
  $pllinks[] = '<a href="https://prettylinkpro.com/pl/plugin-actions/lite/upgrade" class="prli-menu-red" target="_blank">'.__('Upgrade to Pro', 'pretty-link').'</a>';
 
126
  $pllinks[] = '<a href="https://prettylinkpro.com/pl/plugin-actions/lite/docs" target="_blank">'.__('Docs', 'pretty-link').'</a>';
127
  }
128
 
@@ -372,7 +373,6 @@ class PrliAppController extends PrliBaseController {
372
  }
373
  }
374
 
375
-
376
  public function pro_action_needed( $plugin ) {
377
  global $plp_update;
378
 
@@ -381,9 +381,13 @@ class PrliAppController extends PrliBaseController {
381
  $inst_install_url = $plp_update->update_plugin_url();
382
 
383
  ?>
384
- <td colspan="3" class="plugin-update" style="border-left: 4px solid #d54e21; background-color: #fef7f1;">
385
- <div class="update-message"><?php printf(__('Your Pretty Link Pro installation isn\'t quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s', 'pretty-link'), '<a href="'.$inst_install_url.'">', '</a>'); ?></div>
386
- </td>
 
 
 
 
387
  <?php
388
  }
389
  }
117
  $pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'">'.__('Activate', 'pretty-link').'</a>';
118
  }
119
  else if($plp_update->is_installed()) {
120
+ $pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'" class="prli-menu-green">'.__('Activate Pro License', 'pretty-link').'</a>';
121
  $pllinks[] = '<a href="https://prettylinkpro.com/pl/plugin-actions/installed/buy" target="_blank" class="prli-menu-red">'.__('Buy', 'pretty-link').'</a>';
122
  $pllinks[] = '<a href="https://prettylinkpro.com/pl/plugin-actions/installed/docs" target="_blank">'.__('Docs', 'pretty-link').'</a>';
123
  }
124
  else {
125
  $pllinks[] = '<a href="https://prettylinkpro.com/pl/plugin-actions/lite/upgrade" class="prli-menu-red" target="_blank">'.__('Upgrade to Pro', 'pretty-link').'</a>';
126
+ $pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'" class="prli-menu-green">'.__('Activate Pro License', 'pretty-link').'</a>';
127
  $pllinks[] = '<a href="https://prettylinkpro.com/pl/plugin-actions/lite/docs" target="_blank">'.__('Docs', 'pretty-link').'</a>';
128
  }
129
 
373
  }
374
  }
375
 
 
376
  public function pro_action_needed( $plugin ) {
377
  global $plp_update;
378
 
381
  $inst_install_url = $plp_update->update_plugin_url();
382
 
383
  ?>
384
+ <tr class="plugin-update-tr active" id="pretty-link-upgrade" data-slug="pretty-link" data-plugin="pretty-link/pretty-link.php">
385
+ <td colspan="3" class="plugin-update colspanchange">
386
+ <div class="update-message notice inline notice-error notice-alt">
387
+ <p><?php printf(__('Your Pretty Link Pro installation isn\'t quite complete yet. %1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s', 'pretty-link'), '<a href="'.$inst_install_url.'">', '</a>'); ?></p>
388
+ </div>
389
+ </td>
390
+ </tr>
391
  <?php
392
  }
393
  }
app/models/PrliDb.php CHANGED
@@ -129,6 +129,7 @@ class PrliDb {
129
  id int(11) NOT NULL auto_increment,
130
  meta_key varchar(255) default NULL,
131
  meta_value longtext default NULL,
 
132
  link_id int(11) NOT NULL,
133
  created_at datetime NOT NULL,
134
  PRIMARY KEY (id),
129
  id int(11) NOT NULL auto_increment,
130
  meta_key varchar(255) default NULL,
131
  meta_value longtext default NULL,
132
+ meta_order int(4) default 0,
133
  link_id int(11) NOT NULL,
134
  created_at datetime NOT NULL,
135
  PRIMARY KEY (id),
app/models/PrliLinkMeta.php CHANGED
@@ -21,14 +21,21 @@ class PrliLinkMeta {
21
  return $cached[$link_id][$meta_key][(int)$return_var];
22
  }
23
 
24
- $query_str = "SELECT meta_value FROM {$this->table_name} WHERE meta_key=%s and link_id=%d";
25
- $query = $wpdb->prepare($query_str,$meta_key,$link_id);
 
 
 
 
 
 
 
26
 
27
  if($return_var) {
28
  $res = $wpdb->get_var("{$query} LIMIT 1");
29
  }
30
  else {
31
- $res = $wpdb->get_col($query, 0);
32
  }
33
 
34
  $cached[$link_id][$meta_key][(int)$return_var] = $res;
@@ -36,13 +43,9 @@ class PrliLinkMeta {
36
  return $res;
37
  }
38
 
 
39
  public function add_link_meta($link_id, $meta_key, $meta_value) {
40
- global $wpdb;
41
-
42
- $query_str = "INSERT INTO {$this->table_name} " .
43
- '(meta_key,meta_value,link_id,created_at) VALUES (%s,%s,%d,NOW())';
44
- $query = $wpdb->prepare($query_str, $meta_key, $meta_value, $link_id);
45
- return $wpdb->query($query);
46
  }
47
 
48
  public function update_link_meta($link_id, $meta_key, $meta_values) {
@@ -54,19 +57,43 @@ class PrliLinkMeta {
54
 
55
  $status = false;
56
 
57
- foreach($meta_values as $meta_value) {
58
- $status = $this->add_link_meta($link_id, $meta_key, $meta_value);
59
  }
60
 
61
  return $status;
62
  }
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  public function delete_link_meta($link_id, $meta_key) {
65
  global $wpdb;
66
 
67
- $query_str = "DELETE FROM {$this->table_name} " .
68
- "WHERE meta_key=%s AND link_id=%d";
69
- $query = $wpdb->prepare($query_str, $meta_key, $link_id);
 
 
 
 
 
70
 
71
  return $wpdb->query($query);
72
  }
@@ -74,9 +101,15 @@ class PrliLinkMeta {
74
  public function delete_link_metas($link_id) {
75
  global $wpdb;
76
 
77
- $query_str = "DELETE FROM {$this->table_name} WHERE link_id=%d";
78
- $query = $wpdb->prepare($query_str, $meta_key, $link_id);
 
 
 
 
79
 
80
  return $wpdb->query($query);
81
  }
 
82
  } //End class
 
21
  return $cached[$link_id][$meta_key][(int)$return_var];
22
  }
23
 
24
+ $query = $wpdb->prepare("
25
+ SELECT meta_value
26
+ FROM {$this->table_name}
27
+ WHERE meta_key=%s
28
+ AND link_id=%d
29
+ ",
30
+ $meta_key,
31
+ $link_id
32
+ );
33
 
34
  if($return_var) {
35
  $res = $wpdb->get_var("{$query} LIMIT 1");
36
  }
37
  else {
38
+ $res = $wpdb->get_col("{$query} ORDER BY meta_order, id", 0);
39
  }
40
 
41
  $cached[$link_id][$meta_key][(int)$return_var] = $res;
43
  return $res;
44
  }
45
 
46
+ // This is just an alias for update_link_meta
47
  public function add_link_meta($link_id, $meta_key, $meta_value) {
48
+ return $this->update_link_meta($link_id, $meta_key, $meta_value);
 
 
 
 
 
49
  }
50
 
51
  public function update_link_meta($link_id, $meta_key, $meta_values) {
57
 
58
  $status = false;
59
 
60
+ foreach($meta_values as $meta_order => $meta_value) {
61
+ $status = $this->add_link_meta_item($link_id, $meta_key, $meta_value, $meta_order);
62
  }
63
 
64
  return $status;
65
  }
66
 
67
+ // Add a single link meta item
68
+ private function add_link_meta_item($link_id, $meta_key, $meta_value, $meta_order=0) {
69
+ global $wpdb;
70
+
71
+ $query = $wpdb->prepare("
72
+ INSERT INTO {$this->table_name}
73
+ (meta_key,meta_value,link_id,meta_order,created_at)
74
+ VALUES (%s,%s,%d,%d,%s)
75
+ ",
76
+ $meta_key,
77
+ $meta_value,
78
+ $link_id,
79
+ $meta_order,
80
+ PrliUtils::db_now()
81
+ );
82
+
83
+ return $wpdb->query($query);
84
+ }
85
+
86
  public function delete_link_meta($link_id, $meta_key) {
87
  global $wpdb;
88
 
89
+ $query = $wpdb->prepare("
90
+ DELETE FROM {$this->table_name}
91
+ WHERE meta_key=%s
92
+ AND link_id=%d
93
+ ",
94
+ $meta_key,
95
+ $link_id
96
+ );
97
 
98
  return $wpdb->query($query);
99
  }
101
  public function delete_link_metas($link_id) {
102
  global $wpdb;
103
 
104
+ $query = $wpdb->prepare("
105
+ DELETE FROM {$this->table_name}
106
+ WHERE link_id=%d
107
+ ",
108
+ $link_id
109
+ );
110
 
111
  return $wpdb->query($query);
112
  }
113
+
114
  } //End class
115
+
app/models/PrliUtils.php CHANGED
@@ -256,7 +256,7 @@ class PrliUtils {
256
  $pretty_link_target = apply_filters( 'prli_target_url', array( 'url' => $pretty_link->url, 'link_id' => $pretty_link->id, 'redirect_type' => $pretty_link->redirect_type ) );
257
 
258
  // Error out when url is blank
259
- if(!isset($pretty_link_target['url']) || empty($pretty_link_target['url'])) {
260
  return false;
261
  }
262
 
@@ -1040,11 +1040,14 @@ class PrliUtils {
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) {
@@ -1360,5 +1363,27 @@ class PrliUtils {
1360
  header("HTTP/1.1 {$status} {$codes[$status]}", true, $status);
1361
  exit($message);
1362
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1363
  }
1364
 
256
  $pretty_link_target = apply_filters( 'prli_target_url', array( 'url' => $pretty_link->url, 'link_id' => $pretty_link->id, 'redirect_type' => $pretty_link->redirect_type ) );
257
 
258
  // Error out when url is blank
259
+ if($pretty_link->redirect_type != 'pixel' && (!isset($pretty_link_target['url']) || empty($pretty_link_target['url']))) {
260
  return false;
261
  }
262
 
1040
  }
1041
 
1042
  public static function is_url($str) {
1043
+ //For now we're not going to validate this - there's too many possible protocols/schemes to validate now
1044
+ return true;
1045
+
1046
  // This uses the @diegoperini URL matching regex adapted for PHP from https://gist.github.com/dperini/729294
1047
+ // return preg_match('_^(?::/?/?)(?:\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);
1048
 
1049
  //Let's see how PHP's built in validator does instead?
1050
+ //return apply_filters('prli_is_valid_url', (filter_var($str, FILTER_VALIDATE_URL) !== FALSE), $str);
1051
  }
1052
 
1053
  public static function is_email($str) {
1363
  header("HTTP/1.1 {$status} {$codes[$status]}", true, $status);
1364
  exit($message);
1365
  }
1366
+
1367
+ //Coupons rely on this be careful changing it
1368
+ public static function get_date_from_ts($ts, $format = 'M d, Y') {
1369
+ if($ts > 0) {
1370
+ return gmdate($format, $ts);
1371
+ }
1372
+ else {
1373
+ return gmdate($format, time());
1374
+ }
1375
+ }
1376
+
1377
+ public static function db_date_to_ts($mysql_date) {
1378
+ return strtotime($mysql_date);
1379
+ }
1380
+
1381
+ public static function ts_to_mysql_date($ts, $format='Y-m-d H:i:s') {
1382
+ return gmdate($format, $ts);
1383
+ }
1384
+
1385
+ public static function db_now($format='Y-m-d H:i:s') {
1386
+ return self::ts_to_mysql_date(time(),$format);
1387
+ }
1388
  }
1389
 
css/menu-styles.css CHANGED
@@ -30,6 +30,20 @@
30
  color: white !important;
31
  }
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  .prli-red-notice {
34
  color: white;
35
  box-sizing: border-box;
30
  color: white !important;
31
  }
32
 
33
+ .prli-menu-green {
34
+ font-weight: 900;
35
+ color: limegreen !important;
36
+ }
37
+
38
+ .prli-menu-green:hover {
39
+ color: #01B8EE !important;
40
+ }
41
+
42
+ /* For the menu items */
43
+ .current .prli-menu-green {
44
+ color: white !important;
45
+ }
46
+
47
  .prli-red-notice {
48
  color: white;
49
  box-sizing: border-box;
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.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,6 +17,8 @@ msgstr ""
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
@@ -72,7 +74,6 @@ msgstr ""
72
 
73
  #: app/controllers/PrliAppController.php:99
74
  #: app/controllers/PrliAppController.php:102
75
- #: app/controllers/PrliAppController.php:120
76
  msgid "Activate Pro"
77
  msgstr ""
78
 
@@ -84,7 +85,7 @@ msgstr ""
84
 
85
  #: app/controllers/PrliAppController.php:116
86
  #: app/controllers/PrliAppController.php:122
87
- #: app/controllers/PrliAppController.php:126
88
  msgid "Docs"
89
  msgstr ""
90
 
@@ -92,25 +93,38 @@ msgstr ""
92
  msgid "Activate"
93
  msgstr ""
94
 
 
 
 
 
 
95
  #: app/controllers/PrliAppController.php:121
96
  msgid "Buy"
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
104
  msgid "Pretty Link Pro Successfully Uninstalled."
105
  msgstr ""
106
 
107
- #: app/controllers/PrliAppController.php:347
108
  msgid "Pretty Link Quick Add"
109
  msgstr ""
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,11 +227,15 @@ msgid "Options saved."
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,7 +474,9 @@ msgid "Edit %s"
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,7 +484,9 @@ msgid "Delete %s"
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,7 +560,9 @@ msgid "Link URL must be a correctly formatted url"
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,7 +570,11 @@ msgid "Pretty Link slugs must not end with a slash (\"/\")"
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,7 +590,9 @@ msgid "Rate Pretty Link"
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,7 +651,9 @@ msgstr ""
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,23 +675,32 @@ msgid "Pretty Link Pro isn't able to get critical automatic updates"
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,23 +708,34 @@ msgid "ACTION REQUIRED"
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,7 +783,9 @@ msgid "Installed & Inactive"
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,7 +797,10 @@ msgid "Pretty Link Pro License"
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,7 +812,9 @@ msgid "Activate License Key on %s"
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,7 +846,9 @@ msgid "Activations:"
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,7 +1036,9 @@ msgid "Current Group"
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,7 +1107,10 @@ msgid "This is the method of redirection for your link."
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,7 +1131,9 @@ msgid "Pretty Link*"
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,7 +1141,9 @@ msgid "Title"
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,7 +1151,10 @@ msgid "Notes"
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,15 +1227,22 @@ msgid "Google Analytics Tracking"
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,7 +1258,9 @@ msgid "Add Pretty Link"
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,7 +1324,9 @@ msgid "WordPress Must be Configured:"
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,7 +1346,8 @@ msgid "Default Link Options"
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,7 +1379,14 @@ msgid "Use fix for index.php Permalink Structure"
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,7 +1398,9 @@ msgid "Tracking Style"
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,7 +1424,11 @@ msgid "Excluded IP Addresses"
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,7 +1440,10 @@ msgid "Automatically Trim Clicks"
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,7 +1451,10 @@ msgid "Filter Robots"
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,7 +1466,11 @@ msgid "Whiltelist IP Addresses"
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,7 +1623,11 @@ msgid "Install Pretty Link Bookmarklet"
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,7 +1635,9 @@ msgid "Show iPhone Bookmarklet Instructions"
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,11 +1649,16 @@ msgid "Tap the + button at the bottom of the screen"
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,15 +1674,25 @@ msgid "To save the changes hit \"Bookmarks\" and <strong>you're done!"
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,11 +1704,16 @@ msgid "Clear clicks 30 days or older"
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,11 +1725,16 @@ msgid "Clear clicks 90 days or older"
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,7 +1746,9 @@ msgid "Clear all clicks"
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,7 +1777,9 @@ msgid "Keywords"
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,7 +1880,8 @@ msgid "This link is set to expire after the date %s"
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,11 +1905,16 @@ msgid "This link has additional Technology Dependent Conditional Target URLs"
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,11 +1926,15 @@ msgid "Keyword Links Per Page is required"
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,7 +2077,9 @@ msgid "visit"
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,7 +2194,12 @@ msgid "Import Pretty Links"
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,7 +2211,9 @@ msgid "Links Import File"
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,7 +2281,11 @@ msgid "Expiration Type"
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,7 +2293,11 @@ msgid "Number of Clicks"
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,7 +2305,9 @@ msgid "Expiration Date"
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,7 +2319,11 @@ msgid "Redirect to URL when Expired"
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,7 +2335,9 @@ msgid "Expired URL"
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,7 +2345,9 @@ msgid "Auto-Replace Keywords"
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,7 +2359,11 @@ msgid "Auto-Replace URLs"
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,7 +2371,12 @@ msgid "Head Scripts"
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,7 +2388,9 @@ msgid "Dynamic Redirection Options"
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,7 +2410,10 @@ msgid "Target URL Rotations"
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,7 +2433,10 @@ msgid "Split Test This Link"
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,7 +2461,9 @@ msgid "Geographic Redirects"
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,7 +2476,9 @@ msgid "Technology Redirects"
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,7 +2486,11 @@ msgid "Time Period Redirects"
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,7 +2502,12 @@ msgid "Technology Redirection Countries"
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,7 +2520,9 @@ msgid "Geographic Redirection URL"
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,7 +2544,15 @@ msgid "Base Slug Prefix"
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,7 +2561,9 @@ msgid "Slug Character Count"
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,7 +2572,10 @@ msgid "Enable Google Analytics"
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,7 +2587,9 @@ msgid "Generate QR Codes"
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,7 +2598,11 @@ msgid "Global Head Scripts"
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,7 +2622,11 @@ msgid "Technology Redirection Device"
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,7 +2659,9 @@ msgid "Technology Redirection OS"
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,7 +2741,9 @@ msgid "Technology Redirection URL"
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,7 +2755,8 @@ msgid "Start of Time Period"
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,7 +2776,9 @@ msgid "Time Period Redirect URL"
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,7 +2810,9 @@ msgid "Show Social Buttons on %s"
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,7 +2828,10 @@ msgid "Enable Keyword and URL Auto Replacement"
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,7 +2843,9 @@ msgid "Set Keyword Replacement Thresholds"
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,7 +2857,9 @@ msgid "Set Maximum Keywords per Page"
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,7 +2883,10 @@ msgid "Open Keyword Replacement Links in New Window"
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,7 +2898,10 @@ msgid "Add 'nofollow' attribute to all Keyword Pretty Links"
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,7 +2913,10 @@ msgid "Add custom CSS to your keyword replacement links"
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,7 +2928,10 @@ msgid "Add custom hover CSS to your keyword replacement links"
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,7 +2943,11 @@ msgid "Automatically Add a Link to Disclosures"
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,7 +2955,9 @@ msgid "Disclosures Link URL"
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,7 +2969,9 @@ msgid "Disclosures Link Text"
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,7 +2983,9 @@ msgid "Disclosures Link Position"
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,7 +3009,10 @@ msgid "Automatically Add Affiliate Link Disclosures to Keyword Replacements"
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,7 +3024,9 @@ msgid "Keyword Link Disclosure Text"
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,7 +3038,9 @@ msgid "Replace All non-Pretty Link URLs With Pretty Link URLs"
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,7 +3052,13 @@ msgid "Do not replace links from these domains"
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,7 +3070,9 @@ msgid "Replace Keywords and URLs in Comments"
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,7 +3084,15 @@ msgid "Replace Keywords and URLs in Feeds"
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,7 +3100,13 @@ msgid "Index Replacements"
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,7 +3114,9 @@ msgid "Keyword Index Status"
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,7 +3136,9 @@ msgid "URL Replacements Index Status"
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,7 +3158,9 @@ msgid "Pretty Bar Image URL"
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,7 +3172,10 @@ msgid "Pretty Bar Background Image URL"
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,7 +3187,9 @@ msgid "Pretty Bar Background Color"
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,7 +3201,9 @@ msgid "Pretty Bar Text Color"
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,7 +3215,9 @@ msgid "Pretty Bar Link Color"
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,7 +3229,9 @@ msgid "Pretty Bar Link Hover Color"
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,7 +3243,9 @@ msgid "Pretty Bar Visited Link Color"
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,7 +3257,11 @@ msgid "Pretty Bar Title Char Limit"
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,7 +3273,11 @@ msgid "Pretty Bar Description Char Limit"
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,7 +3289,10 @@ msgid "Pretty Bar Target URL Char Limit"
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,7 +3304,9 @@ msgid "Pretty Bar Show Title"
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,7 +3318,9 @@ msgid "Pretty Bar Show Description"
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,7 +3332,9 @@ msgid "Pretty Bar Show Share Links"
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,7 +3346,9 @@ msgid "Pretty Bar Show Target URL Links"
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,7 +3356,12 @@ msgid "Hide Attribution Link"
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,7 +3373,10 @@ msgid "Alternate Pretty Bar Attribution URL"
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,7 +3392,11 @@ msgid "Social Buttons"
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,7 +3408,11 @@ msgid "Social Buttons Placement"
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,7 +3420,11 @@ msgid "Social Buttons Manual Placement"
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,7 +3440,12 @@ msgid "Enable Public Link Creation on this Site"
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,7 +3457,12 @@ msgid "Use Public Link Display Page"
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,7 +3474,12 @@ msgid "Public Pretty Link Creation Display URL"
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,7 +3491,13 @@ msgid "Use an Alternate Shortlink URL"
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,7 +3505,9 @@ msgid "Shortlink URL"
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,7 +3519,9 @@ msgid "Set Minimum Role Required To Access Pretty Link"
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,7 +3609,9 @@ msgid "Select Your Goal Link (optional):"
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,7 +3667,12 @@ msgid "Customize Pretty Link Bookmarklet"
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,16 +4735,14 @@ msgstr ""
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
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.9\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
7
+ "POT-Creation-Date: 2017-05-23 22:57:21+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
+ #. #-#-#-#-# pretty-link.pot (Pretty Link 2.0.9) #-#-#-#-#
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
74
 
75
  #: app/controllers/PrliAppController.php:99
76
  #: app/controllers/PrliAppController.php:102
 
77
  msgid "Activate Pro"
78
  msgstr ""
79
 
85
 
86
  #: app/controllers/PrliAppController.php:116
87
  #: app/controllers/PrliAppController.php:122
88
+ #: app/controllers/PrliAppController.php:127
89
  msgid "Docs"
90
  msgstr ""
91
 
93
  msgid "Activate"
94
  msgstr ""
95
 
96
+ #: app/controllers/PrliAppController.php:120
97
+ #: app/controllers/PrliAppController.php:126
98
+ msgid "Activate Pro License"
99
+ msgstr ""
100
+
101
  #: app/controllers/PrliAppController.php:121
102
  msgid "Buy"
103
  msgstr ""
104
 
105
+ #: app/controllers/PrliAppController.php:280
106
+ msgid ""
107
+ "You're almost done!<br/>%1$sFinish your Re-Install of Pretty Link Pro%2$s"
108
  msgstr ""
109
 
110
+ #: app/controllers/PrliAppController.php:287
111
  msgid "Pretty Link Pro Successfully Uninstalled."
112
  msgstr ""
113
 
114
+ #: app/controllers/PrliAppController.php:348
115
  msgid "Pretty Link Quick Add"
116
  msgstr ""
117
 
118
+ #: app/controllers/PrliAppController.php:387
119
+ msgid ""
120
+ "Your Pretty Link Pro installation isn't quite complete yet. "
121
+ "%1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s"
122
+ msgstr ""
123
+
124
+ #: app/controllers/PrliAppController.php:408
125
+ msgid ""
126
+ "Your Pretty Link Pro installation isn't quite complete yet.<br/>"
127
+ "%1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s"
128
  msgstr ""
129
 
130
  #: app/controllers/PrliClicksController.php:89
227
  msgstr ""
228
 
229
  #: app/controllers/PrliOptionsController.php:75
230
+ msgid ""
231
+ "Excluded IP Addresses must be a comma separated list of IPv4 or IPv6 "
232
+ "addresses or ranges."
233
  msgstr ""
234
 
235
  #: app/controllers/PrliOptionsController.php:79
236
+ msgid ""
237
+ "Whitlist IP Addresses must be a comma separated list of IPv4 or IPv6 "
238
+ "addresses or ranges."
239
  msgstr ""
240
 
241
  #: app/controllers/PrliPopupController.php:62
474
  msgstr ""
475
 
476
  #: app/helpers/PrliLinksHelper.php:115
477
+ msgid ""
478
+ "Are you sure you want to delete your %s Pretty Link? This will delete the "
479
+ "Pretty Link and all of the statistical data about it in your database."
480
  msgstr ""
481
 
482
  #: app/helpers/PrliLinksHelper.php:115
484
  msgstr ""
485
 
486
  #: app/helpers/PrliLinksHelper.php:116
487
+ msgid ""
488
+ "Are you sure you want to reset your %s Pretty Link? This will delete all of "
489
+ "the statistical data about this Pretty Link in your database."
490
  msgstr ""
491
 
492
  #: app/helpers/PrliLinksHelper.php:116
560
  msgstr ""
561
 
562
  #: app/models/PrliLink.php:575
563
+ msgid ""
564
+ "Pretty Link slugs must not contain question marks, ampersands or number "
565
+ "signs."
566
  msgstr ""
567
 
568
  #: app/models/PrliLink.php:579
570
  msgstr ""
571
 
572
  #: app/models/PrliLink.php:584
573
+ msgid ""
574
+ "This Pretty Link Slug is already taken. Check to make sure it isn't being "
575
+ "used by another pretty link, post, page, category or tag slug. If none of "
576
+ "these are true then check to see that this slug isn't the name of a file in "
577
+ "the root folder of your wordpress install."
578
  msgstr ""
579
 
580
  #: app/models/PrliUtils.php:93
590
  msgstr ""
591
 
592
  #: app/views/admin/popups/rating.php:7
593
+ msgid ""
594
+ "If you enjoy using Pretty Link would you mind taking a moment to rate it on "
595
+ "WordPress.org? It won't take more than a minute."
596
  msgstr ""
597
 
598
  #: app/views/admin/popups/rating.php:8
651
 
652
  #: app/views/admin/popups/upgrade.php:17 app/views/admin/update/license.php:45
653
  #: app/views/links/form.php:233
654
+ msgid ""
655
+ "Plus, upgrading is fast, easy and won't disrupt any of your existing links "
656
+ "or data. And there's even a 14 day money back guarantee."
657
  msgstr ""
658
 
659
  #: app/views/admin/popups/upgrade.php:18 app/views/admin/update/license.php:47
675
  msgstr ""
676
 
677
  #: app/views/admin/update/activation_warning.php:8
678
+ msgid ""
679
+ "It looks like you used to have Pretty Link Pro activated with a username and "
680
+ "password but now you need a license key to activate it."
681
  msgstr ""
682
 
683
  #: app/views/admin/update/activation_warning.php:9
684
+ msgid ""
685
+ "You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s"
686
  msgstr ""
687
 
688
  #: app/views/admin/update/activation_warning.php:10
689
+ msgid ""
690
+ "After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro"
691
+ "\" admin page,%2$s you'll start getting updates again."
692
  msgstr ""
693
 
694
  #: app/views/admin/update/activation_warning.php:15
695
+ msgid ""
696
+ "You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to "
697
+ "enable automatic updates today."
698
  msgstr ""
699
 
700
  #: app/views/admin/update/activation_warning.php:16
701
+ msgid ""
702
+ "After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro"
703
+ "\" admin page,%2$s you'll start getting automatic updates."
704
  msgstr ""
705
 
706
  #: app/views/admin/update/addon_popup.php:4
708
  msgstr ""
709
 
710
  #: app/views/admin/update/addon_popup.php:5
711
+ msgid ""
712
+ "The %s features in your Pretty Link options have been moved from Pretty Link "
713
+ "into a separate plugin."
714
  msgstr ""
715
 
716
  #: app/views/admin/update/addon_popup.php:6
717
+ msgid ""
718
+ "Why you ask? Well, it's to streamline and increase the performance of Pretty "
719
+ "Link for you."
720
  msgstr ""
721
 
722
  #: app/views/admin/update/addon_popup.php:9
723
+ msgid ""
724
+ "And good for you, it looks like you've already got the %1$s Add-on "
725
+ "installed. Just click the \"Activate %2$s Add-on\" button below and you'll "
726
+ "get all these features back now."
727
  msgstr ""
728
 
729
  #: app/views/admin/update/addon_popup.php:11
730
+ msgid ""
731
+ "Luckily it's easy to get these features back now. Just click the \"Install "
732
+ "%s Add-on\" button below."
733
  msgstr ""
734
 
735
  #: app/views/admin/update/addon_popup.php:12
736
+ msgid ""
737
+ "If you have problems with the auto-install please refer to %1$sthe user "
738
+ "manual%2$s for manual install instructions."
739
  msgstr ""
740
 
741
  #: app/views/admin/update/addon_popup.php:18
783
  msgstr ""
784
 
785
  #: app/views/admin/update/edge_updates.php:4
786
+ msgid ""
787
+ "Include Pretty Link Pro edge (development) releases in automatic updates "
788
+ "(not recommended for production websites)"
789
  msgstr ""
790
 
791
  #: app/views/admin/update/edge_updates.php:4
797
  msgstr ""
798
 
799
  #: app/views/admin/update/license.php:7
800
+ msgid ""
801
+ "You must have a License Key to enable automatic updates for Pretty Link Pro. "
802
+ "If you don't have a License please go to %1$s to get one. If you do have a "
803
+ "license you can login at %2$s to manage your licenses and site activations."
804
  msgstr ""
805
 
806
  #: app/views/admin/update/license.php:13
812
  msgstr ""
813
 
814
  #: app/views/admin/update/license.php:30 app/views/links/form.php:221
815
+ msgid ""
816
+ "It looks like you haven't %1$supgraded to Pretty Link Pro%2$s yet. Here are "
817
+ "just a few things you could be doing with pro:"
818
  msgstr ""
819
 
820
  #: app/views/admin/update/license.php:49 app/views/links/form.php:237
846
  msgstr ""
847
 
848
  #: app/views/admin/update/license.php:72
849
+ msgid ""
850
+ "Are you sure? Pretty Link Pro will not be functional on %s if this License "
851
+ "Key is deactivated."
852
  msgstr ""
853
 
854
  #: app/views/admin/update/license.php:72
1036
  msgstr ""
1037
 
1038
  #: app/views/groups/edit.php:48 app/views/groups/new.php:52
1039
+ msgid ""
1040
+ "Select some links for this group. <strong>Note: each link can only be in one "
1041
+ "group at a time.</strong>"
1042
  msgstr ""
1043
 
1044
  #: app/views/groups/edit.php:54 app/views/links/edit.php:16
1107
  msgstr ""
1108
 
1109
  #: app/views/links/form.php:24
1110
+ msgid ""
1111
+ "Make your life easier by upgrading to %1$sPretty Link Pro%2$s -- get more "
1112
+ "redirection types, speed, automations and <b>results from your links</b> by "
1113
+ "%1$sgoing pro today!%2$s"
1114
  msgstr ""
1115
 
1116
  #: app/views/links/form.php:31
1131
  msgstr ""
1132
 
1133
  #: app/views/links/form.php:48
1134
+ msgid ""
1135
+ "This is how your pretty link will appear. You can edit the Pretty Link slug "
1136
+ "here."
1137
  msgstr ""
1138
 
1139
  #: app/views/links/form.php:57 app/views/links/form.php:60
1141
  msgstr ""
1142
 
1143
  #: app/views/links/form.php:61
1144
+ msgid ""
1145
+ "Leave this blank and Pretty Link will attempt to detect the title from the "
1146
+ "target url. Alternatively you can enter a custom title here."
1147
  msgstr ""
1148
 
1149
  #: app/views/links/form.php:70 app/views/links/form.php:73
1151
  msgstr ""
1152
 
1153
  #: app/views/links/form.php:74
1154
+ msgid ""
1155
+ "This is a field where you can enter notes about a particular link. This "
1156
+ "notes field is mainly for your own link management needs. It isn't currently "
1157
+ "used anywhere on the front end."
1158
  msgstr ""
1159
 
1160
  #: app/views/links/form.php:84
1227
  msgstr ""
1228
 
1229
  #: app/views/links/form.php:170
1230
+ msgid ""
1231
+ "Requires the Google Analyticator, Google Analytics by MonsterInsights "
1232
+ "(formerly Yoast) or Google Analytics Plugin installed and configured for "
1233
+ "this to work."
1234
  msgstr ""
1235
 
1236
  #: app/views/links/form.php:180
1237
+ msgid ""
1238
+ "It appears that <strong>%s</strong> is currently installed. Pretty Link will "
1239
+ "attempt to use its settings to track this link."
1240
  msgstr ""
1241
 
1242
  #: app/views/links/form.php:185
1243
+ msgid ""
1244
+ "No Google Analytics Plugin is currently installed. Pretty Link cannot track "
1245
+ "links using Google Analytics until one is."
1246
  msgstr ""
1247
 
1248
  #: app/views/links/form.php:198
1258
  msgstr ""
1259
 
1260
  #: app/views/links/list.php:19
1261
+ msgid ""
1262
+ "WordPress Must be Configured:</strong> Pretty Link won't work until you "
1263
+ "select a Permalink Structure other than 'Default'"
1264
  msgstr ""
1265
 
1266
  #: app/views/links/list.php:19 app/views/options/form.php:12
1324
  msgstr ""
1325
 
1326
  #: app/views/options/form.php:12
1327
+ msgid ""
1328
+ "Pretty Link won't work until you select a Permalink Structure other than "
1329
+ "'Default'"
1330
  msgstr ""
1331
 
1332
  #: app/views/options/form.php:37
1346
  msgstr ""
1347
 
1348
  #: app/views/options/form.php:61
1349
+ msgid ""
1350
+ "Select the type of redirection you want your newly created links to have."
1351
  msgstr ""
1352
 
1353
  #: app/views/options/form.php:70 app/views/options/form.php:72
1379
  msgstr ""
1380
 
1381
  #: app/views/options/form.php:97
1382
+ msgid ""
1383
+ "This option should ONLY be checked if you have elements in your permalink "
1384
+ "structure that must be present in any link on your site. For example, some "
1385
+ "WordPress installs don't have the benefit of full rewrite capabilities and "
1386
+ "in this case you'd need an index.php included in each link (http://example."
1387
+ "com/index.php/mycoolslug instead of http://example.com/mycoolslug). If this "
1388
+ "is the case for you then check this option but the vast majority of users "
1389
+ "will want to keep this unchecked."
1390
  msgstr ""
1391
 
1392
  #: app/views/options/form.php:110
1398
  msgstr ""
1399
 
1400
  #: app/views/options/form.php:118
1401
+ msgid ""
1402
+ "Changing your tracking style can affect the accuracy of your existing "
1403
+ "statistics. Extended mode must be used for Conversion reporting."
1404
  msgstr ""
1405
 
1406
  #: app/views/options/form.php:122
1424
  msgstr ""
1425
 
1426
  #: app/views/options/form.php:133
1427
+ msgid ""
1428
+ "Enter IP Addresses or IP Ranges you want to exclude from your Click data and "
1429
+ "Stats. Each IP Address should be separated by commas. Example: 192.168.0.1, "
1430
+ "192.168.2.1, 192.168.3.4 or 192.168.*.*<br/><br/><strong>FYI, your current "
1431
+ "IP address is %s."
1432
  msgstr ""
1433
 
1434
  #: app/views/options/form.php:143
1440
  msgstr ""
1441
 
1442
  #: app/views/options/form.php:146
1443
+ msgid ""
1444
+ "Will automatically delete all hits older than 90 days. We strongly recommend "
1445
+ "doing this to keep your database performance up. This will permanently "
1446
+ "delete this click data, and is not undo-able. "
1447
  msgstr ""
1448
 
1449
  #: app/views/options/form.php:155 app/views/options/form.php:157
1451
  msgstr ""
1452
 
1453
  #: app/views/options/form.php:158
1454
+ msgid ""
1455
+ "Filter known Robots and unidentifiable browser clients from your click data, "
1456
+ "stats and reports. Works best if Tracking Style above is set to 'Extended "
1457
+ "Tracking'."
1458
  msgstr ""
1459
 
1460
  #: app/views/options/form.php:174
1466
  msgstr ""
1467
 
1468
  #: app/views/options/form.php:177
1469
+ msgid ""
1470
+ "Enter IP Addresses or IP Ranges you want to always include in your Click "
1471
+ "data and Stats even if they are flagged as robots. Each IP Address should be "
1472
+ "separated by commas. Example: 192.168.0.1, 192.168.2.1, 192.168.3.4 or "
1473
+ "192.168.*.*"
1474
  msgstr ""
1475
 
1476
  #: app/views/shared/link-table-nav.php:17
1623
  msgstr ""
1624
 
1625
  #: app/views/tools/form.php:29
1626
+ msgid ""
1627
+ "Just drag this \"Get PrettyLink\" link to your toolbar to install the "
1628
+ "bookmarklet. As you browse the web, you can just click this bookmarklet to "
1629
+ "create a pretty link from the current url you're looking at. <a href="
1630
+ "\"http://blairwilliams.com/pretty-link-bookmarklet/\">(more help)</a>"
1631
  msgstr ""
1632
 
1633
  #: app/views/tools/form.php:31
1635
  msgstr ""
1636
 
1637
  #: app/views/tools/form.php:35
1638
+ msgid ""
1639
+ "<strong>Note:</strong> iPhone users can install this bookmarklet in their "
1640
+ "Safari to create Pretty Links with the following steps:"
1641
  msgstr ""
1642
 
1643
  #: app/views/tools/form.php:37
1649
  msgstr ""
1650
 
1651
  #: app/views/tools/form.php:39
1652
+ msgid ""
1653
+ "Choose to share the page, then click on \"Bookmark\". We recommend saving it "
1654
+ "in your Favorites folder. Rename your bookmark to \"Get PrettyLink\" (or "
1655
+ "whatever you want) and then \"Save\""
1656
  msgstr ""
1657
 
1658
  #: app/views/tools/form.php:40
1659
+ msgid ""
1660
+ "Navigate through your Bookmarks until you find the new bookmark and click "
1661
+ "\"Edit\""
1662
  msgstr ""
1663
 
1664
  #: app/views/tools/form.php:41
1674
  msgstr ""
1675
 
1676
  #: app/views/tools/form.php:43
1677
+ msgid ""
1678
+ "Now when you find a page you want to save off as a Pretty Link, just click "
1679
+ "the \"Bookmarks\" icon at the bottom of the screen and select your \"Get "
1680
+ "PrettyLink\" bookmarklet."
1681
  msgstr ""
1682
 
1683
  #: app/views/tools/form.php:50
1684
+ msgid ""
1685
+ "Pretty Link is already automatically trimming Clicks older than 90 days. "
1686
+ "Although not necessary, you can still use the buttons below to force click "
1687
+ "trimming."
1688
  msgstr ""
1689
 
1690
  #: app/views/tools/form.php:53
1691
+ msgid ""
1692
+ "***WARNING*** If you click OK you will delete ALL of the Click data that is "
1693
+ "older than 30 days. Your data will be gone forever -- no way to retreive it. "
1694
+ "Do not click OK unless you are absolutely sure you want to delete this data "
1695
+ "because there is no going back!"
1696
  msgstr ""
1697
 
1698
  #: app/views/tools/form.php:53
1704
  msgstr ""
1705
 
1706
  #: app/views/tools/form.php:56
1707
+ msgid ""
1708
+ "This will clear all clicks in your database that are older than 30 days."
1709
  msgstr ""
1710
 
1711
  #: app/views/tools/form.php:58
1712
+ msgid ""
1713
+ "***WARNING*** If you click OK you will delete ALL of the Click data that is "
1714
+ "older than 90 days. Your data will be gone forever -- no way to retreive it. "
1715
+ "Do not click OK unless you are absolutely sure you want to delete this data "
1716
+ "because there is no going back!"
1717
  msgstr ""
1718
 
1719
  #: app/views/tools/form.php:58
1725
  msgstr ""
1726
 
1727
  #: app/views/tools/form.php:61
1728
+ msgid ""
1729
+ "This will clear all clicks in your database that are older than 90 days."
1730
  msgstr ""
1731
 
1732
  #: app/views/tools/form.php:65
1733
+ msgid ""
1734
+ "***WARNING*** If you click OK you will delete ALL of the Click data in your "
1735
+ "Database. Your data will be gone forever -- no way to retreive it. Do not "
1736
+ "click OK unless you are absolutely sure you want to delete all your data "
1737
+ "because there is no going back!"
1738
  msgstr ""
1739
 
1740
  #: app/views/tools/form.php:65
1746
  msgstr ""
1747
 
1748
  #: app/views/tools/form.php:68
1749
+ msgid ""
1750
+ "Seriously, only click this link if you want to delete all the Click data in "
1751
+ "your database."
1752
  msgstr ""
1753
 
1754
  #: pro/app/controllers/PlpAppController.php:165
1777
  msgstr ""
1778
 
1779
  #: pro/app/controllers/PlpLinksController.php:213
1780
+ msgid ""
1781
+ "Your URL Replacements must be formatted as a comma separated list of "
1782
+ "properly formatted URLs (http[s]://example.com/whatever)"
1783
  msgstr ""
1784
 
1785
  #: pro/app/controllers/PlpLinksController.php:224
1880
  msgstr ""
1881
 
1882
  #: pro/app/controllers/PlpLinksController.php:846
1883
+ msgid ""
1884
+ "This link expired after %d clicks and will now cause a 404 error when visited"
1885
  msgstr ""
1886
 
1887
  #: pro/app/controllers/PlpLinksController.php:849
1905
  msgstr ""
1906
 
1907
  #: pro/app/controllers/PlpLinksController.php:872
1908
+ msgid ""
1909
+ "A Time Period Redirect is currently active for this link. When visited it "
1910
+ "will currently redirect to %s rather than the Target URL unless the link is "
1911
+ "expired."
1912
  msgstr ""
1913
 
1914
  #: pro/app/controllers/PlpLinksController.php:876
1915
+ msgid ""
1916
+ "Time Period Redirects have been setup for this link but the current time is "
1917
+ "not within any of them currently."
1918
  msgstr ""
1919
 
1920
  #: pro/app/controllers/PlpOptionsController.php:102
1926
  msgstr ""
1927
 
1928
  #: pro/app/controllers/PlpOptionsController.php:111
1929
+ msgid ""
1930
+ "You need to enter a valid Pretty Link Base URL now that you have selected "
1931
+ "\"Use an alternate base url for your Pretty Links\""
1932
  msgstr ""
1933
 
1934
  #: pro/app/controllers/PlpOptionsController.php:116
1935
+ msgid ""
1936
+ "You need to enter a valid Public Link Display URL now that you have selected "
1937
+ "\"Use a custom public link display page\""
1938
  msgstr ""
1939
 
1940
  #: pro/app/controllers/PlpOptionsController.php:122
2077
  msgstr ""
2078
 
2079
  #: pro/app/helpers/PlpPostsHelper.php:76
2080
+ msgid ""
2081
+ "A Pretty Link hasn't been generated for this entry yet. Click \"Update Post"
2082
+ "\" to generate."
2083
  msgstr ""
2084
 
2085
  #: pro/app/models/PlpOptions.php:99
2194
  msgstr ""
2195
 
2196
  #: pro/app/views/import-export/form.php:26
2197
+ msgid ""
2198
+ "There are two ways to import a file.<br/><br/>1) Importing to update "
2199
+ "existing links and<br/><br/>2) Importing to generate new links. When "
2200
+ "Importing to generate new links, you must delete the \"id\" column from the "
2201
+ "CSV before importing. If the \"id\" column is present, Pretty Link Pro will "
2202
+ "attempt to update existing links."
2203
  msgstr ""
2204
 
2205
  #: pro/app/views/import-export/form.php:36
2211
  msgstr ""
2212
 
2213
  #: pro/app/views/import-export/form.php:40
2214
+ msgid ""
2215
+ "Select a file that has been formatted as a Pretty Link CSV import file and "
2216
+ "click \"Import\""
2217
  msgstr ""
2218
 
2219
  #: pro/app/views/import-export/form.php:48
2281
  msgstr ""
2282
 
2283
  #: pro/app/views/links/form.php:30
2284
+ msgid ""
2285
+ "Select the type of expiration you want for this link.<br/><br/><b>Date</b> "
2286
+ "Select this option if you'd like to expire your link after a certain date."
2287
+ "<br/><br/><b>Clicks</b>: Select this option to expire this link after it has "
2288
+ "been clicked a specific number of times."
2289
  msgstr ""
2290
 
2291
  #: pro/app/views/links/form.php:51
2293
  msgstr ""
2294
 
2295
  #: pro/app/views/links/form.php:52
2296
+ msgid ""
2297
+ "Enter the number of times this link can be clicked before it expires.<br/"
2298
+ "><br/><b>Note: Expirations based on clicks wouldn't work properly if you had "
2299
+ "tracking turned off for this link so as long as this is set to Clicks, "
2300
+ "Pretty Link will ensure tracking is turned on for this link as well.</b>"
2301
  msgstr ""
2302
 
2303
  #: pro/app/views/links/form.php:71
2305
  msgstr ""
2306
 
2307
  #: pro/app/views/links/form.php:72
2308
+ msgid ""
2309
+ "Enter a date here in the format YYYY-MM-DD to set when this link should "
2310
+ "expire."
2311
  msgstr ""
2312
 
2313
  #: pro/app/views/links/form.php:88
2319
  msgstr ""
2320
 
2321
  #: pro/app/views/links/form.php:92
2322
+ msgid ""
2323
+ "When this link expires, do you want to redirect to a specific URL. You can "
2324
+ "use this to redirect to a page you've setup to indicate that the link is "
2325
+ "expired.<br/><br/><b>Note: If this is not set the link will throw a 404 "
2326
+ "error when expired</b>."
2327
  msgstr ""
2328
 
2329
  #: pro/app/views/links/form.php:107 pro/app/views/options/form.php:165
2335
  msgstr ""
2336
 
2337
  #: pro/app/views/links/form.php:111
2338
+ msgid ""
2339
+ "This is the URL that this link will redirect to after the expiration date "
2340
+ "above."
2341
  msgstr ""
2342
 
2343
  #: pro/app/views/links/form.php:131
2345
  msgstr ""
2346
 
2347
  #: pro/app/views/links/form.php:132
2348
+ msgid ""
2349
+ "Enter a comma separated list of keywords / keyword phrases that you'd like "
2350
+ "to replace with this link in your Posts &amp; Pages."
2351
  msgstr ""
2352
 
2353
  #: pro/app/views/links/form.php:140
2359
  msgstr ""
2360
 
2361
  #: pro/app/views/links/form.php:144
2362
+ msgid ""
2363
+ "Enter a comma separated list of the URLs that you'd like to replace with "
2364
+ "this Pretty Link in your Posts &amp; Pages. These must be formatted as URLs "
2365
+ "for example: <code>http://example.com</code> or <code>http://example.com?"
2366
+ "product_id=53</code>"
2367
  msgstr ""
2368
 
2369
  #: pro/app/views/links/form.php:159 pro/app/views/links/form.php:162
2371
  msgstr ""
2372
 
2373
  #: pro/app/views/links/form.php:163
2374
+ msgid ""
2375
+ "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or "
2376
+ "any other kind of tracking script to the HTML head for this pretty link.<br/"
2377
+ "><br/>These scripts will be in addition to any global one's you've defined "
2378
+ "in the options.<br/><br/><b>NOTE:</b> This does NOT work with 301, 302 and "
2379
+ "307 type redirects."
2380
  msgstr ""
2381
 
2382
  #: pro/app/views/links/form.php:176
2388
  msgstr ""
2389
 
2390
  #: pro/app/views/links/form.php:180
2391
+ msgid ""
2392
+ "These powerful options are available to give you dynamic control over "
2393
+ "redirection for this pretty link."
2394
  msgstr ""
2395
 
2396
  #: pro/app/views/links/form.php:187
2410
  msgstr ""
2411
 
2412
  #: pro/app/views/links/form.php:203
2413
+ msgid ""
2414
+ "Enter the Target URLs that you'd like to rotate through when this Pretty "
2415
+ "Link is Clicked. These must be formatted as URLs example: <code>http://"
2416
+ "example.com</code> or <code>http://example.com?product_id=53</code>"
2417
  msgstr ""
2418
 
2419
  #: pro/app/views/links/form.php:208
2433
  msgstr ""
2434
 
2435
  #: pro/app/views/links/form.php:230
2436
+ msgid ""
2437
+ "Split testing will enable you to track the effectiveness of several links "
2438
+ "against each other. This works best when you have multiple link rotation "
2439
+ "URLs entered."
2440
  msgstr ""
2441
 
2442
  #: pro/app/views/links/form.php:246 pro/app/views/reports/list.php:31
2461
  msgstr ""
2462
 
2463
  #: pro/app/views/links/form.php:285
2464
+ msgid ""
2465
+ "This will enable you to setup specific target urls that this pretty link "
2466
+ "will redirect to based on the country of the person visiting the url."
2467
  msgstr ""
2468
 
2469
  #: pro/app/views/links/form.php:290 pro/app/views/links/form.php:304
2476
  msgstr ""
2477
 
2478
  #: pro/app/views/links/form.php:299
2479
+ msgid ""
2480
+ "This will allow you to redirect based on your visitor's device, operating "
2481
+ "system and/or browser"
2482
  msgstr ""
2483
 
2484
  #: pro/app/views/links/form.php:309 pro/app/views/links/form.php:312
2486
  msgstr ""
2487
 
2488
  #: pro/app/views/links/form.php:313
2489
+ msgid ""
2490
+ "This will allow you to redirect based on the time period in which your "
2491
+ "visitor visits this link.<br/><br/><b>Note: If your visitor doesn't visit "
2492
+ "the link during any of the specified time periods set here, they'll simply "
2493
+ "be redirected to the main target url.</b>"
2494
  msgstr ""
2495
 
2496
  #: pro/app/views/links/geo_row.php:12
2502
  msgstr ""
2503
 
2504
  #: pro/app/views/links/geo_row.php:16
2505
+ msgid ""
2506
+ "This is a comma-separated list of countries that this redirect will match "
2507
+ "on. Just start typing a country's name and an autocomplete dropdown will "
2508
+ "appear to select from. Once a country is selected, feel free to start typing "
2509
+ "the name of another country. You can add as many as you'd like this redirect "
2510
+ "to match on"
2511
  msgstr ""
2512
 
2513
  #: pro/app/views/links/geo_row.php:25 pro/app/views/links/tech_row.php:79
2520
  msgstr ""
2521
 
2522
  #: pro/app/views/links/geo_row.php:29
2523
+ msgid ""
2524
+ "This is the URL that this Pretty Link will redirect to if the visitor's "
2525
+ "country match the settings here."
2526
  msgstr ""
2527
 
2528
  #: pro/app/views/links/geo_row.php:38 pro/app/views/links/tech_row.php:92
2544
  msgstr ""
2545
 
2546
  #: pro/app/views/links/link-options.php:6
2547
+ msgid ""
2548
+ "Use this to prefix all newly generated pretty links with a directory of your "
2549
+ "choice. For example set to <b>out</b> to make your pretty links look like "
2550
+ "http://site.com/<b>out</b>/xyz. Changing this option will NOT affect "
2551
+ "existing pretty links. If you do not wish to use a directory prefix, leave "
2552
+ "this text field blank. Whatever you type here will be sanitized and modified "
2553
+ "to ensure it is URL-safe. So <b>Hello World</b> might get changed to "
2554
+ "something like <b>hello-world</b> instead. Lowercase letters, numbers, "
2555
+ "dashes, and underscores are allowed."
2556
  msgstr ""
2557
 
2558
  #: pro/app/views/links/link-options.php:16
2561
  msgstr ""
2562
 
2563
  #: pro/app/views/links/link-options.php:19
2564
+ msgid ""
2565
+ "The number of characters to use when auto-generating a random slug for "
2566
+ "pretty links. The default is 4. You cannot use less than 2."
2567
  msgstr ""
2568
 
2569
  #: pro/app/views/links/link-options.php:29
2572
  msgstr ""
2573
 
2574
  #: pro/app/views/links/link-options.php:31
2575
+ msgid ""
2576
+ "Requires Google Analyticator, Google Analytics by MonsterInsights (formerly "
2577
+ "Yoast), or the Google Analytics Plugin to be installed and configured on "
2578
+ "your site."
2579
  msgstr ""
2580
 
2581
  #: pro/app/views/links/link-options.php:41
2587
  msgstr ""
2588
 
2589
  #: pro/app/views/links/link-options.php:44
2590
+ msgid ""
2591
+ "This will enable a link in your pretty link admin that will allow you to "
2592
+ "automatically download a QR Code for each individual Pretty Link."
2593
  msgstr ""
2594
 
2595
  #: pro/app/views/links/link-options.php:54
2598
  msgstr ""
2599
 
2600
  #: pro/app/views/links/link-options.php:57
2601
+ msgid ""
2602
+ "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or "
2603
+ "any other kind of tracking script to the HTML head.<br/><br/>What you enter "
2604
+ "in this box will be applied to all supported pretty links.<br/><br/><b>NOTE:"
2605
+ "</b> This does NOT work with 301, 302 and 307 type redirects."
2606
  msgstr ""
2607
 
2608
  #: pro/app/views/links/prettybar.php:174
2622
  msgstr ""
2623
 
2624
  #: pro/app/views/links/tech_row.php:18
2625
+ msgid ""
2626
+ "<b>Desktop</b> will match on any conventional laptop or desktop computer.<br/"
2627
+ "><br/><b>Mobile</b> will match on any phone, tablet or other portable device."
2628
+ "<br/><br/><b>Phone</b> will match on any phone or similarly small device.<br/"
2629
+ "><br/><b>Tablet</b> will match on any tablet sized device."
2630
  msgstr ""
2631
 
2632
  #: pro/app/views/links/tech_row.php:23 pro/app/views/links/tech_row.php:42
2659
  msgstr ""
2660
 
2661
  #: pro/app/views/links/tech_row.php:37
2662
+ msgid ""
2663
+ "Use this dropdown to select which Operating System this redirect will match "
2664
+ "on."
2665
  msgstr ""
2666
 
2667
  #: pro/app/views/links/tech_row.php:43 pro/app/views/links/tech_row.php:64
2741
  msgstr ""
2742
 
2743
  #: pro/app/views/links/tech_row.php:83
2744
+ msgid ""
2745
+ "This is the URL that this Pretty Link will redirect to if the visitor's "
2746
+ "device, os and browser match the settings here."
2747
  msgstr ""
2748
 
2749
  #: pro/app/views/links/time_row.php:13
2755
  msgstr ""
2756
 
2757
  #: pro/app/views/links/time_row.php:17
2758
+ msgid ""
2759
+ "This is where you'll enter the beginning of the time period for this redirect"
2760
  msgstr ""
2761
 
2762
  #: pro/app/views/links/time_row.php:26
2776
  msgstr ""
2777
 
2778
  #: pro/app/views/links/time_row.php:43
2779
+ msgid ""
2780
+ "This is the URL that this Pretty Link will redirect to when the visitor "
2781
+ "visits the link in the associated time period."
2782
  msgstr ""
2783
 
2784
  #: pro/app/views/options/autocreate.php:7
2810
  msgstr ""
2811
 
2812
  #: pro/app/views/options/autocreate.php:51
2813
+ msgid ""
2814
+ "If this button is checked then you'll have the ability to include a social "
2815
+ "buttons bar on your %s."
2816
  msgstr ""
2817
 
2818
  #: pro/app/views/options/form.php:4
2828
  msgstr ""
2829
 
2830
  #: pro/app/views/options/form.php:16
2831
+ msgid ""
2832
+ "If checked, this will enable you to automatically replace keywords and/or "
2833
+ "URLs on your blog with pretty links. You will specify the specific keywords "
2834
+ "and urls from your Pretty Link edit page."
2835
  msgstr ""
2836
 
2837
  #: pro/app/views/options/form.php:34
2843
  msgstr ""
2844
 
2845
  #: pro/app/views/options/form.php:37
2846
+ msgid ""
2847
+ "Don't want to have too many keyword replacements per page? Select to set "
2848
+ "some reasonable keyword replacement thresholds."
2849
  msgstr ""
2850
 
2851
  #: pro/app/views/options/form.php:54
2857
  msgstr ""
2858
 
2859
  #: pro/app/views/options/form.php:57
2860
+ msgid ""
2861
+ "Maximum number of unique keyword / keyphrases you can replace with Pretty "
2862
+ "Links per page."
2863
  msgstr ""
2864
 
2865
  #: pro/app/views/options/form.php:68
2883
  msgstr ""
2884
 
2885
  #: pro/app/views/options/form.php:90
2886
+ msgid ""
2887
+ "Ensure that these keyword replacement links are opened in a separate window. "
2888
+ "<strong>Note:</strong> This does not apply to url replacements--only keyword "
2889
+ "replacements."
2890
  msgstr ""
2891
 
2892
  #: pro/app/views/options/form.php:101
2898
  msgstr ""
2899
 
2900
  #: pro/app/views/options/form.php:104
2901
+ msgid ""
2902
+ "This adds the html <code>NOFOLLOW</code> attribute to all keyword "
2903
+ "replacement links. <strong>Note:</strong> This does not apply to url "
2904
+ "replacements--only keyword replacements."
2905
  msgstr ""
2906
 
2907
  #: pro/app/views/options/form.php:115
2913
  msgstr ""
2914
 
2915
  #: pro/app/views/options/form.php:118
2916
+ msgid ""
2917
+ "Add some custom formatting to your keyword pretty link replacements. "
2918
+ "<strong>Note:</strong> This does not apply to url replacements--only keyword "
2919
+ "replacements."
2920
  msgstr ""
2921
 
2922
  #: pro/app/views/options/form.php:129
2928
  msgstr ""
2929
 
2930
  #: pro/app/views/options/form.php:132
2931
+ msgid ""
2932
+ "Add some custom formatting to the hover attribute of your keyword pretty "
2933
+ "links. <strong>Note:</strong> This does not apply to url replacements--only "
2934
+ "keyword replacements."
2935
  msgstr ""
2936
 
2937
  #: pro/app/views/options/form.php:143
2943
  msgstr ""
2944
 
2945
  #: pro/app/views/options/form.php:147
2946
+ msgid ""
2947
+ "When enabled, this will add a link to your official affiliate link "
2948
+ "disclosure page to any page, post or custom post type that have any keyword "
2949
+ "or URL replacements. You'll also be able to customize the URL and position "
2950
+ "of the disclosure link."
2951
  msgstr ""
2952
 
2953
  #: pro/app/views/options/form.php:168
2955
  msgstr ""
2956
 
2957
  #: pro/app/views/options/form.php:169
2958
+ msgid ""
2959
+ "This is the URL of the page that contains your official affiliate link "
2960
+ "disclosures. This URL will be used in the link that will be generated."
2961
  msgstr ""
2962
 
2963
  #: pro/app/views/options/form.php:180
2969
  msgstr ""
2970
 
2971
  #: pro/app/views/options/form.php:184
2972
+ msgid ""
2973
+ "This is the text of the link to your disclosures. This text will be visible "
2974
+ "to your visitors when the link is displayed."
2975
  msgstr ""
2976
 
2977
  #: pro/app/views/options/form.php:195
2983
  msgstr ""
2984
 
2985
  #: pro/app/views/options/form.php:199
2986
+ msgid ""
2987
+ "This is the position of the link to your disclosures in relation to your "
2988
+ "post content."
2989
  msgstr ""
2990
 
2991
  #: pro/app/views/options/form.php:205 pro/app/views/options/form.php:701
3009
  msgstr ""
3010
 
3011
  #: pro/app/views/options/form.php:223
3012
+ msgid ""
3013
+ "When enabled, this will add an affiliate link disclosure next to each one of "
3014
+ "your keyword replacements. <b>Note:</b> This does not apply to url "
3015
+ "replacements--only keyword replacements."
3016
  msgstr ""
3017
 
3018
  #: pro/app/views/options/form.php:241
3024
  msgstr ""
3025
 
3026
  #: pro/app/views/options/form.php:245
3027
+ msgid ""
3028
+ "This is the text that will be added after each keyword replacement to "
3029
+ "indicate that the link is an affiliate link."
3030
  msgstr ""
3031
 
3032
  #: pro/app/views/options/form.php:261
3038
  msgstr ""
3039
 
3040
  #: pro/app/views/options/form.php:264
3041
+ msgid ""
3042
+ "This feature will take each url it finds and create or use an existing "
3043
+ "pretty link pointing to the url and replace it with the pretty link."
3044
  msgstr ""
3045
 
3046
  #: pro/app/views/options/form.php:281
3052
  msgstr ""
3053
 
3054
  #: pro/app/views/options/form.php:284
3055
+ msgid ""
3056
+ "Any links on your site which point to domains you define here will not be "
3057
+ "replaced automatically with Pretty Links. Place one domain per line.<br/><br/"
3058
+ ">You MUST enter http:// or https:// in front of the domain names and do NOT "
3059
+ "include any /'s or other text after the domain name.<br/><br/>Proper entry "
3060
+ "example:<br/><b>https://www.google.com</b><br/><b>http://mysite.org</b><br/"
3061
+ "><br/>Improperly entered domains will be removed upon saving the Options."
3062
  msgstr ""
3063
 
3064
  #: pro/app/views/options/form.php:300
3070
  msgstr ""
3071
 
3072
  #: pro/app/views/options/form.php:303
3073
+ msgid ""
3074
+ "This option will enable the keyword / URL replacement routine to run in "
3075
+ "Comments."
3076
  msgstr ""
3077
 
3078
  #: pro/app/views/options/form.php:314
3084
  msgstr ""
3085
 
3086
  #: pro/app/views/options/form.php:317
3087
+ msgid ""
3088
+ "This option will enable the keyword / URL replacement routine to run in RSS "
3089
+ "Feeds.<br/><strong>Note:</strong> This option can slow the load speed of "
3090
+ "your RSS feed -- unless used in conjunction with a caching plugin like W3 "
3091
+ "Total Cache or WP Super Cache.<br/><strong>Note #2</strong> This option will "
3092
+ "only work if you have \"Full Text\" selected in your General WordPress "
3093
+ "Reading settings.<br/><strong>Note #3:</strong> If this option is used along "
3094
+ "with \"Replace Keywords and URLs in Comments\" then your post comment feeds "
3095
+ "will have keywords replaced in them as well."
3096
  msgstr ""
3097
 
3098
  #: pro/app/views/options/form.php:328 pro/app/views/options/form.php:330
3100
  msgstr ""
3101
 
3102
  #: pro/app/views/options/form.php:331
3103
+ msgid ""
3104
+ "This feature will index all of your keyword & URL replacements to "
3105
+ "dramatically improve performance.<br/><br/>If your site has a large number "
3106
+ "of replacements and/or posts then this feature may increase the load on your "
3107
+ "server temporarily and your replacements may not show up on your posts for a "
3108
+ "day or two initially (until all posts are indexed).<br/><br/><strong>Note:</"
3109
+ "strong> this feature requires the use of wp-cron."
3110
  msgstr ""
3111
 
3112
  #: pro/app/views/options/form.php:348 pro/app/views/options/form.php:350
3114
  msgstr ""
3115
 
3116
  #: pro/app/views/options/form.php:351
3117
+ msgid ""
3118
+ "This shows how many posts have keywords indexed for and are ready for "
3119
+ "replacement."
3120
  msgstr ""
3121
 
3122
  #: pro/app/views/options/form.php:359 pro/app/views/options/form.php:382
3136
  msgstr ""
3137
 
3138
  #: pro/app/views/options/form.php:374
3139
+ msgid ""
3140
+ "This shows how many posts have url replacements indexed for and are ready "
3141
+ "for replacement."
3142
  msgstr ""
3143
 
3144
  #: pro/app/views/options/form.php:402
3158
  msgstr ""
3159
 
3160
  #: pro/app/views/options/form.php:432
3161
+ msgid ""
3162
+ "If set, this will replace the logo image on the Pretty Bar. The image that "
3163
+ "this URL references should be 48x48 Pixels to fit."
3164
  msgstr ""
3165
 
3166
  #: pro/app/views/options/form.php:443
3172
  msgstr ""
3173
 
3174
  #: pro/app/views/options/form.php:446
3175
+ msgid ""
3176
+ "If set, this will replace the background image on Pretty Bar. The image that "
3177
+ "this URL references should be 65px tall - this image will be repeated "
3178
+ "horizontally across the bar."
3179
  msgstr ""
3180
 
3181
  #: pro/app/views/options/form.php:457
3187
  msgstr ""
3188
 
3189
  #: pro/app/views/options/form.php:460
3190
+ msgid ""
3191
+ "This will alter the background color of the Pretty Bar if you haven't "
3192
+ "specified a Pretty Bar background image."
3193
  msgstr ""
3194
 
3195
  #: pro/app/views/options/form.php:471
3201
  msgstr ""
3202
 
3203
  #: pro/app/views/options/form.php:474
3204
+ msgid ""
3205
+ "If not set, this defaults to black (RGB value <code>#000000</code>) but you "
3206
+ "can change it to whatever color you like."
3207
  msgstr ""
3208
 
3209
  #: pro/app/views/options/form.php:485
3215
  msgstr ""
3216
 
3217
  #: pro/app/views/options/form.php:488
3218
+ msgid ""
3219
+ "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
3220
+ "can change it to whatever color you like."
3221
  msgstr ""
3222
 
3223
  #: pro/app/views/options/form.php:499
3229
  msgstr ""
3230
 
3231
  #: pro/app/views/options/form.php:502
3232
+ msgid ""
3233
+ "If not set, this defaults to RGB value <code>#ababab</code> but you can "
3234
+ "change it to whatever color you like."
3235
  msgstr ""
3236
 
3237
  #: pro/app/views/options/form.php:513
3243
  msgstr ""
3244
 
3245
  #: pro/app/views/options/form.php:516
3246
+ msgid ""
3247
+ "If not set, this defaults to RGB value <code>#551a8b</code> but you can "
3248
+ "change it to whatever color you like."
3249
  msgstr ""
3250
 
3251
  #: pro/app/views/options/form.php:527
3257
  msgstr ""
3258
 
3259
  #: pro/app/views/options/form.php:530
3260
+ msgid ""
3261
+ "If your Website has a long title then you may need to adjust this value so "
3262
+ "that it will all fit on the Pretty Bar. It is recommended that you keep this "
3263
+ "value to <code>30</code> characters or less so the Pretty Bar's format looks "
3264
+ "good across different browsers and screen resolutions."
3265
  msgstr ""
3266
 
3267
  #: pro/app/views/options/form.php:541
3273
  msgstr ""
3274
 
3275
  #: pro/app/views/options/form.php:544
3276
+ msgid ""
3277
+ "If your Website has a long Description (tagline) then you may need to adjust "
3278
+ "this value so that it will all fit on the Pretty Bar. It is recommended that "
3279
+ "you keep this value to <code>40</code> characters or less so the Pretty "
3280
+ "Bar's format looks good across different browsers and screen resolutions."
3281
  msgstr ""
3282
 
3283
  #: pro/app/views/options/form.php:555
3289
  msgstr ""
3290
 
3291
  #: pro/app/views/options/form.php:558
3292
+ msgid ""
3293
+ "If you link to a lot of large Target URLs you may want to adjust this value. "
3294
+ "It is recommended that you keep this value to <code>40</code> or below so "
3295
+ "the Pretty Bar's format looks good across different browsers and URL sizes"
3296
  msgstr ""
3297
 
3298
  #: pro/app/views/options/form.php:569
3304
  msgstr ""
3305
 
3306
  #: pro/app/views/options/form.php:572
3307
+ msgid ""
3308
+ "Make sure this is checked if you want the title of your blog (and link) to "
3309
+ "show up on the Pretty Bar."
3310
  msgstr ""
3311
 
3312
  #: pro/app/views/options/form.php:583
3318
  msgstr ""
3319
 
3320
  #: pro/app/views/options/form.php:586
3321
+ msgid ""
3322
+ "Make sure this is checked if you want your site description to show up on "
3323
+ "the Pretty Bar."
3324
  msgstr ""
3325
 
3326
  #: pro/app/views/options/form.php:597
3332
  msgstr ""
3333
 
3334
  #: pro/app/views/options/form.php:600
3335
+ msgid ""
3336
+ "Make sure this is checked if you want \"share links\" to show up on the "
3337
+ "Pretty Bar."
3338
  msgstr ""
3339
 
3340
  #: pro/app/views/options/form.php:611
3346
  msgstr ""
3347
 
3348
  #: pro/app/views/options/form.php:614
3349
+ msgid ""
3350
+ "Make sure this is checked if you want a link displaying the Target URL to "
3351
+ "show up on the Pretty Bar."
3352
  msgstr ""
3353
 
3354
  #: pro/app/views/options/form.php:625 pro/app/views/options/form.php:627
3356
  msgstr ""
3357
 
3358
  #: pro/app/views/options/form.php:628
3359
+ msgid ""
3360
+ "Check this to hide the pretty link attribution link on the pretty bar.<br/"
3361
+ "><br/><strong>Wait, before you do this, you might want to leave this un-"
3362
+ "checked and set the alternate URL of this link to your <em>Pretty Link Pro</"
3363
+ "em> <a href=\"https://prettylinkpro.com/plp/options/aff-attribution"
3364
+ "\">Affiliate URL</a> to earn a few bucks while you are at it."
3365
  msgstr ""
3366
 
3367
  #: pro/app/views/options/form.php:646
3373
  msgstr ""
3374
 
3375
  #: pro/app/views/options/form.php:649
3376
+ msgid ""
3377
+ "If set, this will replace the Pretty Bars attribution URL. This is a very "
3378
+ "good place to put your <em>Pretty Link Pro</em> <a href=\"https://"
3379
+ "prettylinkpro.com/plp/options/aff-attribution-2\">Affiliate Link</a>."
3380
  msgstr ""
3381
 
3382
  #: pro/app/views/options/form.php:663
3392
  msgstr ""
3393
 
3394
  #: pro/app/views/options/form.php:669
3395
+ msgid ""
3396
+ "Select which buttons you want to be visible on the Social Buttons Bar.<br/"
3397
+ "><br/><code>Note:</code> In order for the Social Buttons Bar to be visible "
3398
+ "on Pages and or Posts, you must first enable it in the \"Page &amp; Post "
3399
+ "Options\" section above."
3400
  msgstr ""
3401
 
3402
  #: pro/app/views/options/form.php:692
3408
  msgstr ""
3409
 
3410
  #: pro/app/views/options/form.php:695
3411
+ msgid ""
3412
+ "This determines where your Social Buttons Placement should appear in "
3413
+ "relation to content on Pages and/or Posts.<br/><br/><code>Note:</code> If "
3414
+ "you want this bar to appear then you must enable it in the \"Page and Post "
3415
+ "Options\" above."
3416
  msgstr ""
3417
 
3418
  #: pro/app/views/options/form.php:705
3420
  msgstr ""
3421
 
3422
  #: pro/app/views/options/form.php:706
3423
+ msgid ""
3424
+ "If you select none, you can still show your Social Buttons by manually "
3425
+ "adding the <code>[social_buttons_bar]</code> shortcode to your blog posts or "
3426
+ "<code>&lt;?php the_social_buttons_bar(); ?&gt;</code> template tag to your "
3427
+ "WordPress Theme."
3428
  msgstr ""
3429
 
3430
  #: pro/app/views/options/form.php:731
3440
  msgstr ""
3441
 
3442
  #: pro/app/views/options/form.php:740
3443
+ msgid ""
3444
+ "This option will give you the ability to turn your website into a link "
3445
+ "shortening service for your users. Once selected, you can enable the Pretty "
3446
+ "Link Pro Sidebar Widget or just display the link creation form with the "
3447
+ "<code>[prli_create_form]</code> shortcode in any post or page on your "
3448
+ "website."
3449
  msgstr ""
3450
 
3451
  #: pro/app/views/options/form.php:757
3457
  msgstr ""
3458
 
3459
  #: pro/app/views/options/form.php:760
3460
+ msgid ""
3461
+ "When a link is created using the public form, the user is typically "
3462
+ "redirected to a simple page displaying their new pretty link. But, you can "
3463
+ "specify a page that you want them to be redirected to on your website, using "
3464
+ "your branding instead by selecting this box and entering the url of the page "
3465
+ "you want them to go to."
3466
  msgstr ""
3467
 
3468
  #: pro/app/views/options/form.php:777
3474
  msgstr ""
3475
 
3476
  #: pro/app/views/options/form.php:780
3477
+ msgid ""
3478
+ "To set this up, create a new page on your WordPress site and make sure the "
3479
+ "<code>[prli_create_display]</code> appears somewhere on this page -- "
3480
+ "otherwise the link will never get created. Once this page is created, just "
3481
+ "enter the full URL to it here. Make sure this URL does npt end with a slash "
3482
+ "(/)."
3483
  msgstr ""
3484
 
3485
  #: pro/app/views/options/general.php:8
3491
  msgstr ""
3492
 
3493
  #: pro/app/views/options/general.php:11
3494
+ msgid ""
3495
+ "Use this option if you want to substitute your actual blog's url with "
3496
+ "another URL. You must have another valid domain name pointing to this "
3497
+ "WordPress install before you enable this option. If you are using this "
3498
+ "option to just get rid of the www in the beginning of your url that is fine "
3499
+ "-- just make sure your domain works without the www before enabling this "
3500
+ "option."
3501
  msgstr ""
3502
 
3503
  #: pro/app/views/options/general.php:28 pro/app/views/options/general.php:30
3505
  msgstr ""
3506
 
3507
  #: pro/app/views/options/general.php:31
3508
+ msgid ""
3509
+ "Enter a valid base url that points at this WordPress install. Make sure this "
3510
+ "URL does not end with a slash (/)."
3511
  msgstr ""
3512
 
3513
  #: pro/app/views/options/general.php:47
3519
  msgstr ""
3520
 
3521
  #: pro/app/views/options/general.php:50
3522
+ msgid ""
3523
+ "Use this option to set the minimum role of users who can access the Admin "
3524
+ "interface for Pretty Link."
3525
  msgstr ""
3526
 
3527
  #: pro/app/views/options/general.php:56
3609
  msgstr ""
3610
 
3611
  #: pro/app/views/reports/edit.php:103 pro/app/views/reports/new.php:103
3612
+ msgid ""
3613
+ "If you want to enable conversion tracking in this report then select a goal "
3614
+ "link."
3615
  msgstr ""
3616
 
3617
  #: pro/app/views/reports/list.php:4 pro/app/views/reports/reports.php:7
3667
  msgstr ""
3668
 
3669
  #: pro/app/views/tools/generator.php:10
3670
+ msgid ""
3671
+ "Alter the options below to customize this Bookmarklet. As you modify the "
3672
+ "label, redirect type, tracking and group, you will see this bookmarklet "
3673
+ "update -- when the settings are how you want them, drag the bookmarklet into "
3674
+ "your toolbar. You can create as many bookmarklets as you want each with "
3675
+ "different settings."
3676
  msgstr ""
3677
 
3678
  #: pro/app/views/tools/generator.php:13
4735
  #: script/i18n/pomo/sample/app.php:62
4736
  msgid "Bye\n"
4737
  msgstr ""
 
 
 
4738
 
4739
  #. Plugin URI of the plugin/theme
4740
  msgid "https://prettylinkpro.com/pl/plugin-uri"
4741
  msgstr ""
4742
 
4743
  #. Description of the plugin/theme
4744
+ msgid ""
4745
+ "Shrink, track and share any URL on the Internet from your WordPress website!"
4746
  msgstr ""
4747
 
4748
  #. 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.8
7
  Author: Blair Williams
8
  Author URI: http://blairwilliams.com
9
  Text Domain: pretty-link
@@ -162,7 +162,7 @@ $prli_utils = new PrliUtils();
162
 
163
  global $prli_db_version, $plp_db_version;
164
 
165
- $prli_db_version = 17; // this is the version of the database we're moving to
166
  $plp_db_version = 7; // this is the version of the database we're moving to
167
 
168
  global $prli_app_controller;
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.9
7
  Author: Blair Williams
8
  Author URI: http://blairwilliams.com
9
  Text Domain: pretty-link
162
 
163
  global $prli_db_version, $plp_db_version;
164
 
165
+ $prli_db_version = 18; // this is the version of the database we're moving to
166
  $plp_db_version = 7; // this is the version of the database we're moving to
167
 
168
  global $prli_app_controller;
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.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,6 +66,12 @@ http://blairwilliams.com/w7a
66
 
67
  == Changelog ==
68
 
 
 
 
 
 
 
69
  = 2.0.8 =
70
  * Fixed a regular expression warning
71
  * Use PHP's url validation in utils
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.9
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.9 =
70
+ * Fixed pixel redirect type tracking
71
+ * Fixed ordering for geo redirects
72
+ * Fixed URL validation
73
+ * Fixed split test reporting
74
+
75
  = 2.0.8 =
76
  * Fixed a regular expression warning
77
  * Use PHP's url validation in utils