diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb index a8ef1c8b6097be625bac820294da54573ba9c4f1..c428c07352b0de23c87bb620f224cf0b222f0091 100644 --- a/app/controllers/comments_controller.rb +++ b/app/controllers/comments_controller.rb @@ -14,7 +14,7 @@ class CommentsController < ApplicationController text = params[:text] if target - @comment = current_user.build_comment(text, :on => target) + @comment = current_user.build_comment(:text => text, :on => target) if @comment.save Rails.logger.info("event=create type=comment user=#{current_user.diaspora_handle} status=success comment=#{@comment.id} chars=#{params[:text].length}") diff --git a/app/controllers/likes_controller.rb b/app/controllers/likes_controller.rb index fd8e77063ccd51e00a1702686d68e0652c1e3f6f..357c3b90eaa17d0addc4b061945558bd4918063c 100644 --- a/app/controllers/likes_controller.rb +++ b/app/controllers/likes_controller.rb @@ -12,7 +12,7 @@ class LikesController < ApplicationController target = current_user.find_visible_post_by_id params[:post_id] positive = (params[:positive] == 'true') ? true : false if target - @like = current_user.build_like(positive, :on => target) + @like = current_user.build_like(:positive => positive, :on => target) if @like.save Rails.logger.info("event=create type=like user=#{current_user.diaspora_handle} status=success like=#{@like.id} positive=#{positive}") diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index 45779f3c33e1b99549bf74c6cee31b6ca906fb60..9f0863713bc68007e1749759a509f96d915c6609 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -26,13 +26,15 @@ class PeopleController < ApplicationController end format.all do - @people = Person.search(params[:q], current_user).paginate :page => params[:page], :per_page => limit - @hashes = hashes_for_people(@people, @aspects) - #only do it if it is an email address if params[:q].try(:match, Devise.email_regexp) webfinger(params[:q]) + people = Person.where(:diaspora_handle => params[:q]) + else + people = Person.search(params[:q], current_user) end + @people = people.paginate :page => params[:page], :per_page => limit + @hashes = hashes_for_people(@people, @aspects) end end end diff --git a/app/helpers/markdownify_helper.rb b/app/helpers/markdownify_helper.rb index 4e024437531015fcb5a104c2adb85405a1ce63ba..587a50ad1bd04d8ba4a9b13e1cf32987c1e3ba22 100644 --- a/app/helpers/markdownify_helper.rb +++ b/app/helpers/markdownify_helper.rb @@ -70,7 +70,7 @@ module MarkdownifyHelper captures = [$1,$2,$3] if !captures[0].nil? m - elsif m.match(/(youtube|vimeo)/) + elsif m.match(/(youtu.?be|vimeo)/) m.gsub(/(\*|_)/) { |m| "\\#{$1}" } #remove markers on markdown chars to not markdown inside links else res = %{<a target="_blank" href="#{captures[1]}://#{captures[2]}">#{captures[2]}</a>} diff --git a/app/helpers/sockets_helper.rb b/app/helpers/sockets_helper.rb index c42a0defd5a5aa31dd4a2eb967f02cba4b90bd91..175ed92b00fd28092a65b57ac02ca123234fc595 100644 --- a/app/helpers/sockets_helper.rb +++ b/app/helpers/sockets_helper.rb @@ -43,8 +43,8 @@ module SocketsHelper :person => object, :all_aspects => user.aspects, :contact => user.contact_for(object), - :request => user.request_from(object), :current_user => user} + @all_aspects = user.aspects v = render_to_string(:partial => 'people/person', :locals => person_hash) elsif object.is_a? Comment diff --git a/app/models/comment.rb b/app/models/comment.rb index 08ec011e765e1e3fbc8e602d44a7ccdbc79b1c45..e3084553fca0b93dfbc7df9a8cbcec33a01d18c7 100644 --- a/app/models/comment.rb +++ b/app/models/comment.rb @@ -25,7 +25,6 @@ class Comment < ActiveRecord::Base serialize :youtube_titles, Hash before_save do - get_youtube_title text self.text.strip! unless self.text.nil? end def diaspora_handle diff --git a/app/models/message.rb b/app/models/message.rb index abebfc04d461f01906bcf5c1cfe3122040c9e462..1f79ad6a468cfd918eb47ede28b1b0021107f98f 100644 --- a/app/models/message.rb +++ b/app/models/message.rb @@ -63,7 +63,7 @@ class Message < ActiveRecord::Base vis.save self else - raise NotVisibileException("Attempting to access a ConversationVisibility that does not exist!") + raise NotVisibleException("Attempting to access a ConversationVisibility that does not exist!") end end diff --git a/app/models/request.rb b/app/models/request.rb index 775d79361d5229d24f2ffbc339a5521ffc414a29..af97fc7eaff71c7a9598868820369e9a85ad5a1e 100644 --- a/app/models/request.rb +++ b/app/models/request.rb @@ -71,7 +71,7 @@ class Request private def not_already_connected - if sender && recipient && Contact.where(:user_id => self.recipient.owner_id, :person_id => self.sender.id).count > 0 + if sender && recipient && Contact.where(:user_id => self.recipient.owner_id, :person_id => self.sender.id).exists? errors[:base] << 'You have already connected to this person' end end diff --git a/app/models/status_message.rb b/app/models/status_message.rb index 462b6acbe49a12073a78a9975794b3ad2f2ef959..3fb1f9b7faa2baf9b29f79e0a6f2792b49630618 100644 --- a/app/models/status_message.rb +++ b/app/models/status_message.rb @@ -23,9 +23,6 @@ class StatusMessage < Post attr_accessible :text serialize :youtube_titles, Hash - before_save do - get_youtube_title text - end before_create :build_tags diff --git a/app/models/user.rb b/app/models/user.rb index e7b352c75cdd7fa297895a04995de78b020218c8..82534c1e42f1fbae71479bb2d0030048e38c7c71 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -153,38 +153,30 @@ class User < ActiveRecord::Base Salmon::SalmonSlap.create(self, post.to_diaspora_xml) end - ######## Commenting ######## - def build_comment(text, options = {}) - comment = Comment.new(:author_id => self.person.id, - :text => text, - :post => options[:on]) - comment.set_guid - #sign comment as commenter - comment.author_signature = comment.sign_with_key(self.encryption_key) - - if !comment.post_id.blank? && person.owns?(comment.parent) - #sign comment as post owner - comment.parent_author_signature = comment.sign_with_key(self.encryption_key) + def build_relayable(model, options = {}) + options[:post] = options.delete(:on) + m = model.new(options.merge(:author_id => self.person.id)) + m.set_guid + + #sign relayable as model creator + m.author_signature = m.sign_with_key(self.encryption_key) + + if !m.post_id.blank? && person.owns?(m.parent) + #sign relayable as parent object owner + m.parent_author_signature = m.sign_with_key(self.encryption_key) end - comment + m end - ######## Liking ######## - def build_like(positive, options = {}) - like = Like.new(:author_id => self.person.id, - :positive => positive, - :post => options[:on]) - like.set_guid - #sign like as liker - like.author_signature = like.sign_with_key(self.encryption_key) - - if !like.post_id.blank? && person.owns?(like.parent) - #sign like as post owner - like.parent_author_signature = like.sign_with_key(self.encryption_key) - end + ######## Commenting ######## + def build_comment(options = {}) + build_relayable(Comment, options) + end - like + ######## Liking ######## + def build_like(options = {}) + build_relayable(Like, options) end def liked?(post) @@ -194,7 +186,7 @@ class User < ActiveRecord::Base return false end end - + def like_for(post) [post.likes, post.dislikes].each do |likes| likes.each do |like| diff --git a/app/views/aspects/index.html.haml b/app/views/aspects/index.html.haml index 8edff42d07a5221e2ce5b64b7ab3c898bfeb9609..3ae8858e9c45fb595578f42e5a18afa0747a42f3 100644 --- a/app/views/aspects/index.html.haml +++ b/app/views/aspects/index.html.haml @@ -24,7 +24,7 @@ .title = image_tag('/images/icons/bookmark.png') %h5 - Diaspora Bookmarklet + = t('bookmarklet.heading') .content != t('bookmarklet.explanation', :link => link_to(t('bookmarklet.explanation_link_text'), bookmarklet)) @@ -32,10 +32,10 @@ .title = image_tag('/images/icons/cubbies.png') %h5 - Connect to Cubbi.es + = t('.cubbies.heading') .content - Cubbi.es is the first Diaspora application under development. - = link_to "Learn more", token_path + = t('.cubbies.explanation') + = link_to t('.cubbies.learn_more'), token_path - if @invites > 0 .section diff --git a/app/views/aspects/manage.html.haml b/app/views/aspects/manage.html.haml index ca7394783cd26d9d3b7d9405db7857e422f3b416..5f73d7cb8c362522de3c32ee65b7609fce3354c2 100644 --- a/app/views/aspects/manage.html.haml +++ b/app/views/aspects/manage.html.haml @@ -17,8 +17,8 @@ #manage_aspect_zones .span-24.last - - for aspect in @aspects - .aspect.span-9{:data=>{:guid => aspect.id}} + - @aspects.each_with_index do |aspect, i| + .aspect.span-12{:data => {:guid => aspect.id}, :class => (i+1) % 2 == 0 ? "last" : nil} .aspect_name %span.edit_name_field %h3{:contenteditable=>true, :ondragenter=>"return false;", :ondragleave=>"return false;", :ondragover=>"return false;", :ondrop=>"return false;"} diff --git a/app/views/comments/_new_comment.html.haml b/app/views/comments/_new_comment.html.haml index 1dd3aaa2882df33424e3b0b22c6082b8efb8215e..5e777f4da6f5cbdeb346dda44932c5a5bc8c6387 100644 --- a/app/views/comments/_new_comment.html.haml +++ b/app/views/comments/_new_comment.html.haml @@ -3,7 +3,7 @@ -# the COPYRIGHT file. = form_tag( comments_path, :id => "new_comment_on_#{post_id}", :class => 'new_comment', :remote => true) do - = person_image_tag(current_user, nil) + = person_image_tag(current_user) %p = label_tag "comment_text_on_#{post_id}", t('.comment') = text_area_tag :text, nil, :rows => 2, :class => "comment_box",:id => "comment_text_on_#{post_id}" diff --git a/app/views/conversations/_show.haml b/app/views/conversations/_show.haml index ff1797a323af0551484594dc1b53b1b461c4fff4..5c45327e85fc8a7ad9d6a3ead7a0698bfeac4dd7 100644 --- a/app/views/conversations/_show.haml +++ b/app/views/conversations/_show.haml @@ -27,7 +27,7 @@ = render :partial => 'messages/message', :collection => conversation.messages .stream_element.new_message - = owner_image_tag + = owner_image_tag(:thumb_small) .content = form_for [conversation, Message.new] do |message| diff --git a/app/views/people/_person.html.haml b/app/views/people/_person.html.haml index 362c019350e2c39706b953652cfc2e4027feafee..b01b479dff1986ab31ace48bc3829d5ecee99b65 100644 --- a/app/views/people/_person.html.haml +++ b/app/views/people/_person.html.haml @@ -6,7 +6,7 @@ .right = render :partial => 'people/relationship_action', :locals => { :person => person, :contact => contact, - :request => request, :current_user => current_user } + :current_user => current_user } = person_image_link(person) diff --git a/config/locales/devise/devise.ar.yml b/config/locales/devise/devise.ar.yml index da6c3bf25f6dde3aa53e967297aac56cf35e771c..53da33b2a61f6345507b369d2ff784ccfb64174c 100644 --- a/config/locales/devise/devise.ar.yml +++ b/config/locales/devise/devise.ar.yml @@ -29,10 +29,10 @@ ar: you_can_confirm: "يمكنك تأكيد Øسابك عبر الرابط التالي" hello: "مرØبا %{email}!" invitation_instructions: - accept: "Accept invitation" - ignore: "If you don't want to accept the invitation, please ignore this email." - no_account_till: "Your account won't be created until you access the link above and sign up." - subject: "You've been invited to join Diaspora!" + accept: "إقبل الدعوة" + ignore: "رجاء تجاهل هذا البريد الإلكتروني ÙÙŠ Øال لم ترغب بقبول الدعوة" + no_account_till: "لن يتم إنشاء Øسابك Øتى تلج الرابط أعلاه وتسجل" + subject: "تم دعوتك للإنضمام لدياسبرا" inviters: accept_at: ", at %{url}, يمكنك قبولها عبر الرابط التالي." has_invited_you: "%{name} يدعوك للإنضمام إلى دياسبرا" diff --git a/config/locales/devise/devise.bg.yml b/config/locales/devise/devise.bg.yml index 648db692a2356dd638cc223bba22947fbfb59f53..e236d6fa381e857d09ac6755d5776594352824cc 100644 --- a/config/locales/devise/devise.bg.yml +++ b/config/locales/devise/devise.bg.yml @@ -84,7 +84,7 @@ bg: sign_up: "РегиÑтриране" sign_up_closed: "За Ñега региÑтрациите не Ñа възможни." mail_signup_form: - sign_up_for_an_invite: "Запишете Ñе за покана!" + sign_up_for_an_invite: "Резервирайте Ñи покана!" unlocks: new: resend_unlock: "Повторно изпращане на инÑтрукциите за отключване" diff --git a/config/locales/devise/devise.en_shaw.yml b/config/locales/devise/devise.en_shaw.yml index f1108fe63e5017d3f5136c591906f1871bdc0fd7..9db2ed2c6a8817354b3ec3cf0e8e25bed5e62112 100644 --- a/config/locales/devise/devise.en_shaw.yml +++ b/config/locales/devise/devise.en_shaw.yml @@ -29,10 +29,10 @@ en_shaw: you_can_confirm: "ð‘¿ ð‘’ð‘¨ð‘¯ ð‘’ð‘©ð‘¯ð‘“ð‘»ð‘¥ ð‘¿ð‘¼ ð‘©ð‘’ð‘¬ð‘¯ð‘‘ ð‘”ð‘®ð‘µ ð‘ž ð‘¤ð‘¦ð‘™ð‘’ ð‘šð‘¦ð‘¤ð‘´:" hello: "ð‘£ð‘§ð‘¤ð‘´ %{email}!" invitation_instructions: - accept: "Accept invitation" - ignore: "If you don't want to accept the invitation, please ignore this email." - no_account_till: "Your account won't be created until you access the link above and sign up." - subject: "You've been invited to join Diaspora!" + accept: "ð‘©ð‘’ð‘•ð‘§ð‘ð‘‘ ð‘¦ð‘¯ð‘ð‘¦ð‘‘ð‘±ð‘–ð‘©ð‘¯" + ignore: "ð‘¦ð‘“ ð‘¿ ð‘›ð‘´ð‘¯ð‘‘ ð‘¢ð‘³ð‘¯ð‘‘ ð‘‘ ð‘©ð‘’ð‘•ð‘§ð‘ð‘‘ ð‘ž ð‘¦ð‘¯ð‘ð‘¦ð‘‘ð‘±ð‘–ð‘©ð‘¯, ð‘ð‘¤ð‘°ð‘Ÿ ð‘¦ð‘œð‘¯ð‘¹ ð‘žð‘¦ð‘• ð‘¦-ð‘¥ð‘±ð‘¤." + no_account_till: "ð‘¿ð‘¼ ð‘©ð‘’ð‘¬ð‘¯ð‘‘ ð‘¢ð‘´ð‘¯ð‘‘ ð‘šð‘° ð‘’ð‘®ð‘¦ð‘±ð‘‘ð‘©ð‘› ð‘©ð‘¯ð‘‘ð‘¦ð‘¤ ð‘¿ ð‘¨ð‘’ð‘•ð‘§ð‘• ð‘ž ð‘¤ð‘¦ð‘™ð‘’ ð‘©ð‘šð‘³ð‘ 𑯠ð‘•ð‘²ð‘¯ ð‘³ð‘." + subject: "ð‘¿ð‘ ð‘šð‘§ð‘¯ ð‘¦ð‘¯ð‘ð‘²ð‘‘ð‘©ð‘› ð‘‘ ð‘¡ð‘¶ð‘¯ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘©!" inviters: accept_at: ", ð‘¨ð‘‘ %{url}, ð‘¿ ð‘’ð‘¨ð‘¯ ð‘©ð‘’ð‘•ð‘§ð‘ð‘‘ ð‘¦ð‘‘ ð‘”ð‘®ð‘µ ð‘” ð‘¤ð‘¦ð‘™ð‘’ ð‘šð‘¦ð‘¤ð‘´." has_invited_you: "%{name} ð‘£ð‘¨ð‘Ÿ ð‘¦ð‘¥ð‘ð‘²ð‘‘ð‘©ð‘› ð‘¿ ð‘‘ ð‘¡ð‘¶ð‘¯ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘©" diff --git a/config/locales/diaspora/ar.yml b/config/locales/diaspora/ar.yml index 1b684200febca9eb7fd1b95d21deaf0bc9256cdc..f45ef618686acd076dcf3732655ac9bb1807e29b 100644 --- a/config/locales/diaspora/ar.yml +++ b/config/locales/diaspora/ar.yml @@ -43,13 +43,13 @@ ar: are_you_sure: "هل أنت متأكد؟" aspect_memberships: aspect_dropdown: - add_to_aspect: "Add to aspect" + add_to_aspect: "أض٠إلى Ùئة" toggle: - few: "In %{count} aspects" - many: "In %{count} aspects" - one: "In %{count} aspect" - other: "In %{count} aspects" - zero: "Add to aspect" + few: "ÙÙŠ %{count} Ùئات" + many: "ÙÙŠ %{count} Ùئات" + one: "ÙÙŠ %{count} Ùئات" + other: "ÙÙŠ %{count} Ùئات" + zero: "أض٠إلى Ùئة" destroy: failure: "Ùشل ÙÙŠ Øذ٠عضو من الÙئة" no_membership: "لم يتم إيجاد العضو المØدد ÙÙŠ هذه الÙئة" @@ -89,9 +89,13 @@ ar: aspect_not_empty: "الÙئة ليست Ùارغة" remove: "ØØ°Ù" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "هذا وسيط دياسبرا. مثل البريد الالكتروني, يمكنك منØÙ‡ للأصدقاء Øتى تستطيع التواصل معهم" no_contacts: "لا أعضاء" - people_sharing_with_you: "People sharing with you" + people_sharing_with_you: "أعضاء يتشاركون معك" post_a_message: "انشر رسالة >>" manage: add_a_new_aspect: "أض٠Ùئة جديدة" @@ -106,8 +110,8 @@ ar: failure: "لم يعمل %{inspect}" success: "تم تØريك عضو إلى الÙئة الجديدة" new: - create: "Create" - name: "Name" + create: "أنشئ" + name: "إسم" no_posts_message: start_talking: "لم تنشر أي رسالة بعد، إبدأ المØادثة" one: "Ùئة" @@ -125,6 +129,7 @@ ar: bookmarklet: explanation: "%{link} من أي مكان بØÙظ هذا الرابط ÙÙŠ المÙضلة" explanation_link_text: "انشر على دياسبرا" + heading: "Diaspora Bookmarklet" post_something: "انشر شيئا على دياسبرا" post_success: "تم النشر, إغلاق" cancel: "إلغاء" @@ -145,7 +150,7 @@ ar: one: "1 عضو" other: "%{count} أعضاء" sharing: - people_sharing: "People sharing with you:" + people_sharing: "أعضاء يتشاركون معك:" zero: "لا يوجد أعضاء" conversations: create: @@ -207,7 +212,7 @@ ar: already_contacts: "لقد قمت بإنشاء اتصال مع هذا العضو مسبقا" already_sent: "لقد قمت بدعوة هذا الشخص مسبقا" no_more: "لم يتبقى لك أية دعوات" - own_address: "You can't send an invitation to your own address." + own_address: "لا تستطيع إرسال دعوة لعنوانك الخاص" rejected: "واجه هذا البريد الإلكتروني مشاكلا: " sent: "تم إرسال دعوتك" edit: @@ -227,7 +232,7 @@ ar: application: have_a_problem: "واجهت مشكلة؟ اعثر على ØÙ„ هنا" powered_by: "بدعم DIASPORA*" - public_feed: "Ùيد دياسبرا العام لـ for %{name}" + public_feed: "Ùيد دياسبرا العام لـ %{name}" toggle: "التØول إلى الموقع الخاص بالهوات٠المØمولة" whats_new: "ما الجديد؟" your_aspects: "Ùئاتك" @@ -258,23 +263,23 @@ ar: no_results: "لا نتائج موجودة" notifications: also_commented: - few: "%{actors} also commented on %{post_author}'s %{post_link}." - many: "%{actors} also commented on %{post_author}'s %{post_link}." - one: "%{actors} also commented on %{post_author}'s %{post_link}." - other: "%{actors} also commented on %{post_author}'s %{post_link}." - zero: "%{actors} also commented on %{post_author}'s %{post_link}." + few: "%{actors} علق أيضا على %{post_link} %{post_author}." + many: "%{actors} علق أيضا على %{post_link} %{post_author}." + one: "%{actors} علق أيضا على %{post_link} %{post_author}." + other: "%{actors} علق أيضا على %{post_link} %{post_author}." + zero: "%{actors} علق أيضا على %{post_link} %{post_author}." also_commented_deleted: - few: "%{actors} commented on a deleted post." - many: "%{actors} commented on a deleted post." - one: "%{actors} commented on a deleted post." - other: "%{actors} commented on a deleted post." - zero: "%{actors} commented on a deleted post." + few: "%{actors} علقوا على المنشور المØذوÙ." + many: "%{actors} علقوا على المنشور المØذوÙ." + one: "%{actors} علق على المنشور المØذوÙ." + other: "%{actors} علقوا على المنشور المØذوÙ." + zero: "%{actors} علق على المنشور المØذوÙ." comment_on_post: - few: "%{actors} commented on your %{post_link}." - many: "%{actors} commented on your %{post_link}." - one: "%{actors} commented on your %{post_link}." - other: "%{actors} commented on your %{post_link}." - zero: "%{actors} commented on your %{post_link}." + few: "%{actors} علقوا على %{post_link}." + many: "%{actors} علقوا على %{post_link}." + one: "%{actors} علق على %{post_link}." + other: "%{actors} علقوا على %{post_link}." + zero: "%{actors} علق على %{post_link}." helper: new_notifications: few: "%{count} تنبيهات جديدة" @@ -285,50 +290,50 @@ ar: index: and: "Ùˆ" and_others: - few: "and %{count} others" - many: "and %{count} others" - one: "and one more" - other: "and %{count} others" - zero: "and nobody else" + few: "Ùˆ %{count} آخرون" + many: "Ùˆ %{count} آخرون" + one: "Ùˆ آخر" + other: "Ùˆ %{count} آخرون" + zero: "Ùˆ لا Ø£Øد" mark_all_as_read: "وضع الجميع كمقروء" notifications: "تنبيهات" liked: - few: "%{actors} has just liked your %{post_link}." - many: "%{actors} has just liked your %{post_link}." - one: "%{actors} has just liked your %{post_link}." - other: "%{actors} has just liked your %{post_link}." - zero: "%{actors} has just liked your %{post_link}." + few: "%{actors} أعجبوا لتوهم بـ %{post_link}." + many: "%{actors} أعجبوا لتوهم بـ %{post_link}." + one: "%{actors} أعجب لتوه بـ %{post_link}." + other: "%{actors} أعجبوا لتوهم بـ %{post_link}." + zero: "%{actors} أعجب لتوه بـ %{post_link}." liked_post_deleted: - few: "%{actors} liked your deleted post." - many: "%{actors} liked your deleted post." - one: "%{actors} liked your deleted post." - other: "%{actors} liked your deleted post." - zero: "%{actors} liked your deleted post." + few: "%{actors} أعجبوا بالمنشور المØذوÙ." + many: "%{actors} أعجبوا بالمنشور المØذوÙ." + one: "%{actors} أعجب بالمنشور المØذوÙ." + other: "%{actors} أعجبوا بالمنشور المØذوÙ." + zero: "%{actors} أعجب بالمنشور المØذوÙ." mentioned: - few: "%{actors} has mentioned you in a %{post_link}." - many: "%{actors} has mentioned you in a %{post_link}." - one: "%{actors} has mentioned you in a %{post_link}." - other: "%{actors} has mentioned you in a %{post_link}." - zero: "%{actors} has mentioned you in a %{post_link}." + few: "%{actors} أشاروا إليك ÙÙŠ %{post_link}." + many: "%{actors} أشاروا إليك ÙÙŠ %{post_link}." + one: "%{actors} أشار إليك ÙÙŠ %{post_link}." + other: "%{actors} أشاروا إليك ÙÙŠ %{post_link}." + zero: "%{actors} أشار إليك ÙÙŠ %{post_link}." mentioned_deleted: - few: "%{actors} mentioned you in a deleted post." - many: "%{actors} mentioned you in a deleted post." - one: "%{actors} mentioned you in a deleted post." - other: "%{actors} mentioned you in a deleted post." - zero: "%{actors} mentioned you in a deleted post." + few: "%{actors} أشاروا إليك ÙÙŠ منشور Ù…ØذوÙ." + many: "%{actors} أشاروا إليك ÙÙŠ منشور Ù…ØذوÙ." + one: "%{actors} أشار إليك ÙÙŠ منشور Ù…ØذوÙ." + other: "%{actors} أشاروا إليك ÙÙŠ منشور Ù…ØذوÙ." + zero: "%{actors} أشار إليك ÙÙŠ منشور Ù…ØذوÙ." post: "منشور" private_message: - few: "%{actors} sent you a message." - many: "%{actors} sent you a message." - one: "%{actors} sent you a message." - other: "%{actors} sent you a message." - zero: "%{actors} sent you a message." + few: "%{actors} راسلوك." + many: "%{actors} راسلوك." + one: "%{actors} راسلك." + other: "%{actors} راسلوك." + zero: "%{actors} راسلك." started_sharing: - few: "%{actors} started sharing with you." - many: "%{actors} started sharing with you." - one: "%{actors} started sharing with you." - other: "%{actors} started sharing with you." - zero: "%{actors} started sharing with you." + few: "%{actors} بدؤوا المشاركة معك." + many: "%{actors} بدؤوا المشاركة معك." + one: "%{actors} بدأ المشاركة معك." + other: "%{actors} بدؤوا المشاركة معك." + zero: "%{actors} بدأ المشاركة معك." notifier: also_commented: commented: "علق أيضا على مشاركة %{post_author}:" @@ -359,9 +364,9 @@ ar: admin: "إدارة دياسبرا" subject: "رسالة من إدارة دياسبرا:" started_sharing: - sharing: "has started sharing with you!" - sign_in: "Sign in here" - subject: "%{name} has started sharing with you on Diaspora*" + sharing: "بدأ المشاركة معك!" + sign_in: "Ù„Ùج هنا" + subject: "%{name} بدأ المشاركة معك بدياسبرا" thanks: "شكرا," ok: "Øسنا" or: "أو" @@ -482,7 +487,7 @@ ar: registrations: closed: "التسجيلات مغلقة على هذه المنصة" create: - success: "!Diaspora سجل ÙÙŠ" + success: "سجل ÙÙŠ دياسبرا" edit: cancel_my_account: "إلغاء Øسابي" edit: "تعديل %{name}" @@ -552,9 +557,9 @@ ar: add_contact: create_request: "ابØØ« باستخدام وسيط دياسبرا" diaspora_handle: "وسيط دياسبرا" - enter_a_diaspora_username: "أدخل معر٠دياسبرا:" + enter_a_diaspora_username: "أدخل وسيط دياسبرا:" know_email: "تعر٠بريد الإلكتروني؟ يجدر بك دعوتهم" - your_diaspora_username_is: "معر٠دياسبورا خاصتك هو: %{diaspora_handle}" + your_diaspora_username_is: "وسيط دياسبورا خاصتك هو: %{diaspora_handle}" contact_list: all_contacts: "جميع الأعضاء" footer: @@ -592,10 +597,10 @@ ar: reshare: reshare: "إعادة مشاركة" stream_element: - dislike: "لم يعجبني هذا" - like: "أعجبني هذا" + dislike: "لم يعجبني" + like: "أعجبني" unlike: "إلغاء إعجابي" - via: "via %{link}" + via: "بواسطة %{link}" status_messages: create: success: "ذكرت بنجاØ: %{names}" @@ -610,11 +615,11 @@ ar: not_found: "للأسÙØŒ لم نجد هذا المنشور" permalink: "رابط دائم" too_long: - few: "please make your status messages less than %{count} characters" - many: "please make your status messages less than %{count} characters" - one: "please make your status messages less than %{count} character" - other: "please make your status messages less than %{count} characters" - zero: "please make your status messages less than %{count} characters" + few: "رجاء لا تتجاوز ÙÙŠ منشوراتك Øد %{count} ØرÙا" + many: "رجاء لا تتجاوز ÙÙŠ منشوراتك Øد %{count} ØرÙا" + one: "رجاء لا تتجاوز ÙÙŠ منشوراتك Øد %{count} ØرÙا" + other: "رجاء لا تتجاوز ÙÙŠ منشوراتك Øد %{count} ØرÙا" + zero: "رجاء لا تتجاوز ÙÙŠ منشوراتك Øد %{count} ØرÙا" stream_helper: hide_comments: "إخÙاء التعليقات" show_comments: "إظهار التعليقات" @@ -626,20 +631,20 @@ ar: the_world: "العالم" tokens: show: - connect_to_cubbies: "Connect to Cubbi.es" - connecting_is_simple: "Connecting your Diaspora account is as simple as filling out two fields on your Cubbi.es account page." - daniels_account: "Daniel's Diaspora account" - generate_a_token: "Generate a token" - love_to_try: "We'd love for you to try it out." - making_the_connection: "Making the Connection" - screenshot_explanation: "%{link1}. This particular cubby is linked to %{link2}." - sign_up_today: "Sign up today!" - typical_userpage: "A typical cubbi.es userpage" - via: "(via %{link})" - were_working_hard: "We're working hard on delivering easy connectivity between Diaspora pods and applications. In the meantime, connecting you Diaspora account with Cubbi.es means copying and pasting two fields." - what_is_cubbies: "Cubbi.es is the world's first Diaspora application. It's also the best way to collect photos online." - your_diaspora_handle: "Your Diaspora Handle:" - your_diaspora_token: "Your Diaspora Token:" + connect_to_cubbies: "اتصل بـ Cubbi.es" + connecting_is_simple: "صÙÙ„ Øساب دياسبرا خاصتك عن طريق ملأ Øقلين بـصÙØØ© Øساب Cubbi.es خاصتك." + daniels_account: "Øساب دياسبرا الخاص بدانييل" + generate_a_token: "أنشئ إقليدا" + love_to_try: "Ù†Øبذ أن تجربه." + making_the_connection: "جار٠الإتصال" + screenshot_explanation: "%{link1}. هذا الـ cubby خاص بـ %{link2}." + sign_up_today: "سجل الآن!" + typical_userpage: "Øساب cubbi.es نموذجي" + via: "(بواسطة %{link})" + were_working_hard: "Ù†ØÙ† نعمل بكد لخلق اتصال سلس وسهل بين منصات دياسبرا مع برمجيات أخرى. على سبيل المثال, وصل Øساب دياسبرا بـ Cubbi.es يعني نسخ ولصق Øقلين Ùقط" + what_is_cubbies: "Cubbi.es هو أول برنامج خاص بدياسبرا ÙÙŠ العالم. وأيضا Ø£Ùضل وسيلة لتجميع الصور على الويب." + your_diaspora_handle: "وسيط دياسبرا خاصتك:" + your_diaspora_token: "إقليد دياسبرا خاصتك:" undo: "تراجع؟" username: "معرÙ" users: @@ -661,7 +666,7 @@ ar: new_password: "كلمة مرور جديدة" private_message: "...وصلتك راسلة خاصة" receive_email_notifications: "استقبال تنبيهات عبر البريد الإلكتروني؟" - started_sharing: "...someone starts sharing with you?" + started_sharing: "...بدأ Ø£Øدهم المشاركة معك؟" your_email: "بريدك الإلكتروني" your_handle: "وسيط دياسبرا خاصتك" getting_started: diff --git a/config/locales/diaspora/bg.yml b/config/locales/diaspora/bg.yml index 625733dc78a21a20bab5b145eeefe5bcc00e3b30..6e5e183566b5643aa07a5c5f2490af51c30a39df 100644 --- a/config/locales/diaspora/bg.yml +++ b/config/locales/diaspora/bg.yml @@ -89,6 +89,10 @@ bg: aspect_not_empty: "ÐÑпектът не е празен" remove: "премахване" index: + cubbies: + explanation: "Cubbi.es е първото приложение за Diaspora и вÑе още Ñе разработва." + heading: "Свързване Ñ Cubbi.es" + learn_more: "Ðаучете повече" handle_explanation: "Това е вашиÑÑ‚ Ð°Ð´Ñ€ÐµÑ Ð² Diaspora. ÐаподобÑва Ð°Ð´Ñ€ÐµÑ Ð½Ð° ел. поща - давате го на хора, за да Ñе Ñвържат Ñ Ð²Ð°Ñ." no_contacts: "ÐÑма контакти" people_sharing_with_you: "Хора ÑподелÑщи Ñ Ð²Ð°Ñ" @@ -125,6 +129,7 @@ bg: bookmarklet: explanation: "Публикувайте в Diaspora от където и да е, запаметÑвайки %{link} като отметка." explanation_link_text: "тази връзка" + heading: "Diaspora Bookmarklet" post_something: "Публикуване в Diaspora" post_success: "Публикувано!" cancel: "Отказ" @@ -190,11 +195,11 @@ bg: show: already_account: "вече имате акаунт?" choice: "Избор" - choice_explanation: "Diaspora предоÑÑ‚Ð°Ð²Ñ Ð²ÑŠÐ·Ð¼Ð¾Ð¶Ð½Ð¾ÑÑ‚ за Ñортиране на контактите в групи наречени аÑпекти. Те Ñа уникална функциÑ, коÑто позволÑва ÑподелÑнето на Ñнимки, иÑтории и шеги Ñамо Ñ Ñ…Ð¾Ñ€Ð°Ñ‚Ð°, за които Ñа предвидени." + choice_explanation: "Diaspora предоÑÑ‚Ð°Ð²Ñ Ð²ÑŠÐ·Ð¼Ð¾Ð¶Ð½Ð¾ÑÑ‚ за Ñортиране на контактите в групи, наречени аÑпекти. Уникални за Diaspora, те позволÑват ÑподелÑнето на Ñнимки, иÑтории и шеги Ñамо Ñ Ñ…Ð¾Ñ€Ð°Ñ‚Ð°, за които Ñа предвидени.\n" learn_about_host: "Ðаучете как да Ñтартирате Diaspora на ÑобÑтвен Ñървър." login_here: "впишете Ñе от тук" ownership: "СобÑтвеноÑÑ‚" - ownership_explanation: "Вие притежавате Ñнимките Ñи и не е необходимо да Ñе отказвате от това Ñи право Ñамо за да ги Ñподелите. Вие запазвате ÑобÑтвеноÑтта Ñи върху вÑичко Ñподелено в Diaspora - това ви оÑигурÑва контрол над разпроÑтранението." + ownership_explanation: "Вие притежавате Ñнимките Ñи и не е необходимо да Ñе отказвате от това Ñи право Ñамо за да ги Ñподелите. Запазвате ÑобÑвеноÑÑ‚ върху вÑичко, което ÑподелÑте в Diaspora и контролирате разпроÑтранението." share_what_you_want: "СподелÑйте каквото желаете, Ñ ÐºÐ¾Ð³Ð¾Ñ‚Ð¾ пожелаете." simplicity: "ЛеÑнота" simplicity_explanation: "СподелÑнето чрез Diaspora е проÑто и леÑно. Характерно за Diaspora е, че запазва Ð»Ð¸Ñ‡Ð½Ð¸Ñ Ð²Ð¸ живот поверителен без нужда от наÑтройване на различни Ñтраници Ñ Ð±ÐµÐ·Ð±Ñ€Ð¾Ð¹ опции." @@ -213,7 +218,7 @@ bg: edit: sign_up: "региÑтриране" new: - already_invited: "Вече е поканен" + already_invited: "Вече поканени" aspect: "ÐÑпект" comma_seperated_plz: "Можете да въведете повече от една ел. поща като ги разделÑте ÑÑŠÑ Ð·Ð°Ð¿ÐµÑ‚Ð°Ð¸." if_they_accept_info: "ако приемат поканата ще бъдат добавени към аÑпекта в който Ñте ги поканили." @@ -331,9 +336,9 @@ bg: zero: "%{actors} започна да ÑÐ¿Ð¾Ð´ÐµÐ»Ñ Ñ Ð²Ð°Ñ." notifier: also_commented: - commented: "has also commented on %{post_author}'s post:" + commented: "Ñъщо коментира публикациÑта на %{post_author}:" sign_in: "Впишете Ñе, за да Ñ Ð¿Ñ€ÐµÐ³Ð»ÐµÐ´Ð°Ñ‚Ðµ." - subject: "%{name} has also commented on %{post_author}'s post." + subject: "%{name} коментира Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð½Ð° %{post_author}." comment_on_post: commented: "добави коментар на ваша публикациÑ:" sign_in: "Впишете Ñе, за да го прегледате." @@ -441,7 +446,7 @@ bg: view_all: "вÑички Ñнимки на %{name}" show: collection_permalink: "поÑтоÑнен Ð°Ð´Ñ€ÐµÑ Ð½Ð° колекциÑта" - delete_photo: "Изтриване на изображение" + delete_photo: "Изтриване на изображението" edit: "редактиране" edit_delete_photo: "Редактиране на опиÑанието / изтриване" make_profile_photo: "ползване като профилна Ñнимка" @@ -610,11 +615,11 @@ bg: not_found: "За Ñъжаление публикациÑта не може да бъде намерена." permalink: "поÑтоÑнен адреÑ" too_long: - few: "please make your status messages less than %{count} characters" - many: "please make your status messages less than %{count} characters" - one: "please make your status messages less than %{count} character" - other: "please make your status messages less than %{count} characters" - zero: "please make your status messages less than %{count} characters" + few: ", Ð¼Ð¾Ð»Ñ Ñъкратете Ñъобщението Ñи до %{count} знака" + many: ", Ð¼Ð¾Ð»Ñ Ñъкратете Ñъобщението Ñи до %{count} знака" + one: ", Ð¼Ð¾Ð»Ñ Ñъкратете Ñъобщението Ñи до %{count} знака" + other: ", Ð¼Ð¾Ð»Ñ Ñъкратете Ñъобщението Ñи до %{count} знака" + zero: ", Ð¼Ð¾Ð»Ñ Ñъкратете Ñъобщението Ñи до %{count} знака" stream_helper: hide_comments: "Ñкриване на коментарите" show_comments: "вÑички коментари" diff --git a/config/locales/diaspora/br.yml b/config/locales/diaspora/br.yml index 2ebba0312f2921791a69f9e1a2c11e12eb1d154c..665efcac9ae1cc56be2d6f7651a8d89591808469 100644 --- a/config/locales/diaspora/br.yml +++ b/config/locales/diaspora/br.yml @@ -89,6 +89,10 @@ br: aspect_not_empty: "Aspect not empty" remove: "skarzhañ" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Ar postel-mañ zo ho skor diaspora. E-giz ur chomlec'h-postel e c'hellit skignat anezhañ a-benn bezañ kavet gant an dud." no_contacts: "Darempred ebet" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ br: bookmarklet: explanation: "%{link} adalek pep lec'h dre lakaat al liamm-se e-barzh ho sinedoù." explanation_link_text: "Embann e-barzh Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Embann un dra bennak e-barzh Diaspora" post_success: "Embannet! O serriñ!" cancel: "Nullañ" diff --git a/config/locales/diaspora/ca.yml b/config/locales/diaspora/ca.yml index 34356cb69dfdb0fed592968af07cc2571080c3a8..352dd5f3132685a5610cb35e102d2d281c3ec59b 100644 --- a/config/locales/diaspora/ca.yml +++ b/config/locales/diaspora/ca.yml @@ -364,9 +364,9 @@ ca: and_others: zero: "i ningú més" one: "i una persona més" - few: "i %{number} més" - many: "i %{number} més" - other: "i %{number} més" + few: "i %{count} més" + many: "i %{count} més" + other: "i %{count} més" and: "i" helper: new_notifications: diff --git a/config/locales/diaspora/cs.yml b/config/locales/diaspora/cs.yml index cc00f82629f0e6b070a8cc88c2f2644cfb19cb6a..9863746e1f0068d623aa6b285e7ccc83fa74c5da 100644 --- a/config/locales/diaspora/cs.yml +++ b/config/locales/diaspora/cs.yml @@ -89,6 +89,10 @@ cs: aspect_not_empty: "Aspekt nenà prázdný" remove: "odebrat" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Toto je váš Diaspora identifikátor. PodobnÄ› jako e-mailovou adresu ho můžete dál lidem a budete na nÄ›m dostupnÃ." no_contacts: "Žádné kontakty" people_sharing_with_you: "Lidé, kteřà s vámi sdÃlÃ" @@ -125,6 +129,7 @@ cs: bookmarklet: explanation: "PÅ™idat na Diaspora odkudkoliv do záložek %{link}." explanation_link_text: "tento odkaz" + heading: "Diaspora Bookmarklet" post_something: "Poslat nÄ›co na Diasporu" post_success: "Odesláno! ZavÃrám!" cancel: "ZruÅ¡it" @@ -258,23 +263,23 @@ cs: no_results: "Nebyly nalezeny žádné výsledky" notifications: also_commented: - few: "%{actors} also commented on %{post_author}'s %{post_link}." - many: "%{actors} also commented on %{post_author}'s %{post_link}." - one: "%{actors} also commented on %{post_author}'s %{post_link}." - other: "%{actors} also commented on %{post_author}'s %{post_link}." - zero: "%{actors} also commented on %{post_author}'s %{post_link}." + few: "%{actors} také komentovali %{post_link} od %{post_author}." + many: "%{actors} také komentovali %{post_link} od %{post_author}." + one: "%{actors} také komentoval %{post_link} od %{post_author}." + other: "%{actors} také komentovali %{post_link} od %{post_author}." + zero: "%{actors} také komentovali %{post_link} od %{post_author}." also_commented_deleted: - few: "%{actors} komentovali ve smazaném pÅ™ÃspÄ›vku." - many: "%{actors} commented on a deleted post." - one: "%{actors} komentoval ve smazaném pÅ™ÃspÄ›vku." - other: "%{actors} komentovali ve smazaném pÅ™ÃspÄ›vku." - zero: "%{actors} komentovalo ve smazaném pÅ™ÃspÄ›vku." + few: "%{actors} komentovali váš smazaný pÅ™ÃspÄ›vek." + many: "%{actors} komentovali váš smazaný pÅ™ÃspÄ›vek." + one: "%{actors} komentoval váš smazaný pÅ™ÃspÄ›vek." + other: "%{actors} komentovali váš smazaný pÅ™ÃspÄ›vek." + zero: "%{actors} komentovali váš smazaný pÅ™ÃspÄ›vek." comment_on_post: - few: "%{actors} commented on your %{post_link}." - many: "%{actors} commented on your %{post_link}." - one: "%{actors} commented on your %{post_link}." - other: "%{actors} commented on your %{post_link}." - zero: "%{actors} commented on your %{post_link}." + few: "%{actors} komentovali váš %{post_link}." + many: "%{actors} komentovali váš %{post_link}." + one: "%{actors} komentoval váš %{post_link}." + other: "%{actors} komentovali váš %{post_link}." + zero: "%{actors} komentovali váš %{post_link}." helper: new_notifications: few: "%{count} nové oznámenÃ" @@ -285,25 +290,25 @@ cs: index: and: "a" and_others: - few: "and %{count} others" - many: "and %{count} others" - one: "and one more" - other: "and %{count} others" - zero: "and nobody else" + few: "a %{count} dalÅ¡Ã" + many: "a %{count} dalÅ¡Ãch" + one: "a jeÅ¡tÄ› jeden" + other: "a %{count} dalÅ¡Ãch" + zero: "a už nikdo" mark_all_as_read: "OznaÄit vÅ¡e jako pÅ™eÄtené" notifications: "OznámenÃ" liked: - few: "%{actors} has just liked your %{post_link}." - many: "%{actors} has just liked your %{post_link}." - one: "%{actors} has just liked your %{post_link}." - other: "%{actors} has just liked your %{post_link}." - zero: "%{actors} has just liked your %{post_link}." + few: "%{actors} si právÄ› oblÃbili váš %{post_link}." + many: "%{actors} si právÄ› oblÃbili váš %{post_link}." + one: "%{actors} si právÄ› oblÃbil váš %{post_link}." + other: "%{actors} si právÄ› oblÃbili váš %{post_link}." + zero: "%{actors} si právÄ› oblÃbili váš %{post_link}." liked_post_deleted: - few: "%{actors} liked your deleted post." - many: "%{actors} liked your deleted post." - one: "%{actors} liked your deleted post." - other: "%{actors} liked your deleted post." - zero: "%{actors} liked your deleted post." + few: "%{actors} mÄ›li oblÃben váš smazaný pÅ™ÃspÄ›vek." + many: "%{actors} mÄ›li oblÃben váš smazaný pÅ™ÃspÄ›vek." + one: "%{actors} mÄ›l oblÃben váš smazaný pÅ™ÃspÄ›vek." + other: "%{actors} mÄ›li oblÃben váš smazaný pÅ™ÃspÄ›vek." + zero: "%{actors} mÄ›li oblÃben váš smazaný pÅ™ÃspÄ›vek." mentioned: few: "%{actors} vás zmÃnilo na %{post_link}." many: "%{actors} vás zmÃnili na %{post_link}." @@ -324,11 +329,11 @@ cs: other: "%{actors} vám poslali zprávu." zero: "%{actors} vám poslal zprávu." started_sharing: - few: "%{actors} started sharing with you." - many: "%{actors} started sharing with you." - one: "%{actors} started sharing with you." - other: "%{actors} started sharing with you." - zero: "%{actors} started sharing with you." + few: "%{actors} s vámi zaÄali sdÃlet." + many: "%{actors} s vámi zaÄali sdÃlet." + one: "%{actors} s vámi zaÄal sdÃlet." + other: "%{actors} s vámi zaÄali sdÃlet." + zero: "%{actors} s vámi zaÄali sdÃlet." notifier: also_commented: commented: "také komentoval pÅ™ÃspÄ›vek od %{post_author}:" @@ -630,14 +635,14 @@ cs: connecting_is_simple: "PÅ™ipojenà úÄtu na DiaspoÅ™e je tak jednoduché, jak vyplňovat dvÄ› pole na vaÅ¡Ã stránce úÄtu Cubbi.es." daniels_account: "Daniel's Diaspora account" generate_a_token: "VytvoÅ™it token" - love_to_try: "We'd love for you to try it out." + love_to_try: "Rádi bychom, aby jste to vyzkouÅ¡eli." making_the_connection: "Vytvářà se spojenÃ" - screenshot_explanation: "%{link1}. This particular cubby is linked to %{link2}." + screenshot_explanation: "%{link1}. Tato konkrétnà cubby je pÅ™ipojena na %{link2}." sign_up_today: "Registrujte se jeÅ¡tÄ› dnes!" typical_userpage: "Typická uživatelská stránka na cubbi.es" via: "(pÅ™es %{link})" were_working_hard: "UsilovnÄ› pracujeme na dosaženà snadného spojenà mezi pody Diaspory a aplikacemi. Do té doby, spojenà vaÅ¡eho úÄtu na DiaspoÅ™e s Cubbi.es znamená kopÃrovánà a vkládánà dvou polÃ." - what_is_cubbies: "Cubbi.es is the world's first Diaspora application. It's also the best way to collect photos online." + what_is_cubbies: "Cubbi.es je celosvÄ›tovÄ› prvnà aplikace Diaspory. Je to také nejlepÅ¡Ã způsob, jak shromáždit fotografie online." your_diaspora_handle: "VaÅ¡e indentifikace na DiaspoÅ™e:" your_diaspora_token: "Váš token na DiaspoÅ™e:" undo: "Vrátit?" diff --git a/config/locales/diaspora/cy.yml b/config/locales/diaspora/cy.yml index 06912fecacb16f053afd6de4ca70dc08b46238b9..2164a82120c9a69901364edcd42b191ca83f6fe5 100644 --- a/config/locales/diaspora/cy.yml +++ b/config/locales/diaspora/cy.yml @@ -89,6 +89,10 @@ cy: aspect_not_empty: "Aspect not empty" remove: "remove" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "This is your diaspora handle. Like an email address, you can give this to people to reach you." no_contacts: "No contacts" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ cy: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Cancel" diff --git a/config/locales/diaspora/da.yml b/config/locales/diaspora/da.yml index 14a10dca2b716a704ab4c17c20d63be6a56b1453..12111f368e06a060b2ab0221e5185d7791ac3d8c 100644 --- a/config/locales/diaspora/da.yml +++ b/config/locales/diaspora/da.yml @@ -89,6 +89,10 @@ da: aspect_not_empty: "Aspektet er ikke tomt" remove: "slet" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Dette er dit diaspora handle. Som med en e-mail-adresse, kan du give denne til folk, sÃ¥ de kan kontakte dig." no_contacts: "Ingen kontakter" people_sharing_with_you: "Personer der deler med dig" @@ -125,6 +129,7 @@ da: bookmarklet: explanation: "%{link} alle steder fra ved at bogmærke dette link." explanation_link_text: "Post pÃ¥ Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post noget til Diaspora" post_success: "Posted! Lukker!" cancel: "Annullér" diff --git a/config/locales/diaspora/de.yml b/config/locales/diaspora/de.yml index da2456b9e6c02855af7cdbe86b16993e58bef934..4564b825410d87f164f3939554f5d890bf141bc9 100644 --- a/config/locales/diaspora/de.yml +++ b/config/locales/diaspora/de.yml @@ -89,6 +89,10 @@ de: aspect_not_empty: "Aspekt ist nicht leer" remove: "entfernen" index: + cubbies: + explanation: "Cubbi.es ist die erste Diaspora Anwendung." + heading: "Mit Cubbi.es verbinden" + learn_more: "Mehr erfahren" handle_explanation: "Das ist deine Diaspora*-Adresse. Du kannst sie wie eine E-Mail-Adresse weitergeben, damit andere Nutzer mit dir Kontakt aufnehmen können." no_contacts: "Keine Kontakte" people_sharing_with_you: "Leute die mit dir teilen" @@ -125,6 +129,7 @@ de: bookmarklet: explanation: "Erstelle einen Beitrag in Diaspora von überall in dem du %{link} als Lesezeichen speicherst." explanation_link_text: "diesen Link" + heading: "Diaspora Bookmarklet" post_something: "Erstelle einen Beitrag in Diaspora" post_success: "Erstellt! Schließen…" cancel: "Abbrechen" @@ -617,7 +622,7 @@ de: zero: "Bitte kürze deinen Beitrag auf weniger als %{count} Zeichen." stream_helper: hide_comments: "Kommentare verbergen" - show_comments: "alle Kommentare zeigen" + show_comments: "Alle Kommentare zeigen" tags: show: nobody_talking: "Niemand hat bereits etwas über %{tag} gesagt." diff --git a/config/locales/diaspora/el.yml b/config/locales/diaspora/el.yml index bcd6fed9016d7d5856fb1e02493aefdc95eeefc4..8a6962263f0758e81366c625e2fa6075f9f28e50 100644 --- a/config/locales/diaspora/el.yml +++ b/config/locales/diaspora/el.yml @@ -89,6 +89,10 @@ el: aspect_not_empty: "Η πτυχή δεν είναι άδεια" remove: "αφαίÏεση" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Αυτό είναι το αναγνωÏιστικό σας στο Diaspora. Όπως και με μια διεÏθυνση ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομείου, μποÏείτε να το δώσετε σε άλλους για να μποÏÎσουν να σας βÏουν." no_contacts: "Καμία επαφή" people_sharing_with_you: "Άτομα που μοιÏάζονται μαζί σας" @@ -125,6 +129,7 @@ el: bookmarklet: explanation: "ΔημοσιεÏστε στο Diaspora από οπουδήποτε Ï€ÏοσθÎτοντας αυτόν τον σÏνδεσμο %{link}." explanation_link_text: "αυτός ο σÏνδεσμος" + heading: "Diaspora Bookmarklet" post_something: "ΔημοσιεÏστε κάτι στο Diaspora" post_success: "ΔημοσιεÏτηκε! Κλείνει!" cancel: "ΑκÏÏωση" @@ -316,7 +321,7 @@ el: one: "%{actors} mentioned you in a deleted post." other: "%{actors} mentioned you in a deleted post." zero: "%{actors} mentioned you in a deleted post." - post: "δημοσίευση." + post: "δημοσίευση" private_message: few: "%{actors} sent you a message." many: "%{actors} sent you a message." @@ -627,18 +632,18 @@ el: tokens: show: connect_to_cubbies: "ΣÏνδεση με Cubbi.es" - connecting_is_simple: "Connecting your Diaspora account is as simple as filling out two fields on your Cubbi.es account page." - daniels_account: "Daniel's Diaspora account" + connecting_is_simple: "Η σÏνδεση του Diaspora λογαÏÎ¹Î±ÏƒÎ¼Î¿Ï ÏƒÎ±Ï‚ γίνεται απλά με τη συμπλήÏωση των δÏο πεδίων στην σελίδα σÏνδεσης του Cubbi.es." + daniels_account: "Ο Diaspora λογαÏιασμός του Daniel" generate_a_token: "Generate a token" - love_to_try: "We'd love for you to try it out." - making_the_connection: "Making the Connection" + love_to_try: "Θα χαιÏόμασταν αν το δοκιμάζατε." + making_the_connection: "Γίνεται η σÏνδεση" screenshot_explanation: "%{link1}. This particular cubby is linked to %{link2}." - sign_up_today: "Sign up today!" + sign_up_today: "Συνδεθείτε σήμεÏα!" typical_userpage: "Μία τυπική cubbi.es σελίδα χÏήστη" via: "(μÎσω %{link})" were_working_hard: "We're working hard on delivering easy connectivity between Diaspora pods and applications. In the meantime, connecting you Diaspora account with Cubbi.es means copying and pasting two fields." what_is_cubbies: "Το Cubbi.es είναι παγκοσμίως η Ï€Ïώτη εφαÏμογή για το Diaspora. Είναι επίσης ο καλÏτεÏος Ï„Ïόπος συλλογής φωτογÏαφιών στο διαδίκτυο." - your_diaspora_handle: "Your Diaspora Handle:" + your_diaspora_handle: "Το Diaspora αναγνωÏιστικό σας:" your_diaspora_token: "Your Diaspora Token:" undo: "ΑναίÏεση;" username: "Όνομα ΧÏήστη" diff --git a/config/locales/diaspora/en.yml b/config/locales/diaspora/en.yml index a6655b9452b397e06f5574fb4b013dda17c2917a..782aa46d179339d19a6ef058fa42473c8a7fd81c 100644 --- a/config/locales/diaspora/en.yml +++ b/config/locales/diaspora/en.yml @@ -142,6 +142,10 @@ en: no_contacts: "No contacts" post_a_message: "post a message >>" people_sharing_with_you: "People sharing with you" + cubbies: + heading: "Connect to Cubbi.es" + explanation: "Cubbi.es is the first Diaspora application under development." + learn_more: "Learn more" aspect_memberships: destroy: @@ -158,6 +162,7 @@ en: other: "In %{count} aspects" bookmarklet: + heading: "Diaspora Bookmarklet" post_success: "Posted! Closing!" post_something: "Post something to Diaspora" explanation: "Post to Diaspora from anywhere by bookmarking %{link}." diff --git a/config/locales/diaspora/en_shaw.yml b/config/locales/diaspora/en_shaw.yml index f5acd746397123e59f663dd558a193f4c429d2a1..bcfc737bb4963686b598f1039187cc1c570c6c3a 100644 --- a/config/locales/diaspora/en_shaw.yml +++ b/config/locales/diaspora/en_shaw.yml @@ -36,20 +36,20 @@ en_shaw: all_aspects: "ð‘·ð‘¤ ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘ð‘•" application: helper: - diaspora_alpha: "DIASPORA* ALPHA" + diaspora_alpha: "·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘©* ð‘¨ð‘¤ð‘“ð‘©" unknown_person: "ð‘©ð‘¯ð‘¯ð‘´ð‘¯ ð‘ð‘»ð‘•ð‘©ð‘¯" video_title: unknown: "ð‘©ð‘¯ð‘¯ð‘´ð‘¯ ð‘ð‘¦ð‘›ð‘¦ð‘´ ð‘‘ð‘²ð‘‘ð‘©ð‘¤" are_you_sure: "𑸠𑿠ð‘–ð‘»?" aspect_memberships: aspect_dropdown: - add_to_aspect: "Add to aspect" + add_to_aspect: "ð‘¨ð‘› ð‘‘ ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘" toggle: - few: "In %{count} aspects" - many: "In %{count} aspects" - one: "In %{count} aspect" - other: "In %{count} aspects" - zero: "Add to aspect" + few: "ð‘¦ð‘¯ %{count} ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘ð‘•" + many: "ð‘¦ð‘¯ %{count} ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘ð‘•" + one: "ð‘¦ð‘¯ %{count} ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘" + other: "ð‘¦ð‘¯ %{count} ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘ð‘•" + zero: "ð‘¨ð‘› ð‘‘ ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘" destroy: failure: "ð‘“ð‘±ð‘¤ð‘› ð‘‘ ð‘®ð‘¦ð‘¥ð‘µð‘ ð‘ð‘»ð‘•ð‘©ð‘¯ ð‘“ð‘®ð‘ªð‘¥ ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘" no_membership: "ð‘’ð‘«ð‘› ð‘¯ð‘ªð‘‘ ð‘“ð‘²ð‘¯ð‘› ð‘ž ð‘•ð‘¦ð‘¤ð‘§ð‘’ð‘‘ð‘©ð‘› ð‘ð‘»ð‘•ð‘©ð‘¯ ð‘¦ð‘¯ ð‘žð‘¨ð‘‘ ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘" @@ -89,9 +89,13 @@ en_shaw: aspect_not_empty: "ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘ ð‘¯ð‘ªð‘‘ ð‘§ð‘¥ð‘ð‘‘ð‘¦" remove: "ð‘®ð‘¦ð‘¥ð‘µð‘" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "ð‘žð‘¦ð‘• ð‘¦ð‘Ÿ ð‘¿ð‘¼ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘£ð‘¨ð‘¯ð‘›ð‘©ð‘¤. ð‘¤ð‘²ð‘’ ð‘©ð‘¯ ð‘¦-ð‘¥ð‘±ð‘¤ ð‘©ð‘›ð‘®ð‘§ð‘•, ð‘¿ ð‘’ ð‘œð‘¦ð‘ ð‘žð‘¦ð‘• ð‘‘ ð‘ð‘°ð‘ð‘©ð‘¤ ð‘‘ ð‘®ð‘°ð‘— ð‘¿." no_contacts: "ð‘¯ð‘´ ð‘’ð‘ªð‘¯ð‘‘ð‘¨ð‘’ð‘‘ð‘•" - people_sharing_with_you: "People sharing with you" + people_sharing_with_you: "ð‘ð‘°ð‘ð‘©ð‘¤ ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿" post_a_message: "ð‘ð‘´ð‘•ð‘‘ ð‘© ð‘¥ð‘§ð‘•ð‘©ð‘¡ >>" manage: add_a_new_aspect: "ð‘¨ð‘› ð‘¯ð‘¿ ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘" @@ -106,8 +110,8 @@ en_shaw: failure: "ð‘›ð‘¦ð‘›ð‘¯ð‘‘ ð‘¢ð‘»ð‘’ %{inspect}" success: "ð‘ð‘»ð‘•ð‘©ð‘¯ ð‘¥ð‘µð‘ð‘› ð‘‘ ð‘¯ð‘¿ ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘" new: - create: "Create" - name: "Name" + create: "ð‘’ð‘®ð‘¦ð‘±ð‘‘" + name: "ð‘¯ð‘±ð‘¥" no_posts_message: start_talking: "ð‘¯ð‘´ð‘šð‘©ð‘›ð‘¦ ð‘£ð‘¨ð‘Ÿ ð‘•ð‘§ð‘› ð‘¨ð‘¯ð‘¦ð‘”ð‘¦ð‘™ ð‘˜ð‘§ð‘‘. ð‘œð‘§ð‘‘ ð‘ž ð‘’ð‘ªð‘¯ð‘ð‘¼ð‘•ð‘±ð‘–ð‘©ð‘¯ ð‘•ð‘‘ð‘¸ð‘‘ð‘©ð‘›!" one: "1 ð‘¨ð‘•ð‘ð‘§ð‘’ð‘‘" @@ -125,6 +129,7 @@ en_shaw: bookmarklet: explanation: "%{link} ð‘“ð‘®ð‘ªð‘¥ ð‘¨ð‘¯ð‘¦ð‘¢ð‘º ð‘šð‘² ð‘šð‘«ð‘’ð‘¥ð‘¸ð‘’ð‘¦ð‘™ ð‘žð‘¦ð‘• ð‘¤ð‘¦ð‘™ð‘’." explanation_link_text: "ð‘ð‘´ð‘•ð‘‘ 𑑠·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘©" + heading: "Diaspora Bookmarklet" post_something: "ð‘ð‘´ð‘•ð‘‘ ð‘•ð‘³ð‘¥ð‘”ð‘¦ð‘™ 𑑠·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘©" post_success: "ð‘ð‘´ð‘•ð‘‘ð‘©ð‘›! ð‘’ð‘¤ð‘´ð‘Ÿð‘¦ð‘™!" cancel: "ð‘’ð‘¨ð‘¯ð‘•ð‘©ð‘¤" @@ -145,7 +150,7 @@ en_shaw: one: "1 ð‘’ð‘ªð‘¯ð‘‘ð‘¨ð‘’ð‘‘" other: "%{count} ð‘’ð‘ªð‘¯ð‘‘ð‘¨ð‘’ð‘‘ð‘•" sharing: - people_sharing: "People sharing with you:" + people_sharing: "ð‘ð‘°ð‘ð‘©ð‘¤ ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿:" zero: "ð‘¯ð‘´ ð‘’ð‘ªð‘¯ð‘‘ð‘¨ð‘’ð‘‘ð‘•" conversations: create: @@ -207,7 +212,7 @@ en_shaw: already_contacts: "ð‘¿ ð‘£ð‘¨ð‘ ð‘·ð‘¤ð‘®ð‘§ð‘›ð‘¦ ð‘’ð‘©ð‘¯ð‘§ð‘’ð‘‘ð‘©ð‘› ð‘¢ð‘¦ð‘ž ð‘žð‘¦ð‘• ð‘ð‘»ð‘•ð‘©ð‘¯" already_sent: "ð‘¿ ð‘·ð‘¤ð‘®ð‘§ð‘›ð‘¦ ð‘¦ð‘¯ð‘ð‘²ð‘‘ð‘©ð‘› ð‘žð‘¦ð‘• ð‘ð‘»ð‘•ð‘©ð‘¯." no_more: "ð‘¿ ð‘£ð‘¨ð‘ ð‘¯ð‘´ ð‘¥ð‘¹ ð‘¦ð‘¯ð‘ð‘¦ð‘‘ð‘±ð‘–ð‘©ð‘¯ð‘Ÿ." - own_address: "You can't send an invitation to your own address." + own_address: "ð‘¿ ð‘’ð‘¨ð‘¯ð‘‘ ð‘•ð‘§ð‘¯ð‘› ð‘©ð‘¯ ð‘¦ð‘¯ð‘ð‘¦ð‘‘ð‘±ð‘–ð‘©ð‘¯ ð‘‘ ð‘¿ð‘¼ ð‘´ð‘¯ ð‘©ð‘›ð‘®ð‘§ð‘•." rejected: "ð‘ž ð‘“ð‘ªð‘¤ð‘´ð‘¦ð‘™ ð‘¦-ð‘¥ð‘±ð‘¤ ð‘©ð‘›ð‘®ð‘§ð‘• ð‘£ð‘¨ð‘› ð‘ð‘®ð‘ªð‘šð‘¤ð‘©ð‘¥ð‘Ÿ: " sent: "ð‘¦ð‘¯ð‘ð‘¦ð‘‘ð‘±ð‘–ð‘©ð‘¯ð‘Ÿ ð‘£ð‘¨ð‘ ð‘šð‘§ð‘¯ ð‘•ð‘§ð‘¯ð‘‘ ð‘‘: " edit: @@ -232,7 +237,7 @@ en_shaw: whats_new: "ð‘¢ð‘ªð‘‘ð‘• ð‘¯ð‘¿?" your_aspects: "ð‘¿ð‘¼ ð‘¨ð‘•ð‘’ð‘ð‘§ð‘’ð‘‘ð‘•" header: - admin: "admin" + admin: "ð‘©ð‘›ð‘¥ð‘¦ð‘¯" blog: "ð‘šð‘¤ð‘ªð‘œ" code: "ð‘’ð‘´ð‘›" login: "ð‘¤ð‘ªð‘œ ð‘¦ð‘¯" @@ -258,23 +263,23 @@ en_shaw: no_results: "ð‘¯ð‘´ ð‘®ð‘¦ð‘Ÿð‘«ð‘¤ð‘‘ð‘• ð‘“ð‘¬ð‘¯ð‘›" notifications: also_commented: - few: "%{actors} also commented on %{post_author}'s %{post_link}." - many: "%{actors} also commented on %{post_author}'s %{post_link}." - one: "%{actors} also commented on %{post_author}'s %{post_link}." - other: "%{actors} also commented on %{post_author}'s %{post_link}." - zero: "%{actors} also commented on %{post_author}'s %{post_link}." + few: "%{actors} ð‘·ð‘¤ð‘•ð‘´ ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ %{post_author}ð‘Ÿ %{post_link}." + many: "%{actors} ð‘·ð‘¤ð‘•ð‘´ ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ %{post_author}ð‘Ÿ %{post_link}." + one: "%{actors} ð‘·ð‘¤ð‘•ð‘´ ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ %{post_author}ð‘Ÿ %{post_link}." + other: "%{actors} ð‘·ð‘¤ð‘•ð‘´ ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ %{post_author}ð‘Ÿ %{post_link}." + zero: "%{actors} ð‘·ð‘¤ð‘•ð‘´ ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ %{post_author}ð‘Ÿ %{post_link}." also_commented_deleted: - few: "%{actors} commented on a deleted post." - many: "%{actors} commented on a deleted post." - one: "%{actors} commented on a deleted post." - other: "%{actors} commented on a deleted post." - zero: "%{actors} commented on a deleted post." + few: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + many: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + one: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + other: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + zero: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." comment_on_post: - few: "%{actors} commented on your %{post_link}." - many: "%{actors} commented on your %{post_link}." - one: "%{actors} commented on your %{post_link}." - other: "%{actors} commented on your %{post_link}." - zero: "%{actors} commented on your %{post_link}." + few: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘¿ð‘¼ %{post_link}." + many: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘¿ð‘¼ %{post_link}." + one: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘¿ð‘¼ %{post_link}." + other: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘¿ð‘¼ %{post_link}." + zero: "%{actors} ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ ð‘¿ð‘¼ %{post_link}." helper: new_notifications: few: "%{count} ð‘¯ð‘¿ ð‘¯ð‘´ð‘‘ð‘¦ð‘“ð‘¦ð‘’ð‘±ð‘–ð‘©ð‘¯ð‘Ÿ" @@ -285,50 +290,50 @@ en_shaw: index: and: "ð‘¯" and_others: - few: "and %{count} others" - many: "and %{count} others" - one: "and one more" - other: "and %{count} others" - zero: "and nobody else" + few: "𑯠%{count} ð‘³ð‘žð‘¼ð‘Ÿ" + many: "𑯠%{count} ð‘³ð‘žð‘¼ð‘Ÿ" + one: "𑯠ð‘¢ð‘³ð‘¯ ð‘¥ð‘¹" + other: "𑯠%{count} ð‘³ð‘žð‘¼ð‘Ÿ" + zero: "𑯠ð‘¯ð‘´ð‘šð‘©ð‘›ð‘¦ ð‘§ð‘¤ð‘•" mark_all_as_read: "ð‘¥ð‘¸ð‘’ ð‘·ð‘¤ ð‘¨ð‘Ÿ ð‘®ð‘§ð‘›" notifications: "ð‘¯ð‘´ð‘‘ð‘¦ð‘“ð‘¦ð‘’ð‘±ð‘–ð‘©ð‘¯ð‘Ÿ" liked: - few: "%{actors} has just liked your %{post_link}." - many: "%{actors} has just liked your %{post_link}." - one: "%{actors} has just liked your %{post_link}." - other: "%{actors} has just liked your %{post_link}." - zero: "%{actors} has just liked your %{post_link}." + few: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¡ð‘©ð‘•ð‘‘ ð‘¤ð‘²ð‘’ð‘‘ ð‘¿ð‘¼ %{post_link}." + many: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¡ð‘©ð‘•ð‘‘ ð‘¤ð‘²ð‘’ð‘‘ ð‘¿ð‘¼ %{post_link}." + one: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¡ð‘©ð‘•ð‘‘ ð‘¤ð‘²ð‘’ð‘‘ ð‘¿ð‘¼ %{post_link}." + other: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¡ð‘©ð‘•ð‘‘ ð‘¤ð‘²ð‘’ð‘‘ ð‘¿ð‘¼ %{post_link}." + zero: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¡ð‘©ð‘•ð‘‘ ð‘¤ð‘²ð‘’ð‘‘ ð‘¿ð‘¼ %{post_link}." liked_post_deleted: - few: "%{actors} liked your deleted post." - many: "%{actors} liked your deleted post." - one: "%{actors} liked your deleted post." - other: "%{actors} liked your deleted post." - zero: "%{actors} liked your deleted post." + few: "%{actors} ð‘¤ð‘¦ð‘™ð‘’ð‘‘ ð‘‘ ð‘¿ð‘¼ ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + many: "%{actors} ð‘¤ð‘¦ð‘™ð‘’ð‘‘ ð‘¿ð‘¼ ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + one: "%{actors} ð‘¤ð‘¦ð‘™ð‘’ð‘‘ ð‘¿ð‘¼ ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + other: "%{actors} ð‘¤ð‘¦ð‘™ð‘’ð‘‘ ð‘‘ ð‘¿ð‘¼ ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + zero: "%{actors} ð‘¤ð‘¦ð‘™ð‘’ð‘‘ ð‘‘ ð‘¿ð‘¼ ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." mentioned: - few: "%{actors} has mentioned you in a %{post_link}." - many: "%{actors} has mentioned you in a %{post_link}." - one: "%{actors} has mentioned you in a %{post_link}." - other: "%{actors} has mentioned you in a %{post_link}." - zero: "%{actors} has mentioned you in a %{post_link}." + few: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© %{post_link}." + many: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© %{post_link}." + one: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© %{post_link}." + other: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© %{post_link}." + zero: "%{actors} ð‘£ð‘¨ð‘Ÿ ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© %{post_link}." mentioned_deleted: - few: "%{actors} mentioned you in a deleted post." - many: "%{actors} mentioned you in a deleted post." - one: "%{actors} mentioned you in a deleted post." - other: "%{actors} mentioned you in a deleted post." - zero: "%{actors} mentioned you in a deleted post." + few: "%{actors} ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + many: "%{actors} ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + one: "%{actors} ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + other: "%{actors} ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." + zero: "%{actors} ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¿ ð‘¦ð‘¯ ð‘© ð‘›ð‘¦ð‘¤ð‘°ð‘‘ð‘©ð‘› ð‘ð‘´ð‘•ð‘‘." post: "ð‘ð‘´ð‘•ð‘‘" private_message: - few: "%{actors} sent you a message." - many: "%{actors} sent you a message." - one: "%{actors} sent you a message." - other: "%{actors} sent you a message." - zero: "%{actors} sent you a message." + few: "%{actors} ð‘•ð‘§ð‘¯ð‘‘ ð‘¿ ð‘© ð‘¥ð‘§ð‘•ð‘©ð‘¡." + many: "%{actors} ð‘•ð‘§ð‘¯ð‘‘ ð‘¿ ð‘© ð‘¥ð‘§ð‘•ð‘©ð‘¡." + one: "%{actors} ð‘•ð‘§ð‘¯ð‘‘ ð‘¿ ð‘© ð‘¥ð‘§ð‘•ð‘©ð‘¡." + other: "%{actors} ð‘•ð‘§ð‘¯ð‘‘ ð‘¿ ð‘© ð‘¥ð‘§ð‘•ð‘©ð‘¡." + zero: "%{actors} ð‘•ð‘§ð‘¯ð‘‘ ð‘¿ ð‘© ð‘¥ð‘§ð‘•ð‘©ð‘¡." started_sharing: - few: "%{actors} started sharing with you." - many: "%{actors} started sharing with you." - one: "%{actors} started sharing with you." - other: "%{actors} started sharing with you." - zero: "%{actors} started sharing with you." + few: "%{actors} ð‘•ð‘‘ð‘¸ð‘‘ð‘©ð‘› ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿." + many: "%{actors} ð‘•ð‘‘ð‘¸ð‘‘ð‘©ð‘› ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿." + one: "%{actors} ð‘•ð‘‘ð‘¸ð‘‘ð‘©ð‘› ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿." + other: "%{actors} ð‘•ð‘‘ð‘¸ð‘‘ð‘©ð‘› ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿." + zero: "%{actors} ð‘•ð‘‘ð‘¸ð‘‘ð‘©ð‘› ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿." notifier: also_commented: commented: "ð‘£ð‘¨ð‘Ÿ ð‘·ð‘¤ð‘•ð‘´ ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘©ð‘› ð‘ªð‘¯ %{post_author}ð‘Ÿ ð‘ð‘´ð‘•ð‘‘:" @@ -341,9 +346,9 @@ en_shaw: diaspora: "𑞠·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘¦-ð‘¥ð‘±ð‘¤ ð‘®ð‘´ð‘šð‘ªð‘‘" hello: "ð‘£ð‘§ð‘¤ð‘´ %{name}!" liked: - liked: "%{name} has just liked your post: " + liked: "%{name} ð‘£ð‘¨ð‘Ÿ ð‘¡ð‘³ð‘•ð‘‘ ð‘¤ð‘²ð‘’ð‘‘ ð‘¿ð‘¼ ð‘ð‘´ð‘•ð‘‘: " sign_in: "Sign to view it" - subject: "%{name} has just liked your post" + subject: "%{name} ð‘£ð‘¨ð‘Ÿ ð‘¡ð‘³ð‘•ð‘‘ ð‘¤ð‘²ð‘’ð‘‘ ð‘¿ð‘¼ ð‘ð‘´ð‘•ð‘‘" love: "ð‘¤ð‘³ð‘," manage_your_email_settings: "ð‘¥ð‘¨ð‘¯ð‘©ð‘¡ ð‘¿ð‘¼ ð‘¦-ð‘¥ð‘±ð‘¤ ð‘•ð‘§ð‘‘ð‘¦ð‘™ð‘Ÿ" mentioned: @@ -359,9 +364,9 @@ en_shaw: admin: "ð‘¿ð‘¼ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘¨ð‘›ð‘¥ð‘¦ð‘¯ð‘¦ð‘•ð‘‘ð‘®ð‘±ð‘‘ð‘¼" subject: "ð‘© ð‘¥ð‘§ð‘•ð‘©ð‘¡ ð‘‘ ð‘¿ð‘¼ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘©ð‘’ð‘¬ð‘¯ð‘‘:" started_sharing: - sharing: "has started sharing with you!" - sign_in: "Sign in here" - subject: "%{name} has started sharing with you on Diaspora*" + sharing: "ð‘£ð‘¨ð‘Ÿ ð‘•ð‘‘ð‘¸ð‘‘ð‘©ð‘› ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿!" + sign_in: "ð‘•ð‘²ð‘¯ ð‘¦ð‘¯ ð‘£ð‘½" + subject: "%{name} ð‘£ð‘¨ð‘Ÿ ð‘•ð‘‘ð‘¸ð‘‘ð‘©ð‘› ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘ªð‘¯ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘©*" thanks: "ð‘”ð‘±ð‘™ð‘’ð‘•," ok: "ð‘´ð‘’ð‘±" or: "ð‘¹" @@ -594,8 +599,8 @@ en_shaw: stream_element: dislike: "𑲠ð‘›ð‘¦ð‘•ð‘¤ð‘²ð‘’ ð‘žð‘¦ð‘•" like: "𑲠ð‘¤ð‘²ð‘’ ð‘žð‘¦ð‘•" - unlike: "Unlike" - via: "via %{link}" + unlike: "ð‘©ð‘¯ð‘¤ð‘²ð‘’" + via: "ð‘𑾠%{link}" status_messages: create: success: "ð‘•ð‘©ð‘’ð‘•ð‘§ð‘•ð‘“ð‘«ð‘¤ð‘¦ ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘›: %{names}" @@ -610,11 +615,11 @@ en_shaw: not_found: "ð‘•ð‘ªð‘®ð‘¦, ð‘¢ð‘° ð‘’ð‘«ð‘›ð‘©ð‘¯ð‘‘ ð‘“ð‘²ð‘¯ð‘› ð‘žð‘¨ð‘‘ ð‘ð‘´ð‘•ð‘‘." permalink: "ð‘ð‘»ð‘¥ð‘©ð‘¤ð‘¦ð‘™ð‘’" too_long: - few: "please make your status messages less than %{count} characters" - many: "please make your status messages less than %{count} characters" - one: "please make your status messages less than %{count} character" - other: "please make your status messages less than %{count} characters" - zero: "please make your status messages less than %{count} characters" + few: "ð‘ð‘¤ð‘°ð‘Ÿ ð‘¥ð‘±ð‘’ ð‘¿ð‘¼ ð‘•ð‘‘ð‘¨ð‘‘ð‘©ð‘• ð‘¥ð‘§ð‘•ð‘©ð‘¡ð‘©ð‘Ÿ ð‘¤ð‘§ð‘• ð‘žð‘¨ð‘¯ %{count} ð‘’ð‘ºð‘©ð‘’ð‘‘ð‘¼ð‘Ÿ" + many: "ð‘ð‘¤ð‘°ð‘Ÿ ð‘¥ð‘±ð‘’ ð‘¿ð‘¼ ð‘•ð‘‘ð‘¨ð‘‘ð‘©ð‘• ð‘¥ð‘§ð‘•ð‘©ð‘¡ð‘©ð‘Ÿ ð‘¤ð‘§ð‘• ð‘žð‘¨ð‘¯ %{count} ð‘’ð‘ºð‘©ð‘’ð‘‘ð‘¼ð‘Ÿ" + one: "ð‘ð‘¤ð‘°ð‘Ÿ ð‘¥ð‘±ð‘’ ð‘¿ð‘¼ ð‘•ð‘‘ð‘¨ð‘‘ð‘©ð‘• ð‘¥ð‘§ð‘•ð‘©ð‘¡ð‘©ð‘Ÿ ð‘¤ð‘§ð‘• ð‘žð‘¨ð‘¯ %{count} ð‘’ð‘ºð‘©ð‘’ð‘‘ð‘¼" + other: "ð‘ð‘¤ð‘°ð‘Ÿ ð‘¥ð‘±ð‘’ ð‘¿ð‘¼ ð‘•ð‘‘ð‘¨ð‘‘ð‘©ð‘• ð‘¥ð‘§ð‘•ð‘©ð‘¡ð‘©ð‘Ÿ ð‘¤ð‘§ð‘• ð‘žð‘¨ð‘¯ %{count} ð‘’ð‘ºð‘©ð‘’ð‘‘ð‘¼ð‘Ÿ" + zero: "ð‘ð‘¤ð‘°ð‘Ÿ ð‘¥ð‘±ð‘’ ð‘¿ð‘¼ ð‘•ð‘‘ð‘¨ð‘‘ð‘©ð‘• ð‘¥ð‘§ð‘•ð‘©ð‘¡ð‘©ð‘Ÿ ð‘¤ð‘§ð‘• ð‘žð‘¨ð‘¯ %{count} ð‘’ð‘ºð‘©ð‘’ð‘‘ð‘¼ð‘Ÿ" stream_helper: hide_comments: "ð‘£ð‘²ð‘› ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘•" show_comments: "ð‘–ð‘´ ð‘·ð‘¤ ð‘’ð‘ªð‘¥ð‘©ð‘¯ð‘‘ð‘•" @@ -626,20 +631,20 @@ en_shaw: the_world: "ð‘ž ð‘¢ð‘»ð‘¤ð‘›" tokens: show: - connect_to_cubbies: "Connect to Cubbi.es" + connect_to_cubbies: "ð‘’ð‘©ð‘¯ð‘§ð‘’ð‘‘ ð‘‘ Cubbi.es" connecting_is_simple: "Connecting your Diaspora account is as simple as filling out two fields on your Cubbi.es account page." - daniels_account: "Daniel's Diaspora account" - generate_a_token: "Generate a token" + daniels_account: "·ð‘›ð‘¨ð‘¯ð‘˜ð‘©ð‘¤ð‘Ÿ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘©ð‘’ð‘¬ð‘¯ð‘‘" + generate_a_token: "ð‘¡ð‘§ð‘¯ð‘¼ð‘±ð‘‘ ð‘© ð‘‘ð‘´ð‘’ð‘©ð‘¯" love_to_try: "We'd love for you to try it out." - making_the_connection: "Making the Connection" - screenshot_explanation: "%{link1}. This particular cubby is linked to %{link2}." - sign_up_today: "Sign up today!" - typical_userpage: "A typical cubbi.es userpage" - via: "(via %{link})" - were_working_hard: "We're working hard on delivering easy connectivity between Diaspora pods and applications. In the meantime, connecting you Diaspora account with Cubbi.es means copying and pasting two fields." - what_is_cubbies: "Cubbi.es is the world's first Diaspora application. It's also the best way to collect photos online." - your_diaspora_handle: "Your Diaspora Handle:" - your_diaspora_token: "Your Diaspora Token:" + making_the_connection: "ð‘¥ð‘±ð‘’ð‘¦ð‘™ ð‘ž ð‘’ð‘©ð‘¯ð‘§ð‘’ð‘–ð‘©ð‘¯" + screenshot_explanation: "%{link1}. ð‘žð‘¦ð‘• ð‘ð‘¼ð‘‘ð‘¦ð‘’ð‘¿ð‘¤ð‘¼ ð‘’ð‘©ð‘šð‘¦ ð‘¦ð‘Ÿ ð‘¤ð‘¦ð‘™ð‘’ð‘‘ ð‘‘ %{link2}." + sign_up_today: "ð‘•ð‘²ð‘¯ ð‘³ð‘ ð‘‘ð‘©ð‘›ð‘±!" + typical_userpage: "ð‘© ð‘‘ð‘¦ð‘ð‘¦ð‘’ð‘©ð‘¤ cubbi.es ð‘¿ð‘Ÿð‘¼ð‘ð‘±ð‘¡" + via: "(ð‘𑾠%{link})" + were_working_hard: "ð‘¢ð‘º ð‘¢ð‘»ð‘’ð‘¦ð‘™ ð‘£ð‘¸ð‘› ð‘ªð‘¯ ð‘›ð‘¦ð‘¤ð‘¦ð‘ð‘¼ð‘¦ð‘™ ð‘°ð‘Ÿð‘¦ ð‘’ð‘©ð‘¯ð‘§ð‘’ð‘‘ð‘¦ð‘ð‘¦ð‘‘𑦠ð‘šð‘¦ð‘‘ð‘¢ð‘°ð‘¯ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘ð‘ªð‘›ð‘Ÿ 𑯠ð‘¨ð‘ð‘¤ð‘¦ð‘’ð‘±ð‘–ð‘©ð‘¯ð‘Ÿ. ð‘¦ð‘¯ ð‘ž ð‘¥ð‘°ð‘¯ð‘‘ð‘²ð‘¥, ð‘’ð‘©ð‘¯ð‘§ð‘’ð‘‘ð‘¦ð‘™ ð‘¿ð‘¼ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘©ð‘’ð‘¬ð‘¯ð‘‘ ð‘¢ð‘¦ð‘ž Cubbi.es ð‘¥ð‘°ð‘¯ð‘Ÿ ð‘’ð‘ªð‘ð‘¦ð‘¦ð‘™ 𑯠ð‘ð‘±ð‘•ð‘‘ð‘¦ð‘™ ð‘‘𑵠ð‘“ð‘°ð‘¤ð‘›ð‘Ÿ." + what_is_cubbies: "Cubbi.es ð‘¦ð‘Ÿ ð‘ž ð‘¢ð‘»ð‘¤ð‘›ð‘Ÿ ð‘“ð‘»ð‘•ð‘‘ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘¨ð‘ð‘¤ð‘¦ð‘’ð‘±ð‘–ð‘©ð‘¯. ð‘¦ð‘‘ð‘• ð‘·ð‘¤ð‘•ð‘´ ð‘ž ð‘šð‘§ð‘•ð‘‘ ð‘¢ð‘± ð‘‘ ð‘’ð‘©ð‘¤ð‘§ð‘’ð‘‘ ð‘“ð‘´ð‘‘ð‘´ð‘Ÿ ð‘ªð‘¯ð‘¤ð‘²ð‘¯." + your_diaspora_handle: "ð‘¿ð‘¼ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘£ð‘¨ð‘¯ð‘›ð‘©ð‘¤:" + your_diaspora_token: "ð‘¿ð‘¼ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘‘ð‘´ð‘’ð‘©ð‘¯:" undo: "ð‘©ð‘¯ð‘›ð‘µ?" username: "ð‘¿ð‘Ÿð‘¼ð‘¯ð‘±ð‘¥" users: @@ -656,12 +661,12 @@ en_shaw: download_xml: "ð‘›ð‘¬ð‘¯ð‘¤ð‘´ð‘› ð‘¥ð‘² ð‘§.ð‘¥.ð‘¤." edit_account: "ð‘§ð‘›ð‘¦ð‘‘ ð‘©ð‘’ð‘¬ð‘¯ð‘‘" export_data: "ð‘§ð‘’ð‘•ð‘ð‘¹ð‘‘ ð‘›ð‘±ð‘‘ð‘©" - liked: "...someone likes your post?" + liked: "...ð‘•ð‘³ð‘¥ð‘¢ð‘©ð‘¯ ð‘¤ð‘²ð‘’ð‘• ð‘¿ð‘¼ ð‘ð‘´ð‘•ð‘‘?" mentioned: "...𑿠𑸠ð‘¥ð‘§ð‘¯ð‘–ð‘©ð‘¯ð‘› ð‘¦ð‘¯ ð‘© ð‘ð‘´ð‘•ð‘‘?" new_password: "ð‘¯ð‘¿ ð‘ð‘¨ð‘•ð‘¢ð‘¼ð‘›" private_message: "...ð‘¿ ð‘®ð‘¦ð‘•ð‘°ð‘ ð‘© ð‘ð‘®ð‘²ð‘ð‘©ð‘‘ ð‘¥ð‘§ð‘•ð‘©ð‘¡?" receive_email_notifications: "ð‘®ð‘¦ð‘•ð‘°ð‘ ð‘¦-ð‘¥ð‘±ð‘¤ ð‘¯ð‘´ð‘‘ð‘¦ð‘“ð‘¦ð‘’ð‘±ð‘–ð‘©ð‘¯ð‘Ÿ ð‘¢ð‘§ð‘¯..." - started_sharing: "...someone starts sharing with you?" + started_sharing: "...ð‘•ð‘³ð‘¥ð‘¢ð‘©ð‘¯ ð‘•ð‘‘ð‘¸ð‘‘ð‘• ð‘–ð‘ºð‘¦ð‘™ ð‘¢ð‘¦ð‘ž ð‘¿?" your_email: "ð‘¿ð‘¼ ð‘¦-ð‘¥ð‘±ð‘¤" your_handle: "ð‘¿ð‘¼ ·ð‘›ð‘¦ð‘¨ð‘•ð‘ð‘¹ð‘© ð‘£ð‘¨ð‘¯ð‘›ð‘©ð‘¤" getting_started: diff --git a/config/locales/diaspora/eo.yml b/config/locales/diaspora/eo.yml index d9d905d3952c9a7b2da056a7630c8d4d4915079b..f9109ad8b3d7347b7c405410b156c7cab9a32a7c 100644 --- a/config/locales/diaspora/eo.yml +++ b/config/locales/diaspora/eo.yml @@ -89,6 +89,10 @@ eo: aspect_not_empty: "Aspekto ne malplenas" remove: "forigi" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "This is your diaspora handle. Like an email address, you can give this to people to reach you." no_contacts: "No contacts" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ eo: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Cancel" diff --git a/config/locales/diaspora/es-CL.yml b/config/locales/diaspora/es-CL.yml index aeabcba06b0e5fbbe05643891686b71166c37564..ced00ee14ee0f13920576d5dc95d44461333c0e7 100644 --- a/config/locales/diaspora/es-CL.yml +++ b/config/locales/diaspora/es-CL.yml @@ -89,6 +89,10 @@ es-CL: aspect_not_empty: "El aspecto no está vacÃo" remove: "eliminar" index: + cubbies: + explanation: "Cubbi.es es la primera aplicación de Diaspora en desarrollo." + heading: "Conectate a Cubbi.es" + learn_more: "Aprende mas" handle_explanation: "Esta es tu dirección Diaspora. Como una dirección de correo, puedes dársela a la gente para que te encuentren." no_contacts: "No hay contactos" people_sharing_with_you: "Personas compartiendo contigo" @@ -125,6 +129,7 @@ es-CL: bookmarklet: explanation: "%{link} donde sea agregando a marcadores este link." explanation_link_text: "Postea en Diaspora" + heading: "Diaspora en tus marcadores" post_something: "Postea algo en Diaspora" post_success: "Posteado! Cerrando!" cancel: "Cancelar" diff --git a/config/locales/diaspora/es.yml b/config/locales/diaspora/es.yml index fa3efd084c717af5a65183c64fb840acbddf3c7d..fd5c94d4928146427a722cb8481a5384fc67c05d 100644 --- a/config/locales/diaspora/es.yml +++ b/config/locales/diaspora/es.yml @@ -89,6 +89,10 @@ es: aspect_not_empty: "El aspecto no está vacÃo" remove: "eliminar" index: + cubbies: + explanation: "Cubbi.es es la primera aplicación de Diaspora en desarrollo." + heading: "Conectate a Cubbi.es" + learn_more: "Aprende mas" handle_explanation: "Ésta es tu dirección Diaspora*. Como una dirección de correo, puedes dársela a la gente para que te encuentren." no_contacts: "No hay contactos" people_sharing_with_you: "Comparten contigo" @@ -125,6 +129,7 @@ es: bookmarklet: explanation: "%{link} desde donde quieras agregando a tus marcadores este enlace." explanation_link_text: "Publica en Diaspora" + heading: "Diaspora en tus marcadores" post_something: "Publica algo en Diaspora" post_success: "Publicado! Cerrando!" cancel: "Cancelar" diff --git a/config/locales/diaspora/eu.yml b/config/locales/diaspora/eu.yml index 7713b2d4ec8e7286523aeac63710b27b8b9b0109..8f37e015fab41fb319062746ef87cff67d1569ed 100644 --- a/config/locales/diaspora/eu.yml +++ b/config/locales/diaspora/eu.yml @@ -89,7 +89,11 @@ eu: aspect_not_empty: "Alderdi ez hutsa" remove: "ezabatu" index: - handle_explanation: "Hau da zure Diaspora erabiltzailea. Zure adiskideei emaiezu zu aurkitzearren." + cubbies: + explanation: "Cubbi.es garapenean dagoen lehenengo Diaspora aplikazioa da." + heading: "Cubbi.esera lotu" + learn_more: "Gehiago ikasi" + handle_explanation: "Hau da zure Diaspora helbidea. Zure adiskideei emaiezu zu aurkitzearren." no_contacts: "Adiskiderik ez" people_sharing_with_you: "Zurekin harremanetan dagoen jendea" post_a_message: "mezu bat bidali >>" @@ -125,6 +129,7 @@ eu: bookmarklet: explanation: "Diasporan partekatu %{link} erabiliz." explanation_link_text: "esteka hau" + heading: "Diaspora Bookmarkleta" post_something: "Partekatu zerbait Diasporan" post_success: "Bidalia! Irteten!" cancel: "Ezeztatu" @@ -285,10 +290,10 @@ eu: index: and: "eta" and_others: - few: "eta beste %{count}" - many: "eta beste %{count}" - one: "eta beste bat" - other: "eta beste %{count}" + few: "eta beste %{count}(e)k" + many: "eta beste %{count}(e)k" + one: "eta beste batek" + other: "eta beste %{count}(e)k" zero: "eta inork gehiago ez" mark_all_as_read: "Guztiak irakurrita" notifications: "Jakinarazpenak" @@ -554,7 +559,7 @@ eu: diaspora_handle: "diaspora@helbidea.org" enter_a_diaspora_username: "Diaspora erabiltzaile izena idatzi:" know_email: "Badakizu beraien e-posta? Gonbida itzazu!" - your_diaspora_username_is: "Zure Diaspora erabiltzailea honakoa da: %{diaspora_handle}" + your_diaspora_username_is: "Zure Diaspora helbidea honakoa da: %{diaspora_handle}" contact_list: all_contacts: "Adiskide Guztiak" footer: @@ -634,11 +639,11 @@ eu: making_the_connection: "Lotura Ezartzen" screenshot_explanation: "%{link1}. Cubby hau %{link2}(r)ekin lotuta dago." sign_up_today: "Izena eman oraintxe!" - typical_userpage: "Cubbi.es erabiltzaile orri tipiko bat" + typical_userpage: "Cubbi.es erabiltzaile orrialde tipiko bat" via: "(%{link}(r)en bidez)" were_working_hard: "Gogor ari gara lanean Diaspora zerbitzarien eta aplikazioen arteko harremanak eskaintzeko. Momentuan, Diaspora eta Cubbi.es kontuak lotzeak bi eremu kopiatzean eta itsastean datza." what_is_cubbies: "Cubbi.es munduko lehen Diaspora aplikazioa da. Argazkiak metatzeko biderik onena ere da." - your_diaspora_handle: "Zure Diaspora Kodea:" + your_diaspora_handle: "Zure Diaspora Helbidea:" your_diaspora_token: "Zure Diaspora Kodea:" undo: "Desegin?" username: "Erabiltzailea" @@ -651,7 +656,7 @@ eu: change_password: "Pasahitza aldatu" close_account: "Kontua Ezabatu" comment_on_post: "...norbaitek zure mezu bat iruzkintzen duenean?" - current_password: "Oraingo pasahitza" + current_password: "Pasahitz zaharra" download_photos: "nire argazkiak jaitsi" download_xml: "nire xml jaitsi" edit_account: "Kontua aldatu" @@ -663,7 +668,7 @@ eu: receive_email_notifications: "E-posta jakinarazpenak jaso nahi dituzu..." started_sharing: "...norbaitek zurekin harreman berria hasten duenean?" your_email: "Zure e-posta" - your_handle: "Zure Diaspora erabiltzailea" + your_handle: "Zure Diaspora helbidea" getting_started: connect_on_diaspora: "Konektatu Diasporan" connect_services: "Beste zerbitzu batzuekin lotu" diff --git a/config/locales/diaspora/fi.yml b/config/locales/diaspora/fi.yml index ee8eed053fd7cf2ec87032273a920e778ac78c3d..e8e0adcee46561cea524cf0427dbb252d6f18e4c 100644 --- a/config/locales/diaspora/fi.yml +++ b/config/locales/diaspora/fi.yml @@ -89,6 +89,10 @@ fi: aspect_not_empty: "Näkymä ei ole tyhjä" remove: "poista" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Tämä on Diaspora-osoitteesi. Voit käyttää sitä kuten sähköpostiosoitettasi. Sen avulla sinut tavoitetaan Diasporasta." no_contacts: "Ei kontakteja" people_sharing_with_you: "Ihmiset jotka jakavat kanssasi" @@ -125,6 +129,7 @@ fi: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Peruuta" diff --git a/config/locales/diaspora/fr.yml b/config/locales/diaspora/fr.yml index f6a0e787dfc589164007d87f39388cc869cffa39..bdc8415cbb382277ebaa919a793a8b42ea2a1eb4 100644 --- a/config/locales/diaspora/fr.yml +++ b/config/locales/diaspora/fr.yml @@ -89,6 +89,10 @@ fr: aspect_not_empty: "L’aspect n’est pas vide" remove: "supprimer" index: + cubbies: + explanation: "Cubbi.es est la première application Diaspora en cours de développement." + heading: "Connectez-vous à Cubbi.es" + learn_more: "En savoir plus" handle_explanation: "Ceci est votre handle diaspora. Comme une adresse de courrier électronique, vous pouvez le communiquer à d'autres personnes pour leur permettre de vous joindre." no_contacts: "Aucun contact" people_sharing_with_you: "Personnes partageant avec vous" @@ -125,6 +129,7 @@ fr: bookmarklet: explanation: "Publier sur Diaspora depuis n'importe où en ajoutant %{link} à vos marque-pages." explanation_link_text: "ce lien" + heading: "Marque-page Diaspora" post_something: "Publier quelque chose sur Diaspora" post_success: "Publié ! Fermeture !" cancel: "Annuler" diff --git a/config/locales/diaspora/ga.yml b/config/locales/diaspora/ga.yml index d2318e70c6e64ab60d7ee58dd5c6c57b7e3216fb..601b377c6bb24e8ec23a469773da30e9d4fa4cb0 100644 --- a/config/locales/diaspora/ga.yml +++ b/config/locales/diaspora/ga.yml @@ -89,6 +89,10 @@ ga: aspect_not_empty: "NÃl an gné folamh" remove: "bhain" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "This is your diaspora handle. Like an email address, you can give this to people to reach you." no_contacts: "No contacts" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ ga: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Cealaigh" diff --git a/config/locales/diaspora/he.yml b/config/locales/diaspora/he.yml index 813fe2fb2dc1954aadcbfcfacb6651ecc8b7e994..346e2e6dc12019c0d1ed6abab980bec78ee03574 100644 --- a/config/locales/diaspora/he.yml +++ b/config/locales/diaspora/he.yml @@ -89,6 +89,10 @@ he: aspect_not_empty: "ההיבט ××™× ×• ריק" remove: "הסרה" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "זהו ×©× ×”×ž×©×ª×ž×© שלך בדי×ספורה. כמו כתובת דו×ר ××œ×§×˜×¨×•× ×™, × ×™×ª×Ÿ לחלוק ×ותו ×¢× ×× ×©×™× ×›×“×™ שיגיעו ×ליך." no_contacts: "×ין ×× ×©×™ קשר" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ he: bookmarklet: explanation: "%{link} מכל ×ž×§×•× ×¢×œ ידי הוספת קישור ×–×” ×œ×¡×™×ž× ×™×•×ª." explanation_link_text: "×¤×¨×¡×•× ×œ×“×™×ספורה" + heading: "Diaspora Bookmarklet" post_something: "×¤×¨×¡×•× ×ž×©×”×• לתוך די×ספורה" post_success: "פורס×! × ×¡×’×¨!" cancel: "ביטול" diff --git a/config/locales/diaspora/hu.yml b/config/locales/diaspora/hu.yml index 22704ee2b88028fa741ba477ff6d31063326fdf9..9ba6b6c644c6de29d14265517dbdd9b32dbaf317 100644 --- a/config/locales/diaspora/hu.yml +++ b/config/locales/diaspora/hu.yml @@ -89,6 +89,10 @@ hu: aspect_not_empty: "A csoport nem üres" remove: "eltávolÃtás" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Ez a Te Diaspora felhasználóneved. Megadhatod elérhetÅ‘ségként, mint egy email cÃmet." no_contacts: "Nincs ismerÅ‘s" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ hu: bookmarklet: explanation: "Hivatkozz rá: %{link} bárhonnan, azzal, hogy hozzáadod a könyvjelzÅ‘khöz!" explanation_link_text: "Posztolás a Diasporára" + heading: "Diaspora Bookmarklet" post_something: "Ãrj valamit a Diasporára" post_success: "Elküldve! Bezárás!" cancel: "Mégsem" diff --git a/config/locales/diaspora/id.yml b/config/locales/diaspora/id.yml index 4a7166b96d34bd29bea3879464f78281dedcf18f..3be75816af8ac401f77fe08e81b4cb8edda4dd4f 100644 --- a/config/locales/diaspora/id.yml +++ b/config/locales/diaspora/id.yml @@ -89,6 +89,10 @@ id: aspect_not_empty: "Aspek tidak kosong" remove: "hapus" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "This is your diaspora handle. Like an email address, you can give this to people to reach you." no_contacts: "No contacts" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ id: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Cancel" diff --git a/config/locales/diaspora/is.yml b/config/locales/diaspora/is.yml index 8e55f90977005d655464bdf9421d92f78a771c3c..af3e5ee81dd1c52490de0dc6666ddb6fcc2794d8 100644 --- a/config/locales/diaspora/is.yml +++ b/config/locales/diaspora/is.yml @@ -89,6 +89,10 @@ is: aspect_not_empty: "Ãsýnd er ekki tóm" remove: "fjarlægja" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Þetta er netfangið þitt hjá DÃaspora. Eins og með venjulegt netfang, geturðu gefið fólki það svo þau geti haft samband við þig. " no_contacts: "Engir tengiliðir" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ is: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Hætta við" diff --git a/config/locales/diaspora/it.yml b/config/locales/diaspora/it.yml index 3bdb28f122fd4eda68899e20e2e86de5b82d4b70..7883779c6c815b21cc604eabf1feaa3a3f75737b 100644 --- a/config/locales/diaspora/it.yml +++ b/config/locales/diaspora/it.yml @@ -89,6 +89,10 @@ it: aspect_not_empty: "Aspetto non vuoto" remove: "rimuovi" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Questo è il tuo contatto Diaspora. Lo puoi dare alle persone per farti trovare, come un indirizzo email." no_contacts: "Nessun contatto" people_sharing_with_you: "Persone in condivisione con te" @@ -125,6 +129,7 @@ it: bookmarklet: explanation: "Condividi su Diaspora da ovunque aggiungendo come segnalibro %{link}." explanation_link_text: "questo link" + heading: "Diaspora Bookmarklet" post_something: "Pubblica qualcosa su Diaspora" post_success: "Inviato! Sta per chiudersi!" cancel: "Annulla" diff --git a/config/locales/diaspora/ja.yml b/config/locales/diaspora/ja.yml index 71b255dc72505a608ab7175f7d9c616c834572d1..ef509d89951ed8f4ee118c12a6109e8dcf5b6c17 100644 --- a/config/locales/diaspora/ja.yml +++ b/config/locales/diaspora/ja.yml @@ -89,6 +89,10 @@ ja: aspect_not_empty: "アスペクトã¯ç©ºã§ã¯ã‚ã‚Šã¾ã›ã‚“。" remove: "削除" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "ã“ã‚ŒãŒã‚ãªãŸã®ãƒãƒ³ãƒ‰ãƒ«åã§ã™ã€‚メールアドレスã¨åŒã˜ã‚ˆã†ã«ã»ã‹ã®äººã«æ•™ãˆã¦ã€ãƒ€ã‚¤ã‚¢ã‚¹ãƒãƒ©ã§é€£çµ¡ã‚’å–ã‚Šåˆã†ã“ã¨ãŒã§ãã¾ã™ã€‚" no_contacts: "連絡先無ã—" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ ja: bookmarklet: explanation: "ã“ã®ãƒªãƒ³ã‚¯ã‚’ãŠæ°—ã«å…¥ã‚Šã«ç™»éŒ²ã™ã‚‹ã¨ã€ã©ã“ã‹ã‚‰ã§ã‚‚%{link}ã§ãã¾ã™ã€‚" explanation_link_text: "ダイアスãƒãƒ©ã«æŠ•ç¨¿" + heading: "Diaspora Bookmarklet" post_something: "ダイアスãƒãƒ©ã«æŠ•ç¨¿" post_success: "投稿完了ï¼ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã‚’é–‰ã˜ã¾ã™ã€‚" cancel: "å–り消ã™" diff --git a/config/locales/diaspora/ko.yml b/config/locales/diaspora/ko.yml index 041cf3dde96c9a2488cc68e5c2680f201c8e998e..a929bbf3d917b52e3c8fe9ca0c7280e4cf4e0bad 100644 --- a/config/locales/diaspora/ko.yml +++ b/config/locales/diaspora/ko.yml @@ -89,6 +89,10 @@ ko: aspect_not_empty: "ì• ìŠ¤íŽ™ì´ ë¹„ì–´ìžˆì§€ 않습니다" remove: "지우기" index: + cubbies: + explanation: "Cubbi.es는 ê°œë°œì¤‘ì¸ ìµœì´ˆì˜ ë””ì•„ìŠ¤í¬ë¼ 어플입니다." + heading: "Cubbi.esì— ì—°ê²°í•˜ê¸°" + learn_more: "ìžì„¸ížˆ 알아보기" handle_explanation: "ì´ ë””ì•„ìŠ¤í¬ë¼ í•¸ë“¤ì€ ì´ë©”ì¼ ì£¼ì†Œì²˜ëŸ¼ 남ì—게 건넬 수 있습니다." no_contacts: "ì»¨íƒ ì—†ìŒ" people_sharing_with_you: "나와 ê³µìœ í•˜ëŠ” 사람들" @@ -125,6 +129,7 @@ ko: bookmarklet: explanation: "%{link} ë§í¬ë¥¼ ë¶ë§ˆí¬ë¡œ 추가하세요." explanation_link_text: "디아스í¬ë¼ì— 올리기" + heading: "디아스í¬ë¼ ë¶ë§ˆí¬" post_something: "디아스í¬ë¼ì— 올리기" post_success: "ì˜¬ë ¸ìŠµë‹ˆë‹¤! 닫힙니다!" cancel: "취소" @@ -258,11 +263,11 @@ ko: no_results: "ê²°ê³¼ ì—†ìŒ" notifications: also_commented: - few: "%{actors}님 ë“±ë„ %{post_author}ë‹˜ì˜ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." - many: "%{actors}님 ë“±ë„ %{post_author}ë‹˜ì˜ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." - one: "%{actors}ë‹˜ë„ %{post_author}ë‹˜ì˜ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." - other: "%{actors}님 ë“±ë„ %{post_author}ë‹˜ì˜ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." - zero: "%{actors}ë‹˜ë„ %{post_author}ë‹˜ì˜ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + few: "%{actors}님 ë“±ë„ %{post_author}ë‹˜ì˜ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + many: "%{actors}님 ë“±ë„ %{post_author}ë‹˜ì˜ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + one: "%{actors}ë‹˜ë„ %{post_author}ë‹˜ì˜ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + other: "%{actors}님 ë“±ë„ %{post_author}ë‹˜ì˜ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + zero: "%{actors}ë‹˜ë„ %{post_author}ë‹˜ì˜ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." also_commented_deleted: few: "%{actors}ë‹˜ì´ ì§€ìš´ ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." many: "%{actors}ë‹˜ì´ ë‚´ê°€ 지운 ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." @@ -270,11 +275,11 @@ ko: other: "%{actors}ë‹˜ì´ ì§€ìš´ ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." zero: "%{actors}ë‹˜ì´ ì§€ìš´ ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." comment_on_post: - few: "%{actors}님 ë“±ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." - many: "%{actors}님 ë“±ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." - one: "%{actors}님 ë“±ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." - other: "%{actors}님 ë“±ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." - zero: "%{actors}ë‹˜ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + few: "%{actors}님 ë“±ì´ ë‚´ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + many: "%{actors}님 ë“±ì´ ë‚´ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + one: "%{actors}님 ë“±ì´ ë‚´ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + other: "%{actors}님 ë“±ì´ ë‚´ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." + zero: "%{actors}ë‹˜ì´ ë‚´ %{post_link}ì— ëŒ“ê¸€ì„ ë‹¬ì•˜ìŠµë‹ˆë‹¤." helper: new_notifications: few: "새 알림 %{count}ê°œ" @@ -293,11 +298,11 @@ ko: mark_all_as_read: "ëª¨ë‘ ì½ìŒìœ¼ë¡œ 표시" notifications: "알림" liked: - few: "%{actors}님 ë“±ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." - many: "%{actors}님 ë“±ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." - one: "%{actors}ë‹˜ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." - other: "%{actors}님 ë“±ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." - zero: "%{actors}ë‹˜ì´ ë‚´ %{post_link} ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." + few: "%{actors}님 ë“±ì´ ë‚´ %{post_link}ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." + many: "%{actors}님 ë“±ì´ ë‚´ %{post_link}ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." + one: "%{actors}ë‹˜ì´ ë‚´ %{post_link}ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." + other: "%{actors}님 ë“±ì´ ë‚´ %{post_link}ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." + zero: "%{actors}님 ë“±ì´ ë‚´ %{post_link}ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." liked_post_deleted: few: "%{actors}님 ë“±ì´ ë‚´ê°€ 지운 ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." many: "%{actors}님 ë“±ì´ ë‚´ê°€ 지운 ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." @@ -305,11 +310,11 @@ ko: other: "%{actors}님 ë“±ì´ ë‚´ê°€ 지운 ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." zero: "%{actors}ë‹˜ì´ ë‚´ê°€ 지운 ê³µìœ ë¬¼ì„ ì¢‹ì•„í•©ë‹ˆë‹¤." mentioned: - few: "%{actors}ë‹˜ì´ %{post_link} ê³µìœ ë¬¼ì—ì„œ 나를 멘션했습니다!" - many: "%{actors}ë‹˜ì´ %{post_link} ê³µìœ ë¬¼ì—ì„œ 나를 멘션했습니다." - one: "%{actors}ë‹˜ì´ %{post_link} ê³µìœ ë¬¼ì—ì„œ 나를 멘션했습니다!" - other: "%{actors}ë‹˜ì´ %{post_link} ê³µìœ ë¬¼ì—ì„œ 나를 멘션했습니다!" - zero: "%{actors}ë‹˜ì´ %{post_link} ê³µìœ ë¬¼ì—ì„œ 나를 멘션했습니다!" + few: "%{actors}ë‹˜ì´ %{post_link}ì—ì„œ 나를 멘션했습니다!" + many: "%{actors}ë‹˜ì´ %{post_link}ì—ì„œ 나를 멘션했습니다." + one: "%{actors}ë‹˜ì´ %{post_link}ì—ì„œ 나를 멘션했습니다!" + other: "%{actors}ë‹˜ì´ %{post_link}ì—ì„œ 나를 멘션했습니다!" + zero: "%{actors}ë‹˜ì´ %{post_link}ì—ì„œ 나를 멘션했습니다!" mentioned_deleted: few: "%{actors}님 ë“±ì´ ì§€ì›Œì§„ ê³µìœ ë¬¼ì—ì„œ 나를 멘션했습니다." many: "%{actors}님 ë“±ì´ ì§€ì›Œì§„ ê³µìœ ë¬¼ì—ì„œ 나를 멘션했습니다." diff --git a/config/locales/diaspora/lt.yml b/config/locales/diaspora/lt.yml index a2af2ccab716f9521b297426547bdeb5040fa822..aa9f1cf2fa4e2b354f77b8d65ebe7d591732b62e 100644 --- a/config/locales/diaspora/lt.yml +++ b/config/locales/diaspora/lt.yml @@ -89,6 +89,10 @@ lt: aspect_not_empty: "Aspektas netuÅ¡Äias" remove: "Å¡alinti" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Tai tavo vartotojo vardas Diasporoje. Kaip ir el. paÅ¡to adresas, jis leidžia sistemoje rasti pažįstamus." no_contacts: "No contacts" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ lt: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "AtÅ¡aukti" diff --git a/config/locales/diaspora/mk.yml b/config/locales/diaspora/mk.yml index 74d6552fa6afab01003cc7c3824aeb96b86140f9..a8f1478cec05b113252d6a6fc91a0776f0d0fef8 100644 --- a/config/locales/diaspora/mk.yml +++ b/config/locales/diaspora/mk.yml @@ -89,6 +89,10 @@ mk: aspect_not_empty: "ÐÑпектот не е празен" remove: "одÑтрани" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Ова е вашето diaspora кориÑничко име. ИÑто како е-маил адреÑа, можете да го давате на луѓе за да Ñе Ñврзат Ñо ваÑ." no_contacts: "No contacts" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ mk: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Откажи" diff --git a/config/locales/diaspora/ml.yml b/config/locales/diaspora/ml.yml index d34e82ccefb9673616ba38847ed575a8e5d50f8f..fb7c304db229be5544d9e9d6dfa8949697f29ec3 100644 --- a/config/locales/diaspora/ml.yml +++ b/config/locales/diaspora/ml.yml @@ -263,7 +263,12 @@ ml: zero: "à´ªàµà´¤à´¿à´¯ അറിയിപàµà´ªàµŠà´¨àµà´¨àµà´®à´¿à´²àµà´²" index: and: "കൂടാതെ" - and_others: "ഉം %{number} മറàµà´±àµà´³àµà´³à´µà´°àµà´‚" + and_others: + zero: "ഉം %{count} മറàµà´±àµà´³àµà´³à´µà´°àµà´‚" + one: "ഉം %{count} മറàµà´±àµà´³àµà´³à´µà´°àµà´‚" + few: "ഉം %{count} മറàµà´±àµà´³àµà´³à´µà´°àµà´‚" + many: "ഉം %{count} മറàµà´±àµà´³àµà´³à´µà´°àµà´‚" + others: "ഉം %{count} മറàµà´±àµà´³àµà´³à´µà´°àµà´‚" mark_all_as_read: "à´Žà´²àµà´²à´¾à´‚ വായിചàµà´šà´¤à´¾à´¯à´¿ അടയാളപàµà´ªàµ†à´Ÿàµà´¤àµà´¤àµà´•" notifications: "അറിയിപàµà´ªàµà´•à´³àµâ€" mentioned: "താങàµà´•à´³àµ† സൂചിപàµà´ªà´¿à´šàµà´šà´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨àµ" diff --git a/config/locales/diaspora/nb.yml b/config/locales/diaspora/nb.yml index 7f666b18cd1b890ed3685f73dd301ff1037f8c15..fae775ed5e53188e5b370b757ecc9925ed527f08 100644 --- a/config/locales/diaspora/nb.yml +++ b/config/locales/diaspora/nb.yml @@ -89,6 +89,10 @@ nb: aspect_not_empty: "Aspektet er ikke tomt" remove: "fjern" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "This is your diaspora handle. Like an email address, you can give this to people to reach you." no_contacts: "Ingen kontakter" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ nb: bookmarklet: explanation: "%{link} fra hvor som helst ved Ã¥ bokmerke denne linken." explanation_link_text: "Post pÃ¥ Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post noe pÃ¥ Diaspora" post_success: "Postet! Lukker!" cancel: "Avbryt" diff --git a/config/locales/diaspora/nl.yml b/config/locales/diaspora/nl.yml index 574cb14723ac2e3f97897c39187a34cd0274aee6..b3ae3ffa83b26e22ad86bd9d3ee83e4fa63187b5 100644 --- a/config/locales/diaspora/nl.yml +++ b/config/locales/diaspora/nl.yml @@ -89,6 +89,10 @@ nl: aspect_not_empty: "Aspect niet leeg" remove: "verwijderen" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Dit is jouw Diaspora handle. Deze kun je aan mensen geven zodat ze je kunnen bereiken, net als een e-mailadres." no_contacts: "Geen contacten" people_sharing_with_you: "Mensen die met jou delen" @@ -125,6 +129,7 @@ nl: bookmarklet: explanation: "%{link} vanaf elke locatie door deze link te bookmarken." explanation_link_text: "Post naar Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post iets naar Diaspora" post_success: "Gepost!" cancel: "Annuleren" diff --git a/config/locales/diaspora/pa.yml b/config/locales/diaspora/pa.yml index 19204d78ba8d83cf632744541ed19e03ac8297a9..356f6eea268a0baa36d1ef1ba8c37e12230e5b41 100644 --- a/config/locales/diaspora/pa.yml +++ b/config/locales/diaspora/pa.yml @@ -89,6 +89,10 @@ pa: aspect_not_empty: "Aspect not empty" remove: "ਹਟਾਓ" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "This is your diaspora handle. Like an email address, you can give this to people to reach you." no_contacts: "ਕੋਈ ਸੰਪਰਕ ਨਹੀਂ" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ pa: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "ਰੱਦ ਕਰੋ" diff --git a/config/locales/diaspora/pl.yml b/config/locales/diaspora/pl.yml index bc76658c0bd4206e9329d02a32082f83e8bb9cc3..1cecb31ee157ffc026b206c4447a4e8044dad2c7 100644 --- a/config/locales/diaspora/pl.yml +++ b/config/locales/diaspora/pl.yml @@ -89,6 +89,10 @@ pl: aspect_not_empty: "Aspekt nie jest pusty" remove: "usuÅ„" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "To jest Twój identyfikator w Diasporze. Podobnie jak adresu e-mailowy, możesz podawać go innym, aby mogli siÄ™ z TobÄ… skontaktować." no_contacts: "Brak kontaktów" people_sharing_with_you: "Osoby dzielÄ…ce siÄ™ z tobÄ…" @@ -125,6 +129,7 @@ pl: bookmarklet: explanation: "%{link} z każdego miejsca dodajÄ…c ten link do zakÅ‚adek." explanation_link_text: "Publikuj w serwisie Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Napisz coÅ› na Diasporze" post_success: "Post opublikowany! Zamykam okno!" cancel: "Anuluj" diff --git a/config/locales/diaspora/pt-BR.yml b/config/locales/diaspora/pt-BR.yml index f5f2548522915ff36efececd18d283cc3566c733..780df4f8876e8892da664312852e60ffdb05db51 100644 --- a/config/locales/diaspora/pt-BR.yml +++ b/config/locales/diaspora/pt-BR.yml @@ -89,6 +89,10 @@ pt-BR: aspect_not_empty: "Aspecto não está vazio" remove: "remover" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Este é o seu endereço na Diaspora*. Como um endereço de e-mail, pode ser usado por outras pessoas para contactar você." no_contacts: "Nenhum contato" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ pt-BR: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Cancelar" diff --git a/config/locales/diaspora/pt-PT.yml b/config/locales/diaspora/pt-PT.yml index 4e7f9c221a716c7f37ddd698b177dc74af73e11b..af225c75416598ec401d8ea8b3e9644982879b36 100644 --- a/config/locales/diaspora/pt-PT.yml +++ b/config/locales/diaspora/pt-PT.yml @@ -89,6 +89,10 @@ pt-PT: aspect_not_empty: "Aspecto não vazio" remove: "remover" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Este é o seu endereço do Diaspora. Tal como um endereço de email, pode dá-lo a quem deseja que o contacte." no_contacts: "Não há contactos" people_sharing_with_you: "Pessoas a partilhar consigo" @@ -125,6 +129,7 @@ pt-PT: bookmarklet: explanation: "Publique no Diaspora de qualquer lado ao adicionar %{link} como marcador." explanation_link_text: "esta hiperligação" + heading: "Diaspora Bookmarklet" post_something: "Publique qualquer coisa no Diaspora" post_success: "Publicado! A fechar!" cancel: "Cancelar" diff --git a/config/locales/diaspora/ro.yml b/config/locales/diaspora/ro.yml index 6c3f36eb2ce756e7f3407225cfe63bfa265d71ae..8fda96d5bbf8e5e5e1629748925564289f8b297e 100644 --- a/config/locales/diaspora/ro.yml +++ b/config/locales/diaspora/ro.yml @@ -89,6 +89,10 @@ ro: aspect_not_empty: "Aspectul nu este gol" remove: "ÅŸterge" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "This is your diaspora handle. Like an email address, you can give this to people to reach you." no_contacts: "No contacts" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ ro: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Anulează" diff --git a/config/locales/diaspora/ru.yml b/config/locales/diaspora/ru.yml index 4928fbde0773c4bd69d709131bd32bdbbc576377..7011678cde5dc3a250c26ba24173bbe43b13ecce 100644 --- a/config/locales/diaspora/ru.yml +++ b/config/locales/diaspora/ru.yml @@ -43,13 +43,13 @@ ru: are_you_sure: "Ð’Ñ‹ уверены?" aspect_memberships: aspect_dropdown: - add_to_aspect: "Add to aspect" + add_to_aspect: "Добавить к аÑпектам" toggle: - few: "In %{count} aspects" - many: "In %{count} aspects" - one: "In %{count} aspect" - other: "In %{count} aspects" - zero: "Add to aspect" + few: "Ð’ %{count} аÑпектах" + many: "Ð’ %{count} аÑпектах" + one: "Ð’ %{count} аÑпектах" + other: "Ð’ %{count} аÑпектах" + zero: "Добавить к аÑпектам" destroy: failure: "Ðе удалоÑÑŒ удалить человека из аÑпектов" no_membership: "Ðе удалоÑÑŒ найти Ñтого человека в Ñтом аÑпекте" @@ -89,6 +89,10 @@ ru: aspect_not_empty: "ÐÑпект не пуÑÑ‚" remove: "удалить" index: + cubbies: + explanation: "Cubbi.es Ñто Ð¿ÐµÑ€Ð²Ð°Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ð° по развитию диаÑпоры." + heading: "Подключение к Cubbi.es" + learn_more: "Узнать больше" handle_explanation: "Ðто идентификатор вашей ДиаÑпоры. Так же как Ð°Ð´Ñ€ÐµÑ Ñлектронной почты, который вы можете дать людÑм, Ð´Ð»Ñ ÑвÑзи Ñ Ð²Ð°Ð¼Ð¸." no_contacts: "Контакты отÑутÑтвуют" people_sharing_with_you: "Люди делÑÑ‚Ñа Ñ Ð²Ð°Ð¼Ð¸" @@ -123,8 +127,9 @@ ru: zero: "нет аÑпектов" back: "Ðазад" bookmarklet: - explanation: "%{link} из любого меÑта на закладок ÑÑылку." - explanation_link_text: "ÐапиÑать диаÑпоре" + explanation: "Сообщение Ð´Ð»Ñ Ð´Ð¸Ð°Ñпоры из любого меÑта %{link}." + explanation_link_text: "Ñта ÑÑылка" + heading: "Diaspora Bookmarklet" post_something: "Сообщите что-нибудь диаÑпоре" post_success: "Опубликовано! Закрытие!" cancel: "Отмена" @@ -145,7 +150,7 @@ ru: one: "1 контакт" other: "%{count} контакт[-а, -ов]" sharing: - people_sharing: "People sharing with you:" + people_sharing: "делÑÑ‚ÑÑ Ñ Ð²Ð°Ð¼Ð¸:" zero: "ни одного контакта" conversations: create: @@ -207,7 +212,7 @@ ru: already_contacts: "Ð’Ñ‹ уже ÑвÑзаны Ñ Ñтим человеком" already_sent: "Ð’Ñ‹ уже приглаÑили Ñтого человека." no_more: "У Ð²Ð°Ñ Ð·Ð°ÐºÐ¾Ð½Ñ‡Ð¸Ð»Ð¸ÑÑŒ приглашениÑ." - own_address: "You can't send an invitation to your own address." + own_address: "Ð’Ñ‹ не можете отправить приглашение на ваш ÑобÑтвенный адреÑ." rejected: "Следующие адреÑа Ñлектронной почты имеют проблемы:" sent: "Ваши Ð¿Ñ€Ð¸Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ñ‹:" edit: @@ -232,7 +237,7 @@ ru: whats_new: "Что нового?" your_aspects: "Ваши аÑпекты" header: - admin: "admin" + admin: "админ" blog: "блог" code: "код" login: "логин" @@ -258,23 +263,23 @@ ru: no_results: "Результатов не найдено" notifications: also_commented: - few: "%{actors} also commented on %{post_author}'s %{post_link}." - many: "%{actors} also commented on %{post_author}'s %{post_link}." - one: "%{actors} also commented on %{post_author}'s %{post_link}." - other: "%{actors} also commented on %{post_author}'s %{post_link}." - zero: "%{actors} also commented on %{post_author}'s %{post_link}." + few: "%{actors} прокомментировали %{post_author}'s %{post_link}." + many: "%{actors} прокомментировали %{post_author}'s %{post_link}." + one: "%{actors} прокомментировали %{post_author}'s %{post_link}." + other: "%{actors} также прокомментировал %{post_author}'s %{post_link}." + zero: "%{actors} также прокомментировал %{post_author}'s %{post_link}." also_commented_deleted: - few: "%{actors} commented on a deleted post." - many: "%{actors} commented on a deleted post." - one: "%{actors} commented on a deleted post." - other: "%{actors} commented on a deleted post." - zero: "%{actors} commented on a deleted post." + few: "%{actors} комментировали ваше удаленое Ñообщение." + many: "%{actors} комментировали ваше удаленое Ñообщение." + one: "%{actors} комментировали ваше удаленое Ñообщение." + other: "%{actors} комментировали ваше удаленое Ñообщение." + zero: "%{actors} комментировали ваше удаленое Ñообщение." comment_on_post: - few: "%{actors} commented on your %{post_link}." - many: "%{actors} commented on your %{post_link}." - one: "%{actors} commented on your %{post_link}." - other: "%{actors} commented on your %{post_link}." - zero: "%{actors} commented on your %{post_link}." + few: "%{actors} комментариев на Ð²Ð°Ñ %{post_link}." + many: "%{actors} комментариев на Ð²Ð°Ñ %{post_link}." + one: "%{actors} комментариев на Ð²Ð°Ñ %{post_link}." + other: "%{actors} комментариев на Ð²Ð°Ñ %{post_link}." + zero: "%{actors} комментариев на Ð²Ð°Ñ %{post_link}." helper: new_notifications: few: "%{count} новое[-Ñ‹Ñ…] извещение[-ий]" @@ -285,50 +290,50 @@ ru: index: and: "и" and_others: - few: "and %{count} others" - many: "and %{count} others" - one: "and one more" - other: "and %{count} others" - zero: "and nobody else" + few: "и %{count} другим" + many: "и %{count} другим" + one: "и еще один" + other: "и %{count} другим" + zero: "и больше кикому" mark_all_as_read: "Отметить вÑе как прочитанные" notifications: "УведомлениÑ" liked: - few: "%{actors} has just liked your %{post_link}." - many: "%{actors} has just liked your %{post_link}." - one: "%{actors} has just liked your %{post_link}." - other: "%{actors} has just liked your %{post_link}." - zero: "%{actors} has just liked your %{post_link}." + few: "%{actors} понравилоÑÑŒ ваш %{post_link}." + many: "%{actors} понравилоÑÑŒ ваш %{post_link}." + one: "%{actors} понравилоÑÑŒ ваш %{post_link}." + other: "%{actors} понравилоÑÑŒ ваш %{post_link}." + zero: "%{actors} понравилоÑÑŒ ваш %{post_link}." liked_post_deleted: - few: "%{actors} liked your deleted post." - many: "%{actors} liked your deleted post." - one: "%{actors} liked your deleted post." - other: "%{actors} liked your deleted post." - zero: "%{actors} liked your deleted post." + few: "%{actors} нравилоÑÑŒ ваше удаленое Ñообщение." + many: "%{actors} нравилоÑÑŒ ваше удаленое Ñообщение." + one: "%{actors} нравилоÑÑŒ ваше удаленое Ñообщение." + other: "%{actors} нравилоÑÑŒ ваше удаленое Ñообщение.ost." + zero: "%{actors} нравилоÑÑŒ ваше удаленое Ñообщение." mentioned: - few: "%{actors} has mentioned you in a %{post_link}." - many: "%{actors} has mentioned you in a %{post_link}." - one: "%{actors} has mentioned you in a %{post_link}." - other: "%{actors} has mentioned you in a %{post_link}." - zero: "%{actors} has mentioned you in a %{post_link}." + few: "%{actors} упомÑнули Ð²Ð°Ñ Ð² %{post_link}." + many: "%{actors} упомÑнули Ð²Ð°Ñ Ð² %{post_link}." + one: "%{actors} упомÑнули Ð²Ð°Ñ Ð² %{post_link}." + other: "%{actors} упомÑнули Ð²Ð°Ñ Ð² %{post_link}." + zero: "%{actors} упомÑнули Ð²Ð°Ñ Ð² %{post_link}." mentioned_deleted: - few: "%{actors} mentioned you in a deleted post." - many: "%{actors} mentioned you in a deleted post." - one: "%{actors} mentioned you in a deleted post." - other: "%{actors} mentioned you in a deleted post." - zero: "%{actors} mentioned you in a deleted post." - post: "Ñообщение." + few: "%{actors} упомÑнули Ð²Ð°Ñ Ð² удаленом Ñообщение." + many: "%{actors} упомÑнули Ð²Ð°Ñ Ð² удаленом Ñообщение." + one: "%{actors} упомÑнули Ð²Ð°Ñ Ð² удаленом Ñообщение." + other: "%{actors} упомÑнули Ð²Ð°Ñ Ð² удаленом Ñообщение." + zero: "%{actors} упомÑнули Ð²Ð°Ñ Ð² удаленом Ñообщение." + post: "Ñообщение" private_message: - few: "%{actors} sent you a message." - many: "%{actors} sent you a message." - one: "%{actors} sent you a message." - other: "%{actors} sent you a message." - zero: "%{actors} sent you a message." + few: "%{actors} поÑлали вам Ñообщение." + many: "%{actors} поÑлали вам Ñообщение." + one: "%{actors} поÑлали вам Ñообщение." + other: "%{actors} поÑлали Вам Ñообщение." + zero: "%{actors} поÑлали Вам Ñообщение." started_sharing: - few: "%{actors} started sharing with you." - many: "%{actors} started sharing with you." - one: "%{actors} started sharing with you." - other: "%{actors} started sharing with you." - zero: "%{actors} started sharing with you." + few: "%{actors} начали делитьÑÑ Ñ Ð²Ð°Ð¼Ð¸." + many: "%{actors} начали делитьÑÑ Ñ Ð²Ð°Ð¼Ð¸." + one: "%{actors} начали делитьÑÑ Ñ Ð²Ð°Ð¼Ð¸." + other: "%{actors} начали делитьÑÑ Ñ Ð²Ð°Ð¼Ð¸." + zero: "%{actors} начали делитьÑÑ Ñ Ð²Ð°Ð¼Ð¸." notifier: also_commented: commented: "также прокомментировал %{post_author} Ñообщение:\n" @@ -359,9 +364,9 @@ ru: admin: "Ваш админиÑтратор ДиаÑпоры" subject: "Сообщение о вашем аккаунте ДиаÑпоры:" started_sharing: - sharing: "has started sharing with you!" - sign_in: "Sign in here" - subject: "%{name} has started sharing with you on Diaspora*" + sharing: "начал делитьÑÑ Ñ Ð²Ð°Ð¼Ð¸!" + sign_in: "Войти Ñюда" + subject: "%{name} начал делитьÑÑ Ñ Ð²Ð°Ð¼Ð¸ в диаÑпоре*" thanks: "СпаÑибо," ok: "Ок" or: "или" @@ -564,7 +569,7 @@ ru: by_email: "по Ñлектронной почте" dont_have_now: "У Ð²Ð°Ñ Ð±Ð¾Ð»ÑŒÑˆÐµ нет приглашений, но новые будут уже Ñкоро!" from_facebook: "из Facebook" - invitations_left: "(оÑталоÑÑŒ %{count})" + invitations_left: "%{count} Ñлева" invite_someone: "ПриглаÑить кого-нибудь" invite_your_friends: "ПриглаÑить Ñвоих друзей" invites: "ПриглашениÑ" @@ -595,7 +600,7 @@ ru: dislike: "Ðе нравитÑÑ" like: "ÐравитÑÑ" unlike: "Ð’ отличие от" - via: "via %{link}" + via: "через %{link}" status_messages: create: success: "УÑпешно упомÑнут: %{names}" @@ -610,11 +615,11 @@ ru: not_found: "К Ñожалению мы не Ñмогли найти Ñто Ñообщение." permalink: "поÑтоÑÐ½Ð½Ð°Ñ ÑÑылка" too_long: - few: "please make your status messages less than %{count} characters" - many: "please make your status messages less than %{count} characters" - one: "please make your status messages less than %{count} character" - other: "please make your status messages less than %{count} characters" - zero: "please make your status messages less than %{count} characters" + few: "Ñократите пожалуйÑта ваше Ñообщение до %{count} Ñимволов" + many: "Ñократите пожалуйÑта ваше Ñообщение до %{count} Ñимволов" + one: "Ñократите пожалуйÑта ваше Ñообщение до %{count} Ñимволов" + other: "Ñократите пожалуйÑта ваше Ñообщение до %{count} Ñимволов" + zero: "Ñократите пожалуйÑта ваше Ñообщение до %{count} Ñимволов" stream_helper: hide_comments: "Ñкрыть комментарии" show_comments: "комментарии" @@ -626,20 +631,20 @@ ru: the_world: "мир" tokens: show: - connect_to_cubbies: "Connect to Cubbi.es" - connecting_is_simple: "Connecting your Diaspora account is as simple as filling out two fields on your Cubbi.es account page." - daniels_account: "Daniel's Diaspora account" - generate_a_token: "Generate a token" - love_to_try: "We'd love for you to try it out." - making_the_connection: "Making the Connection" - screenshot_explanation: "%{link1}. This particular cubby is linked to %{link2}." - sign_up_today: "Sign up today!" - typical_userpage: "A typical cubbi.es userpage" + connect_to_cubbies: "Подключение к Cubbi.es" + connecting_is_simple: "Подключение диаÑпоры так же проÑто, как заполнить два Ð¿Ð¾Ð»Ñ Ð½Ð° вашей Ñтранице Cubbi.es." + daniels_account: "ДиаÑпора-аккаунт Даниила" + generate_a_token: "Создание маркера" + love_to_try: "Мы будем рады, еÑли вы попробуете Ñто." + making_the_connection: "Создание подключениÑ" + screenshot_explanation: "%{link1}. Ðто оÑобенно ÑвÑзано Ñ %{link2}." + sign_up_today: "ЗарегиÑтрируйтеÑÑŒ прÑмо ÑейчаÑ!" + typical_userpage: "Ð¢Ð¸Ð¿Ð¸Ñ‡Ð½Ð°Ñ cubbi.es Ñтраница" via: "(via %{link})" were_working_hard: "We're working hard on delivering easy connectivity between Diaspora pods and applications. In the meantime, connecting you Diaspora account with Cubbi.es means copying and pasting two fields." - what_is_cubbies: "Cubbi.es is the world's first Diaspora application. It's also the best way to collect photos online." - your_diaspora_handle: "Your Diaspora Handle:" - your_diaspora_token: "Your Diaspora Token:" + what_is_cubbies: "Cubbi.es Ð¿ÐµÑ€Ð²Ð°Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ð° диаÑпоры. Ðто также лучший ÑпоÑоб коллекции фотографий в Интернете." + your_diaspora_handle: "Ваша диаÑпора Ручка:" + your_diaspora_token: "Ваш диаÑпора Token:" undo: "Отменить?" username: "Ð˜Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ" users: diff --git a/config/locales/diaspora/sk.yml b/config/locales/diaspora/sk.yml index 12e1b6210cce17d1c1dfeeb392ac4321e79229e7..2ca9db0e8246f1a5a4230f6b97b789a95b84e232 100644 --- a/config/locales/diaspora/sk.yml +++ b/config/locales/diaspora/sk.yml @@ -89,6 +89,10 @@ sk: aspect_not_empty: "Aspekt nie je prázdny" remove: "odstrániÅ¥" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Toto je VaÅ¡a adresa a slúži ako vizitka. Pomocou nej Vás môžu ostatnà vyhľadaÅ¥." no_contacts: "Žiadne kontakty" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ sk: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "ZruÅ¡iÅ¥" diff --git a/config/locales/diaspora/sl.yml b/config/locales/diaspora/sl.yml index 27360f5046ca0d78ae79a22bd94cd4924e27c4bb..c3ee6bd4b5383daab243ca86249b0104af5de1fc 100644 --- a/config/locales/diaspora/sl.yml +++ b/config/locales/diaspora/sl.yml @@ -89,6 +89,10 @@ sl: aspect_not_empty: "Skupina vsebuje stike" remove: "odstrani" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "To je vaÅ¡ diaspora naslov. Tako kot vaÅ¡ e-naslov, ga lahko uporabite kot naslov s pomoÄjo katerega drugi stopijo v stik z vami." no_contacts: "Ni kontaktov" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ sl: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "PrekliÄi" diff --git a/config/locales/diaspora/sv.yml b/config/locales/diaspora/sv.yml index 961689c82b174d6e7229003043e1800d7276a3a3..35350a0cda0afeb8e4bd86afea7267cb6dae86b6 100644 --- a/config/locales/diaspora/sv.yml +++ b/config/locales/diaspora/sv.yml @@ -89,6 +89,10 @@ sv: aspect_not_empty: "Aspekten är inte tom" remove: "ta bort" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "Det här är ditt Diaspora-användarnamn. Det är den här du ska ge till dina vänner om du vill att de ska lägga till dig pÃ¥ Diaspora." no_contacts: "Inga kontakter" people_sharing_with_you: "Personer som delar med dig" @@ -125,6 +129,7 @@ sv: bookmarklet: explanation: "%{link} frÃ¥n var som helst genom att lägga till den här länken som bokmärke." explanation_link_text: "Posta pÃ¥ Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Posta nÃ¥got till Diaspora" post_success: "Postat! Stänger!" cancel: "Avbryt" diff --git a/config/locales/diaspora/tr.yml b/config/locales/diaspora/tr.yml index ac4fb5b40a12c868c1f5c3b24eef2e08a82a12d9..bed8eb9b148ccf2668b4e2a9f9cd9722e5aaa8a0 100644 --- a/config/locales/diaspora/tr.yml +++ b/config/locales/diaspora/tr.yml @@ -89,6 +89,10 @@ tr: aspect_not_empty: "Yan boÅŸ deÄŸil" remove: "çıkar" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "This is your diaspora handle. Like an email address, you can give this to people to reach you." no_contacts: "No contacts" people_sharing_with_you: "People sharing with you" @@ -125,6 +129,7 @@ tr: bookmarklet: explanation: "%{link} from anywhere by bookmarking this link." explanation_link_text: "Post to Diaspora" + heading: "Diaspora Bookmarklet" post_something: "Post something to Diaspora" post_success: "Posted! Closing!" cancel: "Ä°ptal Et" diff --git a/config/locales/diaspora/zh-CN.yml b/config/locales/diaspora/zh-CN.yml index 2fc285ef8846ba21e07c107c8207d247efd01904..65c7bc88210f45a1ff6ad343c470918396b575fa 100644 --- a/config/locales/diaspora/zh-CN.yml +++ b/config/locales/diaspora/zh-CN.yml @@ -89,6 +89,10 @@ zh-CN: aspect_not_empty: "æ¤è§†å›¾ä¸æ˜¯ç©ºçš„" remove: "åˆ é™¤" index: + cubbies: + explanation: "Cubbi.es is the first Diaspora application under development." + heading: "Connect to Cubbi.es" + learn_more: "Learn more" handle_explanation: "这是您的 diaspora å¸å·ï¼Œ å°±åƒæ˜¯é‚®ç®±ä¸€æ ·ï¼Œä½ å¯ä»¥æŠŠå®ƒæ供给想好å‹æ‚¨çš„人。" no_contacts: "没有任何好å‹" people_sharing_with_you: "与您分享的人" @@ -125,6 +129,7 @@ zh-CN: bookmarklet: explanation: "%{link} 收è—这个链接,å³å¯éšæ—¶å‘布新内容" explanation_link_text: "这个链接" + heading: "Diaspora Bookmarklet" post_something: "å‘布些新内容到Diaspora" post_success: "å‘布完æˆï¼å…³é—ä¸ï¼" cancel: "å–消" diff --git a/config/locales/diaspora/zh-TW.yml b/config/locales/diaspora/zh-TW.yml index 1f5f31c8d065f12a6bb45f404ff07d3d8736c52f..1db5492cb771c2b837eb805af33f311b7c0f5444 100644 --- a/config/locales/diaspora/zh-TW.yml +++ b/config/locales/diaspora/zh-TW.yml @@ -89,6 +89,10 @@ zh-TW: aspect_not_empty: "é¢å‘ä¸æ˜¯ç©ºçš„" remove: "刪除" index: + cubbies: + explanation: "Cubbi.es 是 Diaspora 的第一個應用程å¼, ç›®å‰æ£åœ¨é–‹ç™¼ä¸." + heading: "與 Cubbi.es 連çµ" + learn_more: "進一æ¥äº†è§£" handle_explanation: "é€™æ˜¯ä½ çš„ diaspora è˜åˆ¥ç¢¼. å°±åƒæ˜¯é›»å信箱一樣, ä½ å¯ä»¥æŠŠå®ƒçµ¦æƒ³è¯çµ¡ä½ 的人." no_contacts: "沒有任何è¯ç¹«" people_sharing_with_you: "è·Ÿä½ åˆ†äº«çš„äºº" @@ -125,6 +129,7 @@ zh-TW: bookmarklet: explanation: "%{link}åŠ å…¥æ›¸ç±¤å¾Œå¯å°ä»»ä½•ç¶²ç«™ä½¿ç”¨." explanation_link_text: "這個連çµ" + heading: "Diaspora 書籤å°ç¨‹å¼" post_something: "貼些æ±è¥¿åˆ° Diaspora" post_success: "貼好了! 關掉ä¸!" cancel: "å–消" diff --git a/config/locales/javascript/javascript.ar.yml b/config/locales/javascript/javascript.ar.yml index d9621b4c3c80352aee6fe89f489f9b63f5c1ed4e..473d4a607501ea72bd1392b3ee35a32424b2b5bc 100644 --- a/config/locales/javascript/javascript.ar.yml +++ b/config/locales/javascript/javascript.ar.yml @@ -6,25 +6,25 @@ ar: javascripts: aspect_dropdown: - add_to_aspect: "Add to aspect" + add_to_aspect: "أض٠إلى Ùئة" toggle: - few: "In {{count}} aspects" - many: "In {{count}} aspects" - one: "In {{count}} aspect" - other: "In {{count}} aspects" - zero: "Add to aspect" + few: "ÙÙŠ {{count}} Ùئات" + many: "ÙÙŠ {{count}} Ùئات" + one: "ÙÙŠ {{count}} Ùئة" + other: "ÙÙŠ {{count}} Ùئات" + zero: "أض٠إلى Ùئة" comments: - hide: "hide comments" - show: "show all comments" + hide: "إخÙاء التعليقات" + show: "عرض جميع التعليقات" confirm_dialog: "هل أنت متأكد؟" - failed_to_like: "Failed to like!" - failed_to_post_message: "Failed to post message!" + failed_to_like: "Ùشل ÙÙŠ [أعجبني]" + failed_to_post_message: "Ùشل ÙÙŠ نشر رسالة!" infinite_scroll: no_more: "لا توجد أية رسائل أخرى" publisher: at_least_one_aspect: "عليك تØديد Ùئة واØدة على الأقل" search_for: "إبØØ« عن {{name}}" - show_more: "show more" + show_more: "المزيد" timeago: day: "منذ يوم" days: "منذ %d أيام" diff --git a/config/locales/javascript/javascript.de.yml b/config/locales/javascript/javascript.de.yml index 72a9eaa2df3219a4c28ad3d3db805ead8b8cd0af..2a68410d088adaaf06d3bd0f93c63bc6ef6c210c 100644 --- a/config/locales/javascript/javascript.de.yml +++ b/config/locales/javascript/javascript.de.yml @@ -10,7 +10,7 @@ de: toggle: few: "In {{count}} Aspekten" many: "In {{count}} Aspekten" - one: "In {{count}} Aspekten" + one: "In einem Aspekt" other: "In {{count}} Aspekten" zero: "Zu Aspekt hinzufügen" comments: diff --git a/config/locales/javascript/javascript.ru.yml b/config/locales/javascript/javascript.ru.yml index d37f774dfe2c348004050b2d17718d4602a2e77c..c33a6bd5b382635c7e0fa190406975fb846d3724 100644 --- a/config/locales/javascript/javascript.ru.yml +++ b/config/locales/javascript/javascript.ru.yml @@ -6,25 +6,25 @@ ru: javascripts: aspect_dropdown: - add_to_aspect: "Add to aspect" + add_to_aspect: "Добавить к аÑпектам" toggle: - few: "In {{count}} aspects" - many: "In {{count}} aspects" - one: "In {{count}} aspect" - other: "In {{count}} aspects" - zero: "Add to aspect" + few: "Ð’ {{count}} аÑпектах" + many: "Ð’ {{count}} аÑпектах" + one: "Ð’ {{count}} аÑпектах" + other: "Ð’ {{count}} аÑпектах" + zero: "Добавить к аÑпектам" comments: - hide: "hide comments" - show: "show all comments" + hide: "Ñкрыть комментарии" + show: "Показать вÑе комментарии" confirm_dialog: "Ð’Ñ‹ уверенны? " - failed_to_like: "Failed to like!" - failed_to_post_message: "Failed to post message!" + failed_to_like: "Ðе удалоÑÑŒ!" + failed_to_post_message: "Ðе удалоÑÑŒ отправить Ñообщение!" infinite_scroll: no_more: "Сообщений больше нет." publisher: at_least_one_aspect: "Вам надо минимум один аÑпект Ñоздать" search_for: "ИÑкать {{name}}" - show_more: "show more" + show_more: "показать больше" timeago: day: "день" days: "%d дней[-Ñ]" diff --git a/lib/youtube_titles.rb b/lib/youtube_titles.rb index 8530e8ad3e27d9b1694a9ec5ec33aad76585ef73..cf90f28b3ca66f616d704f7c8e291f43e0c703c4 100644 --- a/lib/youtube_titles.rb +++ b/lib/youtube_titles.rb @@ -1,4 +1,12 @@ module YoutubeTitles + def self.included(model) + model.class_eval do + before_save do + get_youtube_title text + end + end if model.respond_to?(:before_save) + end + def youtube_title_for video_id http = Net::HTTP.new('gdata.youtube.com', 80) path = "/feeds/api/videos/#{video_id}?v=2" diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png index 1ccc5e3a9370d2ef197f30347298528d2999acec..3027448479dbbf0fe1b0a3ba868e8f6ed43ed285 100644 Binary files a/public/apple-touch-icon.png and b/public/apple-touch-icon.png differ diff --git a/public/favicon.png b/public/favicon.png index 72d6b3e020c91f8d9fb081805bde1b22a3e7d6ed..869fabfaf94d251bbcc014733f8cdff81072fb32 100644 Binary files a/public/favicon.png and b/public/favicon.png differ diff --git a/public/images/404.png b/public/images/404.png index f7a87253295485fdf416c3200c71f106c2f598ae..2172c13b13d5a9348910e79ebf73b88123d8fda9 100644 Binary files a/public/images/404.png and b/public/images/404.png differ diff --git a/public/images/add_contact_button.png b/public/images/add_contact_button.png index 6248f1b88bc0084916b0ec473d2e0cc7dcce2ca6..75004609243b1c3f026c004c6123ca0184f7c5ce 100644 Binary files a/public/images/add_contact_button.png and b/public/images/add_contact_button.png differ diff --git a/public/images/asterisk.png b/public/images/asterisk.png index 0aac946d0c5b150e9bd7b5c2bf4f199967cff5b5..9e181f5f38c777ee567bb28df8ba0423a0dde44c 100644 Binary files a/public/images/asterisk.png and b/public/images/asterisk.png differ diff --git a/public/images/ball.png b/public/images/ball.png index ea811fb11a9e01fd6118058681c1f40a35daef2a..dbb1c15401484d279e7ebe52765a2428a75f4fc0 100644 Binary files a/public/images/ball.png and b/public/images/ball.png differ diff --git a/public/images/ball_small.png b/public/images/ball_small.png index a3309689cc03da343e693f38b2c432d33fc3b162..4d30835c80d3938b0dd3d87172f0f4ecb583ce9d 100644 Binary files a/public/images/ball_small.png and b/public/images/ball_small.png differ diff --git a/public/images/cubbies_screenshot.png b/public/images/cubbies_screenshot.png index 1f4d98005f19d843ba6902368ca3cb10e7b8d5ec..7dad8817eb9185d2334b9b822cd2f0f16f636143 100644 Binary files a/public/images/cubbies_screenshot.png and b/public/images/cubbies_screenshot.png differ diff --git a/public/images/cubbies_settings.png b/public/images/cubbies_settings.png index 01f7505fedf4a39cd1f4a044ae261ea19d3c2c83..ca9bef480f918fb22afd81ebcb3387215329c9b6 100644 Binary files a/public/images/cubbies_settings.png and b/public/images/cubbies_settings.png differ diff --git a/public/images/icons/cog.png b/public/images/icons/cog.png index e35106fec568ad8d14fa33b5abaf61ea3165ff43..06e6939605d8c7ae1f21e204783e6bc03d1be8cb 100644 Binary files a/public/images/icons/cog.png and b/public/images/icons/cog.png differ diff --git a/public/images/icons/doc_edit.png b/public/images/icons/doc_edit.png index 406e5af18dded4ecda44a1cad0a3ce965c99aceb..17071ef8786ebb9c0bf8544dc25be2fcaa535e60 100644 Binary files a/public/images/icons/doc_edit.png and b/public/images/icons/doc_edit.png differ diff --git a/public/images/icons/globe.png b/public/images/icons/globe.png index 240045014ebd3fb871886a7ced8a7d6013718887..6e8cdb50df0208c191c84c39cde19528c8fd488c 100644 Binary files a/public/images/icons/globe.png and b/public/images/icons/globe.png differ diff --git a/public/images/icons/happy_smiley.png b/public/images/icons/happy_smiley.png index f9b44488d3b8e9f3cf70981f6d00f69386c03796..675e39ce6f38acbd7cedea38c2f1d3bfb907d450 100644 Binary files a/public/images/icons/happy_smiley.png and b/public/images/icons/happy_smiley.png differ diff --git a/public/images/icons/monotone_add_plus.png b/public/images/icons/monotone_add_plus.png index f03378c1eecd97ecee3c05b7caac10f5e601b7dd..ba6920a77b15d385cdfc390eff270fa2dc450c43 100644 Binary files a/public/images/icons/monotone_add_plus.png and b/public/images/icons/monotone_add_plus.png differ diff --git a/public/images/icons/monotone_chat_talk.png b/public/images/icons/monotone_chat_talk.png index 3fd86d27dc707892542c96603adab116a9b179b2..ccfae8620396a51464b236b370014e742fda57b5 100644 Binary files a/public/images/icons/monotone_chat_talk.png and b/public/images/icons/monotone_chat_talk.png differ diff --git a/public/images/icons/monotone_email_letter_round.png b/public/images/icons/monotone_email_letter_round.png index 30af3047ba4877d0a5a7d6a36ac624339d208568..a450fe25fabb69566a607552436223755be266b0 100644 Binary files a/public/images/icons/monotone_email_letter_round.png and b/public/images/icons/monotone_email_letter_round.png differ diff --git a/public/images/icons/monotone_flag.png b/public/images/icons/monotone_flag.png index baea94936d2e36f689fdf10a49500c3b2cf26efc..fbfeb559dad5423bcc813be68579237e6d2567a7 100644 Binary files a/public/images/icons/monotone_flag.png and b/public/images/icons/monotone_flag.png differ diff --git a/public/images/icons/monotone_pen_write.png b/public/images/icons/monotone_pen_write.png index c7f7756fe2b51a2afbdaf29d47f8d9c1275a7972..34a2fdffc679506d78782c0f706e02c94a08bf4e 100644 Binary files a/public/images/icons/monotone_pen_write.png and b/public/images/icons/monotone_pen_write.png differ diff --git a/public/images/icons/monotone_plus_add_round.png b/public/images/icons/monotone_plus_add_round.png index 21872fb9a2618feeeb07214d87c63a395550ef85..6b37aa3c2ac6cbe9b94f0afebd2a7ce9ee546c6e 100644 Binary files a/public/images/icons/monotone_plus_add_round.png and b/public/images/icons/monotone_plus_add_round.png differ diff --git a/public/images/icons/monotone_question.png b/public/images/icons/monotone_question.png index 0620937a6e3069191c4a4f3362e48ea96744cb83..c7ffbe94146b77b10835d5071ad82a46697925f5 100644 Binary files a/public/images/icons/monotone_question.png and b/public/images/icons/monotone_question.png differ diff --git a/public/images/icons/padlock-closed.png b/public/images/icons/padlock-closed.png index af69232630ca096dbfc3f60b78b996283a4c5b97..25f3c8861c3a7b443ab7528e58515804179fac9a 100644 Binary files a/public/images/icons/padlock-closed.png and b/public/images/icons/padlock-closed.png differ diff --git a/public/images/icons/padlock-open.png b/public/images/icons/padlock-open.png index 895a25a76fe036bf9e4a5b8f15f93dab8adcf7ca..c4cd4bffa886e62d21407ba29e4f461f0c4b5f9e 100644 Binary files a/public/images/icons/padlock-open.png and b/public/images/icons/padlock-open.png differ diff --git a/public/images/icons/pen_write.png b/public/images/icons/pen_write.png index c7f7756fe2b51a2afbdaf29d47f8d9c1275a7972..34a2fdffc679506d78782c0f706e02c94a08bf4e 100644 Binary files a/public/images/icons/pen_write.png and b/public/images/icons/pen_write.png differ diff --git a/public/images/icons/sad_smiley.png b/public/images/icons/sad_smiley.png index 3e2de91c5b5a7694f27d276ba5073ba43f4773f5..c825f7ab6d0e354375ff8fe04b3fc38dfba2e3f1 100644 Binary files a/public/images/icons/sad_smiley.png and b/public/images/icons/sad_smiley.png differ diff --git a/public/images/icons/smiley_laughing.png b/public/images/icons/smiley_laughing.png index 37787d20670ca388f3564cf973eef62eb8aeeb6d..e2e6dc0b84f57fb1a6830e6ae088751f775c4700 100644 Binary files a/public/images/icons/smiley_laughing.png and b/public/images/icons/smiley_laughing.png differ diff --git a/public/images/logo_caps.png b/public/images/logo_caps.png index 139adaec0162ed5139b72fcff5037a71e6aba898..64075dd2bc39b84d296c00e933a991ae186c9c64 100644 Binary files a/public/images/logo_caps.png and b/public/images/logo_caps.png differ diff --git a/public/images/logo_large.png b/public/images/logo_large.png index 54a843a0ff6e28548a17ded335ef3d92cdc70363..7339202e57483635758ddb1dc3868cd2c76287b9 100644 Binary files a/public/images/logo_large.png and b/public/images/logo_large.png differ diff --git a/public/images/logo_small.png b/public/images/logo_small.png index 606e1edeba040fc0dcaf1953141bb283a81aadb3..0b22962be06ae905faabde36ffde7843b3fb7510 100644 Binary files a/public/images/logo_small.png and b/public/images/logo_small.png differ diff --git a/public/images/mocks/bp.jpeg b/public/images/mocks/bp.jpeg index 33f75aa044a365d52811406f0a43d8d5068cec30..62221c6dfba2f1b9dc9aa42561ef4e06e8cee313 100644 Binary files a/public/images/mocks/bp.jpeg and b/public/images/mocks/bp.jpeg differ diff --git a/public/images/mocks/user_pic.jpeg b/public/images/mocks/user_pic.jpeg index 4732d561ed7face2bb5b4b8c3d1699e559c45104..dbb41e89ca3839fa39c3200453d5b2b537c804d5 100644 Binary files a/public/images/mocks/user_pic.jpeg and b/public/images/mocks/user_pic.jpeg differ diff --git a/public/images/modern_browsers.png b/public/images/modern_browsers.png index 7d7c6aefe68571b24e951b123bd0f6b3a6f7bf14..6d9ec65e51c6fc3a005befabcad31158bc735dfe 100644 Binary files a/public/images/modern_browsers.png and b/public/images/modern_browsers.png differ diff --git a/public/images/powered_by_diaspora.png b/public/images/powered_by_diaspora.png index 971d0d6a118cbe312f235b180d4a97b8abb90ab2..1266901ef8f73e282494905d1dd98b37f952e123 100644 Binary files a/public/images/powered_by_diaspora.png and b/public/images/powered_by_diaspora.png differ diff --git a/public/images/press_logos/Mashable_logo.png b/public/images/press_logos/Mashable_logo.png index f6b684ff5470bff113c892e2b04316df482d6434..242c571972faa99b4928bbe59d90ff8946dd8955 100644 Binary files a/public/images/press_logos/Mashable_logo.png and b/public/images/press_logos/Mashable_logo.png differ diff --git a/public/images/press_logos/The_New_York_Times_logo.png b/public/images/press_logos/The_New_York_Times_logo.png index a2d06f8e9fef0d42b5287f8ed039f9f3c9d96ffc..09571e02950ee2c1f5bfe1c02ef8a66f2e3bd034 100644 Binary files a/public/images/press_logos/The_New_York_Times_logo.png and b/public/images/press_logos/The_New_York_Times_logo.png differ diff --git a/public/images/press_logos/mashable_logo.png b/public/images/press_logos/mashable_logo.png index f6b684ff5470bff113c892e2b04316df482d6434..242c571972faa99b4928bbe59d90ff8946dd8955 100644 Binary files a/public/images/press_logos/mashable_logo.png and b/public/images/press_logos/mashable_logo.png differ diff --git a/public/images/press_logos/nymag_logo.png b/public/images/press_logos/nymag_logo.png index ab43b6ebfcc93ad30b78139acdd7e30414b6e8ab..a1811d61ce42b92a7bdf2168152b52f5e8ddd4bf 100644 Binary files a/public/images/press_logos/nymag_logo.png and b/public/images/press_logos/nymag_logo.png differ diff --git a/public/images/press_logos/techcrunch_logo.png b/public/images/press_logos/techcrunch_logo.png index 5a9d2a0ec19e08641457110cafb4606fec816026..dead15d5bda0178f5054cc414661e44bb062bb47 100644 Binary files a/public/images/press_logos/techcrunch_logo.png and b/public/images/press_logos/techcrunch_logo.png differ diff --git a/public/images/press_logos/the_new_york_times_logo.png b/public/images/press_logos/the_new_york_times_logo.png index a2d06f8e9fef0d42b5287f8ed039f9f3c9d96ffc..09571e02950ee2c1f5bfe1c02ef8a66f2e3bd034 100644 Binary files a/public/images/press_logos/the_new_york_times_logo.png and b/public/images/press_logos/the_new_york_times_logo.png differ diff --git a/public/images/reply.png b/public/images/reply.png index 2356dc7791f28e2dae9bb96e62f9d60c7ca3906f..38668dbb12bc0d44755ca5d5cea6ade71b365681 100644 Binary files a/public/images/reply.png and b/public/images/reply.png differ diff --git a/public/images/services/twitter_sign_in.png b/public/images/services/twitter_sign_in.png index 297bb03404f2d7462ee9355aae38f5f5f3e47fbd..89712f2b70482355dfda588a0af008ee06a0b117 100644 Binary files a/public/images/services/twitter_sign_in.png and b/public/images/services/twitter_sign_in.png differ diff --git a/public/images/user/buchanan.jpg b/public/images/user/buchanan.jpg index ff1ebd5d41e98595ee69ed5b8f6d358b793df9cf..5a1787e36fe160b9cdc45abed91babad254004c1 100644 Binary files a/public/images/user/buchanan.jpg and b/public/images/user/buchanan.jpg differ diff --git a/public/images/user/buren.jpg b/public/images/user/buren.jpg index 377246b662d00a8f66976eb471b6098bc421158f..ba2d126d1622d71df009b889aea1afea7cc00608 100644 Binary files a/public/images/user/buren.jpg and b/public/images/user/buren.jpg differ diff --git a/public/images/user/default.png b/public/images/user/default.png index cd0b9059f97721141d8e402b35810bc84992e30a..53d10ffc0371cdf94146121da55755662219df9f 100644 Binary files a/public/images/user/default.png and b/public/images/user/default.png differ diff --git a/public/images/user/fillmore.jpg b/public/images/user/fillmore.jpg index c6850dfd31b887989206ca6dae640f6c87b3bd54..da53e741e1686cedf419d41a5ec8b383edb733d0 100644 Binary files a/public/images/user/fillmore.jpg and b/public/images/user/fillmore.jpg differ diff --git a/public/images/user/harrison.jpg b/public/images/user/harrison.jpg index c0a32898371375877cd856c33f3e2af5a0451715..6cc19ff4f256ea3c8d94589fa309182765d7a2f2 100644 Binary files a/public/images/user/harrison.jpg and b/public/images/user/harrison.jpg differ diff --git a/public/images/user/jackson.jpg b/public/images/user/jackson.jpg index 0e7386cf500adc6c9f779030c9b9457d76fb79cd..9aa0660ffa09f386b06833cedf1568eefe8fd293 100644 Binary files a/public/images/user/jackson.jpg and b/public/images/user/jackson.jpg differ diff --git a/public/images/user/jefferson.jpg b/public/images/user/jefferson.jpg index c36dfbc6a16f1b2c8a3b7d2caac5c978f2e9fe56..07351c679dd1ec7d4952e68a9152491246da58df 100644 Binary files a/public/images/user/jefferson.jpg and b/public/images/user/jefferson.jpg differ diff --git a/public/images/user/monroe.jpg b/public/images/user/monroe.jpg index 6169b4db812d79f3eb9b8894b7edd0778a45c0bf..84f3f1a6ec17e2735b0017ba7b5de6164f210358 100644 Binary files a/public/images/user/monroe.jpg and b/public/images/user/monroe.jpg differ diff --git a/public/images/user/pierce.jpg b/public/images/user/pierce.jpg index f86fdb0484a61ccaa2b5194b47f5452c00a9e4ea..5450a4f2c5a7e5d255864a12ab51239ba6e3b8bf 100644 Binary files a/public/images/user/pierce.jpg and b/public/images/user/pierce.jpg differ diff --git a/public/images/user/polk.jpg b/public/images/user/polk.jpg index ca04d3c4d1d671273d7df34e8364e1806cb32b0c..971d2cfb0e22b2bcfd08c9919b717a4e8e7480e7 100644 Binary files a/public/images/user/polk.jpg and b/public/images/user/polk.jpg differ diff --git a/public/images/user/quincyadams.jpg b/public/images/user/quincyadams.jpg index 9aac84b25e8ab5315929a8f94d2086824aa35a5d..2a9cd67f41fe3fc3da3c467c5fcb4a4c79e3ae0e 100644 Binary files a/public/images/user/quincyadams.jpg and b/public/images/user/quincyadams.jpg differ diff --git a/public/images/white.png b/public/images/white.png index 2a7260ea414c0b34f59c0527dada16b38cf7590d..fdbb27091bfa6f6ceff6584c9d173b8ff58e7a63 100644 Binary files a/public/images/white.png and b/public/images/white.png differ diff --git a/public/images/white@2x.png b/public/images/white@2x.png index 4d868523efb39781c19ca7cda0a158faf3dd2c70..abd33d8cea5c9bd74141085ee35d7d35647d7b4f 100644 Binary files a/public/images/white@2x.png and b/public/images/white@2x.png differ diff --git a/public/images/white_on_grey.png b/public/images/white_on_grey.png index 6213e06712dd37b1c841e55ef4dc7bd85d1e778f..0f6294fef2b2398caf3a653446135f225bd64475 100644 Binary files a/public/images/white_on_grey.png and b/public/images/white_on_grey.png differ diff --git a/public/stylesheets/blueprint/plugins/link-icons/icons/external.png b/public/stylesheets/blueprint/plugins/link-icons/icons/external.png index cf1cfb42687a8ddd637139eb8ff83e8d03e91a0f..2cd011b22bd80bdfaa460bf838243c6f78ce84c4 100644 Binary files a/public/stylesheets/blueprint/plugins/link-icons/icons/external.png and b/public/stylesheets/blueprint/plugins/link-icons/icons/external.png differ diff --git a/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png b/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png index ebf206def2729dae1fa9e8c5c9e5a95b7176c45b..b8a1eceb9658ac430115dfee76a2f5441adc1cd9 100644 Binary files a/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png and b/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png differ diff --git a/public/stylesheets/blueprint/src/grid.png b/public/stylesheets/blueprint/src/grid.png index d42a6c32c173bf067ee9fe1aa062afd915fb366c..61a06891871b4c618f62f3d840974851e9597e7b 100644 Binary files a/public/stylesheets/blueprint/src/grid.png and b/public/stylesheets/blueprint/src/grid.png differ diff --git a/public/stylesheets/sass/application.sass b/public/stylesheets/sass/application.sass index 1d55ff81dbc903b828172e718bffe578132bcd59..c8e0cdc33f11297a5d9fa513d543a4ecd509d67d 100644 --- a/public/stylesheets/sass/application.sass +++ b/public/stylesheets/sass/application.sass @@ -1334,9 +1334,11 @@ ul#aspect_nav :background-color rgb(252,252,252) .aspect - :margin - :right 20px - + :margin-right 20px // overwriting default of 10px from grid + &.last + :margin-right 0 + &.span-12 + :width 465px // overwriting default of 470px from grid .requests ul.dropzone diff --git a/public/stylesheets/vendor/images/ajax-loader.png b/public/stylesheets/vendor/images/ajax-loader.png index 811a2cdd1b492c47faf85c1206ad6606521eb6e4..ff3a6ab7e03c5d45aaf907e661b9d5b569e88023 100644 Binary files a/public/stylesheets/vendor/images/ajax-loader.png and b/public/stylesheets/vendor/images/ajax-loader.png differ diff --git a/public/stylesheets/vendor/images/icon-search-black.png b/public/stylesheets/vendor/images/icon-search-black.png index 5721120f8df590d9b745fe96342590600580954b..4723c9b851f8f51b4ebe745eb0a2f2937f90d2c6 100644 Binary files a/public/stylesheets/vendor/images/icon-search-black.png and b/public/stylesheets/vendor/images/icon-search-black.png differ diff --git a/public/stylesheets/vendor/images/icons-18-black.png b/public/stylesheets/vendor/images/icons-18-black.png index 71268bdf70f4a925e511d68be966e536449455a1..ab07b90601fd31801d1fbe8bfaae624ba1c393e3 100644 Binary files a/public/stylesheets/vendor/images/icons-18-black.png and b/public/stylesheets/vendor/images/icons-18-black.png differ diff --git a/public/stylesheets/vendor/images/icons-18-white.png b/public/stylesheets/vendor/images/icons-18-white.png index dadc6af58703dc34132c8756ab74b125278ca1ea..c1962570da482e9b3d23aca6b027e30bdcba602f 100644 Binary files a/public/stylesheets/vendor/images/icons-18-white.png and b/public/stylesheets/vendor/images/icons-18-white.png differ diff --git a/public/stylesheets/vendor/images/icons-36-black.png b/public/stylesheets/vendor/images/icons-36-black.png index 8c35ae3fb03fcd68f24f106a50eb1d0c512dc798..1e71ed2f5a4d43c13bad560ba301a3ae2efc701e 100644 Binary files a/public/stylesheets/vendor/images/icons-36-black.png and b/public/stylesheets/vendor/images/icons-36-black.png differ diff --git a/public/stylesheets/vendor/images/icons-36-white.png b/public/stylesheets/vendor/images/icons-36-white.png index 7e559b8163f4673c1cd943ccfdba4a6a87af822a..bbea8da53a44bed15d59777b04cd2cff4a49a786 100644 Binary files a/public/stylesheets/vendor/images/icons-36-white.png and b/public/stylesheets/vendor/images/icons-36-white.png differ diff --git a/spec/controllers/aspects_controller_spec.rb b/spec/controllers/aspects_controller_spec.rb index a3f0fa9d670722ae03d43342188c0618af477482..dd958f81066849e2b31933966ea9ea2acdee3f8c 100644 --- a/spec/controllers/aspects_controller_spec.rb +++ b/spec/controllers/aspects_controller_spec.rb @@ -104,7 +104,7 @@ describe AspectsController do post.save! @posts << post end - alice.build_comment('lalala', :on => @posts.first ).save + alice.build_comment(:text => 'lalala', :on => @posts.first ).save end describe "post visibilities" do diff --git a/spec/controllers/likes_controller_spec.rb b/spec/controllers/likes_controller_spec.rb index ee99e5339bc11918ee0d619944146aa4ddb72ff4..1ded8837d1a196f2d082dbbc697c9d3742a1a380 100644 --- a/spec/controllers/likes_controller_spec.rb +++ b/spec/controllers/likes_controller_spec.rb @@ -11,7 +11,7 @@ describe LikesController do @aspect1 = @user1.aspects.first @aspect2 = @user2.aspects.first - + @controller.stub(:current_user).and_return(alice) sign_in :user, @user1 end @@ -76,7 +76,7 @@ describe LikesController do context 'your like' do before do @message = bob.post(:status_message, :text => "hey", :to => @aspect1.id) - @like = alice.build_like(true, :on => @message) + @like = alice.build_like(:positive => true, :on => @message) @like.save end @@ -87,11 +87,11 @@ describe LikesController do end it 'does not let a user destroy other likes' do - like2 = eve.build_like(true, :on => @message) + like2 = eve.build_like(:positive => true, :on => @message) like2.save - expect { - delete :destroy, :format => "js", :post_id => like2.post_id, :id => like2.id + expect { + delete :destroy, :format => "js", :post_id => like2.post_id, :id => like2.id }.should_not change(Like, :count) end end diff --git a/spec/controllers/people_controller_spec.rb b/spec/controllers/people_controller_spec.rb index 31c53c3c528a7b7ad6275cbb12ae3d75908ede65..c5883b3b0e7cb7109d37191c1502ed0fb48595ac 100644 --- a/spec/controllers/people_controller_spec.rb +++ b/spec/controllers/people_controller_spec.rb @@ -42,6 +42,22 @@ describe PeopleController do assigns[:people].should =~ [@eugene, eugene2] end + it "excludes people that are not searchable" do + eugene2 = Factory.create(:person, + :profile => Factory.build(:profile, :first_name => "Eugene", + :last_name => "w", :searchable => false)) + get :index, :q => "Eug" + assigns[:people].should_not =~ [eugene2] + end + + it "allows unsearchable people to be found by handle" do + eugene2 = Factory.create(:person, :diaspora_handle => "eugene@example.org", + :profile => Factory.build(:profile, :first_name => "Eugene", + :last_name => "w", :searchable => false)) + get :index, :q => "eugene@example.org" + assigns[:people].should =~ [eugene2] + end + it "does not redirect to person page if there is exactly one match" do get :index, :q => "Korth" response.should_not redirect_to @korth @@ -268,4 +284,4 @@ describe PeopleController do get :retrieve_remote, :diaspora_handle => @user.diaspora_handle end end -end \ No newline at end of file +end diff --git a/spec/fixtures/button.png b/spec/fixtures/button.png index 6248f1b88bc0084916b0ec473d2e0cc7dcce2ca6..75004609243b1c3f026c004c6123ca0184f7c5ce 100644 Binary files a/spec/fixtures/button.png and b/spec/fixtures/button.png differ diff --git a/spec/helpers/markdownify_helper_spec.rb b/spec/helpers/markdownify_helper_spec.rb index 6e9746d685b378c3e5a0658584b1f6b614d43481..a30ee28e0deaafcd22e2ab4bb887665bfc06e9ae 100644 --- a/spec/helpers/markdownify_helper_spec.rb +++ b/spec/helpers/markdownify_helper_spec.rb @@ -35,6 +35,15 @@ describe MarkdownifyHelper do markdownify(proto+"://"+url).should == "<a target=\"_blank\" href=\""+proto+"://"+url+"\">"+url+"</a>" end + it "doesn't double parse video links" do + message = "http://www.vimeo.com/17449557 + http://www.youtube.com/watch?v=0x__dDWdf23&a=GxdCwVVULXdvEBKmx_f5ywvZ0zZHHHDU&list=ML&playnext=1 + http://youtu.be/x_CzD0GBD-4" + res = markdownify(message) + res.should =~ /href.+href.+href/ + res.should_not =~ /href.+href.+href.+href/ + end + describe "video links" do it "recognizes vimeo links" do video_id = "17449557" @@ -62,6 +71,15 @@ describe MarkdownifyHelper do res.should =~ /data-video-id="#{video_id}"/ end + it "recognizes youtu.be links" do + video_id = "x_CzD0GBD-4" + url = "http://youtu.be/#{video_id}" + res = markdownify(url) + res.should =~ /Youtube:/ + res.should =~ /data-host="youtube.com"/ + res.should =~ /data-video-id="#{video_id}"/ + end + it "recognizes youtube links with hyphens" do video_id = "ABYnqp-bxvg" url = "http://www.youtube.com/watch?v=" + video_id + "&a=GxdCwVVULXdvEBKmx_f5ywvZ0zZHHHDU&list=ML&playnext=1" diff --git a/spec/lib/postzord/dispatch_spec.rb b/spec/lib/postzord/dispatch_spec.rb index d1e4fae54de1653904f2776fd06b7022faecc941..f46a0ca60361844d081235368aa64e7a332f6908 100644 --- a/spec/lib/postzord/dispatch_spec.rb +++ b/spec/lib/postzord/dispatch_spec.rb @@ -84,7 +84,7 @@ describe Postzord::Dispatch do end context "local leia" do before do - @comment = @local_leia.build_comment "yo", :on => @post + @comment = @local_leia.build_comment :text => "yo", :on => @post @comment.save end context "local leia's mailman" do @@ -156,7 +156,7 @@ describe Postzord::Dispatch do end context "local luke" do before do - @comment = @local_luke.build_comment "yo", :on => @post + @comment = @local_luke.build_comment :text => "yo", :on => @post @comment.save @mailman = Postzord::Dispatch.new(@local_luke, @comment) end @@ -182,7 +182,7 @@ describe Postzord::Dispatch do context "remote raphael's post is commented on by local luke" do before do @post = Factory(:status_message, :author => @remote_raphael) - @comment = @local_luke.build_comment "yo", :on => @post + @comment = @local_luke.build_comment :text => "yo", :on => @post @comment.save @mailman = Postzord::Dispatch.new(@local_luke, @comment) end diff --git a/spec/models/comment_spec.rb b/spec/models/comment_spec.rb index f844c2ab77e8bbf60cb8a3b9cce39c72859eec45..8f0a10c12e3b97ab0e4122d1bd8f3380ee0f860d 100644 --- a/spec/models/comment_spec.rb +++ b/spec/models/comment_spec.rb @@ -104,7 +104,7 @@ describe Comment do mock_http.should_receive(:get).with(/\/feeds\/api\/videos/, nil).twice.and_return( [nil, 'Foobar <title>'+expected_title+'</title> hallo welt <asd><dasdd><a>dsd</a>']) - comment = alice.build_comment url, :on => @message + comment = alice.build_comment :text => url, :on => @message comment.save! Comment.find(comment.id).youtube_titles.should == { first_video_id => CGI::escape(expected_title), second_video_id => CGI::escape(expected_title) } @@ -118,7 +118,7 @@ describe Comment do @local_parent = @local_luke.post :status_message, :text => "hi", :to => @local_luke.aspects.first @object_by_parent_author = @local_luke.comment("yo", :on => @local_parent) - @object_by_recipient = @local_leia.build_comment("yo", :on => @local_parent) + @object_by_recipient = @local_leia.build_comment(:text => "yo", :on => @local_parent) @dup_object_by_parent_author = @object_by_parent_author.dup @object_on_remote_parent = @local_luke.comment("Yeah, it was great", :on => @remote_parent) diff --git a/spec/models/like_spec.rb b/spec/models/like_spec.rb index 2bb4728f1b96eb99761705565f11da3900a777a0..f3b9859b8b124de0d3730c9b1cf860a0cc0c2510 100644 --- a/spec/models/like_spec.rb +++ b/spec/models/like_spec.rb @@ -91,7 +91,7 @@ describe Like do @local_parent = @local_luke.post :status_message, :text => "foobar", :to => @local_luke.aspects.first @object_by_parent_author = @local_luke.like(1, :on => @local_parent) - @object_by_recipient = @local_leia.build_like(1, :on => @local_parent) + @object_by_recipient = @local_leia.build_like(:positive => 1, :on => @local_parent) @dup_object_by_parent_author = @object_by_parent_author.dup @object_on_remote_parent = @local_luke.like(0, :on => @remote_parent) diff --git a/spec/support/user_methods.rb b/spec/support/user_methods.rb index 6e43704b3b0ae64676fe8d20d1f50431aab5096a..e65e7f92380215c8ed7d3fefcac3a991f75971a0 100644 --- a/spec/support/user_methods.rb +++ b/spec/support/user_methods.rb @@ -27,7 +27,7 @@ class User def comment(text, options = {}) fantasy_resque do - c = build_comment(text, options) + c = build_comment(options.merge(:text => text)) if c.save! Postzord::Dispatch.new(self, c).post end @@ -37,7 +37,7 @@ class User def like(positive, options ={}) fantasy_resque do - l = build_like(positive, options) + l = build_like(options.merge(:positive => positive)) if l.save! Postzord::Dispatch.new(self, l).post end