---
title: "preferredLocalizations(from:)"
framework: foundation
role: symbol
role_heading: Type Method
path: "foundation/bundle/preferredlocalizations(from:)"
---

# preferredLocalizations(from:)

Returns one or more localizations from the specified list that a bundle object would use to locate resources for the current user.

## Declaration

```swift
class func preferredLocalizations(from localizationsArray: [String]) -> [String]
```

## Parameters

- `localizationsArray`: An array of NSString objects, each of which specifies the language ID for a localization that the bundle supports.

## Return Value

Return Value An array of NSString objects containing the preferred localizations. These strings are ordered in the array according to the user’s language preferences and are taken from the strings in the localizationsArray parameter.

## Discussion

Discussion This method does not return all localizations in preference order but only those from which NSBundle would get localized content, typically either a single non-region-specific localization or a region-specific localization followed by a corresponding non-region-specific localization as a fallback. However, clients who want all localizations in preference order can make repeated calls, each time taking the top localizations out of the list of localizations passed in.

## See Also

### Getting localization information

- [localizations](foundation/bundle/localizations.md)
- [preferredLocalizations](foundation/bundle/preferredlocalizations.md)
- [developmentLocalization](foundation/bundle/developmentlocalization.md)
- [localizedInfoDictionary](foundation/bundle/localizedinfodictionary.md)
- [preferredLocalizations(from:forPreferences:)](foundation/bundle/preferredlocalizations(from:forpreferences:).md)
