Horde_NLS => Horde_Nls
authorMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 3 Feb 2010 22:00:04 +0000 (17:00 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 3 Feb 2010 22:06:15 +0000 (17:06 -0500)
framework/Form/Form/Type.php
framework/Model/lib/Horde/Form/VarRenderer/Xhtml.php
horde/lib/Block/sunrise.php
turba/lib/Driver.php

index 905af4b..da419df 100644 (file)
@@ -687,14 +687,14 @@ class Horde_Form_Type_address extends Horde_Form_Type_longtext {
                 $info['street'] = $addressParts[1];
             }
             if (!empty($addressParts[2])) {
-                include 'Horde/NLS/carsigns.php';
+                include 'Horde/Nls/Carsigns.php';
                 $country = array_search(Horde_String::upper($addressParts[2]), $carsigns);
                 if ($country) {
                     $info['country'] = $country;
                 }
             }
             if (!empty($addressParts[5])) {
-                include 'Horde/NLS/countries.php';
+                include 'Horde/Nls/Countries.php';
                 $country = array_search($addressParts[5], $countries);
                 if ($country) {
                     $info['country'] = Horde_String::lower($country);
index b13612b..c4ee80a 100644 (file)
@@ -1016,7 +1016,7 @@ EOT;
 
         } elseif (preg_match('/(.*?)\r?\n([A-Z]{1,3})-(\d{5})\s+(.*)/i', $address, $addressParts)) {
             /* European address style. */
-            include 'Horde/NLS/carsigns.php';
+            include 'Horde/Nls/Carsigns.php';
             $country = array_search(Horde_String::upper($addressParts[2]), $carsigns);
 
             /* Map24 generated map. */
index 44a0fc9..9feec6e 100644 (file)
@@ -22,7 +22,7 @@ class Horde_Block_Horde_sunrise extends Horde_Block {
 
         global $coordinates;
         if (!is_array($coordinates)) {
-            include 'Horde/NLS/coordinates.php';
+            include 'Horde/Nls/Coordinates.php';
             if (!is_array($coordinates)) {
                 $coordinates = array();
             }
@@ -48,7 +48,7 @@ class Horde_Block_Horde_sunrise extends Horde_Block {
         $location = '';
         global $coordinates;
         if (!is_array($coordinates)) {
-            require 'Horde/NLS/coordinates.php';
+            require 'Horde/Nls/Coordinates.php';
         }
         foreach ($coordinates as $country) {
             if (array_key_exists($this->_params['location'], $country)) {
index e5b55bc..417ee29 100644 (file)
@@ -1974,7 +1974,7 @@ class Turba_Driver
                         $hash[$prefix . 'Address'] .= ' ' . $hash[$prefix . 'PostalCode'];
                     }
                     if (!empty($address[VCARD_ADR_COUNTRY])) {
-                        include 'Horde/NLS/countries.php';
+                        include 'Horde/Nls/Countries.php';
                         $country = array_search($address[VCARD_ADR_COUNTRY], $countries);
                         if ($country === false) {
                             $country = $address[VCARD_ADR_COUNTRY];