Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/javascripts/vue_shared/translate_spec.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/javascripts/vue_shared/translate_spec.js b/spec/javascripts/vue_shared/translate_spec.js
index 74bd4ff86b1..5dc0be50116 100644
--- a/spec/javascripts/vue_shared/translate_spec.js
+++ b/spec/javascripts/vue_shared/translate_spec.js
@@ -17,7 +17,7 @@ describe('Vue translate filter', () => {
el,
template: `
<span>
- {{ 'testing' | translate }}
+ {{ 'testing' | t }}
</span>
`,
}).$mount();
@@ -36,7 +36,7 @@ describe('Vue translate filter', () => {
el,
template: `
<span>
- {{ '%d day' | translate-plural('%d days', 1) }}
+ {{ '%d day' | nt('%d days', 1) }}
</span>
`,
}).$mount();
@@ -55,7 +55,7 @@ describe('Vue translate filter', () => {
el,
template: `
<span>
- {{ '%d day' | translate-plural('%d days', 2) }}
+ {{ '%d day' | nt('%d days', 2) }}
</span>
`,
}).$mount();
@@ -74,7 +74,7 @@ describe('Vue translate filter', () => {
el,
template: `
<span>
- {{ 'day' | translate-plural('days', 2) }}
+ {{ 'day' | nt('days', 2) }}
</span>
`,
}).$mount();