2013-07-19 13:34:55 +01:00
|
|
|
|
var _locales = {
|
2013-08-02 21:13:59 +01:00
|
|
|
|
<%I18n.locale = :ru%>
|
2013-07-19 13:34:55 +01:00
|
|
|
|
'ru-ru': {
|
2013-07-19 15:06:30 +01:00
|
|
|
|
'project.total_branches': [
|
2013-07-19 13:34:55 +01:00
|
|
|
|
'Всего %1 ветка',
|
|
|
|
|
'Всего %1 ветки',
|
|
|
|
|
'Всего %1 веток'
|
|
|
|
|
],
|
2013-07-19 15:06:30 +01:00
|
|
|
|
'project.total_tags': [
|
2013-07-19 13:34:55 +01:00
|
|
|
|
'Всего %1 тег',
|
|
|
|
|
'Всего %1 тега',
|
|
|
|
|
'Всего %1 тегов'
|
2013-08-02 21:13:59 +01:00
|
|
|
|
],
|
2014-02-11 20:23:34 +00:00
|
|
|
|
'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(',') %>
|
2013-07-19 13:34:55 +01:00
|
|
|
|
},
|
2013-08-02 21:13:59 +01:00
|
|
|
|
<%I18n.locale = :en%>
|
2013-07-19 13:34:55 +01:00
|
|
|
|
'en-us': {
|
2013-07-19 15:06:30 +01:00
|
|
|
|
'project.total_branches': [
|
2013-07-19 13:34:55 +01:00
|
|
|
|
'Total %1 branch',
|
|
|
|
|
'Total %1 branches'
|
|
|
|
|
],
|
2013-07-19 15:06:30 +01:00
|
|
|
|
'project.total_tags': [
|
2013-07-19 13:34:55 +01:00
|
|
|
|
'Total %1 tag',
|
|
|
|
|
'Total %1 tags'
|
2013-08-02 21:13:59 +01:00
|
|
|
|
],
|
2014-02-11 20:23:34 +00:00
|
|
|
|
'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(',') %>
|
2013-07-19 13:34:55 +01:00
|
|
|
|
}
|
|
|
|
|
};
|