number_with_delimiter() added
This commit is contained in:
parent
ea4d2741a2
commit
9242b9e561
1 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
||||||
%br
|
%br
|
||||||
- if current_user.can_create_project?
|
- if current_user.can_create_project?
|
||||||
You can create up to
|
You can create up to
|
||||||
%strong= pluralize(current_user.projects_limit, "project") + "."
|
%strong= pluralize(number_with_delimiter(current_user.projects_limit), "project") + "."
|
||||||
- else
|
- else
|
||||||
If you are added to a project, it will be displayed here.
|
If you are added to a project, it will be displayed here.
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
.dashboard-intro-text
|
.dashboard-intro-text
|
||||||
%p.slead
|
%p.slead
|
||||||
There are
|
There are
|
||||||
%strong= publicish_project_count
|
%strong= number_with_delimiter(publicish_project_count)
|
||||||
public projects on this server.
|
public projects on this server.
|
||||||
%br
|
%br
|
||||||
Public projects are an easy way to allow everyone to have read-only access.
|
Public projects are an easy way to allow everyone to have read-only access.
|
||||||
|
|
Loading…
Reference in a new issue