Tagged Questions
The setlocale tag has no wiki summary.
8
votes
2answers
1k views
PHP/Gettext Problems
I remember running some tests a some months ago with gettext and the following code worked perfectly:
putenv('LANG=l33t');
putenv('LANGUAGE=l33t');
putenv('LC_MESSAGES=l33t');
if ...
4
votes
2answers
262 views
Smarty “capitalize” modifier… always capitalizes “L”? … and “P”?
Quite simply: I'm using Smarty and the |capitalize modifier. It works fine, but when I pass any word with l in it, it capitalizes it, even if it's not at the beginning of the word.
What why?
EDIT: ...
3
votes
3answers
449 views
is setlocale thread-safe function?
i need to change locale in the thread to parse double with strtod() correctly, i'm using setlocale() for this (C++). is it thread safe?
UPD: another problem. when i invoke setlocale() in main ...
3
votes
2answers
482 views
How to format dates based on locale?
In a template I display the day and month of a specific date :
<div class="jour"><?php echo date('d',strtotime($content->getCreatedAt())) ?></div>
<div ...
3
votes
2answers
146 views
Is it feasible to rely on setlocale, and rely on locales being installed?
I was trying to generate a localized date string with strftime, the placeholder I use is %x. The language/locale is setlocale(LC_ALL, array('jp','japanese')), however neither locale was available so ...
2
votes
1answer
129 views
How to make RRDtool use commas instead of dots as decimal separators in graphs
I'm using RRDtool through a Perl script (RRDs) to visualize temperature readings. As I want everything in the graph to be shown in Swedish (weekdays etc), I set the locale to sv_SE.UTF-8 in my Perl ...
2
votes
1answer
42 views
newbie: help using mod_rewrite for localised website
Newbie: help switching locale with JSF
Hi, I hope someone can help, I am having problems switching between locales in particular en_GB to en_US and en_US to en_GB for my website, however all other ...
2
votes
3answers
805 views
How to set JSTL locale from Java code?
I want to set the JSTL locale which is used by <fmt:formatNumber> and friends. I know this is possible with <fmt:setLocale>, but I need to do it dynamically (depending on user data ...
2
votes
1answer
523 views
What does set_locale(LC_CTYPE, 'C'); actually do?
When my PHP script is run with UTF-8 encoding, using non-ascii characters, some PHP functions like strtolower() don't work. I could use mb_strtolower, but this script can be run on all sorts of ...
1
vote
1answer
17 views
How can I set a Variable in For-Loop in a batchscript
I am looking for an solution for a trivial problem, i can't get solved. Please help me with that.
My plan is to read 2 files. one of them is an folder structur the other is a user list.
if the folder ...
1
vote
1answer
75 views
Is the Zend Locale library usable with CodeIgniter?
I've been reading some of the questions and answers regarding locales and some of the suggest the use of the Zend Locale library.
Would it be possible to use this library in CodeIgniter or does it ...
1
vote
1answer
286 views
Why PHP developers can't provide setlocale function as per thread scope
We have setlocale
function in PHP. This function has warning message
The locale information is maintained per process, not per thread. If you are running PHP on a multithreaded server API like IIS ...
1
vote
0answers
272 views
problem calling setLocale when creating a new db in android
i'm trying some db access code for the first time and i'm getting some errors and would
appreciate some help. this is what is happening:
1) i'm creating a new instance of SQLiteOpenHelper by calling ...
1
vote
2answers
292 views
List of locales in Windows
On *nix systems you can do locale -a to get a list of available locales.
What is the equivalent command (or action) in Windows?
I've seen lists on the Internet, but most of them are of just locale ...
1
vote
2answers
403 views
Get month number from name from other language
If I have a month name in a certain language(let's say Albanian), how do I get the number corresponding to it (in PHP)? Besides the obvious method of making an array with the month names of that ...
1
vote
1answer
909 views
NSDateFormatter - set device language as locale?
I'm trying to get the iPhone to display dates formatted by an NSDateFormatter in the current device language.
I have tried setLocale:[NSLocale currentLocale], but that only returns 5 instead of May ...
1
vote
2answers
812 views
Unicode setlocale and strftime fails at windows
I have one page and it's encoding is UTF-8 and If i try to run that code in unix system everythings looks fine but when i try to run in windows(7) some chracters looks question mark(�). How can run ...
1
vote
2answers
1k views
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 ...
0
votes
3answers
51 views
how do I set the default locale for my JVM?
I want to set the default Locale for my JVM to fr_CA. What are the possible options to do this?
I know of only one option Locale.setDefault()
0
votes
1answer
45 views
Widechar sorting and loading from file
I'm currently trying to solve the problem when I need to load rows from the file and then sort them in the right order.
If I manually assign lettes to the array of wint_t and then sort them, ...
0
votes
1answer
102 views
PHP iconv greek/cyrillic transliteration does not work
i have the following test code:
setlocale(LC_ALL, 'en_US.UTF8');
function t($text)
{
echo "$text\n";
echo "encoding: ", mb_detect_encoding($text), "\n";
// transliterate
$text = ...
0
votes
1answer
70 views
Global C array with wide characters as indexes
when i use non-ascii character for defining global array, for example:
const char table[] = {[L'č'] = 'c', ...};
so C handles situation, where i change locale and then access array through those ...
0
votes
0answers
61 views
How to set regional settings in PHP on IIS7.5 per site
I have this issue
I have several web sites on a Windows server 2008 running PHP
The thing is some of them use regional settings for US and some for ES but setLocale() doesnt seem to be affecting the ...
0
votes
1answer
35 views
setlocale doesnt work for am or pm in specific time format
I am using setlocale to convert the time to different language. The date format works fine in english language. Also Its working fine for month for different locale but its not showing 'am' or 'pm'.
...
0
votes
1answer
73 views
php5 intl 1.1.2 LOCALE configuring / not working properly
I had a copy of PHP 5.2.17 (running on Debian) without intl extension installed on my server. I followed this ...
0
votes
1answer
238 views
Gettext and PHP 5.3.5 xampp - Use of undefined constant LC_MESSAGES - assumed 'LC_MESSAGES' in
I am getting the following error:
Notice: Use of undefined constant LC_MESSAGES - assumed 'LC_MESSAGES' in C:\Program Files\xampp\htdocs\xampp\phptest\resources\testi18n.php on line 19
Notice: ...
0
votes
1answer
429 views
Struts2 how switch locale on login?
I have an action viewLoginAction that will redirect to login.jsp. In my action I want to set the locale for the session. I will choose the Locale depends on the hostname.
http://patate -> ...
0
votes
1answer
417 views
Rails 3 Internationalization (I8n) locale set from domain name problem
I created one rails 3 website which can be reached at whereisdaniel.com and whereisdaniel.ru The website at .com should serve up the English version and the site at .ru should serve up the Russian ...
0
votes
2answers
252 views
setting language and locale to my iphone application
Can I give the choice for user to change the language from inside an application instead of changing the general language of the device?
I am using the regular NSLocale class.
0
votes
1answer
682 views
Why isn't my JSP displaying in the German (de_DE) locale when I use <fmt:setLocale>?
I've created the following JSP:
<!-- WebContent/pages/ResourceBundlesJST.jsp -->
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
...
0
votes
1answer
2k views
How can I set locale for JSP using <fmt:setLocale>?
I'm trying to set the local in JSP.
I thought I'd be able to do something like:
<fmt:setLocale value="${param['local']}" scope="session"/>
Java's own page on the topic seem to say exactly so ...
0
votes
1answer
536 views
How to add Norwegian to setlocale()?
I want to add Norwegian date. So that I can have two languages on my website.
According to PHP manual, it says that
The return value of setlocale()
depends on the system that PHP is
running. ...
0
votes
1answer
389 views
Setlocale returns false
I have installed the dutch local (nl_NL utf8) on my webserver (when I execute locale -a I see nl_NL utf8 so this is allright).
However, the dates on my webpage are in english (I have put ...
0
votes
1answer
440 views
Table of conversion of ISO-639/ISO-3166 based language/country locale name to Windows ones and back
I want to convert POSIX locale names like en_US, de_DE that use
ISO-639-1 and ISO-3166 codes
to Windows ones English_United States, German_Germany and back.
I had found following tables on MSDN site:
...