localization Questions
2
Solved
I set the localization as described in Microsoft's blog, but the default language is always English. This is how my Startup.cs looks like with regards to the localization.
CultureInfo[] supportedCu...
Ecclesia asked 11/6, 2017 at 5:44
2
Solved
I was trying to localize my iOS App. And can't do this.
In info.plist I have:
Bundle Name = $(PRODUCT_NAME)
Bundle Display Name = $(PRODUCT_NAME)
Created a infoPlist.strings file
Localized this...
Belle asked 8/1, 2015 at 19:59
6
Solved
I'm working on an app that wants to display lengths either in centimeters (cm) or in inches("). Is there a way to select the right unit from the locale? In any event I'm also going to put in an opt...
Concepcionconcept asked 4/2, 2011 at 13:1
2
Solved
I am localizing an app and while the process seems straight forward (I followed http://www.raywenderlich.com/2876/localization-tutorial-for-ios with minor adjustments for new Xcode interface), and ...
Overlap asked 22/11, 2013 at 21:11
0
I need to change cultures at runtime according to resource files for each culture.
Expected
User clicks a button that switches from current language to the other language. The texts in the page a...
Passant asked 8/4, 2020 at 12:45
1
I am new to flutter.
I apply localization in my flutter project and everything work fine until I edit my json language file to have nested object.
How to call the nested json object correctly?
I...
Persecution asked 2/8, 2019 at 9:32
1
I need to have a multi-language web application.
I was using my code in .net core 2.2 and everything was good.
When I migrated to .net core 3 I face to some issues that one of them was using UseRe...
Colum asked 13/7, 2019 at 7:17
3
Solved
I would like to be able to input text in either Left-to-Right and Right-to-Left languages into a UISearchBar. This means that once a user has started inputing text in right to left languages, I wou...
Rhetoric asked 12/2, 2012 at 18:49
3
Solved
I have my default resource file Resources.resx for which visual studio nicely generates a designer.cs class, but when I try to create Resources.de-DE.resx, it does not generate.
I checked all the ...
Eventuate asked 30/7, 2013 at 9:1
13
Solved
I have an directory, which has a lot of subdirectories. those subdirs sometimes even have subdirs. there are source files inside.
How could I use genstrings to go across all these dirs and subdirs...
Oak asked 30/4, 2010 at 12:15
5
I have an app with an "Error" message. I want to translate this error message.
OK, first I created a file named "Localizable.strings". In the file I wrote:
"ERR" = "Error";
then in my .m file I...
Extramural asked 24/12, 2012 at 13:22
7
genstrings works well to extract localizable content from .m file as,
find . -name \*.m | xargs genstrings -o en.lproj
But, not working for .swift file as,
find . -name \*.swift | xargs genstr...
Diuretic asked 13/10, 2014 at 13:3
3
Solved
I'm trying to translate my Mac app into a few different languages. There are a large number of menu items, particularly in the Edit menu, that are provided by OS X and work automatically. I assumed...
Ramiah asked 2/8, 2012 at 19:47
3
Solved
This should be simple, but I haven't found a way to make this stop happening. Visual Studio publishes a lot of localized DLLs - It appears there is German localization, Spanish localization, Italia...
Fiesta asked 20/2, 2018 at 20:12
5
Solved
One way to do that is to parse new Date().toLocaleString().
But this doesn't work in chromium/webkit since the string it returns isn't dependent of the user's locale (see bug report at http://code....
Orvil asked 30/5, 2011 at 4:19
4
Solved
I have heard that some characters are not present in the Unicode standard despite being written in everyday life by populations of some areas. Especially I have heard about recent Chinese first nam...
Deputy asked 8/6, 2011 at 9:27
5
Solved
If I change the language on an iOS 8.1 simulator to anything and try to detect this from code with
NSString * language = [[NSLocale preferredLanguages] objectAtIndex:0];
NSLog(@"Language: %@", lan...
Segal asked 5/7, 2014 at 15:52
5
Solved
How do i get the numeric value of a unicode character in C#?
For example if tamil character அ (U+0B85) given, output should be 2949 (i.e. 0x0B85)
See also
C++: How to get decimal value of a uni...
Disinclination asked 19/10, 2011 at 18:24
1
Solved
I was reading java.lang.String equals ignore case implementation and trying figure out why is there a lower case compare after upper case is already compared? Are there languages where this m...
Dalliance asked 12/2, 2020 at 20:50
1
I have 2 lang support for my app
1) English - en
2) German - de
I have done all the procedures for localization, the only issue is
whenever I change the language from "en" to "de" or vice versa...
Hickman asked 23/1, 2020 at 15:27
1
Solved
I want to allow all cultures in my application.
As you can see below, I'm allowing few cultures. And I'm having a custom provider that will get the user's culture. If his culture isn't in the Suppo...
Schulman asked 4/2, 2020 at 16:0
2
Solved
I have an app that uses several different languages, and my goal is to have unit tests that can verify the translated text matches our source material.
So far, I have tried & read the followin...
Clothilde asked 27/6, 2017 at 18:1
1
I'm attempting to add localizations to values that appear in my Info.plist file. I'm having no trouble doing this for top-level keys using an InfoPlist.strings file. But, I cannot figure out how to...
Brierwood asked 24/9, 2019 at 19:22
9
Solved
I just can't seem to get localization to work.
I have a class library. Now I want to create resx files in there, and return some values based on the thread culture.
How can I do that?
Avatar asked 17/7, 2009 at 11:53
5
Solved
I'm creating an app that will have a number of variants.
These variants will be controlled by a few strings in multiple Localizable.strings files.
However, 90% of the strings will remain the same...
Aeriell asked 10/10, 2011 at 11:52
© 2022 - 2024 — McMap. All rights reserved.