internationalization Questions

4

I am attempting to dynamically set the language of an IStringLocalizer at run time. The only available method that seems to do this is IStringLocalizer.WithCulture. However, attempting to use it re...
Ironwork asked 14/3, 2020 at 14:48

3

I've already known how to generate i18n string through react-native-i18n. For example, // en.js source { "hello": "Hello, {{name}}." } // use I18n.t("hello", { name: "John" }) and it shows He...
Depose asked 20/6, 2017 at 9:23

5

Solved

Im new to rails and trying to internationalize my app with I18n. In the locales yaml file for the spanish version im trying to set up the translations as follows: es: categories: "Categorias" ho...
Alive asked 24/3, 2014 at 14:58

3

Solved

I'm migrating a project from next.js 7 to 10. It uses react-intl for translations and was written in TypeScript. In the previous version I had a custom server.js and handled sub-routing (/de, /fr...
Marcello asked 24/12, 2020 at 9:31

13

Solved

I use base internationalization in xCode to manage multiple languages in my app. In a xib file I've got this object : Xrj-9E-2VK it's an UITextView In the corresponding strings file : "Xrj-9E-...
Parenteral asked 17/10, 2013 at 12:11

9

I'm using i18n single file component to have translation support on my application. To do so, I'm using the tag as following <i18n> { "fr": { "text": "blabla in french blabla bla" }, ...
Doud asked 8/12, 2019 at 10:32

15

Solved

I'm trying to follow the internationalization documentation in https://flutter.dev/docs/development/accessibility-and-localization/internationalization#dart-tools and https://docs.google.com/docume...
Tibbs asked 7/12, 2020 at 13:14

4

How can I call a function when the language/locale changes while using i18n? Should I use Vuex or does vue-i18n has a method that allows me to do that?
Nolannolana asked 17/4, 2021 at 17:52

6

Solved

I am looking for a way to transliterate Unicode letter characters from any language into accented Latin letters. The intent is to allow foreigners to gain insight into the pronunciation of names an...
Disputation asked 23/3, 2012 at 16:3

5

How can I get a list of all long month names using the ECMAScript Internationalization API? For example, if the user's locale is en-US, I'd like to get the following: ["January", "February", "Mar...
Antlion asked 10/11, 2017 at 23:12

9

Solved

I am using Flutter to build a Web-App and I want to use the internationalization feature of flutter on my new app. I was following the Flutter-Tutorial and I try to set the app-title using the arb-...
Calmas asked 22/8, 2021 at 18:51

3

Solved

My team is currently working on a web project where the front end uses json api provided by the back end. The technology that we use is Spring Boot and AngularJS. The api has the standard error for...

3

Solved

I am trying to build an in-app language switcher for the app I am working on, but I have tried almost everything method available on Stackoverflow. I also tried Official guide from here https://dev...
Anarthrous asked 12/11, 2022 at 9:31

3

Using Intl.DateTimeFormat.format function you can generate a date string formatted for a specific locale. The options passed to the Intl.DateTimeFormat.format() function allow to know some things a...
Overplus asked 28/10, 2020 at 8:56

2

Solved

I am using next-international package for i18n in my nextjs application. Mostly working well but I want to customize the prefix of the locale. In short, what we want is localhost:3000/ for default ...
Weizmann asked 2/6 at 10:29

3

Solved

For the SEO purposes I need to set up English as default language -> mynextapp.com/ when user enters the website, he/she can choose between ENGLISH or FRENCH, if English is selected the url will...
Upswell asked 13/3, 2021 at 16:26

3

I'm currently working on a multilingual Next.js 13 application, and I'm using the next-intl package for internationalization. I've been trying to set up translated URLs for my routes, but I'm runni...
Fatuous asked 10/5, 2023 at 14:35

4

I followed the react-i18next docs and internationalized my React app. I use the useTranslation hook, which gives me the "t" object. All nice and smooth for now, but I have some non-Hook utility fu...
Arrack asked 9/11, 2019 at 19:32

12

Solved

In my application_controller, I have the following set to include the locale with all paths generated by url_for: def default_url_options(options={}) { :locale => I18n.locale } end My reso...
Weymouth asked 31/12, 2009 at 22:38

6

Solved

I am trying to create a 'normalized' copy of a string, to help reduce duplicate names in a database. The names contain many international characters (ie. accented letters), and I want to create a c...
Zacynthus asked 28/3, 2013 at 16:9

2

Solved

Some articles about Spring internationalization tell how to swap messages passing the locale and etc, but I only found use cases that contains a few messages.. How can I organize and use internat...
Valoniah asked 20/10, 2016 at 21:51

6

Solved

How can I internationalize say a categories table (with a name column) into different languages. How about a products table (consisting of a name and description columns). Which is the best way to ...
Ophidian asked 2/10, 2009 at 6:44

3

Solved

Suppose I'm supplied with a String which is like "$123,456,56.25" or "123'456.67" or something similar to this (with digits and a decimal point and some seperator like , or ' or something else whic...
Clam asked 16/5, 2011 at 11:10

4

Solved

What is the best approach in order to localize images (buttons and other content) in a i18n rails app?
Proudlove asked 10/8, 2009 at 6:56

5

I'm using the deufakt i18n localization plugin to translate a webpage, but I want to turn off localization for my /blog route. Basically what I want is this: mypage.com/es/anotherRoute -> mypage...
Paganism asked 2/7, 2021 at 10:11

© 2022 - 2024 — McMap. All rights reserved.