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

38 lines
1.3 KiB
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 тегов'
],
'platform.automatic_metadata_regeneration.day': 'Раз в день',
'platform.automatic_metadata_regeneration.week': 'Раз в неделю',
2014-02-18 19:16:23 +00:00
'autostart_statuses.0': 'Раз в 12 часов',
'autostart_statuses.1': 'Раз в день',
'autostart_statuses.2': 'Раз в неделю',
2014-01-09 22:56:11 +00:00
<%= 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'
],
'platform.automatic_metadata_regeneration.day': 'Once a day',
'platform.automatic_metadata_regeneration.week': 'Once a week',
2014-02-18 19:16:23 +00:00
'autostart_statuses.0': 'Once a 12 hours',
'autostart_statuses.1': 'Once a day',
'autostart_statuses.2': 'Once a week',
2014-01-09 22:56:11 +00:00
<%= BuildList::STATUSES.map{|s| "'build_list.status.#{s}': '#{BuildList.human_status(s)}'"}.join(',') %>
}
};