[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

View File

@ -1,4 +1,5 @@
en:
will_paginate:
previous_label: Previous
next_label: Next
@ -6,13 +7,13 @@ en:
datatables:
previous_label: Prev.
next_label: Next b r
next_label: Next
first_label: « First
last_label: Last »
empty_label: No data accessible
info_label: Records displayed from _START_ to _END_ total _TOTAL_
info_empty_label: Records displayed from 0 to 0 total 0
filtered_label: (filtered of _MAX_)
filtered_label: (filtered from _MAX_ entries)
layout:
logged_in_as: You logged as
@ -81,6 +82,9 @@ en:
Saturday: Saturday
Sunday: Sunday
time:
ago: назад
menu:
categories: Catalogue
containers: Containers
@ -177,8 +181,64 @@ en:
confirm_clone: To clone?
clone: To clone
wiki:
new_page: New Page
edit_page: Edit Page
delete_page: Delete this Page
page_history: Page History
create_page: Create page
wiki_git_access: Git access
page_title: Page header
expand_collapse: Expand
last_edited_by: Last edited by
home: Home
pages: Pages
wiki_history: Wiki History
git_access: Git access
search_and_hellip: Search and hellip
search: Search
search_popup: Search this Wiki
commit_message_placeholder: Write a small message here explaining this change. (Optional)
edit_commit_message: Edit commit message
preview_title: Preview Page in new window
save_changes: Save current changes
save_button: Save Page
view_page: View Page
view_commit: View version
compare_revisions: Compare versions
back_to_top: Back to Top
no_pages_in: No pages in %{ref}.
no_results_for_search: Nothing found for %{query}.
matches: matches
back_to_history: Back to history
history_for: History for
editing_page: Editing
create_page: Create Page
revert_changes: Revert Page
all_pages_in: "All pages in %{ref}:"
search_results_for: "Search results for %{query}:"
preview: Preview
clones:
http: HTTP
editor:
bold: Bold
italic: Italic
code: Code
unordered_list: Unordered list
ordered_list: Ordered list
blockquote: Blockquote
horizontal_rule: Horizontal rule
h1: First level header
h2: Second level header
h3: Third level header
link: Link
image: Image
help: Help
event_logs:
list:List
list: List
list_header: Event log
repositories:
@ -251,6 +311,7 @@ en:
groups: Groups
edit_collaborators: Edit collaborators
issues: Issues
wiki: Wiki
collaborators:
back_to_proj: Back to project
@ -462,6 +523,7 @@ en:
unfreeze_error: Platform unfreezing error, try again
destroyed: Platform deleted
build_all_success: All project build in progress
clone_success: Cloned successfully
build_list:
saved: Project version '%{project_version}' build list, platform '%{bpl}', architecture '%{arch}' creation success
@ -472,6 +534,15 @@ en:
wrong_platform: For the main repository its mail platform can be chosen only!
can_not_published: Build publishing with status "Build" available only
wiki:
ref_not_exist: No such version
successfully_updated: Page '%{name}' successfully updated
duplicate_page: Page '%{name}' already exists
page_successfully_removed: Page successfully removed
page_not_found: Page '%{name}' not found
revert_success: Changes successfully reverted
patch_does_not_apply: Patch does not apply
attributes:
password: Password
password_confirmation: Confirmation
@ -481,6 +552,14 @@ en:
build_list: Build list
activerecord:
errors:
models:
project:
attributes:
base:
can_have_less_or_equal: You cannot have more than %{count} projects.
models:
category: Category
repository: Repository
@ -614,6 +693,7 @@ en:
created_at: Created
updated_at: Updated
has_issues: Tracker on
has_wiki: Включить Wiki
srpm: Import code from src.rpm
rpm:

View File

@ -235,19 +235,7 @@ ru:
h3: Заголовок третьего уровня
link: Ссылка
image: Изображение
help: Поиск
roles:
confirm_delete: Вы уверены, что хотите удалить эту роль?
list_header: Роли
list: Список
new: Создать
get_dump: Скачать в YML
from_file: Загрузить из файлa
wrong_file_type: Неверный тип файла
wrong_file_format: Неверный формат файла
successful_load: Все роли успешно загружены
seeding_fail: Ошибка при записи в базу
help: Помощь
event_logs:
list: Список
@ -564,6 +552,7 @@ ru:
build_list: Сборочный лист
activerecord:
errors:
models:
project:
@ -780,12 +769,14 @@ ru:
status: Статус
version: Версия
build_list: Сборочный лист
download:
name: Название
version: Версия
distro: Дистрибутив
platform: Архитектура
counter: Закачки
notifications:
subjects:
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
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|
t.string "description"
t.string "name"
@ -246,8 +239,12 @@ ActiveRecord::Schema.define(:version => 20120126214447) do
t.integer "category_id"
t.text "description"
t.string "ancestry"
t.boolean "has_wiki", :default => false
t.boolean "has_wiki"
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
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"
end
create_table "rights", :force => true do |t|
t.string "name", :null => false
t.string "controller", :null => false
t.string "action", :null => false
create_table "role_lines", :force => true do |t|
t.integer "role_id"
t.integer "relation_id"
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 "updated_at"
end