Next: , Previous: , Up: Individual Programming Languages   [Contents][Index]


15.5.5 JavaScript

RPMs

js

Ubuntu packages

gjs

File extension

js

String syntax
gettext shorthand

_("abc")

gettext/ngettext functions

gettext, dgettext, dcgettext, ngettext, dngettext

textdomain

textdomain function

bindtextdomain

bindtextdomain function

setlocale

automatic

Prerequisite

Use or emulate GNU gettext

use, or emulate

Extractor

xgettext

Formatting with positions

A format method on strings can be used. But since it is not standard in JavaScript, you have to enable it yourself, through

const Format = imports.format;
String.prototype.format = Format.format;
Portability

On platforms without gettext, the functions are not available.

po-mode marking