Plugin Directory

Changeset 161131


Ignore:
Timestamp:
10/07/2009 06:40:57 AM (16 years ago)
Author:
bitinn
Message:

1.5.1 added function

Location:
faster-image-insert/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • faster-image-insert/trunk/faster-image-insert.php

    r161121 r161131  
    5454      }
    5555    });
    56     //changing state
     56    //toggle metabox
    5757    $('#screen-meta #fastinsert-hide').click(function() {
    5858      var view = $('#fastinsert-hide').is(':checked');
     
    6565      }
    6666    });
    67     //update state on insert
    68     $('#fast_insert').load(function() {
    69       if($(this).contents().find('#media-upload').length < 1) {
    70         document.getElementById('fast_insert').contentWindow.location.href = document.getElementById('fast_insert').contentWindow.location.href;
    71       }
    72     });
    7367    <?php if($id < 0) { ?>
    74     //update state after autosave
     68    //update state after autosave, bind load event.
    7569    $('#fastinsert').click(function() {
    7670      var newid = $('#post_ID').val();
    7771      if(notSaved == false && newid > 0) {
    7872        $('#fastinsert > .inside').html('<iframe frameborder="0" name="fast_insert" id="fast_insert" src="<?php echo get_option("siteurl") ?>/wp-admin/media-upload.php?post_id='+newid+'<?php if($noflash) echo '&#038;flash=0'; ?>&#038;type=image&#038;tab=type" hspace="0"> </iframe>');
     73        $('#fast_insert').bind("load", function() {
     74          if($(this).contents().find('#media-upload').length < 1) {
     75            document.getElementById('fast_insert').contentWindow.location.href = document.getElementById('fast_insert').contentWindow.location.href;
     76          }
     77        });
     78      }
     79    });
     80    <?php } ?>
     81    <?php if($id > 0) { ?>
     82    //update state on insert
     83    $('#fast_insert').bind("load", function() {
     84      if($(this).contents().find('#media-upload').length < 1) {
     85        document.getElementById('fast_insert').contentWindow.location.href = document.getElementById('fast_insert').contentWindow.location.href;
    7986      }
    8087    });
     
    8491</script>
    8592<?php
    86 
     93  //metabox without javascript
    8794  } else {
    8895    if($noflash && $id > 0)
     
    206213  $mass = get_option( $mass_edit );
    207214  if($mass) {
     215  //mass editing
    208216?>
    209217   
     
    234242          if(typeof massedit[1] !== "undefined" && massedit[1].length > 0) $(this).find('.post_excerpt .field input').val(massedit[1]);
    235243          if(typeof massedit[2] !== "undefined" && massedit[2].length > 0) {
    236             //$(this).find('.align .field input:checked').removeAttr("checked");
    237244            $(this).find('.align .field input[value='+massedit[2]+']').attr("checked","checked");
    238245          }
    239246          if(typeof massedit[3] !== "undefined" && massedit[3].length > 0) {
    240             //$(this).find('.image-size .field input:checked').removeAttr("checked");
    241247            $(this).find('.image-size .field input[value='+massedit[3]+']').attr("checked","checked");
    242248          }
     
    287293  check_admin_referer('media-form');
    288294 
     295  $customstring = 'faster_insert_plugin_custom';
     296  $cstring = get_option( $customstring );
     297 
     298  $line_number = 'faster_insert_line_number';
     299  $number = get_option( $line_number );
     300 
    289301  $image_line = 'faster_insert_image_line';
    290302  $oneline = get_option( $image_line );
    291303 
    292   $line_number = 'faster_insert_line_number';
    293   $number = get_option( $line_number );
    294304  if(!is_numeric($number)) $number = 4;
    295305
     
    306316        }
    307317        $html = apply_filters('media_send_to_editor', $html, $attachment_id, $attachment);
    308         //since 1.4.0: &nbsp; is the same as a blank space, but can be passed onto TinyMCE
    309         if(!$oneline) $result .= $html.str_repeat("\\n<p>&nbsp;</p>\\n",$number);
    310         else $result .= $html.str_repeat("&nbsp;",$number);
     318        //since 1.5.0: &nbsp; is the same as a blank space, but can be passed onto TinyMCE
     319        if(!$oneline) $result .= $html.str_repeat("\\n".$cstring."\\n",$number);
     320        else $result .= $html.str_repeat($cstring,$number);
    311321      }
    312322    }
     
    368378  $no_caption = 'faster_insert_no_caption';
    369379  $plugindebug = 'faster_insert_plugin_debug';
     380  $customstring = 'faster_insert_plugin_custom';
    370381 
    371382  $iframe = get_option( $load_iframe );
     
    376387  $caption = get_option( $no_caption );
    377388  $debug = get_option( $plugindebug );
     389  $cstring = get_option( $customstring );
    378390 
    379391  //update options
     
    387399    $_POST[ $no_caption ] == 'selected' ? $caption = true : $caption = false;
    388400    $_POST[ $plugindebug ] == 'selected' ? $debug = true : $debug = false;
     401    if(is_string($_POST[ $customstring ]) && !empty($_POST[ $customstring ])) $cstring = $_POST[ $customstring ]; else $cstring = "<p> </p>";
    389402   
    390403    update_option( $load_iframe, $iframe );
     
    395408    update_option( $no_caption, $caption );
    396409    update_option( $plugindebug, $debug );
     410    update_option( $customstring, $cstring );
    397411
    398412    echo '<div class="updated"><p><strong>'.__('Settings saved.', 'faster-image-insert').'</strong></p></div>'; 
     
    410424    delete_option( $backcompat );
    411425    delete_option( $plugindebug );
     426    delete_option( $customstring );
    412427
    413428    $iframe = get_option( $load_iframe );
     
    418433    $caption = get_option( $no_caption );
    419434    $debug = get_option( $plugindebug );
     435    $cstring = get_option( $customstring );
    420436
    421437    echo '<div class="updated"><p><strong>'.__('Settings deleted.', 'faster-image-insert').'</strong></p></div>'; 
     
    438454   
    439455    <tr valign="top">
    440       <th scope="row"><?php _e("Load HTML upload form instead of FLASH upload form ?", 'faster-image-insert' ); ?></th>
     456      <th scope="row"><?php _e("Load HTML submit form instead of FLASH uploader ?", 'faster-image-insert' ); ?></th>
    441457      <td><label for="<?php echo $upload_form; ?>"><input type="checkbox" name="<?php echo $upload_form; ?>" id="<?php echo $upload_form; ?>" value="selected" <?php if($flash) echo 'checked="checked"' ?> /> <?php _e("Enable this if you're having trouble with flash uploader.", 'faster-image-insert' ); ?></label></td>
    442458    </tr>
     
    446462      <td><label for="<?php echo $image_line; ?>"><input type="checkbox" name="<?php echo $image_line; ?>" id="<?php echo $image_line; ?>" value="selected" <?php if($image) echo 'checked="checked"' ?> /> <?php _e("Enable this if you just want to insert a serial of thumbnails without newlines.", 'faster-image-insert' ); ?></label></td>
    447463    </tr>
     464   
     465    <tr valign="top">
     466      <th scope="row"><?php _e("Set custrom string", 'faster-image-insert' ); ?></th>
     467      <td><label for="<?php echo $customstring; ?>"><input type="text" name="<?php echo $customstring; ?>" id="<?php echo $customstring; ?>" value="<?php echo get_option( $customstring ); ?>" size="20" /> <?php _e("Edit this to change the custom string inserted between images; defaults to newline", 'faster-image-insert' ); ?></label></td>
     468    </tr>
    448469
    449470    <tr valign="top">
    450471      <th scope="row"><?php _e("Number of separators between each image", 'faster-image-insert' ); ?></th>
    451       <td><label for="<?php echo $line_number; ?>"><input type="text" name="<?php echo $line_number; ?>" id="<?php echo $line_number; ?>" value="<?php echo get_option( $line_number ); ?>" size="10"> <?php _e("Depends on previous option, it either means blank line or blank space. Default is 4.", 'faster-image-insert' ); ?></label></td>
     472      <td><label for="<?php echo $line_number; ?>"><input type="text" name="<?php echo $line_number; ?>" id="<?php echo $line_number; ?>" value="<?php echo get_option( $line_number ); ?>" size="10" /> <?php _e("Depends on previous option; it either means blank line or blank space. Default is 4.", 'faster-image-insert' ); ?></label></td>
    452473    </tr>
    453474   
  • faster-image-insert/trunk/languages/faster-image-insert-zh_CN.po

    r160726 r161131  
    88"Project-Id-Version: PACKAGE VERSION\n"
    99"Report-Msgid-Bugs-To: http://wordpress.org/tag/faster-image-insert\n"
    10 "POT-Creation-Date: 2009-10-05 16:23+0000\n"
    11 "PO-Revision-Date: 2009-10-06 00:42+0800\n"
     10"POT-Creation-Date: 2009-10-07 04:56+0000\n"
     11"PO-Revision-Date: 2009-10-07 13:28+0800\n"
    1212"Last-Translator: David Frank <[email protected]>\n"
    1313"Language-Team: LANGUAGE <[email protected]>\n"
     
    1818#: faster-image-insert.php:52
    1919#: faster-image-insert.php:63
    20 #: faster-image-insert.php:84
    21 msgid "Please manually save this draft before uploading any images."
    22 msgstr "请先手动保存本文。"
    23 
    24 #: faster-image-insert.php:132
     20#: faster-image-insert.php:93
     21msgid "Click here to reload after autosave. Or manually save the draft."
     22msgstr "请在自动保存之后点击这里刷新。或手动保存文章。"
     23
     24#: faster-image-insert.php:141
    2525msgid "(Quick Links)"
    2626msgstr "(快速链接)"
    2727
    28 #: faster-image-insert.php:133
     28#: faster-image-insert.php:142
    2929msgid "Enter a word to look up:"
    3030msgstr "输入要查找的关键字:"
    3131
    32 #: faster-image-insert.php:134
     32#: faster-image-insert.php:143
    3333msgid "Dictionary lookup"
    3434msgstr "目录查找"
    3535
    36 #: faster-image-insert.php:135
     36#: faster-image-insert.php:144
    3737msgid "lookup"
    3838msgstr "查找"
    3939
    40 #: faster-image-insert.php:136
     40#: faster-image-insert.php:145
    4141msgid "Close all open tags"
    4242msgstr "闭合所有开放的标签"
    4343
    44 #: faster-image-insert.php:137
     44#: faster-image-insert.php:146
    4545msgid "close tags"
    4646msgstr "闭合标签"
    4747
    48 #: faster-image-insert.php:138
     48#: faster-image-insert.php:147
    4949msgid "Enter the URL"
    5050msgstr "输入 URL"
    5151
    52 #: faster-image-insert.php:139
     52#: faster-image-insert.php:148
    5353msgid "Enter the URL of the image"
    5454msgstr "输入图片 URL"
    5555
    56 #: faster-image-insert.php:140
     56#: faster-image-insert.php:149
    5757msgid "Enter a description of the image"
    5858msgstr "输入图片描述"
    5959
    60 #: faster-image-insert.php:151
     60#: faster-image-insert.php:160
    6161msgid "Select items you want to insert"
    6262msgstr "选择你需要插入的项目"
    6363
    64 #: faster-image-insert.php:155
     64#: faster-image-insert.php:164
    6565msgid "Insert selected images"
    6666msgstr "插入选中图片"
    6767
    68 #: faster-image-insert.php:156
     68#: faster-image-insert.php:165
    6969msgid "Invert selection"
    7070msgstr "逆向选择"
    7171
    72 #: faster-image-insert.php:159
     72#: faster-image-insert.php:168
    7373msgid "Reversed ordering"
    7474msgstr "反向排序"
    7575
    76 #: faster-image-insert.php:162
     76#: faster-image-insert.php:171
    7777msgid "Toggle items"
    7878msgstr "展开条目"
    7979
    80 #: faster-image-insert.php:202
     80#: faster-image-insert.php:211
    8181msgid "Mass Image Edit"
    8282msgstr "批量图片处理"
    8383
    84 #: faster-image-insert.php:204
     84#: faster-image-insert.php:213
    8585msgid "Apply changes"
    8686msgstr "执行替换"
    8787
    88 #: faster-image-insert.php:204
     88#: faster-image-insert.php:213
    8989msgid "Press \"Save all changes\" to save. Only Title/Captions can be permanently saved."
    9090msgstr "请点击“保存所有更改”按钮;只有标题与注脚可以永久保存"
    9191
    92 #: faster-image-insert.php:206
     92#: faster-image-insert.php:215
    9393msgid "Image Titles"
    9494msgstr "图片标题"
    9595
    96 #: faster-image-insert.php:207
     96#: faster-image-insert.php:216
    9797msgid "Image Captions / Alt-Texts"
    9898msgstr "图片注释"
    9999
    100 #: faster-image-insert.php:208
     100#: faster-image-insert.php:217
    101101msgid "Image Alignment"
    102102msgstr "图片对齐"
    103103
    104 #: faster-image-insert.php:209
     104#: faster-image-insert.php:218
    105105msgid "Image Sizes"
    106106msgstr "图片大小"
    107107
    108 #: faster-image-insert.php:213
     108#: faster-image-insert.php:222
    109109msgid "None"
    110110msgstr "无"
    111111
    112 #: faster-image-insert.php:213
     112#: faster-image-insert.php:222
    113113msgid "Left"
    114114msgstr "居左"
    115115
    116 #: faster-image-insert.php:213
     116#: faster-image-insert.php:222
    117117msgid "Center"
    118118msgstr "居中"
    119119
    120 #: faster-image-insert.php:213
     120#: faster-image-insert.php:222
    121121msgid "Right"
    122122msgstr "居右"
    123123
    124 #: faster-image-insert.php:214
     124#: faster-image-insert.php:223
    125125msgid "Thumbnail"
    126126msgstr "缩略图"
    127127
    128 #: faster-image-insert.php:214
     128#: faster-image-insert.php:223
    129129msgid "Medium"
    130130msgstr "预览图"
    131131
    132 #: faster-image-insert.php:214
     132#: faster-image-insert.php:223
    133133msgid "Large"
    134134msgstr "大图"
    135135
    136 #: faster-image-insert.php:214
     136#: faster-image-insert.php:223
    137137msgid "Full size"
    138138msgstr "原图"
    139139
    140 #: faster-image-insert.php:343
    141 #: faster-image-insert.php:417
     140#: faster-image-insert.php:352
     141#: faster-image-insert.php:426
    142142msgid "Faster Image Insert - User Options"
    143143msgstr "Faster Image Insert - 用户选项"
    144144
    145 #: faster-image-insert.php:389
     145#: faster-image-insert.php:398
    146146msgid "Settings saved."
    147147msgstr "设定已保存"
    148148
    149 #: faster-image-insert.php:412
     149#: faster-image-insert.php:421
    150150msgid "Settings deleted."
    151151msgstr "设定已删除"
    152152
    153 #: faster-image-insert.php:418
     153#: faster-image-insert.php:427
    154154msgid "Updates your settings here"
    155155msgstr "在此更新本插件的设定"
    156156
    157 #: faster-image-insert.php:426
     157#: faster-image-insert.php:435
    158158msgid "Load media manager WITHOUT jQuery ?"
    159159msgstr "不使用jQuery读取媒体管理器"
    160160
    161 #: faster-image-insert.php:427
     161#: faster-image-insert.php:436
    162162msgid "Enable this if you're having trouble getting media manager to load in editing interface (ie. blank metabox). Needed for WordPress 2.6"
    163163msgstr "如果你在发布文章的页面中看不到插入的媒体管理器,尝试启动本选项;WordPress 2.6需要。"
    164164
    165 #: faster-image-insert.php:431
     165#: faster-image-insert.php:440
    166166msgid "Load HTML upload form instead of FLASH upload form ?"
    167167msgstr "默认使用HTML上传器代替Flash上传器"
    168168
    169 #: faster-image-insert.php:432
     169#: faster-image-insert.php:441
    170170msgid "Enable this if you're having trouble with flash uploader."
    171171msgstr "如果你的浏览器不兼容WordPress的Flash上传器,尝试启用本选项"
    172172
    173 #: faster-image-insert.php:436
     173#: faster-image-insert.php:445
    174174msgid "Insert multiple images in ONE line ?"
    175175msgstr "批量插入图片时不换行"
    176176
    177 #: faster-image-insert.php:437
     177#: faster-image-insert.php:446
    178178msgid "Enable this if you just want to insert a serial of thumbnails without newlines."
    179179msgstr "当你需要插入一系列的缩略图,启用本选项"
    180180
    181 #: faster-image-insert.php:441
     181#: faster-image-insert.php:450
    182182msgid "Number of separators between each image"
    183183msgstr "分隔图片代码的符号数量"
    184184
    185 #: faster-image-insert.php:442
     185#: faster-image-insert.php:451
    186186msgid "Depends on previous option, it either means blank line or blank space. Default is 4."
    187187msgstr "基于你前一项的选择,本项目可指图片间的空行或空格数量。默认为4"
    188188
    189 #: faster-image-insert.php:446
     189#: faster-image-insert.php:455
    190190msgid "Disable Captions ?"
    191191msgstr "关闭[Caption]功能"
    192192
    193 #: faster-image-insert.php:447
     193#: faster-image-insert.php:456
    194194msgid "WordPress use caption as alternative text, but it also appends [caption] if set manually, Enable this if you want to set alternative text without appending caption. works in WordPress 2.6.1 or above."
    195195msgstr "WordPress默认使用用户设定的Caption为图片的替换文字,如果你需要修改替换文字,又不想插入[Caption],请启用本项目。WordPress 2.6.1以上可用。"
    196196
    197 #: faster-image-insert.php:451
     197#: faster-image-insert.php:460
    198198msgid "Enable mass-editing ?"
    199199msgstr "允许图片批量处理"
    200200
    201 #: faster-image-insert.php:452
     201#: faster-image-insert.php:461
    202202msgid "Enable this if you want to use the mass-edit function, works well with WordPress 2.7+"
    203203msgstr "勾选本项目以启用图片标题批量修改。"
    204204
    205 #: faster-image-insert.php:456
     205#: faster-image-insert.php:465
    206206msgid "Enable debug mode ?"
    207207msgstr "启用Debug模式"
    208208
    209 #: faster-image-insert.php:457
     209#: faster-image-insert.php:466
    210210msgid "Enable this option to remove registered javascript for this plugin, FOR DEBUGGING."
    211211msgstr "启用这个模式将去除插件注册的所有javascript;仅用于Debug。"
    212212
    213 #: faster-image-insert.php:463
     213#: faster-image-insert.php:472
    214214msgid "Save Changes"
    215215msgstr "保存设定"
    216216
    217 #: faster-image-insert.php:464
     217#: faster-image-insert.php:473
    218218msgid "Uninstall"
    219219msgstr "移除设定"
     
    239239msgstr "http://blog.ticktag.org/"
    240240
     241#~ msgid "Please manually save this draft before uploading any images."
     242#~ msgstr "请先手动保存本文。"
    241243#~ msgid "Disable backward-compatible mode ?"
    242244#~ msgstr "关闭兼容模式"
  • faster-image-insert/trunk/languages/faster-image-insert.pot

    r160718 r161131  
    99"Project-Id-Version: PACKAGE VERSION\n"
    1010"Report-Msgid-Bugs-To: http://wordpress.org/tag/faster-image-insert\n"
    11 "POT-Creation-Date: 2009-10-05 16:23+0000\n"
     11"POT-Creation-Date: 2009-10-07 04:56+0000\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1818
    1919#: faster-image-insert.php:52 faster-image-insert.php:63
    20 #: faster-image-insert.php:84
    21 msgid "Please manually save this draft before uploading any images."
    22 msgstr ""
    23 
    24 #: faster-image-insert.php:132
     20#: faster-image-insert.php:93
     21msgid "Click here to reload after autosave. Or manually save the draft."
     22msgstr ""
     23
     24#: faster-image-insert.php:141
    2525msgid "(Quick Links)"
    2626msgstr ""
    2727
    28 #: faster-image-insert.php:133
     28#: faster-image-insert.php:142
    2929msgid "Enter a word to look up:"
    3030msgstr ""
    3131
    32 #: faster-image-insert.php:134
     32#: faster-image-insert.php:143
    3333msgid "Dictionary lookup"
    3434msgstr ""
    3535
    36 #: faster-image-insert.php:135
     36#: faster-image-insert.php:144
    3737msgid "lookup"
    3838msgstr ""
    3939
    40 #: faster-image-insert.php:136
     40#: faster-image-insert.php:145
    4141msgid "Close all open tags"
    4242msgstr ""
    4343
    44 #: faster-image-insert.php:137
     44#: faster-image-insert.php:146
    4545msgid "close tags"
    4646msgstr ""
    4747
    48 #: faster-image-insert.php:138
     48#: faster-image-insert.php:147
    4949msgid "Enter the URL"
    5050msgstr ""
    5151
    52 #: faster-image-insert.php:139
     52#: faster-image-insert.php:148
    5353msgid "Enter the URL of the image"
    5454msgstr ""
    5555
    56 #: faster-image-insert.php:140
     56#: faster-image-insert.php:149
    5757msgid "Enter a description of the image"
    5858msgstr ""
    5959
    60 #: faster-image-insert.php:151
     60#: faster-image-insert.php:160
    6161msgid "Select items you want to insert"
    6262msgstr ""
    6363
    64 #: faster-image-insert.php:155
     64#: faster-image-insert.php:164
    6565msgid "Insert selected images"
    6666msgstr ""
    6767
    68 #: faster-image-insert.php:156
     68#: faster-image-insert.php:165
    6969msgid "Invert selection"
    7070msgstr ""
    7171
    72 #: faster-image-insert.php:159
     72#: faster-image-insert.php:168
    7373msgid "Reversed ordering"
    7474msgstr ""
    7575
    76 #: faster-image-insert.php:162
     76#: faster-image-insert.php:171
    7777msgid "Toggle items"
    7878msgstr ""
    7979
    80 #: faster-image-insert.php:202
     80#: faster-image-insert.php:211
    8181msgid "Mass Image Edit"
    8282msgstr ""
    8383
    84 #: faster-image-insert.php:204
     84#: faster-image-insert.php:213
    8585msgid "Apply changes"
    8686msgstr ""
    8787
    88 #: faster-image-insert.php:204
     88#: faster-image-insert.php:213
    8989msgid ""
    9090"Press \"Save all changes\" to save. Only Title/Captions can be permanently "
     
    9292msgstr ""
    9393
    94 #: faster-image-insert.php:206
     94#: faster-image-insert.php:215
    9595msgid "Image Titles"
    9696msgstr ""
    9797
    98 #: faster-image-insert.php:207
     98#: faster-image-insert.php:216
    9999msgid "Image Captions / Alt-Texts"
    100100msgstr ""
    101101
    102 #: faster-image-insert.php:208
     102#: faster-image-insert.php:217
    103103msgid "Image Alignment"
    104104msgstr ""
    105105
    106 #: faster-image-insert.php:209
     106#: faster-image-insert.php:218
    107107msgid "Image Sizes"
    108108msgstr ""
    109109
    110 #: faster-image-insert.php:213
     110#: faster-image-insert.php:222
    111111msgid "None"
    112112msgstr ""
    113113
    114 #: faster-image-insert.php:213
     114#: faster-image-insert.php:222
    115115msgid "Left"
    116116msgstr ""
    117117
    118 #: faster-image-insert.php:213
     118#: faster-image-insert.php:222
    119119msgid "Center"
    120120msgstr ""
    121121
    122 #: faster-image-insert.php:213
     122#: faster-image-insert.php:222
    123123msgid "Right"
    124124msgstr ""
    125125
    126 #: faster-image-insert.php:214
     126#: faster-image-insert.php:223
    127127msgid "Thumbnail"
    128128msgstr ""
    129129
    130 #: faster-image-insert.php:214
     130#: faster-image-insert.php:223
    131131msgid "Medium"
    132132msgstr ""
    133133
    134 #: faster-image-insert.php:214
     134#: faster-image-insert.php:223
    135135msgid "Large"
    136136msgstr ""
    137137
    138 #: faster-image-insert.php:214
     138#: faster-image-insert.php:223
    139139msgid "Full size"
    140140msgstr ""
    141141
    142 #: faster-image-insert.php:343 faster-image-insert.php:417
     142#: faster-image-insert.php:352 faster-image-insert.php:426
    143143msgid "Faster Image Insert - User Options"
    144144msgstr ""
    145145
    146 #: faster-image-insert.php:389
     146#: faster-image-insert.php:398
    147147msgid "Settings saved."
    148148msgstr ""
    149149
    150 #: faster-image-insert.php:412
     150#: faster-image-insert.php:421
    151151msgid "Settings deleted."
    152152msgstr ""
    153153
    154 #: faster-image-insert.php:418
     154#: faster-image-insert.php:427
    155155msgid "Updates your settings here"
    156156msgstr ""
    157157
    158 #: faster-image-insert.php:426
     158#: faster-image-insert.php:435
    159159msgid "Load media manager WITHOUT jQuery ?"
    160160msgstr ""
    161161
    162 #: faster-image-insert.php:427
     162#: faster-image-insert.php:436
    163163msgid ""
    164164"Enable this if you're having trouble getting media manager to load in "
     
    166166msgstr ""
    167167
    168 #: faster-image-insert.php:431
     168#: faster-image-insert.php:440
    169169msgid "Load HTML upload form instead of FLASH upload form ?"
    170170msgstr ""
    171171
    172 #: faster-image-insert.php:432
     172#: faster-image-insert.php:441
    173173msgid "Enable this if you're having trouble with flash uploader."
    174174msgstr ""
    175175
    176 #: faster-image-insert.php:436
     176#: faster-image-insert.php:445
    177177msgid "Insert multiple images in ONE line ?"
    178178msgstr ""
    179179
    180 #: faster-image-insert.php:437
     180#: faster-image-insert.php:446
    181181msgid ""
    182182"Enable this if you just want to insert a serial of thumbnails without "
     
    184184msgstr ""
    185185
    186 #: faster-image-insert.php:441
     186#: faster-image-insert.php:450
    187187msgid "Number of separators between each image"
    188188msgstr ""
    189189
    190 #: faster-image-insert.php:442
     190#: faster-image-insert.php:451
    191191msgid ""
    192192"Depends on previous option, it either means blank line or blank space. "
     
    194194msgstr ""
    195195
    196 #: faster-image-insert.php:446
     196#: faster-image-insert.php:455
    197197msgid "Disable Captions ?"
    198198msgstr ""
    199199
    200 #: faster-image-insert.php:447
     200#: faster-image-insert.php:456
    201201msgid ""
    202202"WordPress use caption as alternative text, but it also appends [caption] if "
     
    205205msgstr ""
    206206
    207 #: faster-image-insert.php:451
     207#: faster-image-insert.php:460
    208208msgid "Enable mass-editing ?"
    209209msgstr ""
    210210
    211 #: faster-image-insert.php:452
     211#: faster-image-insert.php:461
    212212msgid ""
    213213"Enable this if you want to use the mass-edit function, works well with "
     
    215215msgstr ""
    216216
    217 #: faster-image-insert.php:456
     217#: faster-image-insert.php:465
    218218msgid "Enable debug mode ?"
    219219msgstr ""
    220220
    221 #: faster-image-insert.php:457
     221#: faster-image-insert.php:466
    222222msgid ""
    223223"Enable this option to remove registered javascript for this plugin, FOR "
     
    225225msgstr ""
    226226
    227 #: faster-image-insert.php:463
     227#: faster-image-insert.php:472
    228228msgid "Save Changes"
    229229msgstr ""
    230230
    231 #: faster-image-insert.php:464
     231#: faster-image-insert.php:473
    232232msgid "Uninstall"
    233233msgstr ""
  • faster-image-insert/trunk/readme.txt

    r161121 r161131  
    9191
    9292= 1.5.1 =
    93 * Updates method to reload the meta-box without manually saving the draft.
     93* Provides a better method for reloading the meta-box;
     94* New Option for global custom string (inserted between images on multiple inserts);
     95* New Translation;
    9496
    9597= 1.5.0 =
Note: See TracChangeset for help on using the changeset viewer.