Changeset 1001285
- Timestamp:
- 10/03/2014 02:21:55 PM (11 years ago)
- Location:
- custom-nextpage/trunk
- Files:
-
- 7 edited
-
css/custom-nextpage-style.css (modified) (1 diff)
-
custom-nextpage.php (modified) (7 diffs)
-
includes/class-admin-menu.php (modified) (17 diffs)
-
languages/custom-nextpage-ja.mo (modified) (previous)
-
languages/custom-nextpage-ja.po (modified) (2 diffs)
-
languages/custom-nextpage.pot (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-nextpage/trunk/css/custom-nextpage-style.css
r991536 r1001285 1 @charset "UTF-8";2 1 .page-link-box { 3 2 text-align: center; -
custom-nextpage/trunk/custom-nextpage.php
r1000296 r1001285 5 5 Description: MultiPage is a customizable plugin. Can any title on the page. 6 6 Author: Webnist 7 Version: 0.9.107 Version: 1.0.2 8 8 Author URI: http://profiles.wordpress.org/webnist 9 9 License: GPLv2 or later … … 40 40 $this->domain = $data['domain']; 41 41 $this->langs = $data['langs']; 42 $this->css = file_get_contents( CUSTOM_NEXTPAGE_URL . '/css/custom-nextpage-style.css' ); 43 42 44 $this->default_options = array( 43 45 'filter' => '', … … 50 52 'nextpagelink' => __( '>', 'custom-nextpage' ), 51 53 'previouspagelink' => __( '<', 'custom-nextpage' ), 54 'styletype' => 0, 55 'style' => $this->css, 52 56 ); 53 $this->options = get_option( 'custom-next-page', $this->default_options ); 57 $this->options = get_option( 'custom-next-page', $this->default_options ); 58 $this->filter = $this->options['filter'] ? $this->options['filter'] : ''; 59 $this->beforetext = $this->options['beforetext'] ? $this->options['beforetext'] : ''; 60 $this->aftertext = $this->options['aftertext'] ? $this->options['aftertext'] : ''; 61 $this->show_boundary = $this->options['show_boundary'] ? $this->options['show_boundary'] : 1; 62 $this->show_adjacent = $this->options['show_adjacent'] ? $this->options['show_adjacent'] : 1; 63 $this->firstpagelink = $this->options['firstpagelink'] ? $this->options['firstpagelink'] : __( '«', 'custom-nextpage' ); 64 $this->lastpagelink = $this->options['lastpagelink'] ? $this->options['lastpagelink'] : __( '»', 'custom-nextpage' ); 65 $this->nextpagelink = $this->options['nextpagelink'] ? $this->options['nextpagelink'] : __( '>', 'custom-nextpage' ); 66 $this->previouspagelink = $this->options['previouspagelink'] ? $this->options['previouspagelink'] : __( '<', 'custom-nextpage' ); 67 $this->styletype = $this->options['styletype'] ? $this->options['styletype'] : 0; 68 $this->style = $this->options['style'] ? $this->options['style'] : $this->css; 54 69 } 55 70 } … … 62 77 if ( !is_admin() ) { 63 78 add_action( 'loop_start', array( &$this, 'change_nextpage' ) ); 64 if ( $this-> options['filter']=== 1 )79 if ( $this->filter === 1 ) 65 80 add_filter( 'wp_link_pages', array( &$this, 'wp_link_pages' ) ); 66 81 add_action( 'wp_enqueue_scripts', array( &$this, 'wp_enqueue_scripts' ) ); … … 107 122 preg_match( $pattern, $page_title, $matches); 108 123 $title = isset( $matches[1] ) ? esc_html( $matches[1] ) : ''; 109 $before = apply_filters( 'custom_next_page_beforetext', $this-> options['beforetext']);110 $after = apply_filters( 'custom_next_page_aftertext', $this-> options['aftertext']);124 $before = apply_filters( 'custom_next_page_beforetext', $this->beforetext ); 125 $after = apply_filters( 'custom_next_page_aftertext', $this->aftertext ); 111 126 $output .= '<p class="custom-page-links">' ."\n"; 112 127 if ( $page_count <= $numpages ) { … … 124 139 $output = ''; 125 140 if ( $multipage ) { 126 $show_boundary = esc_html( apply_filters( 'custom_next_page_show_boundary', $this-> options['show_boundary']) );127 $show_adjacent = esc_html( apply_filters( 'custom_next_page_show_adjacent', $this-> options['show_adjacent']) );128 $firstpagelink = esc_html( apply_filters( 'custom_next_page_firstpagelink', $this-> options['firstpagelink']) );129 $lastpagelink = esc_html( apply_filters( 'custom_next_page_lastpagelink', $this-> options['lastpagelink']) );130 $nextpagelink = esc_html( apply_filters( 'custom_next_page_nextpagelink', $this-> options['nextpagelink']) );131 $previouspagelink = esc_html( apply_filters( 'custom_next_page_previouspagelink', $this-> options['previouspagelink']) );141 $show_boundary = esc_html( apply_filters( 'custom_next_page_show_boundary', $this->show_boundary ) ); 142 $show_adjacent = esc_html( apply_filters( 'custom_next_page_show_adjacent', $this->show_adjacent ) ); 143 $firstpagelink = esc_html( apply_filters( 'custom_next_page_firstpagelink', $this->firstpagelink ) ); 144 $lastpagelink = esc_html( apply_filters( 'custom_next_page_lastpagelink', $this->lastpagelink ) ); 145 $nextpagelink = esc_html( apply_filters( 'custom_next_page_nextpagelink', $this->nextpagelink ) ); 146 $previouspagelink = esc_html( apply_filters( 'custom_next_page_previouspagelink', $this->previouspagelink ) ); 132 147 $id = get_the_ID(); 133 148 $next_page_title = self::next_page_title( $id ); … … 171 186 172 187 public function wp_enqueue_scripts() { 173 wp_enqueue_style( 'custom-nextpage-style', CUSTOM_NEXTPAGE_URL . '/css/custom-nextpage-style.css', array(), $this->version ); 174 } 188 if ( 0 == $this->styletype ) { 189 wp_enqueue_style( 'custom-nextpage-style', CUSTOM_NEXTPAGE_URL . '/css/custom-nextpage-style.css', array(), $this->version ); 190 } elseif ( 1 == $this->styletype ) { 191 $print_html = sprintf( '<style type="text/css" id="custom-nextpage-style">' . "\n" 192 . '%s' 193 . "\n" . '</style>' . "\n", 194 $this->style 195 ); 196 echo $print_html; 197 } 198 } 199 175 200 public function shortcode() { 176 201 return; -
custom-nextpage/trunk/includes/class-admin-menu.php
r995884 r1001285 6 6 7 7 add_action( 'admin_menu', array( &$this, 'admin_menu' ) ); 8 add_action( 'admin_enqueue_scripts', array( &$this, 'admin_enqueue_scripts' ) ); 8 9 add_action( 'admin_init', array( &$this, 'add_general_custom_fields' ) ); 9 10 add_filter( 'admin_init', array( &$this, 'add_custom_whitelist_options_fields' ) ); 10 } 11 add_action( 'wp_ajax_reset_css', array( $this, 'reset_css') ); 12 } 13 11 14 public function admin_menu() { 12 15 add_options_page( __( 'Custom Nextpage', $this->domain ), __( 'Custom Nextpage', $this->domain ), 'create_users', $this->plugin_basename, array( &$this, 'add_admin_edit_page' ) ); 13 16 } 14 17 18 public function admin_enqueue_scripts( $hook ) { 19 20 if ( stristr( $hook, $this->plugin_basename ) ) { 21 wp_enqueue_style( 'options-customnextpage', CUSTOM_NEXTPAGE_URL . '/css/options.css', array(), $this->version ); 22 wp_enqueue_style( 'codemirror', CUSTOM_NEXTPAGE_URL . '/includes/codemirror/lib/codemirror.css', array(), $this->version ); 23 wp_enqueue_style( 'codemirror-show-hint', CUSTOM_NEXTPAGE_URL . '/includes/codemirror/addon/hint/show-hint.css', array(), $this->version ); 24 wp_enqueue_style( 'codemirror-style', CUSTOM_NEXTPAGE_URL . '/css/codemirror-style.css', array(), $this->version ); 25 26 wp_enqueue_script( 'codemirror', CUSTOM_NEXTPAGE_URL . '/includes/codemirror/lib/codemirror.js', array(), $this->version, true ); 27 wp_enqueue_script( 'codemirror-show-hint', CUSTOM_NEXTPAGE_URL . '/includes/codemirror/addon/hint/show-hint.js', array('codemirror'), $this->version, true ); 28 wp_enqueue_script( 'codemirror-css-hint', CUSTOM_NEXTPAGE_URL . '/includes/codemirror/addon/hint/css-hint.js', array('codemirror'), $this->version, true ); 29 wp_enqueue_script( 'codemirror-mode-css', CUSTOM_NEXTPAGE_URL . '/includes/codemirror/mode/css/css.js', array('codemirror'), $this->version, true ); 30 wp_enqueue_script( 'options-customnextpage', CUSTOM_NEXTPAGE_URL . '/js/options.js', array('jquery'), $this->version, true ); 31 32 wp_localize_script( 33 'options-customnextpage', 34 'resetCss', 35 array( 36 'url' => admin_url( 'admin-ajax.php' ), 37 'security' => wp_create_nonce( 'reset-css' ) 38 ) 39 ); 40 } 41 } 42 15 43 public function add_admin_edit_page() { 16 44 $title = __( 'Set Custom Nextpage', $this->domain ); 17 echo '<div class="wrap" >' . "\n";45 echo '<div class="wrap" id="custom-next-page-options">' . "\n"; 18 46 screen_icon(); 19 47 echo '<h2>' . esc_html( $title ) . '</h2>' . "\n"; … … 21 49 settings_fields( $this->plugin_basename ); 22 50 do_settings_sections( $this->plugin_basename ); 51 echo '<div class="submit">' . "\n"; 23 52 submit_button(); 24 53 if ( get_option( 'custom-next-page-previouspagelink' ) ) { … … 28 57 echo '<h2>' . esc_html__( 'Setting initialization', $this->domain ) . '</h2>' . "\n"; 29 58 submit_button( __( 'Initialization', $this->domain ), 'primary', 'custom-next-page-initialization' ); 59 echo '</div>' . "\n"; 30 60 echo '</form>' . "\n"; 31 61 echo '</div>' . "\n"; … … 50 80 array( 51 81 'name' => 'custom-next-page[filter]', 52 'value' => $this-> options['filter'],82 'value' => $this->filter, 53 83 ) 54 84 ); … … 62 92 array( 63 93 'name' => 'custom-next-page[beforetext]', 64 'value' => $this-> options['beforetext'],94 'value' => $this->beforetext, 65 95 ) 66 96 ); … … 73 103 array( 74 104 'name' => 'custom-next-page[aftertext]', 75 'value' => $this-> options['aftertext'],105 'value' => $this->aftertext, 76 106 ) 77 107 ); … … 85 115 array( 86 116 'name' => 'custom-next-page[show_boundary]', 87 'value' => $this-> options['show_boundary'],117 'value' => $this->show_boundary, 88 118 ) 89 119 ); … … 97 127 array( 98 128 'name' => 'custom-next-page[show_adjacent]', 99 'value' => $this-> options['show_adjacent'],129 'value' => $this->show_adjacent, 100 130 ) 101 131 ); … … 109 139 array( 110 140 'name' => 'custom-next-page[firstpagelink]', 111 'value' => $this-> options['firstpagelink'],141 'value' => $this->firstpagelink, 112 142 ) 113 143 ); … … 121 151 array( 122 152 'name' => 'custom-next-page[lastpagelink]', 123 'value' => $this-> options['lastpagelink'],153 'value' => $this->lastpagelink, 124 154 ) 125 155 ); … … 133 163 array( 134 164 'name' => 'custom-next-page[nextpagelink]', 135 'value' => $this-> options['nextpagelink'],165 'value' => $this->nextpagelink, 136 166 ) 137 167 ); … … 145 175 array( 146 176 'name' => 'custom-next-page[previouspagelink]', 147 'value' => $this->options['previouspagelink'], 177 'value' => $this->previouspagelink, 178 ) 179 ); 180 181 add_settings_section( 182 'style', 183 __( 'Style', $this->domain ), 184 '', 185 $this->domain 186 ); 187 188 add_settings_field( 189 'custom-next-page-style-type', 190 __( 'Select Style type', $this->domain ), 191 array( &$this, 'select_field' ), 192 $this->plugin_basename , 193 'style', 194 array( 195 'name' => 'custom-next-page[styletype]', 196 'option' => array( 197 '0' => __( 'Default', $this->domain ), 198 '1' => __( 'Style Edit', $this->domain ), 199 '2' => __( 'Disable', $this->domain ), 200 ), 201 'id' => 'styletype', 202 'value' => $this->styletype, 203 ) 204 ); 205 add_settings_field( 206 'custom-next-page-style', 207 __( 'Style Edit', $this->domain ), 208 array( &$this, 'textarea_field' ), 209 $this->plugin_basename , 210 'style', 211 array( 212 'id' => 'style-editor', 213 'name' => 'custom-next-page[style]', 214 'value' => $this->style, 215 'desc' => __( 'Press ctrl-space to activate autocompletion. <span class="button button-primary" id="reset-css">Reset</span>', $this->domain ), 148 216 ) 149 217 ); … … 152 220 public function text_field( $args ) { 153 221 extract( $args ); 222 223 $id = ! empty( $id ) ? $id : $name; 154 224 $desc = ! empty( $desc ) ? $desc : ''; 155 $output = '<input type="text" name="' . $name .'" id="' . $ name .'" value="' . $value .'" />' . "\n";225 $output = '<input type="text" name="' . $name .'" id="' . $id .'" class="regular-text" value="' . $value .'" />' . "\n"; 156 226 if ( $desc ) 157 227 $output .= '<p class="description">' . $desc . '</p>' . "\n"; … … 162 232 public function textarea_field( $args ) { 163 233 extract( $args ); 234 235 $id = ! empty( $id ) ? $id : $name; 164 236 $desc = ! empty( $desc ) ? $desc : ''; 165 $output = '<textarea name="' . $name .'" rows="10" cols="50" id="' . $ name.'" class="large-text code">' . $value . '</textarea>' . "\n";237 $output = '<textarea name="' . $name .'" rows="10" cols="50" id="' . $id .'" class="large-text code">' . $value . '</textarea>' . "\n"; 166 238 if ( $desc ) 167 239 $output .= '<p class="description">' . $desc . '</p>' . "\n"; … … 171 243 public function check_field( $args ) { 172 244 extract( $args ); 245 246 $id = ! empty( $id ) ? $id : $name; 173 247 $desc = ! empty( $desc ) ? $desc : ''; 174 248 $output = '<label for="' . $name . '">' . "\n"; 175 $output .= '<input name="' . $name . '" type="checkbox" id="' . $ name. '" value="1"' . checked( $value, 1, false ) . '>' . "\n";249 $output .= '<input name="' . $name . '" type="checkbox" id="' . $id . '" value="1"' . checked( $value, 1, false ) . '>' . "\n"; 176 250 if ( $desc ) 177 251 $output .= $desc . "\n"; … … 179 253 180 254 echo $output; 255 } 256 257 public function select_field( $args ) { 258 extract( $args ); 259 260 $id = ! empty( $id ) ? $id : $name; 261 $desc = ! empty( $desc ) ? $desc : ''; 262 $multi = ! empty( $multi ) ? ' multiple' : ''; 263 $multi_selected = ! empty( $multi ) ? true : false; 264 $output = '<select name="' . $name . '" id="' . $id . '"' . $multi . '>' . "\n"; 265 foreach ( $option as $key => $val ) { 266 $output .= '<option value="' . $key . '"' . selected( $value, $key, $multi_selected ) . '>' . $val . '</option>' . "\n"; 267 } 268 $output .= '</select>' . "\n"; 269 if ( $desc ) 270 $output .= $desc . "\n"; 271 272 echo $output; 273 } 274 275 public function selected( $value = '', $val = '', $multi = false ) { 276 $select = ''; 277 if ( $multi ) { 278 279 $select = selected( true, in_array( $val, $value ), false ); 280 } else { 281 $select = selected( $value, $val, false ); 282 } 283 return $select; 284 } 285 286 public function reset_css() { 287 check_ajax_referer( 'reset-css', 'security' ); 288 $return = array( 289 'style' => $this->css 290 ); 291 wp_send_json( $return ); 181 292 } 182 293 … … 189 300 public function register_setting_check( $value ) { 190 301 $value['filter'] = (int) $value['filter']; 302 $value['style'] = preg_replace( '/(\<(.*)\>)/ism', '', esc_textarea( $value['style'] ) ); 303 191 304 return $value; 192 305 } -
custom-nextpage/trunk/languages/custom-nextpage-ja.po
r995884 r1001285 4 4 msgstr "" 5 5 "Project-Id-Version: Custom Nextpage 0.9.8\n" 6 "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/custom-nextpage\n" 7 "POT-Creation-Date: 2014-09-24 07:05:35+00:00\n" 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-nextpage\n" 7 "POT-Creation-Date: 2014-10-03 04:12:45+00:00\n" 8 "PO-Revision-Date: 2014-10-03 13:21+0900\n" 9 "Last-Translator: Webnist <webnist@webnist.org>\n" 10 "Language-Team: LANGUAGE <LL@li.org>\n" 11 "Language: ja\n" 8 12 "MIME-Version: 1.0\n" 9 13 "Content-Type: text/plain; charset=UTF-8\n" 10 14 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 2014-09-24 16:10+0900\n"12 "Last-Translator: Webnist <webnist@webnist.org>\n"13 "Language-Team: LANGUAGE <LL@li.org>\n"14 15 "X-Generator: Poedit 1.6.3\n" 15 16 "Plural-Forms: nplurals=1; plural=0;\n" 16 "Language: ja\n"17 17 18 #: custom-nextpage.php:48 includes/class-admin-menu.php:203 18 #: custom-nextpage.php:50 custom-nextpage.php:63 19 #: includes/class-admin-menu.php:316 19 20 msgid "«" 20 21 msgstr "»" 21 22 22 #: custom-nextpage.php:49 includes/class-admin-menu.php:202 23 #: custom-nextpage.php:51 custom-nextpage.php:64 24 #: includes/class-admin-menu.php:315 23 25 msgid "»" 24 26 msgstr "»" 25 27 26 #: custom-nextpage.php:5 028 #: custom-nextpage.php:52 custom-nextpage.php:65 27 29 msgid ">" 28 30 msgstr ">" 29 31 30 #: custom-nextpage.php:5 132 #: custom-nextpage.php:53 custom-nextpage.php:66 31 33 msgid "<" 32 34 msgstr "<" … … 45 47 46 48 #. Plugin Name of the plugin/theme 47 #: includes/class-admin-menu.php:1 249 #: includes/class-admin-menu.php:15 48 50 msgid "Custom Nextpage" 49 51 msgstr "カスタムネクストページ" 50 52 51 #: includes/class-admin-menu.php: 1653 #: includes/class-admin-menu.php:44 52 54 msgid "Set Custom Nextpage" 53 55 msgstr "Custom Nextpage 設定" 54 56 55 #: includes/class-admin-menu.php: 2557 #: includes/class-admin-menu.php:54 56 58 msgid "Convert to new options" 57 59 msgstr "新しいオプションに変換します。" 58 60 59 #: includes/class-admin-menu.php: 26 includes/class-admin-menu.php:19561 #: includes/class-admin-menu.php:55 includes/class-admin-menu.php:308 60 62 msgid "Convert" 61 63 msgstr "コンバート" 62 64 63 #: includes/class-admin-menu.php: 2865 #: includes/class-admin-menu.php:57 64 66 msgid "Setting initialization" 65 67 msgstr "設定の初期化" 66 68 67 #: includes/class-admin-menu.php: 29 includes/class-admin-menu.php:21669 #: includes/class-admin-menu.php:58 includes/class-admin-menu.php:329 68 70 msgid "Initialization" 69 71 msgstr "初期化" 70 72 71 #: includes/class-admin-menu.php: 3973 #: includes/class-admin-menu.php:69 72 74 msgid "General" 73 75 msgstr "基本設定" 74 76 75 #: includes/class-admin-menu.php: 4677 #: includes/class-admin-menu.php:76 76 78 msgid "Automatically replace the wp_link_pages." 77 79 msgstr "自動で wp_link_pages を置き換える。" 78 80 79 #: includes/class-admin-menu.php: 5881 #: includes/class-admin-menu.php:88 80 82 msgid "Before Text" 81 83 msgstr "タイトルナビゲーションの前に入れるテキスト。" 82 84 83 #: includes/class-admin-menu.php: 6985 #: includes/class-admin-menu.php:99 84 86 msgid "After Text" 85 87 msgstr "タイトルナビゲーションの後ろに入れるテキスト。" 86 88 87 #: includes/class-admin-menu.php: 8189 #: includes/class-admin-menu.php:111 88 90 msgid "The first and last page links displayed." 89 91 msgstr "最初と最後のリンクを表示する" 90 92 91 #: includes/class-admin-menu.php: 9393 #: includes/class-admin-menu.php:123 92 94 msgid "Next and previous page links to display." 93 95 msgstr "次と前のリンクを表示する" 94 96 95 #: includes/class-admin-menu.php:1 0597 #: includes/class-admin-menu.php:135 96 98 msgid "Text For First Page" 97 99 msgstr "最初のページリンクのテキスト" 98 100 99 #: includes/class-admin-menu.php:1 17101 #: includes/class-admin-menu.php:147 100 102 msgid "Text For Last Page" 101 103 msgstr "最後のページリンクのテキスト" 102 104 103 #: includes/class-admin-menu.php:1 29105 #: includes/class-admin-menu.php:159 104 106 msgid "Text For Next Page" 105 107 msgstr "次のページリンクのテキスト" 106 108 107 #: includes/class-admin-menu.php:1 41109 #: includes/class-admin-menu.php:171 108 110 msgid "Text For Previous Page" 109 111 msgstr "前のページリンクのテキスト" 112 113 #: includes/class-admin-menu.php:183 114 msgid "Style" 115 msgstr "スタイル" 116 117 #: includes/class-admin-menu.php:190 118 msgid "Select Style type" 119 msgstr "スタイルの選択" 120 121 #: includes/class-admin-menu.php:197 122 msgid "Default" 123 msgstr "デフォルト" 124 125 #: includes/class-admin-menu.php:198 includes/class-admin-menu.php:207 126 msgid "Style Edit" 127 msgstr "スタイル編集" 128 129 #: includes/class-admin-menu.php:199 130 msgid "Disable" 131 msgstr "無効化" 132 133 #: includes/class-admin-menu.php:215 134 msgid "" 135 "Press ctrl-space to activate autocompletion. <span class=\"button button-" 136 "primary\" id=\"reset-css\">Reset</span>" 137 msgstr "" 138 "ctrl-space で自動補完が表示されます。 <span class=\"button button-primary\" " 139 "id=\"reset-css\">CSSリセット</span>" 110 140 111 141 #: includes/tinymce/plugins/customnextpage/langs/langs.php:5 -
custom-nextpage/trunk/languages/custom-nextpage.pot
r995884 r1001285 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Custom Nextpage 0.9.8\n"6 "Report-Msgid-Bugs-To: http://wordpress.org/ support/plugin/custom-nextpage\n"7 "POT-Creation-Date: 2014- 09-24 07:05:35+00:00\n"5 "Project-Id-Version: Custom Nextpage 1.0.0\n" 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/custom-nextpage\n" 7 "POT-Creation-Date: 2014-10-03 04:12:45+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=UTF-8\n" … … 13 13 "Language-Team: LANGUAGE <LL@li.org>\n" 14 14 15 #: custom-nextpage.php:48 includes/class-admin-menu.php:203 15 #: custom-nextpage.php:50 custom-nextpage.php:63 16 #: includes/class-admin-menu.php:316 16 17 msgid "«" 17 18 msgstr "" 18 19 19 #: custom-nextpage.php:49 includes/class-admin-menu.php:202 20 #: custom-nextpage.php:51 custom-nextpage.php:64 21 #: includes/class-admin-menu.php:315 20 22 msgid "»" 21 23 msgstr "" 22 24 23 #: custom-nextpage.php:5 025 #: custom-nextpage.php:52 custom-nextpage.php:65 24 26 msgid ">" 25 27 msgstr "" 26 28 27 #: custom-nextpage.php:5 129 #: custom-nextpage.php:53 custom-nextpage.php:66 28 30 msgid "<" 29 31 msgstr "" … … 41 43 msgstr "" 42 44 43 #. #-#-#-#-# custom-nextpage.pot (Custom Nextpage 0.9.8) #-#-#-#-#45 #. #-#-#-#-# custom-nextpage.pot (Custom Nextpage 1.0.0) #-#-#-#-# 44 46 #. Plugin Name of the plugin/theme 45 #: includes/class-admin-menu.php:1 247 #: includes/class-admin-menu.php:15 46 48 msgid "Custom Nextpage" 47 49 msgstr "" 48 50 49 #: includes/class-admin-menu.php: 1651 #: includes/class-admin-menu.php:44 50 52 msgid "Set Custom Nextpage" 51 53 msgstr "" 52 54 53 #: includes/class-admin-menu.php: 2555 #: includes/class-admin-menu.php:54 54 56 msgid "Convert to new options" 55 57 msgstr "" 56 58 57 #: includes/class-admin-menu.php: 26 includes/class-admin-menu.php:19559 #: includes/class-admin-menu.php:55 includes/class-admin-menu.php:308 58 60 msgid "Convert" 59 61 msgstr "" 60 62 61 #: includes/class-admin-menu.php: 2863 #: includes/class-admin-menu.php:57 62 64 msgid "Setting initialization" 63 65 msgstr "" 64 66 65 #: includes/class-admin-menu.php: 29 includes/class-admin-menu.php:21667 #: includes/class-admin-menu.php:58 includes/class-admin-menu.php:329 66 68 msgid "Initialization" 67 69 msgstr "" 68 70 69 #: includes/class-admin-menu.php: 3971 #: includes/class-admin-menu.php:69 70 72 msgid "General" 71 73 msgstr "" 72 74 73 #: includes/class-admin-menu.php: 4675 #: includes/class-admin-menu.php:76 74 76 msgid "Automatically replace the wp_link_pages." 75 77 msgstr "" 76 78 77 #: includes/class-admin-menu.php: 5879 #: includes/class-admin-menu.php:88 78 80 msgid "Before Text" 79 81 msgstr "" 80 82 81 #: includes/class-admin-menu.php: 6983 #: includes/class-admin-menu.php:99 82 84 msgid "After Text" 83 85 msgstr "" 84 86 85 #: includes/class-admin-menu.php: 8187 #: includes/class-admin-menu.php:111 86 88 msgid "The first and last page links displayed." 87 89 msgstr "" 88 90 89 #: includes/class-admin-menu.php: 9391 #: includes/class-admin-menu.php:123 90 92 msgid "Next and previous page links to display." 91 93 msgstr "" 92 94 93 #: includes/class-admin-menu.php:1 0595 #: includes/class-admin-menu.php:135 94 96 msgid "Text For First Page" 95 97 msgstr "" 96 98 97 #: includes/class-admin-menu.php:1 1799 #: includes/class-admin-menu.php:147 98 100 msgid "Text For Last Page" 99 101 msgstr "" 100 102 101 #: includes/class-admin-menu.php:1 29103 #: includes/class-admin-menu.php:159 102 104 msgid "Text For Next Page" 103 105 msgstr "" 104 106 105 #: includes/class-admin-menu.php:1 41107 #: includes/class-admin-menu.php:171 106 108 msgid "Text For Previous Page" 109 msgstr "" 110 111 #: includes/class-admin-menu.php:183 112 msgid "Style" 113 msgstr "" 114 115 #: includes/class-admin-menu.php:190 116 msgid "Select Style type" 117 msgstr "" 118 119 #: includes/class-admin-menu.php:197 120 msgid "Default" 121 msgstr "" 122 123 #: includes/class-admin-menu.php:198 includes/class-admin-menu.php:207 124 msgid "Style Edit" 125 msgstr "" 126 127 #: includes/class-admin-menu.php:199 128 msgid "Disable" 129 msgstr "" 130 131 #: includes/class-admin-menu.php:215 132 msgid "" 133 "Press ctrl-space to activate autocompletion. <span class=\"button button-" 134 "primary\" id=\"reset-css\">Reset</span>" 107 135 msgstr "" 108 136 -
custom-nextpage/trunk/readme.txt
r1000296 r1001285 1 1 === Custom Nextpage === 2 Contributors: Webnist 2 3 Contributors: Webnist,understandard 3 4 Tags: nextpage multipage 4 5 Requires at least: 3.6 5 6 Tested up to: 4.0 6 Stable tag: 0.9.10 7 Version: 1.0.2 7 8 License: GPLv2 or later 8 9 … … 10 11 11 12 == Description == 13 12 14 MultiPage is a customizable plugin. 13 15 Can any title on the page. 14 16 17 = Contributors = 18 19 * [Webnist](https://profiles.wordpress.org/webnist) 20 * [understandard](https://profiles.wordpress.org/understandard/) 21 15 22 == Installation == 16 A plug-in installation screen is displayed on the WordPress admin panel. 17 It installs it in `wp-content/plugins`. 18 The plug-in is made effective. 19 Open \'Settings\' -> \'Custom Nextpage\' menu. 23 24 * A plug-in installation screen is displayed on the WordPress admin panel. 25 * It installs it in `wp-content/plugins`. 26 * The plug-in is made effective. 27 * Open \'Settings\' -> \'Custom Nextpage\' menu. 20 28 21 29 == Screenshots == … … 27 35 28 36 == Frequently Asked Questions == 37 29 38 Automatically replace the wp_link_pages. To check? 30 39 Or the Please insert a template. 40 ``` 41 <?php if ( function_exists( 'custom_next_page_link_pages' ) ) : custom_next_page_link_pages(); endif; ?> 42 ``` 31 43 32 44 == Changelog == 45 46 = 1.0.2 = 47 Clean style sheet 48 49 = 1.0.1 = 50 Add Reset CSS button 51 52 = 1.0.0 = 53 Add CSS Edit 54 33 55 = 0.9.10 = 34 56 Fix
Note: See TracChangeset
for help on using the changeset viewer.