community_engine 2.0.0.beta2 → 2.0.0.beta3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile +4 -0
- data/README.markdown +3 -3
- data/about.yml +1 -1
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/editor_plugin.js +8 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/editor_plugin_src.js +1001 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress10.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress11.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress12.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress2.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress3.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress4.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress5.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress6.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress7.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress8.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/progress9.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/restore.gif +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/images/restore.png +0 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/langs/da.js +5 -0
- data/app/assets/javascripts/tinymce/plugins/tinyautosave/langs/en.js +5 -0
- data/app/assets/{javascripts → stylesheets}/cropper.css +0 -0
- data/app/controllers/comments_controller.rb +1 -1
- data/app/controllers/forums_controller.rb +3 -6
- data/app/controllers/moderators_controller.rb +2 -5
- data/app/controllers/sb_posts_controller.rb +1 -11
- data/app/controllers/tags_controller.rb +1 -2
- data/app/controllers/topics_controller.rb +1 -2
- data/app/helpers/base_helper.rb +1 -1
- data/app/models/photo.rb +5 -5
- data/app/models/tag.rb +36 -0
- data/app/models/user.rb +2 -2
- data/app/views/activities/index.html.haml +1 -1
- data/app/views/admin/events.html.haml +1 -1
- data/app/views/photos/edit.html.haml +1 -1
- data/app/views/photos/show.html.haml +2 -2
- data/app/views/posts/show.html.haml +1 -0
- data/app/views/sb_posts/index.html.haml +10 -5
- data/app/views/shared/_footer_content.html.haml +1 -1
- data/app/views/tags/index.html.haml +1 -1
- data/app/views/tags/manage.html.haml +5 -3
- data/app/views/topics/show.html.haml +6 -1
- data/app/views/users/crop_profile_photo.html.haml +1 -0
- data/community_engine.gemspec +3 -5
- data/config/initializers/recaptcha_constants.rb +2 -2
- data/config/locales/en.yml +1 -1
- data/config/locales/ru-RU.yml +1656 -54
- data/config/locales/sv-SE.yml +212 -4
- data/config/routes.rb +1 -1
- data/lib/community_engine.rb +3 -2
- data/lib/community_engine/engine.rb +8 -6
- data/lib/community_engine/version.rb +1 -1
- data/test/fixtures/taggings.yml +11 -1
- data/test/fixtures/tags.yml +9 -1
- data/test/functional/admin_controller_test.rb +8 -0
- data/test/functional/forums_controller_test.rb +1 -1
- data/test/functional/sb_posts_controller_test.rb +15 -19
- data/test/functional/tags_controller_test.rb +21 -1
- data/test/test_helper.rb +1 -1
- data/test/testapp/db/schema.rb +1 -0
- data/test/unit/tag_test.rb +2 -2
- metadata +75 -69
- data/app/views/sb_posts/index.xml.builder +0 -20
- data/lib/tag_hacks.rb +0 -24
@@ -0,0 +1,5 @@
|
|
1
|
+
tinyMCE.addI18n('da.tinyautosave',{
|
2
|
+
restore_content: "Gendan sikkerhedskopi",
|
3
|
+
no_content: "Der er ingen sikkerhedskopi tilgængelig",
|
4
|
+
warning_message: "Hvis du gendanner sikkerhedskopien, vil du miste alt det indhold, der i øjeblikket er i editoren.\n\nEr du sikker på at du vil gendanne sikkerhedskopien?"
|
5
|
+
});
|
@@ -0,0 +1,5 @@
|
|
1
|
+
tinyMCE.addI18n('en.tinyautosave',{
|
2
|
+
restore_content: "Restore auto-saved content",
|
3
|
+
no_content: "There is no auto-save content available to restore",
|
4
|
+
warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?"
|
5
|
+
});
|
File without changes
|
@@ -63,7 +63,7 @@ class CommentsController < BaseController
|
|
63
63
|
@title = @user.login
|
64
64
|
@back_url = user_path(@user)
|
65
65
|
elsif @user = @commentable.user
|
66
|
-
@title = @commentable.
|
66
|
+
@title = @commentable.respond_to?(:title) ? @commentable.title : @title
|
67
67
|
@back_url = url_for([@user, @commentable])
|
68
68
|
end
|
69
69
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class ForumsController < BaseController
|
2
|
-
before_filter :
|
2
|
+
before_filter :admin_required, :except => [:index, :show]
|
3
3
|
before_filter :find_or_initialize_forum
|
4
4
|
|
5
5
|
uses_tiny_mce do
|
@@ -63,9 +63,6 @@ class ForumsController < BaseController
|
|
63
63
|
def find_or_initialize_forum
|
64
64
|
@forum = params[:id] ? Forum.find(params[:id]) : Forum.new
|
65
65
|
end
|
66
|
-
|
67
|
-
|
68
|
-
def authorized?
|
69
|
-
current_user.admin?
|
70
|
-
end
|
66
|
+
|
67
|
+
|
71
68
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
class ModeratorsController < BaseController
|
2
|
-
before_filter :
|
2
|
+
before_filter :admin_required
|
3
3
|
|
4
4
|
def create
|
5
5
|
@forum = Forum.find(params[:forum_id])
|
@@ -19,8 +19,5 @@ class ModeratorsController < BaseController
|
|
19
19
|
end
|
20
20
|
end
|
21
21
|
|
22
|
-
|
23
|
-
def authorized?
|
24
|
-
current_user.admin?
|
25
|
-
end
|
22
|
+
|
26
23
|
end
|
@@ -27,7 +27,6 @@ class SbPostsController < BaseController
|
|
27
27
|
@posts = SbPost.with_query_options.where(conditions).page(params[:page])
|
28
28
|
|
29
29
|
@users = User.find(:all, :select => 'distinct *', :conditions => ['id in (?)', @posts.collect(&:user_id).uniq]).index_by(&:id)
|
30
|
-
render_posts_or_xml
|
31
30
|
end
|
32
31
|
|
33
32
|
def search
|
@@ -36,19 +35,17 @@ class SbPostsController < BaseController
|
|
36
35
|
@posts = SbPost.with_query_options.where(conditions).page(params[:page])
|
37
36
|
|
38
37
|
@users = User.find(:all, :select => 'distinct *', :conditions => ['id in (?)', @posts.collect(&:user_id).uniq]).index_by(&:id)
|
39
|
-
|
38
|
+
render :action => :index
|
40
39
|
end
|
41
40
|
|
42
41
|
def monitored
|
43
42
|
@user = User.find params[:user_id]
|
44
43
|
@posts = SbPost.with_query_options.joins('INNER JOIN monitorships ON monitorships.topic_id = topics.id').where('monitorships.user_id = ? AND sb_posts.user_id != ?', params[:user_id], @user.id).page(params[:page])
|
45
|
-
render_posts_or_xml
|
46
44
|
end
|
47
45
|
|
48
46
|
def show
|
49
47
|
respond_to do |format|
|
50
48
|
format.html { redirect_to forum_topic_path(@post.forum_id, @post.topic_id) }
|
51
|
-
format.xml { render :xml => @post.to_xml }
|
52
49
|
end
|
53
50
|
end
|
54
51
|
|
@@ -139,11 +136,4 @@ class SbPostsController < BaseController
|
|
139
136
|
@post = SbPost.find_by_id_and_topic_id_and_forum_id(params[:id].to_i, params[:topic_id].to_i, params[:forum_id].to_i) || raise(ActiveRecord::RecordNotFound)
|
140
137
|
end
|
141
138
|
|
142
|
-
def render_posts_or_xml(template_name = action_name)
|
143
|
-
respond_to do |format|
|
144
|
-
format.html { render :action => "#{template_name}" }
|
145
|
-
format.rss { render :action => "#{template_name}.xml.builder", :layout => false }
|
146
|
-
format.xml { render :xml => @posts.to_xml }
|
147
|
-
end
|
148
|
-
end
|
149
139
|
end
|
@@ -25,9 +25,8 @@ class TagsController < BaseController
|
|
25
25
|
@clipping_tags = popular_tags(75, 'Clipping')
|
26
26
|
end
|
27
27
|
|
28
|
-
def manage
|
28
|
+
def manage
|
29
29
|
@search = Tag.search(params[:search])
|
30
|
-
@search.order ||= :ascend_by_name
|
31
30
|
@search.meta_sort ||= 'name.asc'
|
32
31
|
@tags = @search.page(params[:page]).per(100)
|
33
32
|
end
|
@@ -34,8 +34,7 @@ class TopicsController < BaseController
|
|
34
34
|
|
35
35
|
@posts = @topic.sb_posts.recent.includes(:user).page(params[:page]).per(25)
|
36
36
|
|
37
|
-
@voices = @posts.map(&:user)
|
38
|
-
@voices.compact.uniq!
|
37
|
+
@voices = @posts.map(&:user).compact.uniq
|
39
38
|
@post = SbPost.new(params[:post])
|
40
39
|
end
|
41
40
|
format.xml do
|
data/app/helpers/base_helper.rb
CHANGED
@@ -142,7 +142,7 @@ module BaseHelper
|
|
142
142
|
end
|
143
143
|
title += " (#{:related_tags.l}: #{@related_tags.join(', ')})" if @related_tags
|
144
144
|
title += divider + app_base
|
145
|
-
@canonical_url = tag_url(URI.escape(@tags_raw, /[\/.?#]/)) if @tags_raw
|
145
|
+
@canonical_url = tag_url(URI.escape(URI.escape(@tags_raw), /[\/.?#]/)) if @tags_raw
|
146
146
|
else
|
147
147
|
title = "Showing tags #{divider} #{app_base} #{tagline}"
|
148
148
|
end
|
data/app/models/photo.rb
CHANGED
@@ -37,19 +37,19 @@ class Photo < ActiveRecord::Base
|
|
37
37
|
end
|
38
38
|
|
39
39
|
def previous_photo
|
40
|
-
self.user.photos.
|
40
|
+
self.user.photos.where('created_at < ?', created_at).first
|
41
41
|
end
|
42
42
|
def next_photo
|
43
|
-
self.user.photos.
|
43
|
+
self.user.photos.where('created_at > ?', created_at).last
|
44
44
|
end
|
45
45
|
|
46
46
|
def previous_in_album
|
47
47
|
return nil unless self.album
|
48
|
-
self.user.photos.
|
48
|
+
self.user.photos.where('created_at < ? and album_id = ?', created_at, self.album.id).first
|
49
49
|
end
|
50
50
|
def next_in_album
|
51
|
-
return nil unless self.album
|
52
|
-
self.user.photos.
|
51
|
+
return nil unless self.album
|
52
|
+
self.user.photos.where('created_at > ? and album_id = ?', created_at, self.album_id).last
|
53
53
|
end
|
54
54
|
|
55
55
|
|
data/app/models/tag.rb
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
require_dependency ActsAsTaggable::Engine.config.root.join('app', 'models', 'tag.rb').to_s
|
2
|
+
|
3
|
+
class Tag < ActiveRecord::Base
|
4
|
+
|
5
|
+
class << self
|
6
|
+
def popular(limit = 20, type = nil)
|
7
|
+
tags = Tag.counts(:at_least => 0).limit(limit).order('count DESC')
|
8
|
+
tags = tags.where("taggings.taggable_type = ?", type.capitalize) if type
|
9
|
+
tags
|
10
|
+
end
|
11
|
+
|
12
|
+
def default_per_page
|
13
|
+
25
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def to_param
|
18
|
+
URI.escape(URI.escape(self.name), /[\/.?#]/)
|
19
|
+
end
|
20
|
+
|
21
|
+
def related_tags(limit = 10)
|
22
|
+
taggables = self.taggings.limit(10).all.collect{|t| t.taggable }
|
23
|
+
tagging_ids = taggables.map{|t| t.taggings.limit(10).map(&:id) }.flatten.uniq
|
24
|
+
return [] if tagging_ids.blank?
|
25
|
+
|
26
|
+
Tag.where("tags.id != '#{self.id}'").
|
27
|
+
select("tags.id, tags.name, COUNT(tags.id) as count").
|
28
|
+
joins(:taggings).
|
29
|
+
where({:taggings => {:id => tagging_ids }}).
|
30
|
+
group("tags.id, tags.name").
|
31
|
+
order("count DESC").
|
32
|
+
limit(limit)
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
data/app/models/user.rb
CHANGED
@@ -114,8 +114,8 @@ class User < ActiveRecord::Base
|
|
114
114
|
|
115
115
|
## Class Methods
|
116
116
|
|
117
|
-
def self.find_by_login_or_email(
|
118
|
-
self.where(
|
117
|
+
def self.find_by_login_or_email(string)
|
118
|
+
self.where("email = ? OR login = ?", string, string).first
|
119
119
|
end
|
120
120
|
|
121
121
|
def self.find_country_and_state_from_search_params(search)
|
@@ -11,6 +11,6 @@
|
|
11
11
|
-box do
|
12
12
|
%h3= :tags.l
|
13
13
|
- tag_cloud @popular_tags, %w(nube1 nube2 nube3 nube4 nube5) do |tag, css_class|
|
14
|
-
= link_to tag.name, tag_path(
|
14
|
+
= link_to tag.name, tag_path(tag.to_param), :class => css_class
|
15
15
|
%h6.all=link_to :all_tags.l, tags_path
|
16
16
|
|
@@ -22,7 +22,7 @@
|
|
22
22
|
%label
|
23
23
|
= :tags.l
|
24
24
|
%em="(#{:optional_keywords_describing_this_photo_separated_by_commas.l})"
|
25
|
-
= text_field_tag 'tag_list', @photo.tag_list, {:autocomplete => "off", :size => 35}
|
25
|
+
= text_field_tag 'tag_list', @photo.tag_list.join(', '), {:autocomplete => "off", :size => 35}
|
26
26
|
#tag_list_auto_complete.auto_complete{"class"=>"auto_complete"}
|
27
27
|
= auto_complete_field 'tag_list', {:url => { :controller => "tags", :action => 'auto_complete_for_tag_name'}, :tokens => [','] }
|
28
28
|
%label= :title.l + ":"
|
@@ -14,7 +14,7 @@
|
|
14
14
|
-box :class => "photo_nav alt" do
|
15
15
|
= link_to "<img src='#{@previous.photo.url(:thumb)}' /><br />« ".html_safe + :previous.l, user_photo_path(@user, @previous), :class => 'left' if @previous
|
16
16
|
|
17
|
-
= link_to "<img src='#{@next.photo.url(:thumb)}' /><br />" + :next.l + "»".html_safe, user_photo_path(@user, @next), :class => 'right' if @next
|
17
|
+
= link_to "<img src='#{@next.photo.url(:thumb)}' /><br />".html_safe + :next.l + "»".html_safe, user_photo_path(@user, @next), :class => 'right' if @next
|
18
18
|
|
19
19
|
- if @related.any?
|
20
20
|
-box :class => "alt" do
|
@@ -41,7 +41,7 @@
|
|
41
41
|
|
42
42
|
%p.centered= tag(:img, :src => @photo.photo(:large), :class => "polaroid" )
|
43
43
|
%p= h @photo.description
|
44
|
-
%p= @photo.tags.collect{|t| link_to( h(t.name), tag_url(t), :class => 'tag') }.join(" ")
|
44
|
+
%p= @photo.tags.collect{|t| link_to( h(t.name), tag_url(t), :class => 'tag') }.join(" ").html_safe
|
45
45
|
|
46
46
|
-box :class => "hfeed comments", :id => 'comments' do
|
47
47
|
%h3=:photo_comments.l
|
@@ -35,11 +35,16 @@
|
|
35
35
|
%abbr.updated{ :title => post.created_at.xmlschema }
|
36
36
|
= time_ago_in_words(post.created_at)
|
37
37
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
= pluralize
|
38
|
+
-if post.user
|
39
|
+
= avatar_for post.user
|
40
|
+
%span.fn
|
41
|
+
= link_to truncate(h(post.username), :length => 15), user_path(post.user), :class => (post.topic.editable_by?(post.user) ? "admin" : nil)
|
42
|
+
%span.posts= pluralize post.user.sb_posts_count, :post.l
|
43
|
+
-else
|
44
|
+
= image_tag(configatron.photo.missing_thumb, :height => '32', :width => '32', :class => 'photo')
|
45
|
+
%span.fn
|
46
|
+
=truncate(h(post.username), :length => 15)
|
47
|
+
|
43
48
|
%td.body.entry-content
|
44
49
|
%p.topic
|
45
50
|
= link_to(h(post.forum_name), forum_path(post.forum))
|
@@ -9,5 +9,5 @@
|
|
9
9
|
-box do
|
10
10
|
%h3=:tags.l
|
11
11
|
- tag_cloud @popular_tags, %w(nube1 nube2 nube3 nube4 nube5) do |tag, css_class|
|
12
|
-
= link_to tag.name, tag_path(
|
12
|
+
= link_to tag.name, tag_path(tag.to_param), :class => css_class
|
13
13
|
%h6.all=link_to :all_tags.l, tags_path
|
@@ -18,9 +18,9 @@
|
|
18
18
|
%table{:width=>"100%"}
|
19
19
|
%tr
|
20
20
|
%th
|
21
|
-
=sort_link @search, :
|
21
|
+
=sort_link @search, :name, :name.l
|
22
22
|
%th
|
23
|
-
=sort_link @search, :
|
23
|
+
=sort_link @search, :taggings_count, :taggings.l
|
24
24
|
%th=:actions.l
|
25
25
|
|
26
26
|
- for tag in @tags
|
@@ -33,5 +33,7 @@
|
|
33
33
|
= link_to :edit.l, edit_tag_path(tag)
|
34
34
|
|
|
35
35
|
= link_to :destroy.l, tag_path(tag), :confirm => :are_you_sure.l, :method => :delete
|
36
|
-
|
36
|
+
|
37
|
+
|
38
|
+
.pagination=paginate @tags if @tags.total_count > 1
|
37
39
|
|
@@ -48,7 +48,12 @@
|
|
48
48
|
%p.subtitle
|
49
49
|
= feed_icon_tag @topic.title, forum_topic_path(@forum, @topic, :format => :rss)
|
50
50
|
= "#{pluralize @topic.sb_posts.count, :post.l}, #{pluralize @topic.voices, :voice.l}"
|
51
|
-
|
51
|
+
-if @topic.tags.any?
|
52
|
+
=:tags.l
|
53
|
+
\:
|
54
|
+
=raw @topic.tags.collect{|t| link_to( h(t.name), tag_url(t), :class => 'tag').html_safe }.join(" ")
|
55
|
+
|
56
|
+
|
52
57
|
|
53
58
|
%ul.flat.talking
|
54
59
|
%li.label= :voices.l + ":"
|
data/community_engine.gemspec
CHANGED
@@ -25,8 +25,8 @@ Gem::Specification.new do |s|
|
|
25
25
|
s.files = `git ls-files`.split("\n") rescue ''
|
26
26
|
s.test_files = `git ls-files -- {test}/*`.split("\n")
|
27
27
|
|
28
|
-
s.add_dependency(%q<rails>, ["= 3.1.
|
29
|
-
s.add_dependency(%q<rack>, ["
|
28
|
+
s.add_dependency(%q<rails>, ["= 3.1.3"])
|
29
|
+
s.add_dependency(%q<rack>, [">= 1.3.5"])
|
30
30
|
s.add_dependency(%q<arel>, ["= 2.2.1"])
|
31
31
|
s.add_dependency(%q<authlogic>, [">= 0"])
|
32
32
|
s.add_dependency(%q<configatron>, [">= 0"])
|
@@ -49,8 +49,6 @@ Gem::Specification.new do |s|
|
|
49
49
|
s.add_dependency(%q<meta_search>, ["= 1.1.1"])
|
50
50
|
s.add_dependency(%q<koala>, [">= 0"])
|
51
51
|
s.add_dependency(%q<tinymce-rails>, ["~> 3.4.7"])
|
52
|
-
s.add_dependency(%q<bborn-acts_as_taggable_on_steroids>, ["~> 2.
|
53
|
-
s.add_development_dependency(%q<sqlite3>)
|
54
|
-
|
52
|
+
s.add_dependency(%q<bborn-acts_as_taggable_on_steroids>, ["~> 2.1"])
|
55
53
|
end
|
56
54
|
|
@@ -1,6 +1,6 @@
|
|
1
|
-
if configatron.allow_anonymous_commenting || configatron.require_captcha_on_signup
|
1
|
+
if !configatron.allow_anonymous_commenting.nil? || !configatron.require_captcha_on_signup.nil?
|
2
2
|
Recaptcha.configure do |config|
|
3
3
|
config.public_key = configatron.recaptcha_pub_key
|
4
4
|
config.private_key = configatron.recaptcha_priv_key
|
5
5
|
end
|
6
|
-
end
|
6
|
+
end
|
data/config/locales/en.yml
CHANGED
@@ -1623,7 +1623,7 @@ en:
|
|
1623
1623
|
#en: album_comments: "Comentarios de álbum"
|
1624
1624
|
album_comments: "Album comments"
|
1625
1625
|
#en: album_tip: "Albums let you organize yout photos. Share whole experiencies with other %{community_name} users"
|
1626
|
-
album_tip: "Albums let you organize
|
1626
|
+
album_tip: "Albums let you organize your photos. Share whole experiencies with other %{community_name} users"
|
1627
1627
|
#en: delete_album_and_photos: Delete album and its associated photos?
|
1628
1628
|
delete_album_and_photos: "Delete album and its associated photos?"
|
1629
1629
|
#en: album_was_successfully_created: "Album was successfully created"
|
data/config/locales/ru-RU.yml
CHANGED
@@ -1,97 +1,1699 @@
|
|
1
1
|
ru-RU:
|
2
|
+
authorizations:
|
3
|
+
create:
|
4
|
+
success_existing_user: "Успешно добавлена %{provider} аутентификация"
|
5
|
+
success_message: "Добро пожаловать, пользователь %{provider}. Вы подключились."
|
6
|
+
failure:
|
7
|
+
notice: "Извините, вы не авторизованы"
|
8
|
+
destroy:
|
9
|
+
notice: "Успешно удалена %{provider} аутентификация."
|
10
|
+
sessions:
|
11
|
+
new:
|
12
|
+
omniauth:
|
13
|
+
header: "Подключиться к:"
|
14
|
+
button_alt: "подключиться с учетной записью %{provider}"
|
15
|
+
users:
|
16
|
+
edit_account:
|
17
|
+
omniauth:
|
18
|
+
confirm_remove: "Вы уверены, что хотите удалить опцию аутентификации %{provider}"
|
19
|
+
title_remove: "Удалить опцию аутентификации %{provider}?"
|
20
|
+
tags:
|
21
|
+
show:
|
22
|
+
users: Пользователи
|
23
|
+
sitemaps:
|
24
|
+
index:
|
25
|
+
users: Пользователи
|
2
26
|
date:
|
3
27
|
formats:
|
4
|
-
published_date: "%Y
|
5
|
-
date_ago: "%
|
6
|
-
|
28
|
+
published_date: "%d.%m.%Y"
|
29
|
+
date_ago: "%d %B"
|
30
|
+
order:
|
31
|
+
- :day
|
32
|
+
- :month
|
33
|
+
- :year
|
34
|
+
day_names: [~, Понедельник, Вторник, Среда, Четверг, Пятница, Суббота, Воскресенье]
|
35
|
+
abbr_day_names: [~, Пн, Вт, Ср, Чт, Пт, Сб, Вс]
|
36
|
+
month_names: [~, Январь, Февраль, Март, Апрель, Май, Июнь, Июль, Август, Сентябрь, Октябрь, Ноябрь, Декабрь]
|
37
|
+
abbr_month_names: [~, Янв, Фев, Мар, Апр, Май, Июн, Июл, Авг, Сен, Окт, Ноя, Дек]
|
7
38
|
time:
|
8
39
|
formats:
|
9
|
-
published_date: "%Y
|
10
|
-
|
11
|
-
|
40
|
+
published_date: "%d.%m.%Y"
|
41
|
+
short_published_date: "%d.%m.%y"
|
42
|
+
literal_date: "%d %B %Y"
|
43
|
+
short_literal_date: "%d %b %Y"
|
44
|
+
time_ago: "%H:%M"
|
12
45
|
|
13
46
|
activerecord:
|
14
47
|
attributes:
|
15
48
|
photo:
|
16
|
-
created_at: "
|
49
|
+
created_at: "создано: "
|
50
|
+
|
51
|
+
greeting: "Добро пожаловать, %{name}"
|
17
52
|
|
53
|
+
#en: a_few_seconds_ago: a few seconds ago
|
54
|
+
a_few_seconds_ago: несколько секунд назад
|
18
55
|
#en: about: About
|
19
|
-
about:
|
56
|
+
about: О
|
20
57
|
#en: about_me: About Me
|
21
|
-
about_me:
|
22
|
-
#en: about_site:
|
23
|
-
about_site: "
|
58
|
+
about_me: Обо мне
|
59
|
+
#en: about_site: About %{site}
|
60
|
+
about_site: "О %{site}"
|
24
61
|
#en: about_you: About You
|
25
|
-
about_you:
|
26
|
-
#en:
|
27
|
-
|
62
|
+
about_you: О тебе
|
63
|
+
#en: admin_pages: Pages
|
64
|
+
admin_pages: Страницы
|
65
|
+
#en: accept: Accept
|
66
|
+
accept: Принять
|
67
|
+
#en: accepted: accepted
|
68
|
+
accepted: принято
|
69
|
+
#en: accepted_friendships: %{count} Accepted Friendships
|
70
|
+
accepted_friendships:
|
71
|
+
one: Добавлен один друг
|
72
|
+
few: "Добавлено %{count} друга"
|
73
|
+
many: "Добавлено %{count} друзей"
|
74
|
+
other: "Добавлено %{count} друга"
|
75
|
+
#en: accept_this_request: Accept this request
|
76
|
+
accept_this_request: Этот запрос принят
|
77
|
+
#en: account: account
|
78
|
+
account: учетная запись
|
79
|
+
#en: account_activation_error: Account activation failed. Your account may already be active. Try logging in or e-mail %{email} for help.
|
80
|
+
account_activation_error: "Ошибка при активации учетной записи. Ваша учетная запись возможно уже активна. Попытайтесь подключиться или направьте e-mail %{email} для помощи."
|
28
81
|
#en: account_settings: Account settings
|
29
|
-
account_settings:
|
82
|
+
account_settings: Установка учетной записи
|
30
83
|
#en: actions: Actions
|
31
|
-
actions:
|
32
|
-
0LTQtdC50YHRgtCy0LjRjw==
|
84
|
+
actions: Действия
|
33
85
|
#en: activate: Activate
|
34
|
-
activate:
|
35
|
-
|
86
|
+
activate: Активация
|
87
|
+
#en: activation_email_not_sent_message: Activation e-mail could not be sent. Perhaps that user is already active?
|
88
|
+
activation_email_not_sent_message: e-mail для активации не может быть послан. Возможно этот пользователь уже активирован
|
89
|
+
#en: activation_email_resent_message: An activation e-mail was resent to the e-mail address you used to sign up.
|
90
|
+
activation_email_resent_message: e-mail для активации бы послан повторно по адресу, с которым вы регистрировались.
|
36
91
|
#en: active: active
|
37
|
-
active:
|
38
|
-
0LDQutGC0LjQstC90YvQuQ==
|
92
|
+
active: активен
|
39
93
|
#en: active_users: Active Users
|
40
|
-
active_users:
|
94
|
+
active_users: Активные пользователи
|
41
95
|
#en: activity_from_your_network: Activity from your network
|
42
|
-
activity_from_your_network:
|
96
|
+
activity_from_your_network: Активность из вашей сети
|
43
97
|
#en: ad_was_successfully_created: Ad was successfully created.
|
44
|
-
ad_was_successfully_created:
|
98
|
+
ad_was_successfully_created: Объявление было успешно создано.
|
45
99
|
#en: ad_was_successfully_updated: Ad was successfully updated.
|
46
|
-
ad_was_successfully_updated:
|
100
|
+
ad_was_successfully_updated: Объявление было успешно обновлено.
|
47
101
|
#en: add_a_photo: Add a photo
|
48
|
-
add_a_photo:
|
102
|
+
add_a_photo: Добавить фото
|
49
103
|
#en: add_a_poll: Add a poll
|
50
|
-
add_a_poll:
|
104
|
+
add_a_poll: Добавить голосование
|
51
105
|
#en: add_comment: Add Comment
|
52
|
-
add_comment:
|
106
|
+
add_comment: Добавить комментарий
|
107
|
+
#en: add_from_my_address_book: "Add from my address book"
|
108
|
+
add_from_my_address_book: "Добавить из моей адресной книги"
|
53
109
|
#en: add_some_friends_to_get_started: Add some friends to get started!
|
54
|
-
add_some_friends_to_get_started:
|
110
|
+
add_some_friends_to_get_started: Добавить некоторых друзей для начала!!
|
55
111
|
#en: add_your_comment: Add Your Comment!
|
56
|
-
add_your_comment:
|
112
|
+
add_your_comment: Добавьте ваш комментарий!
|
57
113
|
#en: added_a_clipping: "added a clipping:"
|
58
|
-
added_a_clipping: "
|
114
|
+
added_a_clipping: "добавил вырезку:"
|
59
115
|
#en: added_to_a_forum_topic: "added to a forum topic:"
|
60
|
-
added_to_a_forum_topic: "
|
116
|
+
added_to_a_forum_topic: "добавлена статья для форума:"
|
61
117
|
#en: admin: Admin
|
62
|
-
admin:
|
63
|
-
|
118
|
+
admin: Администратор
|
119
|
+
#en: admin_controls: Admin Controls
|
120
|
+
admin_controls: Управление администратором
|
64
121
|
#en: admin_dashboard: Admin dashboard
|
65
|
-
admin_dashboard:
|
122
|
+
admin_dashboard: Панель админа
|
123
|
+
#en: administer_events: Administer events
|
124
|
+
administer_events: Администрирование событий
|
66
125
|
#en: ads: Ads
|
67
|
-
ads:
|
126
|
+
ads: Объявления
|
68
127
|
#en: advertise: Advertise
|
69
|
-
advertise:
|
70
|
-
0YDQtdC60LvQsNC80LzQsA==
|
128
|
+
advertise: Реклама
|
71
129
|
#en: advertise_on: Advertise on
|
72
|
-
advertise_on:
|
130
|
+
advertise_on: Размещение рекламы
|
73
131
|
#en: after_signing_up_youll_receive_an_e_mail_confirmation_message: After signing up, you'll receive an e-mail confirmation message.
|
74
|
-
after_signing_up_youll_receive_an_e_mail_confirmation_message: "
|
132
|
+
after_signing_up_youll_receive_an_e_mail_confirmation_message: "После регистрации вы получите e-mail с сообщением о подтверждении."
|
133
|
+
#en: all_clippings_tagged: All clippings tagged %{tag_name}
|
134
|
+
all_clippings_tagged: "Все выписки помечены ярлыком %{tag_name}"
|
135
|
+
#en: all_comments: All comments
|
136
|
+
all_comments: Все комментарии
|
137
|
+
#en: all_photos_tagged: All photos tagged %{tag_name}
|
138
|
+
all_photos_tagged: "Все фото помечены ярлыком %{tag_name}"
|
139
|
+
#en: all_posts_tagged: All posts tagged %{tag_name}
|
140
|
+
all_posts_tagged: "Все сообщения помечены ярлыком %{tag_name}"
|
75
141
|
#en: all_tags: All tags
|
76
|
-
all_tags:
|
142
|
+
all_tags: Все ярлыки
|
143
|
+
#en: all_users_tagged: All users tagged %{tag_name}
|
144
|
+
all_users_tagged: "Все пользователи помечены ярлыком %{tag_name}"
|
145
|
+
#en: allow_rsvp: Allow RSVPs
|
146
|
+
allow_rsvp: Разрешить приглашение
|
77
147
|
#en: already_have_an_account: Already have an account?
|
78
|
-
already_have_an_account:
|
148
|
+
already_have_an_account: Учетная запись уже есть?
|
149
|
+
#en: anonymous: Anonymous
|
150
|
+
anonymous: Анонимный пользователь
|
79
151
|
#en: an_error_occurred: An error occurred
|
80
|
-
an_error_occurred:
|
152
|
+
an_error_occurred: Возникла ошибка
|
153
|
+
#en: are_attending_this_event: are attending this event
|
154
|
+
are_attending_this_event: посещающих это событие
|
155
|
+
#en: is_attending_this_event: is attending this event
|
156
|
+
is_attending_this_event: посетили это событие
|
81
157
|
#en: are_you_sure: Are you sure?
|
82
|
-
are_you_sure:
|
158
|
+
are_you_sure: Вы уверены?
|
159
|
+
#en: are_you_sure_you_want_to_delete_this_page: "Are you sure you want to delete this page?"
|
160
|
+
are_you_sure_you_want_to_delete_this_page: "Вы уверены, что хотите удалить эту страницу?"
|
161
|
+
#en: are_you_sure_you_want_to_delete_this_photo: "Are you sure you want to delete this photo?"
|
162
|
+
are_you_sure_you_want_to_delete_this_photo: "Вы уверены, что хотите удалить это фото?"
|
163
|
+
#en: are_you_sure_you_want_to_delete_this_post: "Are you sure you want to delete this post?"
|
164
|
+
are_you_sure_you_want_to_delete_this_post: "Вы уверены, что хотите удалить это сообщение?"
|
165
|
+
#en: are_you_sure_you_want_to_permanently_delete_this_comment: "Are you sure you want to permanently delete this comment?"
|
166
|
+
are_you_sure_you_want_to_permanently_delete_this_comment: "Вы уверены, что хотите совсем удалить это сообщение?"
|
167
|
+
#en: are_you_sure_you_want_to_permanently_delete_this_user: Are you sure you want to permanently delete this user?
|
168
|
+
are_you_sure_you_want_to_permanently_delete_this_user: Вы уверены, что хотите совсем удалить этого пользователя?
|
83
169
|
#en: assume_id: Assume ID
|
84
|
-
assume_id:
|
170
|
+
assume_id: Присваивание ID
|
171
|
+
#en: assume_user_id: "Assume this user's ID"
|
172
|
+
assume_user_id: "Присвоить ID этого пользователя"
|
173
|
+
#en: assign_role: Assign role
|
174
|
+
assign_role: Присвоить роль
|
175
|
+
#en: attendees: Attendees
|
176
|
+
attendees: Участники
|
85
177
|
#en: audience: Audience
|
86
|
-
audience:
|
87
|
-
0LDRg9C00LjRgtC+0YDQuNGP
|
178
|
+
audience: Публика
|
88
179
|
#en: author: Author
|
89
|
-
author:
|
90
|
-
0LDQstGC0L7RgA==
|
180
|
+
author: Автор
|
91
181
|
#en: back: Back
|
92
|
-
back:
|
93
|
-
|
182
|
+
back: Вернуться
|
183
|
+
#en: back_to_all_users: Back to all users
|
184
|
+
back_to_all_users: Вернуться для всех пользователей
|
185
|
+
#en: back_to_my_photos: Back to my photos
|
186
|
+
back_to_my_photos: Вернуться к моим фото
|
187
|
+
#en: back_to_all_statistics: Back to all statistics
|
188
|
+
back_to_all_statistics: Вернуться ко всем статистикам
|
189
|
+
#en: banner_subtitle_required: "Подзаголовок баннера (требуется):"
|
190
|
+
banner_subtitle_required: "Banner subtitle (required):"
|
191
|
+
#en: banner_title_required: "Banner title (required):"
|
192
|
+
banner_title_required: "Заголовок баннера (требуется):"
|
193
|
+
#en: begin: begin
|
194
|
+
begin: Начать
|
195
|
+
#en: begin_required: begin (required)
|
196
|
+
begin_required: начать (требуется)
|
197
|
+
#en: bigger_font_size_more_popular_tag: "Bigger font size = more popular tag"
|
198
|
+
bigger_font_size_more_popular_tag: "Больший размер шрифта = наиболее популярные ярлыки"
|
94
199
|
#en: birthday: Birthday
|
95
|
-
birthday:
|
96
|
-
#en:
|
97
|
-
|
200
|
+
birthday: День рождения
|
201
|
+
#en: birthday_gender: Birthday & Gender
|
202
|
+
birthday_gender: "День рождения и пол"
|
203
|
+
#en: blog: Blog
|
204
|
+
blog: Блог
|
205
|
+
#en: body_text: Body Text
|
206
|
+
body_text: Основной текст
|
207
|
+
#en: body_text_reqiured: Body Text (required)
|
208
|
+
body_text_required: Основной текст (требуется)
|
209
|
+
#en: bookmarklet: bookmarklet
|
210
|
+
bookmarklet: bookmarklet
|
211
|
+
#en: browse_all_members: browse all members
|
212
|
+
browse_all_members: просмотреть всех участников
|
213
|
+
#en: browse_content_by_tags: Browse content by tags
|
214
|
+
browse_content_by_tags: Просмотреть содержимое по ярлыкам
|
215
|
+
#en: by: by %{login}
|
216
|
+
by: " %{login}"
|
217
|
+
#en: by_looking_at_the: by looking at the
|
218
|
+
by_looking_at_the: глядя на
|
219
|
+
#en: cache_cleared: The cache was cleared
|
220
|
+
cache_cleared: Кэш был очищен
|
221
|
+
#en: cache_clear_link: Clear the cache
|
222
|
+
cache_clear_link: Очистка кэша
|
223
|
+
#en: cancel: Cancel
|
224
|
+
cancel: Отменить
|
225
|
+
#en: cancel_and_go_back_to: cancel and go back to
|
226
|
+
cancel_and_go_back_to: отменить и вернуться к
|
227
|
+
#en: cancel_and_go_back_to_all_features: cancel and go back to all features
|
228
|
+
cancel_and_go_back_to_all_features: отменить и вернуться ко всем функциям
|
229
|
+
#en: cancel_and_go_back_to_my_clippings: cancel and go back to my clippings
|
230
|
+
cancel_and_go_back_to_my_clippings: отменить и вернуться к моим вырезкам
|
231
|
+
#en: cancel_and_go_back_to_my_photos: cancel and go back to my photos
|
232
|
+
cancel_and_go_back_to_my_photos: отменить и вернуться к моим фото
|
233
|
+
#en: cancel_and_go_back_to_my_posts: cancel and go back to my posts
|
234
|
+
cancel_and_go_back_to_my_posts: отменить и вернуться к моим сообщениям
|
235
|
+
#en: cancel_and_go_back_to_pages: cancel and go back to pages
|
236
|
+
cancel_and_go_back_to_pages: отменить и вернуться к страницам
|
237
|
+
#en: cannot_rsvp_for_an_event_that_has_already_happened: Cannot RSVP for an event that has already happened.
|
238
|
+
cannot_rsvp_for_an_event_that_has_already_happened: Невозможно пригласить, так как это уже произошло ранее.
|
239
|
+
#en: categories: Categories
|
240
|
+
categories: Категории
|
241
|
+
#en: category: Category
|
242
|
+
category: Категория
|
243
|
+
#en: category_was_successfully_created: Category was successfully created.
|
244
|
+
category_was_successfully_created: Категория была успешно создана.
|
245
|
+
#en: check_out_this_story_on: Check out this story on %{site}
|
246
|
+
check_out_this_story_on: Проверьте эту статью на %{site}
|
247
|
+
#en: choices: Choices
|
248
|
+
choices: Выбор
|
249
|
+
#en: choose_a_photo_for_your_profile: "Choose a photo for your profile:"
|
250
|
+
choose_a_photo_for_your_profile: "Выбор фото для вашего профиля:"
|
251
|
+
#en: choose_a_photo_to_upload: "Choose a photo to upload:"
|
252
|
+
choose_a_photo_to_upload: "Выбор фото для загрузки:"
|
253
|
+
#en: choose_your_location: Choose your location
|
254
|
+
choose_your_location: Выбор вашего местонахождения
|
255
|
+
#en: click_here: click here
|
256
|
+
click_here: Нажмите здесь
|
257
|
+
#en: click_here_to_retrieve_it: Click here to retrieve it
|
258
|
+
click_here_to_retrieve_it: Нажмите здесь для его получения
|
259
|
+
#en: click_here_to_sign_up: Click here to sign up
|
260
|
+
click_here_to_sign_up: Нажмите здесь для регистрации
|
261
|
+
#en: click_here_to_sign_up_for_an_account_and_enter: Click here to sign up for an account and enter
|
262
|
+
click_here_to_sign_up_for_an_account_and_enter: Нажмите здесь для регистрации учетной записи и входа
|
263
|
+
#en: click_here_to_upload_one: Click here to upload one!
|
264
|
+
click_here_to_upload_one: Загрузить!
|
265
|
+
#en: click_here_to_view_as_a_list: Нажмите здесь для просмотра списка
|
266
|
+
click_here_to_view_as_a_list: Click here to view as a list
|
267
|
+
#en: click_on_an_image_below_to_clip_it: Click on an image below to clip it
|
268
|
+
click_on_an_image_below_to_clip_it: Нажмите на картинку ниже, чтобы ее вырезать
|
269
|
+
#en: click_the_activation_link_in_the_e_mail_to_log_in: Click the activation link in the e-mail to log in.
|
270
|
+
click_the_activation_link_in_the_e_mail_to_log_in: Нажмите на ссылку активации в почтовом сообщении, чтобы подключиться.
|
271
|
+
#en: click_to_accept_it: Click to accept it!
|
272
|
+
click_to_accept_it: Нажмите, чтобы принять это!
|
273
|
+
#en: clipping_comments: Clipping Comments
|
274
|
+
clipping_comments: Вырезка комментариев
|
275
|
+
#en: clipping_from_user: Clipping from %{user}
|
276
|
+
clipping_from_user: "Вырезано %{user}"
|
277
|
+
#en: clipping_was_successfully_created: Clipping was successfully created.
|
278
|
+
clipping_was_successfully_created: Вырезка была успешно создана.
|
279
|
+
#en: clippings: Clippings
|
280
|
+
clippings: вырезки
|
281
|
+
#en: clippings_are_a_way_to_save_images_you_like_from_around_the_web: Clippings are a way to save images you like from around the Web
|
282
|
+
clippings_are_a_way_to_save_images_you_like_from_around_the_web: Вырезки - это способ сохранить понравившиеся вам изображения из интернета
|
283
|
+
#en: clippings_let_you_to_save_cool_images_from_around_the_web: Clippings let you to save cool images from around the Web.
|
284
|
+
clippings_let_you_to_save_cool_images_from_around_the_web: Вырезки позволяют вам сохранять замечательные изображения из интернета.
|
285
|
+
#en: clone: Clone
|
286
|
+
clone: Клон
|
287
|
+
#en: clippings_tagged: Clippings tagged
|
288
|
+
clippings_tagged: "Вырезки ярлыков"
|
289
|
+
#en: close_this_message: Close this message
|
290
|
+
close_this_message: Закрыть это сообщение
|
291
|
+
#en: comma_separated: (разделенные запятой)
|
292
|
+
comma_separated: (comma separated)
|
293
|
+
#en: comma_separated_keywords_that_describe_you: Comma-separated keywords that describe you.
|
294
|
+
comma_separated_keywords_that_describe_you: Определенные вами ключевые слова, разделенные запятыми.
|
295
|
+
#en: commentable_type: "Commentable Type (Post, User, etc.)"
|
296
|
+
commentable_type: "Вид комментируемости (Post, User, etc.)"
|
297
|
+
#en: commentable_id: "Commentable ID"
|
298
|
+
commentable_id: "ID комментируемости"
|
299
|
+
#en: comment_character_limit: (2000 character limit)
|
300
|
+
comment_character_limit: (ограничение в 2000 символов)
|
301
|
+
#en: comment_could_not_be_deleted: Comment could not be deleted.
|
302
|
+
comment_could_not_be_deleted: Комментирий не может быть удален.
|
303
|
+
#en: comment_notifications_off: Comment notifications are currently off
|
304
|
+
comment_notifications_off: Уведомления о комментарии в данный момент отключено
|
305
|
+
#en: comment_save_error: Your comment couldn't be saved.
|
306
|
+
comment_save_error: "Ваш комментирай не может быть сохранен: %{error}"
|
307
|
+
#en: comment_was_successfully_created: Comment was successfully created.
|
308
|
+
comment_was_successfully_created: Комментарий был успешно создан.
|
309
|
+
#en: comment_author_email_required: Required, won't be shown on the site.
|
310
|
+
comment_author_email_required: "Обязателен, не будет отображаться на сайте."
|
311
|
+
#en: comment_web_site_label: "Web site (include http://)"
|
312
|
+
comment_web_site_label: "Вебсайт (включая http://)"
|
313
|
+
#en: comment_spam_error: "Comment was flagged as spam. Please make sure you aren't including any spammy words or links and try again."
|
314
|
+
comment_spam_error: "Комментарий был отмечен как спам. Убедитесь, что вы не набрали спамовые слова или ссылки и попытайтесь еще раз"
|
315
|
+
#en: comments: Comments
|
316
|
+
comments: Комментарии
|
317
|
+
#en: comments_count: %{count} comments
|
318
|
+
comments_count:
|
319
|
+
one: Один комментарий
|
320
|
+
few: "%{count} комментария"
|
321
|
+
many: "%{count} комментариев"
|
322
|
+
other: "%{count} комментария"
|
323
|
+
#en: comments_deleted: Comments deleted
|
324
|
+
comments_deleted: Комментарии стерты
|
325
|
+
#en: comments_rss: Comments RSS
|
326
|
+
comments_rss: Комментарии RSS
|
327
|
+
#en: community_tagline: CommunityEngine Rocks!
|
328
|
+
community_tagline: CommunityEngine Rocks!
|
329
|
+
#en: comment_unsubscribe_succeeded: Thanks, you have been unsubscribed from notifications on this comment.
|
330
|
+
comment_unsubscribe_succeeded: "Спасибо, вы были отписаны от уведомлений на этот комментарий."
|
331
|
+
#en: compose: Compose
|
332
|
+
compose: Создать
|
333
|
+
#en: compose_message: Compose message
|
334
|
+
compose_message: Создать сообщение
|
335
|
+
#en: confirm_password: Confirm Password
|
336
|
+
confirm_password: Подтвердить пароль
|
337
|
+
#en: country: Country
|
338
|
+
country: Страна
|
339
|
+
#en: create: Create
|
340
|
+
create: Создать
|
341
|
+
#en: create_an_account: Create an account
|
342
|
+
create_an_account: Создать учетную запись
|
343
|
+
#en: create_a_clipping: Create a clipping
|
344
|
+
create_a_clipping: Создать вырезку
|
345
|
+
#en: create_a_post: Create a post
|
346
|
+
create_a_post: Создаьь сообщение
|
347
|
+
#en: create_new_forum: Create new forum
|
348
|
+
create_new_forum: Создать новый форум
|
349
|
+
#en: create_your_account: Create Your Account
|
350
|
+
create_your_account: Создайте свою учетную запись
|
351
|
+
#en: created_at: Created at
|
352
|
+
created_at: Создано
|
353
|
+
#en: custom_friendly_local: custom, friendly, local
|
354
|
+
custom_friendly_local: "обычный, дружелюбный, местный"
|
355
|
+
#en: dashboard: Dashboard
|
356
|
+
dashboard: Панель
|
357
|
+
#en: dashboard_friends: Once you start adding friends, you'll be able to track their activity on %{site} here
|
358
|
+
dashboard_friends: "Как только вы начнете добавлять друзей, вы сможете отслеживать их активность на %{site}"
|
359
|
+
#en: date: Date
|
360
|
+
date_title: Дата
|
361
|
+
#en: date_created: Date Created
|
362
|
+
date_created: Дата создания
|
363
|
+
#en: date_published: Date Published
|
364
|
+
date_published: Дата публикации
|
365
|
+
#en: days_ago: %{count} days ago
|
366
|
+
days_ago:
|
367
|
+
one: "один день назад"
|
368
|
+
few: "%{count} дня назад"
|
369
|
+
many: "%{count} дней назад"
|
370
|
+
other: "%{count} дня назад"
|
371
|
+
#en: deactivate_link: Click here to deactivate your account
|
372
|
+
deactivate_link: Нажмите здесь для деактивации учетной записи
|
373
|
+
#en: deactivate_tip: Deactivating your account will remove your profile from the site.
|
374
|
+
deactivate_tip: При деактивации вашей учетной записи с сайта будет удален ваш профиль.
|
375
|
+
#en: deactivate_confirmation: Are you sure you want to deactivate your account?
|
376
|
+
deactivate_confirmation: Вы уверены, что хотите деактивировать вашу учетную запись?
|
377
|
+
#en: deactivate_completed: Thanks. Your account has been deactivated and you have been logged out.
|
378
|
+
deactivate_completed: Спасибо. Ваша учетная запись была деактивирована и вы были отключены.
|
379
|
+
#en: delete: Delete
|
380
|
+
delete: Стереть
|
381
|
+
#en: delete_selected: Delete selected
|
382
|
+
delete_selected: Удалить выбранное
|
383
|
+
#en: delete_this_event: Delete this event
|
384
|
+
delete_this_event: Удалить это событие
|
385
|
+
#en: delete_this_forum: Delete this forum
|
386
|
+
delete_this_forum: Удалить этот форум
|
387
|
+
#en: delete_this_photo: Delete this photo
|
388
|
+
delete_this_photo: Удалить это фото
|
389
|
+
#en: delete_this_page: Delete this page
|
390
|
+
delete_this_page: Удалить эту страницу
|
391
|
+
#en: delete_this_post: Delete this post?
|
392
|
+
delete_this_post: Удалить это сообщение?
|
393
|
+
#en: delete_this_topic_forever: Delete this topic forever?
|
394
|
+
delete_this_topic_forever: Совсем удалить эту тему?
|
395
|
+
#en: delete_this_user: Delete this user
|
396
|
+
delete_this_user: Удалить этого пользователя
|
397
|
+
#en: deny: Deny
|
398
|
+
deny: Отменить
|
399
|
+
#en: denied: denied
|
400
|
+
denied: отменено
|
401
|
+
#en: denied_friendships: Denied Friendships
|
402
|
+
denied_friendships: Отказаться от дружбы
|
403
|
+
#en: description: Description
|
404
|
+
description: Описание
|
405
|
+
#en: destroy: Destroy
|
406
|
+
destroy: Удалить
|
407
|
+
#en: dont_have_an_account: Don't have an account?
|
408
|
+
dont_have_an_account: Не имеете учетной записи?
|
409
|
+
#en: dont_wait_its: Don't wait! It's
|
410
|
+
dont_wait_its: Не ждите! Это
|
411
|
+
#en: draft: draft
|
412
|
+
draft: черновик
|
413
|
+
#en: drag_the_bookmarklet: Drag the %{site}-It! bookmarklet to your bookmarks toolbar.
|
414
|
+
drag_the_bookmarklet: "Перетащите %{site}-It! bookmarklet на вашу панель закладок."
|
415
|
+
#en: drag_this_to_your_bookmarks_toolbar: Drag this to your bookmarks toolbar
|
416
|
+
drag_this_to_your_bookmarks_toolbar: Перетащите это на вашу панель закладок
|
417
|
+
#en: e_mail: E-mail
|
418
|
+
e_mail: E-mail
|
419
|
+
#en: e_mail_address: E-mail address
|
420
|
+
e_mail_address: Адрес e-mail
|
421
|
+
#en: e_mail_notification: E-mail Notification
|
422
|
+
e_mail_notification: E-mail уведомление
|
423
|
+
#en: edit: Edit
|
424
|
+
edit: Редактировать
|
425
|
+
#en: edit_account: Edit account
|
426
|
+
edit_account: Редактировать учетную запись
|
427
|
+
#en: edit_event: Edit event
|
428
|
+
edit_event: Редактировать событие
|
429
|
+
#en: edit_forum: Edit forum
|
430
|
+
edit_forum: Редактировать форум
|
431
|
+
#en: edit_page: Edit page
|
432
|
+
edit_page: Редактировать страницу
|
433
|
+
#en: edit_post: Edit post
|
434
|
+
edit_post: Редактировать сообщение
|
435
|
+
#en: edit_profile: Edit profile
|
436
|
+
edit_profile: Редактировать профиль
|
437
|
+
#en: edit_rsvp_for: Edit RSVP for
|
438
|
+
edit_rsvp_for: Редактировать приглашение для
|
439
|
+
#en: edit_this_event: Edit this event
|
440
|
+
edit_this_event: Редактировать это событие
|
441
|
+
#en: edit_this_photo_details: Edit this photo's details
|
442
|
+
edit_this_photo_details: "Редактировать детали этого фото"
|
443
|
+
#en: edit_topic: Edit topic
|
444
|
+
edit_topic: Редактировать тему
|
445
|
+
#en: edit_your_account_settings_instead: "Edit your account settings instead?"
|
446
|
+
edit_your_account_settings_instead: "Изменить установки вашей учетной записи?"
|
447
|
+
#en: edit_your_user_profile: Edit your user profile?
|
448
|
+
edit_your_user_profile: Редактировать ваш пользовательский профиль?
|
449
|
+
#en: editing_ad: Editing ad
|
450
|
+
editing_ad: Редактирование объявления
|
451
|
+
#en: editing_category: Editing category
|
452
|
+
editing_category: Редактирование категории
|
453
|
+
#en: editing_clipping: Editing clipping
|
454
|
+
editing_clipping: Редактирование вырезки
|
455
|
+
#en: editing_homepage_feature: Editing homepage feature
|
456
|
+
editing_homepage_feature: Редактирование деталей домашней страницы
|
457
|
+
#en: editing_metro_area: Editing Metro Area
|
458
|
+
editing_metro_area: Редактирование области
|
459
|
+
#en: editing_photo: Editing photo
|
460
|
+
editing_photo: Редактирование фото
|
461
|
+
#en: editing_post: Editing post
|
462
|
+
editing_post: Редактирование сообщения
|
463
|
+
#en: editing_tag: Editing tag
|
464
|
+
editing_tag: Редактирование ярлыка
|
465
|
+
#en: email: Email
|
466
|
+
email: Email
|
467
|
+
#en: email_addresses: Email Addresses
|
468
|
+
email_addresses: Адреса email
|
469
|
+
#en: email_signup_thanks: Thanks for signing up! You should receive an e-mail confirmation shortly at %{email}
|
470
|
+
email_signup_thanks: "Спасибо за регистрацию! Вы должны получить e-mail с коротким подтверждением на %{email}"
|
471
|
+
#en: email_this_story_to_friends: "E-mail this story to friends"
|
472
|
+
email_this_story_to_friends: "Отправьте эту историю друзьям по e-mail"
|
473
|
+
#en: email_to_friends: E-mail to friends
|
474
|
+
email_to_friends: E-mail друзьям
|
475
|
+
#en: end: end
|
476
|
+
end: окончание
|
477
|
+
#en: end_date: End date
|
478
|
+
end_date: Дата окончания
|
479
|
+
#en: end_required: end (required)
|
480
|
+
end_required: окончание (требуется)
|
481
|
+
#en: end_time: End time
|
482
|
+
end_time: Время окончания
|
483
|
+
#en: enter_a_message: Enter a message
|
484
|
+
enter_a_message: Введите сообщение
|
485
|
+
#en: enter_e_mail_addresses: Enter e-mail addresses
|
486
|
+
enter_e_mail_addresses: Введите адрес e-mail
|
487
|
+
#en: enter_e_mail_addresses_comma_sep: Enter e-mail addresses (comma-separated)
|
488
|
+
enter_e_mail_addresses_comma_sep: Введите адреса e-mail (разделенные запятой)
|
489
|
+
#en: enter_your_email_address: "Enter your email address"
|
490
|
+
enter_your_email_address: "введите ваш адрес email"
|
491
|
+
#en: error: Error!
|
492
|
+
error: Ошибка!
|
493
|
+
#en: estimated_total_for_this_month: Estimated total for this month
|
494
|
+
estimated_total_for_this_month: Всего примерно за этот месяц
|
495
|
+
#en: estimated_writers_costs_this_month: "Estimated writers' costs this month"
|
496
|
+
estimated_writers_costs_this_month: "Примерная писательская оценка в этом месяце"
|
497
|
+
#en: event_details: Event Details
|
498
|
+
event_details: Детали события
|
499
|
+
#en: event_comments: Event Comments
|
500
|
+
event_comments: Комментарии события
|
501
|
+
#en: event_does_not_allow_rsvp: This event does not allow SVPs.
|
502
|
+
#ut where to be, and when to be thereuOA
|
503
|
+
event_does_not_allow_rsvp: Это событие не разрешает приглашения.
|
504
|
+
#en: event_was_successfully_created: Event was successfully created.
|
505
|
+
event_was_successfully_created: Событие были успешно создано.
|
506
|
+
#en: events: Events
|
507
|
+
events: События
|
508
|
+
#en: every_person_has_something_to_say: Every single person has something to say, something to give, something that will help someone else. Join in!
|
509
|
+
every_person_has_something_to_say: "Каждая отдельная личность что-то говорит, что-то дает, что может еще кому-нибудь помочь. Присоединяйтесь!"
|
510
|
+
#en: expert_in: expert in
|
511
|
+
expert_in: эксперт по
|
512
|
+
#en: explore_site: Explore %{site}
|
513
|
+
explore_site: Исследование %{site}
|
514
|
+
#en: failed: failed
|
515
|
+
failed: не удалось
|
516
|
+
#en: faq: FAQ
|
517
|
+
faq: FAQ
|
518
|
+
#en: faq_section: FAQ section
|
519
|
+
faq_section: секция FAQ
|
520
|
+
#en: favorited: favorited
|
521
|
+
favorited: избранное
|
522
|
+
#en: favorites: Favorites
|
523
|
+
favorites: Избранное
|
524
|
+
#en: favorite_this: Favorite this
|
525
|
+
favorite_this: Это любимое
|
526
|
+
#en: featured_posts: Featured posts
|
527
|
+
featured_posts: Лучшие сообщения
|
528
|
+
#en: featured_writer: Featured writer
|
529
|
+
featured_writer: Лучший автор
|
530
|
+
#en: featured_writers: Featured writers
|
531
|
+
featured_writers: Лучшие авторы
|
532
|
+
#en: features: Features
|
533
|
+
features: Лучшее
|
534
|
+
#en: feel_free_to_embed_images_or_videos: Feel free to embed images or videos.
|
535
|
+
feel_free_to_embed_images_or_videos: Не стесняйтесь вставлять фото или видео.
|
536
|
+
#en: female: Female
|
537
|
+
female: женский
|
538
|
+
#en: filename: Filename
|
539
|
+
filename: Имя файла
|
540
|
+
#en: find_an_expert: Find an Expert
|
541
|
+
find_an_expert: Найти и проверить
|
542
|
+
#en: find_an_expert_in: Find an Expert in
|
543
|
+
find_an_expert_in: найти и проверить в
|
544
|
+
#en: find_experts: Find experts
|
545
|
+
find_experts: Найти экспертов
|
546
|
+
#en: find_out_where_to_be_and_when_to_be_there: Find out where to be, and when to be there.
|
547
|
+
find_out_where_to_be_and_when_to_be_there: "Узнайти, где должны быть, и когда, чтобы быть там."
|
548
|
+
#en: for_more_information_on_tags_check_out_the: For more information on tags check out the
|
549
|
+
for_more_information_on_tags_check_out_the: Более подробную информацию о ярлыках проверьте
|
550
|
+
#en: forgot_your_password: Forgot your password?
|
551
|
+
forgot_your_password: Забыли свой пароль?
|
552
|
+
#en: forgot_your_username: Forgot your username?
|
553
|
+
forgot_your_username: Забыли свое имя пользователя?
|
554
|
+
#en: forum: Forum
|
555
|
+
forum: Форум
|
556
|
+
#en: forums: Forums
|
557
|
+
forums: Форумы
|
558
|
+
#en: post_found: %{count} posts found
|
559
|
+
post_found:
|
560
|
+
one: 1 сообщение найдено
|
561
|
+
few: "%{count} сообщения найдено"
|
562
|
+
many: "%{count} сообщений найдено"
|
563
|
+
other: "%{count} сообщения найдено"
|
564
|
+
#en: frequency: Frequency
|
565
|
+
frequency: Частота
|
566
|
+
#en: frequent_asked_questions: Frequent Asked Questions
|
567
|
+
frequent_asked_questions: Часто задаваемые вопросы
|
568
|
+
#en: frequently_asked_questions: Frequently Asked Questions
|
569
|
+
frequently_asked_questions: Часто задаваемые вопросы
|
570
|
+
#en: friend: friend
|
571
|
+
friend: друг
|
572
|
+
#en: friends: Friends
|
573
|
+
friends: Друзья
|
574
|
+
#en: friendship_could_not_be_created: Friendship could not be created
|
575
|
+
friendship_could_not_be_created: Друг не может быть создан
|
576
|
+
#en: friendship_request_accepted: Friendship request accepted!
|
577
|
+
friendship_request_accepted: Запрос дружбы принят!
|
578
|
+
#en: friendship_request_detail: Friendship request detail
|
579
|
+
friendship_request_detail: Детали запроса дружбы
|
580
|
+
#en: friendship_requested: Requested friendship with %{friend}.
|
581
|
+
friendship_requested: "Запрошена дружба с %{friend}."
|
582
|
+
#en: from: From
|
583
|
+
from: От
|
584
|
+
#en: from2: From
|
585
|
+
from2: От
|
586
|
+
#en: gender: Gender
|
587
|
+
gender: Пол
|
588
|
+
#en: get_help_from_someone_who_knows: Get help from someone who knows
|
589
|
+
get_help_from_someone_who_knows: Получить помощь от кого-нибудь, кто знает
|
590
|
+
#en: get_popular: Get popular.
|
591
|
+
get_popular: Стань известным
|
592
|
+
#en: get_started: "Get started:"
|
593
|
+
get_started: "Начать:"
|
594
|
+
#en: get_started_banner: Get started with <a href="/">%{site}</a> today!
|
595
|
+
get_started_banner: "Начни сегодня с <a href='/'>%{site}</a>!"
|
596
|
+
#en: invite_some_friends: "Invite some friends!"
|
597
|
+
invite_some_friends: "Пригласить друзей!"
|
598
|
+
#en: tell_us_about_yourself: "Tell us about yourself"
|
599
|
+
tell_us_about_yourself: "Расскажи нам о себе"
|
600
|
+
#en: upload_a_profile_photo: "Upload a profile photo"
|
601
|
+
upload_a_profile_photo: "Загрузка фото профиля"
|
602
|
+
#en: go: Go
|
603
|
+
go: Вперед
|
604
|
+
#en: go2: Go
|
605
|
+
go2: Вперед
|
606
|
+
#en: go_check_your_e_mail: Go check your e-mail!
|
607
|
+
go_check_your_e_mail: Проверьте ваш e-mail!
|
608
|
+
#en: go_to_the_forums: go to the forums
|
609
|
+
go_to_the_forums: перейти на форумы
|
610
|
+
#en: go_to_your_clippings_page_to_get_started: Go to your clippings page to get started.
|
611
|
+
go_to_your_clippings_page_to_get_started: Перейти на вашу страницу вырезок для начала работы.
|
612
|
+
#en: go_to_your_profile: Go to your profile
|
613
|
+
go_to_your_profile: Перейти нв ваш профиль
|
614
|
+
#en: has_commented_on_something_that_you_also_commented_on: %{user} has commented on a %{item} that you also commented on.
|
615
|
+
has_commented_on_something_that_you_also_commented_on: "%{user} прокомментировал %{item}, которую вы уже прокомментировали."
|
616
|
+
#en: has_posted_in_a_thread_you_are_monitoring: %{user} has posted in a thread you are monitoring.
|
617
|
+
has_posted_in_a_thread_you_are_monitoring: "%{user} разместил сообщение в потоке, которые вы контролируете."
|
618
|
+
#en: has_something_to_say_to_you_on: %{user} has something to say to you on %{site}!
|
619
|
+
has_something_to_say_to_you_on: "%{user} хочет что-то сказать вам на %{site}!"
|
620
|
+
#en: have_an_account: "Have an account? "
|
621
|
+
have_an_account: "Имеете учетную запись? "
|
622
|
+
#en: have_something_to_contribute: Have something to contribute?
|
623
|
+
have_something_to_contribute: Хотите пожертвовать?
|
624
|
+
#en: his: his
|
625
|
+
his: его
|
626
|
+
#en: her: her
|
627
|
+
her: ее
|
628
|
+
#en: help: Help
|
629
|
+
help: Помощь
|
630
|
+
#en: home: Home
|
631
|
+
home: На главную
|
632
|
+
#en: homepage_banner_download_msg: Download it now and get started
|
633
|
+
homepage_banner_download_msg: Проходит процесс отладки сайта...
|
634
|
+
#en: homepage_banner_msg: CommunityEngine is the best way to go from zero to hero in no time
|
635
|
+
homepage_banner_msg: CommunityEngine - лучший способ стать узнаваемым
|
636
|
+
#en: homepage_banner_signup_prompt: See how it works
|
637
|
+
homepage_banner_signup_prompt: Как это работает
|
638
|
+
#en: homepage_features: Homepage Features
|
639
|
+
homepage_features: Функции домашней страницы
|
640
|
+
#en: homepage_feature_created: Homepage feature created
|
641
|
+
homepage_feature_created: Функция домашней страницы создана
|
642
|
+
#en: hours_ago: %{count} hours ago
|
643
|
+
hours_ago:
|
644
|
+
one: "один час назад"
|
645
|
+
few: "%{count} часа назад"
|
646
|
+
many: "%{count} часов назад"
|
647
|
+
other: "%{count} часа назад"
|
648
|
+
#en: how_do_i_do_that: How do I do that?
|
649
|
+
how_do_i_do_that: Как могу я это сделать?
|
650
|
+
#en: html: HTML
|
651
|
+
html: HTML
|
652
|
+
#en: image: Image
|
653
|
+
image: Изображение
|
654
|
+
#en: image_url: Image URL
|
655
|
+
image_url: URL изображения
|
656
|
+
#en: in_the_forums: In the forums
|
657
|
+
in_the_forums: На форумах
|
658
|
+
#en: in_your_favorites: In your favorites
|
659
|
+
in_your_favorites: В избранное
|
660
|
+
#en: inactive: inactive
|
661
|
+
inactive: неактивный
|
662
|
+
#en: inbox: Inbox
|
663
|
+
inbox: Почтовый ящик
|
664
|
+
#en: insert: Insert
|
665
|
+
insert: Ввести
|
666
|
+
#en: invite_a_friend: Invite a friend
|
667
|
+
invite_a_friend: Пригласить друга
|
668
|
+
#en: invitation_was_successfully_created: Invitation was successfully created.
|
669
|
+
invitation_was_successfully_created: Приглашение было успешно создано.
|
670
|
+
#en: invite_message: The more people you invite the better %{site} becomes.
|
671
|
+
invite_message: "Чем больше людей вы приглашаете, тем лучше %{site} становится."
|
672
|
+
#en: invite_some_customers: Invite some customers!
|
673
|
+
invite_some_customers: Пригласите некоторых клиентов!
|
674
|
+
#en: invite_your_friends_to_join: Invite Your Friends To Join!
|
675
|
+
invite_your_friends_to_join: Пригласите ваших друзей присоединиться!
|
676
|
+
#en: invited_friends: invited some friends to join!
|
677
|
+
invited_friends: Пригласил своих друзей присоединиться!
|
678
|
+
#en: is_great_check_it_out_youll_love_it: is great, check it out you'll love it!
|
679
|
+
is_great_check_it_out_youll_love_it: "это здорово, попробовав вы полюбите его!"
|
680
|
+
#en: items: Items
|
681
|
+
items: Items
|
682
|
+
#en: items_tagged: Items tagged
|
683
|
+
items_tagged: "Отмеченное ярлыком"
|
684
|
+
#en: joined: joined
|
685
|
+
joined: зарегистрирован
|
686
|
+
#en: joined_the_site: joined %{site}
|
687
|
+
joined_the_site: зарегистрировался на %{site}
|
688
|
+
#en: just_uploading_one_photo: Just uploading one photo?
|
689
|
+
just_uploading_one_photo: Загрузить только одно фото?
|
690
|
+
#en: keywords: Keywords
|
691
|
+
keywords: Ключевые слова
|
692
|
+
#en: large: Large
|
693
|
+
large: Большой
|
694
|
+
#en: last: last
|
695
|
+
last: последний
|
696
|
+
#en: last_post: Last post
|
697
|
+
last_post: Последнее сообщение
|
698
|
+
#en: left_a_comment: "left a comment:"
|
699
|
+
left_a_comment: "оставил комментарий:"
|
700
|
+
#en: links: Links
|
701
|
+
links: Ссылки
|
702
|
+
#en: listing_invitations: Listing invitations
|
703
|
+
listing_invitations: Просмотр приглашений
|
704
|
+
#en: loading_images: Loading images
|
705
|
+
loading_images: Загрузки изображений
|
706
|
+
#en: loading_recent_content: Loading recent content...
|
707
|
+
loading_recent_content: Загрузка недавнего содержимого...
|
708
|
+
#en: location: Location
|
709
|
+
location: Местоположение
|
710
|
+
#en: log_in: Log in
|
711
|
+
log_in: Вход
|
712
|
+
#en: log_in_to_create_a_new_topic: Log in to create a new topic
|
713
|
+
log_in_to_create_a_new_topic: Подключиться для создания новой темы
|
714
|
+
#en: log_in_to_leave_a_comment: Log in to leave a comment
|
715
|
+
log_in_to_leave_a_comment: Подключиться, чтобы оставить комментарий
|
716
|
+
#en: log_in_to_reply_to_this_topic: Log in to reply to this topic
|
717
|
+
log_in_to_reply_to_this_topic: Подключиться для ответа на эту тему
|
718
|
+
#en: log_in_to_site: Log in to %{site}
|
719
|
+
log_in_to_site: "Поключиться к %{site}"
|
720
|
+
#en: log_in_to_vote: Log in to vote
|
721
|
+
log_in_to_vote: Подключиться для голосования
|
722
|
+
#en: log_in_to_your: Log in to your
|
723
|
+
log_in_to_your: Подключиться к своему
|
724
|
+
#en: log_out: Log Out
|
725
|
+
log_out: Выход
|
726
|
+
#en: log_out_of_your: Log out of your
|
727
|
+
log_out_of_your: Отключиться от своего
|
728
|
+
#en: logged_in: "Logged in:"
|
729
|
+
logged_in: "Вошли как:"
|
730
|
+
#en: logged_into_the_site: logged into the site
|
731
|
+
logged_into_the_site: Подключились к сайту
|
732
|
+
#en: login: Login
|
733
|
+
login: Вход
|
734
|
+
#en: logins: Logins
|
735
|
+
logins: Вход
|
736
|
+
#en: location: Location
|
737
|
+
location: Местоположение
|
738
|
+
#en: locked: Locked
|
739
|
+
locked: Заперто
|
740
|
+
#en: locked2: (locked)
|
741
|
+
locked2: (заперто)
|
742
|
+
#en: look_for_a_message_from: "Look for a message from: %{from}"
|
743
|
+
look_for_a_message_from: "Искать сообщение от: %{from}"
|
744
|
+
#en: looking_for_most_x: Looking for %{link}
|
745
|
+
looking_for_most_x: "Искать %{link}"
|
746
|
+
#en: most_recent: most recent
|
747
|
+
most_recent: недавние
|
748
|
+
#en: most_popular: most popular
|
749
|
+
most_popular: самые популярные
|
750
|
+
#en: make_moderator: Make moderator
|
751
|
+
make_moderator: Создать модератора
|
752
|
+
#en: make_page_public: Make this page public
|
753
|
+
make_page_public: Сделать эту страницу открытой
|
754
|
+
#en: make_my_profile_public: Make my profile public
|
755
|
+
make_my_profile_public: Сделать мой профиль открытым
|
756
|
+
#en: make_this_my_profile_photo: Make this my profile photo
|
757
|
+
make_this_my_profile_photo: Сделать его моим профильным фото
|
758
|
+
#en: male: Male
|
759
|
+
male: мужской
|
760
|
+
#en: manage: "Manage:"
|
761
|
+
manage: "Управлять:"
|
762
|
+
#en: manage_my: "Manage my:"
|
763
|
+
manage_my: "Управлять моим:"
|
764
|
+
#en: manage_pages: Manage Pages
|
765
|
+
manage_pages: Управлять страницами
|
766
|
+
#en: manage_posts: Manage Posts
|
767
|
+
manage_posts: Управлять сообщениями
|
768
|
+
#en: medium: Medium
|
769
|
+
medium: Средний
|
770
|
+
#en: map_it: Map It!
|
771
|
+
map_it: Его карта!
|
772
|
+
#en: megabyte_upload_limit: %{count} megabytes upload limit
|
773
|
+
megabyte_upload_limit:
|
774
|
+
one: "ограничение загрузки в 1 мегабайт"
|
775
|
+
few: "ограничение загрузки в %{count} мегабайта"
|
776
|
+
other: "ограничение загрузки в %{count} мегабайт"
|
777
|
+
#en: megabyte_upload_limit_per_file: %{count} megabytes upload limit per file.
|
778
|
+
megabyte_upload_limit_per_file:
|
779
|
+
one: "ограничение загрузки файла размером в 1 мегабайт."
|
780
|
+
few: "ограничение загрузки файла размером в %{count} мегабайта."
|
781
|
+
many: "ограничение загрузки файла размером %{count} мегабайт."
|
782
|
+
other: "ограничение загрузки файла размером %{count} мегабайта."
|
783
|
+
#en: member: Member
|
784
|
+
member: Член
|
785
|
+
#en: members: Members
|
786
|
+
members: Члены
|
787
|
+
#en: member_since: Member since
|
788
|
+
member_since: Участник с
|
789
|
+
#en: message: Message
|
790
|
+
message: Сообщение
|
791
|
+
#en: messages_deleted: Messages deleted
|
792
|
+
messages_deleted: Сообщения удалены
|
793
|
+
#en: messages_sent: Messages sent!
|
794
|
+
messages_sent: Сообщения посланы!
|
795
|
+
#en: message_sent: Message sent!
|
796
|
+
message_sent: Сообщение послано!
|
797
|
+
#en: read: read
|
798
|
+
read: прочитано
|
799
|
+
#en: unread: unread
|
800
|
+
unread: не прочитано
|
801
|
+
#en: unread_messages: %{count} unread messages
|
802
|
+
unread_messages:
|
803
|
+
one: 1 непрочитанное сообщение
|
804
|
+
few: "%{count} непрочитанных сообщения"
|
805
|
+
many: "%{count} непрочитанных сообщений"
|
806
|
+
other: "%{count} непрочитанных сообщения"
|
807
|
+
#en: metro_area: Metro Area
|
808
|
+
metro_area: Область
|
809
|
+
#en: metro_areas: Metro Areas
|
810
|
+
metro_areas: Области
|
811
|
+
#en: metro_area_was_successfully_created: MetroArea was successfully created.
|
812
|
+
metro_area_was_successfully_created: Области были успешно созданы.
|
813
|
+
#en: minutes_ago: %{count} minutes ago
|
814
|
+
minutes_ago:
|
815
|
+
one: "одна минута назад"
|
816
|
+
few: "%{count} минуты назад"
|
817
|
+
many: "%{count} минут назад"
|
818
|
+
other: "%{count} минуты назад"
|
819
|
+
#en: moderator: Moderator
|
820
|
+
moderator: Модератор
|
821
|
+
#en: moderators: Moderators
|
822
|
+
moderators: Модераторы
|
823
|
+
#en: monitored_topics: Monitored Topics
|
824
|
+
monitored_topics: Отслеженные темы
|
825
|
+
#en: month: Month
|
826
|
+
month: Месяц
|
827
|
+
#en: more: More
|
828
|
+
more: Еще
|
829
|
+
#en: more_about_you: More about you
|
830
|
+
more_about_you: Еще о вас
|
831
|
+
#en: most_active_1_month: Most active (1 month)
|
832
|
+
most_active_1_month: Наиболее активный (1 месяц)
|
833
|
+
#en: my_account: My Account
|
834
|
+
my_account: Моя учетная запись
|
835
|
+
#en: my_blog: My Blog
|
836
|
+
my_blog: Мой блог
|
837
|
+
#en: my_blog_posts: My Blog Posts
|
838
|
+
my_blog_posts: Сообщения моего блога
|
839
|
+
#en: my_clippings: My Clippings
|
840
|
+
my_clippings: Мои вырезки
|
841
|
+
#en: my_details: My Details
|
842
|
+
my_details: Мои детали
|
843
|
+
#en: my_friends: My Friends
|
844
|
+
my_friends: Мои друзья
|
845
|
+
#en: my_photos: My Photos
|
846
|
+
my_photos: Мои фото
|
847
|
+
#en: my_profile: My Profile
|
848
|
+
my_profile: Мой профиль
|
849
|
+
#en: my_recent_comments: My recent comments
|
850
|
+
my_recent_comments: Мои недавние комментарии
|
851
|
+
#en: my_tags: My tags
|
852
|
+
my_tags: Мои ярлыки
|
853
|
+
#en: name: Name
|
854
|
+
name: Название
|
855
|
+
#en: navigation_menu_text: Navigation menu text
|
856
|
+
navigation_menu_text: Текст навигационного меню
|
857
|
+
#en: need_some_help_contact_our: Need some help? Check out our
|
858
|
+
need_some_help_contact_our: Нужна помощь? Проверить наши
|
859
|
+
#en: need_to_contact_us: Need to contact us?
|
860
|
+
need_to_contact_us: Нужна связь с нами?
|
861
|
+
#en: new_ad: New Ad
|
862
|
+
new_ad: Новое объявление
|
863
|
+
#en: new_category: New category
|
864
|
+
new_category: Новая категория
|
865
|
+
#en: new_clipping: New clipping
|
866
|
+
new_clipping: Новая вырезка
|
867
|
+
#en: new_event: New Event
|
868
|
+
new_event: Новое событие
|
869
|
+
#en: new_forum: New Forum
|
870
|
+
new_forum: Новый форум
|
871
|
+
#en: new_homepage_feature: New Homepage Feature
|
872
|
+
new_homepage_feature: Новая функция домашней страницы
|
873
|
+
#en: new_invitation: New Invitation
|
874
|
+
new_invitation: Новое приглашение
|
875
|
+
#en: new_invitation_from: New Invitation from
|
876
|
+
new_invitation_from: новое приглашение от
|
877
|
+
#en: new_metro_area: New Metro Area
|
878
|
+
new_metro_area: Новая область
|
879
|
+
#en: new_page: New Page
|
880
|
+
new_page: Новая страница
|
881
|
+
#en: new_photo: New photo.
|
882
|
+
new_photo: Новое фото
|
883
|
+
#en: new_photos_multiple_uploader: "New Photos » Multiple Uploader"
|
884
|
+
new_photos_multiple_uploader: "Новые фотографии » Множественная загрузка"
|
885
|
+
#en: new_post: New post
|
886
|
+
new_post: Новое сообщение
|
887
|
+
#en: new_post_for_category: New %{category}
|
888
|
+
new_post_for_category: "Новая %{category}"
|
889
|
+
#en: new_post_text: New Post text
|
890
|
+
new_post_text: Текст новой темы
|
891
|
+
#en: new_today: New today
|
892
|
+
new_today: Новое сегодня
|
893
|
+
#en: new_topic: New topic
|
894
|
+
new_topic: новая тема
|
895
|
+
#en: new_yesterday: New yesterday
|
896
|
+
new_yesterday: новое вчера
|
897
|
+
#en: next: next
|
898
|
+
next: следующая
|
899
|
+
#en: no_activation_email: No activation e-mail?
|
900
|
+
no_activation_email: Не активирован e-mail?
|
901
|
+
#en: no_comments_found_for_that_item: Sorry, we couldn't find any comments for that %{type}
|
902
|
+
no_comments_found: "К сожалению мы не можем найти комментарии к этому %{type}"
|
903
|
+
#en: no_clippings_yet: No clippings saved yet.
|
904
|
+
no_clippings_yet: Еще не сохранены вырезки.
|
905
|
+
#en: no_images_uploaded_yet: No images uploaded yet.
|
906
|
+
no_images_uploaded_yet: Еще не загружены изображения.
|
907
|
+
#en: no_messages: no messages
|
908
|
+
no_messages: нет сообщений
|
909
|
+
#en: no_profile_photo: "No profile photo?"
|
910
|
+
no_profile_photo: "Нет профильного фото?"
|
911
|
+
#en: no_recent_activity: No recent activity
|
912
|
+
no_recent_activity: Нет активности
|
913
|
+
#en: no_tags: No tags
|
914
|
+
no_tags: Нет ярлыков
|
915
|
+
#en: notify_email_updates: Notify of community news
|
916
|
+
notify_email_updates: Уведомлять о новостях сообщества
|
917
|
+
#en: notify_me_of_follow_ups_via_email: Notify me of follow ups via e-mail
|
918
|
+
notify_me_of_follow_ups_via_email: Уведомить меня через e-mail
|
919
|
+
#en: notify_of_comments: Notify of comments
|
920
|
+
notify_of_comments: Уведомлять о комментариях
|
921
|
+
#en: notify_of_friend_requests: Notify of friend requests
|
922
|
+
notify_of_friend_requests: Уведомлять о запросах друзей
|
923
|
+
#en: number_of_attendees: Number of attendees (including you)
|
924
|
+
number_of_attendees: Количество участников (включая вас)
|
925
|
+
#en: of: of
|
926
|
+
of: из
|
927
|
+
#en: on_commentable: On
|
928
|
+
on_commentable: 'На'
|
929
|
+
#en: optional: optional
|
930
|
+
optional: необязательный
|
931
|
+
#en: optional_keywords_describing_this_clipping_separated_by_commas: optional keywords describing this clipping, separated by commas
|
932
|
+
optional_keywords_describing_this_clipping_separated_by_commas: Необязательные ключевые слова, описывающие эту вырезку, разделенные запятыми
|
933
|
+
#en: optional_keywords_describing_this_forum_separated_by_commas: optional keywords describing this forum, separated by commas
|
934
|
+
optional_keywords_describing_this_forum_separated_by_commas: Необязательные ключевые слова, описывающие этот форум, разделенные запятыми
|
935
|
+
#en: optional_keywords_describing_this_photo_separated_by_commas: optional keywords describing this photo, separated by commas
|
936
|
+
optional_keywords_describing_this_photo_separated_by_commas: Необязательные ключевые слова, описывающие это фото, разделенные запятыми
|
937
|
+
#en: optional_keywords_describing_this_post_separated_by_commas: optional keywords describing this post, separated by commas
|
938
|
+
optional_keywords_describing_this_post_separated_by_commas: "Необязательные ключевые слова, описывающие это сообщение, разделенные запятыми"
|
939
|
+
#en: optional_keywords_describing_this_topic_separated_by_commas: optional keywords describing this topic, separated by commas
|
940
|
+
optional_keywords_describing_this_topic_separated_by_commas: Необязательные ключевые слова, описывающие эту тему, разделенные запятыми
|
941
|
+
#en: yes_status: yes
|
942
|
+
yes: да
|
943
|
+
#en: no_status: no
|
944
|
+
no: нет
|
945
|
+
#en: or: or
|
946
|
+
or: или
|
947
|
+
#en: page: page
|
948
|
+
page: страница
|
949
|
+
#en: page_not_found: The page you are trying to view has been moved or no longer exists.
|
950
|
+
page_not_found: Страница, которую вы пытаетесь посмотреть была перемещена или отсутствует.
|
951
|
+
#en: page_not_public_warning: This page is not public, you'll need to create an account and log in to access it
|
952
|
+
page_not_public_warning: "Эта страница закрыта, вы должны создать учетную запись и подключиться для доступа к ней"
|
953
|
+
#en: page_was_successfully_created: Page was successfully created.
|
954
|
+
page_was_successfully_created: Страница была успешно создана.
|
955
|
+
#en: page_was_successfully_deleted: Page was successfully deleted.
|
956
|
+
page_was_successfully_deleted: Страница была успешно удалена.
|
957
|
+
#en: page_was_successfully_updated: Page was successfully updated.
|
958
|
+
page_was_successfully_updated: Страница была успешно обновлена.
|
959
|
+
#en: pages: Pages
|
960
|
+
pages: Страницы
|
961
|
+
#en: page_tips: "Pages are a good place to put static content that you would rather not post to the blog or the forums."
|
962
|
+
page_tips: "Страницы это хорошее место для размещения постоянного содержимого, которое вы скорее всего не опубликуете в блоге или форуме."
|
963
|
+
#en: password: Password
|
964
|
+
password: Пароль
|
965
|
+
#en: pending: pending
|
966
|
+
pending: в ожидании
|
967
|
+
#en: pending_friendships: Pending Friendships
|
968
|
+
pending_friendships: Ожидание дружбы
|
969
|
+
#en: people: People
|
970
|
+
people: Люди
|
971
|
+
#en: people_who_sign_up_using_your_invitation_will_automatically_be_added_as_your_friends: People who sign up using your invitation will automatically be added as your friends
|
972
|
+
people_who_sign_up_using_your_invitation_will_automatically_be_added_as_your_friends: Те, кто зарегистрировался, используя ваше приглашение будут автоматически добавлены в ваши друзья.
|
973
|
+
#en: people_who_sign_up_using_your_invitation_will_automatically_be_added_as_your_friends_on: People who sign up using your invitation will automatically be added as your friends on
|
974
|
+
people_who_sign_up_using_your_invitation_will_automatically_be_added_as_your_friends_on: Те, кто зарегистрировался, используя ваше приглашение будут автоматические добавлены в ваши друзья на
|
975
|
+
#en: permanently_delete_this_clipping: Permanently delete this clipping?
|
976
|
+
permanently_delete_this_clipping: Совсем удалить эту вырезку?
|
977
|
+
#en: permanently_delete_this_event: Permanently delete this event?
|
978
|
+
permanently_delete_this_event: Совсем удалить это событие?
|
979
|
+
#en: permanently_delete_this_post: Permanently delete this post?
|
980
|
+
permanently_delete_this_post: Совсем удалить эту тему?
|
981
|
+
#en: photo_comments: Photo Comments
|
982
|
+
photo_comments: Комментарии к фото
|
983
|
+
#en: photo_description_from_user: "%{photo_description} from %{user}"
|
984
|
+
photo_description_from_user: "%{photo_description} от %{user}"
|
985
|
+
#en: photo_from_user: "Photo from %{user}"
|
986
|
+
photo_from_user: "Фото от %{user}"
|
987
|
+
#en: photo_message: Your profile photo represents you on %{site}. You can change it later.
|
988
|
+
photo_message: "Ваше профильное фото представляет вас на %{site}. В дальнейшем вы можете изменить его."
|
989
|
+
#en: photo_was_successfully_created: Photo was successfully created.
|
990
|
+
photo_was_successfully_created: Фото было успешно создано.
|
991
|
+
#en: photos: Photos
|
992
|
+
photos: Фото
|
993
|
+
#en: plural_photos: %{count} Photos
|
994
|
+
plural_photos:
|
995
|
+
one: 1 фото
|
996
|
+
few: "%{count} фото"
|
997
|
+
many: "%{count} фото"
|
998
|
+
other: "%{count} фото"
|
999
|
+
#en: photos_should_be_x_pixels: Photos should be 300x300 pixels.
|
1000
|
+
photos_should_be_x_pixels: Фото должны быть размером 300x300 px.
|
1001
|
+
#en: photos_tagged: Photos tagged
|
1002
|
+
photos_tagged: "Ярлыки фото"
|
1003
|
+
#en: photo_tip_1: Photos show the world your creativity. Pick your best pics, and give them good titles and descriptions.
|
1004
|
+
photo_tip_1: "С помощью фото вы показываете миру свое творчество. Выбирайте лучшие фото и давайте им хорошие заголовки и описания."
|
1005
|
+
#en: photo_tip_2: Use tags to organize your photos. Separate tags with commas.
|
1006
|
+
photo_tip_2: Используйте ярлыки для организации ваших фото. Разделяйте ярлыки с помощью запятых.
|
1007
|
+
#en: please_activate_your_new_account: Please activate your new %{site} account
|
1008
|
+
please_activate_your_new_account: "Пожалуйста активируйте свою новую %{site} учетную запись"
|
1009
|
+
#en: please_log_in: Please log in.
|
1010
|
+
please_log_in: Пожалуйста, войдите.
|
1011
|
+
#en: please_post_something_at_least: Please post something at least...
|
1012
|
+
please_post_something_at_least: Пожалуйста, разместите что-нибудь, по крайней мере...
|
1013
|
+
#en: plural_posts: "%{count} posts"
|
1014
|
+
plural_posts:
|
1015
|
+
one: "%{count} сообщение"
|
1016
|
+
few: "%{count} сообщения"
|
1017
|
+
many: "%{count} сообщений"
|
1018
|
+
other: "%{count} сообщения"
|
1019
|
+
#en: popular: Popular
|
1020
|
+
popular: Популярное
|
1021
|
+
#en: popular_category: Popular %{name}
|
1022
|
+
popular_category: "Популярный %{name}"
|
1023
|
+
#en: popular_posts: Popular Posts
|
1024
|
+
popular_posts: Популярные сообщения
|
1025
|
+
#en: popular_posts_on: Popular Posts on
|
1026
|
+
popular_posts_on: Популярные сообщения на
|
1027
|
+
#en: popular_polls: Popular Polls
|
1028
|
+
popular_polls: Популярные опросы
|
1029
|
+
#en position: Position
|
1030
|
+
position: Размещение
|
1031
|
+
#en: post: Post
|
1032
|
+
post: Сообщение
|
1033
|
+
#en: posts: Posts
|
1034
|
+
posts: Сообщений
|
1035
|
+
#en: post_a_new_topic: Post a new topic
|
1036
|
+
post_a_new_topic: Разместить новую тему
|
1037
|
+
#en: post_an_event: Post an event
|
1038
|
+
post_an_event: Разместить событие
|
1039
|
+
#en: posted_an_event: "posted an event:"
|
1040
|
+
posted_an_event: "размещенное событие:"
|
1041
|
+
#en: upcoming_events: Upcoming Events
|
1042
|
+
upcoming_events: Предстоящие события
|
1043
|
+
#en: past_events: Past Events
|
1044
|
+
past_events: Прошедшие события
|
1045
|
+
#en: post_created_for_category: Your '%{category}' post was successfully created.
|
1046
|
+
post_created_for_category: "Ваше '%{category}' сообщение было успешно создано."
|
1047
|
+
#en: post_comments: Post Comments
|
1048
|
+
post_comments: Комментарии сообщения
|
1049
|
+
#en: postal_code: "Postal code:"
|
1050
|
+
postal_code: "Почтовый код:"
|
1051
|
+
#en: posting_tips: "Posting Tips"
|
1052
|
+
posting_tips: "Типы записи"
|
1053
|
+
#en: post_topic: Post topic
|
1054
|
+
post_topic: Разместить статью
|
1055
|
+
#en: posts_photos_and_bookmarks: %{name} posts, photos and bookmarks
|
1056
|
+
posts_photos_and_bookmarks: "%{name} сообщения, фото и закладки"
|
1057
|
+
#en: posts_saved_with_draft_status_wont_appear_in_your_blog_until_you_publish_them: "Posts saved with 'draft' status won't appear in your blog until you publish them."
|
1058
|
+
posts_saved_with_draft_status_wont_appear_in_your_blog_until_you_publish_them: "Сообщения, сохраненные со статусом 'черновик' не будут показаны в вашем блоге пока вы не опубликуете их."
|
1059
|
+
#en: posts_tagged: Posts tagged
|
1060
|
+
posts_tagged: "Ярлыки сообщений"
|
1061
|
+
#en: pages_saved_with_draft_status_wont_appear_on_the_site_until_you_publish_them: Pages saved with 'draft' status won't appear on the site until you publish them.
|
1062
|
+
pages_saved_with_draft_status_wont_appear_on_the_site_until_you_publish_them: Страницы, сохраненные со статусом "черновик" не будут показаны на сайте, пока вы не опубликуете их.
|
1063
|
+
#en: public: Public
|
1064
|
+
public: Открытые
|
1065
|
+
#en: preview: Preview
|
1066
|
+
preview: Просмотр
|
1067
|
+
#en: previewing_your_post: Previewing your post
|
1068
|
+
previewing_your_post: Предварительный просмотр вашего сообщения
|
1069
|
+
#en: previous: previous
|
1070
|
+
previous: предыдущая
|
1071
|
+
#en: print: Print
|
1072
|
+
print: Печатать
|
1073
|
+
#en: print_this_story: "Print this story"
|
1074
|
+
print_this_story: "Печатать эту статью"
|
1075
|
+
#en: profile: Profile
|
1076
|
+
profile: Профиль
|
1077
|
+
#en: profile_comments: Profile Comments
|
1078
|
+
profile_comments: Профиль комментариев
|
1079
|
+
#en: profile_photo: Profile Photo
|
1080
|
+
profile_photo: Профиль фото
|
1081
|
+
#en: profile_photo_change: Change profile photo
|
1082
|
+
profile_photo_change: Изменить профиль фото
|
1083
|
+
#en: profile_photo_crop: Crop profile photo
|
1084
|
+
profile_photo_crop: Обрезать профиль фото
|
1085
|
+
#en: profile_privacy: Profile Privacy
|
1086
|
+
profile_privacy: Профиль конфиденциальности
|
1087
|
+
#en: profile_views: profile views
|
1088
|
+
profile_views: просмотр профиля
|
1089
|
+
#en: pros: Pros
|
1090
|
+
pros: Pros
|
1091
|
+
#en: published: Published
|
1092
|
+
published: опубликованное
|
1093
|
+
#en: question: Question
|
1094
|
+
question: Вопрос
|
1095
|
+
#en: re_type_your_password_to_confirm: "Re-type your password to confirm:"
|
1096
|
+
re_type_your_password_to_confirm: "Повторно введите пароль для подтверждения:"
|
1097
|
+
#en: read_more: read more
|
1098
|
+
read_more: еще читать
|
1099
|
+
#en: recent: Recent
|
1100
|
+
recent: Недавнее
|
1101
|
+
#en: recent_activity: Recent activity
|
1102
|
+
recent_activity: Недавняя активность
|
1103
|
+
#en: recent_blog_posts: Recent Blog Posts
|
1104
|
+
recent_blog_posts: Недавние сообщения в блоге
|
1105
|
+
#en: recent_photos: Recent Photos
|
1106
|
+
recent_photos: Недавние фото
|
1107
|
+
#en: recent_posts: Recent Posts
|
1108
|
+
recent_posts: Недавние сообщения
|
1109
|
+
#en: recommended_posts: Recommended Posts
|
1110
|
+
recommended_posts: Рекомендуемые сообщения
|
1111
|
+
#en: related_clippings_all_members: Related Clippings (all members)
|
1112
|
+
related_clippings_all_members: Связанные вырезки (все участники)
|
1113
|
+
#en: related_photos_all_members: Related Photos (all members)
|
1114
|
+
related_photos_all_members: Связанные фото (все участники)
|
1115
|
+
#en: related_posts: Related Posts
|
1116
|
+
related_posts: Связанные сообщения
|
1117
|
+
#en: related_tags: Related Tags
|
1118
|
+
related_tags: Связанные ярлыки
|
1119
|
+
#en: remember_me: Remember me
|
1120
|
+
remember_me: Запомнить меня
|
1121
|
+
#en: remember_you_can_always_change_this_later: Remember, you can always change this later.
|
1122
|
+
remember_you_can_always_change_this_later: "Помните, вы можете всегда изменить это позже."
|
1123
|
+
#en: remove_moderator: Remove moderator
|
1124
|
+
remove_moderator: Удалить модератора
|
1125
|
+
#en: remove_this_friend: Remove this friend
|
1126
|
+
remove_this_friend: Удалить этого друга
|
1127
|
+
#en: reply: Reply
|
1128
|
+
reply: Ответить
|
1129
|
+
#en: reply_to_topic: Reply
|
1130
|
+
reply_to_topic: Ответить
|
1131
|
+
#en: request_friendship: Request friendship
|
1132
|
+
request_friendship: Запросить дружбу
|
1133
|
+
#en: requested: requested
|
1134
|
+
requested: запрошено
|
1135
|
+
#en: requested_friendship_with: Requested friendship with
|
1136
|
+
requested_friendship_with: Запрошена дружба с
|
1137
|
+
#en: requesting_friendship: Requesting friendship
|
1138
|
+
requesting_friendship: Запрос дружбы
|
1139
|
+
#en: required: required
|
1140
|
+
required: требуется
|
1141
|
+
#en: required_we_will_send_a_confirmation_e_mail_to_the_address_you_enter: "(Required: We will send a confirmation e-mail to the address you enter.)"
|
1142
|
+
required_we_will_send_a_confirmation_e_mail_to_the_address_you_enter: "(Внимание: Мы пошлем e-mail для подтверждения на адрес, который вы ввели.)"
|
1143
|
+
#en: required_you_must_be_at_least_years_old_to_sign_up: "(Required: you must be at least %{min_age} years old to sign up.)"
|
1144
|
+
required_you_must_be_at_least_years_old_to_sign_up: "(Внимание: для регистрации ваш возраст должен быть не менее %{min_age} лет.)"
|
1145
|
+
#en: required_your_username_must_not_contain_numerals_spaces_or_special_characters: "(Required: Your username must not contain spaces or special characters.)"
|
1146
|
+
required_your_username_must_not_contain_numerals_spaces_or_special_characters: "(Внимание: Ваше имя пользователя не должно содержать пробелов и специальных символов.)"
|
1147
|
+
#en: resend_my_activation_e_mail: Resend my activation e-mail
|
1148
|
+
resend_my_activation_e_mail: Повторно послать мне e-mail активации
|
1149
|
+
#en: resend_your_activation_e_mail: Resend your activation e-mail
|
1150
|
+
resend_your_activation_e_mail: Повторный e-mail вашей активации
|
1151
|
+
#en: reset_my_password: Reset my password
|
1152
|
+
reset_my_password: Сброс моего пароля
|
1153
|
+
#en: retract_rsvp: Retract RSVP
|
1154
|
+
retract_rsvp: Отказаться от запроса
|
1155
|
+
#en: rss: RSS
|
1156
|
+
rss: RSS
|
1157
|
+
#en: rss_feed: RSS feed
|
1158
|
+
rss_feed: загрузка RSS
|
1159
|
+
#en: rsvp_for: RSVP for
|
1160
|
+
rsvp_for: Запрос для
|
1161
|
+
#en: rsvped_for_an_event: "RSVPed for an event:"
|
1162
|
+
rsvped_for_an_event: "Запрошено для события:"
|
1163
|
+
#en: rsvp: RSVP
|
1164
|
+
rsvp: Запрос
|
1165
|
+
#en: rsvps: RSVPs
|
1166
|
+
rsvps: Запросы
|
1167
|
+
#en: run: Run
|
1168
|
+
run: Запустить
|
1169
|
+
#en: save: Save
|
1170
|
+
save: Сохранить
|
1171
|
+
#en: save_and_continue_to_step_three: Save, and continue to step three
|
1172
|
+
save_and_continue_to_step_three: "Сохранить, и продолжить и перейти к третьему шагу"
|
1173
|
+
#en: save_changes: Save Changes
|
1174
|
+
save_changes: Сохранить изменения
|
1175
|
+
#en: save_forum: Save Forum
|
1176
|
+
save_forum: Сохранить форум
|
1177
|
+
#en: save_page_as: "Save page as:"
|
1178
|
+
save_page_as: "Сохранить страницу как:"
|
1179
|
+
#en: save_post_as: "Save post as:"
|
1180
|
+
save_post_as: "Сохранить сообщение как:"
|
1181
|
+
#en: save_reply: Save reply
|
1182
|
+
save_reply: Сохранить ответ
|
1183
|
+
#en: says: says
|
1184
|
+
says: сказал
|
1185
|
+
#en: sb_post_was_deleted: Post '%{title}' was deleted.
|
1186
|
+
sb_post_was_deleted: "Сообщение '%{title}' было удалено."
|
1187
|
+
#en: scrapbook: Scrapbook
|
1188
|
+
scrapbook: Альбом
|
1189
|
+
#en: search: Search
|
1190
|
+
search: Поиск
|
1191
|
+
#en: search_users: Search Users
|
1192
|
+
search_users: Поиск пользователей
|
1193
|
+
#en: searching_for: Searching for
|
1194
|
+
searching_for: Поиск для
|
1195
|
+
#en: see_all: SEE ALL
|
1196
|
+
see_all: Посмотреть все
|
1197
|
+
#en: see_all_activity: See all activity
|
1198
|
+
see_all_activity: Посмотреть всю активность
|
1199
|
+
#en: see_all_events: See all events
|
1200
|
+
see_all_events: Посмотреть все события
|
1201
|
+
#en: see_all_recent_posts: See all recent posts
|
1202
|
+
see_all_recent_posts: Посмотреть все недавние события
|
1203
|
+
#en: see_you_back_here_in_a_short_while: See you back here in a short while.
|
1204
|
+
see_you_back_here_in_a_short_while: Надеемся скоро увидеть вас.
|
1205
|
+
#en: select_images_to_upload: Select Images to Upload
|
1206
|
+
select_images_to_upload: Выбрать изображения для загрузки
|
1207
|
+
#en: select_your_city: Select your city
|
1208
|
+
select_your_city: Выберите ваш город
|
1209
|
+
#en: send: "Send"
|
1210
|
+
send: "Послать"
|
1211
|
+
#en: send_comment_notifications: Send comment notifications?
|
1212
|
+
send_comment_notifications: Послать уведомление о сообщении?
|
1213
|
+
#en: send_me_a_message: "Send me a message"
|
1214
|
+
send_me_a_message: "Послать мне сообщение"
|
1215
|
+
#en: send_invitations: Send Invitations!
|
1216
|
+
send_invitations: Послать приглашение!
|
1217
|
+
#en: send_me_my_username: Send me my username
|
1218
|
+
send_me_my_username: Послать мне мое имя пользователя
|
1219
|
+
#en: send_this_story_to_friends: Send this message to friends
|
1220
|
+
send_this_story_to_friends: Послать это сообщение друзьям
|
1221
|
+
#en: sent_messages: Sent messages
|
1222
|
+
sent_messages: Послать сообщения
|
1223
|
+
#en: sent_you_a_private_message: %{user} sent you a private message!
|
1224
|
+
sent_you_a_private_message: "%{user} послал вам личное сообщение!"
|
1225
|
+
#en: service_could_not_be_deleted: Service could not be deleted.
|
1226
|
+
service_could_not_be_deleted: Сервис не можем быть удален.
|
1227
|
+
#en: share_the_love: Share the love
|
1228
|
+
share_the_love: Поделиться
|
1229
|
+
#en: sharethis: ShareThis
|
1230
|
+
sharethis: Поделиться
|
1231
|
+
#en: show: Show
|
1232
|
+
show: Показать
|
1233
|
+
#en: show_category: %{category}
|
1234
|
+
show_category: "%{category}"
|
1235
|
+
#en: show_this_photo: Show this photo
|
1236
|
+
show_this_photo: Показать это фото
|
1237
|
+
#en: showing: Showing
|
1238
|
+
showing: Показ
|
1239
|
+
#en: showing_ad: Showing Ad
|
1240
|
+
showing_ad: Показ объявления
|
1241
|
+
#en: showing_categories: Showing categories
|
1242
|
+
showing_categories: Показ категорий
|
1243
|
+
#en: showing_metro_area_details: Showing Metro Area Details
|
1244
|
+
showing_metro_area_details: Показ деталей области
|
1245
|
+
#en: showing_users: Showing users
|
1246
|
+
showing_users: Показ пользователей
|
1247
|
+
#en: sign_up: Sign Up!
|
1248
|
+
sign_up: Регистрация!
|
1249
|
+
#en: sign_up_for_an_account: Sign up for an account.
|
1250
|
+
sign_up_for_an_account: Регистрация учетной записи.
|
1251
|
+
#en: sign_up_for_a_: Sign up for a
|
1252
|
+
sign_up_for_a_: Регистрация для
|
1253
|
+
#en: sign_up_reason_1: Some reason to sign up
|
1254
|
+
sign_up_reason_1: Несколько причин для регистрации
|
1255
|
+
#en: sign_up_reason_2: Some reason to sign up
|
1256
|
+
sign_up_reason_2: ""
|
1257
|
+
#en: singular_posts: "%{count} post"
|
1258
|
+
singular_posts:
|
1259
|
+
one: "%{count} сообщение"
|
1260
|
+
few: "%{count} сообщения"
|
1261
|
+
many: "%{count} сообщений"
|
1262
|
+
other: "%{count} сообщения"
|
1263
|
+
#en: site_members: "%{site} members"
|
1264
|
+
site_members: "Участники %{site}"
|
1265
|
+
#en: skip_this_and_go_to_your_profile: Skip this and go to your profile
|
1266
|
+
skip_this_and_go_to_your_profile: Пропустите это и перейдите на ваш профиль
|
1267
|
+
#en: skip_this_step: Skip this step
|
1268
|
+
skip_this_step: Пропустите этот шаг
|
1269
|
+
#en: small_profile: "%{user} doesn't have much here yet. Stay tuned."
|
1270
|
+
small_profile: "%{user} недавно здесь. Оставайтесь с нами."
|
1271
|
+
#en: sorry_there_was_an_error: "Sorry, there was an error."
|
1272
|
+
sorry_there_was_an_error: "Извините, это была ошибка."
|
1273
|
+
#en: sorry_there_was_an_error_requesting_friendship: "Sorry, there was an error requesting friendship."
|
1274
|
+
sorry_there_was_an_error_requesting_friendship: "Извините, это была ошибка запроса дружбы."
|
1275
|
+
#en: sorry_there_was_an_error_uploading_the_photo: "Sorry, there was an error uploading the photo."
|
1276
|
+
sorry_there_was_an_error_uploading_the_photo: "Извините, это была ошибка загрузки фото."
|
1277
|
+
#en: sorry_we_dont_recognize_that_email_address: "Sorry. That e-mail address is not associated with an active account. Are you sure you typed it correctly? Have you signed up and activated your account?"
|
1278
|
+
sorry_we_dont_recognize_that_email_address: "Извините. Адрес этого e-mail не связан с активной учетной записью. Проверьте, правильно ли вы написали. Зарегистрированы ли вы и активирована ли ваша учетная запись?"
|
1279
|
+
#en: spread_the_word: Spread the word
|
1280
|
+
spread_the_word: Записать слово
|
1281
|
+
#en: start_date: Start date
|
1282
|
+
start_date: Дата начала
|
1283
|
+
#en: start_time: Start time
|
1284
|
+
start_time: Время начала
|
1285
|
+
#en: started_a_topic: "started a topic:"
|
1286
|
+
started_a_topic: "начата тема:"
|
1287
|
+
#en: state: State
|
1288
|
+
state: Штат
|
1289
|
+
#en: statistics: Statistics
|
1290
|
+
statistics: Статистика
|
1291
|
+
#en: stats: Stats
|
1292
|
+
stats: Статистика
|
1293
|
+
#en: status: Status
|
1294
|
+
status: Статус
|
1295
|
+
#en: sticky: Sticky
|
1296
|
+
sticky: Прилепить
|
1297
|
+
#en: subject: Subject
|
1298
|
+
subject: Тема
|
1299
|
+
#en: subscribe_to: Subscribe to
|
1300
|
+
subscribe_to: Подписаться на
|
1301
|
+
#en: subscribe_events_instructions: Keep up to date with events using your favorite software (Outlook, Lightning / Thunderbird, Sunbird, iCal, etc.) or online service (Google Calendar, AirSet, iScrybe, etc.).
|
1302
|
+
subscribe_events_instructions: "Будьте в курсе событий с помощью вашей любимой программы (Outlook, Lightning / Thunderbird, Sunbird, iCal, и т.д.) или в сетевом сервисе (Google Calendar, AirSet, iScrybe, и т.д.)."
|
1303
|
+
#en: tag_does_not_exists: The tag %{tag} does not exist
|
1304
|
+
tag_does_not_exists: "Ярлык %{tag} не существует"
|
1305
|
+
#en: tag_name: Tag name
|
1306
|
+
tag_name: Имя ярлыка
|
1307
|
+
#en: tag_yourself: tag yourself
|
1308
|
+
tag_yourself: Собственный ярлык
|
1309
|
+
#en: tags: Tags
|
1310
|
+
tags: Ярлыки
|
1311
|
+
#en: taggings: Taggings
|
1312
|
+
taggings: Taggings
|
1313
|
+
#en: tag_was_successfully_updated: Tag was successfully updated
|
1314
|
+
tag_was_successfully_updated: Ярлык был успешно обновлен
|
1315
|
+
#en: tag_was_successfully_deleted: Tag was successfully deleted
|
1316
|
+
tag_was_successfully_deleted: Ярлык был успешно удален
|
1317
|
+
#en: tags_are_comma_separated_keywords_that_describe_you: Tags are comma-separated keywords that describe you.
|
1318
|
+
tags_are_comma_separated_keywords_that_describe_you: Ярлыки - это описываемые вами ключевые слова, разделенные запятой.
|
1319
|
+
#en: tags_are_keywords_you_use_to_organize_your_clippings_separate_multiple_tags_with_commas: Tags are keywords you use to organize your clippings. Separate multiple tags with commas.
|
1320
|
+
tags_are_keywords_you_use_to_organize_your_clippings_separate_multiple_tags_with_commas: Ярлыки - это ключевые слова для организации ваших вырезок. Разделяйте множественные ярлыки запятыми.
|
1321
|
+
#en: tags_are_keywords_you_use_to_organize_your_photos: Tags are keywords you use to organize your photos. Separate multiple tags with commas.
|
1322
|
+
tags_are_keywords_you_use_to_organize_your_photos: Ярлыки - это ключевые слова, которые вы используете для организацииж ваших фото. Разделяйте множественные ярлыки запятыми.
|
1323
|
+
#en: tags_are_one_word_descriptors_users_assign_to_blog_posts_pictures_and_clippings_on: Tags are one-word descriptors user assign to blog posts, pictures and clippings on
|
1324
|
+
tags_are_one_word_descriptors_users_assign_to_blog_posts_pictures_and_clippings_on: Ярлыки это однословные описания пользователем для сообщений блогов, картинок и вырезок на
|
1325
|
+
#en: tagged: tagged
|
1326
|
+
tagged: присвоен ярлык
|
1327
|
+
#en: tags_page: tags page
|
1328
|
+
tags_page: ярлыки страницы
|
1329
|
+
#en: thanks_for_activating_your_account: Thanks for activating your account!
|
1330
|
+
thanks_for_activating_your_account: Спасибо за активацию вашей учетной записи!
|
1331
|
+
#en: thanks_youre_now_logged_in: Thanks! You're now logged in.
|
1332
|
+
thanks_youre_now_logged_in: Спасибо! Вы подключились.
|
1333
|
+
#en: the_comment_was_deleted: The comment was deleted.
|
1334
|
+
the_comment_was_deleted: Комментарий был удален.
|
1335
|
+
#en: the_community_team: "The %{community} team"
|
1336
|
+
the_community_team: "%{community} команда"
|
1337
|
+
#en: the_friendship_was_accepted: The friendship was accepted.
|
1338
|
+
the_friendship_was_accepted: Дружба была принята.
|
1339
|
+
#en: the_friendship_was_denied: The friendship was denied.
|
1340
|
+
the_friendship_was_denied: В дружбе было отказано.
|
1341
|
+
#en: the_more_people_you_invite_the_better: The more people you invite, the better
|
1342
|
+
the_more_people_you_invite_the_better: "Чем больше людей вы приглашаете, тем лучше"
|
1343
|
+
#en: the_service_was_deleted: The service was deleted.
|
1344
|
+
the_service_was_deleted: Сервис был удален.
|
1345
|
+
#en: the_slideshow_is_disabled: The slideshow is disabled.
|
1346
|
+
the_slideshow_is_disabled: Слайд-шоу было отключено.
|
1347
|
+
#en: the_team: The %{site} Team <%{email}>
|
1348
|
+
the_team: "%{site} <%{email}>"
|
1349
|
+
#en: the_user_was_activated: The user was activated
|
1350
|
+
the_user_was_activated: Пользователь был активирован
|
1351
|
+
#en: the_user_was_deactivated: The user was deactivated
|
1352
|
+
the_user_was_deactivated: Пользователь был деактивирован
|
1353
|
+
#en: the_user_was_deleted: The user was deleted.
|
1354
|
+
the_user_was_deleted: Пользователь был удален.
|
1355
|
+
#en: their: their
|
1356
|
+
their: их
|
1357
|
+
#en: this_forum_is_still_getting_started: "This forum is still getting started ... here are some blog posts to get you thinking ..."
|
1358
|
+
this_forum_is_still_getting_started: "Этот форум по-прежнему работает ... Вот некоторые сообщения блога, чтобы вы задумались ..."
|
1359
|
+
#en: this_friendship_is_pending: This Friendship is pending.
|
1360
|
+
this_friendship_is_pending: Эта дружба в ожидании.
|
1361
|
+
#en: this_is_your_dashboard: This is your dashboard.
|
1362
|
+
this_is_your_dashboard: Это ваша панель.
|
1363
|
+
#en: this_month_best: "This month's Best"
|
1364
|
+
this_month_best: "Лучшее в этом месяце"
|
1365
|
+
#en: this_story_is_awesome: "This story is awesome!"
|
1366
|
+
this_story_is_awesome: "Эта статья удивительна!"
|
1367
|
+
#en: this_topic_is_locked: This topic is locked.
|
1368
|
+
this_topic_is_locked: Эта тема заблокирована.
|
1369
|
+
#en: private_user_profile_message: This user's profile is not public. You'll need to create an account and log in to access it.
|
1370
|
+
private_user_profile_message: Профиль этого пользователя не общедоступный. Вам необходимо создать учетную запись и войти, чтобы получить доступ к нему.
|
1371
|
+
#en: thumb: Thumb
|
1372
|
+
thumb: Thumb
|
1373
|
+
#en: time_constrained: Time constrained
|
1374
|
+
time_constrained: Время ограничения
|
1375
|
+
#en: tips: "Tips:"
|
1376
|
+
tips: "Советы:"
|
1377
|
+
#en: title: Title
|
1378
|
+
title: Заголовок
|
1379
|
+
#en: title_required: "Title (required)"
|
1380
|
+
title_required: "Заголовок (требуется)"
|
1381
|
+
#en: to: To
|
1382
|
+
to: Для
|
1383
|
+
#en: to_accept: to accept
|
1384
|
+
to_accept: принять
|
1385
|
+
#en: to_get_recommended_content_on_your_dashboard: to start getting recommended content on your dashboard.
|
1386
|
+
to_get_recommended_content_on_your_dashboard: для получения рекомендованного контента на вашей панеле.
|
1387
|
+
#en: to_get_started_with_clippings_first: To get started with clippings, first
|
1388
|
+
to_get_started_with_clippings_first: "Чтобы начать работу с вырезками, сначала "
|
1389
|
+
#en: to_start_adding_friends: To start adding friends, you can
|
1390
|
+
to_start_adding_friends: "Перед тем, как добавить друзей, вы можете "
|
1391
|
+
#en: to_you: You
|
1392
|
+
to_you: Вы
|
1393
|
+
#en: toggle: Toggle
|
1394
|
+
toggle: Переключатель
|
1395
|
+
#en_ top_pros: Top Pros
|
1396
|
+
top_pros: Топ профи
|
1397
|
+
#en: top_writers: Top Writers
|
1398
|
+
top_writers: Топ писателей
|
1399
|
+
#en: topic: Topics
|
1400
|
+
topic: Статья
|
1401
|
+
#en: topics: Topics
|
1402
|
+
topics: Статей
|
1403
|
+
#en: topic_deleted: Topic '%{topic}' was deleted.
|
1404
|
+
topic_deleted: "Статья '%{topic}' была удалена."
|
1405
|
+
#en: topic_locked: Topic locked
|
1406
|
+
topic_locked: Статья заблокирована
|
1407
|
+
#en: total_users: Total users
|
1408
|
+
total_users: Всего пользователей
|
1409
|
+
#en: total_votes: Total votes
|
1410
|
+
total_votes: Всего голосов
|
1411
|
+
#en: type_a_username: Type a username
|
1412
|
+
type_a_username: Введите имя пользователя
|
1413
|
+
#en: type_your_password: "Type your password:"
|
1414
|
+
type_your_password: "Введите ваш пароль:"
|
1415
|
+
#en: uh_oh_we_couldnt_log_you_in_with_the_username_and_password_you_entered_try_again: "Uh oh. We couldn't log you in with the username and password you entered. Try again?"
|
1416
|
+
uh_oh_we_couldnt_log_you_in_with_the_username_and_password_you_entered_try_again: Извините, но мы не можем вас подключить с именем пользователя и паролем, который вы ввели. Попытаетесь снова?
|
1417
|
+
#en: un_favorite_this: Un-favorite this
|
1418
|
+
un_favorite_this: Это нелюбимое
|
1419
|
+
#en: unactivated_users: Unactivated users
|
1420
|
+
unactivated_users: Неактивизированные пользователи
|
1421
|
+
#en: uncategorized: Uncategorized
|
1422
|
+
uncategorized: Без рубрики
|
1423
|
+
#en: update: Update
|
1424
|
+
update: Обновить
|
1425
|
+
#en: update_rsvp: Update RSVP
|
1426
|
+
update_rsvp: Обновление запроса
|
1427
|
+
#en: update_profile_and_tag_yourself: Update your profile and tag yourself
|
1428
|
+
update_profile_and_tag_yourself: Обновить свой профиль и отметить себя
|
1429
|
+
#en: update_your_profile: update your profile
|
1430
|
+
update_your_profile: обновление вашего профиля
|
1431
|
+
#en: updated_at: Updated at
|
1432
|
+
updated_at: Обновлено в
|
1433
|
+
#en: updated_their_profile: updated their profile
|
1434
|
+
updated_their_profile: обновил свой профиль
|
1435
|
+
#en: upload_an_image_for_your_post: Upload an image for your post
|
1436
|
+
upload_an_image_for_your_post: Загрузка изображения для вашего сообщения
|
1437
|
+
#en: upload_and_continue_to_step_two: Upload, and continue to step two
|
1438
|
+
upload_and_continue_to_step_two: "Загрузите и перейдите к следующему шагу"
|
1439
|
+
#en: uploaded_a_photo: "uploaded a photo:"
|
1440
|
+
uploaded_a_photo: "загрузил фото:"
|
1441
|
+
#en: uploaded_by: uploaded by
|
1442
|
+
uploaded_by: загружено
|
1443
|
+
#en: url: Url
|
1444
|
+
url: Url
|
1445
|
+
#en: user_e_mail: "User e-mail:"
|
1446
|
+
user_e_mail: "e-mail пользователя:"
|
1447
|
+
#en: username: Username
|
1448
|
+
username: Имя пользователя
|
1449
|
+
#en: user: User
|
1450
|
+
user: Пользователь
|
1451
|
+
#en: user_information: %{site} User information
|
1452
|
+
user_information: "Информация пользователя %{site}"
|
1453
|
+
#en: users_blog: "%{user}'s Blog"
|
1454
|
+
users_blog: "Блог %{user}"
|
1455
|
+
#en: user_clippings: %{user}'s Clippings
|
1456
|
+
user_clippings: "Вырезки %{user}"
|
1457
|
+
#en: user_login: User login
|
1458
|
+
user_login: Логин пользователя
|
1459
|
+
#en: users_online: Users online
|
1460
|
+
users_online: Пользователи в онлайн
|
1461
|
+
#en: users_photos: "%{user}'s Photos"
|
1462
|
+
users_photos: "Фото %{user}"
|
1463
|
+
#en: users_profile: %{user}'s profile
|
1464
|
+
users_profile: "Профиль %{user}"
|
1465
|
+
#en: users_tagged: Users tagged
|
1466
|
+
users_tagged: "Ярлыки пользователей"
|
1467
|
+
#en: user_vendor_offer: "<p>Describe the product or service you offer:<ul><li> Tell people what you do</li><li> Explain why you love your work</li><li> How can people contact you? What's your Web site?</li></ul></p>"
|
1468
|
+
user_vendor_offer: "<p>Опишите продукт или услугу, который вы предлагаете:<ul><li> Скажите людям, что вы делаете</li><li> Объясните, почему вы любите свою работу</li><li> Как люди могут с вами связаться? Каков ваш веб-сайт?</li></ul></p>"
|
1469
|
+
#en: user_bio_help: "<p>Your bio is first thing people see on your profile. Some ideas:<ul><li> Describe your sense of style</li><li> Explain what you love about life.</li><li> What's the last thing you purchased for a friend?</li></ul></p>"
|
1470
|
+
user_bio_help: "<p>Ваше био это первое, что люди видят на вашем профиле. Некоторые идеи:<ul><li> Опишите свое чувство стиля</li><li> Объясните, что вам нравится в жизни.</li><li> Что последнее, что вы приобрели для друга?</li></ul></p>"
|
1471
|
+
#en: vendor_avatar_hint: "You may want to use your company logo, or a photo of one of your products. "
|
1472
|
+
vendor_avatar_hint: "Вы можете использовать логотип компании или фото одного из ваших продуктов. "
|
1473
|
+
#en: view: View
|
1474
|
+
view: Просмотр
|
1475
|
+
#en: views_count: Views
|
1476
|
+
view_count: Просмотров
|
1477
|
+
#en: view_all_my_clippings: View all my clippings
|
1478
|
+
view_all_my_clippings: Просмотреть все мои вырезки
|
1479
|
+
#en: view_all_my_friend_requests: View all my friend requests
|
1480
|
+
view_all_my_friend_requests: Просмотреть все запросы моих друзей
|
1481
|
+
#en: view_all_my_photos: View all my photos
|
1482
|
+
view_all_my_photos: Посмотреть все мои фото
|
1483
|
+
#en: view_comment: View Comment
|
1484
|
+
view_comment: Просмотр комментария
|
1485
|
+
#en: view_my_blog: View my blog
|
1486
|
+
view_my_blog: Просмотр моего блога
|
1487
|
+
#en: voice: voice
|
1488
|
+
voice: голос
|
1489
|
+
#en: voices: Voices
|
1490
|
+
voices: Голосов
|
1491
|
+
#en_ vote: Vote
|
1492
|
+
vote: Голосование
|
1493
|
+
#en: vote_now: Vote now!
|
1494
|
+
vote_now: Голосуй сейчас!
|
1495
|
+
#en: votes: votes
|
1496
|
+
votes: голосов
|
1497
|
+
#en: waiting_for: Waiting for
|
1498
|
+
waiting_for: Ожидать
|
1499
|
+
#en: walkthrough_complete: You've completed the %{site} walk-through. Now you can continue exploring!
|
1500
|
+
walkthrough_complete: "Вы завершили просмотр %{site}. Теперь можете продолжить исследование!"
|
1501
|
+
#en: want_to_be_popular: Want to be popular?
|
1502
|
+
want_to_be_popular: Хотите быть популярным?
|
1503
|
+
#en: want_to_list_your_services_on: Want to list your services on
|
1504
|
+
want_to_list_your_services_on: Хотите составить список услуг по
|
1505
|
+
#en: want_to_post_in_this_category: Want to post in this category?
|
1506
|
+
want_to_post_in_this_category: Хотите оставить сообщение в этой категории?
|
1507
|
+
#en: want_to_upload_multiple_files_at_once: Want to upload multiple files at once?
|
1508
|
+
want_to_upload_multiple_files_at_once: Хотите сразу загрузить несколько файлов?
|
1509
|
+
#en: watch_topic: Watch topic
|
1510
|
+
watch_topic: Смотреть статью
|
1511
|
+
#en: watching_topic: Watching topic
|
1512
|
+
watching_topic: Просмотр статьи
|
1513
|
+
#en: we_just_sent_an_e_mail_to: "We just sent an e-mail to: %{email}"
|
1514
|
+
we_just_sent_an_e_mail_to: "Мы послали e-mail на: %{email}"
|
1515
|
+
#en: we_need_you: We need you
|
1516
|
+
we_need_you: Мы нуждаемся в вас
|
1517
|
+
#en: welcome_message: Welcome! %{login_link} or %{signup_link}
|
1518
|
+
welcome_message: "Добро пожаловать! %{login_link} или %{signup_link}"
|
1519
|
+
#en: what_are_tags: 'What are "Tags"?'
|
1520
|
+
what_are_tags: 'Что такое "Ярлыки"?'
|
1521
|
+
#en: what_is: What is %{site}
|
1522
|
+
what_is_site: "Что такое %{site}"
|
1523
|
+
#en: what_is_popular: What's Popular
|
1524
|
+
what_is_popular: Что популярно
|
1525
|
+
#en: whats_fresh: What's fresh
|
1526
|
+
whats_fresh: Что нового
|
1527
|
+
#en: whats_hot: What's Hot
|
1528
|
+
whats_hot: Самое горячее
|
1529
|
+
#en: whats_popular: What's Popular
|
1530
|
+
whats_popular: что популярно
|
1531
|
+
#en: when: When
|
1532
|
+
when: Когда
|
1533
|
+
#en: where: Where
|
1534
|
+
where: Где
|
1535
|
+
#en: when_checked_this_page_will_be_visible_to_anyone: "When checked, this page will be visible to anyone."
|
1536
|
+
when_checked_this_page_will_be_visible_to_anyone: "После отметки эта страница станет видна любому."
|
1537
|
+
#en: when_checked_users_will_be_able_to_rsvp_for_this_event: "When checked, logged in users will be able to RSVP for this event."
|
1538
|
+
when_checked_users_will_be_able_to_rsvp_for_this_event: "После отметки подключенные пользователи смогут посылать запросы для этого события."
|
1539
|
+
#en: when_checked_your_profile_will_be_visible_to_anyone: "When checked, your profile will be visible to anyone."
|
1540
|
+
when_checked_your_profile_will_be_visible_to_anyone: "После отметки ваш профиль будет виден каждому."
|
1541
|
+
#en: when_unchecked_this_page_will_only_be_visible_to_people_who_are_logged_in_to: When unchecked, this page will only be visible to people who are logged in to
|
1542
|
+
when_unchecked_this_page_will_only_be_visible_to_people_who_are_logged_in_to: После снятия метки эта страница станет видна только тем, кто подключился
|
1543
|
+
#en: when_unchecked_your_profile_will_only_be_visible_to_people_who_are_logged_in_to: When unchecked, your profile will only be visible to people who are logged in to
|
1544
|
+
when_unchecked_your_profile_will_only_be_visible_to_people_who_are_logged_in_to: "После снятия метки ваш профиль будет виден только тем, кто подключился к"
|
1545
|
+
#en: when_you_see_an_image_you_like_on_the_web: When you see an image you like on the Web, click the bookmarklet to save it to %{site}
|
1546
|
+
when_you_see_an_image_you_like_on_the_web: "Когда вы увидите в интернете изображение, которое вам понравится, нажмите на bookmarklet для сохранения его на %{site}"
|
1547
|
+
#en: why_sign_up: Why Sign up?
|
1548
|
+
why_sign_up: Зачем регистрироваться?
|
1549
|
+
#en: would_like_to_be_friends_with_you_on: %{user} would like to be friends with you on %{site}!
|
1550
|
+
would_like_to_be_friends_with_you_on: "%{user} хочет быть вам другом на %{site}!"
|
1551
|
+
#en: would_like_you_to_join: %{user} would like you to join %{site}!
|
1552
|
+
would_like_you_to_join: "%{user} хочет пригласить вас на %{site}!"
|
1553
|
+
#en: write_a_blog_post: Write a blog post!
|
1554
|
+
write_a_blog_post: Напиши сообщение в блог!
|
1555
|
+
#en: write_a_message: "Write a message:"
|
1556
|
+
write_a_message: "Написать сообщение:"
|
1557
|
+
#en: write_new_post: Write a '%{category}' post
|
1558
|
+
write_new_post: "Написать '%{category}' сообщение"
|
1559
|
+
#en: wrote_a_post: "wrote a post:"
|
1560
|
+
wrote_a_post: "написал сообщение:"
|
1561
|
+
#en: yesterday: Yesterday
|
1562
|
+
yesterday: Вчера
|
1563
|
+
#en: you_are_editing_your_account: You are editing your account.
|
1564
|
+
you_are_editing_your_account: Вы редактируете свою учетную запись.
|
1565
|
+
#en: you_are_editing_your_profile: "You're editing your profile."
|
1566
|
+
you_are_editing_your_profile: "Вы редактируете свой профиль."
|
1567
|
+
#en: you_can_browse_all_content_and_users_on: You can browse all content and users on
|
1568
|
+
you_can_browse_all_content_and_users_on: Вы можете просмотреть все содержимое и пользователей на
|
1569
|
+
#en: you_cant_delete_that_user: You can't delete that user.
|
1570
|
+
you_cant_delete_that_user: Вы не можете удалить этого пользователя.
|
1571
|
+
#en: you_can_select_up_to_5_files_at_a_time: You can select up to 5 files at a time.
|
1572
|
+
you_can_select_up_to_5_files_at_a_time: Вы можете выбрать до 5 файлов одновременно.
|
1573
|
+
#en: you_could_tag_yourself: You could tag yourself
|
1574
|
+
you_could_tag_yourself: Вы сами можете проставить ярлыки(?)
|
1575
|
+
#en: you_have_friends: You have %{count} friends
|
1576
|
+
you_have_friends:
|
1577
|
+
one: Вы имеете одного друга.
|
1578
|
+
few: "Вы имеете %{count} друга"
|
1579
|
+
many: "Вы имеете %{count} друзей."
|
1580
|
+
other: "Вы имеете %{count} друга."
|
1581
|
+
#en: you_have_added_clippings: You have added %{count} clippings
|
1582
|
+
you_have_added_clippings:
|
1583
|
+
one: Вы добавили 1 вырезку.
|
1584
|
+
few: "Вы добавили %{count} вырезки."
|
1585
|
+
many: "Вы добавили %{count} вырезок."
|
1586
|
+
other: "Вы добавили %{count} вырезки."
|
1587
|
+
#en: you_have: You have
|
1588
|
+
you_have: У вас есть
|
1589
|
+
#en: you_have_already_rsvped_for_this_event: You have already RSVPed for this event.
|
1590
|
+
you_have_already_rsvped_for_this_event: Вы уже послали запрос для этого события.
|
1591
|
+
#en: you_have_already_voted: You have already voted.
|
1592
|
+
you_have_already_voted: Вы уже проголосовали.
|
1593
|
+
#en: you_have_created: You have created
|
1594
|
+
you_have_created: Вы создали
|
1595
|
+
#en: you_have_left_comments: You have left %{count} comments
|
1596
|
+
you_have_left_comments:
|
1597
|
+
one: Вы оставили 1 комментарий.
|
1598
|
+
few: "Вы оставили %{count} комментария."
|
1599
|
+
many: "вы оставили %{count} комментариев."
|
1600
|
+
other: "вы оставили %{count} комментария."
|
1601
|
+
#en: you_have_no_clippings_use_the_bookmarklet_on_the_right_to_add_some: You have no clippings. Use the bookmarklet on the right to add some.
|
1602
|
+
you_have_no_clippings_use_the_bookmarklet_on_the_right_to_add_some: У вас нет вырезок. Используйте bookmarklet справа для их добавления.
|
1603
|
+
#en: you_have_no_network_activity_yet: You have no network activity yet.
|
1604
|
+
you_have_no_network_activity_yet: Вы еще не активны в сети.
|
1605
|
+
#en: you_have_pending_friendship_requests: You have pending friendship requests.
|
1606
|
+
you_have_pending_friendship_requests: Вы в ожидании запроса дружбы.
|
1607
|
+
#en: you_have_uploaded_photos: You have uploaded %{count} photos
|
1608
|
+
you_have_uploaded_photos:
|
1609
|
+
one: Вы загрузили 1 фото.
|
1610
|
+
few: "Вы загрузили %{count} фото."
|
1611
|
+
many: "Вы загрузили %{count} фото."
|
1612
|
+
other: "Вы загрузили %{count} фото."
|
1613
|
+
#en: you_have_written_blog_posts: You have written %{count} blog posts
|
1614
|
+
you_have_written_blog_posts:
|
1615
|
+
one: Вы написали в блог 1 сообщение.
|
1616
|
+
few: "Вы написали в блог %{count} сообщения."
|
1617
|
+
many: "Вы написали в блог %{count} сообщений."
|
1618
|
+
other: "Вы написали в блог %{count} сообщения."
|
1619
|
+
#en: you_last_logged_in_on: You last logged in on
|
1620
|
+
you_last_logged_in_on: Ваше последнее подключение
|
1621
|
+
#en: you_must_vote_to_see_the_results: You must vote to see the resuts.
|
1622
|
+
you_must_vote_to_see_the_results: Чтобы просмотреть результаты вы должны проголосовать.
|
1623
|
+
#en: your_about_text_goes_here: Your About Text Goes Here
|
1624
|
+
your_about_text_goes_here: Место для вашего текста
|
1625
|
+
#en: your_account_has_been_activated: Your %{site} account has been activated!
|
1626
|
+
your_account_has_been_activated: "Ваша %{site} учетная запись была активирована!"
|
1627
|
+
#en: your_faq_text_goes_here: Your FAQ text goes here.
|
1628
|
+
your_faq_text_goes_here: Текст для вашего FAQ.
|
1629
|
+
#en: your_changes_were_saved: Your changes were saved.
|
1630
|
+
your_changes_were_saved: Ваши изменения были сохранены.
|
1631
|
+
#en: your_password_reset_instructions_have_been_emailed_to_you: Instructions to reset your password have been emailed to you.
|
1632
|
+
your_password_reset_instructions_have_been_emailed_to_you: инструкции для сброса вашего пароля были посланы вам по e-mail.
|
1633
|
+
#en: your_post_was_deleted: Your post was deleted.
|
1634
|
+
your_post_was_deleted: ваше сообщение было удалено.
|
1635
|
+
#en: your_post_was_successfully_created: Your post was successfully created.
|
1636
|
+
your_post_was_successfully_created: Ваше сообшение было успешно создано.
|
1637
|
+
#en: your_profile_photo: "Your profile photo:"
|
1638
|
+
your_profile_photo: "ваше профильное фото:"
|
1639
|
+
#en: your_rsvp_has_been_retracted: Your RSVP has been retracted.
|
1640
|
+
your_rsvp_has_been_retracted: Ваш запрос был убран.
|
1641
|
+
#en: your_rsvp_was_successfully_created: Your RSVP was successfully created.
|
1642
|
+
your_rsvp_was_successfully_created: Ваш запрос был успешно создан.
|
1643
|
+
#en: your_rsvp_was_successfully_updated: Your RSVP was successfully updated.
|
1644
|
+
your_rsvp_was_successfully_updated: Ваш запрос был успешно обновлен.
|
1645
|
+
#en: your_username_was_emailed_to_you: Your username was emailed to you.
|
1646
|
+
your_username_was_emailed_to_you: Ваше имя пользователя была послано вам по e-mail.
|
1647
|
+
#en: youve_been_logged_out_hope_you_come_back_soon: You've been logged out. Hope you come back soon!
|
1648
|
+
youve_been_logged_out_hope_you_come_back_soon: Вы были отключены. Надеемся увидеть вас снова!
|
1649
|
+
#en: zippostal_code: "ZIP/Postal code:"
|
1650
|
+
zippostal_code: "ZIP/Почтовый код:"
|
1651
|
+
|
1652
|
+
|
1653
|
+
#This stuff needs to be checked
|
1654
|
+
#en: photo_manager: "Photo manager"
|
1655
|
+
photo_manager: "Управление фото"
|
1656
|
+
#en: album: "Album"
|
1657
|
+
album: "Альбом"
|
1658
|
+
#en: albums: "Albums"
|
1659
|
+
albums: "Альбомы"
|
1660
|
+
#en: album_added_photos: Photos added to album
|
1661
|
+
album_added_photos: Фото добавлены в альбом
|
1662
|
+
# en album_updated: "Album updated"
|
1663
|
+
album_updated: "Альбом обновлен"
|
1664
|
+
#en: album_comments: "Comentarios de álbum"
|
1665
|
+
album_comments: "Комментарии альбома"
|
1666
|
+
#en: album_tip: "Albums let you organize yout photos. Share whole experiencies with other %{community_name} users"
|
1667
|
+
album_tip: "Альбомы позволяют вам организовать ваши фото. Поделитесь своим опытом с другими пользователями %{community_name}"
|
1668
|
+
#en: delete_album_and_photos: Delete album and its associated photos?
|
1669
|
+
delete_album_and_photos: "Удалить альбом и все связанные с ним фото?"
|
1670
|
+
#en: album_was_successfully_created: "Album was successfully created"
|
1671
|
+
album_was_successfully_created: "Альбом был успешно создан"
|
1672
|
+
#en: view_more: "View more"
|
1673
|
+
view_more: "Еще смотреть"
|
1674
|
+
#en: assign_album: "Assign album"
|
1675
|
+
assign_album: "Назначить альбом"
|
1676
|
+
#en: new_album: "New album"
|
1677
|
+
new_album: "Новый альбом"
|
1678
|
+
#en: created_an_album: "Created an album"
|
1679
|
+
created_an_album: "создал альбом"
|
1680
|
+
#en: add_photos: "Add photos"
|
1681
|
+
add_photos: "Добавить фото"
|
1682
|
+
#en: view_my_album: "View my album"
|
1683
|
+
view_my_album: "Посмотреть мой альбом"
|
1684
|
+
#en: photos_of_this_album: "Photos from this album"
|
1685
|
+
photos_of_this_album: "фото из этого альбома"
|
1686
|
+
#en: not_assigned_photos: "Photos not assigned to an album"
|
1687
|
+
not_assigned_photos: "Фото, не предназначенные для альбома"
|
1688
|
+
#en: create_and_add_photos: "Create and add photos to this album"
|
1689
|
+
create_and_add_photos: "Создать и добавить фото в этот альбом"
|
1690
|
+
#en: edit_and_add_photos: "Edit and add photos to this album"
|
1691
|
+
edit_and_add_photos: "Отредактировать и добавить фото в этот альбом"
|
1692
|
+
#en: create_album: "Create album"
|
1693
|
+
create_album: "Создать альбом"
|
1694
|
+
#en: edit_album: "Edit album"
|
1695
|
+
edit_album: "Редактировать альбом"
|
1696
|
+
#en; cancel_and_go_back_to_photo_manager: "Cancel and go back to photo manager"
|
1697
|
+
cancel_and_go_back_to_photo_manager: "Отменить и вернуться к управлению фото"
|
1698
|
+
#en: back_to_photo_manager: "Back to photo manager"
|
1699
|
+
back_to_photo_manager: "Возврат к управлению фото"
|