Changeset 1492883
- Timestamp:
- 09/08/2016 10:31:47 PM (10 years ago)
- Location:
- multisite-robotstxt-manager
- Files:
-
- 11 edited
- 14 copied
-
tags/1.0.5 (copied) (copied from multisite-robotstxt-manager/trunk)
-
tags/1.0.5/includes/class_admin.php (copied) (copied from multisite-robotstxt-manager/trunk/includes/class_admin.php) (1 diff)
-
tags/1.0.5/includes/class_disabler.php (copied) (copied from multisite-robotstxt-manager/trunk/includes/class_disabler.php)
-
tags/1.0.5/includes/class_helper.php (copied) (copied from multisite-robotstxt-manager/trunk/includes/class_helper.php) (1 diff)
-
tags/1.0.5/includes/class_presets.php (copied) (copied from multisite-robotstxt-manager/trunk/includes/class_presets.php) (6 diffs)
-
tags/1.0.5/includes/class_public.php (copied) (copied from multisite-robotstxt-manager/trunk/includes/class_public.php)
-
tags/1.0.5/includes/class_upgrade.php (copied) (copied from multisite-robotstxt-manager/trunk/includes/class_upgrade.php)
-
tags/1.0.5/languages/multisite-robotstxt-manager-en_US.mo (modified) (previous)
-
tags/1.0.5/languages/multisite-robotstxt-manager-en_US.po (modified) (17 diffs)
-
tags/1.0.5/languages/multisite-robotstxt-manager.pot (modified) (13 diffs)
-
tags/1.0.5/multisite-robotstxt-manager.php (copied) (copied from multisite-robotstxt-manager/trunk/multisite-robotstxt-manager.php) (2 diffs)
-
tags/1.0.5/readme.txt (copied) (copied from multisite-robotstxt-manager/trunk/readme.txt) (17 diffs)
-
tags/1.0.5/templates/header.php (copied) (copied from multisite-robotstxt-manager/trunk/templates/header.php)
-
tags/1.0.5/templates/home.php (copied) (copied from multisite-robotstxt-manager/trunk/templates/home.php)
-
tags/1.0.5/templates/sidebar.php (copied) (copied from multisite-robotstxt-manager/trunk/templates/sidebar.php)
-
tags/1.0.5/templates/style.css (copied) (copied from multisite-robotstxt-manager/trunk/templates/style.css)
-
tags/1.0.5/uninstall.php (copied) (copied from multisite-robotstxt-manager/trunk/uninstall.php)
-
trunk/includes/class_admin.php (modified) (1 diff)
-
trunk/includes/class_helper.php (modified) (1 diff)
-
trunk/includes/class_presets.php (modified) (6 diffs)
-
trunk/languages/multisite-robotstxt-manager-en_US.mo (modified) (previous)
-
trunk/languages/multisite-robotstxt-manager-en_US.po (modified) (17 diffs)
-
trunk/languages/multisite-robotstxt-manager.pot (modified) (13 diffs)
-
trunk/multisite-robotstxt-manager.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (17 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multisite-robotstxt-manager/tags/1.0.5/includes/class_admin.php
r1489846 r1492883 116 116 // Set Post Action Redirect 117 117 if ( filter_input( INPUT_POST, 'ms_robotstxt_manager' ) ) { 118 //add_action( 'wp_loaded', array( &$this, 'pluginRedirect' ) );118 add_action( 'wp_loaded', array( &$this, 'pluginRedirect' ) ); 119 119 } 120 120 } -
multisite-robotstxt-manager/tags/1.0.5/includes/class_helper.php
r1489846 r1492883 203 203 switch_to_blog( $blog_id ); 204 204 205 // Get Site URL 206 $sitemap_url_base = get_option( 'siteurl' ) ? get_option( 'siteurl' ) : MS_ROBOTSTXT_MANAGER_BASE_URL; 207 205 208 // Base XML File Locations To check 206 $root_xml_file_location = get_headers( MS_ROBOTSTXT_MANAGER_BASE_URL. '/sitemap.xml' );207 $alt_xml_file_location = get_headers( MS_ROBOTSTXT_MANAGER_BASE_URL. '/sitemaps/sitemap.xml' );209 $root_xml_file_location = get_headers( $sitemap_url_base . '/sitemap.xml' ); 210 $alt_xml_file_location = get_headers( $sitemap_url_base . '/sitemaps/sitemap.xml' ); 208 211 209 212 // Check if xml sitemap exists 210 213 if ( $root_xml_file_location && $root_xml_file_location[0] == 'HTTP/1.1 200 OK' ) { 211 214 // http://domain.com/sitemap.xml 212 $url = MS_ROBOTSTXT_MANAGER_BASE_URL. '/sitemap.xml';215 $url = $sitemap_url_base . '/sitemap.xml'; 213 216 214 217 } elseif ( $alt_xml_file_location && $alt_xml_file_location[0] == 'HTTP/1.1 200 OK' ) { 215 218 // http://domain.com/sitemaps/sitemap.xml 216 $url = MS_ROBOTSTXT_MANAGER_BASE_URL. '/sitemaps/sitemap.xml';219 $url = $sitemap_url_base . '/sitemaps/sitemap.xml'; 217 220 218 221 } else { -
multisite-robotstxt-manager/tags/1.0.5/includes/class_presets.php
r1489846 r1492883 45 45 * @return string 46 46 */ 47 public function defaultAltRobotstxt()47 final public function defaultAltRobotstxt() 48 48 { 49 49 $txt = "# robots.txt\n"; … … 82 82 * @return string 83 83 */ 84 public function wordpressRobotstxt()84 final public function wordpressRobotstxt() 85 85 { 86 86 $txt = "# robots.txt\n"; … … 100 100 * @return string 101 101 */ 102 public function openRobotstxt()102 final public function openRobotstxt() 103 103 { 104 104 $txt = "# robots.txt\n"; … … 115 115 * @return string 116 116 */ 117 public function bloggerRobotstxt()117 final public function bloggerRobotstxt() 118 118 { 119 119 $txt = "# robots.txt\n"; … … 163 163 * @return string 164 164 */ 165 public function blockedRobotstxt()165 final public function blockedRobotstxt() 166 166 { 167 167 $txt = "# robots.txt\n"; … … 178 178 * @return string 179 179 */ 180 public function googleRobotstxt()180 final public function googleRobotstxt() 181 181 { 182 182 $txt = "# robots.txt\n"; -
multisite-robotstxt-manager/tags/1.0.5/languages/multisite-robotstxt-manager-en_US.po
r1486759 r1492883 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Multisite Robots.txt Manager | MS Robots.txt 1.0. 3\n"5 "Project-Id-Version: Multisite Robots.txt Manager | MS Robots.txt 1.0.4\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/multisite-robotstxt-manager\n" 7 "POT-Creation-Date: 2016-0 8-30 22:26:54+00:00\n"8 "PO-Revision-Date: 2016-0 8-30 22:26:54+00:00\n"7 "POT-Creation-Date: 2016-09-06 09:51:57+00:00\n" 8 "PO-Revision-Date: 2016-09-06 09:51:57+00:00\n" 9 9 "Last-Translator: Automatically generated\n" 10 10 "Language-Team: none\n" … … 15 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 16 16 17 #: includes/class_admin.php: 35617 #: includes/class_admin.php:424 18 18 msgid "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this websites customized robots.txt file." 19 19 msgstr "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this websites customized robots.txt file." 20 20 21 #: includes/class_admin.php: 36121 #: includes/class_admin.php:429 22 22 msgid "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this websites default Wordpress robots.txt file." 23 23 msgstr "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this websites default Wordpress robots.txt file." 24 24 25 #: includes/class_admin.php:257 25 #: includes/class_admin.php:169 26 msgid "<u>All Network Websites Have Been Updated</u>: The saved network robots.txt file has been published to all websites." 27 msgstr "<u>All Network Websites Have Been Updated</u>: The saved network robots.txt file has been published to all websites." 28 29 #: includes/class_admin.php:166 30 msgid "<u>Blogs You Are Member Of Have Been Updated</u>: The saved network robots.txt file has been published to allowed websites." 31 msgstr "<u>Blogs You Are Member Of Have Been Updated</u>: The saved network robots.txt file has been published to allowed websites." 32 33 #: includes/class_disabler.php:31 34 msgid "<u>Network Disabled</u>: The Multisite Robots.txt Manager Plugin is no longer managing robots.txt files across network websites. Click the \"update network\" button to reenable the plugin." 35 msgstr "<u>Network Disabled</u>: The Multisite Robots.txt Manager Plugin is no longer managing robots.txt files across network websites. Click the \"update network\" button to reenable the plugin." 36 37 #: includes/class_admin.php:160 38 msgid "<u>Preset Option Updated</u>: The preset has been saved as the network robots.txt file. Click the \"update network\" button to publish the robots.txt file across the network." 39 msgstr "<u>Preset Option Updated</u>: The preset has been saved as the network robots.txt file. Click the \"update network\" button to publish the robots.txt file across the network." 40 41 #: includes/class_disabler.php:34 42 msgid "<u>Settings Deleted</u>: All Multisite Robots.txt Manager Plugin settings have been removed across the network. To re-enable: Save a preset robots.txt file or create your own robots.txt file, then click the \"update network\" button to update ." 43 msgstr "<u>Settings Deleted</u>: All Multisite Robots.txt Manager Plugin settings have been removed across the network. To re-enable: Save a preset robots.txt file or create your own robots.txt file, then click the \"update network\" button to update ." 44 45 #: includes/class_disabler.php:28 46 msgid "<u>Website Disabled</u>: The Multisite Robots.txt Manager Plugin is no longer managing the robots.txt file on this website. Click the \"update update\" button to reenable the website." 47 msgstr "<u>Website Disabled</u>: The Multisite Robots.txt Manager Plugin is no longer managing the robots.txt file on this website. Click the \"update update\" button to reenable the website." 48 49 #: includes/class_admin.php:163 50 msgid "<u>Website Settings Updated</u>: " 51 msgstr "<u>Website Settings Updated</u>: " 52 53 #: includes/class_admin.php:326 26 54 msgid "A Bloggers Robots.txt File: Optimized for blog focused Wordpress websites." 27 55 msgstr "A Bloggers Robots.txt File: Optimized for blog focused Wordpress websites." … … 35 63 msgstr "A Multisite Robots.txt Manager Plugin For Wordpress." 36 64 37 #: includes/class_core.php:89 38 msgid "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be activated on Network Enabled Wordpress installs. Download and install the plugin, \"Robots.txt Manager\" for standalone Wordpress installs." 39 msgstr "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be activated on Network Enabled Wordpress installs. Download and install the plugin, \"Robots.txt Manager\" for standalone Wordpress installs." 40 41 #: includes/class_core.php:94 42 msgid "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be activated within the Network Admin." 43 msgstr "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be activated within the Network Admin." 44 45 #: templates/home.php:67 65 #: templates/home.php:76 46 66 msgid "Add Sitemap URL" 47 67 msgstr "Add Sitemap URL" 48 68 49 #: includes/class_admin.php: 35169 #: includes/class_admin.php:419 50 70 msgid "All network websites are currently displaying the default Wordpress robots.txt file. To enable, click the 'update network' button below." 51 71 msgstr "All network websites are currently displaying the default Wordpress robots.txt file. To enable, click the 'update network' button below." 52 72 53 #: templates/home.php:6 073 #: templates/home.php:69 54 74 msgid "Allow Theme Path" 55 75 msgstr "Allow Theme Path" 56 76 57 #: templates/home.php: 5377 #: templates/home.php:62 58 78 msgid "Allow Upload Path" 59 79 msgstr "Allow Upload Path" 60 80 61 #: includes/class_admin.php: 25481 #: includes/class_admin.php:323 62 82 msgid "Alternative Robots.txt File: Simular to the plugins default robots.txt file, with more disallows." 63 83 msgstr "Alternative Robots.txt File: Simular to the plugins default robots.txt file, with more disallows." 64 84 65 #: includes/class_admin.php:3 01 includes/class_admin.php:31285 #: includes/class_admin.php:370 includes/class_admin.php:381 66 86 msgid "Are You Sure You Want To Submit This?" 67 87 msgstr "Are You Sure You Want To Submit This?" … … 71 91 msgstr "AskAapche Robots.txt Example" 72 92 73 #: includes/class_upgrade.php:544 74 msgid "Bad Robots.txt Rewrite Rule Found" 75 msgstr "Bad Robots.txt Rewrite Rule Found" 76 77 #: includes/class_upgrade.php:154 93 #: includes/class_upgrade.php:163 78 94 msgid "Click the button to automatically copy old settings over, and then purge the old settings from the database" 79 95 msgstr "Click the button to automatically copy old settings over, and then purge the old settings from the database" 80 96 81 #: includes/class_upgrade.php:5 4482 msgid "Click the button to automatically correct the badrobots.txt rewrite rule."83 msgstr "Click the button to automatically correct the badrobots.txt rewrite rule."84 85 #: includes/class_upgrade.php:4 3497 #: includes/class_upgrade.php:554 98 msgid "Click the button to automatically correct the missing robots.txt rewrite rule." 99 msgstr "Click the button to automatically correct the missing robots.txt rewrite rule." 100 101 #: includes/class_upgrade.php:444 86 102 msgid "Click the button to automatically remove robots.txt files left by other plugins." 87 103 msgstr "Click the button to automatically remove robots.txt files left by other plugins." … … 95 111 msgstr "Created by" 96 112 97 #: includes/class_admin.php: 253113 #: includes/class_admin.php:322 98 114 msgid "Default Robots.txt File: The plugins default installed robots.txt file." 99 115 msgstr "Default Robots.txt File: The plugins default installed robots.txt file." 100 116 101 #: includes/class_admin.php:3 06117 #: includes/class_admin.php:375 102 118 msgid "Disable saved robots.txt files across all network websites, restoring the default Wordpress robots.txt file." 103 119 msgstr "Disable saved robots.txt files across all network websites, restoring the default Wordpress robots.txt file." 104 120 105 #: includes/class_admin.php:3 00121 #: includes/class_admin.php:369 106 122 msgid "Disable the saved robots.txt file on this website, restoring the default Wordpress robots.txt file." 107 123 msgstr "Disable the saved robots.txt file on this website, restoring the default Wordpress robots.txt file." 108 124 109 #: includes/class_core.php:120125 #: multisite-robotstxt-manager.php:173 110 126 msgid "Donations" 111 127 msgstr "Donations" 112 128 113 #: includes/class_core.php:117129 #: multisite-robotstxt-manager.php:170 114 130 msgid "F.A.Q." 115 131 msgstr "F.A.Q." 116 132 117 #: includes/class_core.php:119133 #: multisite-robotstxt-manager.php:172 118 134 msgid "Feedback" 119 135 msgstr "Feedback" 136 137 #: templates/home.php:25 138 msgid "Full Network Update - All Network Websites" 139 msgstr "Full Network Update - All Network Websites" 120 140 121 141 #: templates/sidebar.php:16 … … 127 147 msgstr "Google Robots.txt F.A.Q." 128 148 129 #: includes/class_admin.php: 258149 #: includes/class_admin.php:327 130 150 msgid "Google Robots.txt File: A Google friendly robots.txt file." 131 151 msgstr "Google Robots.txt File: A Google friendly robots.txt file." … … 135 155 msgstr "It only takes a few seconds to <a href=\"http://wordpress.org/extend/plugins/multisite-robotstxt-manager/\" target=\"_blank\">rate this plugin</a>! Your rating helps create motivation for future developments" 136 156 137 #: includes/class_upgrade.php:4 34157 #: includes/class_upgrade.php:444 138 158 msgid "Left Over Robots.txt Files Found" 139 159 msgstr "Left Over Robots.txt Files Found" 140 160 141 #: includes/class_admin.php: 259161 #: includes/class_admin.php:328 142 162 msgid "Lockdown Robots.txt File: Disallow everything, prevent spiders from indexing the website." 143 163 msgstr "Lockdown Robots.txt File: Disallow everything, prevent spiders from indexing the website." … … 147 167 msgstr "MS Robots.txt" 148 168 149 #: includes/class_ core.php:149169 #: includes/class_upgrade.php:633 150 170 msgid "MSRTM PRO failed to automatically upgrade - a new version is ready! Please contact us for download instructions." 151 171 msgstr "MSRTM PRO failed to automatically upgrade - a new version is ready! Please contact us for download instructions." 172 173 #: includes/class_upgrade.php:554 174 msgid "Missing Robots.txt Rewrite Rule" 175 msgstr "Missing Robots.txt Rewrite Rule" 152 176 153 177 #: templates/sidebar.php:35 … … 163 187 msgstr "Multisite Robots.txt Manager for Wordpress" 164 188 165 #: includes/class_admin.php: 346 includes/class_admin.php:356189 #: includes/class_admin.php:414 includes/class_admin.php:424 166 190 msgid "Multisite Robots.txt Manager is Active" 167 191 msgstr "Multisite Robots.txt Manager is Active" 168 192 169 #: includes/class_admin.php: 351 includes/class_admin.php:361193 #: includes/class_admin.php:419 includes/class_admin.php:429 170 194 msgid "Multisite Robots.txt Manager is Disabled" 171 195 msgstr "Multisite Robots.txt Manager is Disabled" … … 175 199 msgstr "Multisite Robots.txt Manager | MS Robots.txt" 176 200 177 #: templates/home.php:9 1201 #: templates/home.php:97 178 202 msgid "Network Locked Robots.txt File" 179 203 msgstr "Network Locked Robots.txt File" 180 204 181 #: includes/class_core.php:113205 #: multisite-robotstxt-manager.php:166 182 206 msgid "Network Settings" 183 207 msgstr "Network Settings" 184 208 185 #: includes/class_upgrade.php:1 54209 #: includes/class_upgrade.php:163 186 210 msgid "Old Plugin Data Found" 187 211 msgstr "Old Plugin Data Found" 188 212 189 #: includes/class_admin.php:256 213 #: templates/home.php:26 214 msgid "Only Websites You Are A Member Of: Default" 215 msgstr "Only Websites You Are A Member Of: Default" 216 217 #: includes/class_admin.php:325 190 218 msgid "Open Robots.txt File: Fully open robots.txt file, no disallows." 191 219 msgstr "Open Robots.txt File: Fully open robots.txt file, no disallows." 192 220 193 #: includes/class_core.php:121221 #: multisite-robotstxt-manager.php:174 194 222 msgid "PRO Details" 195 223 msgstr "PRO Details" … … 219 247 msgstr "Robots.txt Documentation" 220 248 221 #: includes/class_admin.php: 263249 #: includes/class_admin.php:332 222 250 msgid "Robots.txt File Presets" 223 251 msgstr "Robots.txt File Presets" … … 231 259 msgstr "Robots.txt Specifications" 232 260 233 #: templates/home.php: 48261 #: templates/home.php:57 234 262 msgid "Rule Suggestions" 235 263 msgstr "Rule Suggestions" 236 264 237 #: templates/home.php:8 1265 #: templates/home.php:87 238 266 msgid "Saved Robots.txt File" 239 267 msgstr "Saved Robots.txt File" 240 268 241 #: includes/class_admin.php: 272269 #: includes/class_admin.php:341 242 270 msgid "Showing!" 243 271 msgstr "Showing!" … … 247 275 msgstr "Submit Feedback" 248 276 249 #: includes/class_core.php:118277 #: multisite-robotstxt-manager.php:171 250 278 msgid "Support" 251 279 msgstr "Support" 252 280 253 #: templates/home.php:8 1281 #: templates/home.php:87 254 282 msgid "The live robots.txt file for this website." 255 283 msgstr "The live robots.txt file for this website." 256 284 257 #: includes/class_admin.php: 346285 #: includes/class_admin.php:414 258 286 msgid "The robots.txt file template below is currently being used across all active network websites. The saved robots.txt file rules for each website will replace the {APPEND_WEBSITE_ROBOTSTXT} marker." 259 287 msgstr "The robots.txt file template below is currently being used across all active network websites. The saved robots.txt file rules for each website will replace the {APPEND_WEBSITE_ROBOTSTXT} marker." … … 263 291 msgstr "Unauthorized Access." 264 292 265 #: includes/class_ core.php:149293 #: includes/class_upgrade.php:633 266 294 msgid "Upgrade Notice" 267 295 msgstr "Upgrade Notice" 268 296 269 #: includes/class_admin.php:3 11297 #: includes/class_admin.php:380 270 298 msgid "WARNING: Delete all settings related to the Multisite Robots.txt Manager Plugin across the entire network." 271 299 msgstr "WARNING: Delete all settings related to the Multisite Robots.txt Manager Plugin across the entire network." … … 275 303 msgstr "Web Robots Database" 276 304 277 #: includes/class_core.php:115305 #: multisite-robotstxt-manager.php:168 278 306 msgid "Website Settings" 279 307 msgstr "Website Settings" 280 308 281 #: templates/home.php:9 1309 #: templates/home.php:97 282 310 msgid "Website settings (above) will automatically be appended to the network robots.txt file and saved as the robots.txt for this website." 283 311 msgstr "Website settings (above) will automatically be appended to the network robots.txt file and saved as the robots.txt for this website." 284 312 285 #: includes/class_admin.php: 255313 #: includes/class_admin.php:324 286 314 msgid "Wordpress Limited Robots.txt File: Only disallows wp-includes and wp-admin." 287 315 msgstr "Wordpress Limited Robots.txt File: Only disallows wp-includes and wp-admin." 288 316 289 #: includes/class_core.php:67 includes/class_core.php:72317 #: multisite-robotstxt-manager.php:190 multisite-robotstxt-manager.php:195 290 318 msgid "You are not authorized to perform this action." 291 319 msgstr "You are not authorized to perform this action." … … 303 331 msgstr "http://technerdia.com/msrtm/" 304 332 305 #: includes/class_upgrade.php:4 35333 #: includes/class_upgrade.php:445 306 334 msgid "remove old data" 307 335 msgstr "remove old data" … … 315 343 msgstr "tribalNerd, Chris Winters" 316 344 317 #: templates/home.php: 24345 #: templates/home.php:30 318 346 msgid "update network" 319 347 msgstr "update network" 320 348 321 #: includes/class_upgrade.php:5 45349 #: includes/class_upgrade.php:555 322 350 msgid "update rewrite rules" 323 351 msgstr "update rewrite rules" 324 352 325 #: templates/home.php: 72353 #: templates/home.php:54 326 354 msgid "update website rules" 327 355 msgstr "update website rules" 328 356 329 #: includes/class_upgrade.php:1 55357 #: includes/class_upgrade.php:164 330 358 msgid "upgrade and purge network" 331 359 msgstr "upgrade and purge network" -
multisite-robotstxt-manager/tags/1.0.5/languages/multisite-robotstxt-manager.pot
r1486759 r1492883 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Multisite Robots.txt Manager | MS Robots.txt 1.0. 3\n"5 "Project-Id-Version: Multisite Robots.txt Manager | MS Robots.txt 1.0.4\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/multisite-robotstxt-manager\n" 7 "POT-Creation-Date: 2016-0 8-30 22:26:54+00:00\n"7 "POT-Creation-Date: 2016-09-06 09:51:57+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 #: includes/class_admin.php:253 15 #: includes/class_admin.php:160 16 msgid "" 17 "<u>Preset Option Updated</u>: The preset has been saved as the network " 18 "robots.txt file. Click the \"update network\" button to publish the robots." 19 "txt file across the network." 20 msgstr "" 21 22 #: includes/class_admin.php:163 23 msgid "<u>Website Settings Updated</u>: " 24 msgstr "" 25 26 #: includes/class_admin.php:166 27 msgid "" 28 "<u>Blogs You Are Member Of Have Been Updated</u>: The saved network robots." 29 "txt file has been published to allowed websites." 30 msgstr "" 31 32 #: includes/class_admin.php:169 33 msgid "" 34 "<u>All Network Websites Have Been Updated</u>: The saved network robots.txt " 35 "file has been published to all websites." 36 msgstr "" 37 38 #: includes/class_admin.php:322 16 39 msgid "Default Robots.txt File: The plugins default installed robots.txt file." 17 40 msgstr "" 18 41 19 #: includes/class_admin.php: 25442 #: includes/class_admin.php:323 20 43 msgid "" 21 44 "Alternative Robots.txt File: Simular to the plugins default robots.txt file, " … … 23 46 msgstr "" 24 47 25 #: includes/class_admin.php: 25548 #: includes/class_admin.php:324 26 49 msgid "" 27 50 "Wordpress Limited Robots.txt File: Only disallows wp-includes and wp-admin." 28 51 msgstr "" 29 52 30 #: includes/class_admin.php: 25653 #: includes/class_admin.php:325 31 54 msgid "Open Robots.txt File: Fully open robots.txt file, no disallows." 32 55 msgstr "" 33 56 34 #: includes/class_admin.php: 25757 #: includes/class_admin.php:326 35 58 msgid "" 36 59 "A Bloggers Robots.txt File: Optimized for blog focused Wordpress websites." 37 60 msgstr "" 38 61 39 #: includes/class_admin.php: 25862 #: includes/class_admin.php:327 40 63 msgid "Google Robots.txt File: A Google friendly robots.txt file." 41 64 msgstr "" 42 65 43 #: includes/class_admin.php: 25966 #: includes/class_admin.php:328 44 67 msgid "" 45 68 "Lockdown Robots.txt File: Disallow everything, prevent spiders from indexing " … … 47 70 msgstr "" 48 71 49 #: includes/class_admin.php: 26372 #: includes/class_admin.php:332 50 73 msgid "Robots.txt File Presets" 51 74 msgstr "" 52 75 53 #: includes/class_admin.php: 27276 #: includes/class_admin.php:341 54 77 msgid "Showing!" 55 78 msgstr "" 56 79 57 #: includes/class_admin.php:3 0080 #: includes/class_admin.php:369 58 81 msgid "" 59 82 "Disable the saved robots.txt file on this website, restoring the default " … … 61 84 msgstr "" 62 85 63 #: includes/class_admin.php:3 01 includes/class_admin.php:31286 #: includes/class_admin.php:370 includes/class_admin.php:381 64 87 msgid "Are You Sure You Want To Submit This?" 65 88 msgstr "" 66 89 67 #: includes/class_admin.php:3 0690 #: includes/class_admin.php:375 68 91 msgid "" 69 92 "Disable saved robots.txt files across all network websites, restoring the " … … 71 94 msgstr "" 72 95 73 #: includes/class_admin.php:3 1196 #: includes/class_admin.php:380 74 97 msgid "" 75 98 "WARNING: Delete all settings related to the Multisite Robots.txt Manager " … … 77 100 msgstr "" 78 101 79 #: includes/class_admin.php: 346 includes/class_admin.php:356102 #: includes/class_admin.php:414 includes/class_admin.php:424 80 103 msgid "Multisite Robots.txt Manager is Active" 81 104 msgstr "" 82 105 83 #: includes/class_admin.php: 346106 #: includes/class_admin.php:414 84 107 msgid "" 85 108 "The robots.txt file template below is currently being used across all active " … … 88 111 msgstr "" 89 112 90 #: includes/class_admin.php: 351 includes/class_admin.php:361113 #: includes/class_admin.php:419 includes/class_admin.php:429 91 114 msgid "Multisite Robots.txt Manager is Disabled" 92 115 msgstr "" 93 116 94 #: includes/class_admin.php: 351117 #: includes/class_admin.php:419 95 118 msgid "" 96 119 "All network websites are currently displaying the default Wordpress robots." … … 98 121 msgstr "" 99 122 100 #: includes/class_admin.php: 356123 #: includes/class_admin.php:424 101 124 msgid "" 102 125 "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this " … … 104 127 msgstr "" 105 128 106 #: includes/class_admin.php: 361129 #: includes/class_admin.php:429 107 130 msgid "" 108 131 "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this " … … 110 133 msgstr "" 111 134 112 #: includes/class_core.php:67 includes/class_core.php:72 113 msgid "You are not authorized to perform this action." 114 msgstr "" 115 116 #: includes/class_core.php:89 117 msgid "" 118 "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be " 119 "activated on Network Enabled Wordpress installs. Download and install the " 120 "plugin, \"Robots.txt Manager\" for standalone Wordpress installs." 121 msgstr "" 122 123 #: includes/class_core.php:94 124 msgid "" 125 "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be " 126 "activated within the Network Admin." 127 msgstr "" 128 129 #: includes/class_core.php:113 130 msgid "Network Settings" 131 msgstr "" 132 133 #: includes/class_core.php:115 134 msgid "Website Settings" 135 msgstr "" 136 137 #: includes/class_core.php:117 138 msgid "F.A.Q." 139 msgstr "" 140 141 #: includes/class_core.php:118 142 msgid "Support" 143 msgstr "" 144 145 #: includes/class_core.php:119 146 msgid "Feedback" 147 msgstr "" 148 149 #: includes/class_core.php:120 150 msgid "Donations" 151 msgstr "" 152 153 #: includes/class_core.php:121 154 msgid "PRO Details" 155 msgstr "" 156 157 #: includes/class_core.php:149 135 #: includes/class_disabler.php:28 136 msgid "" 137 "<u>Website Disabled</u>: The Multisite Robots.txt Manager Plugin is no " 138 "longer managing the robots.txt file on this website. Click the \"update " 139 "update\" button to reenable the website." 140 msgstr "" 141 142 #: includes/class_disabler.php:31 143 msgid "" 144 "<u>Network Disabled</u>: The Multisite Robots.txt Manager Plugin is no " 145 "longer managing robots.txt files across network websites. Click the \"update " 146 "network\" button to reenable the plugin." 147 msgstr "" 148 149 #: includes/class_disabler.php:34 150 msgid "" 151 "<u>Settings Deleted</u>: All Multisite Robots.txt Manager Plugin settings " 152 "have been removed across the network. To re-enable: Save a preset robots.txt " 153 "file or create your own robots.txt file, then click the \"update network\" " 154 "button to update ." 155 msgstr "" 156 157 #: includes/class_upgrade.php:163 158 msgid "Old Plugin Data Found" 159 msgstr "" 160 161 #: includes/class_upgrade.php:163 162 msgid "" 163 "Click the button to automatically copy old settings over, and then purge the " 164 "old settings from the database" 165 msgstr "" 166 167 #: includes/class_upgrade.php:164 168 msgid "upgrade and purge network" 169 msgstr "" 170 171 #: includes/class_upgrade.php:444 172 msgid "Left Over Robots.txt Files Found" 173 msgstr "" 174 175 #: includes/class_upgrade.php:444 176 msgid "" 177 "Click the button to automatically remove robots.txt files left by other " 178 "plugins." 179 msgstr "" 180 181 #: includes/class_upgrade.php:445 182 msgid "remove old data" 183 msgstr "" 184 185 #: includes/class_upgrade.php:554 186 msgid "Missing Robots.txt Rewrite Rule" 187 msgstr "" 188 189 #: includes/class_upgrade.php:554 190 msgid "" 191 "Click the button to automatically correct the missing robots.txt rewrite " 192 "rule." 193 msgstr "" 194 195 #: includes/class_upgrade.php:555 196 msgid "update rewrite rules" 197 msgstr "" 198 199 #: includes/class_upgrade.php:633 158 200 msgid "Upgrade Notice" 159 201 msgstr "" 160 202 161 #: includes/class_ core.php:149203 #: includes/class_upgrade.php:633 162 204 msgid "" 163 205 "MSRTM PRO failed to automatically upgrade - a new version is ready! Please " … … 165 207 msgstr "" 166 208 167 #: includes/class_upgrade.php:154168 msgid "Old Plugin Data Found"169 msgstr ""170 171 #: includes/class_upgrade.php:154172 msgid ""173 "Click the button to automatically copy old settings over, and then purge the "174 "old settings from the database"175 msgstr ""176 177 #: includes/class_upgrade.php:155178 msgid "upgrade and purge network"179 msgstr ""180 181 #: includes/class_upgrade.php:434182 msgid "Left Over Robots.txt Files Found"183 msgstr ""184 185 #: includes/class_upgrade.php:434186 msgid ""187 "Click the button to automatically remove robots.txt files left by other "188 "plugins."189 msgstr ""190 191 #: includes/class_upgrade.php:435192 msgid "remove old data"193 msgstr ""194 195 #: includes/class_upgrade.php:544196 msgid "Bad Robots.txt Rewrite Rule Found"197 msgstr ""198 199 #: includes/class_upgrade.php:544200 msgid ""201 "Click the button to automatically correct the bad robots.txt rewrite rule."202 msgstr ""203 204 #: includes/class_upgrade.php:545205 msgid "update rewrite rules"206 msgstr ""207 208 209 #: multisite-robotstxt-manager.php:37 209 210 msgid "MS Robots.txt" … … 218 219 msgstr "" 219 220 221 #: multisite-robotstxt-manager.php:166 222 msgid "Network Settings" 223 msgstr "" 224 225 #: multisite-robotstxt-manager.php:168 226 msgid "Website Settings" 227 msgstr "" 228 229 #: multisite-robotstxt-manager.php:170 230 msgid "F.A.Q." 231 msgstr "" 232 233 #: multisite-robotstxt-manager.php:171 234 msgid "Support" 235 msgstr "" 236 237 #: multisite-robotstxt-manager.php:172 238 msgid "Feedback" 239 msgstr "" 240 241 #: multisite-robotstxt-manager.php:173 242 msgid "Donations" 243 msgstr "" 244 245 #: multisite-robotstxt-manager.php:174 246 msgid "PRO Details" 247 msgstr "" 248 249 #: multisite-robotstxt-manager.php:190 multisite-robotstxt-manager.php:195 250 msgid "You are not authorized to perform this action." 251 msgstr "" 252 220 253 #: templates/footer.php:18 221 254 msgid "Created by" 222 255 msgstr "" 223 256 224 #: templates/home.php:24 257 #: templates/home.php:25 258 msgid "Full Network Update - All Network Websites" 259 msgstr "" 260 261 #: templates/home.php:26 262 msgid "Only Websites You Are A Member Of: Default" 263 msgstr "" 264 265 #: templates/home.php:30 225 266 msgid "update network" 226 267 msgstr "" 227 268 228 #: templates/home.php:48 269 #: templates/home.php:54 270 msgid "update website rules" 271 msgstr "" 272 273 #: templates/home.php:57 229 274 msgid "Rule Suggestions" 230 275 msgstr "" 231 276 232 #: templates/home.php: 53277 #: templates/home.php:62 233 278 msgid "Allow Upload Path" 234 279 msgstr "" 235 280 236 #: templates/home.php:6 0281 #: templates/home.php:69 237 282 msgid "Allow Theme Path" 238 283 msgstr "" 239 284 240 #: templates/home.php: 67285 #: templates/home.php:76 241 286 msgid "Add Sitemap URL" 242 287 msgstr "" 243 288 244 #: templates/home.php:72 245 msgid "update website rules" 246 msgstr "" 247 248 #: templates/home.php:81 289 #: templates/home.php:87 249 290 msgid "Saved Robots.txt File" 250 291 msgstr "" 251 292 252 #: templates/home.php:8 1293 #: templates/home.php:87 253 294 msgid "The live robots.txt file for this website." 254 295 msgstr "" 255 296 256 #: templates/home.php:9 1297 #: templates/home.php:97 257 298 msgid "Network Locked Robots.txt File" 258 299 msgstr "" 259 300 260 #: templates/home.php:9 1301 #: templates/home.php:97 261 302 msgid "" 262 303 "Website settings (above) will automatically be appended to the network " -
multisite-robotstxt-manager/tags/1.0.5/multisite-robotstxt-manager.php
r1489846 r1492883 5 5 * Description: A Multisite Network Robots.txt Manager. Quickly manage your Network Websites robots.txt files from a single administration area. 6 6 * Tags: robotstxt, robots.txt, robots, robot, spiders, virtual, search, google, seo, plugin, network, wpmu, multisite, technerdia, tribalnerd 7 * Version: 1.0. 47 * Version: 1.0.5 8 8 * License: GPL 9 9 * Copyright (c) 2016, techNerdia LLC. … … 28 28 MsRobotstxtManagerConstants( Array( 29 29 'MS_ROBOTSTXT_MANAGER_BASE_URL' => get_bloginfo( 'url' ), 30 'MS_ROBOTSTXT_MANAGER_VERSION' => '1.0. 4',30 'MS_ROBOTSTXT_MANAGER_VERSION' => '1.0.5', 31 31 'MS_ROBOTSTXT_MANAGER_WP_MIN_VERSION' => '3.8', 32 32 -
multisite-robotstxt-manager/tags/1.0.5/readme.txt
r1489846 r1492883 6 6 Requires at least: 3.8 7 7 Tested up to: 4.6.0 8 Stable tag: 1.0. 48 Stable tag: 1.0.5 9 9 10 10 … … 14 14 == Description == 15 15 16 ### UPGRADE NOTICE 16 = UPGRADE NOTICE = 17 17 18 18 After auto upgrading: return to the network plugin admin, this will deactivate the plugin, then click the Network Activate link to activate the plugin again. … … 25 25 26 26 27 ### For Support & Bugs 27 = For Support & Bugs = 28 28 29 29 Please [contact us directly](http://technerdia.com/help/) if you need assistance or have found a bug. 30 30 31 31 32 ### View, Report Bugs, Contribute! 32 = View, Report Bugs, Contribute! = 33 33 34 34 Visit this [Plugin on Github!](https://github.com/tribalNerd/multisite-robotstxt-manager/) Clone/fork yourself a copy, report a bug or submit a ticket & pull request! 35 35 36 36 37 ### Features: 37 = Features: = 38 38 39 39 * Network wide robots.txt file, shared across all sites. … … 49 49 50 50 51 ### Quick Info: 51 = Quick Info: = 52 52 53 53 * The default "Network Wide" robots.txt file is NOT a live robots.txt file. … … 60 60 61 61 62 ### Make It Work: 62 = Make It Work: = 63 63 64 64 * Network Admin: Modify and save the default robots.txt file, then click the "update network" button to copy the default robots.txt file to all Websites on the Network. … … 81 81 82 82 83 ### Install through the Wordpress Admin 83 = Install through the Wordpress Admin = 84 84 85 85 * It is recommended that you use the built in Wordpress installer to install plugins. … … 92 92 93 93 94 ### Upload and Install 94 = Upload and Install = 95 95 96 96 * If uploading, upload the /ms-robotstxt-manager/ folder to /wp-content/plugins/ folder for your Worpdress install. … … 108 108 [Feedback](http://technerdia.com/feedback/) 109 109 110 ### Frequently Asked Questions: 110 = Frequently Asked Questions: = 111 111 112 112 = Q) Can the plugin update all Websites at once? = … … 236 236 237 237 238 ### Understanding the Default Settings 238 = Understanding the Default Settings = 239 239 240 240 When you first enter the plugin admin via the Network Admin, the shown robots.txt file is the default "network only" or "network wide" working copy. Modify the default robots.txt file, when done click the "update network" button to replicate the robots.txt file to all Network Websites. 241 241 242 242 243 ### The Network Append Marker 243 = The Network Append Marker = 244 244 245 245 The marker {APPEND_WEBSITE_ROBOTSTXT} within the Network Robots.txt File is replaced by Website unique robots.txt file rules. Use the marker in your customized Network robots.txt files to automatically append the Website robots.txt file rules when the Network is updated. 246 246 247 247 248 ### Robots.txt Files within Directories 248 = Robots.txt Files within Directories = 249 249 250 250 * This plugin WILL render robots.txt files within directories - however, … … 255 255 256 256 257 ### Testing Robots.txt Files 257 = Testing Robots.txt Files = 258 258 259 259 * Use Google's Webmaster Tools to Validate your Robots.txt Files.... with Google at least.: … … 269 269 270 270 271 ### New Website Added to Network 271 = New Website Added to Network = 272 272 273 273 * If all Websites use the saved Network default robots.txt file, click the "update network" button to copy the default robots.txt file over to any new Websites you have. … … 275 275 276 276 277 ### Disabling 277 = Disabling = 278 278 279 279 * Disable a Website: To disable the Multisite Robots.txt Manager on a Website, select the Website from the dropdown menu, then click the "change sites" button. With the Website's robots.txt file open, click the "disable this website" button. This will clear the robots.txt file and sitemap structure settings for this Website only, making the Wordpress default robots.txt file display. … … 281 281 282 282 283 ### Resetting 283 = Resetting = 284 284 285 285 * Reset Default: Something wrong? No worries! When viewing the Networks robots.txt file, click the "reset to default" button to replace the displayed robots.txt file with the core "coded in" default robots.txt file. … … 287 287 288 288 289 ### Presets / Examples Tab 289 = Presets / Examples Tab = 290 290 291 291 * This feature allows you to quickly duplicate premade robots.txt files and a sitemap structure url, to either the default network wide robots.txt file or a selected Websites robots.txt file. … … 295 295 296 296 297 ### Recommended Sitemap Plugins 297 = Recommended Sitemap Plugins = 298 298 299 299 * Google XML Sitemaps: http://wordpress.org/extend/plugins/google-sitemap-generator/ … … 305 305 306 306 == Changelog == 307 308 = 1.0.5 = 309 * Modified class_helper->getSitemapUrl(): added get_option( 'siteurl' ) check for sitemap url 310 * Corrected commented out redirect action 311 * Corrected marketup in robots.txt file, again. 312 * Added final public to class_presets methods 307 313 308 314 = 1.0.4 = … … 426 432 427 433 428 :: Screenshots 429 -------- 434 == Screenshots == 430 435 431 436 - More Screenshots --> http://technerdia.com/msrtm/screenshots/ -
multisite-robotstxt-manager/trunk/includes/class_admin.php
r1489846 r1492883 116 116 // Set Post Action Redirect 117 117 if ( filter_input( INPUT_POST, 'ms_robotstxt_manager' ) ) { 118 //add_action( 'wp_loaded', array( &$this, 'pluginRedirect' ) );118 add_action( 'wp_loaded', array( &$this, 'pluginRedirect' ) ); 119 119 } 120 120 } -
multisite-robotstxt-manager/trunk/includes/class_helper.php
r1489846 r1492883 203 203 switch_to_blog( $blog_id ); 204 204 205 // Get Site URL 206 $sitemap_url_base = get_option( 'siteurl' ) ? get_option( 'siteurl' ) : MS_ROBOTSTXT_MANAGER_BASE_URL; 207 205 208 // Base XML File Locations To check 206 $root_xml_file_location = get_headers( MS_ROBOTSTXT_MANAGER_BASE_URL. '/sitemap.xml' );207 $alt_xml_file_location = get_headers( MS_ROBOTSTXT_MANAGER_BASE_URL. '/sitemaps/sitemap.xml' );209 $root_xml_file_location = get_headers( $sitemap_url_base . '/sitemap.xml' ); 210 $alt_xml_file_location = get_headers( $sitemap_url_base . '/sitemaps/sitemap.xml' ); 208 211 209 212 // Check if xml sitemap exists 210 213 if ( $root_xml_file_location && $root_xml_file_location[0] == 'HTTP/1.1 200 OK' ) { 211 214 // http://domain.com/sitemap.xml 212 $url = MS_ROBOTSTXT_MANAGER_BASE_URL. '/sitemap.xml';215 $url = $sitemap_url_base . '/sitemap.xml'; 213 216 214 217 } elseif ( $alt_xml_file_location && $alt_xml_file_location[0] == 'HTTP/1.1 200 OK' ) { 215 218 // http://domain.com/sitemaps/sitemap.xml 216 $url = MS_ROBOTSTXT_MANAGER_BASE_URL. '/sitemaps/sitemap.xml';219 $url = $sitemap_url_base . '/sitemaps/sitemap.xml'; 217 220 218 221 } else { -
multisite-robotstxt-manager/trunk/includes/class_presets.php
r1489846 r1492883 45 45 * @return string 46 46 */ 47 public function defaultAltRobotstxt()47 final public function defaultAltRobotstxt() 48 48 { 49 49 $txt = "# robots.txt\n"; … … 82 82 * @return string 83 83 */ 84 public function wordpressRobotstxt()84 final public function wordpressRobotstxt() 85 85 { 86 86 $txt = "# robots.txt\n"; … … 100 100 * @return string 101 101 */ 102 public function openRobotstxt()102 final public function openRobotstxt() 103 103 { 104 104 $txt = "# robots.txt\n"; … … 115 115 * @return string 116 116 */ 117 public function bloggerRobotstxt()117 final public function bloggerRobotstxt() 118 118 { 119 119 $txt = "# robots.txt\n"; … … 163 163 * @return string 164 164 */ 165 public function blockedRobotstxt()165 final public function blockedRobotstxt() 166 166 { 167 167 $txt = "# robots.txt\n"; … … 178 178 * @return string 179 179 */ 180 public function googleRobotstxt()180 final public function googleRobotstxt() 181 181 { 182 182 $txt = "# robots.txt\n"; -
multisite-robotstxt-manager/trunk/languages/multisite-robotstxt-manager-en_US.po
r1486759 r1492883 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Multisite Robots.txt Manager | MS Robots.txt 1.0. 3\n"5 "Project-Id-Version: Multisite Robots.txt Manager | MS Robots.txt 1.0.4\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/multisite-robotstxt-manager\n" 7 "POT-Creation-Date: 2016-0 8-30 22:26:54+00:00\n"8 "PO-Revision-Date: 2016-0 8-30 22:26:54+00:00\n"7 "POT-Creation-Date: 2016-09-06 09:51:57+00:00\n" 8 "PO-Revision-Date: 2016-09-06 09:51:57+00:00\n" 9 9 "Last-Translator: Automatically generated\n" 10 10 "Language-Team: none\n" … … 15 15 "Plural-Forms: nplurals=2; plural=(n != 1);\n" 16 16 17 #: includes/class_admin.php: 35617 #: includes/class_admin.php:424 18 18 msgid "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this websites customized robots.txt file." 19 19 msgstr "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this websites customized robots.txt file." 20 20 21 #: includes/class_admin.php: 36121 #: includes/class_admin.php:429 22 22 msgid "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this websites default Wordpress robots.txt file." 23 23 msgstr "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this websites default Wordpress robots.txt file." 24 24 25 #: includes/class_admin.php:257 25 #: includes/class_admin.php:169 26 msgid "<u>All Network Websites Have Been Updated</u>: The saved network robots.txt file has been published to all websites." 27 msgstr "<u>All Network Websites Have Been Updated</u>: The saved network robots.txt file has been published to all websites." 28 29 #: includes/class_admin.php:166 30 msgid "<u>Blogs You Are Member Of Have Been Updated</u>: The saved network robots.txt file has been published to allowed websites." 31 msgstr "<u>Blogs You Are Member Of Have Been Updated</u>: The saved network robots.txt file has been published to allowed websites." 32 33 #: includes/class_disabler.php:31 34 msgid "<u>Network Disabled</u>: The Multisite Robots.txt Manager Plugin is no longer managing robots.txt files across network websites. Click the \"update network\" button to reenable the plugin." 35 msgstr "<u>Network Disabled</u>: The Multisite Robots.txt Manager Plugin is no longer managing robots.txt files across network websites. Click the \"update network\" button to reenable the plugin." 36 37 #: includes/class_admin.php:160 38 msgid "<u>Preset Option Updated</u>: The preset has been saved as the network robots.txt file. Click the \"update network\" button to publish the robots.txt file across the network." 39 msgstr "<u>Preset Option Updated</u>: The preset has been saved as the network robots.txt file. Click the \"update network\" button to publish the robots.txt file across the network." 40 41 #: includes/class_disabler.php:34 42 msgid "<u>Settings Deleted</u>: All Multisite Robots.txt Manager Plugin settings have been removed across the network. To re-enable: Save a preset robots.txt file or create your own robots.txt file, then click the \"update network\" button to update ." 43 msgstr "<u>Settings Deleted</u>: All Multisite Robots.txt Manager Plugin settings have been removed across the network. To re-enable: Save a preset robots.txt file or create your own robots.txt file, then click the \"update network\" button to update ." 44 45 #: includes/class_disabler.php:28 46 msgid "<u>Website Disabled</u>: The Multisite Robots.txt Manager Plugin is no longer managing the robots.txt file on this website. Click the \"update update\" button to reenable the website." 47 msgstr "<u>Website Disabled</u>: The Multisite Robots.txt Manager Plugin is no longer managing the robots.txt file on this website. Click the \"update update\" button to reenable the website." 48 49 #: includes/class_admin.php:163 50 msgid "<u>Website Settings Updated</u>: " 51 msgstr "<u>Website Settings Updated</u>: " 52 53 #: includes/class_admin.php:326 26 54 msgid "A Bloggers Robots.txt File: Optimized for blog focused Wordpress websites." 27 55 msgstr "A Bloggers Robots.txt File: Optimized for blog focused Wordpress websites." … … 35 63 msgstr "A Multisite Robots.txt Manager Plugin For Wordpress." 36 64 37 #: includes/class_core.php:89 38 msgid "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be activated on Network Enabled Wordpress installs. Download and install the plugin, \"Robots.txt Manager\" for standalone Wordpress installs." 39 msgstr "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be activated on Network Enabled Wordpress installs. Download and install the plugin, \"Robots.txt Manager\" for standalone Wordpress installs." 40 41 #: includes/class_core.php:94 42 msgid "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be activated within the Network Admin." 43 msgstr "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be activated within the Network Admin." 44 45 #: templates/home.php:67 65 #: templates/home.php:76 46 66 msgid "Add Sitemap URL" 47 67 msgstr "Add Sitemap URL" 48 68 49 #: includes/class_admin.php: 35169 #: includes/class_admin.php:419 50 70 msgid "All network websites are currently displaying the default Wordpress robots.txt file. To enable, click the 'update network' button below." 51 71 msgstr "All network websites are currently displaying the default Wordpress robots.txt file. To enable, click the 'update network' button below." 52 72 53 #: templates/home.php:6 073 #: templates/home.php:69 54 74 msgid "Allow Theme Path" 55 75 msgstr "Allow Theme Path" 56 76 57 #: templates/home.php: 5377 #: templates/home.php:62 58 78 msgid "Allow Upload Path" 59 79 msgstr "Allow Upload Path" 60 80 61 #: includes/class_admin.php: 25481 #: includes/class_admin.php:323 62 82 msgid "Alternative Robots.txt File: Simular to the plugins default robots.txt file, with more disallows." 63 83 msgstr "Alternative Robots.txt File: Simular to the plugins default robots.txt file, with more disallows." 64 84 65 #: includes/class_admin.php:3 01 includes/class_admin.php:31285 #: includes/class_admin.php:370 includes/class_admin.php:381 66 86 msgid "Are You Sure You Want To Submit This?" 67 87 msgstr "Are You Sure You Want To Submit This?" … … 71 91 msgstr "AskAapche Robots.txt Example" 72 92 73 #: includes/class_upgrade.php:544 74 msgid "Bad Robots.txt Rewrite Rule Found" 75 msgstr "Bad Robots.txt Rewrite Rule Found" 76 77 #: includes/class_upgrade.php:154 93 #: includes/class_upgrade.php:163 78 94 msgid "Click the button to automatically copy old settings over, and then purge the old settings from the database" 79 95 msgstr "Click the button to automatically copy old settings over, and then purge the old settings from the database" 80 96 81 #: includes/class_upgrade.php:5 4482 msgid "Click the button to automatically correct the badrobots.txt rewrite rule."83 msgstr "Click the button to automatically correct the badrobots.txt rewrite rule."84 85 #: includes/class_upgrade.php:4 3497 #: includes/class_upgrade.php:554 98 msgid "Click the button to automatically correct the missing robots.txt rewrite rule." 99 msgstr "Click the button to automatically correct the missing robots.txt rewrite rule." 100 101 #: includes/class_upgrade.php:444 86 102 msgid "Click the button to automatically remove robots.txt files left by other plugins." 87 103 msgstr "Click the button to automatically remove robots.txt files left by other plugins." … … 95 111 msgstr "Created by" 96 112 97 #: includes/class_admin.php: 253113 #: includes/class_admin.php:322 98 114 msgid "Default Robots.txt File: The plugins default installed robots.txt file." 99 115 msgstr "Default Robots.txt File: The plugins default installed robots.txt file." 100 116 101 #: includes/class_admin.php:3 06117 #: includes/class_admin.php:375 102 118 msgid "Disable saved robots.txt files across all network websites, restoring the default Wordpress robots.txt file." 103 119 msgstr "Disable saved robots.txt files across all network websites, restoring the default Wordpress robots.txt file." 104 120 105 #: includes/class_admin.php:3 00121 #: includes/class_admin.php:369 106 122 msgid "Disable the saved robots.txt file on this website, restoring the default Wordpress robots.txt file." 107 123 msgstr "Disable the saved robots.txt file on this website, restoring the default Wordpress robots.txt file." 108 124 109 #: includes/class_core.php:120125 #: multisite-robotstxt-manager.php:173 110 126 msgid "Donations" 111 127 msgstr "Donations" 112 128 113 #: includes/class_core.php:117129 #: multisite-robotstxt-manager.php:170 114 130 msgid "F.A.Q." 115 131 msgstr "F.A.Q." 116 132 117 #: includes/class_core.php:119133 #: multisite-robotstxt-manager.php:172 118 134 msgid "Feedback" 119 135 msgstr "Feedback" 136 137 #: templates/home.php:25 138 msgid "Full Network Update - All Network Websites" 139 msgstr "Full Network Update - All Network Websites" 120 140 121 141 #: templates/sidebar.php:16 … … 127 147 msgstr "Google Robots.txt F.A.Q." 128 148 129 #: includes/class_admin.php: 258149 #: includes/class_admin.php:327 130 150 msgid "Google Robots.txt File: A Google friendly robots.txt file." 131 151 msgstr "Google Robots.txt File: A Google friendly robots.txt file." … … 135 155 msgstr "It only takes a few seconds to <a href=\"http://wordpress.org/extend/plugins/multisite-robotstxt-manager/\" target=\"_blank\">rate this plugin</a>! Your rating helps create motivation for future developments" 136 156 137 #: includes/class_upgrade.php:4 34157 #: includes/class_upgrade.php:444 138 158 msgid "Left Over Robots.txt Files Found" 139 159 msgstr "Left Over Robots.txt Files Found" 140 160 141 #: includes/class_admin.php: 259161 #: includes/class_admin.php:328 142 162 msgid "Lockdown Robots.txt File: Disallow everything, prevent spiders from indexing the website." 143 163 msgstr "Lockdown Robots.txt File: Disallow everything, prevent spiders from indexing the website." … … 147 167 msgstr "MS Robots.txt" 148 168 149 #: includes/class_ core.php:149169 #: includes/class_upgrade.php:633 150 170 msgid "MSRTM PRO failed to automatically upgrade - a new version is ready! Please contact us for download instructions." 151 171 msgstr "MSRTM PRO failed to automatically upgrade - a new version is ready! Please contact us for download instructions." 172 173 #: includes/class_upgrade.php:554 174 msgid "Missing Robots.txt Rewrite Rule" 175 msgstr "Missing Robots.txt Rewrite Rule" 152 176 153 177 #: templates/sidebar.php:35 … … 163 187 msgstr "Multisite Robots.txt Manager for Wordpress" 164 188 165 #: includes/class_admin.php: 346 includes/class_admin.php:356189 #: includes/class_admin.php:414 includes/class_admin.php:424 166 190 msgid "Multisite Robots.txt Manager is Active" 167 191 msgstr "Multisite Robots.txt Manager is Active" 168 192 169 #: includes/class_admin.php: 351 includes/class_admin.php:361193 #: includes/class_admin.php:419 includes/class_admin.php:429 170 194 msgid "Multisite Robots.txt Manager is Disabled" 171 195 msgstr "Multisite Robots.txt Manager is Disabled" … … 175 199 msgstr "Multisite Robots.txt Manager | MS Robots.txt" 176 200 177 #: templates/home.php:9 1201 #: templates/home.php:97 178 202 msgid "Network Locked Robots.txt File" 179 203 msgstr "Network Locked Robots.txt File" 180 204 181 #: includes/class_core.php:113205 #: multisite-robotstxt-manager.php:166 182 206 msgid "Network Settings" 183 207 msgstr "Network Settings" 184 208 185 #: includes/class_upgrade.php:1 54209 #: includes/class_upgrade.php:163 186 210 msgid "Old Plugin Data Found" 187 211 msgstr "Old Plugin Data Found" 188 212 189 #: includes/class_admin.php:256 213 #: templates/home.php:26 214 msgid "Only Websites You Are A Member Of: Default" 215 msgstr "Only Websites You Are A Member Of: Default" 216 217 #: includes/class_admin.php:325 190 218 msgid "Open Robots.txt File: Fully open robots.txt file, no disallows." 191 219 msgstr "Open Robots.txt File: Fully open robots.txt file, no disallows." 192 220 193 #: includes/class_core.php:121221 #: multisite-robotstxt-manager.php:174 194 222 msgid "PRO Details" 195 223 msgstr "PRO Details" … … 219 247 msgstr "Robots.txt Documentation" 220 248 221 #: includes/class_admin.php: 263249 #: includes/class_admin.php:332 222 250 msgid "Robots.txt File Presets" 223 251 msgstr "Robots.txt File Presets" … … 231 259 msgstr "Robots.txt Specifications" 232 260 233 #: templates/home.php: 48261 #: templates/home.php:57 234 262 msgid "Rule Suggestions" 235 263 msgstr "Rule Suggestions" 236 264 237 #: templates/home.php:8 1265 #: templates/home.php:87 238 266 msgid "Saved Robots.txt File" 239 267 msgstr "Saved Robots.txt File" 240 268 241 #: includes/class_admin.php: 272269 #: includes/class_admin.php:341 242 270 msgid "Showing!" 243 271 msgstr "Showing!" … … 247 275 msgstr "Submit Feedback" 248 276 249 #: includes/class_core.php:118277 #: multisite-robotstxt-manager.php:171 250 278 msgid "Support" 251 279 msgstr "Support" 252 280 253 #: templates/home.php:8 1281 #: templates/home.php:87 254 282 msgid "The live robots.txt file for this website." 255 283 msgstr "The live robots.txt file for this website." 256 284 257 #: includes/class_admin.php: 346285 #: includes/class_admin.php:414 258 286 msgid "The robots.txt file template below is currently being used across all active network websites. The saved robots.txt file rules for each website will replace the {APPEND_WEBSITE_ROBOTSTXT} marker." 259 287 msgstr "The robots.txt file template below is currently being used across all active network websites. The saved robots.txt file rules for each website will replace the {APPEND_WEBSITE_ROBOTSTXT} marker." … … 263 291 msgstr "Unauthorized Access." 264 292 265 #: includes/class_ core.php:149293 #: includes/class_upgrade.php:633 266 294 msgid "Upgrade Notice" 267 295 msgstr "Upgrade Notice" 268 296 269 #: includes/class_admin.php:3 11297 #: includes/class_admin.php:380 270 298 msgid "WARNING: Delete all settings related to the Multisite Robots.txt Manager Plugin across the entire network." 271 299 msgstr "WARNING: Delete all settings related to the Multisite Robots.txt Manager Plugin across the entire network." … … 275 303 msgstr "Web Robots Database" 276 304 277 #: includes/class_core.php:115305 #: multisite-robotstxt-manager.php:168 278 306 msgid "Website Settings" 279 307 msgstr "Website Settings" 280 308 281 #: templates/home.php:9 1309 #: templates/home.php:97 282 310 msgid "Website settings (above) will automatically be appended to the network robots.txt file and saved as the robots.txt for this website." 283 311 msgstr "Website settings (above) will automatically be appended to the network robots.txt file and saved as the robots.txt for this website." 284 312 285 #: includes/class_admin.php: 255313 #: includes/class_admin.php:324 286 314 msgid "Wordpress Limited Robots.txt File: Only disallows wp-includes and wp-admin." 287 315 msgstr "Wordpress Limited Robots.txt File: Only disallows wp-includes and wp-admin." 288 316 289 #: includes/class_core.php:67 includes/class_core.php:72317 #: multisite-robotstxt-manager.php:190 multisite-robotstxt-manager.php:195 290 318 msgid "You are not authorized to perform this action." 291 319 msgstr "You are not authorized to perform this action." … … 303 331 msgstr "http://technerdia.com/msrtm/" 304 332 305 #: includes/class_upgrade.php:4 35333 #: includes/class_upgrade.php:445 306 334 msgid "remove old data" 307 335 msgstr "remove old data" … … 315 343 msgstr "tribalNerd, Chris Winters" 316 344 317 #: templates/home.php: 24345 #: templates/home.php:30 318 346 msgid "update network" 319 347 msgstr "update network" 320 348 321 #: includes/class_upgrade.php:5 45349 #: includes/class_upgrade.php:555 322 350 msgid "update rewrite rules" 323 351 msgstr "update rewrite rules" 324 352 325 #: templates/home.php: 72353 #: templates/home.php:54 326 354 msgid "update website rules" 327 355 msgstr "update website rules" 328 356 329 #: includes/class_upgrade.php:1 55357 #: includes/class_upgrade.php:164 330 358 msgid "upgrade and purge network" 331 359 msgstr "upgrade and purge network" -
multisite-robotstxt-manager/trunk/languages/multisite-robotstxt-manager.pot
r1486759 r1492883 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Multisite Robots.txt Manager | MS Robots.txt 1.0. 3\n"5 "Project-Id-Version: Multisite Robots.txt Manager | MS Robots.txt 1.0.4\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/multisite-robotstxt-manager\n" 7 "POT-Creation-Date: 2016-0 8-30 22:26:54+00:00\n"7 "POT-Creation-Date: 2016-09-06 09:51:57+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 #: includes/class_admin.php:253 15 #: includes/class_admin.php:160 16 msgid "" 17 "<u>Preset Option Updated</u>: The preset has been saved as the network " 18 "robots.txt file. Click the \"update network\" button to publish the robots." 19 "txt file across the network." 20 msgstr "" 21 22 #: includes/class_admin.php:163 23 msgid "<u>Website Settings Updated</u>: " 24 msgstr "" 25 26 #: includes/class_admin.php:166 27 msgid "" 28 "<u>Blogs You Are Member Of Have Been Updated</u>: The saved network robots." 29 "txt file has been published to allowed websites." 30 msgstr "" 31 32 #: includes/class_admin.php:169 33 msgid "" 34 "<u>All Network Websites Have Been Updated</u>: The saved network robots.txt " 35 "file has been published to all websites." 36 msgstr "" 37 38 #: includes/class_admin.php:322 16 39 msgid "Default Robots.txt File: The plugins default installed robots.txt file." 17 40 msgstr "" 18 41 19 #: includes/class_admin.php: 25442 #: includes/class_admin.php:323 20 43 msgid "" 21 44 "Alternative Robots.txt File: Simular to the plugins default robots.txt file, " … … 23 46 msgstr "" 24 47 25 #: includes/class_admin.php: 25548 #: includes/class_admin.php:324 26 49 msgid "" 27 50 "Wordpress Limited Robots.txt File: Only disallows wp-includes and wp-admin." 28 51 msgstr "" 29 52 30 #: includes/class_admin.php: 25653 #: includes/class_admin.php:325 31 54 msgid "Open Robots.txt File: Fully open robots.txt file, no disallows." 32 55 msgstr "" 33 56 34 #: includes/class_admin.php: 25757 #: includes/class_admin.php:326 35 58 msgid "" 36 59 "A Bloggers Robots.txt File: Optimized for blog focused Wordpress websites." 37 60 msgstr "" 38 61 39 #: includes/class_admin.php: 25862 #: includes/class_admin.php:327 40 63 msgid "Google Robots.txt File: A Google friendly robots.txt file." 41 64 msgstr "" 42 65 43 #: includes/class_admin.php: 25966 #: includes/class_admin.php:328 44 67 msgid "" 45 68 "Lockdown Robots.txt File: Disallow everything, prevent spiders from indexing " … … 47 70 msgstr "" 48 71 49 #: includes/class_admin.php: 26372 #: includes/class_admin.php:332 50 73 msgid "Robots.txt File Presets" 51 74 msgstr "" 52 75 53 #: includes/class_admin.php: 27276 #: includes/class_admin.php:341 54 77 msgid "Showing!" 55 78 msgstr "" 56 79 57 #: includes/class_admin.php:3 0080 #: includes/class_admin.php:369 58 81 msgid "" 59 82 "Disable the saved robots.txt file on this website, restoring the default " … … 61 84 msgstr "" 62 85 63 #: includes/class_admin.php:3 01 includes/class_admin.php:31286 #: includes/class_admin.php:370 includes/class_admin.php:381 64 87 msgid "Are You Sure You Want To Submit This?" 65 88 msgstr "" 66 89 67 #: includes/class_admin.php:3 0690 #: includes/class_admin.php:375 68 91 msgid "" 69 92 "Disable saved robots.txt files across all network websites, restoring the " … … 71 94 msgstr "" 72 95 73 #: includes/class_admin.php:3 1196 #: includes/class_admin.php:380 74 97 msgid "" 75 98 "WARNING: Delete all settings related to the Multisite Robots.txt Manager " … … 77 100 msgstr "" 78 101 79 #: includes/class_admin.php: 346 includes/class_admin.php:356102 #: includes/class_admin.php:414 includes/class_admin.php:424 80 103 msgid "Multisite Robots.txt Manager is Active" 81 104 msgstr "" 82 105 83 #: includes/class_admin.php: 346106 #: includes/class_admin.php:414 84 107 msgid "" 85 108 "The robots.txt file template below is currently being used across all active " … … 88 111 msgstr "" 89 112 90 #: includes/class_admin.php: 351 includes/class_admin.php:361113 #: includes/class_admin.php:419 includes/class_admin.php:429 91 114 msgid "Multisite Robots.txt Manager is Disabled" 92 115 msgstr "" 93 116 94 #: includes/class_admin.php: 351117 #: includes/class_admin.php:419 95 118 msgid "" 96 119 "All network websites are currently displaying the default Wordpress robots." … … 98 121 msgstr "" 99 122 100 #: includes/class_admin.php: 356123 #: includes/class_admin.php:424 101 124 msgid "" 102 125 "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this " … … 104 127 msgstr "" 105 128 106 #: includes/class_admin.php: 361129 #: includes/class_admin.php:429 107 130 msgid "" 108 131 "<a href=\"%1$s/robots.txt\" target=\"_blank\">Click here</a> to view this " … … 110 133 msgstr "" 111 134 112 #: includes/class_core.php:67 includes/class_core.php:72 113 msgid "You are not authorized to perform this action." 114 msgstr "" 115 116 #: includes/class_core.php:89 117 msgid "" 118 "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be " 119 "activated on Network Enabled Wordpress installs. Download and install the " 120 "plugin, \"Robots.txt Manager\" for standalone Wordpress installs." 121 msgstr "" 122 123 #: includes/class_core.php:94 124 msgid "" 125 "Activation Failed: The \"Multisite Robots.txt Manager\" Plugin can only be " 126 "activated within the Network Admin." 127 msgstr "" 128 129 #: includes/class_core.php:113 130 msgid "Network Settings" 131 msgstr "" 132 133 #: includes/class_core.php:115 134 msgid "Website Settings" 135 msgstr "" 136 137 #: includes/class_core.php:117 138 msgid "F.A.Q." 139 msgstr "" 140 141 #: includes/class_core.php:118 142 msgid "Support" 143 msgstr "" 144 145 #: includes/class_core.php:119 146 msgid "Feedback" 147 msgstr "" 148 149 #: includes/class_core.php:120 150 msgid "Donations" 151 msgstr "" 152 153 #: includes/class_core.php:121 154 msgid "PRO Details" 155 msgstr "" 156 157 #: includes/class_core.php:149 135 #: includes/class_disabler.php:28 136 msgid "" 137 "<u>Website Disabled</u>: The Multisite Robots.txt Manager Plugin is no " 138 "longer managing the robots.txt file on this website. Click the \"update " 139 "update\" button to reenable the website." 140 msgstr "" 141 142 #: includes/class_disabler.php:31 143 msgid "" 144 "<u>Network Disabled</u>: The Multisite Robots.txt Manager Plugin is no " 145 "longer managing robots.txt files across network websites. Click the \"update " 146 "network\" button to reenable the plugin." 147 msgstr "" 148 149 #: includes/class_disabler.php:34 150 msgid "" 151 "<u>Settings Deleted</u>: All Multisite Robots.txt Manager Plugin settings " 152 "have been removed across the network. To re-enable: Save a preset robots.txt " 153 "file or create your own robots.txt file, then click the \"update network\" " 154 "button to update ." 155 msgstr "" 156 157 #: includes/class_upgrade.php:163 158 msgid "Old Plugin Data Found" 159 msgstr "" 160 161 #: includes/class_upgrade.php:163 162 msgid "" 163 "Click the button to automatically copy old settings over, and then purge the " 164 "old settings from the database" 165 msgstr "" 166 167 #: includes/class_upgrade.php:164 168 msgid "upgrade and purge network" 169 msgstr "" 170 171 #: includes/class_upgrade.php:444 172 msgid "Left Over Robots.txt Files Found" 173 msgstr "" 174 175 #: includes/class_upgrade.php:444 176 msgid "" 177 "Click the button to automatically remove robots.txt files left by other " 178 "plugins." 179 msgstr "" 180 181 #: includes/class_upgrade.php:445 182 msgid "remove old data" 183 msgstr "" 184 185 #: includes/class_upgrade.php:554 186 msgid "Missing Robots.txt Rewrite Rule" 187 msgstr "" 188 189 #: includes/class_upgrade.php:554 190 msgid "" 191 "Click the button to automatically correct the missing robots.txt rewrite " 192 "rule." 193 msgstr "" 194 195 #: includes/class_upgrade.php:555 196 msgid "update rewrite rules" 197 msgstr "" 198 199 #: includes/class_upgrade.php:633 158 200 msgid "Upgrade Notice" 159 201 msgstr "" 160 202 161 #: includes/class_ core.php:149203 #: includes/class_upgrade.php:633 162 204 msgid "" 163 205 "MSRTM PRO failed to automatically upgrade - a new version is ready! Please " … … 165 207 msgstr "" 166 208 167 #: includes/class_upgrade.php:154168 msgid "Old Plugin Data Found"169 msgstr ""170 171 #: includes/class_upgrade.php:154172 msgid ""173 "Click the button to automatically copy old settings over, and then purge the "174 "old settings from the database"175 msgstr ""176 177 #: includes/class_upgrade.php:155178 msgid "upgrade and purge network"179 msgstr ""180 181 #: includes/class_upgrade.php:434182 msgid "Left Over Robots.txt Files Found"183 msgstr ""184 185 #: includes/class_upgrade.php:434186 msgid ""187 "Click the button to automatically remove robots.txt files left by other "188 "plugins."189 msgstr ""190 191 #: includes/class_upgrade.php:435192 msgid "remove old data"193 msgstr ""194 195 #: includes/class_upgrade.php:544196 msgid "Bad Robots.txt Rewrite Rule Found"197 msgstr ""198 199 #: includes/class_upgrade.php:544200 msgid ""201 "Click the button to automatically correct the bad robots.txt rewrite rule."202 msgstr ""203 204 #: includes/class_upgrade.php:545205 msgid "update rewrite rules"206 msgstr ""207 208 209 #: multisite-robotstxt-manager.php:37 209 210 msgid "MS Robots.txt" … … 218 219 msgstr "" 219 220 221 #: multisite-robotstxt-manager.php:166 222 msgid "Network Settings" 223 msgstr "" 224 225 #: multisite-robotstxt-manager.php:168 226 msgid "Website Settings" 227 msgstr "" 228 229 #: multisite-robotstxt-manager.php:170 230 msgid "F.A.Q." 231 msgstr "" 232 233 #: multisite-robotstxt-manager.php:171 234 msgid "Support" 235 msgstr "" 236 237 #: multisite-robotstxt-manager.php:172 238 msgid "Feedback" 239 msgstr "" 240 241 #: multisite-robotstxt-manager.php:173 242 msgid "Donations" 243 msgstr "" 244 245 #: multisite-robotstxt-manager.php:174 246 msgid "PRO Details" 247 msgstr "" 248 249 #: multisite-robotstxt-manager.php:190 multisite-robotstxt-manager.php:195 250 msgid "You are not authorized to perform this action." 251 msgstr "" 252 220 253 #: templates/footer.php:18 221 254 msgid "Created by" 222 255 msgstr "" 223 256 224 #: templates/home.php:24 257 #: templates/home.php:25 258 msgid "Full Network Update - All Network Websites" 259 msgstr "" 260 261 #: templates/home.php:26 262 msgid "Only Websites You Are A Member Of: Default" 263 msgstr "" 264 265 #: templates/home.php:30 225 266 msgid "update network" 226 267 msgstr "" 227 268 228 #: templates/home.php:48 269 #: templates/home.php:54 270 msgid "update website rules" 271 msgstr "" 272 273 #: templates/home.php:57 229 274 msgid "Rule Suggestions" 230 275 msgstr "" 231 276 232 #: templates/home.php: 53277 #: templates/home.php:62 233 278 msgid "Allow Upload Path" 234 279 msgstr "" 235 280 236 #: templates/home.php:6 0281 #: templates/home.php:69 237 282 msgid "Allow Theme Path" 238 283 msgstr "" 239 284 240 #: templates/home.php: 67285 #: templates/home.php:76 241 286 msgid "Add Sitemap URL" 242 287 msgstr "" 243 288 244 #: templates/home.php:72 245 msgid "update website rules" 246 msgstr "" 247 248 #: templates/home.php:81 289 #: templates/home.php:87 249 290 msgid "Saved Robots.txt File" 250 291 msgstr "" 251 292 252 #: templates/home.php:8 1293 #: templates/home.php:87 253 294 msgid "The live robots.txt file for this website." 254 295 msgstr "" 255 296 256 #: templates/home.php:9 1297 #: templates/home.php:97 257 298 msgid "Network Locked Robots.txt File" 258 299 msgstr "" 259 300 260 #: templates/home.php:9 1301 #: templates/home.php:97 261 302 msgid "" 262 303 "Website settings (above) will automatically be appended to the network " -
multisite-robotstxt-manager/trunk/multisite-robotstxt-manager.php
r1489846 r1492883 5 5 * Description: A Multisite Network Robots.txt Manager. Quickly manage your Network Websites robots.txt files from a single administration area. 6 6 * Tags: robotstxt, robots.txt, robots, robot, spiders, virtual, search, google, seo, plugin, network, wpmu, multisite, technerdia, tribalnerd 7 * Version: 1.0. 47 * Version: 1.0.5 8 8 * License: GPL 9 9 * Copyright (c) 2016, techNerdia LLC. … … 28 28 MsRobotstxtManagerConstants( Array( 29 29 'MS_ROBOTSTXT_MANAGER_BASE_URL' => get_bloginfo( 'url' ), 30 'MS_ROBOTSTXT_MANAGER_VERSION' => '1.0. 4',30 'MS_ROBOTSTXT_MANAGER_VERSION' => '1.0.5', 31 31 'MS_ROBOTSTXT_MANAGER_WP_MIN_VERSION' => '3.8', 32 32 -
multisite-robotstxt-manager/trunk/readme.txt
r1489846 r1492883 6 6 Requires at least: 3.8 7 7 Tested up to: 4.6.0 8 Stable tag: 1.0. 48 Stable tag: 1.0.5 9 9 10 10 … … 14 14 == Description == 15 15 16 ### UPGRADE NOTICE 16 = UPGRADE NOTICE = 17 17 18 18 After auto upgrading: return to the network plugin admin, this will deactivate the plugin, then click the Network Activate link to activate the plugin again. … … 25 25 26 26 27 ### For Support & Bugs 27 = For Support & Bugs = 28 28 29 29 Please [contact us directly](http://technerdia.com/help/) if you need assistance or have found a bug. 30 30 31 31 32 ### View, Report Bugs, Contribute! 32 = View, Report Bugs, Contribute! = 33 33 34 34 Visit this [Plugin on Github!](https://github.com/tribalNerd/multisite-robotstxt-manager/) Clone/fork yourself a copy, report a bug or submit a ticket & pull request! 35 35 36 36 37 ### Features: 37 = Features: = 38 38 39 39 * Network wide robots.txt file, shared across all sites. … … 49 49 50 50 51 ### Quick Info: 51 = Quick Info: = 52 52 53 53 * The default "Network Wide" robots.txt file is NOT a live robots.txt file. … … 60 60 61 61 62 ### Make It Work: 62 = Make It Work: = 63 63 64 64 * Network Admin: Modify and save the default robots.txt file, then click the "update network" button to copy the default robots.txt file to all Websites on the Network. … … 81 81 82 82 83 ### Install through the Wordpress Admin 83 = Install through the Wordpress Admin = 84 84 85 85 * It is recommended that you use the built in Wordpress installer to install plugins. … … 92 92 93 93 94 ### Upload and Install 94 = Upload and Install = 95 95 96 96 * If uploading, upload the /ms-robotstxt-manager/ folder to /wp-content/plugins/ folder for your Worpdress install. … … 108 108 [Feedback](http://technerdia.com/feedback/) 109 109 110 ### Frequently Asked Questions: 110 = Frequently Asked Questions: = 111 111 112 112 = Q) Can the plugin update all Websites at once? = … … 236 236 237 237 238 ### Understanding the Default Settings 238 = Understanding the Default Settings = 239 239 240 240 When you first enter the plugin admin via the Network Admin, the shown robots.txt file is the default "network only" or "network wide" working copy. Modify the default robots.txt file, when done click the "update network" button to replicate the robots.txt file to all Network Websites. 241 241 242 242 243 ### The Network Append Marker 243 = The Network Append Marker = 244 244 245 245 The marker {APPEND_WEBSITE_ROBOTSTXT} within the Network Robots.txt File is replaced by Website unique robots.txt file rules. Use the marker in your customized Network robots.txt files to automatically append the Website robots.txt file rules when the Network is updated. 246 246 247 247 248 ### Robots.txt Files within Directories 248 = Robots.txt Files within Directories = 249 249 250 250 * This plugin WILL render robots.txt files within directories - however, … … 255 255 256 256 257 ### Testing Robots.txt Files 257 = Testing Robots.txt Files = 258 258 259 259 * Use Google's Webmaster Tools to Validate your Robots.txt Files.... with Google at least.: … … 269 269 270 270 271 ### New Website Added to Network 271 = New Website Added to Network = 272 272 273 273 * If all Websites use the saved Network default robots.txt file, click the "update network" button to copy the default robots.txt file over to any new Websites you have. … … 275 275 276 276 277 ### Disabling 277 = Disabling = 278 278 279 279 * Disable a Website: To disable the Multisite Robots.txt Manager on a Website, select the Website from the dropdown menu, then click the "change sites" button. With the Website's robots.txt file open, click the "disable this website" button. This will clear the robots.txt file and sitemap structure settings for this Website only, making the Wordpress default robots.txt file display. … … 281 281 282 282 283 ### Resetting 283 = Resetting = 284 284 285 285 * Reset Default: Something wrong? No worries! When viewing the Networks robots.txt file, click the "reset to default" button to replace the displayed robots.txt file with the core "coded in" default robots.txt file. … … 287 287 288 288 289 ### Presets / Examples Tab 289 = Presets / Examples Tab = 290 290 291 291 * This feature allows you to quickly duplicate premade robots.txt files and a sitemap structure url, to either the default network wide robots.txt file or a selected Websites robots.txt file. … … 295 295 296 296 297 ### Recommended Sitemap Plugins 297 = Recommended Sitemap Plugins = 298 298 299 299 * Google XML Sitemaps: http://wordpress.org/extend/plugins/google-sitemap-generator/ … … 305 305 306 306 == Changelog == 307 308 = 1.0.5 = 309 * Modified class_helper->getSitemapUrl(): added get_option( 'siteurl' ) check for sitemap url 310 * Corrected commented out redirect action 311 * Corrected marketup in robots.txt file, again. 312 * Added final public to class_presets methods 307 313 308 314 = 1.0.4 = … … 426 432 427 433 428 :: Screenshots 429 -------- 434 == Screenshots == 430 435 431 436 - More Screenshots --> http://technerdia.com/msrtm/screenshots/
Note: See TracChangeset
for help on using the changeset viewer.