Skip to content

Commit

Permalink
supports Storyboards
Browse files Browse the repository at this point in the history
  • Loading branch information
Evadne Wu committed May 16, 2012
1 parent 54f1122 commit 39cdfdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion localize.py
Expand Up @@ -132,7 +132,7 @@ def export_xibs(language):
# XIBs
localization = open(language + os.path.sep + 'xib.strings.new', encoding='utf_16', mode='w+')

ibs = [name for name in os.listdir(os.getcwd()) if name.endswith('.xib') and not os.path.isdir(name)]
ibs = [name for name in os.listdir(os.getcwd()) if (name.endswith('.xib') or name.endswith('.storyboard')) and not os.path.isdir(name)]

for ib in ibs:
ib_strings = "en.lproj/" + ib + ".strings.new"
Expand Down

0 comments on commit 39cdfdf

Please sign in to comment.