Plugin Directory

Changeset 1872084


Ignore:
Timestamp:
05/10/2018 12:35:24 PM (8 years ago)
Author:
mraliende
Message:

1.12

Location:
good-url-preview-box
Files:
20 edited
35 copied

Legend:

Unmodified
Added
Removed
  • good-url-preview-box/tags/1.12/gurlpb-config.php

    r1794609 r1872084  
    11<?php
    22class Gurlpb_config {
    3     public static $_VERSION = '1.11.3'; // CHANGE ALSO IN gute-url-preview-box.php, README AND IN SVN!
     3    public static $_VERSION = '1.12'; // CHANGE ALSO IN gute-url-preview-box.php, README AND IN SVN!
    44    public static $_DEBUG = false;
    55    public static $_LOCAL = false;
  • good-url-preview-box/tags/1.12/gurlpb-settings-admin.php

    r1794588 r1872084  
    196196                } elseif ( $typegif == 2 ) {
    197197                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] gurlpb-bgcolor" . $_POST['gurlpb-bgcolor'] );
    198                     Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] gurlpb-bgcolor" . print_r( $_POST, true ));
    199198                    $strLoadingGif = empty( $_POST['gurlpb-gif'] ) ? '' : trim( $_POST['gurlpb-gif'] );
    200199                    if ( filter_var( $strLoadingGif, FILTER_VALIDATE_URL) !== false ) {
     
    205204                }
    206205            }
     206            if ( isset( $_POST['gurlpb-clickTextRadio'] ) ) {
     207                $nClickTextRadio = $_POST['gurlpb-clickTextRadio'] == 1 ? 1 : 2;
     208                $strClickText = ( $nClickTextRadio == 2 ? trim( strip_tags( $_POST[ 'gurlpb-clickText' ] ) ) : '' );
     209                if ( $strClickText == '' ) {
     210                    delete_option('gurlpb-clickText');
     211                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] delete_option clickText: " . $_POST[ 'gurlpb-clickText' ]);
     212                } else {
     213                    update_option( 'gurlpb-clickText', sanitize_text_field( $strClickText ) );
     214                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] update_option clickText" );
     215                }
     216            }
    207217            if ( isset( $_POST['gurlpb-showexcerpt'] ) ) {
    208218                Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] gurlpb-except 1" );
     
    218228                }
    219229            }
     230            if ( isset( $_POST['gurlpb-maxLines'] ) ) {
     231                $nMaxLines = 0 + $_POST['gurlpb-maxLines'];
     232                if ( $nMaxLines > 0 && $nMaxLines <=12 ) {
     233                    update_option('gurlpb-maxLines', sanitize_text_field( $nMaxLines ) );
     234                } else {
     235                    delete_option('gurlpb-maxLines');
     236                }
     237            }
     238            if ( isset( $_POST['gurlpb-maxImgHeight'] ) ) {
     239                $nMaxImgHeight = 0 + $_POST['gurlpb-maxImgHeight'];
     240                Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] nMaxImgHeight $nMaxImgHeight" );
     241                if ( $nMaxImgHeight > 0 && $nMaxImgHeight <=800 ) {
     242                    update_option('gurlpb-maxImgHeight', sanitize_text_field( $nMaxImgHeight ) );
     243                } else {
     244                    delete_option('gurlpb-maxImgHeight');
     245                }
     246            }
    220247            if ( isset( $_POST['gurlpb-hideimages'] ) ) {
    221248                update_option('gurlpb-hideimages', '1' );
     
    223250                delete_option('gurlpb-hideimages');
    224251            }
     252            echo '<script type="text/javascript">localStorage.clear()</script>';
    225253        }
    226254
     
    243271            $typegif = 2;
    244272        }
     273       
     274        $strClickText = trim( strip_tags( get_option( 'gurlpb-clickText' ) ) );
     275        $nClickTextRadio = ( $strClickText == '' ? 1 : 2 );
     276
    245277        $strZoom = get_option( 'gurlpb-zoom' );
    246        
    247         $strImgHeight = "";
     278        $strMaxLines = 0 + get_option( 'gurlpb-maxLines' );
     279        $strImgHeight = 0 + get_option( 'gurlpb-maxImgHeight' );;
    248280        ?>
    249281        <div class="wrap">
     
    357389                                        (<?php _e( 'Use a gif from', 'gurlpb' ); ?>)
    358390                                    </span>
    359 
     391                                    <br />
     392                                    <br />
     393                                </td>
     394                            </tr>
     395                            <tr>
     396                                <td>
     397                                    <?php _e( 'Clickable-text', 'gurlpb' ); ?>:
     398                                </td>
     399                                <td>
     400                                    <input type="radio" name="gurlpb-clickTextRadio" id="gurlpb-clickTextRadio1" <?=$nClickTextRadio<2?'checked="checked"':''?>  value="1" />
     401                                    <?php _e( 'Default-text.', 'gurlpb' ); ?>
    360402                                </td>
    361403                            </tr>
     
    365407                                </td>
    366408                                <td>
    367                                     <input type="radio" name="gurlpb-typegif" <?=$typegif==3?'checked="checked"':''?> value="3" />
    368                                     <?php _e( 'No animation', 'gurlpb' ); ?>
    369                                     <br /><br />
     409                                    <input type="radio" name="gurlpb-clickTextRadio" id="gurlpb-clickTextRadio2" <?=$nClickTextRadio==2?'checked="checked"':''?> value="2" />
     410                                    <input name="gurlpb-clickText" value="<?=($nClickTextRadio==2 && $strClickText)?$strClickText:''?>" placeholder="<?php _e( 'Example-Click-here', 'gurlpb' ); ?>" size="30" onclick="document.getElementById('gurlpb-clickTextRadio2').checked='checked';" />
     411                                    <br />
     412                                    <br />
    370413                                </td>
    371414                            </tr>
     
    377420                                    <input type="checkbox" name="gurlpb-showexcerpt" <?=get_option( 'gurlpb-showexcerpt' ) ? 'checked="checked"' : ''?> value="1" />
    378421                                    <?php _e( 'Yes', 'gurlpb' ); ?>
    379 
    380422                                </td>
    381423                            </tr>
     
    410452                                </td>
    411453                                <td>
    412 
    413                                     <select name="gurlpb-maximgheight">
    414                                         <option <?=( $strImgHeight == '' || $strImgHeight == '0' ) ? 'selected="selected"': ''?> value=""><?php _e( 'none', 'gurlpb' ); ?></option>
     454                                    <select name="gurlpb-maxImgHeight">
     455                                        <option <?=( ! $strImgHeight ) ? 'selected="selected"': ''?> value=""><?php _e( 'Full image (default)', 'gurlpb' ); ?></option>
    415456                                        <option <?= $strImgHeight == '100' ? 'selected="selected"': ''?> value="100">100px</option>
    416457                                        <option <?= $strImgHeight == '150' ? 'selected="selected"': ''?> value="150">150px</option>
     
    424465                                    </select>                                   
    425466
     467                                </td>
     468                            </tr>
     469                            <tr>
     470                                <td>
     471                                    <?php _e( 'Description-length', 'gurlpb' ); ?>
     472                                </td>
     473                                <td>                                   
     474                                    <select name="gurlpb-maxLines">
     475                                        <option <?=( $strMaxLines == '' || $strMaxLines == '0' ) ? 'selected="selected"': ''?> value="0"><?php _e( 'Full-text-default', 'gurlpb' ); ?></option>
     476                                        <option <?= $strMaxLines == '1' ? 'selected="selected"': ''?> value="1"><?php _e( 'Max.', 'gurlpb' ); ?> 1 <?php _e( 'row', 'gurlpb' ); ?></option>
     477                                        <option <?= $strMaxLines == '2' ? 'selected="selected"': ''?> value="2"><?php _e( 'Max.', 'gurlpb' ); ?> 2 <?php _e( 'rows', 'gurlpb' ); ?></option>
     478                                        <option <?= $strMaxLines == '3' ? 'selected="selected"': ''?> value="3"><?php _e( 'Max.', 'gurlpb' ); ?> 3 <?php _e( 'rows', 'gurlpb' ); ?></option>
     479                                        <option <?= $strMaxLines == '4' ? 'selected="selected"': ''?> value="4"><?php _e( 'Max.', 'gurlpb' ); ?> 4 <?php _e( 'rows', 'gurlpb' ); ?></option>
     480                                        <option <?= $strMaxLines == '5' ? 'selected="selected"': ''?> value="5"><?php _e( 'Max.', 'gurlpb' ); ?> 5 <?php _e( 'rows', 'gurlpb' ); ?></option>
     481                                        <option <?= $strMaxLines == '6' ? 'selected="selected"': ''?> value="6"><?php _e( 'Max.', 'gurlpb' ); ?> 6 <?php _e( 'rows', 'gurlpb' ); ?></option>
     482                                        <option <?= $strMaxLines == '7' ? 'selected="selected"': ''?> value="7"><?php _e( 'Max.', 'gurlpb' ); ?> 7 <?php _e( 'rows', 'gurlpb' ); ?></option>
     483                                        <option <?= $strMaxLines == '8' ? 'selected="selected"': ''?> value="8"><?php _e( 'Max.', 'gurlpb' ); ?> 8 <?php _e( 'rows', 'gurlpb' ); ?></option>
     484                                        <option <?= $strMaxLines == '9' ? 'selected="selected"': ''?> value="9"><?php _e( 'Max.', 'gurlpb' ); ?> 9 <?php _e( 'rows', 'gurlpb' ); ?></option>
     485                                        <option <?= $strMaxLines == '10' ? 'selected="selected"': ''?> value="10"><?php _e( 'Max.', 'gurlpb' ); ?> 10 <?php _e( 'rows', 'gurlpb' ); ?></option>
     486                                        <option <?= $strMaxLines == '11' ? 'selected="selected"': ''?> value="11"><?php _e( 'Max.', 'gurlpb' ); ?> 11 <?php _e( 'rows', 'gurlpb' ); ?></option>
     487                                        <option <?= $strMaxLines == '12' ? 'selected="selected"': ''?> value="12"><?php _e( 'Max.', 'gurlpb' ); ?> 12 <?php _e( 'rows', 'gurlpb' ); ?></option>
     488                                    </select>                                   
     489                                           
    426490                                </td>
    427491                            </tr>
  • good-url-preview-box/tags/1.12/gurlpb-settings-admin_2017.php

    r1794597 r1872084  
    5555                }
    5656            }
     57            if ( isset( $_POST['gurlpb-clickTextRadio'] ) ) {
     58                $nClickTextRadio = $_POST['gurlpb-clickTextRadio'] == 1 ? 1 : 2;
     59                $strClickText = ( $nClickTextRadio == 2 ? trim( strip_tags( $_POST[ 'gurlpb-clickText' ] ) ) : '' );
     60                if ( $strClickText == '' ) {
     61                    delete_option('gurlpb-clickText');
     62                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] delete_option clickText: " . $_POST[ 'gurlpb-clickText' ]);
     63                } else {
     64                    update_option( 'gurlpb-clickText', sanitize_text_field( $strClickText ) );
     65                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] update_option clickText" );
     66                }
     67            }
    5768            if ( isset( $_POST['gurlpb-showexcerpt'] ) ) {
    5869                Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] gurlpb-except 1" );
     
    6879                }
    6980            }
     81            if ( isset( $_POST['gurlpb-maxLines'] ) ) {
     82                $nMaxLines = 0 + $_POST['gurlpb-maxLines'];
     83                if ( $nMaxLines > 0 && $nMaxLines <=12 ) {
     84                    update_option('gurlpb-maxLines', sanitize_text_field( $nMaxLines ) );
     85                } else {
     86                    delete_option('gurlpb-maxLines');
     87                }
     88            }
     89            if ( isset( $_POST['gurlpb-maxImgHeight'] ) ) {
     90                $nMaxImgHeight = 0 + $_POST['gurlpb-maxImgHeight'];
     91                Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] nMaxImgHeight $nMaxImgHeight" );
     92                if ( $nMaxImgHeight > 0 && $nMaxImgHeight <=800 ) {
     93                    update_option('gurlpb-maxImgHeight', sanitize_text_field( $nMaxImgHeight ) );
     94                } else {
     95                    delete_option('gurlpb-maxImgHeight');
     96                }
     97            }
    7098            if ( isset( $_POST['gurlpb-hideimages'] ) ) {
    7199                update_option('gurlpb-hideimages', '1' );
     
    73101                delete_option('gurlpb-hideimages');
    74102            }
     103            echo '<script type="text/javascript">localStorage.clear()</script>';
    75104        }
    76105
     
    93122            $typegif = 2;
    94123        }
     124       
     125        $strClickText = trim( strip_tags( get_option( 'gurlpb-clickText' ) ) );
     126        $nClickTextRadio = ( $strClickText == '' ? 1 : 2 );
     127
    95128        $strZoom = get_option( 'gurlpb-zoom' );
    96        
    97         $strImgHeight = "";
     129        $strMaxLines = 0 + get_option( 'gurlpb-maxLines' );
     130        $strImgHeight = 0 + get_option( 'gurlpb-maxImgHeight' );;
    98131        ?>
    99132        <div class="wrap">
     
    303336                            <tr>
    304337                                <td>
     338                                    <?php _e( 'Clickable-text', 'gurlpb' ); ?>:
     339                                </td>
     340                                <td>
     341                                    <input type="radio" name="gurlpb-clickTextRadio" id="gurlpb-clickTextRadio1" <?=$nClickTextRadio<2?'checked="checked"':''?>  value="1" />
     342                                    <?php _e( 'Default-text.', 'gurlpb' ); ?>
     343                                </td>
     344                            </tr>
     345                            <tr>
     346                                <td>
     347                                    &nbsp;
     348                                </td>
     349                                <td>
     350                                    <input type="radio" name="gurlpb-clickTextRadio" id="gurlpb-clickTextRadio2" <?=$nClickTextRadio==2?'checked="checked"':''?> value="2" />
     351                                    <input name="gurlpb-clickText" value="<?=($nClickTextRadio==2 && $strClickText)?$strClickText:''?>" placeholder="<?php _e( 'Example-Click-here', 'gurlpb' ); ?>" size="30" onclick="document.getElementById('gurlpb-clickTextRadio2').checked='checked';" />
     352                                    <br />
     353                                    <br />
     354                                </td>
     355                            </tr>
     356                           
     357                            <tr>
     358                                <td>
    305359                                    <?php _e( 'Show URL preview box in excerpt', 'gurlpb' ); ?>
    306360                                </td>
     
    341395                                </td>
    342396                                <td>
    343 
    344                                     <select name="gurlpb-maximgheight">
    345                                         <option <?=( $strImgHeight == '' || $strImgHeight == '0' ) ? 'selected="selected"': ''?> value=""><?php _e( 'none', 'gurlpb' ); ?></option>
     397                                    <select name="gurlpb-maxImgHeight">
     398                                        <option <?=( ! $strImgHeight ) ? 'selected="selected"': ''?> value=""><?php _e( 'Full image (default)', 'gurlpb' ); ?></option>
    346399                                        <option <?= $strImgHeight == '100' ? 'selected="selected"': ''?> value="100">100px</option>
    347400                                        <option <?= $strImgHeight == '150' ? 'selected="selected"': ''?> value="150">150px</option>
     
    359412                            <tr>
    360413                                <td>
     414                                    <?php _e( 'Description-length', 'gurlpb' ); ?>
     415                                </td>
     416                                <td>                                   
     417                                    <select name="gurlpb-maxLines">
     418                                        <option <?=( $strMaxLines == '' || $strMaxLines == '0' ) ? 'selected="selected"': ''?> value="0"><?php _e( 'Full-text-default', 'gurlpb' ); ?></option>
     419                                        <option <?= $strMaxLines == '1' ? 'selected="selected"': ''?> value="1"><?php _e( 'Max.', 'gurlpb' ); ?> 1 <?php _e( 'row', 'gurlpb' ); ?></option>
     420                                        <option <?= $strMaxLines == '2' ? 'selected="selected"': ''?> value="2"><?php _e( 'Max.', 'gurlpb' ); ?> 2 <?php _e( 'rows', 'gurlpb' ); ?></option>
     421                                        <option <?= $strMaxLines == '3' ? 'selected="selected"': ''?> value="3"><?php _e( 'Max.', 'gurlpb' ); ?> 3 <?php _e( 'rows', 'gurlpb' ); ?></option>
     422                                        <option <?= $strMaxLines == '4' ? 'selected="selected"': ''?> value="4"><?php _e( 'Max.', 'gurlpb' ); ?> 4 <?php _e( 'rows', 'gurlpb' ); ?></option>
     423                                        <option <?= $strMaxLines == '5' ? 'selected="selected"': ''?> value="5"><?php _e( 'Max.', 'gurlpb' ); ?> 5 <?php _e( 'rows', 'gurlpb' ); ?></option>
     424                                        <option <?= $strMaxLines == '6' ? 'selected="selected"': ''?> value="6"><?php _e( 'Max.', 'gurlpb' ); ?> 6 <?php _e( 'rows', 'gurlpb' ); ?></option>
     425                                        <option <?= $strMaxLines == '7' ? 'selected="selected"': ''?> value="7"><?php _e( 'Max.', 'gurlpb' ); ?> 7 <?php _e( 'rows', 'gurlpb' ); ?></option>
     426                                        <option <?= $strMaxLines == '8' ? 'selected="selected"': ''?> value="8"><?php _e( 'Max.', 'gurlpb' ); ?> 8 <?php _e( 'rows', 'gurlpb' ); ?></option>
     427                                        <option <?= $strMaxLines == '9' ? 'selected="selected"': ''?> value="9"><?php _e( 'Max.', 'gurlpb' ); ?> 9 <?php _e( 'rows', 'gurlpb' ); ?></option>
     428                                        <option <?= $strMaxLines == '10' ? 'selected="selected"': ''?> value="10"><?php _e( 'Max.', 'gurlpb' ); ?> 10 <?php _e( 'rows', 'gurlpb' ); ?></option>
     429                                        <option <?= $strMaxLines == '11' ? 'selected="selected"': ''?> value="11"><?php _e( 'Max.', 'gurlpb' ); ?> 11 <?php _e( 'rows', 'gurlpb' ); ?></option>
     430                                        <option <?= $strMaxLines == '12' ? 'selected="selected"': ''?> value="12"><?php _e( 'Max.', 'gurlpb' ); ?> 12 <?php _e( 'rows', 'gurlpb' ); ?></option>
     431                                    </select>                                   
     432                                           
     433                                </td>
     434                            </tr>                           
     435                            <tr>
     436                                <td>
    361437                                    &nbsp;
    362438                                </td>
  • good-url-preview-box/tags/1.12/gurlpb-start.php

    r1794588 r1872084  
    349349        //echo '<script type="text/javascript"> document.guc=' . $callbackA . '</script>';
    350350    }
     351   
     352    $strMaxLines = 0 + get_option( 'gurlpb-maxLines' );
     353    $strMaxImgHeight = 0 + get_option( 'gurlpb-maxImgHeight' );
     354    $strClickText = trim( strip_tags( get_option( 'gurlpb-clickText' ) ) );
    351355
    352356    echo '<script type="text/javascript" async'
     
    365369        . ( $nZoom != 1 ? ' zoom="' . get_option( 'gurlpb-zoom' ) . '"' : '' )
    366370        . ( $email ? ' email="' . base64_encode( $email ) . '"' : '' )
     371        . ( $strMaxLines ? ' maxlines="' . $strMaxLines . '"' : '' )
     372        . ( $strMaxImgHeight ? ' maxImgHeight="' . $strMaxImgHeight . '"' : '' )
     373        . ( $strClickText ? ' clickText="' . $strClickText . '"' : '' )
    367374        . ' pluginversion="' . Gurlpb_config::$_VERSION . '"'
    368375
  • good-url-preview-box/tags/1.12/gute-url-preview-box.php

    r1794609 r1872084  
    66Author: Martin Schaedler
    77Author URI: https://hypnose54321.de/frankfurt/_contact.html
    8 Version: 1.11.3
     8Version: 1.12
    99Text Domain: gurlpb
    1010*/
  • good-url-preview-box/tags/1.12/languages/gurlpb-cn.pot

    r1794597 r1872084  
    242242msgid "Save-a-little-money"
    243243msgstr "节省一些钱"
     244
     245#. Clickable text
     246msgid "Clickable-text"
     247msgstr "可点击的文字"
     248
     249#. Default text.
     250msgid "Default-text."
     251msgstr "默认文字"
     252
     253#. Example: Click here to open page
     254msgid "Example-Click-here"
     255msgstr "例如:点击这里"
     256
     257#. Description length
     258msgid "Description-length"
     259msgstr "描述长度"
     260
     261#. Max.
     262msgid "Max."
     263msgstr "最大。"
     264
     265#. Row
     266msgid "Row"
     267msgstr "行"
     268
     269#. Rows
     270msgid "Rows"
     271msgstr "行"
     272
     273#. Full text (default)
     274msgid "Full-text-default"
     275msgstr "全文(默认)"
  • good-url-preview-box/tags/1.12/languages/gurlpb-de.pot

    r1794597 r1872084  
    245245msgid "Save-a-little-money"
    246246msgstr "Ein paar Euro-Cent sparen"
     247
     248#. Clickable text
     249msgid "Clickable-text"
     250msgstr "Link Text"
     251
     252#. Default text.
     253msgid "Default-text."
     254msgstr "Standard"
     255
     256#. Example: Click here to open page
     257msgid "Example-Click-here"
     258msgstr "Bsp.: Klick hier"
     259
     260#. Description length
     261msgid "Description-length"
     262msgstr "Länge des Textes"
     263
     264#. Max.
     265msgid "Max."
     266msgstr "Max."
     267
     268#. Row
     269msgid "Row"
     270msgstr "Zeile"
     271
     272#. Rows
     273msgid "Rows"
     274msgstr "Zeilen"
     275
     276#. Full text (default)
     277msgid "Full-text-default"
     278msgstr "Kompletter Text (Default)"
  • good-url-preview-box/tags/1.12/languages/gurlpb-en.pot

    r1794597 r1872084  
    239239msgid "Save-a-little-money"
    240240msgstr "Save a few bugs"
     241
     242#. Clickable text
     243msgid "Clickable-text"
     244msgstr "Clickable text"
     245
     246#. Default text.
     247msgid "Default-text."
     248msgstr "Default text."
     249
     250#. Example: Click here to open page
     251msgid "Example-Click-here"
     252msgstr "Example: Click here to open page"
     253
     254#. Description length
     255msgid "Description-length"
     256msgstr "Description length"
     257
     258#. Max.
     259msgid "Max."
     260msgstr "Max."
     261
     262#. Row
     263msgid "Row"
     264msgstr "Row"
     265
     266#. Rows
     267msgid "Rows"
     268msgstr "Rows"
     269
     270#. Full text (default)
     271msgid "Full-text-default"
     272msgstr "Full text (default)"
  • good-url-preview-box/tags/1.12/languages/gurlpb-es.pot

    r1794597 r1872084  
    243243msgstr "Ahorra algo de dinero"
    244244
    245 
     245#. Clickable text
     246msgid "Clickable-text"
     247msgstr "Texto clicable"
     248
     249#. Default text.
     250msgid "Default-text."
     251msgstr "Impago"
     252
     253#. Example: Click here to open page
     254msgid "Example-Click-here"
     255msgstr "Ejemplo: Haga clic aquí"
     256
     257#. Description length
     258msgid "Description-length"
     259msgstr "longitud de texto"
     260
     261#. Max.
     262msgid "Max."
     263msgstr "Máx"
     264
     265#. Row
     266msgid "Row"
     267msgstr "Fila"
     268
     269#. Rows
     270msgid "Rows"
     271msgstr "Filas"
     272
     273#. Full text (default)
     274msgid "Full-text-default"
     275msgstr "Texto completo (por defecto)"
  • good-url-preview-box/tags/1.12/languages/gurlpb-ru.pot

    r1794597 r1872084  
    242242msgstr "Сохраните немного денег"
    243243
     244#. Clickable text
     245msgid "Clickable-text"
     246msgstr "Доступный текст"
     247
     248#. Default text.
     249msgid "Default-text."
     250msgstr "Текст по умолчанию"
     251
     252#. Example: Click here to open page
     253msgid "Example-Click-here"
     254msgstr "Пример: нажмите здесь"
     255
     256#. Description length
     257msgid "Description-length"
     258msgstr "Длина описания"
     259
     260#. Max.
     261msgid "Max."
     262msgstr "Максимум."
     263
     264#. Row
     265msgid "Row"
     266msgstr "Ряд"
     267
     268#. Rows
     269msgid "Rows"
     270msgstr "Ряды"
     271
     272#. Full text (default)
     273msgid "Full-text-default"
     274msgstr "Полный текст (по умолчанию)"
  • good-url-preview-box/tags/1.12/readme.txt

    r1794609 r1872084  
    44Tags: link, links, URL, URLs, preview, preview image, guteurls, gute-urls, facebook, internet-link, post, posting, like Facebook, exacly like facebook, find url, find link, search link, search url, detect url, internet address
    55Requires at least: 3.0.1
    6 Tested up to: 4.9.1
    7 Stable tag: 4.9.1
     6Tested up to: 4.9.5
     7Stable tag: 4.9.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    115115== Upgrade Notice ==
    116116
     117= 1.12 =
     118Added in admin area:
     119- Set maximal number of lines for a url preview box
     120- Change the clickable text link in an url preview bo
     121
    117122= 1.11.3 =
    118123Registration page added.
     
    158163== Changelog ==
    159164
     165= 1.12 =
     166Added in admin area:
     167- Set maximal number of lines for a url preview box
     168- Change the clickable text link in an url preview box
     169
    160170= 1.11.3 =
    161171Registration page added.
  • good-url-preview-box/trunk/gurlpb-config.php

    r1794609 r1872084  
    11<?php
    22class Gurlpb_config {
    3     public static $_VERSION = '1.11.3'; // CHANGE ALSO IN gute-url-preview-box.php, README AND IN SVN!
     3    public static $_VERSION = '1.12'; // CHANGE ALSO IN gute-url-preview-box.php, README AND IN SVN!
    44    public static $_DEBUG = false;
    55    public static $_LOCAL = false;
  • good-url-preview-box/trunk/gurlpb-settings-admin.php

    r1794588 r1872084  
    196196                } elseif ( $typegif == 2 ) {
    197197                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] gurlpb-bgcolor" . $_POST['gurlpb-bgcolor'] );
    198                     Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] gurlpb-bgcolor" . print_r( $_POST, true ));
    199198                    $strLoadingGif = empty( $_POST['gurlpb-gif'] ) ? '' : trim( $_POST['gurlpb-gif'] );
    200199                    if ( filter_var( $strLoadingGif, FILTER_VALIDATE_URL) !== false ) {
     
    205204                }
    206205            }
     206            if ( isset( $_POST['gurlpb-clickTextRadio'] ) ) {
     207                $nClickTextRadio = $_POST['gurlpb-clickTextRadio'] == 1 ? 1 : 2;
     208                $strClickText = ( $nClickTextRadio == 2 ? trim( strip_tags( $_POST[ 'gurlpb-clickText' ] ) ) : '' );
     209                if ( $strClickText == '' ) {
     210                    delete_option('gurlpb-clickText');
     211                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] delete_option clickText: " . $_POST[ 'gurlpb-clickText' ]);
     212                } else {
     213                    update_option( 'gurlpb-clickText', sanitize_text_field( $strClickText ) );
     214                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] update_option clickText" );
     215                }
     216            }
    207217            if ( isset( $_POST['gurlpb-showexcerpt'] ) ) {
    208218                Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] gurlpb-except 1" );
     
    218228                }
    219229            }
     230            if ( isset( $_POST['gurlpb-maxLines'] ) ) {
     231                $nMaxLines = 0 + $_POST['gurlpb-maxLines'];
     232                if ( $nMaxLines > 0 && $nMaxLines <=12 ) {
     233                    update_option('gurlpb-maxLines', sanitize_text_field( $nMaxLines ) );
     234                } else {
     235                    delete_option('gurlpb-maxLines');
     236                }
     237            }
     238            if ( isset( $_POST['gurlpb-maxImgHeight'] ) ) {
     239                $nMaxImgHeight = 0 + $_POST['gurlpb-maxImgHeight'];
     240                Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] nMaxImgHeight $nMaxImgHeight" );
     241                if ( $nMaxImgHeight > 0 && $nMaxImgHeight <=800 ) {
     242                    update_option('gurlpb-maxImgHeight', sanitize_text_field( $nMaxImgHeight ) );
     243                } else {
     244                    delete_option('gurlpb-maxImgHeight');
     245                }
     246            }
    220247            if ( isset( $_POST['gurlpb-hideimages'] ) ) {
    221248                update_option('gurlpb-hideimages', '1' );
     
    223250                delete_option('gurlpb-hideimages');
    224251            }
     252            echo '<script type="text/javascript">localStorage.clear()</script>';
    225253        }
    226254
     
    243271            $typegif = 2;
    244272        }
     273       
     274        $strClickText = trim( strip_tags( get_option( 'gurlpb-clickText' ) ) );
     275        $nClickTextRadio = ( $strClickText == '' ? 1 : 2 );
     276
    245277        $strZoom = get_option( 'gurlpb-zoom' );
    246        
    247         $strImgHeight = "";
     278        $strMaxLines = 0 + get_option( 'gurlpb-maxLines' );
     279        $strImgHeight = 0 + get_option( 'gurlpb-maxImgHeight' );;
    248280        ?>
    249281        <div class="wrap">
     
    357389                                        (<?php _e( 'Use a gif from', 'gurlpb' ); ?>)
    358390                                    </span>
    359 
     391                                    <br />
     392                                    <br />
     393                                </td>
     394                            </tr>
     395                            <tr>
     396                                <td>
     397                                    <?php _e( 'Clickable-text', 'gurlpb' ); ?>:
     398                                </td>
     399                                <td>
     400                                    <input type="radio" name="gurlpb-clickTextRadio" id="gurlpb-clickTextRadio1" <?=$nClickTextRadio<2?'checked="checked"':''?>  value="1" />
     401                                    <?php _e( 'Default-text.', 'gurlpb' ); ?>
    360402                                </td>
    361403                            </tr>
     
    365407                                </td>
    366408                                <td>
    367                                     <input type="radio" name="gurlpb-typegif" <?=$typegif==3?'checked="checked"':''?> value="3" />
    368                                     <?php _e( 'No animation', 'gurlpb' ); ?>
    369                                     <br /><br />
     409                                    <input type="radio" name="gurlpb-clickTextRadio" id="gurlpb-clickTextRadio2" <?=$nClickTextRadio==2?'checked="checked"':''?> value="2" />
     410                                    <input name="gurlpb-clickText" value="<?=($nClickTextRadio==2 && $strClickText)?$strClickText:''?>" placeholder="<?php _e( 'Example-Click-here', 'gurlpb' ); ?>" size="30" onclick="document.getElementById('gurlpb-clickTextRadio2').checked='checked';" />
     411                                    <br />
     412                                    <br />
    370413                                </td>
    371414                            </tr>
     
    377420                                    <input type="checkbox" name="gurlpb-showexcerpt" <?=get_option( 'gurlpb-showexcerpt' ) ? 'checked="checked"' : ''?> value="1" />
    378421                                    <?php _e( 'Yes', 'gurlpb' ); ?>
    379 
    380422                                </td>
    381423                            </tr>
     
    410452                                </td>
    411453                                <td>
    412 
    413                                     <select name="gurlpb-maximgheight">
    414                                         <option <?=( $strImgHeight == '' || $strImgHeight == '0' ) ? 'selected="selected"': ''?> value=""><?php _e( 'none', 'gurlpb' ); ?></option>
     454                                    <select name="gurlpb-maxImgHeight">
     455                                        <option <?=( ! $strImgHeight ) ? 'selected="selected"': ''?> value=""><?php _e( 'Full image (default)', 'gurlpb' ); ?></option>
    415456                                        <option <?= $strImgHeight == '100' ? 'selected="selected"': ''?> value="100">100px</option>
    416457                                        <option <?= $strImgHeight == '150' ? 'selected="selected"': ''?> value="150">150px</option>
     
    424465                                    </select>                                   
    425466
     467                                </td>
     468                            </tr>
     469                            <tr>
     470                                <td>
     471                                    <?php _e( 'Description-length', 'gurlpb' ); ?>
     472                                </td>
     473                                <td>                                   
     474                                    <select name="gurlpb-maxLines">
     475                                        <option <?=( $strMaxLines == '' || $strMaxLines == '0' ) ? 'selected="selected"': ''?> value="0"><?php _e( 'Full-text-default', 'gurlpb' ); ?></option>
     476                                        <option <?= $strMaxLines == '1' ? 'selected="selected"': ''?> value="1"><?php _e( 'Max.', 'gurlpb' ); ?> 1 <?php _e( 'row', 'gurlpb' ); ?></option>
     477                                        <option <?= $strMaxLines == '2' ? 'selected="selected"': ''?> value="2"><?php _e( 'Max.', 'gurlpb' ); ?> 2 <?php _e( 'rows', 'gurlpb' ); ?></option>
     478                                        <option <?= $strMaxLines == '3' ? 'selected="selected"': ''?> value="3"><?php _e( 'Max.', 'gurlpb' ); ?> 3 <?php _e( 'rows', 'gurlpb' ); ?></option>
     479                                        <option <?= $strMaxLines == '4' ? 'selected="selected"': ''?> value="4"><?php _e( 'Max.', 'gurlpb' ); ?> 4 <?php _e( 'rows', 'gurlpb' ); ?></option>
     480                                        <option <?= $strMaxLines == '5' ? 'selected="selected"': ''?> value="5"><?php _e( 'Max.', 'gurlpb' ); ?> 5 <?php _e( 'rows', 'gurlpb' ); ?></option>
     481                                        <option <?= $strMaxLines == '6' ? 'selected="selected"': ''?> value="6"><?php _e( 'Max.', 'gurlpb' ); ?> 6 <?php _e( 'rows', 'gurlpb' ); ?></option>
     482                                        <option <?= $strMaxLines == '7' ? 'selected="selected"': ''?> value="7"><?php _e( 'Max.', 'gurlpb' ); ?> 7 <?php _e( 'rows', 'gurlpb' ); ?></option>
     483                                        <option <?= $strMaxLines == '8' ? 'selected="selected"': ''?> value="8"><?php _e( 'Max.', 'gurlpb' ); ?> 8 <?php _e( 'rows', 'gurlpb' ); ?></option>
     484                                        <option <?= $strMaxLines == '9' ? 'selected="selected"': ''?> value="9"><?php _e( 'Max.', 'gurlpb' ); ?> 9 <?php _e( 'rows', 'gurlpb' ); ?></option>
     485                                        <option <?= $strMaxLines == '10' ? 'selected="selected"': ''?> value="10"><?php _e( 'Max.', 'gurlpb' ); ?> 10 <?php _e( 'rows', 'gurlpb' ); ?></option>
     486                                        <option <?= $strMaxLines == '11' ? 'selected="selected"': ''?> value="11"><?php _e( 'Max.', 'gurlpb' ); ?> 11 <?php _e( 'rows', 'gurlpb' ); ?></option>
     487                                        <option <?= $strMaxLines == '12' ? 'selected="selected"': ''?> value="12"><?php _e( 'Max.', 'gurlpb' ); ?> 12 <?php _e( 'rows', 'gurlpb' ); ?></option>
     488                                    </select>                                   
     489                                           
    426490                                </td>
    427491                            </tr>
  • good-url-preview-box/trunk/gurlpb-settings-admin_2017.php

    r1794597 r1872084  
    5555                }
    5656            }
     57            if ( isset( $_POST['gurlpb-clickTextRadio'] ) ) {
     58                $nClickTextRadio = $_POST['gurlpb-clickTextRadio'] == 1 ? 1 : 2;
     59                $strClickText = ( $nClickTextRadio == 2 ? trim( strip_tags( $_POST[ 'gurlpb-clickText' ] ) ) : '' );
     60                if ( $strClickText == '' ) {
     61                    delete_option('gurlpb-clickText');
     62                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] delete_option clickText: " . $_POST[ 'gurlpb-clickText' ]);
     63                } else {
     64                    update_option( 'gurlpb-clickText', sanitize_text_field( $strClickText ) );
     65                    Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] update_option clickText" );
     66                }
     67            }
    5768            if ( isset( $_POST['gurlpb-showexcerpt'] ) ) {
    5869                Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] gurlpb-except 1" );
     
    6879                }
    6980            }
     81            if ( isset( $_POST['gurlpb-maxLines'] ) ) {
     82                $nMaxLines = 0 + $_POST['gurlpb-maxLines'];
     83                if ( $nMaxLines > 0 && $nMaxLines <=12 ) {
     84                    update_option('gurlpb-maxLines', sanitize_text_field( $nMaxLines ) );
     85                } else {
     86                    delete_option('gurlpb-maxLines');
     87                }
     88            }
     89            if ( isset( $_POST['gurlpb-maxImgHeight'] ) ) {
     90                $nMaxImgHeight = 0 + $_POST['gurlpb-maxImgHeight'];
     91                Gurlpb_utils::log(__FUNCTION__ . '[' . __LINE__ . "] nMaxImgHeight $nMaxImgHeight" );
     92                if ( $nMaxImgHeight > 0 && $nMaxImgHeight <=800 ) {
     93                    update_option('gurlpb-maxImgHeight', sanitize_text_field( $nMaxImgHeight ) );
     94                } else {
     95                    delete_option('gurlpb-maxImgHeight');
     96                }
     97            }
    7098            if ( isset( $_POST['gurlpb-hideimages'] ) ) {
    7199                update_option('gurlpb-hideimages', '1' );
     
    73101                delete_option('gurlpb-hideimages');
    74102            }
     103            echo '<script type="text/javascript">localStorage.clear()</script>';
    75104        }
    76105
     
    93122            $typegif = 2;
    94123        }
     124       
     125        $strClickText = trim( strip_tags( get_option( 'gurlpb-clickText' ) ) );
     126        $nClickTextRadio = ( $strClickText == '' ? 1 : 2 );
     127
    95128        $strZoom = get_option( 'gurlpb-zoom' );
    96        
    97         $strImgHeight = "";
     129        $strMaxLines = 0 + get_option( 'gurlpb-maxLines' );
     130        $strImgHeight = 0 + get_option( 'gurlpb-maxImgHeight' );;
    98131        ?>
    99132        <div class="wrap">
     
    303336                            <tr>
    304337                                <td>
     338                                    <?php _e( 'Clickable-text', 'gurlpb' ); ?>:
     339                                </td>
     340                                <td>
     341                                    <input type="radio" name="gurlpb-clickTextRadio" id="gurlpb-clickTextRadio1" <?=$nClickTextRadio<2?'checked="checked"':''?>  value="1" />
     342                                    <?php _e( 'Default-text.', 'gurlpb' ); ?>
     343                                </td>
     344                            </tr>
     345                            <tr>
     346                                <td>
     347                                    &nbsp;
     348                                </td>
     349                                <td>
     350                                    <input type="radio" name="gurlpb-clickTextRadio" id="gurlpb-clickTextRadio2" <?=$nClickTextRadio==2?'checked="checked"':''?> value="2" />
     351                                    <input name="gurlpb-clickText" value="<?=($nClickTextRadio==2 && $strClickText)?$strClickText:''?>" placeholder="<?php _e( 'Example-Click-here', 'gurlpb' ); ?>" size="30" onclick="document.getElementById('gurlpb-clickTextRadio2').checked='checked';" />
     352                                    <br />
     353                                    <br />
     354                                </td>
     355                            </tr>
     356                           
     357                            <tr>
     358                                <td>
    305359                                    <?php _e( 'Show URL preview box in excerpt', 'gurlpb' ); ?>
    306360                                </td>
     
    341395                                </td>
    342396                                <td>
    343 
    344                                     <select name="gurlpb-maximgheight">
    345                                         <option <?=( $strImgHeight == '' || $strImgHeight == '0' ) ? 'selected="selected"': ''?> value=""><?php _e( 'none', 'gurlpb' ); ?></option>
     397                                    <select name="gurlpb-maxImgHeight">
     398                                        <option <?=( ! $strImgHeight ) ? 'selected="selected"': ''?> value=""><?php _e( 'Full image (default)', 'gurlpb' ); ?></option>
    346399                                        <option <?= $strImgHeight == '100' ? 'selected="selected"': ''?> value="100">100px</option>
    347400                                        <option <?= $strImgHeight == '150' ? 'selected="selected"': ''?> value="150">150px</option>
     
    359412                            <tr>
    360413                                <td>
     414                                    <?php _e( 'Description-length', 'gurlpb' ); ?>
     415                                </td>
     416                                <td>                                   
     417                                    <select name="gurlpb-maxLines">
     418                                        <option <?=( $strMaxLines == '' || $strMaxLines == '0' ) ? 'selected="selected"': ''?> value="0"><?php _e( 'Full-text-default', 'gurlpb' ); ?></option>
     419                                        <option <?= $strMaxLines == '1' ? 'selected="selected"': ''?> value="1"><?php _e( 'Max.', 'gurlpb' ); ?> 1 <?php _e( 'row', 'gurlpb' ); ?></option>
     420                                        <option <?= $strMaxLines == '2' ? 'selected="selected"': ''?> value="2"><?php _e( 'Max.', 'gurlpb' ); ?> 2 <?php _e( 'rows', 'gurlpb' ); ?></option>
     421                                        <option <?= $strMaxLines == '3' ? 'selected="selected"': ''?> value="3"><?php _e( 'Max.', 'gurlpb' ); ?> 3 <?php _e( 'rows', 'gurlpb' ); ?></option>
     422                                        <option <?= $strMaxLines == '4' ? 'selected="selected"': ''?> value="4"><?php _e( 'Max.', 'gurlpb' ); ?> 4 <?php _e( 'rows', 'gurlpb' ); ?></option>
     423                                        <option <?= $strMaxLines == '5' ? 'selected="selected"': ''?> value="5"><?php _e( 'Max.', 'gurlpb' ); ?> 5 <?php _e( 'rows', 'gurlpb' ); ?></option>
     424                                        <option <?= $strMaxLines == '6' ? 'selected="selected"': ''?> value="6"><?php _e( 'Max.', 'gurlpb' ); ?> 6 <?php _e( 'rows', 'gurlpb' ); ?></option>
     425                                        <option <?= $strMaxLines == '7' ? 'selected="selected"': ''?> value="7"><?php _e( 'Max.', 'gurlpb' ); ?> 7 <?php _e( 'rows', 'gurlpb' ); ?></option>
     426                                        <option <?= $strMaxLines == '8' ? 'selected="selected"': ''?> value="8"><?php _e( 'Max.', 'gurlpb' ); ?> 8 <?php _e( 'rows', 'gurlpb' ); ?></option>
     427                                        <option <?= $strMaxLines == '9' ? 'selected="selected"': ''?> value="9"><?php _e( 'Max.', 'gurlpb' ); ?> 9 <?php _e( 'rows', 'gurlpb' ); ?></option>
     428                                        <option <?= $strMaxLines == '10' ? 'selected="selected"': ''?> value="10"><?php _e( 'Max.', 'gurlpb' ); ?> 10 <?php _e( 'rows', 'gurlpb' ); ?></option>
     429                                        <option <?= $strMaxLines == '11' ? 'selected="selected"': ''?> value="11"><?php _e( 'Max.', 'gurlpb' ); ?> 11 <?php _e( 'rows', 'gurlpb' ); ?></option>
     430                                        <option <?= $strMaxLines == '12' ? 'selected="selected"': ''?> value="12"><?php _e( 'Max.', 'gurlpb' ); ?> 12 <?php _e( 'rows', 'gurlpb' ); ?></option>
     431                                    </select>                                   
     432                                           
     433                                </td>
     434                            </tr>                           
     435                            <tr>
     436                                <td>
    361437                                    &nbsp;
    362438                                </td>
  • good-url-preview-box/trunk/gurlpb-start.php

    r1794588 r1872084  
    349349        //echo '<script type="text/javascript"> document.guc=' . $callbackA . '</script>';
    350350    }
     351   
     352    $strMaxLines = 0 + get_option( 'gurlpb-maxLines' );
     353    $strMaxImgHeight = 0 + get_option( 'gurlpb-maxImgHeight' );
     354    $strClickText = trim( strip_tags( get_option( 'gurlpb-clickText' ) ) );
    351355
    352356    echo '<script type="text/javascript" async'
     
    365369        . ( $nZoom != 1 ? ' zoom="' . get_option( 'gurlpb-zoom' ) . '"' : '' )
    366370        . ( $email ? ' email="' . base64_encode( $email ) . '"' : '' )
     371        . ( $strMaxLines ? ' maxlines="' . $strMaxLines . '"' : '' )
     372        . ( $strMaxImgHeight ? ' maxImgHeight="' . $strMaxImgHeight . '"' : '' )
     373        . ( $strClickText ? ' clickText="' . $strClickText . '"' : '' )
    367374        . ' pluginversion="' . Gurlpb_config::$_VERSION . '"'
    368375
  • good-url-preview-box/trunk/gute-url-preview-box.php

    r1794609 r1872084  
    66Author: Martin Schaedler
    77Author URI: https://hypnose54321.de/frankfurt/_contact.html
    8 Version: 1.11.3
     8Version: 1.12
    99Text Domain: gurlpb
    1010*/
  • good-url-preview-box/trunk/languages/gurlpb-cn.pot

    r1794597 r1872084  
    242242msgid "Save-a-little-money"
    243243msgstr "节省一些钱"
     244
     245#. Clickable text
     246msgid "Clickable-text"
     247msgstr "可点击的文字"
     248
     249#. Default text.
     250msgid "Default-text."
     251msgstr "默认文字"
     252
     253#. Example: Click here to open page
     254msgid "Example-Click-here"
     255msgstr "例如:点击这里"
     256
     257#. Description length
     258msgid "Description-length"
     259msgstr "描述长度"
     260
     261#. Max.
     262msgid "Max."
     263msgstr "最大。"
     264
     265#. Row
     266msgid "Row"
     267msgstr "行"
     268
     269#. Rows
     270msgid "Rows"
     271msgstr "行"
     272
     273#. Full text (default)
     274msgid "Full-text-default"
     275msgstr "全文(默认)"
  • good-url-preview-box/trunk/languages/gurlpb-de.pot

    r1794597 r1872084  
    245245msgid "Save-a-little-money"
    246246msgstr "Ein paar Euro-Cent sparen"
     247
     248#. Clickable text
     249msgid "Clickable-text"
     250msgstr "Link Text"
     251
     252#. Default text.
     253msgid "Default-text."
     254msgstr "Standard"
     255
     256#. Example: Click here to open page
     257msgid "Example-Click-here"
     258msgstr "Bsp.: Klick hier"
     259
     260#. Description length
     261msgid "Description-length"
     262msgstr "Länge des Textes"
     263
     264#. Max.
     265msgid "Max."
     266msgstr "Max."
     267
     268#. Row
     269msgid "Row"
     270msgstr "Zeile"
     271
     272#. Rows
     273msgid "Rows"
     274msgstr "Zeilen"
     275
     276#. Full text (default)
     277msgid "Full-text-default"
     278msgstr "Kompletter Text (Default)"
  • good-url-preview-box/trunk/languages/gurlpb-en.pot

    r1794597 r1872084  
    239239msgid "Save-a-little-money"
    240240msgstr "Save a few bugs"
     241
     242#. Clickable text
     243msgid "Clickable-text"
     244msgstr "Clickable text"
     245
     246#. Default text.
     247msgid "Default-text."
     248msgstr "Default text."
     249
     250#. Example: Click here to open page
     251msgid "Example-Click-here"
     252msgstr "Example: Click here to open page"
     253
     254#. Description length
     255msgid "Description-length"
     256msgstr "Description length"
     257
     258#. Max.
     259msgid "Max."
     260msgstr "Max."
     261
     262#. Row
     263msgid "Row"
     264msgstr "Row"
     265
     266#. Rows
     267msgid "Rows"
     268msgstr "Rows"
     269
     270#. Full text (default)
     271msgid "Full-text-default"
     272msgstr "Full text (default)"
  • good-url-preview-box/trunk/languages/gurlpb-es.pot

    r1794597 r1872084  
    243243msgstr "Ahorra algo de dinero"
    244244
    245 
     245#. Clickable text
     246msgid "Clickable-text"
     247msgstr "Texto clicable"
     248
     249#. Default text.
     250msgid "Default-text."
     251msgstr "Impago"
     252
     253#. Example: Click here to open page
     254msgid "Example-Click-here"
     255msgstr "Ejemplo: Haga clic aquí"
     256
     257#. Description length
     258msgid "Description-length"
     259msgstr "longitud de texto"
     260
     261#. Max.
     262msgid "Max."
     263msgstr "Máx"
     264
     265#. Row
     266msgid "Row"
     267msgstr "Fila"
     268
     269#. Rows
     270msgid "Rows"
     271msgstr "Filas"
     272
     273#. Full text (default)
     274msgid "Full-text-default"
     275msgstr "Texto completo (por defecto)"
  • good-url-preview-box/trunk/languages/gurlpb-ru.pot

    r1794597 r1872084  
    242242msgstr "Сохраните немного денег"
    243243
     244#. Clickable text
     245msgid "Clickable-text"
     246msgstr "Доступный текст"
     247
     248#. Default text.
     249msgid "Default-text."
     250msgstr "Текст по умолчанию"
     251
     252#. Example: Click here to open page
     253msgid "Example-Click-here"
     254msgstr "Пример: нажмите здесь"
     255
     256#. Description length
     257msgid "Description-length"
     258msgstr "Длина описания"
     259
     260#. Max.
     261msgid "Max."
     262msgstr "Максимум."
     263
     264#. Row
     265msgid "Row"
     266msgstr "Ряд"
     267
     268#. Rows
     269msgid "Rows"
     270msgstr "Ряды"
     271
     272#. Full text (default)
     273msgid "Full-text-default"
     274msgstr "Полный текст (по умолчанию)"
  • good-url-preview-box/trunk/readme.txt

    r1794609 r1872084  
    44Tags: link, links, URL, URLs, preview, preview image, guteurls, gute-urls, facebook, internet-link, post, posting, like Facebook, exacly like facebook, find url, find link, search link, search url, detect url, internet address
    55Requires at least: 3.0.1
    6 Tested up to: 4.9.1
    7 Stable tag: 4.9.1
     6Tested up to: 4.9.5
     7Stable tag: 4.9.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    115115== Upgrade Notice ==
    116116
     117= 1.12 =
     118Added in admin area:
     119- Set maximal number of lines for a url preview box
     120- Change the clickable text link in an url preview bo
     121
    117122= 1.11.3 =
    118123Registration page added.
     
    158163== Changelog ==
    159164
     165= 1.12 =
     166Added in admin area:
     167- Set maximal number of lines for a url preview box
     168- Change the clickable text link in an url preview box
     169
    160170= 1.11.3 =
    161171Registration page added.
Note: See TracChangeset for help on using the changeset viewer.