Skip to content

Instantly share code, notes, and snippets.

@naoya
Created July 7, 2013 09:45
Show Gist options
  • Save naoya/5942947 to your computer and use it in GitHub Desktop.
Save naoya/5942947 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
class MainViewController < UIViewController
def viewDidLoad
super
puts NSLocale.preferredLanguages.objectAtIndex(0) # => ja
puts NSLocale.currentLocale.localeIdentifier # => ja_JP
bundle = NSBundle.bundleWithPath(NSBundle.mainBundle.resourcePath.stringByAppendingPathComponent("NSDateTimeAgo.bundle"))
puts bundle.localizedStringForKey("%d seconds ago", value:nil, table:'NSDateTimeAgo') # => en.lproj の値になってしまう
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment