0
votes
1answer
70 views

Why is my UILabel not initializing when using another language? (iOS localization)

I'm applying localization to an iPhone app I'm working on, and slowly going through all texts/strings/labels throughout the app to dynamically retrive the correct language translation done through ...
1
vote
1answer
45 views

Xcode removing language specific storyboards iOS

A while ago i decided to make my application multilanguage. I ended up using localizable.strings. So a different file for each language with all the translations in it. In my main storyboard i just ...
0
votes
1answer
43 views

Change Single Language of Xcode Project

How do you change the default language used by your project without doing localization? What if I want my app to be in Japanese or Italian? Is it enough to just use Japanese or Italian texts? How do I ...
0
votes
1answer
38 views

Xcode warning: The specified input encoding is Unicode (UTF-8), but file contents appear to be Unicode (UTF-16); treating as Unicode (UTF-16)

I create the .strings file by using genstrings command. Output file of this command encoded with UTF-16, but when i add generated .strings file to my project and then bild, Xcode show warning: The ...
0
votes
1answer
26 views

Troubleshooting with internationalisation

I recently added other language support to my ios project. Then, I continued to develop. Now if I turn my language back to English it runs an older (way older) version of the app and I don't know why ...
0
votes
0answers
27 views

Localizable.Strings not picked up on iOS command line build

We have a command-line build script that creates our IPA automatically every day and it was working well until we added Localization. For some reason the command-line build is not picking up ...
1
vote
2answers
55 views

Localization for a very simple app.. How to connect a button?

I have a very simple app which only contains a PickerView, UILocalNotification, UIAlertview and less than 8 views. What I want is: I have a main view which contains two buttons one says English and ...
1
vote
1answer
38 views

Using one storyboard with multiples languages

I want to localize my app in multiple language (like 6 or 7) but i don't want to add as many as storyboard copy. So, for 6 differents languages, I want: One storyboard 6 Localizable.strings In my ...
-1
votes
1answer
68 views

How to Add Malayalm font (India) in iOS app Programically [closed]

In my new app, i wish to add two languages- Malayalam and English.. English is already there.. so now i want to know about malayalam font.. i Search for it more than 2 day, and i cannot find and ...
0
votes
0answers
24 views

Add localizable language to Xcode from shell script

I'm trying to add a new localized strings to the project, from shell script. Is there any way to add them, like when you press the + button under the localizations in the project Info? I tried to ...
0
votes
1answer
37 views

Base Internationalization in OSX

Does Base Internationalization work on OSX 10.7 (with 10.7 sdk) or it's only for 10.8?
1
vote
1answer
78 views

iOS game Localization with String Format

I want to localize strings with numbers inside a sentence. I dont use iOS's Localizable.strings file since it's tedious and error prone and I may decide to rephrase words later on. Here is what I ...
0
votes
3answers
133 views

ios localizable strings are not working

I have made an ios app that is localized to two languages (english and danish, english being default). I have made a Localizable.strings with two subfiles, en and da. Everything should be made ...
0
votes
1answer
147 views

I added a localization in xcode, removed it and now my storyboard is gone

So I wanted to try localizing my app. I had one single Storyboard.storyboard in my project folder. I checked the "use base internationalization" checkbox and then xcode did something with my files. ...
1
vote
2answers
95 views

localize existing iOS app

I can't believe this hasn't been asked before (either I'm too unorganized in my coding practices or I didn't use the right keywords): How can I localize an existing iOS app that doesn't use ...
2
votes
3answers
62 views

Localization fallback language

I want to localize a couple of strings in my iPhone app and it works so far for the 5 languages I've selected. However, I have one issue, if I haven't defined a key for a specific language I want it ...
1
vote
1answer
433 views

Xcode 4.6 localization within plist file

I have started adding more languages to a project of mine and got strings & graphics localized without much trouble. I have one last problem and it is with a plist file. This plist file holds ...
1
vote
1answer
113 views

Unknown class <MyViewController> in Interface Builder file + Localization issue

I have an app with two localizations. Usually I use 'NSLocalizedString' and keep the same source code for both localizations, but one of my ViewControllers has to look and function different for each ...
0
votes
1answer
30 views

Separate builds from localizations

I want to add localization to my iOS app. I was able to do that via the localization mechanism in XCode and used 'localizable.strings' for each of the 2 locales + localized the UI via storyboard and ...
0
votes
0answers
75 views

Xib localization not working

I'm trying to localize xib files to support other languages. The strings file works as expected (I.E: NSLocalizedString(@"si",nil)). But when trying with xib files I'm just getting black screens for ...
0
votes
1answer
69 views

Is it possible to update a localized storyboard's strings?

I localized a part of my application with creating a base.lproj storyboard and 3 string files for it. It was a month ago and after that I added new view controller to app, but this controller's ...
0
votes
0answers
270 views

Base localization + Storyboard + .strings -> no localization

Xcode 4.6, target iOS 6, SDK iOS 6.1 I started with a storyboard that worked well for my app; the strings it contains are in English. I wanted to add a French localization. I did this: Added a base ...
1
vote
1answer
57 views

xcode iOS getting a list of all localizations

How do I get a list of all available localizations? I have an app with 5 localizations. I need to know whether the current locale is in that list and if not, create a fallback. But how do I find out ...
0
votes
0answers
57 views

Xcode Project: Different languages to different targets

I Have one project in Xcode ,this project have 4 different targets: +Main Project -Target1 -Target2 -Target3 -Target4 The project have 7 different languages in the localization: ...
0
votes
1answer
194 views

How to use terminal for working with xCode Command Line Tools?

Context: I have installed the Command Line Tools separately as the conventional method of "xCode->Preferences->Downloads->Components->Command Line Tools->Install" didn't work for me. Purpose: I need ...
0
votes
1answer
98 views

How do two info.plist files in Xcode project work?

I have two info.plist files in a Xcode project and are labeled below. Can someone explain how these work with localization? Project - EN-Info.plist Project - FR-Info.plist
0
votes
1answer
95 views

How to add multiple .strings files [closed]

I need to implement localization / internationalization in my application. As per the tutorial at mobile.tutsplus.com I should be getting a plus button at the bottom of Localizable pane when ...
0
votes
0answers
133 views

Localized resources in ios static library

I followed this Tutorial to use resources in my ios static library. Now, I can use images, xib files, plist files... into my static library but I can't use localized resources.. In my bundle ...
0
votes
1answer
66 views

Xcode - Localization not work when clicking “Make Localized”

I created a string file named "Localizable.strings" from Xcode (File > New > File > Strings File) because I want to localize my app. My string work perfectly now. My localizable string file contains ...
-3
votes
1answer
238 views

Localize IOS button label

I use localization strings to localize UI elements. Everything works, except localizing title of a button. "21.title" = "It should be the localized text"; //does not work I think it would be caused ...
0
votes
1answer
99 views

Localizing for both Simplified and Traditional Chinese in Xcode 4

Xcode 4 defaults to naming both languages as "Chinese" in the project navigator, making it super confusing when I need to edit localizations. Is there a way to make it show Traditional/Simplified ...
2
votes
3answers
163 views

How to correct the Xcode bug of creating lproj folders in the en.lproj folder?

I had a Localizable.strings file in my project for which I wanted to add more localizations. So I went to the Project Settings and clicked the "+" to add languages. Somehow I cannot do that anymore ...
0
votes
1answer
216 views

Localizing attributed UITextView from storyboard

I am using the storyboard and have a view where I have subclassed some UITextViews. My problem is that I am using ibtool --generate-strings-file to extract strings from the storyboard for ...
0
votes
1answer
103 views

Choose different languages for each target within iOS project

I have an iOS project (current XCode) which is supporting 5 languages and have few targets in it. I would like to be able to select somehow languages per target (without removing them manually). Is ...
0
votes
1answer
243 views

App is not changing the language when I switch to another language in the iPhone Settings

I have a strange problem with my app "Apnea Trainer". This app has multiple languages, the default localization is English. Since I sent the last update to Apple (November 2012) I haven't touched the ...
1
vote
1answer
89 views

Right to left and left to right languages in the same app?

To my understanding apple doesn't allow 2 identical apps in diferrent languages on the appstore but what if one language is left to right and the other is right to left? That means diferrent menus, ...
0
votes
0answers
69 views

set iOS app language from server side

I want set my app language from server side. Is this possible? And Is this allowed in AppStore? Please let me know. Thanks in advance.
-1
votes
1answer
76 views

how to localize parsing data?

I am working on localizations. I got some information regarding it i.e, editing label text in Localizable.strings. But i want to localize parsing data. I am using below for editing label text in ...
2
votes
1answer
104 views

OSX: how to localize the name appearing when the mouse flies over the app icon in the dock?

When the user's mouse flies over the app icon in the dock, the name of the app appears on the app icon. According to the tests I just performed, it seams that the name which appears corresponds to ...
0
votes
0answers
90 views

Localization.strings not working from Xcode build/run

When I test my app in the simulator, my localizations work fine. However when I run on my device, they don't work at all and I just get the default en language strings. Now the strange thing is if I ...
2
votes
2answers
199 views

Native iOS Language Translated String and its Language Code Identification (LCID)

How does iOS Show the List of Languages in the Translated String or in the Language's Locale. Is there an LCID associated with it? If so, where can I find it's Mapping? How does it work? Is there ...
0
votes
1answer
75 views

iOS: Localization confessions

I have an application, that should have localization. After a while a found good tutorial project for localization. But it doesn't use any tool for localization, only by Xcode. Should i use Apple's ...
1
vote
1answer
71 views

Localising country not in xcode's list and others not working

I am trying to add the localisation for Tagalog (philippines) which is listed here as country code tl but it's not in xcode 4.5's big list of languages. So how do I add it? If I just add the tl.lproj ...
1
vote
1answer
66 views

iPhone App Store version is different from simulator version: Localization

I submitted a new app to the App Store. I have a Localizable.strings file in my de.lproj directory and one in my en.lproj directory. The German File is set to German and the English file is set to ...
0
votes
3answers
39 views

iOS latin localization

In summary here. We have a medical app that includes a latin locale. On the latest Xcode, I can't add it as a localization for the project. Bug? Not possible? How can we have latin as a locale?
1
vote
1answer
120 views

How can I localize a folder of images for iOS?

I have a project that has already been heavily developed and all of a sudden we realized that we needed a set of images translated. I have the translated images, but I am unsure how to apply them to ...
0
votes
2answers
95 views

Xcode Localization Update

So I have localized a storyboard in Xcode using Use Base Internationalization. I went in and translated all the strings in the strings files. Yay. That took forever. Now I added a new element in the ...
1
vote
1answer
107 views

Localized App Name in Xcode is not shown properly on device

I support 22 languaiges for my app and have in infoPlist.strings file set the CFBundleDisplayName = "App Name"; CFBundleName = "App Name"; apart from that in plist of the project Application has ...
2
votes
0answers
32 views

multiple targets with one and only one different localisation each

My project has 6 targets to one source code base. The 6 targets are different programs with different content thanks to different pre-processor statements. I defined 2 localisations which are French ...
1
vote
1answer
169 views

subfolders in iPhone localization folders

I would like to localize some images in my iPhone project. So I created files: en.lproj/Images/iPad/btn-check-pressed~ipad.png en.lproj/Images/iPadRetina/btn-check-pressed@2x~ipad.png ...

1 2 3 4 5