[issue #64] Added missing translations.

This commit is contained in:
George Vinogradov 2012-01-27 20:48:48 +04:00
parent 0cacdc9d4a
commit 9caf496454
3 changed files with 771 additions and 698 deletions

File diff suppressed because it is too large Load Diff

View File

@ -235,19 +235,7 @@ ru:
h3: Заголовок третьего уровня h3: Заголовок третьего уровня
link: Ссылка link: Ссылка
image: Изображение image: Изображение
help: Поиск help: Помощь
roles:
confirm_delete: Вы уверены, что хотите удалить эту роль?
list_header: Роли
list: Список
new: Создать
get_dump: Скачать в YML
from_file: Загрузить из файлa
wrong_file_type: Неверный тип файла
wrong_file_format: Неверный формат файла
successful_load: Все роли успешно загружены
seeding_fail: Ошибка при записи в базу
event_logs: event_logs:
list: Список list: Список
@ -564,6 +552,7 @@ ru:
build_list: Сборочный лист build_list: Сборочный лист
activerecord: activerecord:
errors: errors:
models: models:
project: project:
@ -780,12 +769,14 @@ ru:
status: Статус status: Статус
version: Версия version: Версия
build_list: Сборочный лист build_list: Сборочный лист
download: download:
name: Название name: Название
version: Версия version: Версия
distro: Дистрибутив distro: Дистрибутив
platform: Архитектура platform: Архитектура
counter: Закачки counter: Закачки
notifications: notifications:
subjects: subjects:
new_comment_notification: Новый комментарий к Вашей задаче new_comment_notification: Новый комментарий к Вашей задаче

View File

@ -168,13 +168,6 @@ ActiveRecord::Schema.define(:version => 20120126214447) do
add_index "issues", ["project_id", "serial_id"], :name => "index_issues_on_project_id_and_serial_id", :unique => true add_index "issues", ["project_id", "serial_id"], :name => "index_issues_on_project_id_and_serial_id", :unique => true
create_table "permissions", :force => true do |t|
t.integer "right_id"
t.integer "role_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "platforms", :force => true do |t| create_table "platforms", :force => true do |t|
t.string "description" t.string "description"
t.string "name" t.string "name"
@ -242,12 +235,16 @@ ActiveRecord::Schema.define(:version => 20120126214447) do
t.datetime "updated_at" t.datetime "updated_at"
t.integer "owner_id" t.integer "owner_id"
t.string "owner_type" t.string "owner_type"
t.string "visibility", :default => "open" t.string "visibility", :default => "open"
t.integer "category_id" t.integer "category_id"
t.text "description" t.text "description"
t.string "ancestry" t.string "ancestry"
t.boolean "has_wiki", :default => false t.boolean "has_wiki"
t.boolean "has_issues", :default => true t.boolean "has_issues", :default => true
t.integer "srpm_file_size"
t.string "srpm_file_name"
t.string "srpm_content_type"
t.datetime "srpm_updated_at"
end end
add_index "projects", ["category_id"], :name => "index_projects_on_category_id" add_index "projects", ["category_id"], :name => "index_projects_on_category_id"
@ -272,10 +269,15 @@ ActiveRecord::Schema.define(:version => 20120126214447) do
t.string "owner_type" t.string "owner_type"
end end
create_table "rights", :force => true do |t| create_table "role_lines", :force => true do |t|
t.string "name", :null => false t.integer "role_id"
t.string "controller", :null => false t.integer "relation_id"
t.string "action", :null => false t.datetime "created_at"
t.datetime "updated_at"
end
create_table "roles", :force => true do |t|
t.string "name"
t.datetime "created_at" t.datetime "created_at"
t.datetime "updated_at" t.datetime "updated_at"
end end
@ -323,7 +325,7 @@ ActiveRecord::Schema.define(:version => 20120126214447) do
t.text "ssh_key" t.text "ssh_key"
t.string "uname" t.string "uname"
t.string "role" t.string "role"
t.integer "own_projects_count", :default => 0, :null => false t.integer "own_projects_count", :default => 0, :null => false
t.string "language", :default => "en" t.string "language", :default => "en"
end end