Changeset 3538
- Timestamp:
- 05/30/08 17:07:56 (6 months ago)
- Files:
-
- trunk/tango/text/locale/Core.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/text/locale/Core.d
r3424 r3538 295 295 public static Culture getCulture(int cultureID) { 296 296 Culture culture = getCultureInternal(cultureID, null); 297 298 version (Posix) { 297 299 if (culture is null) 298 299 version (Posix) { 300 error ("Culture not found - if this was not tried set by the application, Tango\n" 300 error ("Culture not found - if this was not tried set by the application, Tango\n" 301 301 ~ "will expect that a locale is set via environment variables LANG or LC_ALL."); 302 302 } 303 else { 304 error ("Culture not found - if this was not tried set by the application, Tango\n" 305 ~ "will expect that a locale is set for the system ."); 306 } 303 307 304 return culture; 308 305 }












