Questions tagged [localization]

Localization is the process of adapting a product or service to a particular language, culture, and desired local "look-and-feel".

Localization is the process of adapting internationalized software for a specific region or language by adding locale-specific components, translating text as well as formatting output based on specific locale (e.g. number and date formats, currency sign, etc).

Localization can be referred to by the numeronym L10N or l10n (as in: "L", followed by ten more letters, and then "N")

See also:

13710 questions
6
votes
3 answers

Adding Quotes in Java

I asked a similar question earlier for Swift, and I'm now facing the same problem in Android/Java. Is there a way in Java for adding quotation marks to a String? The quotation marks should localize properly (see…
user3386180
6
votes
5 answers

C# Time Formatting. Localization to French how do I get the output "5h 45" for 5:45?

I'm attempting to format dates for a French customer. I need to format Times as shown in the following examples... 06:00 -> 6 h 08:45 -> 8 h 45 10:30 -> 10 h 30 15:00 -> 15 h 17:22 -> 17 h 22 18:00 -> 18 h I've been able to use Custom…
Justin
  • 10,667
  • 15
  • 58
  • 79
6
votes
1 answer

Cannot set default and only culture in ASP.Net Core app

I'm working on Polish operating system: In my Statup.csclass I have following code // Configure the localization options var supportedCultures = new[] { new CultureInfo("en-GB") }; …
Marcin
  • 3,232
  • 4
  • 31
  • 48
6
votes
1 answer

Open Source Projects for i18n à la Facebook

Facebook has this unique and clever approach to localization of their site: translators (in their case users that help to translate the site voluntarily) can simply click on the not-yet-translated strings – which are marked with a green bottom…
6
votes
2 answers

app-localize-behavior and shared localization cache

According to the polymer documentation for app-localize-behavior Each element that displays content to be localized should add Polymer.AppLocalizeBehavior. All of these elements share a common localization cache, so you only need to load…
Jean-Rémi
  • 113
  • 9
6
votes
1 answer

Onscreen keyboard layout localization

My product on Windows XP is beginnig the task of supporting on screen keyboard layouts for more than English. Is there a way of presenting a keyboard in a specific language without having to invent the wheel - ie like knowing every dead key…
6
votes
4 answers

Laravel 5.2- How to add prefix to existing url() helper function?

I use localization functionality in my web application. But I want to add App::getLocale() to url(). So for example, in my view when I add link I want to display the URL in HTML as http://localhost/mysite/en/admin.…
Someone
  • 736
  • 2
  • 12
  • 29
6
votes
2 answers

Localization on the fly with localized Storyboards

I'm working on an app that has a toggle button to switch between English and Arabic language and should be on the fly. I'm using the method in https://github.com/maximbilan/ios_language_manager and it works fine in all cases except if the storyboard…
Hossam Ghareeb
  • 7,063
  • 3
  • 53
  • 64
6
votes
1 answer

info.plist bundle display name localization

There are a lot of posts on this but all seem to be an out of date method? It seems its done using info.plist and adding localization to it and then more info.plist files are created within for each language. It seems to be working but only ever…
Hasen
  • 11,710
  • 23
  • 77
  • 135
6
votes
1 answer

Enabling Client-Based Culture in Asp.Net Core

In MVC 6 by default, CultureInfo.CurrentCulture is the one used by windows, not by the browser. In MVC 5 I could put this in web.config: and that would make the CultureInfo.CurrentCulture be the same…
Omu
  • 69,856
  • 92
  • 277
  • 407
6
votes
1 answer

How to change shortened back button title?

So as we know UINavigationController automatically presents Back button if new view controller was pushed to navigation controller's stack. If title was not set in previous view controller, back button shows default "Back" title. If I set title in…
6
votes
1 answer

ASP Net MVC - Localization of Validation Messages

I ran into a problem with localization of validation messages in my asp net mvc 5 application. I use this for localization: Route Config: [Internationalization] public class RouteConfig { public static void RegisterRoutes(RouteCollection…
Martin
  • 300
  • 1
  • 4
  • 15
6
votes
3 answers

how to convert english date to arabic date ios swift

in my app i am getting date in this format = "2016-02-15 10:49:59" bu i want to display it in this format "الأربعاء, 9 مارس, 2016 10:33 ص" so how can i do this? i mage showing the format in which i want iot
Govind Rakholiya
  • 109
  • 1
  • 1
  • 7
6
votes
2 answers

ASP.NET: explicit vs implicit localization?

To my mind the advantage of implicit localization over explicit localization is that if you have more than one property to localize for a given control, it's a more economical syntax. In the case where you just need to localize some text I use the…
User
  • 62,498
  • 72
  • 186
  • 247
6
votes
1 answer

How do I publish/deploy an MVC Project with ResX Resources?

I have written a VERY simple MVC application which just displays a single string from a Resource file. It works just fine on my local machine but when I deploy the project to the web server I get the error. CS0103: The name 'Resources' does not …
Justin
  • 10,667
  • 15
  • 58
  • 79
1 2 3
99
100