rosa-build/app/assets/javascripts/angularjs/locales.js.erb

28 lines
757 B
Plaintext
Raw Normal View History

var _locales = {
<%I18n.locale = :ru%>
'ru-ru': {
2013-07-19 15:06:30 +01:00
'project.total_branches': [
'Всего %1 ветка',
'Всего %1 ветки',
'Всего %1 веток'
],
2013-07-19 15:06:30 +01:00
'project.total_tags': [
'Всего %1 тег',
'Всего %1 тега',
'Всего %1 тегов'
],
<%= BuildList::STATUSES.map{|s| "'build_list.status.#{s}':'#{BuildList.human_status(s)}'"}.join(',') %>
},
<%I18n.locale = :en%>
'en-us': {
2013-07-19 15:06:30 +01:00
'project.total_branches': [
'Total %1 branch',
'Total %1 branches'
],
2013-07-19 15:06:30 +01:00
'project.total_tags': [
'Total %1 tag',
'Total %1 tags'
],
<%= BuildList::STATUSES.map{|s| "'build_list.status.#{s}':'#{BuildList.human_status(s)}'"}.join(',') %>
}
};