Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Toolkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
digital blueprint
Web Component Framework
Toolkit
Commits
8ca5f785
Commit
8ca5f785
authored
2 years ago
by
Kocher, Manuel
Browse files
Options
Downloads
Patches
Plain Diff
Move i18n.t override from debug mode to normal frontend and change it from error to warning
parent
af36f13c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/common/i18next.js
+10
-13
10 additions, 13 deletions
packages/common/i18next.js
with
10 additions
and
13 deletions
packages/common/i18next.js
+
10
−
13
View file @
8ca5f785
...
@@ -125,19 +125,16 @@ export function createInstance(languages, lng, fallback, namespace) {
...
@@ -125,19 +125,16 @@ export function createInstance(languages, lng, fallback, namespace) {
i18n
.
init
(
options
);
i18n
.
init
(
options
);
console
.
assert
(
i18n
.
isInitialized
);
console
.
assert
(
i18n
.
isInitialized
);
// if debug mode is activated, override i18n.t() to print errors if keys are missing
// override i18n.t() to print warnings if keys are missing
if
(
window
.
location
.
hash
.
includes
(
'
debug
'
))
{
const
translate
=
i18n
.
t
;
const
translate
=
i18n
.
t
;
const
that
=
i18n
;
const
that
=
i18n
;
i18n
.
t
=
function
(
keys
,
options
)
{
if
(
!
that
.
exists
(
keys
))
{
i18n
.
t
=
function
(
keys
,
options
)
{
console
.
warn
(
"
Translation warning: Default key
"
+
keys
+
"
does not exist!
"
);
if
(
!
that
.
exists
(
keys
))
{
}
console
.
error
(
"
Error: Translation key
"
+
keys
+
"
does not exist!
"
);
}
return
translate
(
keys
,
options
);
};
return
translate
(
keys
,
options
);
};
}
return
i18n
;
return
i18n
;
}
}
...
...
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