vote up 14 vote down star

I came across a comment in some code referring to said code being "I18N safe".

What does this refer to?

flag

@Rich - I disagree with your rollback in this instance. l18N safe is very much a professional slang term. – LFSR Consulting Feb 25 at 23:21
@LFSR: The issue is that terminology and jargon are redundant. Jargon loses since terminology is more used. – Rich B Feb 25 at 23:23
@Rich B: Jargon is a subset of terminology with specific properties. Surely you know this. – chaos Feb 25 at 23:30
@chaos: It adds no value and is to be deleted. – Rich B Feb 25 at 23:33
Wow. This is childish editing. >_> +1 for the question. Was wondering what "I18N" stood for myself, but never bothered to look it up. – strager Feb 25 at 23:40
show 15 more comments

9 Answers

vote up 22 vote down check

I + (some 18 characters) + N = InternationalizatioN

I18N safe means that steps were taken during design and development that will facilitate Localization (L10N) at a later point.

link|flag
vote up 1 vote down

i18n-safe is a vague concept. It generally refers to code that will work in international environments - with different locale, keyboard, character sets etc. True i18n-safe code is hard to write.

It means that code cannot rely on:

sizeof (char) == 1

because that character could be a UTF-32 4-byte character, or a UTF-16 2-byte character, and occupy multiple bytes.

It means that code cannot rely on the length of a string equalling the number of bytes in a string. It means that code cannot rely on zero bytes in a string indicating a nul terminator. It means that code cannot simply assume ASCII encoding of text files, strings, and inputs.

link|flag
vote up 2 vote down

i18n is a shorthand for "internationalization". This was coined at DEC and actually uses lowercase i and n.

As a sidenote: L10n stands for "localization" and uses capital L to distinguish it from the lowercase i.

link|flag
vote up 1 vote down

I18N stands for Internationalization.

In a nutshell: I18N safe code means that it uses some kind of a lookup table for texts on the UI. For this you have to support non-ASCII encodings. This might seem to be easy, but there are some gotchas.

link|flag
vote up 7 vote down

This is most often referred to a code or construct ready for I18N - i.e easily supported by common I18N techniques. For instance, the following is ready:

printf(loadResourceString("Result is %s"), result);

while the following is not:

printf("Result is " + result);

because the word order may vary in different languages. Unicode support, international date-time formatting and the like also qualify.

EDIT: added loadResourceString to make an example close to real life.

link|flag
why isn't that second one the same as the first one? Doesn't result just get pasted in in place of %s? – stimms Feb 25 at 18:04
It does BUT the second one allows you to move the string to resources easily and rearrange words. You can then translate it as for instance "%s является результатом" (in russian) - notice different word order, you cannot use the first form directly. – Michael Pliskin Feb 25 at 20:14
Great answer. This is EXACTLY what i18n-safe means. It usually refers to functions like this one. – Mike Sickler Feb 26 at 0:14
1  
Wouldn't be then "printf( fromResource , result ); " instead? – Oscar Reyes Feb 26 at 2:35
@Oscar: this form is not 'I18N safe', it is one step further when a particular I18N technique is already applied. I think 'I18N safe' refers to general ideas making code more suitable for I18N. However your example qualify as well. – Michael Pliskin Feb 26 at 6:32
show 4 more comments
vote up 1 vote down

Without any additional information, I would guess that it means the code handles text as UTF8 and is locale-aware. See this Wikipedia article for more information.

Can you be a bit more specific?

link|flag
As I'm in a pedantic mood - it could handle the text as any Unicode not just UTF8. UTF7 or UTF16 would do just as well. – MarkJ May 6 at 22:55
vote up 3 vote down

i18n means i**nternationalizatio**n => i (18 letters) n. Code that's marked as i18n safe would be code that correctly handles non-ASCII character data (e.g. Unicode).

link|flag
2  
And, frequently, code that keeps strings in a separate file that can be swapped out, rather than in the source code. – David Thornley Feb 25 at 17:53
vote up 4 vote down

Internationalization. The derivation of it is "the letter I, eighteen letters, the letter N".

link|flag
vote up 3 vote down

I18N stands for Internationalization.

link|flag

Your Answer

Get an OpenID
or

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