BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
7d16537c
Commit
7d16537c
authored
Apr 19, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Created a plural filter
Added tests for the filter [ci skip]
parent
a3506a22
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
96 additions
and
3 deletions
+96
-3
limit_warning_component.js
...pts/cycle_analytics/components/limit_warning_component.js
+1
-1
total_time_component.js
...cripts/cycle_analytics/components/total_time_component.js
+2
-2
translate.js
app/assets/javascripts/vue_shared/translate.js
+3
-0
translate_spec.js
spec/javascripts/vue_shared/translate_spec.js
+90
-0
No files found.
app/assets/javascripts/cycle_analytics/components/limit_warning_component.js
View file @
7d16537c
...
...
@@ -11,7 +11,7 @@ export default {
aria-hidden="true"
title="Limited to showing 50 events at most"
data-placement="top"></i>
{{ 'Showing
50 events' | translate
}}
{{ 'Showing
%d event' | translate-plural('Showing %d events', 50)
}}
</span>
`
,
};
app/assets/javascripts/cycle_analytics/components/total_time_component.js
View file @
7d16537c
...
...
@@ -12,9 +12,9 @@ global.cycleAnalytics.TotalTimeComponent = Vue.extend({
template
:
`
<span class="total-time">
<template v-if="Object.keys(time).length">
<template v-if="time.days">{{ time.days }} <span>{{
time.days === 1 ? 'day' : 'days' | translate
}}</span></template>
<template v-if="time.days">{{ time.days }} <span>{{
'day' | translate-plural('days', time.days)
}}</span></template>
<template v-if="time.hours">{{ time.hours }} <span v-translate>hr</span></template>
<template v-if="time.mins && !time.days">{{ time.mins }} <span
v-translate>mins
</span></template>
<template v-if="time.mins && !time.days">{{ time.mins }} <span
>{{ 'min' | translate-plural('mins', time.mins) }}
</span></template>
<template v-if="time.seconds && Object.keys(time).length === 1 || time.seconds === 0">{{ time.seconds }} <span>s</span></template>
</template>
<template v-else>
...
...
app/assets/javascripts/vue_shared/translate.js
View file @
7d16537c
...
...
@@ -3,6 +3,9 @@ import locale from '../locale';
export
default
(
Vue
)
=>
{
Vue
.
filter
(
'translate'
,
text
=>
locale
.
gettext
(
text
));
Vue
.
filter
(
'translate-plural'
,
(
text
,
pluralText
,
count
)
=>
locale
.
ngettext
(
text
,
pluralText
,
count
).
replace
(
/%d/g
,
count
));
Vue
.
directive
(
'translate'
,
{
bind
(
el
)
{
const
$el
=
el
;
...
...
spec/javascripts/vue_shared/translate_spec.js
0 → 100644
View file @
7d16537c
import
Vue
from
'vue'
;
import
Translate
from
'~/vue_shared/translate'
;
Vue
.
use
(
Translate
);
describe
(
'Vue translate filter'
,
()
=>
{
let
el
;
beforeEach
(()
=>
{
el
=
document
.
createElement
(
'div'
);
document
.
body
.
appendChild
(
el
);
});
it
(
'translate single text'
,
(
done
)
=>
{
const
comp
=
new
Vue
({
el
,
template
:
`
<span>
{{ 'testing' | translate }}
</span>
`
,
}).
$mount
();
Vue
.
nextTick
(()
=>
{
expect
(
comp
.
$el
.
textContent
.
trim
(),
).
toBe
(
'testing'
);
done
();
});
});
it
(
'translate plural text with single count'
,
(
done
)
=>
{
const
comp
=
new
Vue
({
el
,
template
:
`
<span>
{{ '%d day' | translate-plural('%d days', 1) }}
</span>
`
,
}).
$mount
();
Vue
.
nextTick
(()
=>
{
expect
(
comp
.
$el
.
textContent
.
trim
(),
).
toBe
(
'1 day'
);
done
();
});
});
it
(
'translate plural text with multiple count'
,
(
done
)
=>
{
const
comp
=
new
Vue
({
el
,
template
:
`
<span>
{{ '%d day' | translate-plural('%d days', 2) }}
</span>
`
,
}).
$mount
();
Vue
.
nextTick
(()
=>
{
expect
(
comp
.
$el
.
textContent
.
trim
(),
).
toBe
(
'2 days'
);
done
();
});
});
it
(
'translate plural without replacing any text'
,
(
done
)
=>
{
const
comp
=
new
Vue
({
el
,
template
:
`
<span>
{{ 'day' | translate-plural('days', 2) }}
</span>
`
,
}).
$mount
();
Vue
.
nextTick
(()
=>
{
expect
(
comp
.
$el
.
textContent
.
trim
(),
).
toBe
(
'days'
);
done
();
});
});
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment