]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-includes/locale.php
WordPress 3.3.2-scripts
[autoinstalls/wordpress.git] / wp-includes / locale.php
index e69cbf5d29396966e9fb3773aba8d114f1c42c60..1b529bae23eb9ccd82acd8dda1c7ceb4b42c0e37 100644 (file)
@@ -25,7 +25,7 @@ class WP_Locale {
         * Stores the translated strings for the one character weekday names.
         *
         * There is a hack to make sure that Tuesday and Thursday, as well
-        * as Sunday and Saturday don't conflict. See init() method for more.
+        * as Sunday and Saturday, don't conflict. See init() method for more.
         *
         * @see WP_Locale::init() for how to handle the hack.
         *
@@ -65,7 +65,7 @@ class WP_Locale {
        /**
         * Stores the translated strings for 'am' and 'pm'.
         *
-        * Also the capalized versions.
+        * Also the capitalized versions.
         *
         * @since 2.1.0
         * @var array
@@ -314,7 +314,7 @@ class WP_Locale {
        }
 
        /**
-        * PHP4 style constructor which calls helper methods to set up object variables
+        * Constructor which calls helper methods to set up object variables
         *
         * @uses WP_Locale::init()
         * @uses WP_Locale::register_globals()
@@ -322,7 +322,7 @@ class WP_Locale {
         *
         * @return WP_Locale
         */
-       function WP_Locale() {
+       function __construct() {
                $this->init();
                $this->register_globals();
        }