Ticket #6137: 6137.diff

File 6137.diff, 1.8 KB (added by MichaelH, 5 years ago)
Line 
1Index: wp-admin/edit-link-form.php
2===================================================================
3--- wp-admin/edit-link-form.php (revision 7188)
4+++ wp-admin/edit-link-form.php (working copy)
5@@ -5,7 +5,7 @@
6        $form = '<form name="editlink" id="editlink" method="post" action="link.php">';
7        $nonce_action = 'update-bookmark_' . $link_id;
8 } else {
9-       $heading = __('Add Link');
10+       $heading = __('Write Link');
11        $submit_text = __('Add Link');
12        $form = '<form name="addlink" id="addlink" method="post" action="link.php">';
13        $nonce_action = 'add-bookmark';
14@@ -35,7 +35,7 @@
15 <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?>
16 
17 <div class="wrap">
18-<h2><?php _e('Edit Link') ?></h2>
19+<h2><?php _e($heading) ?></h2>
20 
21 <div id="poststuff">
22 
23Index: wp-admin/link-add.php
24===================================================================
25--- wp-admin/link-add.php       (revision 7188)
26+++ wp-admin/link-add.php       (working copy)
27@@ -1,7 +1,7 @@
28 <?php
29 require_once('admin.php');
30 
31-$title = __('Add Link');
32+$title = __('Write Link');
33 $this_file = 'link-manager.php';
34 $parent_file = 'post-new.php';
35 
36Index: wp-admin/page-new.php
37===================================================================
38--- wp-admin/page-new.php       (revision 7188)
39+++ wp-admin/page-new.php       (working copy)
40@@ -1,6 +1,6 @@
41 <?php
42 require_once('admin.php');
43-$title = __('New Page');
44+$title = __('Write Page');
45 $parent_file = 'post-new.php';
46 $editing = true;
47 wp_enqueue_script('autosave');
48Index: wp-admin/post-new.php
49===================================================================
50--- wp-admin/post-new.php       (revision 7188)
51+++ wp-admin/post-new.php       (working copy)
52@@ -1,6 +1,6 @@
53 <?php
54 require_once('admin.php');
55-$title = __('Create New Post');
56+$title = __('Write Post');
57 $parent_file = 'post-new.php';
58 $editing = true;
59 wp_enqueue_script('autosave');