Plugin Directory

Changeset 2078274


Ignore:
Timestamp:
05/01/2019 04:05:32 AM (7 years ago)
Author:
supercleanse
Message:

Release Pretty Links 2.1.9

Location:
pretty-link
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pretty-link/tags/2.1.9/app/controllers/PrliLinksController.php

    r1800524 r2078274  
    1919    // "new()" has its own submenu so we don't need a route for it here
    2020    switch($action) {
    21       case 'list-form':
    22         return self::list_form($params);
     21      // POST ACTIONS
    2322      case 'quick-create':
    2423        return self::quick_create_link($params);
    2524      case 'create':
    2625        return self::create_link($params);
    27       case 'edit':
    28         return self::edit_link($params);
    2926      case 'bulk-update':
    3027        return self::bulk_update_links($params);
     
    3734      case 'bulk-destroy':
    3835        return self::bulk_destroy_links($params);
     36
     37      // GET ACTIONS
     38      case 'edit':
     39        return self::edit_link($params);
    3940      default:
    4041        return self::list_links($params);
     
    5556  }
    5657
    57   public function list_form($params) {
    58     if(apply_filters('prli-link-list-process-form', true))
    59       self::display_links_list($params, PrliUtils::get_main_message());
    60     }
    61 
    6258  public static function new_link($params) {
    6359    global $prli_group;
     
    7066  public static function quick_create_link($params) {
    7167    global $prli_link, $prli_group, $prli_options;
     68
     69    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'update-options' ) ) {
     70      die( 'Security Check' );
     71    }
    7272
    7373    $params = self::get_params_array();
     
    103103  public static function create_link($params) {
    104104    global $prli_link, $prli_group;
     105
     106    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'update-options' ) ) {
     107      die( 'Security Check' );
     108    }
     109
    105110    $errors = $prli_link->validate($_POST);
    106111
     
    124129  public static function edit_link($params) {
    125130    global $prli_group, $prli_link;
     131
    126132    $groups = $prli_group->getAll('',' ORDER BY name');
    127133
     
    134140  public static function update_link($params) {
    135141    global $prli_link, $prli_group;
     142
     143    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'update-options' ) ) {
     144      die( 'Security Check' );
     145    }
     146
    136147    $errors = $prli_link->validate($_POST);
    137148    $id = $_POST['id'];
     
    188199  public static function reset_link($params) {
    189200    global $prli_link;
     201
     202    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'link-actions' ) ) {
     203      die( 'Security Check' );
     204    }
     205
    190206    $prli_link->reset( $params['id'] );
    191207    $prli_message = __("Your Pretty Link was Successfully Reset", 'pretty-link');
     
    195211  public static function destroy_link($params) {
    196212    global $prli_link;
     213
     214    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'link-actions' ) ) {
     215      die( 'Security Check' );
     216    }
     217
    197218    $prli_link->destroy( $params['id'] );
    198219    $prli_message = __("Your Pretty Link was Successfully Destroyed", 'pretty-link');
  • pretty-link/tags/2.1.9/app/helpers/PrliLinksHelper.php

    r1572224 r2078274  
    111111    global $prli_options;
    112112
     113    $link_nonce = wp_create_nonce( 'link-actions' );
    113114    ?>
    114115    <a href="<?php echo admin_url('admin.php?page=pretty-link&action=edit&id=' . $link->id); ?>" title="<?php printf( __('Edit %s', 'pretty-link'), $link->slug ); ?>"><i class="pl-list-icon pl-icon-edit"></i></a>
    115     <a href="<?php echo admin_url('admin.php?page=pretty-link&action=destroy&id=' . $link->id); ?>" onclick="return confirm('<?php printf( __('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.', 'pretty-link'), $link->name ); ?>');" title="<?php printf( __('Delete %s', 'pretty-link'), $link->slug ); ?>"><i class="pl-list-icon pl-icon-cancel"></i></a>
    116     <a href="<?php echo admin_url('admin.php?page=pretty-link&action=reset&id=' . $link->id); ?>" onclick="return confirm('<?php printf( __('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.', 'pretty-link'), $link->name ); ?>');" title="<?php printf( __('Reset %s', 'pretty-link'), $link->name ); ?>"><i class="pl-list-icon pl-icon-reply"></i></a>
     116    <a href="<?php echo admin_url("admin.php?page=pretty-link&action=destroy&id={$link->id}&_wpnonce={$link_nonce}"); ?>" onclick="return confirm('<?php printf( __('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.', 'pretty-link'), $link->name ); ?>');" title="<?php printf( __('Delete %s', 'pretty-link'), $link->slug ); ?>"><i class="pl-list-icon pl-icon-cancel"></i></a>
     117    <a href="<?php echo admin_url("admin.php?page=pretty-link&action=reset&id={$link->id}&_wpnonce={$link_nonce}"); ?>" onclick="return confirm('<?php printf( __('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.', 'pretty-link'), $link->name ); ?>');" title="<?php printf( __('Reset %s', 'pretty-link'), $link->name ); ?>"><i class="pl-list-icon pl-icon-reply"></i></a>
    117118    <?php
    118119      if( $link->track_me and $prli_options->extended_tracking!='count' ):
  • pretty-link/tags/2.1.9/app/views/links/list.php

    r1925455 r2078274  
    3232        <?php
    3333        if(!empty($search_str)) {
     34          $link_nonce = wp_create_nonce( 'link-actions' );
    3435          ?>
    35            &nbsp; <a href="<?php echo admin_url('admin.php?page=pretty-link&action=reset'); ?>" class="button"><?php _e('Reset', 'pretty-link'); ?></a>
     36           &nbsp; <a href="<?php echo admin_url("admin.php?page=pretty-link&action=reset&_wpnonce={$link_nonce}"); ?>" class="button"><?php _e('Reset', 'pretty-link'); ?></a>
    3637          <?php
    3738        }
  • pretty-link/tags/2.1.9/i18n/pretty-link.pot

    r2023089 r2078274  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Pretty Links 2.1.8\n"
     5"Project-Id-Version: Pretty Links 2.1.9\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
    7 "POT-Creation-Date: 2019-01-31 23:41:26+00:00\n"
     7"POT-Creation-Date: 2019-05-01 03:50:25+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    1818msgstr ""
    1919
     20#. #-#-#-#-#  pretty-link.pot (Pretty Links 2.1.9)  #-#-#-#-#
     21#. Plugin Name of the plugin/theme
    2022#: app/controllers/PrliAppController.php:37
    2123#: app/controllers/PrliAppController.php:46 app/views/links/list.php:12
     
    100102
    101103#: app/controllers/PrliAppController.php:284
    102 msgid "You're almost done!<br/>%1$sFinish your Re-Install of Pretty Links Pro%2$s"
     104msgid ""
     105"You're almost done!<br/>%1$sFinish your Re-Install of Pretty Links Pro%2$s"
    103106msgstr ""
    104107
     
    112115
    113116#: app/controllers/PrliAppController.php:391
    114 msgid "Your Pretty Links Pro installation isn't quite complete yet. %1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
     117msgid ""
     118"Your Pretty Links Pro installation isn't quite complete yet. "
     119"%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
    115120msgstr ""
    116121
    117122#: app/controllers/PrliAppController.php:412
    118 msgid "Your Pretty Links Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
     123msgid ""
     124"Your Pretty Links Pro installation isn't quite complete yet.<br/>"
     125"%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
    119126msgstr ""
    120127
     
    171178msgstr ""
    172179
    173 #: app/controllers/PrliLinksController.php:52
     180#: app/controllers/PrliLinksController.php:53
    174181msgid "Links in Group: "
    175182msgstr ""
    176183
    177184#: app/controllers/PrliLinksController.php:98
    178 #: app/controllers/PrliLinksController.php:119
     185#: app/controllers/PrliLinksController.php:124
    179186msgid "Your Pretty Link was Successfully Created"
    180187msgstr ""
    181188
    182 #: app/controllers/PrliLinksController.php:152
     189#: app/controllers/PrliLinksController.php:163
    183190msgid "Your Pretty Link was Successfully Updated"
    184191msgstr ""
    185192
    186 #: app/controllers/PrliLinksController.php:167
     193#: app/controllers/PrliLinksController.php:178
    187194msgid "Your links were updated successfully"
    188195msgstr ""
    189196
    190 #: app/controllers/PrliLinksController.php:184
    191 #: app/controllers/PrliLinksController.php:224
     197#: app/controllers/PrliLinksController.php:195
     198#: app/controllers/PrliLinksController.php:245
    192199msgid "You are unauthorized to view this page."
    193200msgstr ""
    194201
    195 #: app/controllers/PrliLinksController.php:191
     202#: app/controllers/PrliLinksController.php:207
    196203msgid "Your Pretty Link was Successfully Reset"
    197204msgstr ""
    198205
    199 #: app/controllers/PrliLinksController.php:198
     206#: app/controllers/PrliLinksController.php:219
    200207msgid "Your Pretty Link was Successfully Destroyed"
    201208msgstr ""
    202209
    203 #: app/controllers/PrliLinksController.php:211
     210#: app/controllers/PrliLinksController.php:232
    204211msgid "Your links were deleted successfully"
    205212msgstr ""
    206213
    207 #: app/controllers/PrliLinksController.php:502
     214#: app/controllers/PrliLinksController.php:523
    208215msgid "Pretty Link Cleanup Visitor Locks"
    209216msgstr ""
     
    223230
    224231#: app/controllers/PrliOptionsController.php:75
    225 msgid "Excluded IP Addresses must be a comma separated list of IPv4 or IPv6 addresses or ranges."
     232msgid ""
     233"Excluded IP Addresses must be a comma separated list of IPv4 or IPv6 "
     234"addresses or ranges."
    226235msgstr ""
    227236
    228237#: app/controllers/PrliOptionsController.php:79
    229 msgid "Whitlist IP Addresses must be a comma separated list of IPv4 or IPv6 addresses or ranges."
     238msgid ""
     239"Whitlist IP Addresses must be a comma separated list of IPv4 or IPv6 "
     240"addresses or ranges."
    230241msgstr ""
    231242
     
    407418msgstr ""
    408419
    409 #: app/helpers/PrliLinksHelper.php:63 app/views/links/list.php:76
    410 #: app/views/links/list.php:79
     420#: app/helpers/PrliLinksHelper.php:63 app/views/links/list.php:77
     421#: app/views/links/list.php:80
    411422msgid "- No Change -"
    412423msgstr ""
     
    460471msgstr ""
    461472
    462 #: app/helpers/PrliLinksHelper.php:114 app/views/groups/list.php:63
     473#: app/helpers/PrliLinksHelper.php:115 app/views/groups/list.php:63
    463474#: app/views/groups/list.php:66
    464475msgid "Edit %s"
    465476msgstr ""
    466477
    467 #: app/helpers/PrliLinksHelper.php:115
    468 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."
    469 msgstr ""
    470 
    471 #: app/helpers/PrliLinksHelper.php:115
     478#: app/helpers/PrliLinksHelper.php:116
     479msgid ""
     480"Are you sure you want to delete your %s Pretty Link? This will delete the "
     481"Pretty Link and all of the statistical data about it in your database."
     482msgstr ""
     483
     484#: app/helpers/PrliLinksHelper.php:116
    472485msgid "Delete %s"
    473486msgstr ""
    474487
    475 #: app/helpers/PrliLinksHelper.php:116
    476 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."
    477 msgstr ""
    478 
    479 #: app/helpers/PrliLinksHelper.php:116
     488#: app/helpers/PrliLinksHelper.php:117
     489msgid ""
     490"Are you sure you want to reset your %s Pretty Link? This will delete all of "
     491"the statistical data about this Pretty Link in your database."
     492msgstr ""
     493
     494#: app/helpers/PrliLinksHelper.php:117
    480495msgid "Reset %s"
    481496msgstr ""
    482497
    483 #: app/helpers/PrliLinksHelper.php:119 app/views/clicks/list.php:161
     498#: app/helpers/PrliLinksHelper.php:120 app/views/clicks/list.php:161
    484499msgid "View clicks for %s"
    485500msgstr ""
    486501
    487 #: app/helpers/PrliLinksHelper.php:124
     502#: app/helpers/PrliLinksHelper.php:125
    488503msgid "Post %s to Twitter"
    489504msgstr ""
    490505
    491 #: app/helpers/PrliLinksHelper.php:125
     506#: app/helpers/PrliLinksHelper.php:126
    492507msgid "Send %s in an Email"
    493508msgstr ""
     
    548563
    549564#: app/models/PrliLink.php:575
    550 msgid "Pretty Link slugs must not contain question marks, ampersands or number signs."
     565msgid ""
     566"Pretty Link slugs must not contain question marks, ampersands or number "
     567"signs."
    551568msgstr ""
    552569
     
    556573
    557574#: app/models/PrliLink.php:584
    558 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."
     575msgid ""
     576"This Pretty Link Slug is already taken. Check to make sure it isn't being "
     577"used by another pretty link, post, page, category or tag slug. If none of "
     578"these are true then check to see that this slug isn't the name of a file in "
     579"the root folder of your wordpress install."
    559580msgstr ""
    560581
     
    572593
    573594#: app/views/admin/popups/rating.php:7
    574 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."
     595msgid ""
     596"If you enjoy using Pretty Link would you mind taking a moment to rate it on "
     597"WordPress.org? It won't take more than a minute."
    575598msgstr ""
    576599
     
    631654#: app/views/admin/popups/upgrade.php:17 app/views/admin/update/license.php:45
    632655#: app/views/links/form.php:233
    633 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."
     656msgid ""
     657"Plus, upgrading is fast, easy and won't disrupt any of your existing links "
     658"or data. And there's even a 14 day money back guarantee."
    634659msgstr ""
    635660
     
    653678
    654679#: app/views/admin/update/activation_warning.php:8
    655 msgid "It looks like you used to have Pretty Links Pro activated with a username and password but now you need a license key to activate it."
     680msgid ""
     681"It looks like you used to have Pretty Links Pro activated with a username "
     682"and password but now you need a license key to activate it."
    656683msgstr ""
    657684
    658685#: app/views/admin/update/activation_warning.php:9
    659 msgid "You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s"
     686msgid ""
     687"You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s"
    660688msgstr ""
    661689
    662690#: app/views/admin/update/activation_warning.php:10
    663 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."
     691msgid ""
     692"After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro"
     693"\" admin page,%2$s you'll start getting updates again."
    664694msgstr ""
    665695
    666696#: app/views/admin/update/activation_warning.php:15
    667 msgid "You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to enable automatic updates today."
     697msgid ""
     698"You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to "
     699"enable automatic updates today."
    668700msgstr ""
    669701
    670702#: app/views/admin/update/activation_warning.php:16
    671 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."
     703msgid ""
     704"After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro"
     705"\" admin page,%2$s you'll start getting automatic updates."
    672706msgstr ""
    673707
     
    677711
    678712#: app/views/admin/update/addon_popup.php:5
    679 msgid "The %s features in your Pretty Link options have been moved from Pretty Link into a separate plugin."
     713msgid ""
     714"The %s features in your Pretty Link options have been moved from Pretty Link "
     715"into a separate plugin."
    680716msgstr ""
    681717
    682718#: app/views/admin/update/addon_popup.php:6
    683 msgid "Why you ask? Well, it's to streamline and increase the performance of Pretty Link for you."
     719msgid ""
     720"Why you ask? Well, it's to streamline and increase the performance of Pretty "
     721"Link for you."
    684722msgstr ""
    685723
    686724#: app/views/admin/update/addon_popup.php:9
    687 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."
     725msgid ""
     726"And good for you, it looks like you've already got the %1$s Add-on "
     727"installed. Just click the \"Activate %2$s Add-on\" button below and you'll "
     728"get all these features back now."
    688729msgstr ""
    689730
    690731#: app/views/admin/update/addon_popup.php:11
    691 msgid "Luckily it's easy to get these features back now. Just click the \"Install %s Add-on\" button below."
     732msgid ""
     733"Luckily it's easy to get these features back now. Just click the \"Install "
     734"%s Add-on\" button below."
    692735msgstr ""
    693736
    694737#: app/views/admin/update/addon_popup.php:12
    695 msgid "If you have problems with the auto-install please refer to %1$sthe user manual%2$s for manual install instructions."
     738msgid ""
     739"If you have problems with the auto-install please refer to %1$sthe user "
     740"manual%2$s for manual install instructions."
    696741msgstr ""
    697742
     
    741786
    742787#: app/views/admin/update/edge_updates.php:4
    743 msgid "Include Pretty Links Pro edge (development) releases in automatic updates (not recommended for production websites)"
     788msgid ""
     789"Include Pretty Links Pro edge (development) releases in automatic updates "
     790"(not recommended for production websites)"
    744791msgstr ""
    745792
     
    753800
    754801#: app/views/admin/update/license.php:7
    755 msgid "You must have a License Key to enable automatic updates for Pretty Links 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."
     802msgid ""
     803"You must have a License Key to enable automatic updates for Pretty Links "
     804"Pro. If you don't have a License please go to %1$s to get one. If you do "
     805"have a license you can login at %2$s to manage your licenses and site "
     806"activations."
    756807msgstr ""
    757808
     
    765816
    766817#: app/views/admin/update/license.php:30 app/views/links/form.php:221
    767 msgid "It looks like you haven't %1$supgraded to Pretty Links Pro%2$s yet. Here are just a few things you could be doing with pro:"
     818msgid ""
     819"It looks like you haven't %1$supgraded to Pretty Links Pro%2$s yet. Here are "
     820"just a few things you could be doing with pro:"
    768821msgstr ""
    769822
     
    797850
    798851#: app/views/admin/update/license.php:72
    799 msgid "Are you sure? Pretty Links Pro will not be functional on %s if this License Key is deactivated."
     852msgid ""
     853"Are you sure? Pretty Links Pro will not be functional on %s if this License "
     854"Key is deactivated."
    800855msgstr ""
    801856
     
    884939#: app/views/clicks/list.php:43 app/views/groups/edit.php:54
    885940#: app/views/groups/new.php:58 app/views/links/edit.php:16
    886 #: app/views/links/list.php:92 app/views/links/new.php:15
     941#: app/views/links/list.php:93 app/views/links/new.php:15
    887942#: pro/app/views/reports/custom-report.php:22
    888943#: pro/app/views/reports/edit.php:109 pro/app/views/reports/new.php:109
     
    891946
    892947#: app/views/clicks/list.php:64 app/views/groups/list.php:24
    893 #: app/views/links/list.php:35 pro/app/views/reports/list.php:20
     948#: app/views/links/list.php:36 pro/app/views/reports/list.php:20
    894949msgid "Reset"
    895950msgstr ""
     
    9741029#: app/views/groups/edit.php:30 app/views/groups/list.php:39
    9751030#: app/views/groups/list.php:81 app/views/groups/new.php:36
    976 #: app/views/links/list.php:51 app/views/links/list.php:152
     1031#: app/views/links/list.php:52 app/views/links/list.php:153
    9771032#: pro/app/views/reports/edit.php:85 pro/app/views/reports/list.php:30
    9781033#: pro/app/views/reports/list.php:70 pro/app/views/reports/new.php:85
     
    9851040
    9861041#: app/views/groups/edit.php:48 app/views/groups/new.php:52
    987 msgid "Select some links for this group. <strong>Note: each link can only be in one group at a time.</strong>"
     1042msgid ""
     1043"Select some links for this group. <strong>Note: each link can only be in one "
     1044"group at a time.</strong>"
    9881045msgstr ""
    9891046
    9901047#: app/views/groups/edit.php:54 app/views/links/edit.php:16
    991 #: app/views/links/list.php:93 app/views/options/form.php:194
     1048#: app/views/links/list.php:94 app/views/options/form.php:194
    9921049#: pro/app/views/reports/edit.php:109
    9931050msgid "Update"
     
    9991056
    10001057#: app/views/groups/list.php:40 app/views/groups/list.php:68
    1001 #: app/views/groups/list.php:82 app/views/links/list.php:56
    1002 #: app/views/links/list.php:157 app/views/options/form.php:39
     1058#: app/views/groups/list.php:82 app/views/links/list.php:57
     1059#: app/views/links/list.php:158 app/views/options/form.php:39
    10031060#: pro/app/views/reports/list.php:32 pro/app/views/reports/list.php:72
    10041061msgid "Links"
     
    10061063
    10071064#: app/views/groups/list.php:41 app/views/groups/list.php:83
    1008 #: app/views/links/list.php:55 app/views/links/list.php:156
     1065#: app/views/links/list.php:56 app/views/links/list.php:157
    10091066#: pro/app/views/reports/list.php:33 pro/app/views/reports/list.php:73
    10101067msgid "Created"
     
    10531110
    10541111#: app/views/links/form.php:24
    1055 msgid "Make your life easier by upgrading to %1$sPretty Links Pro%2$s -- get more redirection types, speed, automations and <b>results from your links</b> by %1$sgoing pro today!%2$s"
     1112msgid ""
     1113"Make your life easier by upgrading to %1$sPretty Links Pro%2$s -- get more "
     1114"redirection types, speed, automations and <b>results from your links</b> by "
     1115"%1$sgoing pro today!%2$s"
    10561116msgstr ""
    10571117
     
    10791139
    10801140#: app/views/links/form.php:48
    1081 msgid "This is how your pretty link will appear. You can edit the Pretty Link slug here."
     1141msgid ""
     1142"This is how your pretty link will appear. You can edit the Pretty Link slug "
     1143"here."
    10821144msgstr ""
    10831145
     
    10871149
    10881150#: app/views/links/form.php:61
    1089 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."
     1151msgid ""
     1152"Leave this blank and Pretty Link will attempt to detect the title from the "
     1153"target url. Alternatively you can enter a custom title here."
    10901154msgstr ""
    10911155
     
    10951159
    10961160#: app/views/links/form.php:74
    1097 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."
     1161msgid ""
     1162"This is a field where you can enter notes about a particular link. This "
     1163"notes field is mainly for your own link management needs. It isn't currently "
     1164"used anywhere on the front end."
    10981165msgstr ""
    10991166
     
    11021169msgstr ""
    11031170
    1104 #: app/views/links/form.php:91 app/views/links/list.php:54
    1105 #: app/views/links/list.php:78 app/views/links/list.php:155
     1171#: app/views/links/form.php:91 app/views/links/list.php:55
     1172#: app/views/links/list.php:79 app/views/links/list.php:156
    11061173#: pro/app/views/options/autocreate.php:30 pro/app/views/reports/edit.php:86
    11071174#: pro/app/views/reports/new.php:86
     
    11681235
    11691236#: app/views/links/form.php:170
    1170 msgid "Requires the Google Analyticator, Google Analytics by MonsterInsights (formerly Yoast) or Google Analytics Plugin installed and configured for this to work."
     1237msgid ""
     1238"Requires the Google Analyticator, Google Analytics by MonsterInsights "
     1239"(formerly Yoast) or Google Analytics Plugin installed and configured for "
     1240"this to work."
    11711241msgstr ""
    11721242
    11731243#: app/views/links/form.php:180
    1174 msgid "It appears that <strong>%s</strong> is currently installed. Pretty Link will attempt to use its settings to track this link."
     1244msgid ""
     1245"It appears that <strong>%s</strong> is currently installed. Pretty Link will "
     1246"attempt to use its settings to track this link."
    11751247msgstr ""
    11761248
    11771249#: app/views/links/form.php:185
    1178 msgid "No Google Analytics Plugin is currently installed. Pretty Link cannot track links using Google Analytics until one is."
     1250msgid ""
     1251"No Google Analytics Plugin is currently installed. Pretty Link cannot track "
     1252"links using Google Analytics until one is."
    11791253msgstr ""
    11801254
     
    11921266
    11931267#: app/views/links/list.php:19
    1194 msgid "WordPress Must be Configured:</strong> Pretty Link won't work until you select a Permalink Structure other than 'Default'"
     1268msgid ""
     1269"WordPress Must be Configured:</strong> Pretty Link won't work until you "
     1270"select a Permalink Structure other than 'Default'"
    11951271msgstr ""
    11961272
     
    11991275msgstr ""
    12001276
    1201 #: app/views/links/list.php:44
     1277#: app/views/links/list.php:45
    12021278msgid "Back to Groups"
    12031279msgstr ""
    12041280
    1205 #: app/views/links/list.php:53 app/views/links/list.php:154
     1281#: app/views/links/list.php:54 app/views/links/list.php:155
    12061282msgid "Clicks / Uniq"
    12071283msgstr ""
    12081284
    1209 #: app/views/links/list.php:67
     1285#: app/views/links/list.php:68
    12101286msgid "Bulk Edit"
    12111287msgstr ""
    12121288
    1213 #: app/views/links/list.php:74
     1289#: app/views/links/list.php:75
    12141290msgid "Basic Link Options"
    12151291msgstr ""
    12161292
    1217 #: app/views/links/list.php:75 app/views/shared/tinymce_form_popup.php:59
     1293#: app/views/links/list.php:76 app/views/shared/tinymce_form_popup.php:59
    12181294msgid "Redirect Type"
    12191295msgstr ""
    12201296
    1221 #: app/views/links/list.php:81
     1297#: app/views/links/list.php:82
    12221298msgid "Track"
    12231299msgstr ""
    12241300
    1225 #: app/views/links/list.php:83 app/views/shared/tinymce_form_popup.php:76
     1301#: app/views/links/list.php:84 app/views/shared/tinymce_form_popup.php:76
    12261302msgid "Nofollow"
    12271303msgstr ""
    12281304
    1229 #: app/views/links/list.php:85
     1305#: app/views/links/list.php:86
    12301306msgid "Forward Params"
    12311307msgstr ""
    12321308
    1233 #: app/views/links/list.php:93
     1309#: app/views/links/list.php:94
    12341310msgid "Bulk Update"
    12351311msgstr ""
    12361312
    1237 #: app/views/links/list.php:103
     1313#: app/views/links/list.php:104
    12381314msgid "No Pretty Links were found, %sCreate One%s"
    12391315msgstr ""
    12401316
    1241 #: app/views/links/list.php:142
     1317#: app/views/links/list.php:143
    12421318msgid "Target URL:"
    12431319msgstr ""
     
    12521328
    12531329#: app/views/options/form.php:12
    1254 msgid "Pretty Link won't work until you select a Permalink Structure other than 'Default'"
     1330msgid ""
     1331"Pretty Link won't work until you select a Permalink Structure other than "
     1332"'Default'"
    12551333msgstr ""
    12561334
     
    12721350
    12731351#: app/views/options/form.php:61
    1274 msgid "Select the type of redirection you want your newly created links to have."
     1352msgid ""
     1353"Select the type of redirection you want your newly created links to have."
    12751354msgstr ""
    12761355
     
    13041383
    13051384#: app/views/options/form.php:97
    1306 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."
     1385msgid ""
     1386"This option should ONLY be checked if you have elements in your permalink "
     1387"structure that must be present in any link on your site. For example, some "
     1388"WordPress installs don't have the benefit of full rewrite capabilities and "
     1389"in this case you'd need an index.php included in each link (http://example."
     1390"com/index.php/mycoolslug instead of http://example.com/mycoolslug). If this "
     1391"is the case for you then check this option but the vast majority of users "
     1392"will want to keep this unchecked."
    13071393msgstr ""
    13081394
     
    13161402
    13171403#: app/views/options/form.php:118
    1318 msgid "Changing your tracking style can affect the accuracy of your existing statistics. Extended mode must be used for Conversion reporting."
     1404msgid ""
     1405"Changing your tracking style can affect the accuracy of your existing "
     1406"statistics. Extended mode must be used for Conversion reporting."
    13191407msgstr ""
    13201408
     
    13401428
    13411429#: app/views/options/form.php:133
    1342 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."
     1430msgid ""
     1431"Enter IP Addresses or IP Ranges you want to exclude from your Click data and "
     1432"Stats. Each IP Address should be separated by commas. Example: 192.168.0.1, "
     1433"192.168.2.1, 192.168.3.4 or 192.168.*.*<br/><br/><strong>FYI, your current "
     1434"IP address is %s."
    13431435msgstr ""
    13441436
     
    13521444
    13531445#: app/views/options/form.php:146
    1354 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. "
     1446msgid ""
     1447"Will automatically delete all hits older than 90 days. We strongly recommend "
     1448"doing this to keep your database performance up. This will permanently "
     1449"delete this click data, and is not undo-able. "
    13551450msgstr ""
    13561451
     
    13601455
    13611456#: app/views/options/form.php:158
    1362 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'."
     1457msgid ""
     1458"Filter known Robots and unidentifiable browser clients from your click data, "
     1459"stats and reports. Works best if Tracking Style above is set to 'Extended "
     1460"Tracking'."
    13631461msgstr ""
    13641462
     
    13721470
    13731471#: app/views/options/form.php:177
    1374 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.*.*"
     1472msgid ""
     1473"Enter IP Addresses or IP Ranges you want to always include in your Click "
     1474"data and Stats even if they are flagged as robots. Each IP Address should be "
     1475"separated by commas. Example: 192.168.0.1, 192.168.2.1, 192.168.3.4 or "
     1476"192.168.*.*"
    13751477msgstr ""
    13761478
     
    15251627
    15261628#: app/views/tools/form.php:29
    1527 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>"
     1629msgid ""
     1630"Just drag this \"Get PrettyLink\" link to your toolbar to install the "
     1631"bookmarklet. As you browse the web, you can just click this bookmarklet to "
     1632"create a pretty link from the current url you're looking at. <a href="
     1633"\"http://blairwilliams.com/pretty-link-bookmarklet/\">(more help)</a>"
    15281634msgstr ""
    15291635
     
    15331639
    15341640#: app/views/tools/form.php:35
    1535 msgid "<strong>Note:</strong> iPhone users can install this bookmarklet in their Safari to create Pretty Links with the following steps:"
     1641msgid ""
     1642"<strong>Note:</strong> iPhone users can install this bookmarklet in their "
     1643"Safari to create Pretty Links with the following steps:"
    15361644msgstr ""
    15371645
     
    15451653
    15461654#: app/views/tools/form.php:39
    1547 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\""
     1655msgid ""
     1656"Choose to share the page, then click on \"Bookmark\". We recommend saving it "
     1657"in your Favorites folder. Rename your bookmark to \"Get PrettyLink\" (or "
     1658"whatever you want) and then \"Save\""
    15481659msgstr ""
    15491660
    15501661#: app/views/tools/form.php:40
    1551 msgid "Navigate through your Bookmarks until you find the new bookmark and click \"Edit\""
     1662msgid ""
     1663"Navigate through your Bookmarks until you find the new bookmark and click "
     1664"\"Edit\""
    15521665msgstr ""
    15531666
     
    15651678
    15661679#: app/views/tools/form.php:43
    1567 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."
     1680msgid ""
     1681"Now when you find a page you want to save off as a Pretty Link, just click "
     1682"the \"Bookmarks\" icon at the bottom of the screen and select your \"Get "
     1683"PrettyLink\" bookmarklet."
    15681684msgstr ""
    15691685
    15701686#: app/views/tools/form.php:50
    1571 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."
     1687msgid ""
     1688"Pretty Link is already automatically trimming Clicks older than 90 days. "
     1689"Although not necessary, you can still use the buttons below to force click "
     1690"trimming."
    15721691msgstr ""
    15731692
    15741693#: app/views/tools/form.php:53
    1575 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!"
     1694msgid ""
     1695"***WARNING*** If you click OK you will delete ALL of the Click data that is "
     1696"older than 30 days. Your data will be gone forever -- no way to retreive it. "
     1697"Do not click OK unless you are absolutely sure you want to delete this data "
     1698"because there is no going back!"
    15761699msgstr ""
    15771700
     
    15851708
    15861709#: app/views/tools/form.php:56
    1587 msgid "This will clear all clicks in your database that are older than 30 days."
     1710msgid ""
     1711"This will clear all clicks in your database that are older than 30 days."
    15881712msgstr ""
    15891713
    15901714#: app/views/tools/form.php:58
    1591 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!"
     1715msgid ""
     1716"***WARNING*** If you click OK you will delete ALL of the Click data that is "
     1717"older than 90 days. Your data will be gone forever -- no way to retreive it. "
     1718"Do not click OK unless you are absolutely sure you want to delete this data "
     1719"because there is no going back!"
    15921720msgstr ""
    15931721
     
    16011729
    16021730#: app/views/tools/form.php:61
    1603 msgid "This will clear all clicks in your database that are older than 90 days."
     1731msgid ""
     1732"This will clear all clicks in your database that are older than 90 days."
    16041733msgstr ""
    16051734
    16061735#: app/views/tools/form.php:65
    1607 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!"
     1736msgid ""
     1737"***WARNING*** If you click OK you will delete ALL of the Click data in your "
     1738"Database. Your data will be gone forever -- no way to retreive it. Do not "
     1739"click OK unless you are absolutely sure you want to delete all your data "
     1740"because there is no going back!"
    16081741msgstr ""
    16091742
     
    16171750
    16181751#: app/views/tools/form.php:68
    1619 msgid "Seriously, only click this link if you want to delete all the Click data in your database."
     1752msgid ""
     1753"Seriously, only click this link if you want to delete all the Click data in "
     1754"your database."
    16201755msgstr ""
    16211756
     
    16461781
    16471782#: pro/app/controllers/PlpLinksController.php:213
    1648 msgid "Your URL Replacements must be formatted as a comma separated list of properly formatted URLs (http[s]://example.com/whatever)"
     1783msgid ""
     1784"Your URL Replacements must be formatted as a comma separated list of "
     1785"properly formatted URLs (http[s]://example.com/whatever)"
    16491786msgstr ""
    16501787
     
    17471884
    17481885#: pro/app/controllers/PlpLinksController.php:829
    1749 msgid "This link expired after %d clicks and will now cause a 404 error when visited"
     1886msgid ""
     1887"This link expired after %d clicks and will now cause a 404 error when visited"
    17501888msgstr ""
    17511889
     
    17711909
    17721910#: pro/app/controllers/PlpLinksController.php:855
    1773 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."
     1911msgid ""
     1912"A Time Period Redirect is currently active for this link. When visited it "
     1913"will currently redirect to %s rather than the Target URL unless the link is "
     1914"expired."
    17741915msgstr ""
    17751916
    17761917#: pro/app/controllers/PlpLinksController.php:859
    1777 msgid "Time Period Redirects have been setup for this link but the current time is not within any of them currently."
     1918msgid ""
     1919"Time Period Redirects have been setup for this link but the current time is "
     1920"not within any of them currently."
    17781921msgstr ""
    17791922
     
    17871930
    17881931#: pro/app/controllers/PlpOptionsController.php:111
    1789 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\""
     1932msgid ""
     1933"You need to enter a valid Pretty Link Base URL now that you have selected "
     1934"\"Use an alternate base url for your Pretty Links\""
    17901935msgstr ""
    17911936
    17921937#: pro/app/controllers/PlpOptionsController.php:116
    1793 msgid "You need to enter a valid Public Link Display URL now that you have selected \"Use a custom public link display page\""
     1938msgid ""
     1939"You need to enter a valid Public Link Display URL now that you have selected "
     1940"\"Use a custom public link display page\""
    17941941msgstr ""
    17951942
     
    19342081
    19352082#: pro/app/helpers/PlpPostsHelper.php:76
    1936 msgid "A Pretty Link hasn't been generated for this entry yet. Click \"Update Post\" to generate."
     2083msgid ""
     2084"A Pretty Link hasn't been generated for this entry yet. Click \"Update Post"
     2085"\" to generate."
    19372086msgstr ""
    19382087
     
    20492198
    20502199#: pro/app/views/import-export/form.php:26
    2051 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 Links Pro will attempt to update existing links."
     2200msgid ""
     2201"There are two ways to import a file.<br/><br/>1) Importing to update "
     2202"existing links and<br/><br/>2) Importing to generate new links. When "
     2203"Importing to generate new links, you must delete the \"id\" column from the "
     2204"CSV before importing. If the \"id\" column is present, Pretty Links Pro will "
     2205"attempt to update existing links."
    20522206msgstr ""
    20532207
     
    20612215
    20622216#: pro/app/views/import-export/form.php:40
    2063 msgid "Select a file that has been formatted as a Pretty Link CSV import file and click \"Import\""
     2217msgid ""
     2218"Select a file that has been formatted as a Pretty Link CSV import file and "
     2219"click \"Import\""
    20642220msgstr ""
    20652221
     
    21292285
    21302286#: pro/app/views/links/form.php:30
    2131 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."
     2287msgid ""
     2288"Select the type of expiration you want for this link.<br/><br/><b>Date</b> "
     2289"Select this option if you'd like to expire your link after a certain date."
     2290"<br/><br/><b>Clicks</b>: Select this option to expire this link after it has "
     2291"been clicked a specific number of times."
    21322292msgstr ""
    21332293
     
    21372297
    21382298#: pro/app/views/links/form.php:52
    2139 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>"
     2299msgid ""
     2300"Enter the number of times this link can be clicked before it expires.<br/"
     2301"><br/><b>Note: Expirations based on clicks wouldn't work properly if you had "
     2302"tracking turned off for this link so as long as this is set to Clicks, "
     2303"Pretty Link will ensure tracking is turned on for this link as well.</b>"
    21402304msgstr ""
    21412305
     
    21452309
    21462310#: pro/app/views/links/form.php:72
    2147 msgid "Enter a date here in the format YYYY-MM-DD to set when this link should expire."
     2311msgid ""
     2312"Enter a date here in the format YYYY-MM-DD to set when this link should "
     2313"expire."
    21482314msgstr ""
    21492315
     
    21572323
    21582324#: pro/app/views/links/form.php:92
    2159 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>."
     2325msgid ""
     2326"When this link expires, do you want to redirect to a specific URL. You can "
     2327"use this to redirect to a page you've setup to indicate that the link is "
     2328"expired.<br/><br/><b>Note: If this is not set the link will throw a 404 "
     2329"error when expired</b>."
    21602330msgstr ""
    21612331
     
    21692339
    21702340#: pro/app/views/links/form.php:111
    2171 msgid "This is the URL that this link will redirect to after the expiration date above."
     2341msgid ""
     2342"This is the URL that this link will redirect to after the expiration date "
     2343"above."
    21722344msgstr ""
    21732345
     
    21772349
    21782350#: pro/app/views/links/form.php:132
    2179 msgid "Enter a comma separated list of keywords / keyword phrases that you'd like to replace with this link in your Posts &amp; Pages."
     2351msgid ""
     2352"Enter a comma separated list of keywords / keyword phrases that you'd like "
     2353"to replace with this link in your Posts &amp; Pages."
    21802354msgstr ""
    21812355
     
    21892363
    21902364#: pro/app/views/links/form.php:144
    2191 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>"
     2365msgid ""
     2366"Enter a comma separated list of the URLs that you'd like to replace with "
     2367"this Pretty Link in your Posts &amp; Pages. These must be formatted as URLs "
     2368"for example: <code>http://example.com</code> or <code>http://example.com?"
     2369"product_id=53</code>"
    21922370msgstr ""
    21932371
     
    21972375
    21982376#: pro/app/views/links/form.php:163
    2199 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."
     2377msgid ""
     2378"Useful for adding Google Analytics tracking, Facebook retargeting pixels, or "
     2379"any other kind of tracking script to the HTML head for this pretty link.<br/"
     2380"><br/>These scripts will be in addition to any global one's you've defined "
     2381"in the options.<br/><br/><b>NOTE:</b> This does NOT work with 301, 302 and "
     2382"307 type redirects."
    22002383msgstr ""
    22012384
     
    22092392
    22102393#: pro/app/views/links/form.php:180
    2211 msgid "These powerful options are available to give you dynamic control over redirection for this pretty link."
     2394msgid ""
     2395"These powerful options are available to give you dynamic control over "
     2396"redirection for this pretty link."
    22122397msgstr ""
    22132398
     
    22292414
    22302415#: pro/app/views/links/form.php:203
    2231 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>"
     2416msgid ""
     2417"Enter the Target URLs that you'd like to rotate through when this Pretty "
     2418"Link is Clicked. These must be formatted as URLs example: <code>http://"
     2419"example.com</code> or <code>http://example.com?product_id=53</code>"
    22322420msgstr ""
    22332421
     
    22492437
    22502438#: pro/app/views/links/form.php:230
    2251 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."
     2439msgid ""
     2440"Split testing will enable you to track the effectiveness of several links "
     2441"against each other. This works best when you have multiple link rotation "
     2442"URLs entered."
    22522443msgstr ""
    22532444
     
    22742465
    22752466#: pro/app/views/links/form.php:285
    2276 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."
     2467msgid ""
     2468"This will enable you to setup specific target urls that this pretty link "
     2469"will redirect to based on the country of the person visiting the url."
    22772470msgstr ""
    22782471
     
    22872480
    22882481#: pro/app/views/links/form.php:299
    2289 msgid "This will allow you to redirect based on your visitor's device, operating system and/or browser"
     2482msgid ""
     2483"This will allow you to redirect based on your visitor's device, operating "
     2484"system and/or browser"
    22902485msgstr ""
    22912486
     
    22952490
    22962491#: pro/app/views/links/form.php:313
    2297 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>"
     2492msgid ""
     2493"This will allow you to redirect based on the time period in which your "
     2494"visitor visits this link.<br/><br/><b>Note: If your visitor doesn't visit "
     2495"the link during any of the specified time periods set here, they'll simply "
     2496"be redirected to the main target url.</b>"
    22982497msgstr ""
    22992498
     
    23072506
    23082507#: pro/app/views/links/geo_row.php:16
    2309 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"
     2508msgid ""
     2509"This is a comma-separated list of countries that this redirect will match "
     2510"on. Just start typing a country's name and an autocomplete dropdown will "
     2511"appear to select from. Once a country is selected, feel free to start typing "
     2512"the name of another country. You can add as many as you'd like this redirect "
     2513"to match on"
    23102514msgstr ""
    23112515
     
    23202524
    23212525#: pro/app/views/links/geo_row.php:29
    2322 msgid "This is the URL that this Pretty Link will redirect to if the visitor's country match the settings here."
     2526msgid ""
     2527"This is the URL that this Pretty Link will redirect to if the visitor's "
     2528"country match the settings here."
    23232529msgstr ""
    23242530
     
    23422548
    23432549#: pro/app/views/links/link-options.php:6
    2344 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."
     2550msgid ""
     2551"Use this to prefix all newly generated pretty links with a directory of your "
     2552"choice. For example set to <b>out</b> to make your pretty links look like "
     2553"http://site.com/<b>out</b>/xyz. Changing this option will NOT affect "
     2554"existing pretty links. If you do not wish to use a directory prefix, leave "
     2555"this text field blank. Whatever you type here will be sanitized and modified "
     2556"to ensure it is URL-safe. So <b>Hello World</b> might get changed to "
     2557"something like <b>hello-world</b> instead. Lowercase letters, numbers, "
     2558"dashes, and underscores are allowed."
    23452559msgstr ""
    23462560
     
    23512565
    23522566#: pro/app/views/links/link-options.php:19
    2353 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."
     2567msgid ""
     2568"The number of characters to use when auto-generating a random slug for "
     2569"pretty links. The default is 4. You cannot use less than 2."
    23542570msgstr ""
    23552571
     
    23602576
    23612577#: pro/app/views/links/link-options.php:31
    2362 msgid "Requires Google Analyticator, Google Analytics by MonsterInsights (formerly Yoast), or the Google Analytics Plugin to be installed and configured on your site."
     2578msgid ""
     2579"Requires Google Analyticator, Google Analytics by MonsterInsights (formerly "
     2580"Yoast), or the Google Analytics Plugin to be installed and configured on "
     2581"your site."
    23632582msgstr ""
    23642583
     
    23722591
    23732592#: pro/app/views/links/link-options.php:44
    2374 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."
     2593msgid ""
     2594"This will enable a link in your pretty link admin that will allow you to "
     2595"automatically download a QR Code for each individual Pretty Link."
    23752596msgstr ""
    23762597
     
    23812602
    23822603#: pro/app/views/links/link-options.php:57
    2383 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."
     2604msgid ""
     2605"Useful for adding Google Analytics tracking, Facebook retargeting pixels, or "
     2606"any other kind of tracking script to the HTML head.<br/><br/>What you enter "
     2607"in this box will be applied to all supported pretty links.<br/><br/><b>NOTE:"
     2608"</b> This does NOT work with 301, 302 and 307 type redirects."
    23842609msgstr ""
    23852610
     
    24012626
    24022627#: pro/app/views/links/tech_row.php:18
    2403 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."
     2628msgid ""
     2629"<b>Desktop</b> will match on any conventional laptop or desktop computer.<br/"
     2630"><br/><b>Mobile</b> will match on any phone, tablet or other portable device."
     2631"<br/><br/><b>Phone</b> will match on any phone or similarly small device.<br/"
     2632"><br/><b>Tablet</b> will match on any tablet sized device."
    24042633msgstr ""
    24052634
     
    24342663
    24352664#: pro/app/views/links/tech_row.php:37
    2436 msgid "Use this dropdown to select which Operating System this redirect will match on."
     2665msgid ""
     2666"Use this dropdown to select which Operating System this redirect will match "
     2667"on."
    24372668msgstr ""
    24382669
     
    25142745
    25152746#: pro/app/views/links/tech_row.php:83
    2516 msgid "This is the URL that this Pretty Link will redirect to if the visitor's device, os and browser match the settings here."
     2747msgid ""
     2748"This is the URL that this Pretty Link will redirect to if the visitor's "
     2749"device, os and browser match the settings here."
    25172750msgstr ""
    25182751
     
    25262759
    25272760#: pro/app/views/links/time_row.php:17
    2528 msgid "This is where you'll enter the beginning of the time period for this redirect"
     2761msgid ""
     2762"This is where you'll enter the beginning of the time period for this redirect"
    25292763msgstr ""
    25302764
     
    25462780
    25472781#: pro/app/views/links/time_row.php:43
    2548 msgid "This is the URL that this Pretty Link will redirect to when the visitor visits the link in the associated time period."
     2782msgid ""
     2783"This is the URL that this Pretty Link will redirect to when the visitor "
     2784"visits the link in the associated time period."
    25492785msgstr ""
    25502786
     
    25782814
    25792815#: pro/app/views/options/autocreate.php:51
    2580 msgid "If this button is checked then you'll have the ability to include a social buttons bar on your %s."
     2816msgid ""
     2817"If this button is checked then you'll have the ability to include a social "
     2818"buttons bar on your %s."
    25812819msgstr ""
    25822820
     
    25942832
    25952833#: pro/app/views/options/form.php:16
    2596 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."
     2834msgid ""
     2835"If checked, this will enable you to automatically replace keywords and/or "
     2836"URLs on your blog with pretty links. You will specify the specific keywords "
     2837"and urls from your Pretty Link edit page."
    25972838msgstr ""
    25982839
     
    26062847
    26072848#: pro/app/views/options/form.php:37
    2608 msgid "Don't want to have too many keyword replacements per page? Select to set some reasonable keyword replacement thresholds."
     2849msgid ""
     2850"Don't want to have too many keyword replacements per page? Select to set "
     2851"some reasonable keyword replacement thresholds."
    26092852msgstr ""
    26102853
     
    26182861
    26192862#: pro/app/views/options/form.php:57
    2620 msgid "Maximum number of unique keyword / keyphrases you can replace with Pretty Links per page."
     2863msgid ""
     2864"Maximum number of unique keyword / keyphrases you can replace with Pretty "
     2865"Links per page."
    26212866msgstr ""
    26222867
     
    26422887
    26432888#: pro/app/views/options/form.php:90
    2644 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."
     2889msgid ""
     2890"Ensure that these keyword replacement links are opened in a separate window. "
     2891"<strong>Note:</strong> This does not apply to url replacements--only keyword "
     2892"replacements."
    26452893msgstr ""
    26462894
     
    26542902
    26552903#: pro/app/views/options/form.php:104
    2656 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."
     2904msgid ""
     2905"This adds the html <code>NOFOLLOW</code> attribute to all keyword "
     2906"replacement links. <strong>Note:</strong> This does not apply to url "
     2907"replacements--only keyword replacements."
    26572908msgstr ""
    26582909
     
    26662917
    26672918#: pro/app/views/options/form.php:118
    2668 msgid "Add some custom formatting to your keyword pretty link replacements. <strong>Note:</strong> This does not apply to url replacements--only keyword replacements."
     2919msgid ""
     2920"Add some custom formatting to your keyword pretty link replacements. "
     2921"<strong>Note:</strong> This does not apply to url replacements--only keyword "
     2922"replacements."
    26692923msgstr ""
    26702924
     
    26782932
    26792933#: pro/app/views/options/form.php:132
    2680 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."
     2934msgid ""
     2935"Add some custom formatting to the hover attribute of your keyword pretty "
     2936"links. <strong>Note:</strong> This does not apply to url replacements--only "
     2937"keyword replacements."
    26812938msgstr ""
    26822939
     
    26902947
    26912948#: pro/app/views/options/form.php:147
    2692 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."
     2949msgid ""
     2950"When enabled, this will add a link to your official affiliate link "
     2951"disclosure page to any page, post or custom post type that have any keyword "
     2952"or URL replacements. You'll also be able to customize the URL and position "
     2953"of the disclosure link."
    26932954msgstr ""
    26942955
     
    26982959
    26992960#: pro/app/views/options/form.php:169
    2700 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."
     2961msgid ""
     2962"This is the URL of the page that contains your official affiliate link "
     2963"disclosures. This URL will be used in the link that will be generated."
    27012964msgstr ""
    27022965
     
    27102973
    27112974#: pro/app/views/options/form.php:184
    2712 msgid "This is the text of the link to your disclosures. This text will be visible to your visitors when the link is displayed."
     2975msgid ""
     2976"This is the text of the link to your disclosures. This text will be visible "
     2977"to your visitors when the link is displayed."
    27132978msgstr ""
    27142979
     
    27222987
    27232988#: pro/app/views/options/form.php:199
    2724 msgid "This is the position of the link to your disclosures in relation to your post content."
     2989msgid ""
     2990"This is the position of the link to your disclosures in relation to your "
     2991"post content."
    27252992msgstr ""
    27262993
     
    27463013
    27473014#: pro/app/views/options/form.php:223
    2748 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."
     3015msgid ""
     3016"When enabled, this will add an affiliate link disclosure next to each one of "
     3017"your keyword replacements. <b>Note:</b> This does not apply to url "
     3018"replacements--only keyword replacements."
    27493019msgstr ""
    27503020
     
    27583028
    27593029#: pro/app/views/options/form.php:245
    2760 msgid "This is the text that will be added after each keyword replacement to indicate that the link is an affiliate link."
     3030msgid ""
     3031"This is the text that will be added after each keyword replacement to "
     3032"indicate that the link is an affiliate link."
    27613033msgstr ""
    27623034
     
    27703042
    27713043#: pro/app/views/options/form.php:264
    2772 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."
     3044msgid ""
     3045"This feature will take each url it finds and create or use an existing "
     3046"pretty link pointing to the url and replace it with the pretty link."
    27733047msgstr ""
    27743048
     
    27823056
    27833057#: pro/app/views/options/form.php:284
    2784 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."
     3058msgid ""
     3059"Any links on your site which point to domains you define here will not be "
     3060"replaced automatically with Pretty Links. Place one domain per line.<br/><br/"
     3061">You MUST enter http:// or https:// in front of the domain names and do NOT "
     3062"include any /'s or other text after the domain name.<br/><br/>Proper entry "
     3063"example:<br/><b>https://www.google.com</b><br/><b>http://mysite.org</b><br/"
     3064"><br/>Improperly entered domains will be removed upon saving the Options."
    27853065msgstr ""
    27863066
     
    27943074
    27953075#: pro/app/views/options/form.php:303
    2796 msgid "This option will enable the keyword / URL replacement routine to run in Comments."
     3076msgid ""
     3077"This option will enable the keyword / URL replacement routine to run in "
     3078"Comments."
    27973079msgstr ""
    27983080
     
    28063088
    28073089#: pro/app/views/options/form.php:317
    2808 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."
     3090msgid ""
     3091"This option will enable the keyword / URL replacement routine to run in RSS "
     3092"Feeds.<br/><strong>Note:</strong> This option can slow the load speed of "
     3093"your RSS feed -- unless used in conjunction with a caching plugin like W3 "
     3094"Total Cache or WP Super Cache.<br/><strong>Note #2</strong> This option will "
     3095"only work if you have \"Full Text\" selected in your General WordPress "
     3096"Reading settings.<br/><strong>Note #3:</strong> If this option is used along "
     3097"with \"Replace Keywords and URLs in Comments\" then your post comment feeds "
     3098"will have keywords replaced in them as well."
    28093099msgstr ""
    28103100
     
    28143104
    28153105#: pro/app/views/options/form.php:331
    2816 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."
     3106msgid ""
     3107"This feature will index all of your keyword & URL replacements to "
     3108"dramatically improve performance.<br/><br/>If your site has a large number "
     3109"of replacements and/or posts then this feature may increase the load on your "
     3110"server temporarily and your replacements may not show up on your posts for a "
     3111"day or two initially (until all posts are indexed).<br/><br/><strong>Note:</"
     3112"strong> this feature requires the use of wp-cron."
    28173113msgstr ""
    28183114
     
    28223118
    28233119#: pro/app/views/options/form.php:351
    2824 msgid "This shows how many posts have keywords indexed for and are ready for replacement."
     3120msgid ""
     3121"This shows how many posts have keywords indexed for and are ready for "
     3122"replacement."
    28253123msgstr ""
    28263124
     
    28423140
    28433141#: pro/app/views/options/form.php:374
    2844 msgid "This shows how many posts have url replacements indexed for and are ready for replacement."
     3142msgid ""
     3143"This shows how many posts have url replacements indexed for and are ready "
     3144"for replacement."
    28453145msgstr ""
    28463146
     
    28623162
    28633163#: pro/app/views/options/form.php:432
    2864 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."
     3164msgid ""
     3165"If set, this will replace the logo image on the Pretty Bar. The image that "
     3166"this URL references should be 48x48 Pixels to fit."
    28653167msgstr ""
    28663168
     
    28743176
    28753177#: pro/app/views/options/form.php:446
    2876 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."
     3178msgid ""
     3179"If set, this will replace the background image on Pretty Bar. The image that "
     3180"this URL references should be 65px tall - this image will be repeated "
     3181"horizontally across the bar."
    28773182msgstr ""
    28783183
     
    28863191
    28873192#: pro/app/views/options/form.php:460
    2888 msgid "This will alter the background color of the Pretty Bar if you haven't specified a Pretty Bar background image."
     3193msgid ""
     3194"This will alter the background color of the Pretty Bar if you haven't "
     3195"specified a Pretty Bar background image."
    28893196msgstr ""
    28903197
     
    28983205
    28993206#: pro/app/views/options/form.php:474
    2900 msgid "If not set, this defaults to black (RGB value <code>#000000</code>) but you can change it to whatever color you like."
     3207msgid ""
     3208"If not set, this defaults to black (RGB value <code>#000000</code>) but you "
     3209"can change it to whatever color you like."
    29013210msgstr ""
    29023211
     
    29103219
    29113220#: pro/app/views/options/form.php:488
    2912 msgid "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you can change it to whatever color you like."
     3221msgid ""
     3222"If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
     3223"can change it to whatever color you like."
    29133224msgstr ""
    29143225
     
    29223233
    29233234#: pro/app/views/options/form.php:502
    2924 msgid "If not set, this defaults to RGB value <code>#ababab</code> but you can change it to whatever color you like."
     3235msgid ""
     3236"If not set, this defaults to RGB value <code>#ababab</code> but you can "
     3237"change it to whatever color you like."
    29253238msgstr ""
    29263239
     
    29343247
    29353248#: pro/app/views/options/form.php:516
    2936 msgid "If not set, this defaults to RGB value <code>#551a8b</code> but you can change it to whatever color you like."
     3249msgid ""
     3250"If not set, this defaults to RGB value <code>#551a8b</code> but you can "
     3251"change it to whatever color you like."
    29373252msgstr ""
    29383253
     
    29463261
    29473262#: pro/app/views/options/form.php:530
    2948 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."
     3263msgid ""
     3264"If your Website has a long title then you may need to adjust this value so "
     3265"that it will all fit on the Pretty Bar. It is recommended that you keep this "
     3266"value to <code>30</code> characters or less so the Pretty Bar's format looks "
     3267"good across different browsers and screen resolutions."
    29493268msgstr ""
    29503269
     
    29583277
    29593278#: pro/app/views/options/form.php:544
    2960 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."
     3279msgid ""
     3280"If your Website has a long Description (tagline) then you may need to adjust "
     3281"this value so that it will all fit on the Pretty Bar. It is recommended that "
     3282"you keep this value to <code>40</code> characters or less so the Pretty "
     3283"Bar's format looks good across different browsers and screen resolutions."
    29613284msgstr ""
    29623285
     
    29703293
    29713294#: pro/app/views/options/form.php:558
    2972 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"
     3295msgid ""
     3296"If you link to a lot of large Target URLs you may want to adjust this value. "
     3297"It is recommended that you keep this value to <code>40</code> or below so "
     3298"the Pretty Bar's format looks good across different browsers and URL sizes"
    29733299msgstr ""
    29743300
     
    29823308
    29833309#: pro/app/views/options/form.php:572
    2984 msgid "Make sure this is checked if you want the title of your blog (and link) to show up on the Pretty Bar."
     3310msgid ""
     3311"Make sure this is checked if you want the title of your blog (and link) to "
     3312"show up on the Pretty Bar."
    29853313msgstr ""
    29863314
     
    29943322
    29953323#: pro/app/views/options/form.php:586
    2996 msgid "Make sure this is checked if you want your site description to show up on the Pretty Bar."
     3324msgid ""
     3325"Make sure this is checked if you want your site description to show up on "
     3326"the Pretty Bar."
    29973327msgstr ""
    29983328
     
    30063336
    30073337#: pro/app/views/options/form.php:600
    3008 msgid "Make sure this is checked if you want \"share links\" to show up on the Pretty Bar."
     3338msgid ""
     3339"Make sure this is checked if you want \"share links\" to show up on the "
     3340"Pretty Bar."
    30093341msgstr ""
    30103342
     
    30183350
    30193351#: pro/app/views/options/form.php:614
    3020 msgid "Make sure this is checked if you want a link displaying the Target URL to show up on the Pretty Bar."
     3352msgid ""
     3353"Make sure this is checked if you want a link displaying the Target URL to "
     3354"show up on the Pretty Bar."
    30213355msgstr ""
    30223356
     
    30263360
    30273361#: pro/app/views/options/form.php:628
    3028 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 Links Pro</em> <a href=\"https://prettylinks.com/plp/options/aff-attribution\">Affiliate URL</a> to earn a few bucks while you are at it."
     3362msgid ""
     3363"Check this to hide the pretty link attribution link on the pretty bar.<br/"
     3364"><br/><strong>Wait, before you do this, you might want to leave this un-"
     3365"checked and set the alternate URL of this link to your <em>Pretty Links Pro</"
     3366"em> <a href=\"https://prettylinks.com/plp/options/aff-attribution"
     3367"\">Affiliate URL</a> to earn a few bucks while you are at it."
    30293368msgstr ""
    30303369
     
    30383377
    30393378#: pro/app/views/options/form.php:649
    3040 msgid "If set, this will replace the Pretty Bars attribution URL. This is a very good place to put your <em>Pretty Links Pro</em> <a href=\"https://prettylinks.com/plp/options/aff-attribution-2\">Affiliate Link</a>."
     3379msgid ""
     3380"If set, this will replace the Pretty Bars attribution URL. This is a very "
     3381"good place to put your <em>Pretty Links Pro</em> <a href=\"https://"
     3382"prettylinks.com/plp/options/aff-attribution-2\">Affiliate Link</a>."
    30413383msgstr ""
    30423384
     
    30543396
    30553397#: pro/app/views/options/form.php:669
    3056 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."
     3398msgid ""
     3399"Select which buttons you want to be visible on the Social Buttons Bar.<br/"
     3400"><br/><code>Note:</code> In order for the Social Buttons Bar to be visible "
     3401"on Pages and or Posts, you must first enable it in the \"Page &amp; Post "
     3402"Options\" section above."
    30573403msgstr ""
    30583404
     
    30663412
    30673413#: pro/app/views/options/form.php:695
    3068 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."
     3414msgid ""
     3415"This determines where your Social Buttons Placement should appear in "
     3416"relation to content on Pages and/or Posts.<br/><br/><code>Note:</code> If "
     3417"you want this bar to appear then you must enable it in the \"Page and Post "
     3418"Options\" above."
    30693419msgstr ""
    30703420
     
    30743424
    30753425#: pro/app/views/options/form.php:706
    3076 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."
     3426msgid ""
     3427"If you select none, you can still show your Social Buttons by manually "
     3428"adding the <code>[social_buttons_bar]</code> shortcode to your blog posts or "
     3429"<code>&lt;?php the_social_buttons_bar(); ?&gt;</code> template tag to your "
     3430"WordPress Theme."
    30773431msgstr ""
    30783432
     
    30903444
    30913445#: pro/app/views/options/form.php:740
    3092 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 Links 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."
     3446msgid ""
     3447"This option will give you the ability to turn your website into a link "
     3448"shortening service for your users. Once selected, you can enable the Pretty "
     3449"Links Pro Sidebar Widget or just display the link creation form with the "
     3450"<code>[prli_create_form]</code> shortcode in any post or page on your "
     3451"website."
    30933452msgstr ""
    30943453
     
    31023461
    31033462#: pro/app/views/options/form.php:760
    3104 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."
     3463msgid ""
     3464"When a link is created using the public form, the user is typically "
     3465"redirected to a simple page displaying their new pretty link. But, you can "
     3466"specify a page that you want them to be redirected to on your website, using "
     3467"your branding instead by selecting this box and entering the url of the page "
     3468"you want them to go to."
    31053469msgstr ""
    31063470
     
    31143478
    31153479#: pro/app/views/options/form.php:780
    3116 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 (/)."
     3480msgid ""
     3481"To set this up, create a new page on your WordPress site and make sure the "
     3482"<code>[prli_create_display]</code> appears somewhere on this page -- "
     3483"otherwise the link will never get created. Once this page is created, just "
     3484"enter the full URL to it here. Make sure this URL does npt end with a slash "
     3485"(/)."
    31173486msgstr ""
    31183487
     
    31263495
    31273496#: pro/app/views/options/general.php:11
    3128 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."
     3497msgid ""
     3498"Use this option if you want to substitute your actual blog's url with "
     3499"another URL. You must have another valid domain name pointing to this "
     3500"WordPress install before you enable this option. If you are using this "
     3501"option to just get rid of the www in the beginning of your url that is fine "
     3502"-- just make sure your domain works without the www before enabling this "
     3503"option."
    31293504msgstr ""
    31303505
     
    31343509
    31353510#: pro/app/views/options/general.php:31
    3136 msgid "Enter a valid base url that points at this WordPress install. Make sure this URL does not end with a slash (/)."
     3511msgid ""
     3512"Enter a valid base url that points at this WordPress install. Make sure this "
     3513"URL does not end with a slash (/)."
    31373514msgstr ""
    31383515
     
    31463523
    31473524#: pro/app/views/options/general.php:50
    3148 msgid "Use this option to set the minimum role of users who can access the Admin interface for Pretty Link."
     3525msgid ""
     3526"Use this option to set the minimum role of users who can access the Admin "
     3527"interface for Pretty Link."
    31493528msgstr ""
    31503529
     
    32343613
    32353614#: pro/app/views/reports/edit.php:103 pro/app/views/reports/new.php:103
    3236 msgid "If you want to enable conversion tracking in this report then select a goal link."
     3615msgid ""
     3616"If you want to enable conversion tracking in this report then select a goal "
     3617"link."
    32373618msgstr ""
    32383619
     
    32903671
    32913672#: pro/app/views/tools/generator.php:10
    3292 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."
     3673msgid ""
     3674"Alter the options below to customize this Bookmarklet. As you modify the "
     3675"label, redirect type, tracking and group, you will see this bookmarklet "
     3676"update -- when the settings are how you want them, drag the bookmarklet into "
     3677"your toolbar. You can create as many bookmarklets as you want each with "
     3678"different settings."
    32933679msgstr ""
    32943680
     
    43534739msgid "Bye\n"
    43544740msgstr ""
    4355 #. Plugin Name of the plugin/theme
    4356 msgid "Pretty Links"
    4357 msgstr ""
    43584741
    43594742#. Plugin URI of the plugin/theme
     
    43624745
    43634746#. Description of the plugin/theme
    4364 msgid "Shrink, track and share any URL on the Internet from your WordPress website!"
     4747msgid ""
     4748"Shrink, track and share any URL on the Internet from your WordPress website!"
    43654749msgstr ""
    43664750
  • pretty-link/tags/2.1.9/pretty-link.php

    r2023089 r2078274  
    44Plugin URI: https://prettylinks.com/pl/plugin-uri
    55Description: Shrink, track and share any URL on the Internet from your WordPress website!
    6 Version: 2.1.8
     6Version: 2.1.9
    77Author: Blair Williams
    88Author URI: http://blairwilliams.com
  • pretty-link/tags/2.1.9/readme.txt

    r2024443 r2078274  
    11=== Shortlinks by Pretty Links - Best WordPress Link Tracking Plugin ===
    2 Contributors: supercleanse, cartpauj
     2Contributors: supercleanse
    33Donate link: https://prettylinks.com
    44Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, redirection, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, shortening, 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: 5.1
    7 Stable tag: 2.1.8
     5Requires at least: 4.9
     6Tested up to: 5.2
     7Stable tag: 2.1.9
    88
    99Shrink, 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!
     
    6666
    6767== Changelog ==
     68= 2.1.9 =
     69* Fixed some security issues
     70
    6871= 2.1.8 =
    6972* Fixed broken charts in dashboard widget
  • pretty-link/trunk/app/controllers/PrliLinksController.php

    r1800524 r2078274  
    1919    // "new()" has its own submenu so we don't need a route for it here
    2020    switch($action) {
    21       case 'list-form':
    22         return self::list_form($params);
     21      // POST ACTIONS
    2322      case 'quick-create':
    2423        return self::quick_create_link($params);
    2524      case 'create':
    2625        return self::create_link($params);
    27       case 'edit':
    28         return self::edit_link($params);
    2926      case 'bulk-update':
    3027        return self::bulk_update_links($params);
     
    3734      case 'bulk-destroy':
    3835        return self::bulk_destroy_links($params);
     36
     37      // GET ACTIONS
     38      case 'edit':
     39        return self::edit_link($params);
    3940      default:
    4041        return self::list_links($params);
     
    5556  }
    5657
    57   public function list_form($params) {
    58     if(apply_filters('prli-link-list-process-form', true))
    59       self::display_links_list($params, PrliUtils::get_main_message());
    60     }
    61 
    6258  public static function new_link($params) {
    6359    global $prli_group;
     
    7066  public static function quick_create_link($params) {
    7167    global $prli_link, $prli_group, $prli_options;
     68
     69    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'update-options' ) ) {
     70      die( 'Security Check' );
     71    }
    7272
    7373    $params = self::get_params_array();
     
    103103  public static function create_link($params) {
    104104    global $prli_link, $prli_group;
     105
     106    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'update-options' ) ) {
     107      die( 'Security Check' );
     108    }
     109
    105110    $errors = $prli_link->validate($_POST);
    106111
     
    124129  public static function edit_link($params) {
    125130    global $prli_group, $prli_link;
     131
    126132    $groups = $prli_group->getAll('',' ORDER BY name');
    127133
     
    134140  public static function update_link($params) {
    135141    global $prli_link, $prli_group;
     142
     143    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'update-options' ) ) {
     144      die( 'Security Check' );
     145    }
     146
    136147    $errors = $prli_link->validate($_POST);
    137148    $id = $_POST['id'];
     
    188199  public static function reset_link($params) {
    189200    global $prli_link;
     201
     202    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'link-actions' ) ) {
     203      die( 'Security Check' );
     204    }
     205
    190206    $prli_link->reset( $params['id'] );
    191207    $prli_message = __("Your Pretty Link was Successfully Reset", 'pretty-link');
     
    195211  public static function destroy_link($params) {
    196212    global $prli_link;
     213
     214    if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'link-actions' ) ) {
     215      die( 'Security Check' );
     216    }
     217
    197218    $prli_link->destroy( $params['id'] );
    198219    $prli_message = __("Your Pretty Link was Successfully Destroyed", 'pretty-link');
  • pretty-link/trunk/app/helpers/PrliLinksHelper.php

    r1572224 r2078274  
    111111    global $prli_options;
    112112
     113    $link_nonce = wp_create_nonce( 'link-actions' );
    113114    ?>
    114115    <a href="<?php echo admin_url('admin.php?page=pretty-link&action=edit&id=' . $link->id); ?>" title="<?php printf( __('Edit %s', 'pretty-link'), $link->slug ); ?>"><i class="pl-list-icon pl-icon-edit"></i></a>
    115     <a href="<?php echo admin_url('admin.php?page=pretty-link&action=destroy&id=' . $link->id); ?>" onclick="return confirm('<?php printf( __('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.', 'pretty-link'), $link->name ); ?>');" title="<?php printf( __('Delete %s', 'pretty-link'), $link->slug ); ?>"><i class="pl-list-icon pl-icon-cancel"></i></a>
    116     <a href="<?php echo admin_url('admin.php?page=pretty-link&action=reset&id=' . $link->id); ?>" onclick="return confirm('<?php printf( __('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.', 'pretty-link'), $link->name ); ?>');" title="<?php printf( __('Reset %s', 'pretty-link'), $link->name ); ?>"><i class="pl-list-icon pl-icon-reply"></i></a>
     116    <a href="<?php echo admin_url("admin.php?page=pretty-link&action=destroy&id={$link->id}&_wpnonce={$link_nonce}"); ?>" onclick="return confirm('<?php printf( __('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.', 'pretty-link'), $link->name ); ?>');" title="<?php printf( __('Delete %s', 'pretty-link'), $link->slug ); ?>"><i class="pl-list-icon pl-icon-cancel"></i></a>
     117    <a href="<?php echo admin_url("admin.php?page=pretty-link&action=reset&id={$link->id}&_wpnonce={$link_nonce}"); ?>" onclick="return confirm('<?php printf( __('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.', 'pretty-link'), $link->name ); ?>');" title="<?php printf( __('Reset %s', 'pretty-link'), $link->name ); ?>"><i class="pl-list-icon pl-icon-reply"></i></a>
    117118    <?php
    118119      if( $link->track_me and $prli_options->extended_tracking!='count' ):
  • pretty-link/trunk/app/views/links/list.php

    r1925455 r2078274  
    3232        <?php
    3333        if(!empty($search_str)) {
     34          $link_nonce = wp_create_nonce( 'link-actions' );
    3435          ?>
    35            &nbsp; <a href="<?php echo admin_url('admin.php?page=pretty-link&action=reset'); ?>" class="button"><?php _e('Reset', 'pretty-link'); ?></a>
     36           &nbsp; <a href="<?php echo admin_url("admin.php?page=pretty-link&action=reset&_wpnonce={$link_nonce}"); ?>" class="button"><?php _e('Reset', 'pretty-link'); ?></a>
    3637          <?php
    3738        }
  • pretty-link/trunk/i18n/pretty-link.pot

    r2023089 r2078274  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Pretty Links 2.1.8\n"
     5"Project-Id-Version: Pretty Links 2.1.9\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
    7 "POT-Creation-Date: 2019-01-31 23:41:26+00:00\n"
     7"POT-Creation-Date: 2019-05-01 03:50:25+00:00\n"
    88"MIME-Version: 1.0\n"
    99"Content-Type: text/plain; charset=UTF-8\n"
     
    1818msgstr ""
    1919
     20#. #-#-#-#-#  pretty-link.pot (Pretty Links 2.1.9)  #-#-#-#-#
     21#. Plugin Name of the plugin/theme
    2022#: app/controllers/PrliAppController.php:37
    2123#: app/controllers/PrliAppController.php:46 app/views/links/list.php:12
     
    100102
    101103#: app/controllers/PrliAppController.php:284
    102 msgid "You're almost done!<br/>%1$sFinish your Re-Install of Pretty Links Pro%2$s"
     104msgid ""
     105"You're almost done!<br/>%1$sFinish your Re-Install of Pretty Links Pro%2$s"
    103106msgstr ""
    104107
     
    112115
    113116#: app/controllers/PrliAppController.php:391
    114 msgid "Your Pretty Links Pro installation isn't quite complete yet. %1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
     117msgid ""
     118"Your Pretty Links Pro installation isn't quite complete yet. "
     119"%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
    115120msgstr ""
    116121
    117122#: app/controllers/PrliAppController.php:412
    118 msgid "Your Pretty Links Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
     123msgid ""
     124"Your Pretty Links Pro installation isn't quite complete yet.<br/>"
     125"%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
    119126msgstr ""
    120127
     
    171178msgstr ""
    172179
    173 #: app/controllers/PrliLinksController.php:52
     180#: app/controllers/PrliLinksController.php:53
    174181msgid "Links in Group: "
    175182msgstr ""
    176183
    177184#: app/controllers/PrliLinksController.php:98
    178 #: app/controllers/PrliLinksController.php:119
     185#: app/controllers/PrliLinksController.php:124
    179186msgid "Your Pretty Link was Successfully Created"
    180187msgstr ""
    181188
    182 #: app/controllers/PrliLinksController.php:152
     189#: app/controllers/PrliLinksController.php:163
    183190msgid "Your Pretty Link was Successfully Updated"
    184191msgstr ""
    185192
    186 #: app/controllers/PrliLinksController.php:167
     193#: app/controllers/PrliLinksController.php:178
    187194msgid "Your links were updated successfully"
    188195msgstr ""
    189196
    190 #: app/controllers/PrliLinksController.php:184
    191 #: app/controllers/PrliLinksController.php:224
     197#: app/controllers/PrliLinksController.php:195
     198#: app/controllers/PrliLinksController.php:245
    192199msgid "You are unauthorized to view this page."
    193200msgstr ""
    194201
    195 #: app/controllers/PrliLinksController.php:191
     202#: app/controllers/PrliLinksController.php:207
    196203msgid "Your Pretty Link was Successfully Reset"
    197204msgstr ""
    198205
    199 #: app/controllers/PrliLinksController.php:198
     206#: app/controllers/PrliLinksController.php:219
    200207msgid "Your Pretty Link was Successfully Destroyed"
    201208msgstr ""
    202209
    203 #: app/controllers/PrliLinksController.php:211
     210#: app/controllers/PrliLinksController.php:232
    204211msgid "Your links were deleted successfully"
    205212msgstr ""
    206213
    207 #: app/controllers/PrliLinksController.php:502
     214#: app/controllers/PrliLinksController.php:523
    208215msgid "Pretty Link Cleanup Visitor Locks"
    209216msgstr ""
     
    223230
    224231#: app/controllers/PrliOptionsController.php:75
    225 msgid "Excluded IP Addresses must be a comma separated list of IPv4 or IPv6 addresses or ranges."
     232msgid ""
     233"Excluded IP Addresses must be a comma separated list of IPv4 or IPv6 "
     234"addresses or ranges."
    226235msgstr ""
    227236
    228237#: app/controllers/PrliOptionsController.php:79
    229 msgid "Whitlist IP Addresses must be a comma separated list of IPv4 or IPv6 addresses or ranges."
     238msgid ""
     239"Whitlist IP Addresses must be a comma separated list of IPv4 or IPv6 "
     240"addresses or ranges."
    230241msgstr ""
    231242
     
    407418msgstr ""
    408419
    409 #: app/helpers/PrliLinksHelper.php:63 app/views/links/list.php:76
    410 #: app/views/links/list.php:79
     420#: app/helpers/PrliLinksHelper.php:63 app/views/links/list.php:77
     421#: app/views/links/list.php:80
    411422msgid "- No Change -"
    412423msgstr ""
     
    460471msgstr ""
    461472
    462 #: app/helpers/PrliLinksHelper.php:114 app/views/groups/list.php:63
     473#: app/helpers/PrliLinksHelper.php:115 app/views/groups/list.php:63
    463474#: app/views/groups/list.php:66
    464475msgid "Edit %s"
    465476msgstr ""
    466477
    467 #: app/helpers/PrliLinksHelper.php:115
    468 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."
    469 msgstr ""
    470 
    471 #: app/helpers/PrliLinksHelper.php:115
     478#: app/helpers/PrliLinksHelper.php:116
     479msgid ""
     480"Are you sure you want to delete your %s Pretty Link? This will delete the "
     481"Pretty Link and all of the statistical data about it in your database."
     482msgstr ""
     483
     484#: app/helpers/PrliLinksHelper.php:116
    472485msgid "Delete %s"
    473486msgstr ""
    474487
    475 #: app/helpers/PrliLinksHelper.php:116
    476 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."
    477 msgstr ""
    478 
    479 #: app/helpers/PrliLinksHelper.php:116
     488#: app/helpers/PrliLinksHelper.php:117
     489msgid ""
     490"Are you sure you want to reset your %s Pretty Link? This will delete all of "
     491"the statistical data about this Pretty Link in your database."
     492msgstr ""
     493
     494#: app/helpers/PrliLinksHelper.php:117
    480495msgid "Reset %s"
    481496msgstr ""
    482497
    483 #: app/helpers/PrliLinksHelper.php:119 app/views/clicks/list.php:161
     498#: app/helpers/PrliLinksHelper.php:120 app/views/clicks/list.php:161
    484499msgid "View clicks for %s"
    485500msgstr ""
    486501
    487 #: app/helpers/PrliLinksHelper.php:124
     502#: app/helpers/PrliLinksHelper.php:125
    488503msgid "Post %s to Twitter"
    489504msgstr ""
    490505
    491 #: app/helpers/PrliLinksHelper.php:125
     506#: app/helpers/PrliLinksHelper.php:126
    492507msgid "Send %s in an Email"
    493508msgstr ""
     
    548563
    549564#: app/models/PrliLink.php:575
    550 msgid "Pretty Link slugs must not contain question marks, ampersands or number signs."
     565msgid ""
     566"Pretty Link slugs must not contain question marks, ampersands or number "
     567"signs."
    551568msgstr ""
    552569
     
    556573
    557574#: app/models/PrliLink.php:584
    558 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."
     575msgid ""
     576"This Pretty Link Slug is already taken. Check to make sure it isn't being "
     577"used by another pretty link, post, page, category or tag slug. If none of "
     578"these are true then check to see that this slug isn't the name of a file in "
     579"the root folder of your wordpress install."
    559580msgstr ""
    560581
     
    572593
    573594#: app/views/admin/popups/rating.php:7
    574 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."
     595msgid ""
     596"If you enjoy using Pretty Link would you mind taking a moment to rate it on "
     597"WordPress.org? It won't take more than a minute."
    575598msgstr ""
    576599
     
    631654#: app/views/admin/popups/upgrade.php:17 app/views/admin/update/license.php:45
    632655#: app/views/links/form.php:233
    633 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."
     656msgid ""
     657"Plus, upgrading is fast, easy and won't disrupt any of your existing links "
     658"or data. And there's even a 14 day money back guarantee."
    634659msgstr ""
    635660
     
    653678
    654679#: app/views/admin/update/activation_warning.php:8
    655 msgid "It looks like you used to have Pretty Links Pro activated with a username and password but now you need a license key to activate it."
     680msgid ""
     681"It looks like you used to have Pretty Links Pro activated with a username "
     682"and password but now you need a license key to activate it."
    656683msgstr ""
    657684
    658685#: app/views/admin/update/activation_warning.php:9
    659 msgid "You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s"
     686msgid ""
     687"You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s"
    660688msgstr ""
    661689
    662690#: app/views/admin/update/activation_warning.php:10
    663 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."
     691msgid ""
     692"After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro"
     693"\" admin page,%2$s you'll start getting updates again."
    664694msgstr ""
    665695
    666696#: app/views/admin/update/activation_warning.php:15
    667 msgid "You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to enable automatic updates today."
     697msgid ""
     698"You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to "
     699"enable automatic updates today."
    668700msgstr ""
    669701
    670702#: app/views/admin/update/activation_warning.php:16
    671 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."
     703msgid ""
     704"After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro"
     705"\" admin page,%2$s you'll start getting automatic updates."
    672706msgstr ""
    673707
     
    677711
    678712#: app/views/admin/update/addon_popup.php:5
    679 msgid "The %s features in your Pretty Link options have been moved from Pretty Link into a separate plugin."
     713msgid ""
     714"The %s features in your Pretty Link options have been moved from Pretty Link "
     715"into a separate plugin."
    680716msgstr ""
    681717
    682718#: app/views/admin/update/addon_popup.php:6
    683 msgid "Why you ask? Well, it's to streamline and increase the performance of Pretty Link for you."
     719msgid ""
     720"Why you ask? Well, it's to streamline and increase the performance of Pretty "
     721"Link for you."
    684722msgstr ""
    685723
    686724#: app/views/admin/update/addon_popup.php:9
    687 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."
     725msgid ""
     726"And good for you, it looks like you've already got the %1$s Add-on "
     727"installed. Just click the \"Activate %2$s Add-on\" button below and you'll "
     728"get all these features back now."
    688729msgstr ""
    689730
    690731#: app/views/admin/update/addon_popup.php:11
    691 msgid "Luckily it's easy to get these features back now. Just click the \"Install %s Add-on\" button below."
     732msgid ""
     733"Luckily it's easy to get these features back now. Just click the \"Install "
     734"%s Add-on\" button below."
    692735msgstr ""
    693736
    694737#: app/views/admin/update/addon_popup.php:12
    695 msgid "If you have problems with the auto-install please refer to %1$sthe user manual%2$s for manual install instructions."
     738msgid ""
     739"If you have problems with the auto-install please refer to %1$sthe user "
     740"manual%2$s for manual install instructions."
    696741msgstr ""
    697742
     
    741786
    742787#: app/views/admin/update/edge_updates.php:4
    743 msgid "Include Pretty Links Pro edge (development) releases in automatic updates (not recommended for production websites)"
     788msgid ""
     789"Include Pretty Links Pro edge (development) releases in automatic updates "
     790"(not recommended for production websites)"
    744791msgstr ""
    745792
     
    753800
    754801#: app/views/admin/update/license.php:7
    755 msgid "You must have a License Key to enable automatic updates for Pretty Links 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."
     802msgid ""
     803"You must have a License Key to enable automatic updates for Pretty Links "
     804"Pro. If you don't have a License please go to %1$s to get one. If you do "
     805"have a license you can login at %2$s to manage your licenses and site "
     806"activations."
    756807msgstr ""
    757808
     
    765816
    766817#: app/views/admin/update/license.php:30 app/views/links/form.php:221
    767 msgid "It looks like you haven't %1$supgraded to Pretty Links Pro%2$s yet. Here are just a few things you could be doing with pro:"
     818msgid ""
     819"It looks like you haven't %1$supgraded to Pretty Links Pro%2$s yet. Here are "
     820"just a few things you could be doing with pro:"
    768821msgstr ""
    769822
     
    797850
    798851#: app/views/admin/update/license.php:72
    799 msgid "Are you sure? Pretty Links Pro will not be functional on %s if this License Key is deactivated."
     852msgid ""
     853"Are you sure? Pretty Links Pro will not be functional on %s if this License "
     854"Key is deactivated."
    800855msgstr ""
    801856
     
    884939#: app/views/clicks/list.php:43 app/views/groups/edit.php:54
    885940#: app/views/groups/new.php:58 app/views/links/edit.php:16
    886 #: app/views/links/list.php:92 app/views/links/new.php:15
     941#: app/views/links/list.php:93 app/views/links/new.php:15
    887942#: pro/app/views/reports/custom-report.php:22
    888943#: pro/app/views/reports/edit.php:109 pro/app/views/reports/new.php:109
     
    891946
    892947#: app/views/clicks/list.php:64 app/views/groups/list.php:24
    893 #: app/views/links/list.php:35 pro/app/views/reports/list.php:20
     948#: app/views/links/list.php:36 pro/app/views/reports/list.php:20
    894949msgid "Reset"
    895950msgstr ""
     
    9741029#: app/views/groups/edit.php:30 app/views/groups/list.php:39
    9751030#: app/views/groups/list.php:81 app/views/groups/new.php:36
    976 #: app/views/links/list.php:51 app/views/links/list.php:152
     1031#: app/views/links/list.php:52 app/views/links/list.php:153
    9771032#: pro/app/views/reports/edit.php:85 pro/app/views/reports/list.php:30
    9781033#: pro/app/views/reports/list.php:70 pro/app/views/reports/new.php:85
     
    9851040
    9861041#: app/views/groups/edit.php:48 app/views/groups/new.php:52
    987 msgid "Select some links for this group. <strong>Note: each link can only be in one group at a time.</strong>"
     1042msgid ""
     1043"Select some links for this group. <strong>Note: each link can only be in one "
     1044"group at a time.</strong>"
    9881045msgstr ""
    9891046
    9901047#: app/views/groups/edit.php:54 app/views/links/edit.php:16
    991 #: app/views/links/list.php:93 app/views/options/form.php:194
     1048#: app/views/links/list.php:94 app/views/options/form.php:194
    9921049#: pro/app/views/reports/edit.php:109
    9931050msgid "Update"
     
    9991056
    10001057#: app/views/groups/list.php:40 app/views/groups/list.php:68
    1001 #: app/views/groups/list.php:82 app/views/links/list.php:56
    1002 #: app/views/links/list.php:157 app/views/options/form.php:39
     1058#: app/views/groups/list.php:82 app/views/links/list.php:57
     1059#: app/views/links/list.php:158 app/views/options/form.php:39
    10031060#: pro/app/views/reports/list.php:32 pro/app/views/reports/list.php:72
    10041061msgid "Links"
     
    10061063
    10071064#: app/views/groups/list.php:41 app/views/groups/list.php:83
    1008 #: app/views/links/list.php:55 app/views/links/list.php:156
     1065#: app/views/links/list.php:56 app/views/links/list.php:157
    10091066#: pro/app/views/reports/list.php:33 pro/app/views/reports/list.php:73
    10101067msgid "Created"
     
    10531110
    10541111#: app/views/links/form.php:24
    1055 msgid "Make your life easier by upgrading to %1$sPretty Links Pro%2$s -- get more redirection types, speed, automations and <b>results from your links</b> by %1$sgoing pro today!%2$s"
     1112msgid ""
     1113"Make your life easier by upgrading to %1$sPretty Links Pro%2$s -- get more "
     1114"redirection types, speed, automations and <b>results from your links</b> by "
     1115"%1$sgoing pro today!%2$s"
    10561116msgstr ""
    10571117
     
    10791139
    10801140#: app/views/links/form.php:48
    1081 msgid "This is how your pretty link will appear. You can edit the Pretty Link slug here."
     1141msgid ""
     1142"This is how your pretty link will appear. You can edit the Pretty Link slug "
     1143"here."
    10821144msgstr ""
    10831145
     
    10871149
    10881150#: app/views/links/form.php:61
    1089 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."
     1151msgid ""
     1152"Leave this blank and Pretty Link will attempt to detect the title from the "
     1153"target url. Alternatively you can enter a custom title here."
    10901154msgstr ""
    10911155
     
    10951159
    10961160#: app/views/links/form.php:74
    1097 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."
     1161msgid ""
     1162"This is a field where you can enter notes about a particular link. This "
     1163"notes field is mainly for your own link management needs. It isn't currently "
     1164"used anywhere on the front end."
    10981165msgstr ""
    10991166
     
    11021169msgstr ""
    11031170
    1104 #: app/views/links/form.php:91 app/views/links/list.php:54
    1105 #: app/views/links/list.php:78 app/views/links/list.php:155
     1171#: app/views/links/form.php:91 app/views/links/list.php:55
     1172#: app/views/links/list.php:79 app/views/links/list.php:156
    11061173#: pro/app/views/options/autocreate.php:30 pro/app/views/reports/edit.php:86
    11071174#: pro/app/views/reports/new.php:86
     
    11681235
    11691236#: app/views/links/form.php:170
    1170 msgid "Requires the Google Analyticator, Google Analytics by MonsterInsights (formerly Yoast) or Google Analytics Plugin installed and configured for this to work."
     1237msgid ""
     1238"Requires the Google Analyticator, Google Analytics by MonsterInsights "
     1239"(formerly Yoast) or Google Analytics Plugin installed and configured for "
     1240"this to work."
    11711241msgstr ""
    11721242
    11731243#: app/views/links/form.php:180
    1174 msgid "It appears that <strong>%s</strong> is currently installed. Pretty Link will attempt to use its settings to track this link."
     1244msgid ""
     1245"It appears that <strong>%s</strong> is currently installed. Pretty Link will "
     1246"attempt to use its settings to track this link."
    11751247msgstr ""
    11761248
    11771249#: app/views/links/form.php:185
    1178 msgid "No Google Analytics Plugin is currently installed. Pretty Link cannot track links using Google Analytics until one is."
     1250msgid ""
     1251"No Google Analytics Plugin is currently installed. Pretty Link cannot track "
     1252"links using Google Analytics until one is."
    11791253msgstr ""
    11801254
     
    11921266
    11931267#: app/views/links/list.php:19
    1194 msgid "WordPress Must be Configured:</strong> Pretty Link won't work until you select a Permalink Structure other than 'Default'"
     1268msgid ""
     1269"WordPress Must be Configured:</strong> Pretty Link won't work until you "
     1270"select a Permalink Structure other than 'Default'"
    11951271msgstr ""
    11961272
     
    11991275msgstr ""
    12001276
    1201 #: app/views/links/list.php:44
     1277#: app/views/links/list.php:45
    12021278msgid "Back to Groups"
    12031279msgstr ""
    12041280
    1205 #: app/views/links/list.php:53 app/views/links/list.php:154
     1281#: app/views/links/list.php:54 app/views/links/list.php:155
    12061282msgid "Clicks / Uniq"
    12071283msgstr ""
    12081284
    1209 #: app/views/links/list.php:67
     1285#: app/views/links/list.php:68
    12101286msgid "Bulk Edit"
    12111287msgstr ""
    12121288
    1213 #: app/views/links/list.php:74
     1289#: app/views/links/list.php:75
    12141290msgid "Basic Link Options"
    12151291msgstr ""
    12161292
    1217 #: app/views/links/list.php:75 app/views/shared/tinymce_form_popup.php:59
     1293#: app/views/links/list.php:76 app/views/shared/tinymce_form_popup.php:59
    12181294msgid "Redirect Type"
    12191295msgstr ""
    12201296
    1221 #: app/views/links/list.php:81
     1297#: app/views/links/list.php:82
    12221298msgid "Track"
    12231299msgstr ""
    12241300
    1225 #: app/views/links/list.php:83 app/views/shared/tinymce_form_popup.php:76
     1301#: app/views/links/list.php:84 app/views/shared/tinymce_form_popup.php:76
    12261302msgid "Nofollow"
    12271303msgstr ""
    12281304
    1229 #: app/views/links/list.php:85
     1305#: app/views/links/list.php:86
    12301306msgid "Forward Params"
    12311307msgstr ""
    12321308
    1233 #: app/views/links/list.php:93
     1309#: app/views/links/list.php:94
    12341310msgid "Bulk Update"
    12351311msgstr ""
    12361312
    1237 #: app/views/links/list.php:103
     1313#: app/views/links/list.php:104
    12381314msgid "No Pretty Links were found, %sCreate One%s"
    12391315msgstr ""
    12401316
    1241 #: app/views/links/list.php:142
     1317#: app/views/links/list.php:143
    12421318msgid "Target URL:"
    12431319msgstr ""
     
    12521328
    12531329#: app/views/options/form.php:12
    1254 msgid "Pretty Link won't work until you select a Permalink Structure other than 'Default'"
     1330msgid ""
     1331"Pretty Link won't work until you select a Permalink Structure other than "
     1332"'Default'"
    12551333msgstr ""
    12561334
     
    12721350
    12731351#: app/views/options/form.php:61
    1274 msgid "Select the type of redirection you want your newly created links to have."
     1352msgid ""
     1353"Select the type of redirection you want your newly created links to have."
    12751354msgstr ""
    12761355
     
    13041383
    13051384#: app/views/options/form.php:97
    1306 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."
     1385msgid ""
     1386"This option should ONLY be checked if you have elements in your permalink "
     1387"structure that must be present in any link on your site. For example, some "
     1388"WordPress installs don't have the benefit of full rewrite capabilities and "
     1389"in this case you'd need an index.php included in each link (http://example."
     1390"com/index.php/mycoolslug instead of http://example.com/mycoolslug). If this "
     1391"is the case for you then check this option but the vast majority of users "
     1392"will want to keep this unchecked."
    13071393msgstr ""
    13081394
     
    13161402
    13171403#: app/views/options/form.php:118
    1318 msgid "Changing your tracking style can affect the accuracy of your existing statistics. Extended mode must be used for Conversion reporting."
     1404msgid ""
     1405"Changing your tracking style can affect the accuracy of your existing "
     1406"statistics. Extended mode must be used for Conversion reporting."
    13191407msgstr ""
    13201408
     
    13401428
    13411429#: app/views/options/form.php:133
    1342 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."
     1430msgid ""
     1431"Enter IP Addresses or IP Ranges you want to exclude from your Click data and "
     1432"Stats. Each IP Address should be separated by commas. Example: 192.168.0.1, "
     1433"192.168.2.1, 192.168.3.4 or 192.168.*.*<br/><br/><strong>FYI, your current "
     1434"IP address is %s."
    13431435msgstr ""
    13441436
     
    13521444
    13531445#: app/views/options/form.php:146
    1354 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. "
     1446msgid ""
     1447"Will automatically delete all hits older than 90 days. We strongly recommend "
     1448"doing this to keep your database performance up. This will permanently "
     1449"delete this click data, and is not undo-able. "
    13551450msgstr ""
    13561451
     
    13601455
    13611456#: app/views/options/form.php:158
    1362 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'."
     1457msgid ""
     1458"Filter known Robots and unidentifiable browser clients from your click data, "
     1459"stats and reports. Works best if Tracking Style above is set to 'Extended "
     1460"Tracking'."
    13631461msgstr ""
    13641462
     
    13721470
    13731471#: app/views/options/form.php:177
    1374 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.*.*"
     1472msgid ""
     1473"Enter IP Addresses or IP Ranges you want to always include in your Click "
     1474"data and Stats even if they are flagged as robots. Each IP Address should be "
     1475"separated by commas. Example: 192.168.0.1, 192.168.2.1, 192.168.3.4 or "
     1476"192.168.*.*"
    13751477msgstr ""
    13761478
     
    15251627
    15261628#: app/views/tools/form.php:29
    1527 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>"
     1629msgid ""
     1630"Just drag this \"Get PrettyLink\" link to your toolbar to install the "
     1631"bookmarklet. As you browse the web, you can just click this bookmarklet to "
     1632"create a pretty link from the current url you're looking at. <a href="
     1633"\"http://blairwilliams.com/pretty-link-bookmarklet/\">(more help)</a>"
    15281634msgstr ""
    15291635
     
    15331639
    15341640#: app/views/tools/form.php:35
    1535 msgid "<strong>Note:</strong> iPhone users can install this bookmarklet in their Safari to create Pretty Links with the following steps:"
     1641msgid ""
     1642"<strong>Note:</strong> iPhone users can install this bookmarklet in their "
     1643"Safari to create Pretty Links with the following steps:"
    15361644msgstr ""
    15371645
     
    15451653
    15461654#: app/views/tools/form.php:39
    1547 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\""
     1655msgid ""
     1656"Choose to share the page, then click on \"Bookmark\". We recommend saving it "
     1657"in your Favorites folder. Rename your bookmark to \"Get PrettyLink\" (or "
     1658"whatever you want) and then \"Save\""
    15481659msgstr ""
    15491660
    15501661#: app/views/tools/form.php:40
    1551 msgid "Navigate through your Bookmarks until you find the new bookmark and click \"Edit\""
     1662msgid ""
     1663"Navigate through your Bookmarks until you find the new bookmark and click "
     1664"\"Edit\""
    15521665msgstr ""
    15531666
     
    15651678
    15661679#: app/views/tools/form.php:43
    1567 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."
     1680msgid ""
     1681"Now when you find a page you want to save off as a Pretty Link, just click "
     1682"the \"Bookmarks\" icon at the bottom of the screen and select your \"Get "
     1683"PrettyLink\" bookmarklet."
    15681684msgstr ""
    15691685
    15701686#: app/views/tools/form.php:50
    1571 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."
     1687msgid ""
     1688"Pretty Link is already automatically trimming Clicks older than 90 days. "
     1689"Although not necessary, you can still use the buttons below to force click "
     1690"trimming."
    15721691msgstr ""
    15731692
    15741693#: app/views/tools/form.php:53
    1575 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!"
     1694msgid ""
     1695"***WARNING*** If you click OK you will delete ALL of the Click data that is "
     1696"older than 30 days. Your data will be gone forever -- no way to retreive it. "
     1697"Do not click OK unless you are absolutely sure you want to delete this data "
     1698"because there is no going back!"
    15761699msgstr ""
    15771700
     
    15851708
    15861709#: app/views/tools/form.php:56
    1587 msgid "This will clear all clicks in your database that are older than 30 days."
     1710msgid ""
     1711"This will clear all clicks in your database that are older than 30 days."
    15881712msgstr ""
    15891713
    15901714#: app/views/tools/form.php:58
    1591 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!"
     1715msgid ""
     1716"***WARNING*** If you click OK you will delete ALL of the Click data that is "
     1717"older than 90 days. Your data will be gone forever -- no way to retreive it. "
     1718"Do not click OK unless you are absolutely sure you want to delete this data "
     1719"because there is no going back!"
    15921720msgstr ""
    15931721
     
    16011729
    16021730#: app/views/tools/form.php:61
    1603 msgid "This will clear all clicks in your database that are older than 90 days."
     1731msgid ""
     1732"This will clear all clicks in your database that are older than 90 days."
    16041733msgstr ""
    16051734
    16061735#: app/views/tools/form.php:65
    1607 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!"
     1736msgid ""
     1737"***WARNING*** If you click OK you will delete ALL of the Click data in your "
     1738"Database. Your data will be gone forever -- no way to retreive it. Do not "
     1739"click OK unless you are absolutely sure you want to delete all your data "
     1740"because there is no going back!"
    16081741msgstr ""
    16091742
     
    16171750
    16181751#: app/views/tools/form.php:68
    1619 msgid "Seriously, only click this link if you want to delete all the Click data in your database."
     1752msgid ""
     1753"Seriously, only click this link if you want to delete all the Click data in "
     1754"your database."
    16201755msgstr ""
    16211756
     
    16461781
    16471782#: pro/app/controllers/PlpLinksController.php:213
    1648 msgid "Your URL Replacements must be formatted as a comma separated list of properly formatted URLs (http[s]://example.com/whatever)"
     1783msgid ""
     1784"Your URL Replacements must be formatted as a comma separated list of "
     1785"properly formatted URLs (http[s]://example.com/whatever)"
    16491786msgstr ""
    16501787
     
    17471884
    17481885#: pro/app/controllers/PlpLinksController.php:829
    1749 msgid "This link expired after %d clicks and will now cause a 404 error when visited"
     1886msgid ""
     1887"This link expired after %d clicks and will now cause a 404 error when visited"
    17501888msgstr ""
    17511889
     
    17711909
    17721910#: pro/app/controllers/PlpLinksController.php:855
    1773 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."
     1911msgid ""
     1912"A Time Period Redirect is currently active for this link. When visited it "
     1913"will currently redirect to %s rather than the Target URL unless the link is "
     1914"expired."
    17741915msgstr ""
    17751916
    17761917#: pro/app/controllers/PlpLinksController.php:859
    1777 msgid "Time Period Redirects have been setup for this link but the current time is not within any of them currently."
     1918msgid ""
     1919"Time Period Redirects have been setup for this link but the current time is "
     1920"not within any of them currently."
    17781921msgstr ""
    17791922
     
    17871930
    17881931#: pro/app/controllers/PlpOptionsController.php:111
    1789 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\""
     1932msgid ""
     1933"You need to enter a valid Pretty Link Base URL now that you have selected "
     1934"\"Use an alternate base url for your Pretty Links\""
    17901935msgstr ""
    17911936
    17921937#: pro/app/controllers/PlpOptionsController.php:116
    1793 msgid "You need to enter a valid Public Link Display URL now that you have selected \"Use a custom public link display page\""
     1938msgid ""
     1939"You need to enter a valid Public Link Display URL now that you have selected "
     1940"\"Use a custom public link display page\""
    17941941msgstr ""
    17951942
     
    19342081
    19352082#: pro/app/helpers/PlpPostsHelper.php:76
    1936 msgid "A Pretty Link hasn't been generated for this entry yet. Click \"Update Post\" to generate."
     2083msgid ""
     2084"A Pretty Link hasn't been generated for this entry yet. Click \"Update Post"
     2085"\" to generate."
    19372086msgstr ""
    19382087
     
    20492198
    20502199#: pro/app/views/import-export/form.php:26
    2051 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 Links Pro will attempt to update existing links."
     2200msgid ""
     2201"There are two ways to import a file.<br/><br/>1) Importing to update "
     2202"existing links and<br/><br/>2) Importing to generate new links. When "
     2203"Importing to generate new links, you must delete the \"id\" column from the "
     2204"CSV before importing. If the \"id\" column is present, Pretty Links Pro will "
     2205"attempt to update existing links."
    20522206msgstr ""
    20532207
     
    20612215
    20622216#: pro/app/views/import-export/form.php:40
    2063 msgid "Select a file that has been formatted as a Pretty Link CSV import file and click \"Import\""
     2217msgid ""
     2218"Select a file that has been formatted as a Pretty Link CSV import file and "
     2219"click \"Import\""
    20642220msgstr ""
    20652221
     
    21292285
    21302286#: pro/app/views/links/form.php:30
    2131 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."
     2287msgid ""
     2288"Select the type of expiration you want for this link.<br/><br/><b>Date</b> "
     2289"Select this option if you'd like to expire your link after a certain date."
     2290"<br/><br/><b>Clicks</b>: Select this option to expire this link after it has "
     2291"been clicked a specific number of times."
    21322292msgstr ""
    21332293
     
    21372297
    21382298#: pro/app/views/links/form.php:52
    2139 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>"
     2299msgid ""
     2300"Enter the number of times this link can be clicked before it expires.<br/"
     2301"><br/><b>Note: Expirations based on clicks wouldn't work properly if you had "
     2302"tracking turned off for this link so as long as this is set to Clicks, "
     2303"Pretty Link will ensure tracking is turned on for this link as well.</b>"
    21402304msgstr ""
    21412305
     
    21452309
    21462310#: pro/app/views/links/form.php:72
    2147 msgid "Enter a date here in the format YYYY-MM-DD to set when this link should expire."
     2311msgid ""
     2312"Enter a date here in the format YYYY-MM-DD to set when this link should "
     2313"expire."
    21482314msgstr ""
    21492315
     
    21572323
    21582324#: pro/app/views/links/form.php:92
    2159 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>."
     2325msgid ""
     2326"When this link expires, do you want to redirect to a specific URL. You can "
     2327"use this to redirect to a page you've setup to indicate that the link is "
     2328"expired.<br/><br/><b>Note: If this is not set the link will throw a 404 "
     2329"error when expired</b>."
    21602330msgstr ""
    21612331
     
    21692339
    21702340#: pro/app/views/links/form.php:111
    2171 msgid "This is the URL that this link will redirect to after the expiration date above."
     2341msgid ""
     2342"This is the URL that this link will redirect to after the expiration date "
     2343"above."
    21722344msgstr ""
    21732345
     
    21772349
    21782350#: pro/app/views/links/form.php:132
    2179 msgid "Enter a comma separated list of keywords / keyword phrases that you'd like to replace with this link in your Posts &amp; Pages."
     2351msgid ""
     2352"Enter a comma separated list of keywords / keyword phrases that you'd like "
     2353"to replace with this link in your Posts &amp; Pages."
    21802354msgstr ""
    21812355
     
    21892363
    21902364#: pro/app/views/links/form.php:144
    2191 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>"
     2365msgid ""
     2366"Enter a comma separated list of the URLs that you'd like to replace with "
     2367"this Pretty Link in your Posts &amp; Pages. These must be formatted as URLs "
     2368"for example: <code>http://example.com</code> or <code>http://example.com?"
     2369"product_id=53</code>"
    21922370msgstr ""
    21932371
     
    21972375
    21982376#: pro/app/views/links/form.php:163
    2199 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."
     2377msgid ""
     2378"Useful for adding Google Analytics tracking, Facebook retargeting pixels, or "
     2379"any other kind of tracking script to the HTML head for this pretty link.<br/"
     2380"><br/>These scripts will be in addition to any global one's you've defined "
     2381"in the options.<br/><br/><b>NOTE:</b> This does NOT work with 301, 302 and "
     2382"307 type redirects."
    22002383msgstr ""
    22012384
     
    22092392
    22102393#: pro/app/views/links/form.php:180
    2211 msgid "These powerful options are available to give you dynamic control over redirection for this pretty link."
     2394msgid ""
     2395"These powerful options are available to give you dynamic control over "
     2396"redirection for this pretty link."
    22122397msgstr ""
    22132398
     
    22292414
    22302415#: pro/app/views/links/form.php:203
    2231 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>"
     2416msgid ""
     2417"Enter the Target URLs that you'd like to rotate through when this Pretty "
     2418"Link is Clicked. These must be formatted as URLs example: <code>http://"
     2419"example.com</code> or <code>http://example.com?product_id=53</code>"
    22322420msgstr ""
    22332421
     
    22492437
    22502438#: pro/app/views/links/form.php:230
    2251 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."
     2439msgid ""
     2440"Split testing will enable you to track the effectiveness of several links "
     2441"against each other. This works best when you have multiple link rotation "
     2442"URLs entered."
    22522443msgstr ""
    22532444
     
    22742465
    22752466#: pro/app/views/links/form.php:285
    2276 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."
     2467msgid ""
     2468"This will enable you to setup specific target urls that this pretty link "
     2469"will redirect to based on the country of the person visiting the url."
    22772470msgstr ""
    22782471
     
    22872480
    22882481#: pro/app/views/links/form.php:299
    2289 msgid "This will allow you to redirect based on your visitor's device, operating system and/or browser"
     2482msgid ""
     2483"This will allow you to redirect based on your visitor's device, operating "
     2484"system and/or browser"
    22902485msgstr ""
    22912486
     
    22952490
    22962491#: pro/app/views/links/form.php:313
    2297 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>"
     2492msgid ""
     2493"This will allow you to redirect based on the time period in which your "
     2494"visitor visits this link.<br/><br/><b>Note: If your visitor doesn't visit "
     2495"the link during any of the specified time periods set here, they'll simply "
     2496"be redirected to the main target url.</b>"
    22982497msgstr ""
    22992498
     
    23072506
    23082507#: pro/app/views/links/geo_row.php:16
    2309 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"
     2508msgid ""
     2509"This is a comma-separated list of countries that this redirect will match "
     2510"on. Just start typing a country's name and an autocomplete dropdown will "
     2511"appear to select from. Once a country is selected, feel free to start typing "
     2512"the name of another country. You can add as many as you'd like this redirect "
     2513"to match on"
    23102514msgstr ""
    23112515
     
    23202524
    23212525#: pro/app/views/links/geo_row.php:29
    2322 msgid "This is the URL that this Pretty Link will redirect to if the visitor's country match the settings here."
     2526msgid ""
     2527"This is the URL that this Pretty Link will redirect to if the visitor's "
     2528"country match the settings here."
    23232529msgstr ""
    23242530
     
    23422548
    23432549#: pro/app/views/links/link-options.php:6
    2344 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."
     2550msgid ""
     2551"Use this to prefix all newly generated pretty links with a directory of your "
     2552"choice. For example set to <b>out</b> to make your pretty links look like "
     2553"http://site.com/<b>out</b>/xyz. Changing this option will NOT affect "
     2554"existing pretty links. If you do not wish to use a directory prefix, leave "
     2555"this text field blank. Whatever you type here will be sanitized and modified "
     2556"to ensure it is URL-safe. So <b>Hello World</b> might get changed to "
     2557"something like <b>hello-world</b> instead. Lowercase letters, numbers, "
     2558"dashes, and underscores are allowed."
    23452559msgstr ""
    23462560
     
    23512565
    23522566#: pro/app/views/links/link-options.php:19
    2353 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."
     2567msgid ""
     2568"The number of characters to use when auto-generating a random slug for "
     2569"pretty links. The default is 4. You cannot use less than 2."
    23542570msgstr ""
    23552571
     
    23602576
    23612577#: pro/app/views/links/link-options.php:31
    2362 msgid "Requires Google Analyticator, Google Analytics by MonsterInsights (formerly Yoast), or the Google Analytics Plugin to be installed and configured on your site."
     2578msgid ""
     2579"Requires Google Analyticator, Google Analytics by MonsterInsights (formerly "
     2580"Yoast), or the Google Analytics Plugin to be installed and configured on "
     2581"your site."
    23632582msgstr ""
    23642583
     
    23722591
    23732592#: pro/app/views/links/link-options.php:44
    2374 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."
     2593msgid ""
     2594"This will enable a link in your pretty link admin that will allow you to "
     2595"automatically download a QR Code for each individual Pretty Link."
    23752596msgstr ""
    23762597
     
    23812602
    23822603#: pro/app/views/links/link-options.php:57
    2383 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."
     2604msgid ""
     2605"Useful for adding Google Analytics tracking, Facebook retargeting pixels, or "
     2606"any other kind of tracking script to the HTML head.<br/><br/>What you enter "
     2607"in this box will be applied to all supported pretty links.<br/><br/><b>NOTE:"
     2608"</b> This does NOT work with 301, 302 and 307 type redirects."
    23842609msgstr ""
    23852610
     
    24012626
    24022627#: pro/app/views/links/tech_row.php:18
    2403 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."
     2628msgid ""
     2629"<b>Desktop</b> will match on any conventional laptop or desktop computer.<br/"
     2630"><br/><b>Mobile</b> will match on any phone, tablet or other portable device."
     2631"<br/><br/><b>Phone</b> will match on any phone or similarly small device.<br/"
     2632"><br/><b>Tablet</b> will match on any tablet sized device."
    24042633msgstr ""
    24052634
     
    24342663
    24352664#: pro/app/views/links/tech_row.php:37
    2436 msgid "Use this dropdown to select which Operating System this redirect will match on."
     2665msgid ""
     2666"Use this dropdown to select which Operating System this redirect will match "
     2667"on."
    24372668msgstr ""
    24382669
     
    25142745
    25152746#: pro/app/views/links/tech_row.php:83
    2516 msgid "This is the URL that this Pretty Link will redirect to if the visitor's device, os and browser match the settings here."
     2747msgid ""
     2748"This is the URL that this Pretty Link will redirect to if the visitor's "
     2749"device, os and browser match the settings here."
    25172750msgstr ""
    25182751
     
    25262759
    25272760#: pro/app/views/links/time_row.php:17
    2528 msgid "This is where you'll enter the beginning of the time period for this redirect"
     2761msgid ""
     2762"This is where you'll enter the beginning of the time period for this redirect"
    25292763msgstr ""
    25302764
     
    25462780
    25472781#: pro/app/views/links/time_row.php:43
    2548 msgid "This is the URL that this Pretty Link will redirect to when the visitor visits the link in the associated time period."
     2782msgid ""
     2783"This is the URL that this Pretty Link will redirect to when the visitor "
     2784"visits the link in the associated time period."
    25492785msgstr ""
    25502786
     
    25782814
    25792815#: pro/app/views/options/autocreate.php:51
    2580 msgid "If this button is checked then you'll have the ability to include a social buttons bar on your %s."
     2816msgid ""
     2817"If this button is checked then you'll have the ability to include a social "
     2818"buttons bar on your %s."
    25812819msgstr ""
    25822820
     
    25942832
    25952833#: pro/app/views/options/form.php:16
    2596 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."
     2834msgid ""
     2835"If checked, this will enable you to automatically replace keywords and/or "
     2836"URLs on your blog with pretty links. You will specify the specific keywords "
     2837"and urls from your Pretty Link edit page."
    25972838msgstr ""
    25982839
     
    26062847
    26072848#: pro/app/views/options/form.php:37
    2608 msgid "Don't want to have too many keyword replacements per page? Select to set some reasonable keyword replacement thresholds."
     2849msgid ""
     2850"Don't want to have too many keyword replacements per page? Select to set "
     2851"some reasonable keyword replacement thresholds."
    26092852msgstr ""
    26102853
     
    26182861
    26192862#: pro/app/views/options/form.php:57
    2620 msgid "Maximum number of unique keyword / keyphrases you can replace with Pretty Links per page."
     2863msgid ""
     2864"Maximum number of unique keyword / keyphrases you can replace with Pretty "
     2865"Links per page."
    26212866msgstr ""
    26222867
     
    26422887
    26432888#: pro/app/views/options/form.php:90
    2644 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."
     2889msgid ""
     2890"Ensure that these keyword replacement links are opened in a separate window. "
     2891"<strong>Note:</strong> This does not apply to url replacements--only keyword "
     2892"replacements."
    26452893msgstr ""
    26462894
     
    26542902
    26552903#: pro/app/views/options/form.php:104
    2656 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."
     2904msgid ""
     2905"This adds the html <code>NOFOLLOW</code> attribute to all keyword "
     2906"replacement links. <strong>Note:</strong> This does not apply to url "
     2907"replacements--only keyword replacements."
    26572908msgstr ""
    26582909
     
    26662917
    26672918#: pro/app/views/options/form.php:118
    2668 msgid "Add some custom formatting to your keyword pretty link replacements. <strong>Note:</strong> This does not apply to url replacements--only keyword replacements."
     2919msgid ""
     2920"Add some custom formatting to your keyword pretty link replacements. "
     2921"<strong>Note:</strong> This does not apply to url replacements--only keyword "
     2922"replacements."
    26692923msgstr ""
    26702924
     
    26782932
    26792933#: pro/app/views/options/form.php:132
    2680 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."
     2934msgid ""
     2935"Add some custom formatting to the hover attribute of your keyword pretty "
     2936"links. <strong>Note:</strong> This does not apply to url replacements--only "
     2937"keyword replacements."
    26812938msgstr ""
    26822939
     
    26902947
    26912948#: pro/app/views/options/form.php:147
    2692 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."
     2949msgid ""
     2950"When enabled, this will add a link to your official affiliate link "
     2951"disclosure page to any page, post or custom post type that have any keyword "
     2952"or URL replacements. You'll also be able to customize the URL and position "
     2953"of the disclosure link."
    26932954msgstr ""
    26942955
     
    26982959
    26992960#: pro/app/views/options/form.php:169
    2700 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."
     2961msgid ""
     2962"This is the URL of the page that contains your official affiliate link "
     2963"disclosures. This URL will be used in the link that will be generated."
    27012964msgstr ""
    27022965
     
    27102973
    27112974#: pro/app/views/options/form.php:184
    2712 msgid "This is the text of the link to your disclosures. This text will be visible to your visitors when the link is displayed."
     2975msgid ""
     2976"This is the text of the link to your disclosures. This text will be visible "
     2977"to your visitors when the link is displayed."
    27132978msgstr ""
    27142979
     
    27222987
    27232988#: pro/app/views/options/form.php:199
    2724 msgid "This is the position of the link to your disclosures in relation to your post content."
     2989msgid ""
     2990"This is the position of the link to your disclosures in relation to your "
     2991"post content."
    27252992msgstr ""
    27262993
     
    27463013
    27473014#: pro/app/views/options/form.php:223
    2748 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."
     3015msgid ""
     3016"When enabled, this will add an affiliate link disclosure next to each one of "
     3017"your keyword replacements. <b>Note:</b> This does not apply to url "
     3018"replacements--only keyword replacements."
    27493019msgstr ""
    27503020
     
    27583028
    27593029#: pro/app/views/options/form.php:245
    2760 msgid "This is the text that will be added after each keyword replacement to indicate that the link is an affiliate link."
     3030msgid ""
     3031"This is the text that will be added after each keyword replacement to "
     3032"indicate that the link is an affiliate link."
    27613033msgstr ""
    27623034
     
    27703042
    27713043#: pro/app/views/options/form.php:264
    2772 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."
     3044msgid ""
     3045"This feature will take each url it finds and create or use an existing "
     3046"pretty link pointing to the url and replace it with the pretty link."
    27733047msgstr ""
    27743048
     
    27823056
    27833057#: pro/app/views/options/form.php:284
    2784 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."
     3058msgid ""
     3059"Any links on your site which point to domains you define here will not be "
     3060"replaced automatically with Pretty Links. Place one domain per line.<br/><br/"
     3061">You MUST enter http:// or https:// in front of the domain names and do NOT "
     3062"include any /'s or other text after the domain name.<br/><br/>Proper entry "
     3063"example:<br/><b>https://www.google.com</b><br/><b>http://mysite.org</b><br/"
     3064"><br/>Improperly entered domains will be removed upon saving the Options."
    27853065msgstr ""
    27863066
     
    27943074
    27953075#: pro/app/views/options/form.php:303
    2796 msgid "This option will enable the keyword / URL replacement routine to run in Comments."
     3076msgid ""
     3077"This option will enable the keyword / URL replacement routine to run in "
     3078"Comments."
    27973079msgstr ""
    27983080
     
    28063088
    28073089#: pro/app/views/options/form.php:317
    2808 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."
     3090msgid ""
     3091"This option will enable the keyword / URL replacement routine to run in RSS "
     3092"Feeds.<br/><strong>Note:</strong> This option can slow the load speed of "
     3093"your RSS feed -- unless used in conjunction with a caching plugin like W3 "
     3094"Total Cache or WP Super Cache.<br/><strong>Note #2</strong> This option will "
     3095"only work if you have \"Full Text\" selected in your General WordPress "
     3096"Reading settings.<br/><strong>Note #3:</strong> If this option is used along "
     3097"with \"Replace Keywords and URLs in Comments\" then your post comment feeds "
     3098"will have keywords replaced in them as well."
    28093099msgstr ""
    28103100
     
    28143104
    28153105#: pro/app/views/options/form.php:331
    2816 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."
     3106msgid ""
     3107"This feature will index all of your keyword & URL replacements to "
     3108"dramatically improve performance.<br/><br/>If your site has a large number "
     3109"of replacements and/or posts then this feature may increase the load on your "
     3110"server temporarily and your replacements may not show up on your posts for a "
     3111"day or two initially (until all posts are indexed).<br/><br/><strong>Note:</"
     3112"strong> this feature requires the use of wp-cron."
    28173113msgstr ""
    28183114
     
    28223118
    28233119#: pro/app/views/options/form.php:351
    2824 msgid "This shows how many posts have keywords indexed for and are ready for replacement."
     3120msgid ""
     3121"This shows how many posts have keywords indexed for and are ready for "
     3122"replacement."
    28253123msgstr ""
    28263124
     
    28423140
    28433141#: pro/app/views/options/form.php:374
    2844 msgid "This shows how many posts have url replacements indexed for and are ready for replacement."
     3142msgid ""
     3143"This shows how many posts have url replacements indexed for and are ready "
     3144"for replacement."
    28453145msgstr ""
    28463146
     
    28623162
    28633163#: pro/app/views/options/form.php:432
    2864 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."
     3164msgid ""
     3165"If set, this will replace the logo image on the Pretty Bar. The image that "
     3166"this URL references should be 48x48 Pixels to fit."
    28653167msgstr ""
    28663168
     
    28743176
    28753177#: pro/app/views/options/form.php:446
    2876 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."
     3178msgid ""
     3179"If set, this will replace the background image on Pretty Bar. The image that "
     3180"this URL references should be 65px tall - this image will be repeated "
     3181"horizontally across the bar."
    28773182msgstr ""
    28783183
     
    28863191
    28873192#: pro/app/views/options/form.php:460
    2888 msgid "This will alter the background color of the Pretty Bar if you haven't specified a Pretty Bar background image."
     3193msgid ""
     3194"This will alter the background color of the Pretty Bar if you haven't "
     3195"specified a Pretty Bar background image."
    28893196msgstr ""
    28903197
     
    28983205
    28993206#: pro/app/views/options/form.php:474
    2900 msgid "If not set, this defaults to black (RGB value <code>#000000</code>) but you can change it to whatever color you like."
     3207msgid ""
     3208"If not set, this defaults to black (RGB value <code>#000000</code>) but you "
     3209"can change it to whatever color you like."
    29013210msgstr ""
    29023211
     
    29103219
    29113220#: pro/app/views/options/form.php:488
    2912 msgid "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you can change it to whatever color you like."
     3221msgid ""
     3222"If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
     3223"can change it to whatever color you like."
    29133224msgstr ""
    29143225
     
    29223233
    29233234#: pro/app/views/options/form.php:502
    2924 msgid "If not set, this defaults to RGB value <code>#ababab</code> but you can change it to whatever color you like."
     3235msgid ""
     3236"If not set, this defaults to RGB value <code>#ababab</code> but you can "
     3237"change it to whatever color you like."
    29253238msgstr ""
    29263239
     
    29343247
    29353248#: pro/app/views/options/form.php:516
    2936 msgid "If not set, this defaults to RGB value <code>#551a8b</code> but you can change it to whatever color you like."
     3249msgid ""
     3250"If not set, this defaults to RGB value <code>#551a8b</code> but you can "
     3251"change it to whatever color you like."
    29373252msgstr ""
    29383253
     
    29463261
    29473262#: pro/app/views/options/form.php:530
    2948 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."
     3263msgid ""
     3264"If your Website has a long title then you may need to adjust this value so "
     3265"that it will all fit on the Pretty Bar. It is recommended that you keep this "
     3266"value to <code>30</code> characters or less so the Pretty Bar's format looks "
     3267"good across different browsers and screen resolutions."
    29493268msgstr ""
    29503269
     
    29583277
    29593278#: pro/app/views/options/form.php:544
    2960 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."
     3279msgid ""
     3280"If your Website has a long Description (tagline) then you may need to adjust "
     3281"this value so that it will all fit on the Pretty Bar. It is recommended that "
     3282"you keep this value to <code>40</code> characters or less so the Pretty "
     3283"Bar's format looks good across different browsers and screen resolutions."
    29613284msgstr ""
    29623285
     
    29703293
    29713294#: pro/app/views/options/form.php:558
    2972 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"
     3295msgid ""
     3296"If you link to a lot of large Target URLs you may want to adjust this value. "
     3297"It is recommended that you keep this value to <code>40</code> or below so "
     3298"the Pretty Bar's format looks good across different browsers and URL sizes"
    29733299msgstr ""
    29743300
     
    29823308
    29833309#: pro/app/views/options/form.php:572
    2984 msgid "Make sure this is checked if you want the title of your blog (and link) to show up on the Pretty Bar."
     3310msgid ""
     3311"Make sure this is checked if you want the title of your blog (and link) to "
     3312"show up on the Pretty Bar."
    29853313msgstr ""
    29863314
     
    29943322
    29953323#: pro/app/views/options/form.php:586
    2996 msgid "Make sure this is checked if you want your site description to show up on the Pretty Bar."
     3324msgid ""
     3325"Make sure this is checked if you want your site description to show up on "
     3326"the Pretty Bar."
    29973327msgstr ""
    29983328
     
    30063336
    30073337#: pro/app/views/options/form.php:600
    3008 msgid "Make sure this is checked if you want \"share links\" to show up on the Pretty Bar."
     3338msgid ""
     3339"Make sure this is checked if you want \"share links\" to show up on the "
     3340"Pretty Bar."
    30093341msgstr ""
    30103342
     
    30183350
    30193351#: pro/app/views/options/form.php:614
    3020 msgid "Make sure this is checked if you want a link displaying the Target URL to show up on the Pretty Bar."
     3352msgid ""
     3353"Make sure this is checked if you want a link displaying the Target URL to "
     3354"show up on the Pretty Bar."
    30213355msgstr ""
    30223356
     
    30263360
    30273361#: pro/app/views/options/form.php:628
    3028 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 Links Pro</em> <a href=\"https://prettylinks.com/plp/options/aff-attribution\">Affiliate URL</a> to earn a few bucks while you are at it."
     3362msgid ""
     3363"Check this to hide the pretty link attribution link on the pretty bar.<br/"
     3364"><br/><strong>Wait, before you do this, you might want to leave this un-"
     3365"checked and set the alternate URL of this link to your <em>Pretty Links Pro</"
     3366"em> <a href=\"https://prettylinks.com/plp/options/aff-attribution"
     3367"\">Affiliate URL</a> to earn a few bucks while you are at it."
    30293368msgstr ""
    30303369
     
    30383377
    30393378#: pro/app/views/options/form.php:649
    3040 msgid "If set, this will replace the Pretty Bars attribution URL. This is a very good place to put your <em>Pretty Links Pro</em> <a href=\"https://prettylinks.com/plp/options/aff-attribution-2\">Affiliate Link</a>."
     3379msgid ""
     3380"If set, this will replace the Pretty Bars attribution URL. This is a very "
     3381"good place to put your <em>Pretty Links Pro</em> <a href=\"https://"
     3382"prettylinks.com/plp/options/aff-attribution-2\">Affiliate Link</a>."
    30413383msgstr ""
    30423384
     
    30543396
    30553397#: pro/app/views/options/form.php:669
    3056 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."
     3398msgid ""
     3399"Select which buttons you want to be visible on the Social Buttons Bar.<br/"
     3400"><br/><code>Note:</code> In order for the Social Buttons Bar to be visible "
     3401"on Pages and or Posts, you must first enable it in the \"Page &amp; Post "
     3402"Options\" section above."
    30573403msgstr ""
    30583404
     
    30663412
    30673413#: pro/app/views/options/form.php:695
    3068 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."
     3414msgid ""
     3415"This determines where your Social Buttons Placement should appear in "
     3416"relation to content on Pages and/or Posts.<br/><br/><code>Note:</code> If "
     3417"you want this bar to appear then you must enable it in the \"Page and Post "
     3418"Options\" above."
    30693419msgstr ""
    30703420
     
    30743424
    30753425#: pro/app/views/options/form.php:706
    3076 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."
     3426msgid ""
     3427"If you select none, you can still show your Social Buttons by manually "
     3428"adding the <code>[social_buttons_bar]</code> shortcode to your blog posts or "
     3429"<code>&lt;?php the_social_buttons_bar(); ?&gt;</code> template tag to your "
     3430"WordPress Theme."
    30773431msgstr ""
    30783432
     
    30903444
    30913445#: pro/app/views/options/form.php:740
    3092 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 Links 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."
     3446msgid ""
     3447"This option will give you the ability to turn your website into a link "
     3448"shortening service for your users. Once selected, you can enable the Pretty "
     3449"Links Pro Sidebar Widget or just display the link creation form with the "
     3450"<code>[prli_create_form]</code> shortcode in any post or page on your "
     3451"website."
    30933452msgstr ""
    30943453
     
    31023461
    31033462#: pro/app/views/options/form.php:760
    3104 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."
     3463msgid ""
     3464"When a link is created using the public form, the user is typically "
     3465"redirected to a simple page displaying their new pretty link. But, you can "
     3466"specify a page that you want them to be redirected to on your website, using "
     3467"your branding instead by selecting this box and entering the url of the page "
     3468"you want them to go to."
    31053469msgstr ""
    31063470
     
    31143478
    31153479#: pro/app/views/options/form.php:780
    3116 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 (/)."
     3480msgid ""
     3481"To set this up, create a new page on your WordPress site and make sure the "
     3482"<code>[prli_create_display]</code> appears somewhere on this page -- "
     3483"otherwise the link will never get created. Once this page is created, just "
     3484"enter the full URL to it here. Make sure this URL does npt end with a slash "
     3485"(/)."
    31173486msgstr ""
    31183487
     
    31263495
    31273496#: pro/app/views/options/general.php:11
    3128 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."
     3497msgid ""
     3498"Use this option if you want to substitute your actual blog's url with "
     3499"another URL. You must have another valid domain name pointing to this "
     3500"WordPress install before you enable this option. If you are using this "
     3501"option to just get rid of the www in the beginning of your url that is fine "
     3502"-- just make sure your domain works without the www before enabling this "
     3503"option."
    31293504msgstr ""
    31303505
     
    31343509
    31353510#: pro/app/views/options/general.php:31
    3136 msgid "Enter a valid base url that points at this WordPress install. Make sure this URL does not end with a slash (/)."
     3511msgid ""
     3512"Enter a valid base url that points at this WordPress install. Make sure this "
     3513"URL does not end with a slash (/)."
    31373514msgstr ""
    31383515
     
    31463523
    31473524#: pro/app/views/options/general.php:50
    3148 msgid "Use this option to set the minimum role of users who can access the Admin interface for Pretty Link."
     3525msgid ""
     3526"Use this option to set the minimum role of users who can access the Admin "
     3527"interface for Pretty Link."
    31493528msgstr ""
    31503529
     
    32343613
    32353614#: pro/app/views/reports/edit.php:103 pro/app/views/reports/new.php:103
    3236 msgid "If you want to enable conversion tracking in this report then select a goal link."
     3615msgid ""
     3616"If you want to enable conversion tracking in this report then select a goal "
     3617"link."
    32373618msgstr ""
    32383619
     
    32903671
    32913672#: pro/app/views/tools/generator.php:10
    3292 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."
     3673msgid ""
     3674"Alter the options below to customize this Bookmarklet. As you modify the "
     3675"label, redirect type, tracking and group, you will see this bookmarklet "
     3676"update -- when the settings are how you want them, drag the bookmarklet into "
     3677"your toolbar. You can create as many bookmarklets as you want each with "
     3678"different settings."
    32933679msgstr ""
    32943680
     
    43534739msgid "Bye\n"
    43544740msgstr ""
    4355 #. Plugin Name of the plugin/theme
    4356 msgid "Pretty Links"
    4357 msgstr ""
    43584741
    43594742#. Plugin URI of the plugin/theme
     
    43624745
    43634746#. Description of the plugin/theme
    4364 msgid "Shrink, track and share any URL on the Internet from your WordPress website!"
     4747msgid ""
     4748"Shrink, track and share any URL on the Internet from your WordPress website!"
    43654749msgstr ""
    43664750
  • pretty-link/trunk/pretty-link.php

    r2023089 r2078274  
    44Plugin URI: https://prettylinks.com/pl/plugin-uri
    55Description: Shrink, track and share any URL on the Internet from your WordPress website!
    6 Version: 2.1.8
     6Version: 2.1.9
    77Author: Blair Williams
    88Author URI: http://blairwilliams.com
  • pretty-link/trunk/readme.txt

    r2024443 r2078274  
    11=== Shortlinks by Pretty Links - Best WordPress Link Tracking Plugin ===
    2 Contributors: supercleanse, cartpauj
     2Contributors: supercleanse
    33Donate link: https://prettylinks.com
    44Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, redirection, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, shortening, 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: 5.1
    7 Stable tag: 2.1.8
     5Requires at least: 4.9
     6Tested up to: 5.2
     7Stable tag: 2.1.9
    88
    99Shrink, 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!
     
    6666
    6767== Changelog ==
     68= 2.1.9 =
     69* Fixed some security issues
     70
    6871= 2.1.8 =
    6972* Fixed broken charts in dashboard widget
Note: See TracChangeset for help on using the changeset viewer.