localization Questions

3

I've found supportedLocalesOf, but is there a way to get all supported locales, not just check which among a given list are supported? The '*' tag option described in this 2012 post no longer work...
Bisector asked 28/9, 2018 at 6:29

2

I am new to the concept of locales. From what I could understand, I made an Angular 4 app that would read the locale from the browser using the navigator.language() API and supply to Angular's pipe...
Lien asked 14/11, 2017 at 12:20

5

I mean, if I have some Localizable.strings file with some text: /* Cancel string */ "Cancel" = "Cancel"; That app will translate it to spanish (ex.): /* Cancel string */ "Cancel" = "Cance...
Giuliana asked 27/4, 2012 at 6:1

11

I'll soon be working on a large c# project and would like to build in multi-language support from the start. I've had a play around and can get it working using a separate resource file for each la...
Historiated asked 17/12, 2008 at 1:23

5

The Mozilla site says: var number = 123456.789; console.log(new Intl.NumberFormat('de-DE', { style: 'currency', currency: 'EUR' }) .format(number)); // expected output: "123.456,79 €" But in m...

6

I'm trying to get Hibernate Validator setup to use messages from a Spring MessageSource. I have the following setup in my messages-context.xml: <bean id="messageSource" class="org.springframew...
Bernabernadene asked 30/7, 2011 at 17:30

6

Solved

How to get know language (locale) currently Android app uses to display texts to user? I know I can use Locale.getDefault() to get default OS locale. But it may differ from locale used by app to d...
Otherworld asked 31/12, 2011 at 20:44

1

Background I am completely new to Rust (started yesterday) and I'm trying to ensure I've understood correctly. I am looking to write a configuration system for a 'game', and want it to be fast acce...
Perionychium asked 16/8, 2021 at 17:35

2

Currently, I do this: Names -> "name1|name2|name3" Resource.Names.Split('|'); Is it possible to define those names as an array in the resource file so that I don't have to parse by splitting...
Franckot asked 28/8, 2010 at 0:38

3

I found most of the structure of .po files at the GNU Gettext manual. But the manual doesn't say anything about how to set a header. How do I make a header for gettext .po files? Thanks
Grekin asked 14/1, 2010 at 17:18

1

A few months ago I read this article from Apple and discovered that on iOS 13 we could select the app's language directly from the Settings app. Now that iOS 14 beta 6 is installed on a test iPhone...
Sizzler asked 27/8, 2020 at 21:21

28

Solved

On iPhone NSLocalizedString returns the string in the language of the iPhone. Is it possible to force NSLocalizedString to use a specific language to have the app in a different language than the d...

4

Solved

I have an application and I need to use two languages in that application. For example : English Arabic But I don't know how could I do that. Anybody can help me for this? I need some exampl...
Super asked 7/10, 2015 at 9:51

2

How can I get list of supported calendars, timezones, locales in PHP ICU (intlDateFormatter)?
Mcquiston asked 12/9, 2015 at 15:29

2

Solved

I am using Strings.resx, Strings.de.resx, etc. to localize Xamarin.Forms app. I need to be able to change interface language at run time, and it (allmost) works. Xamarin generates static class Str...
Happ asked 7/6, 2017 at 10:42

7

Solved

Successfully integrating Stripe into my online shop, I completely failed to get information on whether/how to configure Stripe to return error messages in German instead of English. So my question...

3

Solved

I am using easy_localization: ^2.3.3 in a flutter project with CSV loader. When I build it is not able to find keys and it gives "Easy Localization: Localization key [...] not found". Any...
Susumu asked 4/12, 2020 at 9:37

2

The project supports RTL; Arabic in particular. The requirement is that all numbers must appear in English format even when language is selected as Arabic Locale, the way we achieve it everywhere i...

2

Solved

I need to find all the strings in my XCode project. I know that I can use grep and regex to accomplish this, but am well versed in neither. The pattern I want to find is anything on one line that ...
Playful asked 10/10, 2014 at 3:54

3

Solved

I'm using ASP.NET Core, and trying to localize the application. I managed to use new asp .net core resources to localize controllers and views, and old resources to localize error messages for mode...
Platinumblond asked 27/11, 2016 at 11:46

2

I encountred a problem when trying to prefixing my routes with new set locale. When I return app()->getLocale() from a controller or a route closure it returns new set locale correctly, but when I ...
Aldrin asked 20/8, 2018 at 20:43

3

Solved

I am trying to localize my SwiftUI Watch app. I don't have any problems with static strings. I use LocalizedKeyStrings in my Text views and add my translations in Localizable.strings files. For exa...
Evaluate asked 27/5, 2020 at 11:54

5

Solved

When I try to localize my app and I create a new Main.strings file for the target language, everything I have created in interface builder (labels, buttons, ...) is added to the new Main.strings fi...
Tillage asked 13/1, 2018 at 12:52

6

Solved

I need to get the system locale to do a number of things, ultimately I want to translate my app using gettext. I am going to distribute it on both Linux and OSX, but I ran into problems on OSX Snow...
Mescal asked 27/10, 2009 at 9:42

1

Solved

New in iOS 15 there is a grammar agreement feature for English and Spanish. For example, I should be able to say You have x apple. And if x is 1, then "apple" is "apple", but i...
Walli asked 28/6, 2021 at 1:21

© 2022 - 2024 — McMap. All rights reserved.