Changeset 19609 for trunk/wp-admin/options-permalink.php
- Timestamp:
- 12/20/2011 09:15:13 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-permalink.php
r19596 r19609 149 149 if ( $iis7_permalinks ) { 150 150 if ( $permalink_structure && ! $usingpi && ! $writable ) 151 _e('You should update your web.config now ');151 _e('You should update your web.config now.'); 152 152 else if ( $permalink_structure && ! $usingpi && $writable ) 153 153 _e('Permalink structure updated. Remove write access on web.config file now!'); 154 154 else 155 _e('Permalink structure updated ');155 _e('Permalink structure updated.'); 156 156 } else { 157 157 if ( $permalink_structure && ! $usingpi && ! $writable ) … … 227 227 228 228 <h3><?php _e('Optional'); ?></h3> 229 <?php if ( $is_apache || $iis7_permalinks ) : ?> 230 <p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <kbd>topics</kbd> as your category base would make your category links like <code>http://example.org/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p> 231 <?php else : ?> 232 <p><?php _e('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>http://example.org/index.php/topics/uncategorized/</code>. If you leave these blank the defaults will be used.') ?></p> 233 <?php endif; ?> 229 <?php 230 $suffix = ''; 231 if ( ! $is_apache && ! $iis7_permalinks ) 232 $suffix = 'index.php/'; 233 ?> 234 <p><?php 235 /* translators: %s is a placeholder that must come at the start of the URL path. */ 236 printf( __('If you like, you may enter custom structures for your category and tag <abbr title="Universal Resource Locator">URL</abbr>s here. For example, using <code>topics</code> as your category base would make your category links like <code>http://example.org/%stopics/uncategorized/</code>. If you leave these blank the defaults will be used.'), $suffix ); ?></p> 234 237 235 238 <table class="form-table">
Note: See TracChangeset
for help on using the changeset viewer.