Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
ThaliApp
Commits
d48c14df
Verified
Commit
d48c14df
authored
Mar 27, 2018
by
Sébastiaan Versteeg
Browse files
Fix translation of 'heden'
parent
dce24805
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/assets/locales/nl/app/ui/screens/user/Profile.json
View file @
d48c14df
...
...
@@ -10,5 +10,6 @@
"Personal information"
:
"Persoonlijke gegevens"
,
"Achievements for Thalia"
:
"Verdiensten voor Thalia"
,
"Chair"
:
"Voorzitter"
,
"Sorry! We couldn't load any data."
:
"Sorry! We konden geen gegevens laden."
"Sorry! We couldn't load any data."
:
"Sorry! We konden geen gegevens laden."
,
"today"
:
"heden"
}
app/ui/screens/user/Profile.js
View file @
d48c14df
...
...
@@ -92,7 +92,7 @@ const getAchievements = (profile, t) => {
{
achievement
.
periods
&&
achievement
.
periods
.
map
((
period
)
=>
{
let
start
=
Moment
(
period
.
since
);
start
=
start
.
isSame
(
Moment
([
1970
,
1
,
1
]),
'
day
'
)
?
'
?
'
:
start
.
format
(
'
D MMMM YYYY
'
);
const
end
=
period
.
until
?
Moment
(
period
.
until
).
format
(
'
D MMMM YYYY
'
)
:
'
heden
'
;
const
end
=
period
.
until
?
Moment
(
period
.
until
).
format
(
'
D MMMM YYYY
'
)
:
t
(
'
today
'
)
;
let
text
=
''
;
if
(
period
.
role
)
{
...
...
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