localization Questions
2
Solved
I am developing a .NET Core project where I send Razor pages as e-mail templates. I followed this tutorial:
https://scottsauber.com/2018/07/07/walkthrough-creating-an-html-email-template-with-razor...
Repertory asked 10/2, 2020 at 21:50
1
Solved
i am using flutter localization, and i have added my language and parameters to be translated as json files for each language.. the language json files are in a folder called asset from the root fo...
Truffle asked 5/7, 2020 at 16:54
4
Solved
On Windows using WAMPserver (Apache, MySQL, PHP) I have the following:
//test.php
if (!defined('LC_MESSAGES'))
define('LC_MESSAGES', 6);
$lang = "sv";
putenv("LANG=$lang");
setlocale(LC_ALL, $lan...
Ybarra asked 25/3, 2010 at 9:53
16
Solved
In Android, you can specify the texts in the default locale in res/values/strings.xml. Additional translations can be added for new languages in res/values-it/strings.xml (for Italian for example)....
Horwitz asked 8/8, 2011 at 16:34
1
I'm working on an application using NestJS server and TypeORM. I need to localize some fields, and after research, I found this package typeorm-i18n. The documentation says that if you are using Ne...
Celestial asked 29/6, 2020 at 12:43
5
Solved
Use Case: Logging error messages as displayed to the user.
However you don't want to have messages in your log that depend on the locale of the user's device.
On the other hand you don't want to c...
Shanna asked 21/7, 2013 at 10:50
2
I am trying to localize all the text of a web page using the i18npackage. My requirement is to convert all the text in to the selected locale.
Is it possible to localize dynamic text, such as use...
Perish asked 16/6, 2020 at 9:37
11
Solved
I'm using the Laravel Lang class for localization of my web app. I've added two languages to the languages array in application/config/application.php. This changes the default language it uses for...
Ciera asked 3/10, 2012 at 10:20
4
Solved
Using new Java 8 java.time API, I need to convert LocalDate and get full name of month and day. Like March (not Mar), and Monday (not Mon). Friday the 13th March should be formatted like Friday, 13...
Petrick asked 12/4, 2017 at 20:58
2
I try to force datepicker in Angular 5 project generated by jHipster to use polish locale, for days of week and months. As I understand regarding to documentation:
https://ng-bootstrap.github.io/#...
Avivah asked 17/6, 2018 at 20:29
4
Solved
Windows Vista introduced the concept of three pseudo-locales:
Pseudo Locale Locale Name LCID
=================== =========== ======
Base qps-ploc 0x0501
Mirrored qps-mirr 0x09ff
East Asian-languag...
Allowance asked 12/8, 2011 at 16:1
8
I'm just starting to look at IOS Apps' localization in XCode 5 and I've tried to add an Italian Localization:
Xcode 5 automatically generates the Main.strings file with a single entry, for the on...
Frontolysis asked 2/1, 2014 at 23:22
6
Solved
When you want to add locale-specific resources in Android, you have to add the lowercase ISO-3166-1 code of the language to the resource folder's name. So far so good.
Now I want to add Catalan an...
Peacetime asked 6/12, 2012 at 1:22
2
Solved
I export Word docx from markdown using Pandoc.
By default, everything seems to be marked as English in the docx file. So I tried to override this, e.g. by command line option pandoc -s -S images.m...
Tieratierce asked 7/12, 2016 at 21:31
3
Solved
I'm unable to get the correct localized german strings from the Localizable.strings file. My app setup looks like this
Main.storyboard
Main.storyboard (Base)
Main.strings (German) -> these stri...
Tacky asked 17/8, 2015 at 14:22
1
Solved
Trying to localize a SwiftUI app, I was under the impression that things had gotten a lot simpler.
I created the Localizable.strings files for both of my supported languages, but I can't populate t...
Milreis asked 29/5, 2020 at 18:37
3
I am using i18n for my tranlsations and am happy with how this works on the html side.
However if I have error messages etc defined in strings in my typescript I would like a way to translate thes...
Labonte asked 1/12, 2017 at 10:52
2
Solved
How can I use container apps localized strings from shared extension in Swift. I have already added containers strings files into extension -> build phase -> compile sources but its still not...
Fallow asked 6/9, 2016 at 6:7
3
Solved
I've got a strange problem with date translations in my Ruby On Rails 3 application, and I really don't understand why...
Here are my en.yml and fr.yml :
fr:
date:
formats:
default: "%d/%m/%Y...
Lethia asked 30/9, 2012 at 18:57
6
Solved
This seems like a stupid question. Is the number "10" refered to "10" in Hebrew, Arabic, and all languages? I'm not seeing anywhere where it says you need to do anything special with numbers when d...
Guardado asked 18/10, 2009 at 4:19
2
Solved
I've been using Sails.js for quite some time and was wondering if there is a way to manually change the localization from the controllers depending on the url.
Example: http://example.com/en will ...
Handoff asked 22/1, 2014 at 21:53
3
Solved
I have a route:
Route::get('/setlocale/{locale}', function($locale) {
App::setLocale($locale);
return back();
})->name('setlocale');
When I go to: example.com/setlocale/ro I return back ...
Katabolism asked 26/3, 2019 at 9:25
3
Solved
I am investigating what is possible with i18next localization library.
Right now I have the following code (full Fiddle is here):
HTML
<div data-i18n="title"></div>
<input placeho...
Paint asked 29/3, 2014 at 8:28
1
I have the next localization in my app:
values
values-es
values-es-rMX
When I have locale of the device set to es_EC (Ecuador), I see strings from MX folder!
But accordingly to this tutorial, I s...
Lumbago asked 1/5, 2020 at 14:44
2
Solved
I am getting started learning iOS Stringsdict files and found some existing code on a project which used the following syntax:
<key>zero</key>
<string>You no message.</string&...
Crissy asked 23/4, 2020 at 17:55
© 2022 - 2024 — McMap. All rights reserved.