tufanv Expert Licensed User Longtime User Aug 2, 2016 #1 Hello, With the release note of 2.80 , we have a chance to localize the app name. Does someone know how to do it ? TY
Hello, With the release note of 2.80 , we have a chance to localize the app name. Does someone know how to do it ? TY
Erel B4X founder Staff member Licensed User Longtime User Aug 2, 2016 #2 Create a folder for each language you want under Files\Special: You can see the two letter codes here: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Create a file named InfoPlist.strings in each of these folders with this content: B4X: "CFBundleDisplayName" = "My App"; "CFBundleName" = "May App"; This is the localized app name. Upvote 0
Create a folder for each language you want under Files\Special: You can see the two letter codes here: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Create a file named InfoPlist.strings in each of these folders with this content: B4X: "CFBundleDisplayName" = "My App"; "CFBundleName" = "May App"; This is the localized app name.
tufanv Expert Licensed User Longtime User Aug 2, 2016 #3 Erel said: Create a folder for each language you want under Files\Special: You can see the two letter codes here: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Create a file named InfoPlist.strings in each of these folders with this content: B4X: "CFBundleDisplayName" = "My App"; "CFBundleName" = "May App"; This is the localized app name. Click to expand... Thanks ! does bundlename and display name are the same and the title of the app ? like "Speedometer" ? Upvote 0
Erel said: Create a folder for each language you want under Files\Special: You can see the two letter codes here: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes Create a file named InfoPlist.strings in each of these folders with this content: B4X: "CFBundleDisplayName" = "My App"; "CFBundleName" = "May App"; This is the localized app name. Click to expand... Thanks ! does bundlename and display name are the same and the title of the app ? like "Speedometer" ?
Erel B4X founder Staff member Licensed User Longtime User Aug 3, 2016 #4 Yes. They are the same as #ApplicationLabel value. Upvote 0
ilan Expert Licensed User Longtime User Aug 30, 2016 #5 this is awesome. i noticed that when i use hebrew my sliders and tableviews turned from right to left. i believe it will do the same on other native views from ios, correct? Upvote 0
this is awesome. i noticed that when i use hebrew my sliders and tableviews turned from right to left. i believe it will do the same on other native views from ios, correct?
Erel B4X founder Staff member Licensed User Longtime User Aug 30, 2016 #6 In iOS9 all the interface orientation changes when you use a right to left language. Upvote 0