muck-friends 0.1.1 → 0.1.2
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/README.rdoc +8 -6
- data/Rakefile +0 -10
- data/VERSION +1 -1
- data/app/helpers/muck_friends_helper.rb +27 -22
- data/app/views/friends/_all_friends.html.erb +8 -0
- data/app/views/friends/_friend_requests.html.erb +5 -0
- data/app/views/friends/_friend_simple.html.erb +2 -2
- data/app/views/friends/_mutual_friends.html.erb +3 -0
- data/lib/active_record/acts/muck_friend.rb +2 -2
- data/locales/ar.yml +5 -0
- data/locales/bg.yml +6 -1
- data/locales/ca.yml +5 -0
- data/locales/cs.yml +5 -0
- data/locales/da.yml +5 -0
- data/locales/de.yml +7 -2
- data/locales/el.yml +5 -0
- data/locales/en.yml +5 -0
- data/locales/es.yml +5 -0
- data/locales/et.yml +5 -0
- data/locales/fa.yml +5 -0
- data/locales/fi.yml +5 -0
- data/locales/fr.yml +5 -0
- data/locales/gl.yml +5 -0
- data/locales/hi.yml +5 -0
- data/locales/hr.yml +5 -0
- data/locales/hu.yml +5 -0
- data/locales/id.yml +5 -0
- data/locales/it.yml +5 -0
- data/locales/iw.yml +5 -0
- data/locales/ja.yml +5 -0
- data/locales/ko.yml +5 -0
- data/locales/lt.yml +5 -0
- data/locales/lv.yml +5 -0
- data/locales/mt.yml +5 -0
- data/locales/nl.yml +5 -0
- data/locales/no.yml +5 -0
- data/locales/pl.yml +5 -0
- data/locales/pt-PT.yml +5 -0
- data/locales/ro.yml +5 -0
- data/locales/ru.yml +5 -0
- data/locales/sk.yml +5 -0
- data/locales/sl.yml +5 -0
- data/locales/sq.yml +5 -0
- data/locales/sr.yml +5 -0
- data/locales/sv.yml +5 -0
- data/locales/th.yml +5 -0
- data/locales/tl.yml +5 -0
- data/locales/tr.yml +5 -0
- data/locales/uk.yml +5 -0
- data/locales/vi.yml +5 -0
- data/locales/zh-CN.yml +5 -0
- data/locales/zh-TW.yml +5 -0
- data/locales/zh.yml +5 -0
- data/muck-friends.gemspec +17 -6
- data/test/rails_root/Rakefile +1 -0
- data/test/rails_root/app/controllers/default_controller.rb +4 -2
- data/test/rails_root/app/models/profile.rb +3 -0
- data/test/rails_root/app/models/user.rb +1 -0
- data/test/rails_root/app/views/default/{index.html.erb → all_friends.html.erb} +0 -0
- data/test/rails_root/app/views/default/followers.html.erb +1 -0
- data/test/rails_root/app/views/default/followings.html.erb +1 -0
- data/test/rails_root/app/views/default/friend_requests.html.erb +1 -0
- data/test/rails_root/app/views/default/friends.html.erb +1 -0
- data/test/rails_root/app/views/default/mutual_friends.html.erb +1 -0
- data/test/rails_root/config/environment.rb +1 -0
- data/test/rails_root/config/routes.rb +3 -1
- data/test/rails_root/db/migrate/20090512013727_create_profiles.rb +21 -0
- data/test/rails_root/test/functional/default_controller_test.rb +101 -0
- metadata +17 -6
- data/app/views/friends/_friends.html.erb +0 -8
- data/app/views/friends/_notifications.html.erb +0 -32
- data/app/views/friends/friend_or_follow_request.html.erb +0 -8
data/README.rdoc
CHANGED
@@ -2,8 +2,10 @@
|
|
2
2
|
|
3
3
|
== Installation
|
4
4
|
|
5
|
-
The muck friends engine is part of the muck framework and relies upon the
|
6
|
-
|
5
|
+
The muck friends engine is part of the muck framework and relies upon the muck-engine, muck-users and muck-profiles gems.
|
6
|
+
These gems should be installed automatically when you install the muck-friends gem. Refer to the documentation for each
|
7
|
+
to setup configuration. The muck-activities gem is optional. If it is installed and enable_friend_activity is true
|
8
|
+
then friend and follow activity will be fed into the user's activity feeds
|
7
9
|
|
8
10
|
sudo gem install muck-friends
|
9
11
|
|
@@ -24,7 +26,7 @@ Inside of global_config.yml add the following, changing the emails to match your
|
|
24
26
|
|
25
27
|
# Friend configuration
|
26
28
|
allow_following: true # If true then users can 'follow' each other. If false then only friend requests will be used.
|
27
|
-
enable_friend_activity: true # If true then friend related activity will show up in the activity feed. Requires muck-
|
29
|
+
enable_friend_activity: true # If true then friend related activity will show up in the activity feed. Requires muck-activities gem
|
28
30
|
|
29
31
|
== Usage
|
30
32
|
|
@@ -35,9 +37,7 @@ After installing the gem just create a friend model thus:
|
|
35
37
|
|
36
38
|
class Friend < ActiveRecord::Base
|
37
39
|
acts_as_muck_friend
|
38
|
-
#
|
39
|
-
# has_activities
|
40
|
-
# after_create :add_activity
|
40
|
+
has_activities # requires the muck-activities gem
|
41
41
|
end
|
42
42
|
|
43
43
|
and a user model thus:
|
@@ -45,6 +45,8 @@ and a user model thus:
|
|
45
45
|
class User < ActiveRecord::Base
|
46
46
|
acts_as_muck_user
|
47
47
|
acts_as_muck_friend_user
|
48
|
+
has_muck_profile
|
49
|
+
has_activities # requires the muck-activities gem
|
48
50
|
end
|
49
51
|
|
50
52
|
|
data/Rakefile
CHANGED
@@ -58,16 +58,6 @@ begin
|
|
58
58
|
gemspec.add_dependency "muck-engine"
|
59
59
|
gemspec.add_dependency "muck-users"
|
60
60
|
gemspec.add_dependency "muck-profiles"
|
61
|
-
# gemspec.files.include %w(
|
62
|
-
# tasks/*
|
63
|
-
# db/migrate/*.rb
|
64
|
-
# app/**/**/**/*
|
65
|
-
# config/*
|
66
|
-
# locales/*
|
67
|
-
# rails/*
|
68
|
-
# test/*
|
69
|
-
# lib/**/*
|
70
|
-
# public/**/* )
|
71
61
|
end
|
72
62
|
rescue LoadError
|
73
63
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
@@ -1,47 +1,52 @@
|
|
1
1
|
module MuckFriendsHelper
|
2
2
|
|
3
|
-
def
|
4
|
-
|
3
|
+
def mutual_friends(user1, user2, limit = 6)
|
4
|
+
mutual_friends = user1.friends & user2.friends
|
5
|
+
render :partial => 'friends/mutual_friends', :locals => { :mutual_friends => mutual_friends }
|
5
6
|
end
|
6
|
-
|
7
|
-
def follow_or_friend_request
|
8
|
-
render :partial => 'friends/friend_or_follow_request', :locals => { :user => user }
|
9
|
-
end
|
10
|
-
|
7
|
+
|
11
8
|
def all_friends(user)
|
12
|
-
render :partial => 'friends/
|
9
|
+
render :partial => 'friends/all_friends', :locals => { :user => user }
|
13
10
|
end
|
14
11
|
|
15
|
-
def friends(user)
|
12
|
+
def friends(user, limit = 6)
|
16
13
|
return '' if user.nil?
|
17
|
-
users = user.friends.find(:all, :limit =>
|
14
|
+
users = user.friends.find(:all, :limit => limit, :order => 'friends.created_at DESC')
|
18
15
|
if users
|
19
|
-
render :partial => 'friends/friend_simple', :collection => users
|
16
|
+
render :partial => 'friends/friend_simple', :collection => users
|
20
17
|
else
|
21
18
|
"<p>#{t('muck.friends.no_friends')}</p>"
|
22
19
|
end
|
23
20
|
end
|
24
21
|
|
25
|
-
def followers(user)
|
22
|
+
def followers(user, limit = 6)
|
26
23
|
return '' if user.nil?
|
27
|
-
users = user.followers.find(:all, :limit =>
|
24
|
+
users = user.followers.find(:all, :limit => limit, :order => 'friends.created_at DESC')
|
28
25
|
if users
|
29
|
-
render :partial => 'friends/friend_simple', :collection => users
|
26
|
+
render :partial => 'friends/friend_simple', :collection => users
|
30
27
|
else
|
31
28
|
"<p>#{t('muck.friends.no_followers')}</p>"
|
32
29
|
end
|
33
30
|
end
|
34
31
|
|
35
|
-
def followings(user)
|
32
|
+
def followings(user, limit = 6)
|
36
33
|
return '' if user.nil?
|
37
|
-
users = user.followings.find(:all, :limit =>
|
34
|
+
users = user.followings.find(:all, :limit => limit, :order => 'friends.created_at DESC')
|
38
35
|
if users
|
39
|
-
render :partial => 'friends/friend_simple', :collection => users
|
36
|
+
render :partial => 'friends/friend_simple', :collection => users
|
40
37
|
else
|
41
38
|
"<p>#{t('muck.friends.not_following_anyone')}</p>"
|
42
39
|
end
|
43
40
|
end
|
44
41
|
|
42
|
+
# Render a list of all friend requests (if !GlobalConfig.allow_following)
|
43
|
+
def friend_requests(user)
|
44
|
+
if !GlobalConfig.allow_following
|
45
|
+
followers = user.followers
|
46
|
+
render :partial => 'friends/friend_requests', :locals => { :followers => followers } unless followers.blank?
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
45
50
|
# TODO review this code
|
46
51
|
def get_friend_link(user, target)
|
47
52
|
|
@@ -71,22 +76,22 @@ module MuckFriendsHelper
|
|
71
76
|
|
72
77
|
end
|
73
78
|
|
74
|
-
def accept_follower_link
|
79
|
+
def accept_follower_link(user, target)
|
75
80
|
dom_id = make_id(user, target)
|
76
81
|
wrap_get_friend_link(link_to_remote( I18n.t('muck.friends.accept'), { :url => user_friends_path(user, :id => target), :method => :post}, {:id => "accept-#{target.id}", :class => 'notification-link'}), dom_id)
|
77
82
|
end
|
78
83
|
|
79
|
-
def ignore_friend_request_link
|
84
|
+
def ignore_friend_request_link(user, target)
|
80
85
|
dom_id = make_id(user, target)
|
81
86
|
wrap_get_friend_link(link_to_remote( I18n.t('muck.friends.ignore'), { :url => user_friend_path(user, target), :method => :delete }, {:id => "ignore-#{target.id}", :class => 'notification-link'}), dom_id)
|
82
87
|
end
|
83
88
|
|
84
89
|
protected
|
85
|
-
def wrap_get_friend_link
|
86
|
-
content_tag
|
90
|
+
def wrap_get_friend_link(link, dom_id = '')
|
91
|
+
content_tag(:span, link, :id => dom_id, :class => 'friendship-description')
|
87
92
|
end
|
88
93
|
|
89
|
-
def make_id
|
94
|
+
def make_id(user, target)
|
90
95
|
user.dom_id(target.dom_id + '_friendship_')
|
91
96
|
end
|
92
97
|
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<% followers.each do |follower| %>
|
2
|
+
<li><%= t('muck.friends.friend_request_links', :profile => link_to(h(follower.full_name), profile_path(follower)),
|
3
|
+
:accept => accept_follower_link(current_user, follower),
|
4
|
+
:ignore => ignore_friend_request_link(current_user, follower) ) -%></li>
|
5
|
+
<% end %>
|
@@ -12,7 +12,7 @@ module ActiveRecord
|
|
12
12
|
|
13
13
|
belongs_to :inviter, :class_name => 'User'
|
14
14
|
belongs_to :invited, :class_name => 'User'
|
15
|
-
|
15
|
+
|
16
16
|
include ActiveRecord::Acts::MuckFriend::InstanceMethods
|
17
17
|
extend ActiveRecord::Acts::MuckFriend::SingletonMethods
|
18
18
|
|
@@ -117,7 +117,7 @@ module ActiveRecord
|
|
117
117
|
FriendMailer.deliver_follow(inviter, invited)
|
118
118
|
end
|
119
119
|
|
120
|
-
#
|
120
|
+
# Add activity that indicates user is following another user
|
121
121
|
def add_follow_activity
|
122
122
|
return unless GlobalConfig.enable_friend_activity
|
123
123
|
content = I18n.t('muck.friends.follow_activity', :inviter => self.inviter.full_name, :invited => self.invited.full_name)
|
data/locales/ar.yml
CHANGED
@@ -9,13 +9,18 @@ ar:
|
|
9
9
|
accept: (قبول)
|
10
10
|
delete: (حذف)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: أتباع
|
13
|
+
following: تال
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "طلب صديق"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "طلب صديق في انتظار {{link}}"
|
15
18
|
friend_request_sent: "تم إرسال طلب صديق"
|
19
|
+
friends: أصدقاء
|
16
20
|
friends_title: أصدقائي
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (تجاهل)
|
23
|
+
mutual_friends: "تبادل الأصدقاء"
|
19
24
|
no_followers: "أنت ليست لديها حاليا أي أتباع"
|
20
25
|
no_friends: "أنت ليست لديها حاليا أي الأصدقاء"
|
21
26
|
not_following_anyone: "انك لم تتابع حاليا أحدا"
|
data/locales/bg.yml
CHANGED
@@ -9,15 +9,20 @@ bg:
|
|
9
9
|
accept: (приеме)
|
10
10
|
delete: (изтриване)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: Последователи
|
13
|
+
following: Следващ
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Приятел Запитване"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "Приятел запитване до {{link}}"
|
15
18
|
friend_request_sent: "Приятел Искане Изпратени"
|
19
|
+
friends: Приятели
|
16
20
|
friends_title: "Моите приятели"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (пренебрегни)
|
23
|
+
mutual_friends: "Общи приятели"
|
19
24
|
no_followers: "Не е в момента имате някакви последователите"
|
20
|
-
no_friends: "
|
25
|
+
no_friends: "Не Понастоящем приятели"
|
21
26
|
not_following_anyone: "Вие сте в момента не след никого"
|
22
27
|
problem_adding_follow: "Имаше проблем при добавянето {{user}} да ви следват списък. Моля опитайте отново."
|
23
28
|
problem_sending_friend_request: "Имаше проблем при изпращането на молба за приятелство с {{user}}. Моля опитайте отново."
|
data/locales/ca.yml
CHANGED
@@ -9,13 +9,18 @@ ca:
|
|
9
9
|
accept: (acceptar)
|
10
10
|
delete: (eliminar)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: Seguidors
|
13
|
+
following: Següent
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Sol licitud amic"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "A l'espera de sol licitud d'amistat {{link}}"
|
15
18
|
friend_request_sent: "La sol licitud s'ha enviat un amic"
|
19
|
+
friends: Amics
|
16
20
|
friends_title: "Els meus amics"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (ignorar)
|
23
|
+
mutual_friends: "Amics mutus"
|
19
24
|
no_followers: "Que actualment no té cap seguidors"
|
20
25
|
no_friends: "Vostè no té actualment cap amic"
|
21
26
|
not_following_anyone: "Vostè no està actualment següents a ningú"
|
data/locales/cs.yml
CHANGED
@@ -9,13 +9,18 @@ cs:
|
|
9
9
|
accept: (přijmout)
|
10
10
|
delete: (smazat)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: Následovníci
|
13
|
+
following: Následující
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Zaslat příteli"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "Přátelství čeká {{link}}"
|
15
18
|
friend_request_sent: "Zaslat příteli Posláno"
|
19
|
+
friends: Kamarádi
|
16
20
|
friends_title: "Moji kamarádi"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (ignorovat)
|
23
|
+
mutual_friends: "Vzájemné Přátelé"
|
19
24
|
no_followers: "Nemusíte mít v současné době žádné následovníky"
|
20
25
|
no_friends: "Nemusíte mít v současné době žádné přátele"
|
21
26
|
not_following_anyone: "Ty v současné době nejsou tyto kdokoliv"
|
data/locales/da.yml
CHANGED
@@ -9,13 +9,18 @@ da:
|
|
9
9
|
accept: (accepter)
|
10
10
|
delete: (slet)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: Tilhængere
|
13
|
+
following: Følgende
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Friend Request"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "Ven anmodning indtil {{link}}"
|
15
18
|
friend_request_sent: "Ven Anmodning Sendte"
|
19
|
+
friends: Venner
|
16
20
|
friends_title: "Mine venner"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (ignore)
|
23
|
+
mutual_friends: "Fælles venner"
|
19
24
|
no_followers: "Du kan i øjeblikket ikke har nogen followers"
|
20
25
|
no_friends: "Du kan i øjeblikket ikke har nogen venner"
|
21
26
|
not_following_anyone: "Du er ikke i øjeblikket efter nogen"
|
data/locales/de.yml
CHANGED
@@ -9,18 +9,23 @@ de:
|
|
9
9
|
accept: (akzeptieren)
|
10
10
|
delete: (Löschen)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: Anhänger
|
13
|
+
following: Folgend
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Friend Request"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "Freund Anfrage bis {{link}}"
|
15
18
|
friend_request_sent: "Freund Anfrage gesendet"
|
19
|
+
friends: Freunde
|
16
20
|
friends_title: "Meine Freunde"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (ignore)
|
23
|
+
mutual_friends: "Gemeinsame Freunde"
|
19
24
|
no_followers: "Sie derzeit nicht über alle Anhänger"
|
20
25
|
no_friends: "Sie derzeit nicht haben keine Freunde"
|
21
26
|
not_following_anyone: "Sie sind derzeit noch nicht nach jeder"
|
22
|
-
problem_adding_follow: "Es gab ein Problem hinzufügen {{user}} zu Ihrer Liste folgen. Bitte versuchen Sie es
|
23
|
-
problem_sending_friend_request: "Es wurde ein Problem, das Senden einer Anfrage an {{user}}. Bitte versuchen Sie es
|
27
|
+
problem_adding_follow: "Es gab ein Problem hinzufügen {{user}} zu Ihrer Liste folgen. Bitte versuchen Sie es erneut."
|
28
|
+
problem_sending_friend_request: "Es wurde ein Problem, das Senden einer Anfrage an {{user}}. Bitte versuchen Sie es erneut."
|
24
29
|
removed_friendship: "Entfernt Freund Beziehung"
|
25
30
|
same_inviter_error_message: "User können sich nicht selbst mit Freunden."
|
26
31
|
sign_up_to_follow: "Melden Sie sich an Folgen"
|
data/locales/el.yml
CHANGED
@@ -9,13 +9,18 @@ el:
|
|
9
9
|
accept: (αποδεχθεί)
|
10
10
|
delete: (διαγραφή)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: "Οι οπαδοί"
|
13
|
+
following: Ακολουθία
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Αίτηση Φίλου"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "Φίλος εκκρεμεί αίτηση {{link}}"
|
15
18
|
friend_request_sent: "Φίλος Αίτηση Σταλθέντα"
|
19
|
+
friends: Φίλοι
|
16
20
|
friends_title: "My Friends"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (ignore)
|
23
|
+
mutual_friends: "Αμοιβαία Φίλοι"
|
19
24
|
no_followers: "Εσείς δεν έχουν σήμερα καμία οπαδοί"
|
20
25
|
no_friends: "Μπορείτε επί του παρόντος δεν έχει φίλους"
|
21
26
|
not_following_anyone: "Αυτή τη στιγμή δεν ακόλουθες κανέναν"
|
data/locales/en.yml
CHANGED
@@ -1,10 +1,15 @@
|
|
1
1
|
en:
|
2
2
|
muck:
|
3
3
|
friends:
|
4
|
+
friends: "Friends"
|
5
|
+
followers: "Followers"
|
6
|
+
following: "Following"
|
7
|
+
mutual_friends: "Mutual Friends"
|
4
8
|
friends_title: "My Friends"
|
5
9
|
same_inviter_error_message: "User cannot become friends with themself."
|
6
10
|
following_you: "{{name}} is now following you on {{application_name}}"
|
7
11
|
friend_request: "{{name}} has sent you a friend request on {{application_name}}"
|
12
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
8
13
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
9
14
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
10
15
|
not_following_anyone: "You aren't currently following anyone"
|
data/locales/es.yml
CHANGED
@@ -9,13 +9,18 @@ es:
|
|
9
9
|
accept: (aceptar)
|
10
10
|
delete: (suprimir)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: Seguidores
|
13
|
+
following: Siguiente
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Solicitud amigo"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "En espera de solicitud de amistad {{link}}"
|
15
18
|
friend_request_sent: "La solicitud se ha enviado un amigo"
|
19
|
+
friends: Amigos
|
16
20
|
friends_title: "Mis amigos"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (ignorar)
|
23
|
+
mutual_friends: "Amigos mutuos"
|
19
24
|
no_followers: "Que actualmente no tiene ningún seguidores"
|
20
25
|
no_friends: "Usted no tiene actualmente ningún amigo"
|
21
26
|
not_following_anyone: "Usted no está actualmente siguientes a nadie"
|
data/locales/et.yml
CHANGED
@@ -9,13 +9,18 @@ et:
|
|
9
9
|
accept: (nõus)
|
10
10
|
delete: "(välja jäetud)"
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: Järgijad
|
13
|
+
following: Järgnev
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Sõber Soov"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "Sõber taotleda kuni {{link}}"
|
15
18
|
friend_request_sent: "Sõber Taotlus saadetud"
|
19
|
+
friends: Sõbrad
|
16
20
|
friends_title: "Minu sõbrad"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (ignoreerib)
|
23
|
+
mutual_friends: "Ühised sõbrad"
|
19
24
|
no_followers: "Sul ei ole praegu mingit järgijaid"
|
20
25
|
no_friends: "Sul ei ole praegu ühtegi sõpra"
|
21
26
|
not_following_anyone: "Sa ei ole hetkel järgmised igaüks"
|
data/locales/fa.yml
CHANGED
@@ -9,13 +9,18 @@ fa:
|
|
9
9
|
accept: (قبول)
|
10
10
|
delete: (حذف)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: پیروان
|
13
|
+
following: زیر
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "درخواست دوستان"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "درخواست دوستان در انتظار {{link}}"
|
15
18
|
friend_request_sent: "درخواست ارسال به دوستان"
|
19
|
+
friends: دوستان
|
16
20
|
friends_title: "دوستان من"
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: "(نادیده گرفتن)"
|
23
|
+
mutual_friends: "دوستان متقابل"
|
19
24
|
no_followers: "شما در حال حاضر نیست به هر پیروان"
|
20
25
|
no_friends: "شما در حال حاضر نیست به هر دوستان"
|
21
26
|
not_following_anyone: "شما در حال حاضر نیست زیر هر کسی"
|
data/locales/fi.yml
CHANGED
@@ -9,13 +9,18 @@ fi:
|
|
9
9
|
accept: (hyväksy)
|
10
10
|
delete: (poista)
|
11
11
|
follow_activity: "{{inviter}} is now following {{invited}}"
|
12
|
+
followers: Seuraajat
|
13
|
+
following: Seuraava
|
12
14
|
following_you: "{{name}} is now following you on {{application_name}}"
|
13
15
|
friend_request: "Friend Request"
|
16
|
+
friend_request_links: "{{profile}} sent you a friend request {{accept}} {{ignore}}"
|
14
17
|
friend_request_pending: "Kaveriksitulopyynnön kunnes {{link}}"
|
15
18
|
friend_request_sent: "Friend Pyyntö lähetetty"
|
19
|
+
friends: Ystävät
|
16
20
|
friends_title: Ystävät
|
17
21
|
friends_with: "{{inviter}} is now friends with {{invited}}"
|
18
22
|
ignore: (ohittaa)
|
23
|
+
mutual_friends: "Keskinäinen Ystävät"
|
19
24
|
no_followers: "Sinulla ei tällä hetkellä ole seuraajia"
|
20
25
|
no_friends: "Sinulla ei tällä hetkellä ole yhtään ystävää"
|
21
26
|
not_following_anyone: "Et ole tällä hetkellä seuraavat kukaan"
|