localization

Get available languages in asp.net

Hello, i am trying to get the available languages installed in visitors pc's. The problem is that i don't want to get the languages from the internet browser. Any suggestions please? ...

How To Change Ajax Control Toolkit Controls Button Text

Ajax Control Toolkit provides too many useful control and I've use them in a multi language application, nothings bad and everything's fine. the question is that , How can I change the Ajax Control Toolkit Buttons Text, for example in Confirm Button Extender and vice versa . any help appreciated ...

How to add localization in the URL using the Zend Router

I have a Zend Framework site that setups all routes in a file, routes.ini. The routes look like this: routes.popular.route = popular/:type/:page/:sortOrder routes.popular.defaults.controller = popular routes.popular.defaults.action = index routes.popular.defaults.type = images routes.popular.defaults.sortOrder = alltime routes.popular.d...

Database-pages * Sub-applications * Multi-location * multi-language: how does this work?

I'm developing (.NET MVC) a large website which has the following specifications: Database pages (HTML editors) Sub applications (/products, /search, /user-area (more mixed db-pages & apps)) Multi location (both db-pages & apps) Multi language (all: db-pages, apps & multi-location) I have problems with the following: Routes. Do I i...

Implementing USZipCodeField and USStateField in django

I'm looking to implement a zipcode field in django using the form objects from localflavor, but not quite getting them to work. I want to have a zipcode field in a form (or ModelForm in my case), but the fields never validate as a zipcode when calling _get_errors() on the form object. The way I'm implementing it seems right to me but is...

What is the best way to change the language files in Django

I want to change some of the strings in the language file for my language in Django. I can of course just change the .po file, but that seems unwise because if I update Django the file will be changed again. What is the best way to do this? I don't care if the solution is for the specific app I'm working on or for my entire Django inst...

Winform Save file dialog - localization override

My winform application UI is in English. No localization is supported. When i use the OpenFileDialog dialog, it appears with a language as the hosted OS. I'd like to keep all dialogs in my app to be in english no matter what the hosting OS language is. i tried to add this at the init of my app: Thread.CurrentThread.CurrentCulture = new...

Java property file tidying snipplet for localization purposes

Hi! We sent out our localization files (Java .properties) to a translation agency. Now they're ready and I am sure something's messed up: e.g., translator inserted newlines where there should be none. Does someone know of a nice tidying script that I could hit at it? To remove newlines where a) valid escape markers do not exist and b) ...

.NET MVC Localization (resourceprovider) implementation not working correctly

Hi, i'm currently implementing a localized website. I've created a custom ResourceProvider + Factory for storing resources in a database. This all works, i'm storing data as follows: resourceid | url (null) | type (null) | name | culture (null) | value 1 | NULL | Common | Test ...

Designing a Localized Database Schema

I'm working on a web application that I plan to make available in multiple languages. As I design the database, I'm going back and forth between two different ways to store localized descriptions and whatnot in the database. First option is the well-known table_name, table_name_ml type option: TABLE Category ( ID int, ParentID i...

Universal Sorting Function for PHP without the Locale Hassle

I asked a very similar question a while back and I was wondering if correctly sorting an array with UTF-8 chars got a little easier with the new improvements of PHP 5.3+. The solution provided in my previous question works, but I'm looking for a universal solution; one that doesn't depend on the locale specified - kind of what MySQL doe...

WCF - what extension point to choose for applying localization on thread?

I'm implementing localization in my WCF application according to http://www.codeproject.com/KB/WCF/WSI18N.aspx and some other articles. Basicly I'm attaching a message header with current culture info on client (using IClientMessageInspector implementation) and then applying the culture info on current thread on server side (using ICallC...

How can I use an image or icon resource from global resource file in an asp:Image control to set the ImageUrl attribute?

How can I use an image or icon resource from global resource file in an asp:Image control to set the ImageUrl attribute? ...

For a states dropdown, should you list CA provinces by default?

This isn't exactly a programming question, but it relates to web forms, and the generation of markup for states/provinces. My site is by default the en-US locale and there is no Canadian version, should I list the Canadian provinces or should I just have a label that says something like "Other ( Province )" ? I'm realizing th...

Finding intersections

Given a scenario where there are millions of potentially overlapping bounding boxes of variable sizes less the 5km in width. Create a fast function with the arguments findIntersections(Longitude,Latitude,Radius) and the output is a list of those bounding boxes ids where each bounding box origin is inside the perimeter of the function ar...

Why should I use global resources?

Hi there, in some projects (web application projects) I'm using global resource files. (Stored in the App_GlobalResources folder) pro: Really easy to use: e.g. in the markup Property="<%$ Resources:FILENAME, KEY %>" con: - As far as I know, I can't change the content of the resources on the fly. So if a customer is calling and tells ...

PHP Localizing with gettext

I am localizing some PHP/XHTML using the gettext() function in a WordPress plugin. WordPress has 'aliases' for these functions such as __() and _e(), the latter of which automatically echoes the arguments. Now, most of my localization has gone pretty straightforward, such as: <h3><?php _e('Authentication', 'domain'); ?></h3> However,...

Javascript equivalent of vbscript setlocale

Hopefully a quick answer for someone, but my google-fu has deserted me. In vbscript I can use "setlocale" to set the locale a script is running in. I need a javascript version. So for example, say my user is using a browser with french settings, but I want numbers and dates to be in english and worked with as if they are english. Then ...

How to get the ordinal suffix of a number for many languages in Java or Groovy

I am building a multi-languages grails website and I need to get the ordinal suffix of a number for several languages like English, French, Spanish, German and Italian. I believe that this issue is quite common for multi-languages website owners. I have found this article that provides a solution but it is English only. For instance: ...

Best Practices for writing software to be consumed internationally (i18n)

I am looking for opinions from experts that have written software consumed internationally. I would like to understand the best practices people have employeed at each logical softare layer (Data (rdbms), Business (middleware), User Interface). Thanks for any help you can give. ...