Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hexang 息壤平台
persona
Commits
15a01765
Commit
15a01765
authored
13 years ago
by
Austin King
Browse files
Options
Downloads
Patches
Plain Diff
Bailing if .mo files don't exist. Caching fs exists and readFile calls.
parent
4a4c5afb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/i18n.js
+42
-21
42 additions, 21 deletions
lib/i18n.js
with
42 additions
and
21 deletions
lib/i18n.js
+
42
−
21
View file @
15a01765
...
...
@@ -22,6 +22,8 @@ var logger = require('./logging.js').logger,
const
BIDI_RTL_LANGS
=
[
'
ar
'
,
'
db-LB
'
,
'
fa
'
,
'
he
'
];
var
mo_cache
=
{};
/**
* Connect middleware which is i18n aware.
*
...
...
@@ -40,18 +42,44 @@ exports.abide = function (options) {
if
(
!
options
.
ngettext_alias
)
options
.
ngettext_alias
=
'
ngettext
'
;
if
(
!
options
.
supported_languages
)
options
.
supported_languages
=
[
'
en-US
'
];
if
(
!
options
.
default_lang
)
options
.
default_lang
=
'
en-US
'
;
if
(
!
options
.
debug_lang
)
options
.
debug_lang
=
'
it-CH
'
;
if
(
!
options
.
locale_directory
)
options
.
locale_directory
=
'
locale
'
;
var
mo_file_path
=
function
(
locale
)
{
return
path
.
resolve
(
path
.
join
(
__dirname
,
'
..
'
),
options
.
locale_directory
,
path
.
join
(
locale
,
'
LC_MESSAGES
'
,
'
messages.mo
'
));
};
options
.
supported_languages
.
forEach
(
function
(
lang
,
i
)
{
var
l
=
localeFrom
(
lang
);
mo_cache
[
l
]
=
{
exists
:
path
.
existsSync
(
mo_file_path
(
l
)),
gt
:
null
};
if
(
!
mo_cache
[
l
].
exists
&&
l
!==
'
it_CH
'
)
{
var
msg
=
util
.
format
(
'
Bad locale=[%s] mo file does not exist: [%s]. See locale/README
'
,
l
,
mo_file_path
(
l
));
if
(
l
==
'
en_US
'
)
{
logger
.
warn
(
msg
);
}
else
{
logger
.
error
(
msg
);
throw
msg
;
}
}
});
return
function
(
req
,
resp
,
next
)
{
var
langs
=
parseAcceptLanguage
(
req
.
headers
[
'
accept-language
'
]),
lang_dir
,
lang
=
bestLanguage
(
langs
,
options
.
supported_languages
,
options
.
default_lang
),
debug_lang
=
options
.
debug_lang
.
toLowerCase
(),
locale
;
// TODO(aok): Check if we're not in production mode before switching eo to db-LB
// Must fix before Esperanto could ship.
if
(
lang
&&
lang
.
toLowerCase
&&
lang
.
toLowerCase
()
==
'
it-ch
'
)
{
if
(
lang
&&
lang
.
toLowerCase
&&
lang
.
toLowerCase
()
==
debug_lang
)
{
lang
=
'
db-LB
'
;
// What? http://www.youtube.com/watch?v=rJLnGjhPT1Q
}
...
...
@@ -63,35 +91,28 @@ exports.abide = function (options) {
req
.
lang
=
lang
;
locale
=
localeFrom
(
lang
);
resp
.
local
(
'
locale
'
,
locale
);
req
.
locale
=
locale
;
// Thread saftey, app startup or per request?
gt
=
new
Gettext
();
// Figure out where the mofile should live, and support absolute or
// relative paths
mo_path
=
path
.
resolve
(
path
.
join
(
__dirname
,
'
..
'
),
options
.
locale_directory
,
path
.
join
(
locale
,
'
LC_MESSAGES
'
,
'
messages.mo
'
));
resp
.
local
(
'
format
'
,
format
);
req
.
format
=
format
;
if
(
path
.
existsSync
(
mo_path
))
{
gt
.
addTextdomain
(
locale
,
fs
.
readFileSync
(
mo_path
));
// Per request ???
gt
.
textdomain
(
locale
);
if
(
mo_cache
[
locale
].
exists
)
{
if
(
mo_cache
[
locale
].
gt
===
null
)
{
mo_cache
[
locale
].
gt
=
new
Gettext
();
mo_path
=
mo_file_path
(
locale
);
mo_cache
[
locale
].
gt
.
addTextdomain
(
locale
,
fs
.
readFileSync
(
mo_path
));
mo_cache
[
locale
].
gt
.
textdomain
(
locale
);
}
var
gt
=
mo_cache
[
locale
].
gt
;
resp
.
local
(
options
.
gettext_alias
,
gt
.
gettext
.
bind
(
gt
));
req
.
gettext
=
gt
.
gettext
.
bind
(
gt
);
resp
.
local
(
options
.
ngettext_alias
,
gt
.
ngettext
.
bind
(
gt
));
req
.
ngettext
=
gt
.
ngettext
.
bind
(
gt
);
}
else
{
// TODO if in development mode, warn, test ignore and production error
/* logger.error('Bad language=' + lang + ' or locale=' + locale +
' mo file does not exist. [' + mo_path + ']'); */
// en-US in a non gettext environment... fake it
var
identity
=
function
(
a
,
b
)
{
return
a
;
};
resp
.
local
(
options
.
gettext_alias
,
identity
);
req
.
gettext
=
identity
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment