Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm detecting user accepted languages through $_SERVER['HTTP_ACCEPT_LANGUAGE'] and I'm getting strange language and country codes.

Language codes I've found:

  • es-419
  • es-es_tradnl
  • *

I've checked some code language listings and haven't found these codes:

I understand that es-es_tradnl means Spanish traditional, but any clue about es-419 nor '*'...
Any clues about where does that codes come from?

Edit, question extended:
Where can I find a full list of language codes?

share|improve this question
es-419 stands for Latin American Spanish. – bažmegakapa Nov 14 '11 at 8:57
where can I find that description? – Raúl Ferràs Nov 14 '11 at 8:58
1  
I googled es-419 :). – bažmegakapa Nov 14 '11 at 8:59
yah, that was obvious... – Raúl Ferràs Nov 14 '11 at 9:06

2 Answers

up vote 3 down vote accepted

HTTPbis, Part 3, Section 2.4_

The name space of language subtags is administered by the IANA (see http://www.iana.org/assignments/language-subtag-registry).

share|improve this answer
I cannot see es-es_tradnl on that list – Raúl Ferràs Nov 14 '11 at 14:21
1  
The IANA list, per definition, is the complete list of registered language codes. Of course that doesn't help when the code isn't registered, in which case Google is your friend. – Julian Reschke Nov 14 '11 at 17:00
Your comment completes your answer ;) – Raúl Ferràs Nov 14 '11 at 19:53

HTTP/1.1: Header Field Definitions:

The special range "*", if present in the Accept-Language field, matches every tag not matched by any other range present in the Accept-Language field.


As I already mentioned in the comments, es-419 stands for

Spanish appropriate for the Latin America and Caribbean region, using the UN region code

from Wikipedia

share|improve this answer
Should I interpret then that users with a * as accept language accept any language? – Raúl Ferràs Nov 14 '11 at 9:05
@clinisbut If the language quality factor assigned to it is greater than zero, then yes (so it has no ;q=0 after it). – bažmegakapa Nov 14 '11 at 9:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.