Changeset 45669
- Timestamp:
- 07/25/2019 01:18:01 AM (5 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r45612 r45669 311 311 <pre>{{ data.message }}</pre> 312 312 <# } else if ( 'file_not_writable' === data.code ) { #> 313 <p><?php _e( 'You need to make this file writable before you can save your changes. See <a href="https://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.' ); ?></p> 313 <p> 314 <?php 315 printf( 316 /* translators: %s: Documentation URL */ 317 __( 'You need to make this file writable before you can save your changes. See <a href="%s">Changing File Permissions</a> for more information.' ), 318 __( 'https://wordpress.org/support/article/changing-file-permissions/' ) 319 ); 320 ?> 321 </p> 314 322 <# } else { #> 315 323 <p>{{ data.message || data.code }}</p> -
trunk/src/wp-admin/options-permalink.php
r45583 r45669 327 327 <?php 328 328 printf( 329 /* translators: 1: web.config, 2: CodexURL, 3: CTRL + a, 4: element code */329 /* translators: 1: web.config, 2: Documentation URL, 3: CTRL + a, 4: element code */ 330 330 __( 'If your %1$s file was <a href="%2$s">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your %1$s file. Click in the field and press %3$s to select all. Then insert this rule inside of the %4$s element in %1$s file.' ), 331 331 '<code>web.config</code>', 332 __( 'https:// codex.wordpress.org/Changing_File_Permissions' ),332 __( 'https://wordpress.org/support/article/changing-file-permissions/' ), 333 333 '<kbd>CTRL + a</kbd>', 334 334 '<code>/<configuration>/<system.webServer>/<rewrite>/<rules></code>' … … 353 353 <?php 354 354 printf( 355 /* translators: 1: CodexURL, 2: web.config, 3: CTRL + a */355 /* translators: 1: Documentation URL, 2: web.config, 3: CTRL + a */ 356 356 __( 'If the root directory of your site was <a href="%1$s">writable</a>, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your %2$s file. Create a new file, called %2$s in the root directory of your site. Click in the field and press %3$s to select all. Then insert this code into the %2$s file.' ), 357 __( 'https:// codex.wordpress.org/Changing_File_Permissions' ),357 __( 'https://wordpress.org/support/article/changing-file-permissions/' ), 358 358 '<code>web.config</code>', 359 359 '<kbd>CTRL + a</kbd>' … … 385 385 <?php 386 386 printf( 387 /* translators: 1: .htaccess, 2: CodexURL, 3: CTRL + a */387 /* translators: 1: .htaccess, 2: Documentation URL, 3: CTRL + a */ 388 388 __( 'If your %1$s file was <a href="%2$s">writable</a>, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s to select all.' ), 389 389 '<code>.htaccess</code>', 390 __( 'https:// codex.wordpress.org/Changing_File_Permissions' ),390 __( 'https://wordpress.org/support/article/changing-file-permissions/' ), 391 391 '<kbd>CTRL + a</kbd>' 392 392 ); -
trunk/src/wp-admin/plugin-editor.php
r45602 r45669 281 281 </p> 282 282 <?php else : ?> 283 <p><em><?php _e( 'You need to make this file writable before you can save your changes. See <a href="https://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.' ); ?></em></p> 283 <p><em> 284 <?php 285 printf( 286 /* translators: %s: Documentation URL */ 287 __( 'You need to make this file writable before you can save your changes. See <a href="%s">Changing File Permissions</a> for more information.' ), 288 __( 'https://wordpress.org/support/article/changing-file-permissions/' ) 289 ); 290 ?> 291 </em></p> 284 292 <?php endif; ?> 285 293 <?php wp_print_file_editor_templates(); ?> -
trunk/src/wp-admin/theme-editor.php
r45608 r45669 314 314 </p> 315 315 <?php else : ?> 316 <p><em><?php _e( 'You need to make this file writable before you can save your changes. See <a href="https://codex.wordpress.org/Changing_File_Permissions">the Codex</a> for more information.' ); ?></em></p> 316 <p><em> 317 <?php 318 printf( 319 /* translators: %s: Documentation URL */ 320 __( 'You need to make this file writable before you can save your changes. See <a href="%s">Changing File Permissions</a> for more information.' ), 321 __( 'https://wordpress.org/support/article/changing-file-permissions/' ) 322 ); 323 ?> 324 </em></p> 317 325 <?php endif; ?> 318 326 </div>
Note: See TracChangeset
for help on using the changeset viewer.