Most voted "localization" questions
For geographic location, use the "geolocation" tag. Localization, or L10n, is the process of adapting internationalized software to a specific region or language by adding locality-specific components and text translation, as well as output formatting based on the specific locality (for example, date number and formats, currency sign, etc.)
Learn more…20 questions
Sort by count of
-
19
votes2
answers1037
viewsHow to use Qt translations directly with Qapplication::tr()
In an application developed in Qt I have a non-visual class (i.e., that is not inherited from a QWidget) but that handles text strings that must be presented to the user. To use the Qt translation…
-
13
votes1
answer161
viewsShould translation dictionaries use the original strings as keys?
I have already built some systems and multilingual websites, and in the tools I have known there seems to be a tendency to use the string in the application’s original language (usually English) as…
-
12
votes3
answers278
viewsHow to prevent Django from finding Ids in the template?
I’m using Django 1.4 with path (L10N) enabled, which causes the numeric values in the template to be formatted: 1.234,56. The problem is that every time I put one ID in the template, for example:…
-
12
votes2
answers1272
viewsWhat does it take for a system to support a locale?
I’m developing a system that will require a locale specific for it to work properly. That is, it is not only a matter of user interface, the system as a whole can become unusable if the locale…
-
6
votes1
answer407
viewsIs it possible to show exception message in en-BR?
I would like my exception message to be shown in English, someone would know how? catch (Exception ex) { Debug.Writeline(ex.Message); }
-
4
votes1
answer1118
viewsDaylight saving time error (Summer time) in bootstrap-datepicker
The plugin stopped working with the start of summer time in Brazil. When I disable the option on my machine (Automatically adjust to daylight saving time) the plugin comes back to work. Code:…
-
3
votes1
answer537
viewsInternationalization, Localization and Globalization
I have a project that needs to work with internationalization, where the web application needs to be available at least in portuguese and english, and perhaps also in Spanish. My biggest difficulty…
-
3
votes1
answer121
viewsHow to get customer positioning on the map?
I can only get the client’s approximate location, but is there a way I could locate him on a map, with this data I have? I can only get location data such as city, state, latitude, longitude etc.…
-
3
votes1
answer1708
viewsuser location by IP
I would like to know a php library that would help me with the location of the user access by IP, well I found one on the internet and even worked well (did not show exactly the location) only a 50…
-
2
votes1
answer270
viewsIs there any way to translate the error messages produced by PHP?
Is there any way to translate error messages in PHP? Example: English Use of Undefined Constant X Português Use of indefinite constant X…
-
1
votes3
answers281
viewsHow to remove a word created by a plugin from the site
We use Wordpress and Woocommerce on our site and to calculate shipping we use the plugin Postcode Shipping. Our freight has 3 values (large São Paulo, interior of SP and neighboring cities) and is…
-
1
votes3
answers160
viewsbg-image internationalization by CSS
I have a Rails project that needs different images for each language, however and image is pulled from CSS and I can’t change that. How to change the image according to the chosen language?…
-
1
votes0
answers290
viewsGoogle Maps API that brings nearby sites
Know some Google Maps API that brings the locations close to the location informed, such as commerce, leisure, etc? From now on, thank you.
-
1
votes1
answer459
viewsHow do I pick up the location in the google maps api according to the user’s click?
I entered the site google maps api and saw how to put and use the api on my site, but only managed to make you register a location according to what the user types. For a better experience, I wanted…
-
1
votes2
answers88
viewsRename error message
Follows model: [DisplayName("Data:")] [ValueParser("ptdateparser")] [AssertThat("DeadLine > Today()", ErrorMessage = "* Data deverá ser superior a data de hoje")]…
-
1
votes1
answer315
viewsGoogle Maps does not load registered points (Java)
Good afternoon, everyone. I’m using Google Maps in my app and was working before but stopped working. The app breaks while the map is being loaded. I’ve researched enough on the internet and no…
android android-studio google-maps android-activity localizationasked 4 years, 1 month ago Laura Regina 304 -
0
votes2
answers474
viewsIncomplete week name on strftime return
I am trying to print the day of the week, according to a certain timestamp, with the function strftime. I’m doing it this way: setlocale(LC_ALL, 'pt_BR', 'pt_BR.iso-8859-1', 'pt_BR.utf-8',…
-
0
votes1
answer146
viewsHow to keep Mainactivity "feeding" map Activity?
I have this code and at the moment I need to pass a latitude and longitude to receive on the map and show the current position the user is in, the problem is that when passing to the Intent of the…
-
0
votes1
answer40
viewsNslocalizedstring does not recognize Localizable strings.strings
Next I’m trying to use Swift’s string localization system, but apparently it doesn’t recognize the strings, for example instead of appearing the string Start appears txtinicio, I’m trying to access…
-
-1
votes1
answer44
viewsInternationalization of images
I have an HTML project that needs different images for each language. The image is loaded into index.html with <img src="">. How to change the image according to the chosen language? I tried…