Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
80d7f416
Commit
80d7f416
authored
Apr 24, 2017
by
Ruben Davila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Parse the translate-plural filter in HAML views
parent
64aadef3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
config/initializers/gettext_rails_i18n_patch.rb
config/initializers/gettext_rails_i18n_patch.rb
+4
-0
No files found.
config/initializers/gettext_rails_i18n_patch.rb
View file @
80d7f416
...
...
@@ -10,8 +10,12 @@ module GettextI18nRails
# in a HAML file we convert it to "= _('Stage')", that way
# it can be processed by the "rake gettext:find" script.
def
self
.
convert_to_code
(
text
)
# {{ 'Stage' | translate }} => = _('Stage')
text
.
gsub!
(
/{{ (.*)( \| translate) }}/
,
"= _(
\\
1)"
)
# {{ 'user' | translate-plural('users', users.size) }} => = n_('user', 'users', users.size)
text
.
gsub!
(
/{{ (.*)( \| translate-plural\((.*), (.*)\)) }}/
,
"= n_(
\\
1,
\\
3,
\\
4)"
)
old_convert_to_code
(
text
)
end
end
...
...
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