Ticket #4951: 4951.diff
| File 4951.diff, 5.6 KB (added by johnbillion, 5 years ago) |
|---|
-
wp-admin/import/btt.php
14 14 15 15 function greet() { 16 16 echo '<div class="narrow">'; 17 echo '<p>'.__('Howdy! This imports tags from an existing Bunny’s Technorati Tags installation into this blog using the newWordPress native tagging structure.').'</p>';17 echo '<p>'.__('Howdy! This imports tags from an existing Bunny’s Technorati Tags installation into this blog using the WordPress native tagging structure.').'</p>'; 18 18 echo '<p>'.__('This is suitable for Bunny’s Technorati Tags version 0.6.').'</p>'; 19 19 echo '<p><strong>'.__('All existing Bunny’s Technorati Tags will be removed after import.').'</strong></p>'; 20 20 echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>'; … … 110 110 $btt_import = new BunnyTags_Import(); 111 111 112 112 // add it to the import page! 113 register_importer('btt', 'Bunny’s Technorati Tags', __('Import Bunny’s Technorati Tags into the n ew native tagging structure.'), array($btt_import, 'dispatch'));113 register_importer('btt', 'Bunny’s Technorati Tags', __('Import Bunny’s Technorati Tags into the native tagging structure.'), array($btt_import, 'dispatch')); 114 114 115 115 ?> -
wp-admin/import/jkw.php
14 14 15 15 function greet() { 16 16 echo '<div class="narrow">'; 17 echo '<p>'.__('Howdy! This imports tags from an existing Jerome’s Keywords installation into this blog using the newWordPress native tagging structure.').'</p>';17 echo '<p>'.__('Howdy! This imports tags from an existing Jerome’s Keywords installation into this blog using the WordPress native tagging structure.').'</p>'; 18 18 echo '<p>'.__('This is suitable for Jerome’s Keywords version 1.x and 2.0a.').'</p>'; 19 19 echo '<p><strong>'.__('All existing Jerome’s Keywords will be removed after import.').'</strong></p>'; 20 20 echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>'; … … 173 173 $jkw_import = new JeromesKeyword_Import(); 174 174 175 175 // add it to the import page! 176 register_importer('jkw', 'Jerome’s Keywords', __('Import Jerome’s Keywords into the n ew native tagging structure.'), array($jkw_import, 'dispatch'));176 register_importer('jkw', 'Jerome’s Keywords', __('Import Jerome’s Keywords into the native tagging structure.'), array($jkw_import, 'dispatch')); 177 177 178 178 ?> -
wp-admin/import/stp.php
14 14 15 15 function greet() { 16 16 echo '<div class="narrow">'; 17 echo '<p>'.__('Howdy! This imports tags from an existing Simple Tagging 1.6.2 installation into this blog using the newWordPress native tagging structure.').'</p>';17 echo '<p>'.__('Howdy! This imports tags from an existing Simple Tagging 1.6.2 installation into this blog using the WordPress native tagging structure.').'</p>'; 18 18 echo '<p>'.__('This has not been tested on any other versions of Simple Tagging. Mileage may vary.').'</p>'; 19 19 echo '<p>'.__('To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 4-step program to help you kick that nasty Simple Tagging habit. Just keep clicking along and we will let you know when you are in the clear!').'</p>'; 20 20 echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>'; … … 193 193 $stp_import = new STP_Import(); 194 194 195 195 // add it to the import page! 196 register_importer('stp', 'Simple Tagging', __('Import Simple Tagging tags into the n ew native tagging structure.'), array($stp_import, 'dispatch'));196 register_importer('stp', 'Simple Tagging', __('Import Simple Tagging tags into the native tagging structure.'), array($stp_import, 'dispatch')); 197 197 198 198 ?> -
wp-admin/import/utw.php
14 14 15 15 function greet() { 16 16 echo '<div class="narrow">'; 17 echo '<p>'.__('Howdy! This imports tags from an existing Ultimate Tag Warrior 3 installation into this blog using the newWordPress native tagging structure.').'</p>';17 echo '<p>'.__('Howdy! This imports tags from an existing Ultimate Tag Warrior 3 installation into this blog using the WordPress native tagging structure.').'</p>'; 18 18 echo '<p>'.__('This has not been tested on any other versions of Ultimate Tag Warrior. Mileage may vary.').'</p>'; 19 19 echo '<p>'.__('To accommodate larger databases for those tag-crazy authors out there, we have made this into an easy 5-step program to help you kick that nasty UTW habit. Just keep clicking along and we will let you know when you are in the clear!').'</p>'; 20 20 echo '<p><strong>'.__('Don’t be stupid - backup your database before proceeding!').'</strong></p>'; … … 271 271 $utw_import = new UTW_Import(); 272 272 273 273 // add it to the import page! 274 register_importer('utw', 'Ultimate Tag Warrior', __('Import Ultimate Tag Warrior tags into the n ew native tagging structure.'), array($utw_import, 'dispatch'));274 register_importer('utw', 'Ultimate Tag Warrior', __('Import Ultimate Tag Warrior tags into the native tagging structure.'), array($utw_import, 'dispatch')); 275 275 276 276 ?> 277 No newline at end of file
