diff --git a/Gemfile b/Gemfile index 00255c0b26249f9f2fa198742769d77582eb64bb..2efbc6983b88b0269f6da563b2a4e127488bd868 100644 --- a/Gemfile +++ b/Gemfile @@ -71,7 +71,7 @@ gem 'ruby-oembed' gem 'resque', '1.10.0' gem 'resque-ensure-connected' gem 'resque-timeout', '1.0.0' -gem 'SystemTimer', '1.2.1', :platforms => :ruby_18 +gem 'SystemTimer', '1.2.3', :platforms => :ruby_18 # reporting diff --git a/Gemfile.lock b/Gemfile.lock index c84aceccb24127c08bef1f39a8e76fc4df70826e..fd73dbd54564ccee923769f61f0f573cb235c56b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -54,7 +54,7 @@ GEM Platform (>= 0.4.0) open4 Platform (0.4.0) - SystemTimer (1.2.1) + SystemTimer (1.2.3) abstract (1.0.0) actionmailer (3.0.10) actionpack (= 3.0.10) @@ -470,7 +470,7 @@ PLATFORMS ruby DEPENDENCIES - SystemTimer (= 1.2.1) + SystemTimer (= 1.2.3) activerecord-import acts-as-taggable-on! addressable (= 2.2.4) diff --git a/app/controllers/photos_controller.rb b/app/controllers/photos_controller.rb index 40af7af5976163213221b0afff87c27287f64b1b..309fe888a264021cd61f8aad1d6802a78d4f4fde 100644 --- a/app/controllers/photos_controller.rb +++ b/app/controllers/photos_controller.rb @@ -144,13 +144,15 @@ class PhotosController < ApplicationController if user_signed_in? @photo = current_user.find_visible_shareable_by_id(Photo, params[:id]) else - @photo = Photo.where(id => params[:id], :public => true) + @photo = Photo.where(:id => params[:id], :public => true).first end if @photo respond_with @photo - else + elsif user_signed_in? redirect_to :back + else + redirect_to new_user_session_path end end diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 24176a87aa3df501c9f211682dd24e6071716d80..7d83325a440ad5f5ca6b08ee3745a2ea0c206d40 100644 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -43,10 +43,9 @@ - unless @landing_page = include_javascripts :main - -if current_user - :javascript - Diaspora.I18n.loadLocale(#{get_javascript_strings_for(current_user.language).to_json}, "#{current_user.language}"); - Diaspora.Page = "#{params[:controller].camelcase}#{params[:action].camelcase}"; + :javascript + Diaspora.I18n.loadLocale(#{get_javascript_strings_for(I18n.locale).to_json}, "#{I18n.locale}"); + Diaspora.Page = "#{params[:controller].camelcase}#{params[:action].camelcase}"; - if current_user = include_javascripts :flash_socket #unless modern_browser? = javascript_include_tag 'web-socket-receiver' diff --git a/app/views/shared/_publisher.html.haml b/app/views/shared/_publisher.html.haml index 35f1e63f4690ebd1a314ed0b16ed4b1e5a2c862b..f3e6065b0c0944b823d41e8f7f500cfa40b6a988 100644 --- a/app/views/shared/_publisher.html.haml +++ b/app/views/shared/_publisher.html.haml @@ -31,8 +31,12 @@ #publisher_textarea_wrapper = link_to( image_tag('deletelabel.png'), "#", :id => "hide_publisher", :title => t('.discard_post')) %ul#photodropzone - = status.text_area :fake_text, :rows => 2, :value => h(publisher_formatted_text), :tabindex => 1, :placeholder => t('.whats_on_your_mind'), - :title => "#{popover_with_close_html("1. #{t('shared.public_explain.share')}")}", 'data-content' => t('shared.public_explain.new_user_welcome_message') + - if current_user.getting_started? + = status.text_area :fake_text, :rows => 2, :value => h(publisher_formatted_text), :tabindex => 1, :placeholder => t('.whats_on_your_mind'), + :title => popover_with_close_html( '1. ' + t('shared.public_explain.share') ), + 'data-content' => t('shared.public_explain.new_user_welcome_message') + - else + = status.text_area :fake_text, :rows => 2, :value => h(publisher_formatted_text), :tabindex => 1, :placeholder => t('.whats_on_your_mind') = status.hidden_field :text, :value => h(publisher_hidden_text), :class => 'clear_on_submit' #file-upload{:title => t('.upload_photos')} @@ -54,7 +58,7 @@ = image_tag "social_media_logos/#{service.provider}-16x16.png", :title => service.provider.titleize, :class => "service_icon dim", :id =>"#{service.provider}", :maxchar => "#{service.class::MAX_CHARACTERS}" = link_to (image_tag "icons/monotone_wrench_settings.png"), "#question_mark_pane", :class => 'question_mark', :rel => 'facebox', :title => t('shared.public_explain.manage') - .dropdown{:class => "hang_right", :title => popover_with_close_html("2. #{t('shared.public_explain.control_your_audience')}"), 'data-content'=> t('shared.public_explain.visibility_dropdown')} + .dropdown{ ! current_user.getting_started? ? {:class => "hang_right"} : { :class => "hang_right", :title => popover_with_close_html("2. #{t('shared.public_explain.control_your_audience')}"), 'data-content'=> t('shared.public_explain.visibility_dropdown')} } .button.toggle.publisher - if publisher_public = t('public') @@ -69,7 +73,7 @@ .wrapper %ul.dropdown_list{:unSelectable => 'on', 'data-person_id' => (person.id if defined?(person) && person), 'data-service_uid' => (service_uid if defined?(service_uid))} %li.public.radio{"data-aspect_id" => "public", :class => ("selected" if publisher_public)} - Public + = t('public') %li.divider.all_aspects.radio{:style => "border-bottom: 1px solid #ddd;", "data-aspect_id" => "all_aspects", :class => ("selected" if (!publisher_public && all_aspects_selected?(selected_aspects)))} = t('all_aspects') diff --git a/app/views/shared/_right_sections.html.haml b/app/views/shared/_right_sections.html.haml index 8a13aaa16283780d5d7fbdb64f9cd0f672b3b24d..f298ab84705a28132810dbb4158f5efe70b54fb9 100644 --- a/app/views/shared/_right_sections.html.haml +++ b/app/views/shared/_right_sections.html.haml @@ -27,7 +27,7 @@ %h5 = t('aspects.index.new_here.title') .content - != t('aspects.index.new_here.follow', :link => link_to("#"+t('shared.publisher.new_user_prefill.newhere'), tag_path(:name => "NewHere"))) + != t('aspects.index.new_here.follow', :link => link_to("#"+t('shared.publisher.new_user_prefill.newhere'), tag_path(:name => t('shared.publisher.new_user_prefill.newhere')))) %br = link_to(t('aspects.index.new_here.learn_more'), "https://github.com/diaspora/diaspora/wiki/Welcoming-Committee") diff --git a/config/initializers/mailer_config.rb b/config/initializers/mailer_config.rb index c22d3815df4b18354b385f3731e0e9204f9932eb..4e98dcbbfc3bdb57ac69b8ce1a8fead66791fa1a 100644 --- a/config/initializers/mailer_config.rb +++ b/config/initializers/mailer_config.rb @@ -4,7 +4,8 @@ require File.join(Rails.root, 'lib/messagebus/mailer') Diaspora::Application.configure do - config.action_mailer.default_url_options = {:host => AppConfig[:pod_uri].authority } + config.action_mailer.default_url_options = {:protocol => AppConfig[:pod_uri].scheme, + :host => AppConfig[:pod_uri].authority } unless Rails.env == 'test' || AppConfig[:mailer_on] != true if AppConfig[:mailer_method] == 'messagebus' diff --git a/config/locales/devise/devise.da.yml b/config/locales/devise/devise.da.yml index 215ec6c0ce337be1b8efdb66ed9aef5332998ee9..3f91b83e3f4fa9897c6de6e023a79a8f9e0a6f72 100644 --- a/config/locales/devise/devise.da.yml +++ b/config/locales/devise/devise.da.yml @@ -30,33 +30,33 @@ da: hello: "Hej %{email}!" invitation_instructions: accept: "Accepter invitation" - arrived: "The social network you have been waiting for has arrived. Revamped, more secure, and more fun, %{strong_diaspora} is ready to help you share and explore the web in a whole new way." - be_yourself: "Be Yourself" - be_yourself_paragraph: "The Internet has created unique new ways for us to express ourselves. %{strong_diaspora} lets you be yourself and share however you want, with or without your real name." + arrived: "Det sociale netværk du har ventet pÃ¥, er kommet. Ombygget, sikrere og sjovere, er %{strong_diaspora} klar til at hjælpe dig med at dele og udforske web pÃ¥ en helt ny mÃ¥de." + be_yourself: "Vær dig selv" + be_yourself_paragraph: "Internettet har skabt nye unikke mÃ¥der vi kan udtrykke os pÃ¥. %{strong_diaspora} lader dig være dig selv og dele som du ønsker det, med eller uden dit rigtige navn." cubbies: Cubbi.es - displaying_correctly: "Email not displaying correctly? %{link} in your browser" + displaying_correctly: "Ser e-mailen forkert ud? %{link} i din browser" email_address: questions@joindiaspora.com - email_us: "For general inquiries or support with your Diaspora account, please email us at %{email}." - finally: "Finally - it's here" - friends_saying: "What your friends are saying..." - get_connected: "Get Connected" - get_connected_paragraph: "An international movement with a shared vision for a better web, %{strong_diaspora}'s #1 feature is its community. Meet new people, connect with friends, and join the fun." - have_fun: "Have Fun" - have_fun_paragraph: "%{strong_diaspora} is all about discovering amazing new content and people online. %{link}, the world's first %{strong_diaspora} application is just the begining. Collect and share the web in all of its glory." - help_fund: "help fund Diaspora" - here: "here" + email_us: "For generelle spørgsmÃ¥l eller hjælp med din Diaspora-konto, send venligst en email til os pÃ¥ %{email}." + finally: "Endelig er det her" + friends_saying: "Hvad dine venner siger..." + get_connected: "Kobl dig pÃ¥" + get_connected_paragraph: "Som en international bevægelse med en fælles vision for et bedre web, er %{strong_diaspora}'s vigtigste funktion brugerne. Mød nye mennesker, del med vennerne og hav det sjovt med alle andre." + have_fun: "Hav det sjovt" + have_fun_paragraph: "%{strong_diaspora} handler om at opdage nyt fantastisk indhold og nye mennesker online. %{link}, verdens første %{strong_diaspora} program er kun begyndelsen. Saml og del med hele det utrolige web." + help_fund: "støt Diaspora økonomisk" + here: "her" ignore: "Hvis du ikke vil acceptere invitationen skal du blot ignorere denne mail." - join_team: "Join our Team" - love: "Love," - made_by_people: "%{strong_diaspora} is made by people who love the Internet as much as you do. %{jointeam}, or %{helpfund}!" - more_people: "Even more people are excited to see you!" + join_team: "Kom med pÃ¥ holdet" + love: "Kærlig hilsen," + made_by_people: "%{strong_diaspora} er skabt af folk der elsker internettet lige sÃ¥ meget som du gør. %{jointeam}, eller %{helpfund}!" + more_people: "Endnu flere vil gerne møde dig!" no_account_till: "Din konto vil ikke blive oprettet før du har klikket ind pÃ¥ ovenstÃ¥ende link, og skriver dig op." - or: "or" - sign_up_now: "Sign up now →" + or: "eller" + sign_up_now: "Tilmeld dig nu →" subject: "Du er blevet inviteret til at bruge Diaspora!" team_diaspora: "Team Diaspora" - unsubscribe: "To unsubscribe please click %{link}." - view_in: "View in" + unsubscribe: "Hvis du gerne vil holde op med at fÃ¥ e-mails som denne, klik %{link}." + view_in: "Se i" inviter: accept_at: "pÃ¥ %{url}, du kan acceptere ved at følge linket nedenunder." has_invited_you: "%{name}" diff --git a/config/locales/devise/devise.fr.yml b/config/locales/devise/devise.fr.yml index 7e3e532961081f39075b38a69a2d36ec9f32e75f..a6c2e2fdf1615d7c979dd632f3ec05e29851d4d4 100644 --- a/config/locales/devise/devise.fr.yml +++ b/config/locales/devise/devise.fr.yml @@ -30,33 +30,33 @@ fr: hello: "Bonjour %{email} !" invitation_instructions: accept: "Accepter l'invitation" - arrived: "The social network you have been waiting for has arrived. Revamped, more secure, and more fun, %{strong_diaspora} is ready to help you share and explore the web in a whole new way." - be_yourself: "Be Yourself" - be_yourself_paragraph: "The Internet has created unique new ways for us to express ourselves. %{strong_diaspora} lets you be yourself and share however you want, with or without your real name." + arrived: "Le réseau social que vous avez tant attendu est arrivé. Redessiné, plus sûr et plus fun, {strong_diaspora} est prêt à vous aider pour partager et explorer le web d'une toute nouvelle manière." + be_yourself: "Soyez vous-même" + be_yourself_paragraph: "L'Internet a créé de nouvelles façons uniques pour nous de nous exprimer. %{strong_diaspora} vous permet d'être vous-même et de partager comme vous le voulez, avec ou sans votre vrai nom." cubbies: Cubbi.es - displaying_correctly: "Email not displaying correctly? %{link} in your browser" + displaying_correctly: "Ce courriel ne s'affiche pas correctement ? %{link} dans votre navigateur" email_address: questions@joindiaspora.com - email_us: "For general inquiries or support with your Diaspora account, please email us at %{email}." - finally: "Finally - it's here" - friends_saying: "What your friends are saying..." - get_connected: "Get Connected" - get_connected_paragraph: "An international movement with a shared vision for a better web, %{strong_diaspora}'s #1 feature is its community. Meet new people, connect with friends, and join the fun." - have_fun: "Have Fun" - have_fun_paragraph: "%{strong_diaspora} is all about discovering amazing new content and people online. %{link}, the world's first %{strong_diaspora} application is just the begining. Collect and share the web in all of its glory." - help_fund: "help fund Diaspora" - here: "here" + email_us: "Pour des renseignements généraux ou de l'aide sur votre compte Diaspora, merci de nous envoyer un courriel à %{email}." + finally: "Enfin - c'est ici" + friends_saying: "Ce que disent vos amis..." + get_connected: "Soyez Connecté" + get_connected_paragraph: "Un mouvement international avec une vision partagée pour un meilleur web, la première caractéristique de %{strong_diaspora} est sa communauté. Rencontrez de nouvelles personnes, connectez-vous avec vos amis, et amusez-vous." + have_fun: "Prenez plaisir" + have_fun_paragraph: "%{strong_diaspora} est tout un projet étonnant permettant de découvrir de nouveaux contenus et des gens en ligne. %{link}, la première application %{strong_diaspora}, et c'est juste le commencement. Recueillir et partager sur le Web dans toute sa gloire." + help_fund: "aider à financer Diaspora" + here: "ici" ignore: "Si vous ne voulez pas accepter l'invitation, merci d'ignorer ce courriel." - join_team: "Join our Team" - love: "Love," - made_by_people: "%{strong_diaspora} is made by people who love the Internet as much as you do. %{jointeam}, or %{helpfund}!" - more_people: "Even more people are excited to see you!" + join_team: "Rejoignez notre Équipe" + love: "Cordialement," + made_by_people: "%{strong_diaspora} est fait par des gens qui aiment l'Internet autant que vous. %{jointeam}, ou %{helpfund} !" + more_people: "Encore plus de gens sont ravis de vous voir !" no_account_till: "Votre compte ne sera créé que lorsque vous irez sur le lien ci-dessus et que vous vous inscrirez." - or: "or" - sign_up_now: "Sign up now →" + or: "ou" + sign_up_now: "Inscrivez-vous →" subject: "Vous avez été invité à rejoindre Diaspora!" - team_diaspora: "Team Diaspora" - unsubscribe: "To unsubscribe please click %{link}." - view_in: "View in" + team_diaspora: "L'Équipe Diaspora" + unsubscribe: "Pour vous désinscrir, merci de cliquer %{link}." + view_in: "Afficher dans" inviter: accept_at: "à %{url}, vous pouvez l'accepter à travers le lien ci-dessous." has_invited_you: "%{name}" diff --git a/config/locales/devise/devise.ko.yml b/config/locales/devise/devise.ko.yml index 3a0c7c8cffb2627565ba7ea57d3ad201634fe62c..26a9042866659a0e075532fd5b1b5ed0c5fc2fe8 100644 --- a/config/locales/devise/devise.ko.yml +++ b/config/locales/devise/devise.ko.yml @@ -30,32 +30,32 @@ ko: hello: "%{email} 님 환ì˜í•©ë‹ˆë‹¤!" invitation_instructions: accept: "초대 수ë½í•˜ê¸°" - arrived: "The social network you have been waiting for has arrived. Revamped, more secure, and more fun, %{strong_diaspora} is ready to help you share and explore the web in a whole new way." - be_yourself: "Be Yourself" - be_yourself_paragraph: "The Internet has created unique new ways for us to express ourselves. %{strong_diaspora} lets you be yourself and share however you want, with or without your real name." + arrived: "ë‚´ê°€ ê¸°ë‹¤ë¦¬ë˜ ì†Œì…œ 네트워í¬! ë” ìž¬ë¯¸ìžˆê³ , ë” ì•ˆì „í•˜ê³ , ë” ë‚˜ì•„ì§„ %{strong_diaspora}는 ë‚´ê°€ ì™„ì „ížˆ 새로운 방법으로 ì›¹ì„ ê³µìœ í•˜ê³ íƒí—˜í• 수 있ë„ë¡ ë„울 준비가 ë˜ì—ˆìŠµë‹ˆë‹¤." + be_yourself: "나를 나답게" + be_yourself_paragraph: "ì¸í„°ë„·ì´ 우리 스스로를 표현하기 위한 ë…íŠ¹í•˜ê³ ìƒˆë¡œìš´ 여러 ë°©ë²•ì„ ë§Œë“¤ì—ˆìŠµë‹ˆë‹¤. %{strong_diaspora}는 ë‚´ê°€ ë‚˜ì¼ ìˆ˜ 있게 í•˜ê³ , ì›í•˜ëŠ” 사람들과만 ê³µìœ í• ìˆ˜ 있게 하며, 실명과 ìµëª…ì„ ê°€ë¦¬ì§€ 않습니다." cubbies: Cubbi.es - displaying_correctly: "Email not displaying correctly? %{link} in your browser" + displaying_correctly: "ì´ë©”ì¼ì´ 틀리게 표시ë˜ë©´ 브ë¼ìš°ì €ì—ì„œ %{link}를 í´ë¦í•˜ì‹ì‹œì˜¤." email_address: questions@joindiaspora.com - email_us: "For general inquiries or support with your Diaspora account, please email us at %{email}." - finally: "Finally - it's here" - friends_saying: "What your friends are saying..." - get_connected: "Get Connected" - get_connected_paragraph: "An international movement with a shared vision for a better web, %{strong_diaspora}'s #1 feature is its community. Meet new people, connect with friends, and join the fun." - have_fun: "Have Fun" - have_fun_paragraph: "%{strong_diaspora} is all about discovering amazing new content and people online. %{link}, the world's first %{strong_diaspora} application is just the begining. Collect and share the web in all of its glory." - help_fund: "help fund Diaspora" - here: "here" + email_us: "ë‚´ 디아스í¬ë¼ ê³„ì •ì— ëŒ€í•œ 문ì˜ëŠ” %{email} ì— ì´ë©”ì¼ë¡œ 보내주ì‹ì‹œì˜¤." + finally: 마침내! + friends_saying: "ë‚´ ì¹œêµ¬ë“¤ì˜ ë§" + get_connected: "ë™ì°¸í•˜ì„¸ìš”" + get_connected_paragraph: "ë” ë‚˜ì€ ì›¹ì´ë¼ëŠ” ê°™ì€ ë¹„ì „ì„ ê°€ì§„ 세계ì ìš´ë™ì¸ %{strong_diaspora}ì˜ ê°€ìž¥ í° íŠ¹ì§•ì€ ì»¤ë®¤ë‹ˆí‹°ìž…ë‹ˆë‹¤. 새 ì‚¬ëžŒë“¤ì„ ë§Œë‚˜ê³ , 친구들과 ì—°ê²°í•˜ê³ , ì¦ê±°ì›€ì— ë™ì°¸í•˜ì‹ì‹œì˜¤." + have_fun: "ì¦ê¸°ì„¸ìš”" + have_fun_paragraph: "%{strong_diaspora}는 온ë¼ì¸ì—ì„œ 놀ë¼ìš´ 새 컨í…ì¸ ì™€ ì‚¬ëžŒë“¤ì„ ì°¾ëŠ” 방법입니다. 세계 ìµœì´ˆì˜ %{strong_diaspora} ì• í”Œë¦¬ì¼€ì´ì…˜ì¸ %{link}는 ì‹œìž‘ì¼ ë¿ìž…니다. ì´ë¥¼ 누리며 ì›¹ì„ ëª¨ìœ¼ê³ ê³µìœ í•˜ì‹ì‹œì˜¤." + help_fund: "기금 ë§ˆë ¨" + here: "여기" ignore: "초대를 수ë½í•˜ì§€ ì•Šìœ¼ë ¤ë©´ ì´ ë©”ì¼ì„ 무시하세요." - join_team: "Join our Team" + join_team: "íŒ€ì— í•©ë¥˜" love: "Love," - made_by_people: "%{strong_diaspora} is made by people who love the Internet as much as you do. %{jointeam}, or %{helpfund}!" - more_people: "Even more people are excited to see you!" + made_by_people: "%{strong_diaspora}는 ë‚´ê°€ ê·¸ë ‡ë“¯ ì¸í„°ë„·ì„ 사랑하는 ì‚¬ëžŒë“¤ì´ ë§Œë“¤ì—ˆìŠµë‹ˆë‹¤. %{jointeam}하거나 %{helpfund}ì„ ë„와주세요!\n" + more_people: "ë” ë§Žì€ ì‚¬ëžŒë“¤ì´ ë‚˜ë¥¼ ê¸°ëŒ€í•˜ê³ ìžˆìŠµë‹ˆë‹¤!" no_account_till: "ê³„ì •ì€ ê°€ìž…í•˜ì§€ 않는 í•œ 만들어지지 않습니다." - or: "or" - sign_up_now: "Sign up now →" + or: "ë˜ëŠ”" + sign_up_now: "바로 가입하세요 →" subject: "디아스í¬ë¼ë¡œ 초대합니다!" - team_diaspora: "Team Diaspora" - unsubscribe: "To unsubscribe please click %{link}." + team_diaspora: "디아스í¬ë¼ 팀" + unsubscribe: "앞으로 ë°›ê³ ì‹¶ì§€ 않다면 %{link}를 í´ë¦í•˜ì‹ì‹œì˜¤." view_in: "View in" inviter: accept_at: "%{URL}ì—ì„œ, ì•„ëž˜ì˜ ë§í¬ë¥¼ 통해 확ì¸í• 수 있습니다." diff --git a/config/locales/devise/devise.ru.yml b/config/locales/devise/devise.ru.yml index 664e60d01277dd8d4eff60b817f6aa763e4451f1..583d91606fb5dadfffb7216c232ff99335c0cd47 100644 --- a/config/locales/devise/devise.ru.yml +++ b/config/locales/devise/devise.ru.yml @@ -9,7 +9,7 @@ ru: confirmed: "Ваш аккаунт подтверждён. Добро пожаловать." new: resend_confirmation: "Ð’Ñ‹Ñлать повторно инÑтрукции по подтверждению" - send_instructions: "Ð’Ñ‹ получите пиÑьмо Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñми по подтверждению учётной запиÑи в течение неÑкольких минут." + send_instructions: "Ð’Ñ‹ получите пиÑьмо Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñми по подтверждению аккаунта в течение неÑкольких минут." failure: inactive: "Ваш аккаунт ещё не активирован." invalid: "Ðеверный email или пароль." @@ -19,18 +19,18 @@ ru: unauthenticated: "Ð’Ñ‹ должны войти или зарегиÑтрироватьÑÑ, прежде чем продолжить." unconfirmed: "Вам необходимо подтвердить ваш аккаунт, прежде чем продолжить." invitations: - invitation_token_invalid: "Введённый вами код Ð¿Ñ€Ð¸Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ Ð½Ðµ дейÑтвителен!" + invitation_token_invalid: "Введённый вами код Ð¿Ñ€Ð¸Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ Ð½ÐµÐ´ÐµÐ¹Ñтвителен!" send_instructions: "Ваше приглашение отправлено." updated: "Пароль уÑтановлен. Добро пожаловать." mailer: confirmation_instructions: confirm: "Подтвердить мой аккаунт" subject: "ИнÑтрукции по подтверждению" - you_can_confirm: "Ð’Ñ‹ можете подтвердить ваш аккаунт Ð¿ÐµÑ€ÐµÐ¹Ð´Ñ Ð¿Ð¾ ÑÑылке:" + you_can_confirm: "Ð’Ñ‹ можете подтвердить ваш аккаунт, Ð¿ÐµÑ€ÐµÐ¹Ð´Ñ Ð¿Ð¾ ÑÑылке:" hello: "Привет %{email}!" invitation_instructions: accept: "ПринÑÑ‚ÑŒ приглашение" - arrived: "Ð¡Ð¾Ñ†Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ Ñеть, которую вы так долго ждали, наконец, поÑвилаÑÑŒ. ОбновленнаÑ, более Ð·Ð°Ñ‰Ð¸Ñ‰ÐµÐ½Ð½Ð°Ñ Ð¸ более дружелюбнаÑ, %{strong_diaspora} готова помочь вам делитьÑÑ Ð¸ иÑÑледовать Сеть по-новому." + arrived: "Ð¡Ð¾Ñ†Ð¸Ð°Ð»ÑŒÐ½Ð°Ñ Ñеть, которую вы так долго ждали, наконец поÑвилаÑÑŒ. ОбновленнаÑ, более Ð·Ð°Ñ‰Ð¸Ñ‰ÐµÐ½Ð½Ð°Ñ Ð¸ более дружелюбнаÑ, %{strong_diaspora} готова помочь вам делитьÑÑ Ð¸ иÑÑледовать Сеть по-новому." be_yourself: "Будьте Ñобой" be_yourself_paragraph: "Интернет дал нам множеÑтво уникальных ÑпоÑобов ÑамовыражениÑ. %{strong_diaspora} позволÑет вам быть Ñобой и делитьÑÑ Ñ‡ÐµÐ¼ угодно, как под наÑтоÑщим именем, так и под пÑевдонимом." cubbies: Cubbi.es @@ -45,34 +45,34 @@ ru: have_fun_paragraph: "ОÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð·Ð°Ð´Ð°Ñ‡Ð° %{strong_diaspora} — помочь вам находить новую качеÑтвенную информацию и интереÑных людей. %{link}, первое в мире приложение Ð´Ð»Ñ %{strong_diaspora}, Ñто только начало. Собирайте и делитеÑÑŒ Ñвоими лучшими находками в Ñети." help_fund: "помогите финанÑировать ДиаÑпору" here: "Ñюда" - ignore: "ЕÑли вы не хотите принимать приглашение, проигнорируйте." + ignore: "ЕÑли вы не хотите принимать приглашение, проигнорируйте Ñто пиÑьмо." join_team: "ПриÑоединÑйтеÑÑŒ к нам" love: "С любовью," - made_by_people: "%{strong_diaspora} ÑоздаетÑÑ Ð»ÑŽÐ´ÑŒÐ¼Ð¸, которые любÑÑ‚ Интернет так же, как и вы. %{jointeam} или %{helpfund}!" - more_people: "Даже больше людей рады видеть ваÑ!" - no_account_till: "Ваш аккаунт не будет Ñоздан, пока вы не зарегиÑтрировалиÑÑŒ." + made_by_people: "%{strong_diaspora} ÑоздаетÑÑ Ð»ÑŽÐ´ÑŒÐ¼Ð¸, которые любÑÑ‚ интернет так же, как и вы. %{jointeam} или %{helpfund}!" + more_people: "Еще больше людей рады видеть ваÑ!" + no_account_till: "Ваш аккаунт не будет Ñоздан, пока вы не перейдете по ÑÑылке выше." or: "или" sign_up_now: "ЗарегиÑтрируйтеÑÑŒ ÑÐµÐ¹Ñ‡Ð°Ñ →" - subject: "Ð’Ñ‹ приглашены приÑоединитьÑÑ Ðº диаÑпоре!" + subject: "Ð’Ñ‹ приглашены приÑоединитьÑÑ Ðº ДиаÑпоре!" team_diaspora: "Команда ДиаÑпоры" unsubscribe: "Чтобы отпиÑатьÑÑ, нажмите %{link}." view_in: "Открыть в" inviter: accept_at: "в %{url}, вы можете принÑÑ‚ÑŒ его по ÑÑылке ниже." has_invited_you: "%{name}" - have_invited_you: "%{names} приглаÑил[а,и] Ð²Ð°Ñ Ð¿Ñ€Ð¸ÑоединитьÑÑ Ðº диаÑпоре" + have_invited_you: "%{names} приглашает Ð²Ð°Ñ Ð¿Ñ€Ð¸ÑоединитьÑÑ Ðº ДиаÑпоре" reset_password_instructions: change: "Изменить пароль" ignore: "ЕÑли вы не Ñовершали запроÑ, проигнорируйте Ñто пиÑьмо." - someone_requested: "Кто то Ñоздал Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñмены вашего паролÑ, и вы можете Ñделать Ñто Ð¿ÐµÑ€ÐµÐ¹Ð´Ñ Ð¿Ð¾ ÑÑылке ниже." + someone_requested: "Кто-то Ñоздал Ð·Ð°Ð¿Ñ€Ð¾Ñ Ñмены вашего Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð¸ вы можете Ñделать Ñто, Ð¿ÐµÑ€ÐµÐ¹Ð´Ñ Ð¿Ð¾ ÑÑылке ниже." subject: "ИнÑтрукции по ÑброÑу паролÑ" - wont_change: "Ваш пароль не изменитÑÑ, пока вы не перейдёте по ÑÑылке и не Ñоздадите новый." + wont_change: "Ваш пароль не изменитÑÑ, пока вы не перейдёте по ÑÑылке выше и не Ñоздадите новый пароль." unlock_instructions: - account_locked: "Ваш аккаунт из-за чрезмерного количеÑтва неудачных попыток входа заблокирован." + account_locked: "Ваш аккаунт заблокирован из-за чрезмерного количеÑтва неудачных попыток входа." click_to_unlock: "ИÑпользуйте ÑÑылку, чтобы разблокировать аккаунт:" subject: "ИнÑтрукции по разблокированию" unlock: "Разблокировать мой аккаунт" - welcome: "Добро пожаловать %{email}!" + welcome: "Добро пожаловать, %{email}!" passwords: edit: change_password: "Изменить пароль" @@ -89,8 +89,8 @@ ru: sessions: new: alpha_software: "Ð’Ñ‹ ÑобираетеÑÑŒ иÑпользовать альфа верÑию программного обеÑпечениÑ." - bugs_and_feedback: "Имейте в виду, вы будете ÑталкиватьÑÑ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°Ð¼Ð¸. Мы рекомендуем вам иÑпользовать кнопку ÐžÐ±Ñ€Ð°Ñ‚Ð½Ð°Ñ ÑвÑзь Ñ Ð¿Ñ€Ð°Ð²Ð¾Ð¹ Ñтороны браузера! Мы будем решать ошибки так быÑтро, как Ñможем." - bugs_and_feedback_mobile: "Будьте готовый ÑтолкнутьÑÑ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°Ð¼Ð¸. О которых мы проÑим Ð²Ð°Ñ Ñообщать незамедлительно! Мы поÑтараемÑÑ Ñ€ÐµÑˆÐ¸Ñ‚ÑŒ вашу проблему в кротчайшие Ñроки." + bugs_and_feedback: "Имейте в виду, вы будете ÑталкиватьÑÑ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°Ð¼Ð¸. Мы рекомендуем вам иÑпользовать кнопку ÐžÐ±Ñ€Ð°Ñ‚Ð½Ð°Ñ ÑвÑзь Ñ Ð¿Ñ€Ð°Ð²Ð¾Ð¹ Ñтороны браузера! Мы будем иÑправлÑÑ‚ÑŒ ошибки так быÑтро, как Ñможем." + bugs_and_feedback_mobile: "Будьте готовы ÑтолкнутьÑÑ Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°Ð¼Ð¸. Мы проÑим Ð²Ð°Ñ Ñообщать о любых мелочах! Мы поÑтараемÑÑ Ð¸ÑправлÑÑ‚ÑŒ ошибки в кратчайшие Ñроки." login: "Логин" modern_browsers: "поддерживает только Ñовременные браузеры." password: "Пароль" @@ -106,14 +106,14 @@ ru: receive_unlock: "Ðе получили инÑтрукции по разблокированию?" sign_in: "Войти" sign_up: "РегиÑтрациÑ" - sign_up_closed: "РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° данный момент не доÑтупна." + sign_up_closed: "РегиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° данный момент недоÑтупна." mail_signup_form: sign_up_for_an_invite: "ЗарегиÑтрируйтеÑÑŒ Ð´Ð»Ñ Ð¿Ñ€Ð¸Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ!" unlocks: new: resend_unlock: "Отправить инÑтрукции по разблокированию повторно" - send_instructions: "Ð’Ñ‹ получите email Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñми по разблокированию учётной запиÑи в течение неÑкольких минут." - unlocked: "Ваш аккаунт разблокированна. С возвращением." + send_instructions: "Ð’Ñ‹ получите email Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñми по разблокированию аккаунта в течение неÑкольких минут." + unlocked: "Ваш аккаунт разблокирован." errors: messages: already_confirmed: "уже подтверждено" diff --git a/config/locales/devise/devise.sk.yml b/config/locales/devise/devise.sk.yml index ebc3a4e5de6ebfa7b6827f529f1bc13a534ccf75..5060ccfe1322bf67edcf4ba153657602013a22f4 100644 --- a/config/locales/devise/devise.sk.yml +++ b/config/locales/devise/devise.sk.yml @@ -31,32 +31,32 @@ sk: invitation_instructions: accept: "PrijaÅ¥ pozvanie" arrived: "The social network you have been waiting for has arrived. Revamped, more secure, and more fun, %{strong_diaspora} is ready to help you share and explore the web in a whole new way." - be_yourself: "Be Yourself" + be_yourself: "BuÄte sami sebou" be_yourself_paragraph: "The Internet has created unique new ways for us to express ourselves. %{strong_diaspora} lets you be yourself and share however you want, with or without your real name." cubbies: Cubbi.es - displaying_correctly: "Email not displaying correctly? %{link} in your browser" + displaying_correctly: "Nezobrazuje sa e-mail správne? %{link} vo vaÅ¡om prehliadaÄi" email_address: questions@joindiaspora.com email_us: "For general inquiries or support with your Diaspora account, please email us at %{email}." - finally: "Finally - it's here" - friends_saying: "What your friends are saying..." - get_connected: "Get Connected" + finally: "Napokon – je to tu" + friends_saying: "ÄŒo hovoria vaÅ¡i priatelia..." + get_connected: "Pripojte sa" get_connected_paragraph: "An international movement with a shared vision for a better web, %{strong_diaspora}'s #1 feature is its community. Meet new people, connect with friends, and join the fun." - have_fun: "Have Fun" + have_fun: "Bavte sa" have_fun_paragraph: "%{strong_diaspora} is all about discovering amazing new content and people online. %{link}, the world's first %{strong_diaspora} application is just the begining. Collect and share the web in all of its glory." - help_fund: "help fund Diaspora" - here: "here" + help_fund: "pomôžte financovaÅ¥ Diasporu" + here: "sem" ignore: "Ak nechcete prijaÅ¥ toto pozvanie, ignorujte, prosÃm, tento e-mail." - join_team: "Join our Team" - love: "Love," + join_team: "Pripojte sa k nášmu tÃmu" + love: "S láskou" made_by_people: "%{strong_diaspora} is made by people who love the Internet as much as you do. %{jointeam}, or %{helpfund}!" more_people: "Even more people are excited to see you!" no_account_till: "Váš úÄet sa nevytvorÃ, kým nekliknete na odkaz vyÅ¡Å¡ie a nezaregistrujete sa." - or: "or" - sign_up_now: "Sign up now →" + or: "alebo" + sign_up_now: "Zaregistrujte sa teraz →" subject: "Pozvali vás na Diasporu!" - team_diaspora: "Team Diaspora" - unsubscribe: "To unsubscribe please click %{link}." - view_in: "View in" + team_diaspora: "TÃm Diaspory" + unsubscribe: "Ak už nechcete dostávaÅ¥ e-maily, kliknite %{link}." + view_in: "ZobraziÅ¥ v" inviter: accept_at: "KliknutÃm na odkaz na stránku %{url} ho môžete prijaÅ¥." has_invited_you: "%{name}" diff --git a/config/locales/diaspora/ar.yml b/config/locales/diaspora/ar.yml index 9453c0b17cf02400b2306a4369819905593e8379..382a46852986f85aabbaed9f686399d0316b38ef 100644 --- a/config/locales/diaspora/ar.yml +++ b/config/locales/diaspora/ar.yml @@ -750,6 +750,7 @@ ar: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "انشر رسالة إلى %{aspect}" posting: "يَنشÙر ..." publishing_to: "نشر إلى: " diff --git a/config/locales/diaspora/bg.yml b/config/locales/diaspora/bg.yml index 94fcba2c6f58c4eaf8278c4857359129374b822f..a6400bbf50a0257302990a4c4aa864635d982ff5 100644 --- a/config/locales/diaspora/bg.yml +++ b/config/locales/diaspora/bg.yml @@ -750,6 +750,7 @@ bg: hello: "Привет на вÑички, аз Ñъм #%{new_user_tag}." i_like: "ИнтереÑува ме %{tags}." invited_by: "Ð‘Ð»Ð°Ð³Ð¾Ð´Ð°Ñ€Ñ Ð·Ð° поканата, " + newhere: "ÐовТук" post_a_message_to: "Публикувайте публично Ñъобщение в %{aspect}" posting: Публикуване... publishing_to: "публикуване в: " @@ -799,7 +800,7 @@ bg: streams: aspects: title: "Вашите аÑпекти" - aspects_stream: "ÐÑпекти" + aspects_stream: "От вашите аÑпекти" commented_on: "коментирани" community_spotlight_stream: "От \"Ð’ центъра на вниманието\"" followed_tag: @@ -822,7 +823,7 @@ bg: recently: "наÑкоро:" tags: contacts_title: "Хора, които хареÑват марката" - tag_prefill_text: "The thing about %{tag_name} is... " + tag_prefill_text: "МиÑлÑ, че %{tag_name}..." title: "Публикации маркирани Ñ \"%{tags}\"" tag_followings: create: diff --git a/config/locales/diaspora/br.yml b/config/locales/diaspora/br.yml index 3943e007aaa4e493258540c379f405a7c3c4e2b8..713f53dc2087084c1758a7edd3b49a3680834e12 100644 --- a/config/locales/diaspora/br.yml +++ b/config/locales/diaspora/br.yml @@ -750,6 +750,7 @@ br: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Skrivañ ur c'hemennad da %{aspect}" posting: "Oc'h embann..." publishing_to: "publishing to: " diff --git a/config/locales/diaspora/cs.yml b/config/locales/diaspora/cs.yml index 97ffc7f81bbde55a73dcb49fa0c81d1db9d4edbe..3759fb417043c7d8dcc07bd6eca312211a3f5777 100644 --- a/config/locales/diaspora/cs.yml +++ b/config/locales/diaspora/cs.yml @@ -750,6 +750,7 @@ cs: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Poslat zprávu do %{aspect}" posting: OdesÃlánÃ... publishing_to: "publikovánà na:" diff --git a/config/locales/diaspora/cy.yml b/config/locales/diaspora/cy.yml index 87dab7ad8e98b15242181f12dfa57beb0afe1b5b..963e6683e08f2a7d960dd715893fa7de21ca2e31 100644 --- a/config/locales/diaspora/cy.yml +++ b/config/locales/diaspora/cy.yml @@ -420,7 +420,7 @@ cy: other: "%{actors} mentioned you in a deleted post." two: "%{actors} mentioned you in a deleted post." zero: "%{actors} mentioned you in a deleted post." - post: "post" + post: "bost" private_message: few: "Mae %{actors} wedi anfon neges iddych chi." many: "Mae %{actors} wedi anfon neges iddych chi." @@ -750,6 +750,7 @@ cy: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post neges i %{aspect}" posting: Posting... publishing_to: "publishing to: " @@ -800,7 +801,7 @@ cy: aspects: title: "Eich Agweddau" aspects_stream: "Aspects" - commented_on: "wedi sylwad ar" + commented_on: "wedi sylwad arno" community_spotlight_stream: "Community Spotlight" followed_tag: add_a_tag: "Ychwanegu tag" diff --git a/config/locales/diaspora/da.yml b/config/locales/diaspora/da.yml index f61c5a945176365e6d4396021fc06eaf2eb7dbbd..e4f93edec34e4e37f5a4b1911e007e8680c51828 100644 --- a/config/locales/diaspora/da.yml +++ b/config/locales/diaspora/da.yml @@ -78,7 +78,7 @@ da: edit: add_existing: "Tilføj en eksisterende kontakt " aspect_list_is_not_visible: "aspekt liste er gemt for andre i aspektet" - aspect_list_is_visible: "aspekt lise er synlig for andre i aspektet" + aspect_list_is_visible: "aspektliste er synlig for andre i aspektet" confirm_remove_aspect: "Er du sikker pÃ¥ du vil slette dette aspekt?" done: "Gennemført" make_aspect_list_visible: "gør kontakter i dette aspekt synlige for hinanden?" @@ -111,16 +111,16 @@ da: here_to_help: "Diaspora samfundet er her!" need_help: "Brug for hjælp?" satisfaction: "%{link}: Samfunds-drevet support" - tag_bug: "#bug" - tag_feature: "#feature" - tag_question: "#question" - tutorials_wiki_and_forum: "%{tutorial} & %{wiki} & %{forum}: Community-powered tutorials, how-to, and news" + tag_bug: "bug" + tag_feature: "feature" + tag_question: "question" + tutorials_wiki_and_forum: "%{tutorial} & %{wiki} & %{forum}: Samfundsdrevne selvinstruktioner, vejledninger og nyheder" introduce_yourself: "Dette er din strøm. Hop ud i det og introducér dig selv." keep_us_running: "Hold %{pod} kørende hurtigt og køb serverne deres kaffe fix med en mÃ¥nedlig donation!" new_here: - follow: "Follow %{link} and welcome new users to Diaspora*!" + follow: "Følg %{link} og byd nye brugere velkommen til Diaspora*!" learn_more: "Lær mere" - title: "Welcome New Users" + title: "Byd nye brugere velkommen" no_contacts: "Ingen kontakter" no_tags: "+ Find et tag for at følge" people_sharing_with_you: "Personer der deler med dig" @@ -142,7 +142,7 @@ da: no_contacts_message: community_spotlight: "kreative medlemmer" or_spotlight: "Eller du kan dele med %{link}" - try_adding_some_more_contacts: "Du kan søge (øverst) eller invitere (til højre) flere kontakter." + try_adding_some_more_contacts: "Du kan søge (øverst) eller invitere flere kontakter (til højre)." you_should_add_some_more_contacts: "Du bør tilføje nogle flere kontakter!" no_posts_message: start_talking: "Ingen har sagt noget endnu. Start samtalen!" @@ -172,11 +172,11 @@ da: back: "Tilbage" blocks: create: - failure: "I couldn't ignore that user. #evasion" - success: "Alright, you won't see that user in your stream again. #silencio!" + failure: "Ignorering af bruger mislykkedes. #evasion" + success: "Ignorering succesfuld - du kommer ikke til at se den bruger i din strøm igen. #silencio!" destroy: - failure: "I couldn't stop ignoring that user. #evasion" - success: "Let's see what they have to say! #sayhello" + failure: "Fjernelse af ignorering mislykkedes. #evasion" + success: "Se hvad de har at sige! #sayhello" bookmarklet: explanation: "Skriv indlæg pÃ¥ Diaspora fra hvor som helst ved at bookmarke %{link}." explanation_link_text: "dette link" @@ -205,7 +205,7 @@ da: check_out: "Tjek" many_people_are_you_sure: "Er du sikker pÃ¥ du vil starte en privat samtale med mere end %{suggested_limit} kontakter? Et indlæg til dette aspekt kan være en bedre mÃ¥de at kontakte dem." my_contacts: "Mine kontakter" - no_contacts: "Det ser ud til at du bliver nød til at tilføje nogle kontakter!" + no_contacts: "Det ser ud til at du bliver nødt til at tilføje nogle kontakter!" only_sharing_with_me: "Deler kun med mig" remove_person_from_aspect: "Fjern %{person_name} fra \"%{aspect_name}\"" start_a_conversation: "Start en samtale" @@ -236,8 +236,8 @@ da: zero: "Ingen nye beskeder" index: create_a_new_message: "Opret ny besked" - inbox: "Inbox" - message_inbox: "Besked Inbox" + inbox: "Indbakke" + message_inbox: "Indbakke til beskeder" new_message: "Ny besked" no_conversation_selected: "ingen samtale valgt" no_messages: "ingen beskeder" @@ -494,7 +494,7 @@ da: results_for: " resultat for %{params}" index: couldnt_find_them_send_invite: "Kunne ikke finde dem? Send en invitation!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "Leder du efter indlæg tagget med %{tag_link}?" no_one_found: "... Og ingen blev fundet." no_results: "Hey! Du er nødt til at søge efter noget." results_for: "søgeresultater for" @@ -544,7 +544,7 @@ da: runtime_error: "Billed-upload fejlede. Er du sikker pÃ¥ at du har spændt sikkerhedsselen?" type_error: "Billed-upload fejlede. Er du sikker pÃ¥ at et billede var tilføjet?" destroy: - notice: "Billed slettet." + notice: "Billede slettet." edit: editing: "Redigering" new: @@ -556,7 +556,7 @@ da: invalid_ext: "{file} har en ugyldig filtype. Kun {udvidelser} er tilladt." size_error: "{File} er for stor. Maksimal filstørrelse er {sizeLimit}." new_profile_photo: - or_select_one_existing: "or select one from your already existing %{photos}" + or_select_one_existing: "eller vælg et fra dine eksisterende %{photos}" upload: "Upload et nyt profilbillede!" photo: view_all: "se alle %{name}s billeder" @@ -577,7 +577,7 @@ da: not_found: "Vi kunne desværre ikke finde dette indlæg." permalink: "permalink" previous: "Forrige" - privacy: "Privacy" + privacy: "Privatindstillinger" profile: "Profil" profiles: edit: @@ -619,7 +619,7 @@ da: unhappy: Ulykkelig? update: "Opdatér" new: - create_my_account: "Opret min konto" + create_my_account: "Opret min konto!" enter_email: "Indtast e-mail" enter_password: "Indtast en adgangskode" enter_password_again: "Indtast den samme adgangskode som før" @@ -657,7 +657,7 @@ da: few: "%{count} delinger" many: "%{count} delinger" one: "Én deling" - other: "%{count} deling" + other: "%{count} delinger" two: "%{count} delinger" zero: "Del" reshare_confirmation: "Del %{author} - %{text}?" @@ -675,7 +675,7 @@ da: failure: error: "der opstod en fejl i at forbinde til den service" finder: - fetching_contacts: "Diaspora is populating your %{service} friends please check back in a few minutes." + fetching_contacts: "Diaspora indsamler dine %{service}-venner. Vent venligst et par minutter." no_friends: "Ingen Facebook-venner fundet." service_friends: "%{service} Venner" index: @@ -697,8 +697,8 @@ da: settings: "Indstillinger" share_visibilites: update: - post_hidden_and_muted: "%{name}'s post has been hidden, and notifications have been muted." - see_it_on_their_profile: "If you want to see updates on this post, visit %{name}'s profile page." + post_hidden_and_muted: "%{name}'s indlæg er nu skjult, og meddelelser er blevet gjort tavse." + see_it_on_their_profile: "Hvis du ønsker at se opdateringer til dette indlæg, besøg %{name}'s profilside." shared: add_contact: add_new_contact: "Tilføj en ny kontakt" @@ -749,23 +749,24 @@ da: new_user_prefill: hello: "Hej allesammen, jeg er #%{new_user_tag}. " i_like: "Jeg interesserer mig for %{tags}." - invited_by: "Thanks for the invite, " + invited_by: "Tak for invitationen, " + newhere: "NewHere" post_a_message_to: "Send en besked til %{aspect}" posting: Sender... publishing_to: "del med: " share: "Del" share_with: "Del med" upload_photos: "Upload fotos" - whats_on_your_mind: "Hvad har du pÃ¥ hjertet?" + whats_on_your_mind: "Hvad har du pÃ¥ hjerte?" reshare: reshare: "Del igen" stream_element: connect_to_comment: "Forbind til denne bruger for at kommentere pÃ¥ deres indlæg" currently_unavailable: "Det er i øjeblikket ikke muligt at kommentere" dislike: "Synes ikke om" - hide_and_mute: "Skjul indlæg og kommentarer" + hide_and_mute: "Skjul indlægget og dets kommentarer" ignore_user: "Ignorer %{name}" - ignore_user_description: "Ignore and remove user from all aspects?" + ignore_user_description: "Ignorer og fjern bruger fra alle aspekter?" like: "Synes om" shared_with: "Delt med: %{aspect_names}" unlike: "Synes ikke om" @@ -790,12 +791,12 @@ da: stream_helper: hide_comments: "Skjul alle kommentarer" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "Vis %{count} flere kommentarer" + many: "Vis %{count} flere kommentarer" + one: "Vis én kommentar mere" + other: "Vis %{count} flere kommentarer" + two: "Vis to kommentarer til" + zero: "Ikke flere kommentarer" streams: aspects: title: "Dine aspekter" @@ -822,15 +823,15 @@ da: recently: "for nylig:" tags: contacts_title: "Folk der følger disse tags" - tag_prefill_text: "The thing about %{tag_name} is... " + tag_prefill_text: "Jeg synes at %{tag_name} er... " title: "Indlæg tagget med: %{tags}" tag_followings: create: - failure: "Det lykkedes ikke at følge: #%{name}" - success: "Følger nu: #%{name}" + failure: "Det lykkedes ikke at følge: #%{name}. Følger du allerede tag'et?" + success: "Du følger nu #%{name}." destroy: - failure: "Fejlede med at holde op med følgende: #%{name}" - success: "Holdt op med at følge #%{name} med succes" + failure: "Fejlede med at holde op med at følge #%{name}. MÃ¥ske har du allerede valgt ikke at følge tag'et?" + success: "Du følger desværre ikke #%{name} længere." tags: show: follow: "Følg #%{tag}" @@ -860,9 +861,9 @@ da: email_confirmed: "E-mail %{email} aktiveret" email_not_confirmed: "E-mail kunne ikke aktiveres. Forkert link?" destroy: - no_password: "Please enter your current password to close your account." - success: "Your account has been locked. It may take 20 minutes for us to finish closing your account. Thank you for trying Diaspora." - wrong_password: "The entered password didn't match your current password." + no_password: "Indtast venligst dit kodeord for at lukke din konto." + success: "Din konto er nu lÃ¥st. Det kan tage 20 minutter for os at blive færdige med at lukke den helt. Tak fordi du prøvede Diaspora." + wrong_password: "Det indtastede kodeord stemmer ikke overens med dit nuværende kodeord." edit: also_commented: "...nogen har kommenteret pÃ¥ en af dine kontakters indlæg?" change: "Skift" @@ -876,7 +877,7 @@ da: download_xml: "Download min XML" edit_account: "Rediger konto" email_awaiting_confirmation: "Vi har sendt dig et aktiveringslink til %{unconfirmed_email}. Indtil du følger dette link og aktiverer den nye adresse, vil vi fortsætte med at bruge din oprindelige adresse %{email}." - export_data: "Exportér data" + export_data: "Eksportér data" getting_started: "Ny bruger opsætning" liked: "...nogen synes om dit indlæg?" mentioned: "...du er nævnt i et indlæg?" @@ -885,7 +886,7 @@ da: private_message: "...du har modtaget en besked?" receive_email_notifications: "Modtag e-mail notifikation nÃ¥r..." reshared: "... nogen deler dit indlæg?" - show_community_spotlight: "Hvis Kreative medlemmer i hovedstrøm?" + show_community_spotlight: "Vis kreative medlemmer i din hovedstrøm?" show_getting_started: "Genaktivér 'Kom godt i gang'" started_sharing: "...nogen er begyndt at dele med dig?" stream_preferences: "Strøm opsætning" @@ -910,9 +911,9 @@ da: simply_visit: "Du skal blot besøge" works_on_modern: "Virker pÃ¥ alle moderne smartphones" privacy_settings: - ignored_users: "Ignored Users" - stop_ignoring: "Stop ignoring" - title: "Privacy Settings" + ignored_users: "Ignorerede brugere" + stop_ignoring: "Hold op med at ignorere" + title: "Privatlivsindstillinger" public: does_not_exist: "Brugeren %{username} findes ikke!" update: diff --git a/config/locales/diaspora/de.yml b/config/locales/diaspora/de.yml index ffe48ea0bd9aaffc45ad17262b3985f78cbdb9e3..a54e798d8312dc6bd71f86646ca5024e550d2bd7 100644 --- a/config/locales/diaspora/de.yml +++ b/config/locales/diaspora/de.yml @@ -494,7 +494,7 @@ de: results_for: "Ergebnisse für %{params}" index: couldnt_find_them_send_invite: "Konntest du die gesuchte Person nicht finden? Schicke eine Einladung!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "Suchst du mit %{tag_link} getaggte Beiträge?" no_one_found: "… und niemand wurde gefunden." no_results: "Hey! Du musst nach etwas suchen." results_for: "Suchergebnisse für" @@ -750,6 +750,7 @@ de: hello: "Hallo zusammen, ich bin #%{new_user_tag}. " i_like: "Ich interessiere mich für %{tags}." invited_by: "Danke für die Einladung," + newhere: "NeuHier" post_a_message_to: "Sende eine Nachricht an %{aspect}" posting: "Senden …" publishing_to: "Veröffentlichen an: " diff --git a/config/locales/diaspora/de_formal.yml b/config/locales/diaspora/de_formal.yml index e33698ff08478fa6e3e7eca1b698cc77e006cb2e..b8c6a3d63a690d1e8efb8c33037638738634758e 100644 --- a/config/locales/diaspora/de_formal.yml +++ b/config/locales/diaspora/de_formal.yml @@ -750,6 +750,7 @@ de_formal: hello: "Hallo zusammen, ich bin #%{new_user_tag}. " i_like: "Ich interessiere mich für %{tags}." invited_by: "Danke für die Einladung, " + newhere: "NewHere" post_a_message_to: "Senden Sie eine Nachricht an %{aspect}" posting: "Senden …" publishing_to: "Veröffentlichen an: " diff --git a/config/locales/diaspora/el.yml b/config/locales/diaspora/el.yml index 9e2cfd025b1feb123d1b780f885031a8f71d27d6..cb330c3873165ca88de0e20bb2acb372359e9911 100644 --- a/config/locales/diaspora/el.yml +++ b/config/locales/diaspora/el.yml @@ -750,6 +750,7 @@ el: hello: "Γεια σε όλους, είμαι #%{new_user_tag}. " i_like: "Με ενδιαφÎÏουν οι ετικÎτες %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "ΑναÏτήστε Îνα μήνυμα στην πτυχή %{aspect}" posting: ΑνάÏτηση... publishing_to: "δημοσίευση στο: " diff --git a/config/locales/diaspora/en_1337.yml b/config/locales/diaspora/en_1337.yml index 57b7ccd9afb974206d76cd01877ad12ee8237b95..aff0a3f1a5f9a18c25c6765b41f356ade7c30f2a 100644 --- a/config/locales/diaspora/en_1337.yml +++ b/config/locales/diaspora/en_1337.yml @@ -750,6 +750,7 @@ en_1337: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "5P4M 7H15 45P3C7: %{aspect}" posting: 5P4MM1NG... publishing_to: "PUBL15H1NG 2: " diff --git a/config/locales/diaspora/en_pirate.yml b/config/locales/diaspora/en_pirate.yml index f99ee3dc22fd26c178237ef46ffbbe994162565c..65827058da664f7c66d99d3a9c548bd143cf84fe 100644 --- a/config/locales/diaspora/en_pirate.yml +++ b/config/locales/diaspora/en_pirate.yml @@ -750,6 +750,7 @@ en_pirate: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post a message to %{aspect}" posting: Posting... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/en_shaw.yml b/config/locales/diaspora/en_shaw.yml index a850186fd80bf67b84b0a2670873c30c8b9bbb5c..97d0124dfedfa307f69b87bc601441102490c8a8 100644 --- a/config/locales/diaspora/en_shaw.yml +++ b/config/locales/diaspora/en_shaw.yml @@ -750,6 +750,7 @@ en_shaw: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "ð‘ð‘´ð‘•ð‘‘ ð‘© ð‘¥ð‘§ð‘•ð‘©ð‘¡ ð‘‘ %{aspect}" posting: ð‘ð‘´ð‘•ð‘‘ð‘¦ð‘™... publishing_to: "ð‘ð‘³ð‘šð‘¤ð‘¦ð‘–ð‘¦ð‘™ ð‘‘: " diff --git a/config/locales/diaspora/eo.yml b/config/locales/diaspora/eo.yml index 656422dc085d477ff469a08b7513277d9d56f9cf..98de6da83dc3c5e5898459b955e4a54871932675 100644 --- a/config/locales/diaspora/eo.yml +++ b/config/locales/diaspora/eo.yml @@ -111,9 +111,9 @@ eo: here_to_help: "Jen la DIASPORA* komunumo!" need_help: "Ĉu Vi Bezonas Helpon?" satisfaction: "%{link}: Komunuma helpo" - tag_bug: "#bug" - tag_feature: "#feature" - tag_question: "#question" + tag_bug: "bug" + tag_feature: "feature" + tag_question: "question" tutorials_wiki_and_forum: "%{tutorial} & %{wiki} & %{forum}: Instruiloj, lerniloj kaj novaĵoj funkciigitaj de la komunumo" introduce_yourself: "Tio estas via torento. Ensaltu kaj prezentu vin mem." keep_us_running: "Helpu %{pod} rapide funkcii kaj aĉetu por niaj servkomputiloj ilian kaforiparon per ĉiumonata donatado!" @@ -429,19 +429,19 @@ eo: two: "%{actors} poÅtis al vi poÅton." zero: "%{actors} sendis al vi poÅton." reshared: - few: "%{actors} rekonigis vian %{post_link}." + few: "%{actors} rekonigis vian %{post_link}n." many: "%{actors} rekonigis vian %{post_link}." - one: "%{actors} repartoprenis vian %{post_link}." - other: "%{actors} rekonigis vian %{post_link}." - two: "%{actors} rekonigis vian %{post_link}." - zero: "%{actors} rekonigis vian %{post_link}." + one: "%{actors} repartoprenis vian %{post_link}n." + other: "%{actors} rekonigis vian %{post_link}n." + two: "%{actors} rekonigis vian %{post_link}n." + zero: "%{actors} rekonigis vian %{post_link}n." reshared_post_deleted: - few: "%{actors} repartoprenis vian foritan afiÅon." - many: "%{actors} repartoprenis vian foritan afiÅon." - one: "%{actors} repartoprenis vian foritan afiÅon." - other: "%{actors} repartoprenis vian foritan afiÅon." - two: "%{actors} repartoprenis vian foritan afiÅon." - zero: "%{actors} repartoprenis vian foritan afiÅon." + few: "%{actors} rekonigis vian forviÅitan afiÅon." + many: "%{actors} rekonigis vian forviÅitan afiÅon." + one: "%{actors} rekonigis vian forviÅitan afiÅon." + other: "%{actors} rekonigis vian forviÅitan afiÅon." + two: "%{actors} rekonigis vian forviÅitan afiÅon." + zero: "%{actors} rekonigis vian forviÅitan afiÅon." started_sharing: few: "%{actors} komencis konigi kun vi." many: "%{actors} komencis konigi kun vi." @@ -494,7 +494,7 @@ eo: results_for: "rezultoj por %{params}" index: couldnt_find_them_send_invite: "Ĉu vi ne povis trovi tiun? Sendu inviton!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "Ĉu vi serĉas afiÅojn etikeditaj %{tag_link}?" no_one_found: "...kaj neniu troviÄis." no_results: "Hej! Vi devas serĉi ion." results_for: "trovrezultoj por" @@ -648,22 +648,22 @@ eo: new_request_to_person: sent: sendita! reshares: - comment_email_subject: "la repartoprenado de %{resharer} de la afiÅo de %{author}" + comment_email_subject: "Rekonigo de %{resharer} de la afiÅo de %{author}" create: - failure: "Estis eraro, kiam repartoprenanta tiun ĉi afiÅon." + failure: "Estis eraro dum rekonigado de ĉi tiu afiÅo." reshare: - deleted: "Originala afiÅo forlasiÄis de afiÅinto." + deleted: "Originala afiÅo forviÅiÄis de l' afiÅinto." reshare: - few: "%{count} repartoprenadoj" - many: "%{count} repartoprenadoj" - one: "1 repartoprenado" - other: "%{count} repartoprenadoj" - two: "%{count} repartoprenadoj" - zero: "Repartopreni" - reshare_confirmation: "Ĉu repartopreni la afiÅon de %{author}?" - reshare_original: "Repartopreni la originalan" - reshared_via: "repartoprenita per" - show_original: "Videbligi originalan" + few: "%{count} rekonigoj" + many: "%{count} rekonigoj" + one: "1 rekonigo" + other: "%{count} rekonigoj" + two: "%{count} rekonigoj" + zero: "Rekonigi" + reshare_confirmation: "Ĉu rekonigi la afiÅon de %{author}?" + reshare_original: "Rekonigi la originalon" + reshared_via: "rekonigita per" + show_original: "Montri la originalon" search: "Serĉi" services: create: @@ -750,6 +750,7 @@ eo: hello: "Saluton al ĉiu, mi estas #%{new_user_tag}. " i_like: "Mi interesiÄas pri %{tags}." invited_by: "Dankon pro la invito," + newhere: "NewHere" post_a_message_to: "AfiÅi al %{aspect}" posting: AfiÅanta... publishing_to: "koniganta al: " @@ -790,12 +791,12 @@ eo: stream_helper: hide_comments: "kaÅi ĉiujn komentojn" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "Montri %{count} pliajn komentojn" + many: "Montri %{count} pliajn komentojn" + one: "Montri unu plian komenton" + other: "Montri %{count} pliajn komentojn" + two: "Montri du pliajn komentojn" + zero: "Neniuj pliaj komentoj" streams: aspects: title: "Viaj Aspektoj" @@ -884,7 +885,7 @@ eo: photo_export_unavailable: "bildeksporto intertempe ne eblas" private_message: "...vi ricevas malpublikan mesaÄon?" receive_email_notifications: "Ĉu ricevi retpoÅtajn sciigojn, kiam..." - reshared: "...iu repartoprenas vian afiÅon?" + reshared: "... ĉu iu rekonigis vian afiÅon?" show_community_spotlight: "Ĉu montri Komunuman Reflektoron en Torento?" show_getting_started: "ReÅalti Komencadon" started_sharing: "...iu komencis konigi kun vi?" diff --git a/config/locales/diaspora/es-AR.yml b/config/locales/diaspora/es-AR.yml index 37a0773281119cd6a0045df22b41ab86be2039f7..ebdda586cb8a3bc99ac0fedf6db58e818f192125 100644 --- a/config/locales/diaspora/es-AR.yml +++ b/config/locales/diaspora/es-AR.yml @@ -750,6 +750,7 @@ es-AR: hello: "Hola a tod@s, I'm #%{new_user_tag}." i_like: "Tengo interés en %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Publicar un mensaje en %{aspect}" posting: Publicando... publishing_to: "publicar en: " diff --git a/config/locales/diaspora/es-CL.yml b/config/locales/diaspora/es-CL.yml index bc628fee09497e8dcb7f6c930a64c84aa00dcead..9134a5c9160753bd779f4739cbf6ede5109d768c 100644 --- a/config/locales/diaspora/es-CL.yml +++ b/config/locales/diaspora/es-CL.yml @@ -750,6 +750,7 @@ es-CL: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Postear un mensaje a %{aspect}" posting: Posteando... publishing_to: "publicar en: " diff --git a/config/locales/diaspora/es.yml b/config/locales/diaspora/es.yml index 7335489aa01be7ae84d30cd277f80a16de5e5f44..26b28c4744baf55976f0d216ade89812fbaabbe6 100644 --- a/config/locales/diaspora/es.yml +++ b/config/locales/diaspora/es.yml @@ -200,9 +200,9 @@ es: few: "%{count} contactos" index: add_a_new_aspect: "Añade un nuevo aspecto" - add_to_aspect: "añadir contactos a %{name}" + add_to_aspect: "añade contactos a %{name}" all_contacts: "Todos los contactos" - check_out: "Echa un vistazo" + check_out: "Echa un vistazo a la" many_people_are_you_sure: "¿Estás seguro que quieres comenzar una conversación privada con más de %{suggested_limit} contactos? Publicar en sus aspectos podrÃa ser mejor para contactar con ellos." my_contacts: "Mis Contactos" no_contacts: "¡Parece que necesitas añadir algunos contactos!" @@ -494,8 +494,8 @@ es: results_for: "resultados para %{params}" index: couldnt_find_them_send_invite: "¿No les puedes encontrar? ¡EnvÃales una invitación!" - looking_for: "Looking for posts tagged %{tag_link}?" - no_one_found: "...y no se ha encontrado nada." + looking_for: "¿Buscando publicaciones sobre %{tag_link}?" + no_one_found: "...y nadie fue encontrado." no_results: "¡Eh! Tienes que buscar algo." results_for: "buscar resultados para" many: "%{count} personas" @@ -750,6 +750,7 @@ es: hello: "Hola a tod@s, I'm #%{new_user_tag}." i_like: "Tengo interés en %{tags}." invited_by: "Gracias por la invitación, " + newhere: "SoyNuevo" post_a_message_to: "Publicar un mensaje en %{aspect}" posting: Publicando... publishing_to: "publicar en:" @@ -790,12 +791,12 @@ es: stream_helper: hide_comments: "Ocultar comentarios" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "Mostrar %{count} comentarios más" + many: "Mostrar %{count} comentarios más" + one: "Mostrar 1 comentario más" + other: "Mostrar %{count} comentarios más" + two: "Mostrar 2 comentarios más" + zero: "No hay más comentarios" streams: aspects: title: "Aspectos" @@ -822,7 +823,7 @@ es: recently: "recientemente:" tags: contacts_title: "Gente que sigue esta etiqueta" - tag_prefill_text: "The thing about %{tag_name} is... " + tag_prefill_text: "Sobre %{tag_name}..." title: "Publicaciones etiquetadas: %{tags}" tag_followings: create: @@ -836,7 +837,7 @@ es: follow: "Seguir #%{tag}" followed_by: "seguido por" following: "Siguiendo a #%{tag}" - nobody_talking: "Nadie esta hablando de %{tag} todavÃa." + nobody_talking: "Nadie esta hablando sobre %{tag} todavÃa." people_tagged_with: "Perfiles con %{tag}" posts_tagged_with: "Publicaciones con #%{tag}" stop_following: "Dejar de seguir #%{tag}" diff --git a/config/locales/diaspora/eu.yml b/config/locales/diaspora/eu.yml index 16a7750156715afb25340629b77d6c1333b2d4cd..69a49b42a4f43ffd35d2d85c664f8668d8db1f5b 100644 --- a/config/locales/diaspora/eu.yml +++ b/config/locales/diaspora/eu.yml @@ -750,6 +750,7 @@ eu: hello: "Kaixo guztioi, #%{new_user_tag} naiz. " i_like: "%{tags} interesatzen zait." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "%{aspect}(e)n mezu bat partekatu" posting: Partekatzen... publishing_to: "hemen partekatzen:" diff --git a/config/locales/diaspora/fi.yml b/config/locales/diaspora/fi.yml index 61165dd43dbfd1e01152740a53d10f95bfe78346..31e96e552e438e10b7e654d9364c264308503c3e 100644 --- a/config/locales/diaspora/fi.yml +++ b/config/locales/diaspora/fi.yml @@ -601,12 +601,12 @@ fi: updated: "Profiili päivitetty" public: "Julkinen" reactions: - few: "%{count} reactions" - many: "%{count} reactions" - one: "1 reaction" - other: "%{count} reactions" - two: "%{count} reactions" - zero: "0 reactions" + few: "%{count} reaktiota" + many: "%{count} reaktiota" + one: "1 reaktio" + other: "%{count} reaktiota" + two: "%{count} reaktiota" + zero: "0 reaktiota" registrations: closed: "Rekisteröityminen on suljettu tässä Diaspora-podissa." create: @@ -750,6 +750,7 @@ fi: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Lähetä viesti näkymään %{aspect}" posting: Lähetetään... publishing_to: "Julkaistaan: " @@ -892,17 +893,20 @@ fi: your_email: "Sähköpostiosoitteesi" your_handle: Diaspora-tunnuksesi getting_started: - awesome_take_me_to_diaspora: "Awesome! Take me to Diaspora*" - community_welcome: "Diaspora's community is happy to have you aboard!" + awesome_take_me_to_diaspora: "Loistavaa! Mennään Diasporaan" + community_welcome: "Diaspora-yhteisö on iloinen saadessaan sinut mukaan!" hashtag_explanation: "Hashtagit mahdollistavat kiinnostuksen kohteistasi keskustelun ja niiden seuraamisen. Ne ovat myös hyvä keino ihmisten löytämiseen Diasporassa." - hashtag_suggestions: "Try following tags like #art, #movies, #gif, etc." - hooking_up_fb: "hooking up your Facebook account" - saved: Saved! - we_can_speed_things_up: "We can speed things up a bit by" - well_hello_there: "Well, hello there!" - what_are_you_in_to: "What are you into?" - what_facebook_does: "to Diaspora. This will pull your name and photo, and enable cross-positng." - who_are_you: "Who are you?" + hashtag_suggestions: "Voit seurata vaikkapa tageja kuten #taide, #elokuvat, #gif jne." + hooking_up_fb: "yhdistämällä Facebook-tilisi" + saved: Tallennettu! + we_can_speed_things_up: "Voimme nopeuttaa asioita hieman" + well_hello_there: "No, mutta hei!" + what_are_you_in_to: "Mistä olet kiinnostunut?" + what_facebook_does: |- + Diasporaan. Nimesi ja kuvasi haetaan Diasporaan, ja tämän jälkeen voit myös lähettää viestejä Diasporasta Facebookiin. + + This will pull your name and photo, and enable cross-positng. + who_are_you: "Kuka olet?" logged_out: go_mobile: "Siirry nyt mobiiliin." on_your_mobile_device: "mobiililaitteellasi päästäksesi Diasporan mobiilisivustolle." diff --git a/config/locales/diaspora/fr.yml b/config/locales/diaspora/fr.yml index 7f008438a0ab8b035e104fb79eee29d6a353bcac..3704a46ab3698b1ddaf86bff3fbf009ab3a68c12 100644 --- a/config/locales/diaspora/fr.yml +++ b/config/locales/diaspora/fr.yml @@ -259,7 +259,7 @@ fr: birthday_with_year: "%d %B %Y" fullmonth_day: "%d %B" delete: "Supprimer" - email: E-mail + email: "Courriel" error_messages: helper: correct_the_following_errors_and_try_again: "Corrigez les erreurs suivantes, puis réessayez." @@ -455,8 +455,8 @@ fr: comment_on_post: reply: "Répondre ou voir le message de %{name} >" confirm_email: - click_link: "Pour activer votre nouvelle adresse email %{unconfirmed_email}, merci de suivre ce lien :" - subject: "Merci d'activer votre nouvelle adresse email %{unconfirmed_email}" + click_link: "Pour activer votre nouvelle adresse électronique %{unconfirmed_email}, merci de suivre ce lien :" + subject: "Merci d'activer votre nouvelle adresse électronique %{unconfirmed_email}" email_sent_by_diaspora: "Ce courriel a été envoyé par Diaspora. Si vous souhaitez cesser de recevoir des courriels de ce genre," hello: "Bonjour %{name} !" liked: @@ -750,6 +750,7 @@ fr: hello: "Bonjour tout le monde, je suis #%{new_user_tag}. " i_like: "Je suis intéressé par %{tags}." invited_by: "Merci pour l'invitation, " + newhere: "NouveauIci" post_a_message_to: "Publier un message dans %{aspect}" posting: Publication… publishing_to: "publication vers : " @@ -857,8 +858,8 @@ fr: username: "Nom d'utilisateur" users: confirm_email: - email_confirmed: "Courriel %{email} activé" - email_not_confirmed: "L'email n'a pas pu être activé. Lien erroné ?" + email_confirmed: "Adresse électronique %{email} activé" + email_not_confirmed: "L'adresse électronique n'a pas pu être activé. Lien erroné ?" destroy: no_password: "Veuillez introduire votre mot de passe actuel pour fermer votre compte." success: "Votre compte a été bloqué. 20 minutes pourraient être nécessaires pour la finalisation de sa fermeture. Merci d'avoir essayé d'utiliser Diaspora." @@ -866,7 +867,7 @@ fr: edit: also_commented: "…quelqu'un d'autre commente une publication de votre contact ?" change: "Modifier" - change_email: "Changer d'email" + change_email: "Changer d'adresse électronique" change_language: "Changer la langue" change_password: "Changer le mot de passe" close_account: "Clôturer le compte" @@ -923,8 +924,8 @@ fr: password_not_changed: "Échec de la mise à jour du mot de passe" settings_not_updated: "La mise à jour des paramètre a échouée" settings_updated: "Mise à jour des paramètres" - unconfirmed_email_changed: "Email changé. Nécessite l'activation." - unconfirmed_email_not_changed: "Le changement de courriel a échoué" + unconfirmed_email_changed: "Adresse électronique changée. Nécessite l'activation." + unconfirmed_email_not_changed: "Le changement d'adresse électronique a échoué" webfinger: fetch_failed: "impossible de télécharger le profil webfinger pour %{profile_url}" hcard_fetch_failed: "une erreur est survenue lors du téléchargement de la hcard de %{account}" diff --git a/config/locales/diaspora/ga.yml b/config/locales/diaspora/ga.yml index 0ccaece7f0bbbce6326ca7212a4dc6449c94cd36..984cf8107d72670f59d98267922001c5ad583cfe 100644 --- a/config/locales/diaspora/ga.yml +++ b/config/locales/diaspora/ga.yml @@ -750,6 +750,7 @@ ga: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Chuir teachtaireach chuig %{aspect}" posting: Póstáil... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/he.yml b/config/locales/diaspora/he.yml index 4c2a15bfcc72d87271fa08cf1af45b62fc56fedf..c3016c017f668daa10d8df7a541509cba1ee56ee 100644 --- a/config/locales/diaspora/he.yml +++ b/config/locales/diaspora/he.yml @@ -750,6 +750,7 @@ he: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "×¤×¨×¡×•× ×”×•×“×¢×” ×ל %{aspect}" posting: פרסו×... publishing_to: "×¤×¨×¡×•× ×ל:" diff --git a/config/locales/diaspora/hu.yml b/config/locales/diaspora/hu.yml index 398b14dd3fba4b1a35a43647bf0dc31eb2185086..70a9d62db47a883997924bb9b02860c3b23ed11a 100644 --- a/config/locales/diaspora/hu.yml +++ b/config/locales/diaspora/hu.yml @@ -752,6 +752,7 @@ hu: hello: "Sziasztok, én #%{new_user_tag} vagyok. " i_like: "Engem ezek érdekelnek: %{tags}." invited_by: "Köszi a meghÃvásért," + newhere: "NewHere" post_a_message_to: "Bejegyzés küldése ennek a csoportnak: %{aspect}" posting: Küldés... publishing_to: "Publikálás:" diff --git a/config/locales/diaspora/id.yml b/config/locales/diaspora/id.yml index 179fcabbaaacd9d192b53747e471ccabf84a15fa..f693729fb9b59f951180d99b706664651a53f2d6 100644 --- a/config/locales/diaspora/id.yml +++ b/config/locales/diaspora/id.yml @@ -750,6 +750,7 @@ id: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post a message to %{aspect}" posting: Posting... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/is.yml b/config/locales/diaspora/is.yml index 468f2be45281ce374469fbe6e670d796d1749df7..bff6359fae5e0bc73f1a54aba2053c2a2752b300 100644 --- a/config/locales/diaspora/is.yml +++ b/config/locales/diaspora/is.yml @@ -750,6 +750,7 @@ is: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Skrifa skilaboð til %{aspect}" posting: Senda... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/it.yml b/config/locales/diaspora/it.yml index 7fc9036affb5ba03b298171b204d3069ac029a85..74a2c22d703747879fd86fee0387059d2b6a253d 100644 --- a/config/locales/diaspora/it.yml +++ b/config/locales/diaspora/it.yml @@ -747,9 +747,10 @@ it: discard_post: "Elimina il post" make_public: "rendi pubblico" new_user_prefill: - hello: "Ciao a tutti, eccomi qui! Hey everyone, I'm #%{new_user_tag}" + hello: "Ciao a tutti, sono un #%{new_user_tag}." i_like: "I miei interessi sono %{tags}." invited_by: "Grazie per l'invito, " + newhere: "NuovoUtente" post_a_message_to: "Invia un messaggio a %{aspect}" posting: "Invio in corso..." publishing_to: "stai condividendo con: " diff --git a/config/locales/diaspora/ja.yml b/config/locales/diaspora/ja.yml index ee520cfaccb41ae4e28c38ac026271e096d62c96..88de43b3a99a55e6d180b3df763a3bf10abb12ca 100644 --- a/config/locales/diaspora/ja.yml +++ b/config/locales/diaspora/ja.yml @@ -750,6 +750,7 @@ ja: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "%{aspect}ã«æŠ•ç¨¿ã™ã‚‹" posting: "投稿ä¸" publishing_to: 公開先: diff --git a/config/locales/diaspora/ko.yml b/config/locales/diaspora/ko.yml index a922d4e535388f0af40c192a393a35dc5d1669d2..0b072c5295c28fc5bd64622900445ec4ac2ae6c2 100644 --- a/config/locales/diaspora/ko.yml +++ b/config/locales/diaspora/ko.yml @@ -111,9 +111,9 @@ ko: here_to_help: "디아스í¬ë¼ 커뮤니티가 ë„와드립니다!" need_help: "ë„ì›€ì´ í•„ìš”í•˜ì„¸ìš”?" satisfaction: "%{link}: 커뮤니티 지ì›" - tag_bug: "bug" - tag_feature: "feature" - tag_question: "question" + tag_bug: "버그" + tag_feature: "기능" + tag_question: "질문" tutorials_wiki_and_forum: "%{tutorial}ê³¼ %{wiki}와 %{forum}: 커뮤니티가 ìš´ì˜í•˜ëŠ” íŠœí† ë¦¬ì–¼, 사용 방법과 소ì‹" introduce_yourself: "ë‚´ 스트림ì—ì„œ 스스로를 나타내ì‹ì‹œì˜¤." keep_us_running: "Keep %{pod} running fast, buy our servers their monthly coffee fix!" @@ -494,7 +494,7 @@ ko: results_for: "%{params} ê²°ê³¼" index: couldnt_find_them_send_invite: "못 찾았나요? ì´ˆëŒ€ìž¥ì„ ë³´ë‚´ì„¸ìš”!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "%{tag_link} 태그가 달린 ê³µìœ ë¬¼ì„ ì°¾ê³ ìžˆë‚˜ìš”?" no_one_found: "검색 결과가 없습니다" no_results: "검색 결과가 없습니다" results_for: "검색 ê²°ê³¼:" @@ -747,9 +747,10 @@ ko: discard_post: "ê³µìœ ë¬¼ ì‚ì œ" make_public: "공개하기" new_user_prefill: - hello: "반갑습니다! 새로 가입했습니다. #%{new_user_tag}!" + hello: "반갑습니다! #%{new_user_tag}했습니다." i_like: "ì œ 관심사는 %{tags} 입니다." invited_by: "초대해주셔서 ê³ ë§™ìŠµë‹ˆë‹¤," + newhere: "새로가입" post_a_message_to: "%{aspect}ì— ê³µìœ ë¬¼ 올리기" posting: "올리는 중···" publishing_to: "올릴 ê³³: " @@ -790,12 +791,12 @@ ko: stream_helper: hide_comments: "댓글 ê°ì¶”기" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "댓글 %{count}ê°œ ë” ë³´ê¸°" + many: "댓글 %{count}ê°œ ë” ë³´ê¸°" + one: "댓글 í•œ ê°œ ë” ë³´ê¸°" + other: "댓글 %{count}ê°œ ë” ë³´ê¸°" + two: "댓글 ë‘ ê°œ ë” ë³´ê¸°" + zero: "ëŒ“ê¸€ì´ ë” ì—†ìŠµë‹ˆë‹¤" streams: aspects: title: "ë‚´ ì• ìŠ¤íŽ™" @@ -822,7 +823,7 @@ ko: recently: "최근ì—" tags: contacts_title: "People who dig this tag" - tag_prefill_text: "The thing about %{tag_name} is... " + tag_prefill_text: "%{tag_name} 태그를 ë‹¬ê³ ê³µìœ í•˜ì„¸ìš”!" title: "태그: %{tags}" tag_followings: create: diff --git a/config/locales/diaspora/lt.yml b/config/locales/diaspora/lt.yml index fc2d90bf213ecb851b213117a11abec8a7b661fb..9f2baa5607fd4e4f223f48f8200410ec1753d1a8 100644 --- a/config/locales/diaspora/lt.yml +++ b/config/locales/diaspora/lt.yml @@ -750,6 +750,7 @@ lt: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "ParaÅ¡yti žinutÄ™ į aspektÄ… \"%{aspect}\"" posting: RaÅ¡oma... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/mk.yml b/config/locales/diaspora/mk.yml index 4e13d9ed6f4e1809de7eb82fda0150468562164e..1767c25cb833a8f26b1fa466222d03a1c7a4f5fc 100644 --- a/config/locales/diaspora/mk.yml +++ b/config/locales/diaspora/mk.yml @@ -750,6 +750,7 @@ mk: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Додај порака во %{aspect}" posting: Објавување... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/nb.yml b/config/locales/diaspora/nb.yml index b9bea2b2048ffa5f8ef6cd5d2332f9889f6259e4..d2ec3bbfe6b7f2e0454f183f286c00cb288f61ca 100644 --- a/config/locales/diaspora/nb.yml +++ b/config/locales/diaspora/nb.yml @@ -750,6 +750,7 @@ nb: hello: "Hei alle sammen, jeg er #%{new_user_tag}. " i_like: "Jeg er interessert i %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post et innlegg til %{aspect}" posting: Poster... publishing_to: "publiserer til:" diff --git a/config/locales/diaspora/nl.yml b/config/locales/diaspora/nl.yml index fa31731d0e383756892f52d49e8d8325cee89c38..112250fd9ee9fbd7f5438111fa900b91782ed052 100644 --- a/config/locales/diaspora/nl.yml +++ b/config/locales/diaspora/nl.yml @@ -750,6 +750,7 @@ nl: hello: "Hallo iedereen, ik ben #%{new_user_tag}. " i_like: "Ik ben geïnteresseerd in %{tags}." invited_by: "Bedankt voor de invite," + newhere: "NieuwHier" post_a_message_to: "Plaats een bericht aan %{aspect}" posting: Plaatsen... publishing_to: "delen met: " diff --git a/config/locales/diaspora/nn.yml b/config/locales/diaspora/nn.yml index 6aca4f145e8f4423318d28552775684f81f32ea2..eb2eae84548c3a009f7f7caad733bfc7088fd77e 100644 --- a/config/locales/diaspora/nn.yml +++ b/config/locales/diaspora/nn.yml @@ -750,6 +750,7 @@ nn: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Send ei melding til %{aspect}" posting: "Sender …" publishing_to: "publiserer til:" diff --git a/config/locales/diaspora/pa.yml b/config/locales/diaspora/pa.yml index 17dc0591933fbe0b524dcfbd870dcbcb0a750a23..4a15be49dd78c224d7581877fd0f2e4e3bc2e44e 100644 --- a/config/locales/diaspora/pa.yml +++ b/config/locales/diaspora/pa.yml @@ -750,6 +750,7 @@ pa: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post a message to %{aspect}" posting: "ਪੋਸਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ..." publishing_to: "publishing to: " diff --git a/config/locales/diaspora/pl.yml b/config/locales/diaspora/pl.yml index 14e202c78a3102b847da7f88eb6d78090396f004..fce07ad75c87739a6889b8c6a268cd17c8f9244c 100644 --- a/config/locales/diaspora/pl.yml +++ b/config/locales/diaspora/pl.yml @@ -494,7 +494,7 @@ pl: results_for: "wyniki dla %{params}" index: couldnt_find_them_send_invite: "Nie możesz ich znaleźć? WyÅ›lij zaproszenie!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "Szukasz wpisów oznaczonych %{tag_link}?" no_one_found: "...i nikogo nie odnaleziono." no_results: "Hej! Musisz coÅ› wpisać w pole wyszukiwarki!" results_for: "wyniki wyszukiwania dla" @@ -750,6 +750,7 @@ pl: hello: "Witajcie wszyscy, jestem #%{new_user_tag}. " i_like: "InteresujÄ… mnie %{tags}." invited_by: "DziÄ™ki za zaproszenie," + newhere: "NowiTutaj" post_a_message_to: "WyÅ›lij wiadomość do %{aspect}" posting: Publikowanie... publishing_to: "publikuj na:" @@ -790,12 +791,12 @@ pl: stream_helper: hide_comments: "Ukryj wszystkie komentarze" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "WyÅ›wietl %{count} wiÄ™cej komentarzy" + many: "WyÅ›wietl %{count} wiÄ™cej komentarzy" + one: "WyÅ›wietl jeden komentarz wiÄ™cej" + other: "WyÅ›wietl %{count} wiÄ™cej komentarzy" + two: "WyÅ›wietl dwa komentarze wiÄ™cej" + zero: "Nie ma wiÄ™cej komentarzy" streams: aspects: title: "Twoje Aspekty" @@ -822,7 +823,7 @@ pl: recently: "ostatnio:" tags: contacts_title: "Osoby, które wykopaÅ‚y te tagi" - tag_prefill_text: "The thing about %{tag_name} is... " + tag_prefill_text: "Rzecz o %{tag_link} jest..." title: "Oznaczone wpisy: %{tags}" tag_followings: create: diff --git a/config/locales/diaspora/pt-BR.yml b/config/locales/diaspora/pt-BR.yml index d20a20031f7956ecd8e41a8e15a9bb25877f1086..00937de49d52260be6a3fbc90b49091306887f6c 100644 --- a/config/locales/diaspora/pt-BR.yml +++ b/config/locales/diaspora/pt-BR.yml @@ -750,6 +750,7 @@ pt-BR: hello: "Olá a todos, sou #%{new_user_tag}. " i_like: "Estou interessado em %{tags}." invited_by: "Obrigado pelo convite, " + newhere: "NewHere" post_a_message_to: "Postar uma mensagem para %{aspect}" posting: Postando... publishing_to: "publicando para:" diff --git a/config/locales/diaspora/pt-PT.yml b/config/locales/diaspora/pt-PT.yml index ef857e37f8ed89b7fdd4310876e306c8619877d4..9b0d435d6df5fba251046f658dd4da95559389c7 100644 --- a/config/locales/diaspora/pt-PT.yml +++ b/config/locales/diaspora/pt-PT.yml @@ -750,6 +750,7 @@ pt-PT: hello: "Olá a todos, o meu nome é #%{new_user_tag}. " i_like: "Estou interessado em %{tags}." invited_by: "Obrigado(a) pelo convite," + newhere: "NewHere" post_a_message_to: "Publicar uma mensagem em %{aspect}" posting: "A publicar..." publishing_to: "publicando para:" diff --git a/config/locales/diaspora/ro.yml b/config/locales/diaspora/ro.yml index 30f01275ec16d2945546bee4dbc888f58d406565..f1fd00472a274f8e71e50ec28e675575fddfbf92 100644 --- a/config/locales/diaspora/ro.yml +++ b/config/locales/diaspora/ro.yml @@ -750,6 +750,7 @@ ro: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post a message to %{aspect}" posting: Publicare... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/ru.yml b/config/locales/diaspora/ru.yml index 3615183b124c29c84f853676754ac9e8d2757f42..a7162ac6b04a209ddd45fd2a69e66908cdcd2f9f 100644 --- a/config/locales/diaspora/ru.yml +++ b/config/locales/diaspora/ru.yml @@ -68,7 +68,7 @@ ru: stay_updated: "Будьте в курÑе" stay_updated_explanation: "Ваш оÑновной поток наполнÑетÑÑ Ð²Ð°ÑˆÐ¸Ð¼Ð¸ контактами, метками, за которыми вы Ñледите и запиÑÑми неÑкольких популÑрных членов ÑообщеÑтва." contacts_not_visible: "Контакты в Ñтом аÑпекте не Ñмогут видеть друг друга." - contacts_visible: "Контакты в Ñтом аÑпекте могут видеть друг друга" + contacts_visible: "Контакты в Ñтом аÑпекте могут видеть друг друга." create: failure: "Ðе удалоÑÑŒ Ñоздать аÑпект." success: "Ваш новый аÑпект %{name} Ñоздан" @@ -265,11 +265,11 @@ ru: correct_the_following_errors_and_try_again: "ИÑправьте ошибки и попробуйте Ñнова." invalid_fields: "ÐедейÑтвительные полÑ" fill_me_out: "Заполнить" - find_people: "ПоиÑк людей или меток" + find_people: "ПоиÑк людей или #меток" hide: "Скрыть" home: show: - already_account: "уже еÑÑ‚ÑŒ ÑƒÑ‡Ñ‘Ñ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ?" + already_account: "уже еÑÑ‚ÑŒ аккаунт?" choice: "Выбор" choice_explanation: "ДиаÑпора позволÑет Ñортировать группы контактов, называемые аÑпектами. ÐÑпекты - ÑƒÐ½Ð¸ÐºÐ°Ð»ÑŒÐ½Ð°Ñ Ð¾ÑобенноÑÑ‚ÑŒ диаÑпоры. Они позволÑÑŽÑ‚ обеÑпечить приватноÑÑ‚ÑŒ ваших фотографий, иÑторий и Ñ‚.д. ПоÑледние будут доÑтупны только Ð´Ð»Ñ Ñ‚ÐµÑ… людей, которые принадлежат ÑоответÑтвующему аÑпекту." learn_about_host: "Узнайте о том, как организовать Ñвой ÑобÑтвенный Ñервер ДиаÑпоры." @@ -290,7 +290,7 @@ ru: already_sent: "Ð’Ñ‹ уже приглаÑили Ñтого человека." no_more: "У Ð²Ð°Ñ Ð·Ð°ÐºÐ¾Ð½Ñ‡Ð¸Ð»Ð¸ÑÑŒ приглашениÑ." own_address: "Ð’Ñ‹ не можете отправить приглашение на ваш ÑобÑтвенный адреÑ." - rejected: "Следующие адреÑа Ñлектронной почты имеют проблемы:" + rejected: "ЕÑÑ‚ÑŒ проблемы Ñо Ñледующими адреÑами Ñлектронной почты:" sent: "Ваши Ð¿Ñ€Ð¸Ð³Ð»Ð°ÑˆÐµÐ½Ð¸Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ñ‹:" edit: accept_your_invitation: "ПринÑÑ‚ÑŒ ваше приглашение" @@ -310,7 +310,7 @@ ru: layouts: application: powered_by: "ПОДДЕРЖИВÐЕТСЯ ДИÐСПОРОЙ*" - public_feed: "ОбщеÑтвенный канал диаÑпоры Ð´Ð»Ñ %{name}" + public_feed: "ОбщеÑтвенный канал ДиаÑпоры Ð´Ð»Ñ %{name}" toggle: обычный/мобильный whats_new: "что нового?" your_aspects: "Ваши аÑпекты" @@ -361,7 +361,7 @@ ru: zero: "%{actors} также прокомментировали %{post_link} %{post_author}." also_commented_deleted: few: "%{actors} комментировали ваше удаленное Ñообщение." - many: "%{actors} комментировали ваше удаленое Ñообщение." + many: "%{actors} комментировали ваше удаленное Ñообщение." one: "%{actors} комментировал(а) ваше удаленное Ñообщение." other: "%{actors} комментировали ваше удаленное Ñообщение." two: "%{actors} комментировали удаленое Ñообщение." @@ -400,12 +400,12 @@ ru: two: "%{actors} понравилаÑÑŒ ваша %{post_link}." zero: "%{actors} понравилаÑÑŒ ваша %{post_link}." liked_post_deleted: - few: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." - many: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." - one: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." - other: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." + few: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." + many: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." + one: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." + other: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." two: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." - zero: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." + zero: "%{actors} нравилаÑÑŒ ваша ÑƒÐ´Ð°Ð»ÐµÐ½Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ." mentioned: few: "%{actors} упомÑнули Ð²Ð°Ñ Ð² %{post_link}." many: "%{actors} упомÑнули Ð²Ð°Ñ Ð² %{post_link}." @@ -464,7 +464,7 @@ ru: view_post: "ПоÑмотреть запиÑÑŒ >" mentioned: mentioned: "упомÑнул Ð²Ð°Ñ Ð² Ñообщении:" - subject: "%{name} упомÑнул Ð²Ð°Ñ Ð² диаÑпоре*" + subject: "%{name} упомÑнул Ð²Ð°Ñ Ð² ДиаÑпоре*" private_message: reply_to_or_view: "Ответить или поÑмотреть Ñту беÑеду >" reshared: @@ -494,7 +494,7 @@ ru: results_for: "результаты Ð´Ð»Ñ %{params}" index: couldnt_find_them_send_invite: "Ðе можете их найти? Отправьте им приглашение!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "СообщениÑ, отмеченные как %{tag_link}?" no_one_found: "...не удалоÑÑŒ никого найти." no_results: "Введите текÑÑ‚ Ð´Ð»Ñ Ð¿Ð¾Ð¸Ñка." results_for: "результаты поиÑка длÑ" @@ -576,7 +576,7 @@ ru: destroy: "Удалить" not_found: "Извините, мы не Ñмогли найти Ñту запиÑÑŒ." permalink: "поÑтоÑÐ½Ð½Ð°Ñ ÑÑылка" - previous: "предыдущаÑ" + previous: "ранее" privacy: "ПриватноÑÑ‚ÑŒ" profile: "Профиль" profiles: @@ -608,7 +608,7 @@ ru: two: "Отзывы: %{count}" zero: "Отзывы: 0" registrations: - closed: "Ð’ Ñтой чаÑти ДиаÑпоры региÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð°" + closed: "Ðа Ñтом Ñервере ДиаÑпоры региÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð·Ð°ÐºÑ€Ñ‹Ñ‚Ð°." create: success: "Добро пожаловать в ДиаÑпору!" edit: @@ -636,10 +636,10 @@ ru: success: "Теперь вы друзьÑ." helper: new_requests: - few: "%{count} новые[-Ñ…] заÑвки[-ок]!" - many: "%{count} новые[-Ñ…] заÑвки[-ок]!" + few: "Ðовых запроÑов - %{count}!" + many: "Ðовых запроÑов - %{count}!" one: "новый запроÑ!" - other: "%{count} новые[-Ñ…] заÑвки[-ок]!" + other: "Ðовых запроÑов - %{count}!" two: "%{count} новых запроÑов!" zero: "новых запроÑов нет" manage_aspect_contacts: @@ -705,7 +705,7 @@ ru: create_request: "ПоиÑк по идентификатору в ДиаÑпоре" diaspora_handle: diaspora@pod.org enter_a_diaspora_username: "Введите Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð”Ð¸Ð°Ñпоры:" - know_email: "Знаете их email адреÑа? Ð’Ñ‹ должны предложить им приÑоединитÑÑ Ðº ДиаÑпоре " + know_email: "Знаете их email адреÑа? Ð’Ñ‹ можете предложить им приÑоединитьÑÑ Ðº ДиаÑпоре " your_diaspora_username_is: "Ваше Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð”Ð¸Ð°Ñпоры: %{diaspora_handle}" aspect_dropdown: add_to_aspect: "Добавить контакт" @@ -729,7 +729,7 @@ ru: invite_someone: "ПриглаÑить кого-нибудь" invite_your_friends: "ПриглаÑить друзей" invites: "ПриглашениÑ" - invites_closed: "Ð’ данный момент возможноÑÑ‚ÑŒ приглашений закрыта в Ñтой чаÑти ДиаÑпоры" + invites_closed: "Ð’ данный момент возможноÑÑ‚ÑŒ приглашений закрыта на Ñтом Ñервере ДиаÑпоры" notification: new: "Ðовый %{type} из %{from}" public_explain: @@ -750,6 +750,7 @@ ru: hello: "Ð’Ñем привет, Ñ #%{new_user_tag}." i_like: "Мне интереÑны метки %{tags}." invited_by: "СпаÑибо за приглашение, " + newhere: "Ðовичок" post_a_message_to: "Опубликовать Ñообщение Ð´Ð»Ñ %{aspect}" posting: Отправка... publishing_to: "Ð¿ÑƒÐ±Ð»Ð¸ÐºÐ°Ñ†Ð¸Ñ Ð²:" @@ -770,7 +771,7 @@ ru: shared_with: "Ð”Ð»Ñ Ð°Ñпектов: %{aspect_names}" unlike: "Ðе нравитÑÑ" via: "через %{link}" - viewable_to_anyone: "Ðту запиÑÑŒ может видеть любой в Интернете" + viewable_to_anyone: "Ðту запиÑÑŒ может видеть любой в интернете" status_messages: create: success: "УÑпешно упомÑнут: %{names}" @@ -790,12 +791,12 @@ ru: stream_helper: hide_comments: "Скрыть вÑе комментарии" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "Показать еще %{count} комментариев" + many: "Показать еще %{count} комментариев" + one: "Показать еще комментарии" + other: "Показать еще %{count} комментариев" + two: "Показать еще два комментариÑ" + zero: "Больше нет комментариев" streams: aspects: title: "ÐÑпекты" @@ -844,11 +845,11 @@ ru: show: connect_to_cubbies: "Подключение к Cubbi.es" connecting_is_simple: "Подключить аккаунт ДиаÑпоры легко! ПроÑто введите ваш идентификатор в ДиаÑпоре (<b>%{diaspora_id}</b>) на <a href='%{href_link}'>Ñтранице наÑтроек</a> cubbies и нажмите \"подключить\"." - daniels_account: "ДиаÑпора-аккаунт Даниила" + daniels_account: "Ðккаунт Даниила в ДиаÑпоре" log_in_with_diaspora_is_comming: "Очень Ñкоро вы Ñможете подключатьÑÑ Ðº новым приложениÑм без необходимоÑти заводить новую учетную запиÑÑŒ вне ДиаÑпоры." love_to_try: "Мы будем рады, еÑли вы попробуете Ñто." making_the_connection: "Создание подключениÑ" - screenshot_explanation: "%{link1}. Ðто оÑобенно ÑвÑзано Ñ %{link2}." + screenshot_explanation: "%{link1}. Ðтот аккаунт cubbi ÑвÑзан Ñ %{link2}." sign_up_today: "ЗарегиÑтрируйтеÑÑŒ прÑмо ÑейчаÑ!" typical_userpage: "Ð¢Ð¸Ð¿Ð¸Ñ‡Ð½Ð°Ñ cubbi.es Ñтраница" via: "(via %{link})" @@ -928,7 +929,7 @@ ru: webfinger: fetch_failed: "Ðе удалоÑÑŒ получить профиль Ð´Ð»Ñ %{profile_url}" hcard_fetch_failed: "Возникла проблема при получении hcard Ð´Ð»Ñ %{account}" - no_person_constructed: "Ðи одно лицо не может быть Ñобрано из Ñтой hcard." - not_enabled: "webfinger не будет включен Ð´Ð»Ñ Ñ…Ð¾Ñта %{account}'s" + no_person_constructed: "Ðи одна перÑона не может быть Ñобрана из Ñтой hcard." + not_enabled: "webfinger не будет включен Ð´Ð»Ñ Ñ…Ð¾Ñта %{account}" xrd_fetch_failed: "Произошла ошибка при получении xrd Ñ %{account}" welcome: "Добро пожаловать!" diff --git a/config/locales/diaspora/sk.yml b/config/locales/diaspora/sk.yml index 9de83b3822ded9ee9e22c24fda61402ec87d746d..97426d6a59c09fd2ff093baa27afd9534db82ec5 100644 --- a/config/locales/diaspora/sk.yml +++ b/config/locales/diaspora/sk.yml @@ -29,7 +29,7 @@ sk: reshare: attributes: root_guid: - taken: "O tento prÃspevok ste sa už znova podelili!" + taken: "To je dobré, Äo? Tento prÃspevok ste sa už raz znova zdieľali!" user: attributes: email: @@ -106,21 +106,21 @@ sk: do_you: "Už:" email_feedback: "NapÃÅ¡te nám svoj názor na %{link}, ak uprednostňujete tento spôsob" feature_suggestion: "– máte nápad na novú funkciu %{link}?" - find_a_bug: "– ste naÅ¡li chybu %{link}?" - have_a_question: "– máte otázku %{link}?" + find_a_bug: "– ste naÅ¡li %{link}?" + have_a_question: "– máte %{link}?" here_to_help: "Komunita Diaspory je tu!" need_help: "Potrebujete pomoc?" satisfaction: "%{link}: podpora od ostatných použÃvateľov" - tag_bug: "#bug" - tag_feature: "#feature" - tag_question: "#question" - tutorials_wiki_and_forum: "%{tutorial} & %{wiki} & %{forum}: Community-powered tutorials, how-to, and news" + tag_bug: "chybu" + tag_feature: "funkciu" + tag_question: "otázku" + tutorials_wiki_and_forum: "%{tutorial}, %{wiki} a %{forum}: prÃruÄky, ktoré vytvorili Älenovia komunity, návody a novinky" introduce_yourself: "Toto je vaÅ¡a nástenka. PoÄte sa predstaviÅ¥." keep_us_running: "Na udržanie %{pod} v dobrej kondÃcii kúpte svojÃm prÃspevkom naÅ¡im serverom ich mesaÄnú dávku kávy vo forme opráv!" new_here: - follow: "Follow %{link} and welcome new users to Diaspora*!" - learn_more: "Learn more" - title: "Welcome New Users" + follow: "Sledujte %{link} a privÃtajte nových použÃvateľov na Diaspore*!" + learn_more: "ZistiÅ¥ viac" + title: "PrivÃtajte nových použÃvateľov" no_contacts: "Žiadne kontakty" no_tags: "+ Nájdite Å¡tÃtok, ktorý budete sledovaÅ¥" people_sharing_with_you: "Ľudia, s ktorými ste sa s nieÄim podelili" @@ -129,7 +129,7 @@ sk: content: "S Diasporou môžete prepojiÅ¥ tieto služby:" heading: "PripojiÅ¥ sa k službám" unfollow_tag: "PrestaÅ¥ sledovaÅ¥ #%{tag}" - welcome_to_diaspora: "Vitaj na Diaspore, %{name}!" + welcome_to_diaspora: "Vitajte na Diaspore, %{name}!" your_aspects: "VaÅ¡e kategórie" many: "%{count} kategóriÃ" move_contact: @@ -172,11 +172,11 @@ sk: back: "Späť" blocks: create: - failure: "I couldn't ignore that user. #evasion" - success: "Alright, you won't see that user in your stream again. #silencio!" + failure: "Tohto použÃvateľa nemôžete ignorovaÅ¥. #evasion" + success: "V poriadku, tohto použÃvateľa na svojej nástenke znova neuvidÃte. #silencio!" destroy: - failure: "I couldn't stop ignoring that user. #evasion" - success: "Let's see what they have to say! #sayhello" + failure: "Ignorovanie tohto použÃvateľa sa nepodarilo zruÅ¡iÅ¥. #evasion" + success: "Pozrime sa, Äo hovoria! #sayhello" bookmarklet: explanation: "PÃÅ¡te na Diasporu z hocikiaľ tak, že si pridáte do záložiek odkaz %{link}." explanation_link_text: "tento odkaz" @@ -301,7 +301,7 @@ sk: comma_seperated_plz: "Môžete vložiÅ¥ viacero adries; oddeľte ich Äiarkou." if_they_accept_info: "Po odsúhlasenà budú pozvanà použÃvatelia pridanà do prÃsluÅ¡nej kategórie." invite_someone_to_join: "Pozvite niekoho na Diasporu*!" - language: "Language" + language: "Jazyk" personal_message: "Súkromná správa" resend: "PreposlaÅ¥" send_an_invitation: "PoslaÅ¥ pozvánku" @@ -494,7 +494,7 @@ sk: results_for: "výsledky pre %{params}" index: couldnt_find_them_send_invite: "NenaÅ¡li ste ich? Pozvite ich!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "Hľadajú sa prÃspevky oznaÄené %{tag_link}?" no_one_found: "...a nikto sa nenaÅ¡iel." no_results: "Hej! MusÃte nieÄo vyhľadaÅ¥." results_for: "Výsledky vyhľadávania pre" @@ -518,7 +518,7 @@ sk: show: does_not_exist: "Osoba neexistuje!" has_not_shared_with_you_yet: "%{name} sa s vami eÅ¡te nepodelil(a) o žiadne prÃspevky!" - ignoring: "You are ignoring all posts from %{name}." + ignoring: "Ignorujete vÅ¡etky prÃspevky, ktoré vytvoril(a) %{name}." incoming_request: "%{name} sa s vami chce o nieÄo podeliÅ¥" mention: "Zmienka" message: "Správa" @@ -556,7 +556,7 @@ sk: invalid_ext: "{file} má neplatnú prÃponu. Povolené sú len prÃpony {extensions}." size_error: "{file} je prÃliÅ¡ veľký, maximálna povolená veľkosÅ¥ je {sizeLimit}." new_profile_photo: - or_select_one_existing: "or select one from your already existing %{photos}" + or_select_one_existing: "alebo vyberte jednu z fotiek, ktoré už existujú %{photos} " upload: "NahraÅ¥ novú profilovú fotku!" photo: view_all: "zobraziÅ¥ vÅ¡etky fotky použ. %{name}" @@ -577,7 +577,7 @@ sk: not_found: "PrepáÄte, tento prÃspevok sa nepodarilo nájsÅ¥." permalink: "trvalý odkaz" previous: "Predchádzajúce" - privacy: "Privacy" + privacy: "Ochrana súkromia" profile: "Profil" profiles: edit: @@ -625,7 +625,7 @@ sk: enter_password_again: "Zadajte rovnaké heslo ako predtým" enter_username: "Zadajte použÃvateľské meno (iba pÃsmená, ÄÃslice a podÄiarkovnÃky)" join_the_movement: "Pripojte sa k hnutiu!" - sign_up_message: "Prepojenie cez sociálne siete s < 3" + sign_up_message: "Prepojenie cez sociálne siete s ♥" requests: create: sending: "Posiela sa..." @@ -675,7 +675,7 @@ sk: failure: error: "pri pripájanà k službe nastala chyba" finder: - fetching_contacts: "Diaspora is populating your %{service} friends please check back in a few minutes." + fetching_contacts: "Diaspora pridáva údaje o vaÅ¡ich priateľoch zo siete %{service}, prosÃm, vráťte sa sem o niekoľko minút." no_friends: "Žiadni priatelia z Facebooku sa nenaÅ¡li." service_friends: "Priatelia zo siete %{service}" index: @@ -697,8 +697,8 @@ sk: settings: "Nastavenia" share_visibilites: update: - post_hidden_and_muted: "%{name}'s post has been hidden, and notifications have been muted." - see_it_on_their_profile: "If you want to see updates on this post, visit %{name}'s profile page." + post_hidden_and_muted: "PrÃspevok, ktorý vytvoril(a) %{name} ste schovali a posielanie oznamov bolo zastavené." + see_it_on_their_profile: "Ak si chcete preÄÃtaÅ¥ novÅ¡ie verzie tohto prÃspevku, navÅ¡tÃvte stránku s profilom použ. %{name}." shared: add_contact: add_new_contact: "PridaÅ¥ nový kontakt" @@ -731,12 +731,12 @@ sk: invites: "Pozvánky" invites_closed: "Pozývanie je na tomto pode Diaspory momentálne pozastavené" notification: - new: "Nový %{type} od %{from}" + new: "Nový %{type} od použ. %{from}" public_explain: control_your_audience: "KontrolovaÅ¥ publikum" logged_in: "Prihlásenie na %{service}" - manage: "SpravovaÅ¥ pripojené služby" - new_user_welcome_message: "Use #hashtags to classify your posts and find people who share your interests. Call out awesome people with @Mentions" + manage: "SpravovaÅ¥ prepojené služby" + new_user_welcome_message: "Na roztriedenie svojich prÃspevkov a hľadanie ľudÃ, ktorà majú rovnaké konÃÄky, použÃvajte #hashtagy. Nájdite super ľudà pomocou @Mentions" outside: "Verejnú správu môžu vidieÅ¥ aj použÃvatelia mimo Diaspory." share: "ZdieľaÅ¥" title: "NastaviÅ¥ pripojené služby" @@ -747,9 +747,10 @@ sk: discard_post: "VymazaÅ¥ prÃspevok" make_public: "ZverejniÅ¥" new_user_prefill: - hello: "Hej, vÅ¡etci, Som #%{new_user_tag}. " + hello: "Hej, vÅ¡etci, som #%{new_user_tag}. " i_like: "ZaujÃma ma %{tags}." - invited_by: "Thanks for the invite, " + invited_by: "VÄaka za pozvanie, " + newhere: "NewHere" post_a_message_to: "PoslaÅ¥ správu na %{aspect}" posting: "Posiela sa..." publishing_to: "Publikuje sa na: " @@ -760,12 +761,12 @@ sk: reshare: reshare: "Znovu sa podeliÅ¥" stream_element: - connect_to_comment: "Connect to this user to comment on their post" - currently_unavailable: "commenting currently unavailable" + connect_to_comment: "Pripojte sa k tomuto použÃvateľovi a okomentujte jeho prÃspevok" + currently_unavailable: "momentálne sa nedajú pÃsaÅ¥ komentáre" dislike: "NepáÄi sa mi to" - hide_and_mute: "SchovaÅ¥ a vypnúť" - ignore_user: "Ignore %{name}" - ignore_user_description: "Ignore and remove user from all aspects?" + hide_and_mute: "SchovaÅ¥ prÃspevok a vypnúť oznamy" + ignore_user: "IgnorovaÅ¥ použ. %{name}" + ignore_user_description: "IgnorovaÅ¥ použ. a odstrániÅ¥ ho (ju) zo vÅ¡etkých kategóriÃ?" like: "PáÄi sa mi to" shared_with: "Zdieľa sa s kategóriami: %{aspect_names}" unlike: "OdznaÄiÅ¥" @@ -790,24 +791,24 @@ sk: stream_helper: hide_comments: "skryÅ¥ komentáre" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "ZobraziÅ¥ ÄalÅ¡Ãch %{count} komentárov" + many: "ZobraziÅ¥ ÄalÅ¡Ãch %{count} komentárov" + one: "ZobraziÅ¥ eÅ¡te jeden komentár" + other: "ZobraziÅ¥ ÄalÅ¡ie %{count} komentáre" + two: "ZobraziÅ¥ ÄalÅ¡ie dva komentáre" + zero: "Žiadne ÄalÅ¡ie komentáre nie sú" streams: aspects: title: "VaÅ¡e kategórie" aspects_stream: "Kategórie" - commented_on: "komentované" + commented_on: "okomentované" community_spotlight_stream: "V centre pozornosti komunity" followed_tag: - add_a_tag: "Add a tag" - contacts_title: "Ľudia, ktorà sledujú tieto Å¡tÃtky" - follow: "Follow" + add_a_tag: "PridaÅ¥ znaÄku" + contacts_title: "Ľudia, ktorà sledujú tieto znaÄky" + follow: "SledovaÅ¥" title: "#Sledované Å¡tÃtky" - followed_tags_stream: "#Sledované Å¡tÃtky" + followed_tags_stream: "#ZnaÄky, ktoré sledujete" mentioned_stream: "@Zmienky" mentions: contacts_title: "Ľudia, ktorà vás spomenuli" @@ -823,14 +824,14 @@ sk: tags: contacts_title: "Ľudia, ktorà hľadajú tieto Å¡tÃtky" tag_prefill_text: "The thing about %{tag_name} is... " - title: "PrÃspevky so Å¡tÃtkami: %{tags}" + title: "PrÃspevky so znaÄkami: %{tags}" tag_followings: create: - failure: "Nedá sa sledovaÅ¥: #%{name}" - success: "ÚspeÅ¡ne sledujete: #%{name}" + failure: "Nedá sa sledovaÅ¥ použ. #%{name}. Nesledujte ho (ju) už?" + success: "Hurá! Teraz sledujete použ. #%{name}." destroy: - failure: "Nepodarilo sa zruÅ¡iÅ¥ sledovanie: #%{name}" - success: "ÚspeÅ¡ne ste prestali sledovaÅ¥: #%{name}" + failure: "Nepodarilo sa zruÅ¡iÅ¥ sledovanie použ. #%{name}. Možno ste ho (ju) už prestali sledovaÅ¥." + success: "No! Už viac nesledujete použ. #%{name}." tags: show: follow: "SledovaÅ¥ #%{tag}" @@ -860,9 +861,9 @@ sk: email_confirmed: "E-mail %{email} aktivovaný" email_not_confirmed: "E-mail sa nepodarilo aktivovaÅ¥. Zlý odkaz?" destroy: - no_password: "Please enter your current password to close your account." - success: "Your account has been locked. It may take 20 minutes for us to finish closing your account. Thank you for trying Diaspora." - wrong_password: "The entered password didn't match your current password." + no_password: "Zadajte, prosÃm svoje súÄasné heslo, aby ste mohli zruÅ¡iÅ¥ svoj úÄet." + success: "Váš úÄet bol uzamknutý. DokonÄiÅ¥ zruÅ¡enie vášho úÄtu nám môže trvaÅ¥ 20 minút. ÄŽakujeme, že ste vyskúšali Diasporu." + wrong_password: "Zadané heslo sa nezhoduje s vaÅ¡Ãm súÄasným heslom." edit: also_commented: "...niekto okomentuje aj prÃspevok Äloveka vo vaÅ¡ich kontaktoch?" change: "ZmeniÅ¥" @@ -881,7 +882,7 @@ sk: liked: "...sa niekomu páÄi váš prÃspevok?" mentioned: "...vás spomenuli v prÃspevku?" new_password: "Nové heslo" - photo_export_unavailable: "Photo exporting currently unavailable" + photo_export_unavailable: "Momentálne sa fotky nedajú exportovaÅ¥" private_message: "...dostanete súkromnú správu?" receive_email_notifications: "PoslaÅ¥ oznam e-mailom, ak" reshared: "...sa niekto znova podelà o váš prÃspevok?" @@ -895,7 +896,7 @@ sk: awesome_take_me_to_diaspora: "Super! PrejsÅ¥ na Diasporu*" community_welcome: "Komunita Diaspory je Å¡Å¥astná, že ste na jej palube!" hashtag_explanation: "Hashtagy vám umožňujú hovoriÅ¥ o tom, Äo vás zaujÃma a sledovaÅ¥ diskusie o takýchto veciach. Je to aj skvelý spôsob, ako nájsÅ¥ nových ľudà na Diaspore." - hashtag_suggestions: "Skúste Å¡tÃtky ako napr. #art, #movies, #gif, atÄ." + hashtag_suggestions: "Skúste sledovaÅ¥ znaÄky, ako napr. #art, #movies, #gif, atÄ." hooking_up_fb: "prepojÃte svoj úÄet na Facebooku" saved: Uložené! we_can_speed_things_up: "Môžeme veci urýchliÅ¥, ak" @@ -910,9 +911,9 @@ sk: simply_visit: "Jednoducho navÅ¡tÃvte" works_on_modern: "Funguje na vÅ¡etkých moderných smartfónoch" privacy_settings: - ignored_users: "Ignored Users" - stop_ignoring: "Stop ignoring" - title: "Privacy Settings" + ignored_users: "PoužÃvatelia, ktorých ignorujete" + stop_ignoring: "PrestaÅ¥ ignorovaÅ¥" + title: "Nastavenia ochrany súkromia" public: does_not_exist: "PoužÃvateľ %{username} neexistuje!" update: diff --git a/config/locales/diaspora/sl.yml b/config/locales/diaspora/sl.yml index 026d14fda51c0f0518a4e24c5e66e1deadf4cd8f..28abefa7cb4cc4df9e8ed4902c2049717675a63f 100644 --- a/config/locales/diaspora/sl.yml +++ b/config/locales/diaspora/sl.yml @@ -485,7 +485,7 @@ sl: password_confirmation: "Potrditev gesla" people: add_contact_small: - add_contact_from_tag: "dodaj osebo iz zaznamka" + add_contact_from_tag: "dodaj osebo iz oznake" aspect_list: edit_membership: "uredi Älane skupin" few: "%{count} osebe" @@ -494,7 +494,7 @@ sl: results_for: "zadetkov za %{params}" index: couldnt_find_them_send_invite: "Jih niste naÅ¡li? PoÅ¡ljite povabilo!" - looking_for: "IÅ¡Äete morda objave z zaznamkom %{tag_link}?" + looking_for: "IÅ¡Äete morda objave z oznako %{tag_link}?" no_one_found: "...nikogar ni bilo mogoÄe najti." no_results: "Ja, halo! Za iskanje je potrebno vpisati pogoj." results_for: "rezultati iskanja za" @@ -752,6 +752,7 @@ sl: hello: "Zdravo vsem. Jaz sem #%{new_user_tag}. " i_like: "Zanimajo me naslednje oznake %{tags}." invited_by: "Hvala za povabilo," + newhere: "NewHere" post_a_message_to: "Objavi sporoÄilo v %{aspect}" posting: Objavljam... publishing_to: "objavljanje do: " @@ -808,8 +809,8 @@ sl: add_a_tag: "Dodaj oznako" contacts_title: "Ljudje, ki so izbrskali te oznake" follow: "Sledi" - title: "#Sledi zaznamkom" - followed_tags_stream: "#Sledene objave" + title: "#Sledene oznake" + followed_tags_stream: "#Sledene oznake" mentioned_stream: "@Mentions" mentions: contacts_title: "Ljudje, ki so vas omenili" @@ -896,7 +897,7 @@ sl: getting_started: awesome_take_me_to_diaspora: "Popelji me v Diasporo*" community_welcome: "Skupnost Diaspora je vesela, da vas ima na krovu!" - hashtag_explanation: "Zaznamki vam omogoÄajo, da govorite in sledite vaÅ¡im interesom. So tudi dober naÄin za iskanje novih ljudi na Diaspori." + hashtag_explanation: "Oznake vam omogoÄajo, da govorite in sledite vaÅ¡im interesom. So tudi dober naÄin za iskanje novih ljudi na Diaspori." hashtag_suggestions: "Poskusite lahko oznake, kot so #art, #movies, #gif in podobno." hooking_up_fb: "povezavo vaÅ¡ega Facebook raÄuna" saved: Shranjeno! diff --git a/config/locales/diaspora/sq.yml b/config/locales/diaspora/sq.yml index b8fced04c603b241cc32bbc180ef9037bc5faea5..84e3e38babdfe049dbd8846f5c879d4c4157701d 100644 --- a/config/locales/diaspora/sq.yml +++ b/config/locales/diaspora/sq.yml @@ -750,6 +750,7 @@ sq: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post a message to %{aspect}" posting: Posting... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/sv.yml b/config/locales/diaspora/sv.yml index bb848e9682a25fe5cdd8736c16f47448e32205f9..e9f5818e6e02fa4966ce7a0294496c77ba0e4107 100644 --- a/config/locales/diaspora/sv.yml +++ b/config/locales/diaspora/sv.yml @@ -61,12 +61,12 @@ sv: done_editing: "dölj" aspect_listings: add_an_aspect: "+ Lägg till en aspekt" - deselect_all: "Deselect all" + deselect_all: "Avmarkera alla" edit_aspect: "Ändra %{name}" - select_all: "Select all" + select_all: "Markera alla" aspect_stream: - stay_updated: "Stay Updated" - stay_updated_explanation: "Your main stream is populated with all of your contacts, tags you follow, and posts from some creative members of the community." + stay_updated: "HÃ¥ll dig uppdaterad" + stay_updated_explanation: "Din huvudström innefattar alla dina kontakter, taggar du följer och inlägg frÃ¥n nÃ¥gra kreativa medlemmar i gemenskapen." contacts_not_visible: "Kontakterna pÃ¥ den här aspekten kommer inte kunna se varandra." contacts_visible: "Kontakterna pÃ¥ den här aspekten kommer kunna se varandra." create: @@ -114,13 +114,13 @@ sv: tag_bug: "#bug" tag_feature: "#feature" tag_question: "#question" - tutorials_wiki_and_forum: "%{tutorial} & %{wiki} & %{forum}: Community-powered tutorials, how-to, and news" - introduce_yourself: "This is your stream. Jump in and introduce yourself." + tutorials_wiki_and_forum: "%{tutorial} & %{wiki} & %{forum}: Gemenskapens handledning, guider och nyheter" + introduce_yourself: "Det här är din ström. Hoppa in och presentera dig själv." keep_us_running: "HÃ¥ll farten hos %{pod} uppe och köp kaffe till servrarna genom en mÃ¥nadsdonation!" new_here: - follow: "Follow %{link} and welcome new users to Diaspora*!" - learn_more: "Learn more" - title: "Welcome New Users" + follow: "Följ %{link} och välkomna nya användare av Diaspora*!" + learn_more: "Läs mer" + title: "Välkomna Nya Användare" no_contacts: "Inga kontakter" no_tags: "+ Hitta en tag att följa" people_sharing_with_you: "Personer som delar med dig" @@ -129,7 +129,7 @@ sv: content: "Du kan koppla ihop Diaspora med följande tjänster:" heading: "Ihopkopplade tjänster" unfollow_tag: "Sluta följa #%{tag}" - welcome_to_diaspora: "Welcome to Diaspora, %{name}!" + welcome_to_diaspora: "Välkommen till Diaspora, %{name}!" your_aspects: "Dina aspekter" many: "%{count} aspekter" move_contact: @@ -140,8 +140,8 @@ sv: create: "Skapa" name: "Namn (endast synligt för dig)" no_contacts_message: - community_spotlight: "community spotlight" - or_spotlight: "Or you can share with %{link}" + community_spotlight: "gemenskapens rampljus" + or_spotlight: "Du kan ocksÃ¥ dela med %{link}" try_adding_some_more_contacts: "Du kan söka efter (längst upp) eller bjuda in (till höger) fler personer." you_should_add_some_more_contacts: "Du bör lägga till nÃ¥gra fler kontakter!" no_posts_message: @@ -156,7 +156,7 @@ sv: selected_contacts: manage_your_aspects: "Hantera dina aspekter." no_contacts: "Du har ännu inte nÃ¥gra kontakter här." - view_all_community_spotlight: "See all community spotlight" + view_all_community_spotlight: "Se alla gemenskapens rampljus" view_all_contacts: "Se alla kontakter" show: edit_aspect: "ändra aspekt" @@ -172,11 +172,11 @@ sv: back: "Tillbaka" blocks: create: - failure: "I couldn't ignore that user. #evasion" - success: "Alright, you won't see that user in your stream again. #silencio!" + failure: "Jag kunde inte ignorera den användaren. #evasion" + success: "NÃ¥väl, du kommer inte att se den användaren i din ström igen. #silencio!" destroy: - failure: "I couldn't stop ignoring that user. #evasion" - success: "Let's see what they have to say! #sayhello" + failure: "Jag kunde inte sluta ignorera den användaren. #evasion" + success: "LÃ¥t oss se vad de har att säga! #sayhello" bookmarklet: explanation: "Bokmärk %{link} för att posta pÃ¥ Diaspora ifrÃ¥n varsomhelst. " explanation_link_text: "denna länk" @@ -217,7 +217,7 @@ sv: sharing: people_sharing: "Personer delar med dig:" spotlight: - community_spotlight: "Community Spotlight" + community_spotlight: "Gemenskapens Rampljus" two: "%{count} kontakter" zero: "kontakter" conversations: @@ -301,7 +301,7 @@ sv: comma_seperated_plz: "Du kan ange flera e-postadresser separerade av kommatecken." if_they_accept_info: "om de accepterar, kommer de bli med pÃ¥ den sida du har bjudit in dem till." invite_someone_to_join: "Bjud in en vän till Diaspora!" - language: "Language" + language: "SprÃ¥k" personal_message: "Personligt meddelande" resend: "Skicka igen" send_an_invitation: "Skicka en inbjudan" @@ -494,7 +494,7 @@ sv: results_for: " resultat för %{params}" index: couldnt_find_them_send_invite: "Fanns de inte här? Skicka en inbjudan!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "Letar du efter inlägg som taggats med %{tag_link}?" no_one_found: "...och ingen hittades." no_results: "Du mÃ¥ste söka efter nÃ¥got." results_for: "Sökresultat för" @@ -518,7 +518,7 @@ sv: show: does_not_exist: "Den här personen finns inte!" has_not_shared_with_you_yet: "%{name} har inte delat nÃ¥gra inlägg med dig än!" - ignoring: "You are ignoring all posts from %{name}." + ignoring: "Du ignorerar alla inlägg frÃ¥n %{name}." incoming_request: "%{name} vill dela med dig" mention: "Nämna" message: "Meddelande" @@ -556,7 +556,7 @@ sv: invalid_ext: "{file} har en ogiltig filändelse. Endast {extensions} är tillÃ¥tna." size_error: "{file} är för stor, maximal tillÃ¥ten filstorlek är {sizeLimit}." new_profile_photo: - or_select_one_existing: "or select one from your already existing %{photos}" + or_select_one_existing: "eller välj ett av dina tidigare %{photos}" upload: "Ladda upp en ny profilbild!" photo: view_all: "visa alla foton som %{name} laddat upp" @@ -577,7 +577,7 @@ sv: not_found: "Tyvärr, men vi kan inte hitta det inlägget." permalink: "permalänk" previous: "föregÃ¥ende" - privacy: "Privacy" + privacy: "Sekretess" profile: "Profil" profiles: edit: @@ -667,15 +667,15 @@ sv: search: "Sök" services: create: - already_authorized: "A user with diaspora id %{diaspora_id} already authorized that %{service_name} account." - failure: "Authentication failed." + already_authorized: "En användare med diaspora-id %{diaspora_id} har redan auktoriserat det %{service_name}-kontot." + failure: "Autentisering misslyckades." success: "Autentiering lyckades." destroy: success: "Du har nu kopplat bort tjänsten." failure: error: "Det blev ett fel vid anslutning till tjänsten" finder: - fetching_contacts: "Diaspora is populating your %{service} friends please check back in a few minutes." + fetching_contacts: "Diaspora fyller listan med dina %{service}-vänner. Vänligen försök igen senare." no_friends: "Hittade inga vänner ifrÃ¥n Facebook." service_friends: "%{service}-vänner" index: @@ -697,8 +697,8 @@ sv: settings: "Inställningar" share_visibilites: update: - post_hidden_and_muted: "%{name}'s post has been hidden, and notifications have been muted." - see_it_on_their_profile: "If you want to see updates on this post, visit %{name}'s profile page." + post_hidden_and_muted: "%{name}s inlägg har dolts och notiser har tystats." + see_it_on_their_profile: "Om du vill se uppdateringar för detta inlägg besöker du %{name}s profilsida." shared: add_contact: add_new_contact: "Lägg till en ny kontakt" @@ -733,23 +733,24 @@ sv: notification: new: "Ny %{type} frÃ¥n %{from}" public_explain: - control_your_audience: "Control your Audience" + control_your_audience: "Bestäm din Publik" logged_in: "inloggad pÃ¥ %{service}" manage: "hantera anslutna tjänster" - new_user_welcome_message: "Use #hashtags to classify your posts and find people who share your interests. Call out awesome people with @Mentions" + new_user_welcome_message: "Använd #hashtaggar för att klassificera dina inlägg och hitta folk som delar dina intressen. Ropa ut till häftiga personer med @Mentions" outside: "Publika meddelanden kan läsas av användare utanför Diaspora." - share: "Share" + share: "Dela" title: "Hantera anslutna tjänster" - visibility_dropdown: "Use this dropdown to change visibility of your post. (We suggest you make this first one public.)" + visibility_dropdown: "Använd den här rullisten för att ändra synligheten för ditt inlägg (vi föreslÃ¥r att du gör det här första inlägget publikt)." publisher: all: "alla" all_contacts: "alla kontakter" discard_post: "Släng inlägg" make_public: "gör publik" new_user_prefill: - hello: "Hey everyone, I'm #%{new_user_tag}. " - i_like: "I'm interested in %{tags}." - invited_by: "Thanks for the invite, " + hello: "Hej allihop, jag är #%{new_user_tag}. " + i_like: "Jag är intresserad av %{tags}." + invited_by: "Tack för inbjudan, " + newhere: "NewHere" post_a_message_to: "Skicka ett meddelande till %{aspect}" posting: Skickar... publishing_to: "publicerar till: " @@ -760,12 +761,12 @@ sv: reshare: reshare: "Ã…terdela" stream_element: - connect_to_comment: "Connect to this user to comment on their post" - currently_unavailable: "commenting currently unavailable" + connect_to_comment: "Anslut till den här användaren för att kommentera pÃ¥ deras inlägg" + currently_unavailable: "kommentering är för närvarande otillgängligt" dislike: "Jag ogillar det här" hide_and_mute: "Dölj och ignorera" - ignore_user: "Ignore %{name}" - ignore_user_description: "Ignore and remove user from all aspects?" + ignore_user: "Ignorera %{name}" + ignore_user_description: "Ignorera och ta bort användaren frÃ¥n alla aspekter?" like: "Jag gillar det här" shared_with: "Delas med: %{aspect_names}" unlike: "Sluta gilla" @@ -790,39 +791,39 @@ sv: stream_helper: hide_comments: "Dölj alla kommentarer" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "Visa %{count} ytterligare kommentarer" + many: "Visa %{count} ytterligare kommentarer" + one: "Visa en ytterligare kommentar" + other: "Visa %{count} ytterligare kommentarer" + two: "Visa tvÃ¥ ytterligare kommentarer" + zero: "Inga fler kommentarer" streams: aspects: - title: "Your Aspects" - aspects_stream: "Aspects" - commented_on: "commented on" - community_spotlight_stream: "Community Spotlight" + title: "Dina Aspekter" + aspects_stream: "Aspekter" + commented_on: "kommenterade pÃ¥" + community_spotlight_stream: "Gemenskapens Rampljus" followed_tag: - add_a_tag: "Add a tag" - contacts_title: "People who dig these tags" - follow: "Follow" - title: "#Followed Tags" - followed_tags_stream: "#Followed Tags" + add_a_tag: "Lägg till en tagg" + contacts_title: "Folk som gillar dessa taggar" + follow: "Följ" + title: "#Följda Taggar" + followed_tags_stream: "#Följda Taggar" mentioned_stream: "@Mentions" mentions: contacts_title: "Personer som omnämnt dig" - title: "Du är omnämnd" + title: "Omnämnanden" multi: - contacts_title: "People in your Stream" - title: "Stream" - posted: "posted" + contacts_title: "Folk i din Ström" + title: "Ström" + posted: "skrev ett inlägg" public: contacts_title: "Postade nyligen" title: "Offentlig Aktivitet" - recently: "recently:" + recently: "nyligen:" tags: contacts_title: "Människor som gillar de här taggarna" - tag_prefill_text: "The thing about %{tag_name} is... " + tag_prefill_text: "Det intressanta med %{tag_name} är... " title: "Postade taggar: %{tags}" tag_followings: create: @@ -860,9 +861,9 @@ sv: email_confirmed: "E-mail %{email} aktiverad" email_not_confirmed: "E-mail kunde inte aktiveras. Fel länk?" destroy: - no_password: "Please enter your current password to close your account." - success: "Your account has been locked. It may take 20 minutes for us to finish closing your account. Thank you for trying Diaspora." - wrong_password: "The entered password didn't match your current password." + no_password: "Vänligen ange ditt nuvarande lösenord för att avsluta ditt konto." + success: "Ditt konto har lÃ¥sts. Det har ta 20 minuter för oss att avsluta ditt konto. Tack för att du testade Diaspora." + wrong_password: "Det angivna lösenordet stämde inte med ditt nuvarande lösenord." edit: also_commented: "...nÃ¥gon har ocksÃ¥ kommenterat pÃ¥ din kontakts post?" change: "Ändra" @@ -877,32 +878,32 @@ sv: edit_account: "Ändra konto" email_awaiting_confirmation: "Vi har skickat dig en länk till %{unconfirmed_email} för aktivering. Innan du har aktiverat din nya adress, kommer vi fortsätta att använda %{email}." export_data: "Exportera data" - getting_started: "New User Prefrences" + getting_started: "Inställningar för Ny Användare" liked: "...nÃ¥gon gillar ditt inlägg?" mentioned: "...du är omnämnd i en post?" new_password: "Nytt lösenord" - photo_export_unavailable: "Photo exporting currently unavailable" + photo_export_unavailable: "Export av foton är för närvarande otillgängligt" private_message: "...du mottar ett privat meddelande?" receive_email_notifications: "Skicka notiser via e-post när..." reshared: "...nÃ¥gon sprider mina inlägg vidare?" - show_community_spotlight: "Show Community Spotlight in Stream?" - show_getting_started: "Re-enable Getting Started" + show_community_spotlight: "Ska Gemenskapens Rampljus visas i din Ström?" + show_getting_started: "Ã…teraktivera Komma IgÃ¥ng" started_sharing: "...nÃ¥gon börjar dela med dig?" - stream_preferences: "Stream Preferences" + stream_preferences: "Inställningar för din Ström" your_email: "Din epost" your_handle: "Ditt Diaspora ID" getting_started: - awesome_take_me_to_diaspora: "Awesome! Take me to Diaspora*" + awesome_take_me_to_diaspora: "Häftigt! Ta mig till Diaspora*" community_welcome: "Vi i Diasporas community är glada att ha dig här!" hashtag_explanation: "Hashtaggar gör det möjligt att diskutera och följa dina intressen. Det är ocksÃ¥ ett bra sätt att lära känna nya människor pÃ¥ Diaspora." - hashtag_suggestions: "Try following tags like #art, #movies, #gif, etc." - hooking_up_fb: "hooking up your Facebook account" - saved: Saved! - we_can_speed_things_up: "We can speed things up a bit by" - well_hello_there: "Well, hello there!" - what_are_you_in_to: "What are you into?" + hashtag_suggestions: "Testa att följa taggar sÃ¥som #konst, #film, #gif, etc." + hooking_up_fb: "koppla in ditt Facebook-konto" + saved: Sparat! + we_can_speed_things_up: "Vi kan snabba upp det lite genom att" + well_hello_there: "Hej pÃ¥ dig!" + what_are_you_in_to: "Vad gillar du?" what_facebook_does: "to Diaspora. This will pull your name and photo, and enable cross-positng." - who_are_you: "Who are you?" + who_are_you: "Vem är du?" logged_out: go_mobile: "Använd nu mobilen." on_your_mobile_device: "i din mobil för att komma till Diaspora* mobile." @@ -910,9 +911,9 @@ sv: simply_visit: "Besök helt enkelt" works_on_modern: "Fungerar pÃ¥ alla moderna smartphones" privacy_settings: - ignored_users: "Ignored Users" - stop_ignoring: "Stop ignoring" - title: "Privacy Settings" + ignored_users: "Ignorerade Användare" + stop_ignoring: "Sluta ignorera" + title: "Sekretessinställningar" public: does_not_exist: "Användaren %{username} finns inte!" update: @@ -921,8 +922,8 @@ sv: language_not_changed: "SprÃ¥ket kunde inte ändras" password_changed: "Lösenordet är nu ändrat och klart att användas." password_not_changed: "Lösenordet kunde inte ändras" - settings_not_updated: "Settings update failed" - settings_updated: "Settings updated" + settings_not_updated: "Uppdatering av inställningar misslyckades" + settings_updated: "Inställningar uppdaterades" unconfirmed_email_changed: "E-postadressen har ändrats och behöver aktiveras." unconfirmed_email_not_changed: "Byte av e-postadress misslyckades" webfinger: @@ -931,4 +932,4 @@ sv: no_person_constructed: "Den här personen kunde inte hittas (hcard-fel)." not_enabled: "Webfinger verkar inte vara pÃ¥slaget pÃ¥ %{account}'s server" xrd_fetch_failed: "kunde inte hämta xrd-fil frÃ¥n kontot %{account}" - welcome: Welcome! + welcome: Välkommen! diff --git a/config/locales/diaspora/tr.yml b/config/locales/diaspora/tr.yml index 0e8fe2f01a58d4cc8f538b4acbd66511281031f4..5428cd66a4e70208d1b24f6354657da26f747540 100644 --- a/config/locales/diaspora/tr.yml +++ b/config/locales/diaspora/tr.yml @@ -750,6 +750,7 @@ tr: hello: "Hey herkes, Ben #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "%{aspect} yönüne mesaj gönder " posting: Gönderiliyor... publishing_to: "buraya yayınlanıyor:" diff --git a/config/locales/diaspora/uk.yml b/config/locales/diaspora/uk.yml index 82ca29c306a5be2d8e61d049bf8a1fd1008fd3a5..9e797ec0d7d886291e5013b28b500440b578b983 100644 --- a/config/locales/diaspora/uk.yml +++ b/config/locales/diaspora/uk.yml @@ -750,6 +750,7 @@ uk: hello: "Привіт вÑім, Ñ Ñ‚ÑƒÑ‚ #%{new_user_tag}." i_like: "Я цікавлюÑÑ %{tags}." invited_by: "СпаÑибі за запрошеннÑ," + newhere: "NewHere" post_a_message_to: "Опублікувати Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð´Ð»Ñ %{aspect}" posting: Відправка... publishing_to: "Ð¿ÑƒÐ±Ð»Ñ–ÐºÐ°Ñ†Ñ–Ñ Ð²:" diff --git a/config/locales/diaspora/ur-PK.yml b/config/locales/diaspora/ur-PK.yml index b4d5ac644e836a1c3a2d5e2b2df8d25e7e758c1f..449c7ef0d388802973ad21cc8a6229ad99e1ac4f 100644 --- a/config/locales/diaspora/ur-PK.yml +++ b/config/locales/diaspora/ur-PK.yml @@ -750,6 +750,7 @@ ur-PK: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post a message to %{aspect}" posting: Posting... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/vi.yml b/config/locales/diaspora/vi.yml index 77e475aa5e67f36e9dcd7ac59af0e1d937304cf3..9f6730d9b9c4691e4bdf8b20a4b5da45c55ce654 100644 --- a/config/locales/diaspora/vi.yml +++ b/config/locales/diaspora/vi.yml @@ -750,6 +750,7 @@ vi: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "Post a message to %{aspect}" posting: Posting... publishing_to: "publishing to: " diff --git a/config/locales/diaspora/zh-CN.yml b/config/locales/diaspora/zh-CN.yml index 1cddbe5604f5c5e9255a68a08ad5bf966a2f542b..06e2b711330f9dcbc4405dcd8306229c8fabe9ca 100644 --- a/config/locales/diaspora/zh-CN.yml +++ b/config/locales/diaspora/zh-CN.yml @@ -750,6 +750,7 @@ zh-CN: hello: "Hey everyone, I'm #%{new_user_tag}. " i_like: "I'm interested in %{tags}." invited_by: "Thanks for the invite, " + newhere: "NewHere" post_a_message_to: "在 %{aspect} å‘布讯æ¯" posting: å‘布ä¸â€¦â€¦ publishing_to: å‘布至: diff --git a/config/locales/diaspora/zh-TW.yml b/config/locales/diaspora/zh-TW.yml index 7fde37cfe0d43eab260380d1a63e56c91f7d686e..854839c91fcc83e9df4c64b54d6ae0632ded6545 100644 --- a/config/locales/diaspora/zh-TW.yml +++ b/config/locales/diaspora/zh-TW.yml @@ -66,7 +66,7 @@ zh-TW: select_all: "å…¨é¸" aspect_stream: stay_updated: "隨時ä¿æŒæœ€æ–°ç‹€æ…‹" - stay_updated_explanation: "ä½ çš„ä¸»è¦æµæ°´å¸³æœƒå……æ»¿äº†ä½ çš„è¯çµ¡äºº, 追蹤的標籤, 以åŠä¸€äº›æœ‰å‰µæ„的社群æˆå“¡çš„貼文." + stay_updated_explanation: "ä½ çš„ä¸»æµæ°´å¸³æœƒå……æ»¿äº†ä½ çš„è¯çµ¡äºº, 追蹤的標籤, 以åŠä¸€äº›æœ‰å‰µæ„的社群æˆå“¡çš„貼文." contacts_not_visible: æ¤é¢å‘ä¸çš„è¯çµ¡äººç„¡æ³•çœ‹è¦‹å½¼æ¤. contacts_visible: æ¤é¢å‘ä¸çš„è¯çµ¡äººå¯ä»¥çœ‹è¦‹å½¼æ¤. create: @@ -192,7 +192,7 @@ zh-TW: commenting: æ„見發表ä¸... one: "1則æ„見" other: "%{count}則æ„見" - two: "%{count}則回應" + two: "%{count}個æ„見" zero: "沒有æ„見" contacts: create: @@ -252,7 +252,7 @@ zh-TW: show: delete: "刪除並ä¸æ¢å°è©±" reply: "回覆" - replying: 回應ä¸... + replying: 回覆ä¸... date: formats: birthday: "%B %d" @@ -357,21 +357,21 @@ zh-TW: many: "%{actors} ä¹Ÿå° %{post_author} çš„%{post_link}發表了æ„見." one: "%{actors} ä¹Ÿå° %{post_author} çš„%{post_link}發表了æ„見." other: "%{actors} ä¹Ÿå° %{post_author} çš„%{post_link}發表了æ„見." - two: "%{actors} 也回應了 %{post_author} çš„%{post_link}." + two: "%{actors} ä¹Ÿå° %{post_author} çš„%{post_link}發表了æ„見." zero: "%{actors} ä¹Ÿå° %{post_author} çš„%{post_link}發表了æ„見." also_commented_deleted: - few: "%{actors} 回應了已刪掉的貼文." - many: "%{actors} 回應了已刪掉的貼文." - one: "%{actors} 回應了已刪掉的貼文." - other: "%{actors} 回應了已刪掉的貼文." - two: "%{actors} 回應了已刪掉的貼文." - zero: "%{actors} 回應了已刪掉的貼文." + few: "%{actors} å°å·²åˆªæŽ‰çš„貼文發表了æ„見." + many: "%{actors} å°å·²åˆªæŽ‰çš„貼文發表了æ„見." + one: "%{actors} å°å·²åˆªæŽ‰çš„貼文發表了æ„見." + other: "%{actors} å°å·²åˆªæŽ‰çš„貼文發表了æ„見." + two: "%{actors} å°å·²åˆªæŽ‰çš„貼文發表了æ„見." + zero: "%{actors} å°å·²åˆªæŽ‰çš„貼文發表了æ„見." comment_on_post: few: "%{actors} å°ä½ çš„%{post_link}發表了æ„見." many: "%{actors} å°ä½ çš„%{post_link}發表了æ„見." one: "%{actors} å°ä½ çš„%{post_link}發表了æ„見." other: "%{actors} å°ä½ çš„%{post_link}發表了æ„見." - two: "%{actors} å›žæ‡‰äº†ä½ çš„%{post_link}." + two: "%{actors} å°ä½ çš„%{post_link}發表了æ„見." zero: "%{actors} å°ä½ çš„%{post_link}發表了æ„見." helper: new_notifications: @@ -472,7 +472,7 @@ zh-TW: view_post: "看貼文 >" single_admin: admin: "為您æœå‹™çš„ Diaspora 管ç†å“¡" - subject: "é—œæ–¼ä½ çš„ Diaspora 帳號的訊æ¯:" + subject: "æœ‰é—œæ–¼ä½ çš„ Diaspora 帳號的訊æ¯:" started_sharing: sharing: é–‹å§‹è·Ÿä½ åˆ†äº«äº†! subject: "%{name} 開始在 Diaspora* è·Ÿä½ åˆ†äº«äº†" @@ -494,7 +494,7 @@ zh-TW: results_for: "%{params}çš„æœå°‹çµæžœ" index: couldnt_find_them_send_invite: "找ä¸åˆ°ä»–們? 寄一å°é‚€è«‹å‡½å§!" - looking_for: "Looking for posts tagged %{tag_link}?" + looking_for: "在找標記為 %{tag_link} 的貼文嗎?" no_one_found: "...找ä¸åˆ°ä»»ä½•æ±è¥¿." no_results: "嘿! æœå°‹è¦æœ‰ç›®æ¨™." results_for: "æœå°‹çµæžœ:" @@ -740,7 +740,7 @@ zh-TW: outside: "ä¸ä½¿ç”¨ Diaspora 的人也能看到公開訊æ¯." share: "分享" title: "è¨å®šé€£ç·šæœå‹™" - visibility_dropdown: "用這個下拉å¼é¸å–®ä¾†æ”¹è®Šè²¼æ–‡çš„å¯è¦‹ç¯„åœ. (建è°ä½ 第一篇è¨ç‚ºå…¬é–‹.)" + visibility_dropdown: "用這個下拉å¼é¸å–®ä¾†æ”¹è®Šè²¼æ–‡çš„å¯è¦‹ç¯„åœ. (建è°ä½ 這篇首貼è¨ç‚ºå…¬é–‹.)" publisher: all: "全部" all_contacts: "所有è¯çµ¡äºº" @@ -750,6 +750,7 @@ zh-TW: hello: "大家好, 我是 #%{new_user_tag}. " i_like: "æˆ‘å° %{tags} 有興趣." invited_by: "è¬è¬ä½ 的邀請, " + newhere: "新人" post_a_message_to: "在 %{aspect} 發表訊æ¯" posting: 發表ä¸... publishing_to: "發表至: " @@ -760,8 +761,8 @@ zh-TW: reshare: reshare: "轉貼" stream_element: - connect_to_comment: "è¦å›žæ‡‰è²¼æ–‡è«‹å…ˆå’Œä½œè€…建立è¯ç¹«" - currently_unavailable: "ç›®å‰ç„¡æ³•å›žæ‡‰" + connect_to_comment: "請先和作者建立è¯ç¹«æ‰èƒ½å°ä»–們的貼文發表æ„見" + currently_unavailable: "ç›®å‰ç„¡æ³•ç™¼è¡¨æ„見" dislike: "éœ" hide_and_mute: "éš±è—貼文並消音" ignore_user: "忽視 %{name}" @@ -790,12 +791,12 @@ zh-TW: stream_helper: hide_comments: "éš±è—所有æ„見" show_comments: - few: "Show %{count} more comments" - many: "Show %{count} more comments" - one: "Show one more comment" - other: "Show %{count} more comments" - two: "Show two more comments" - zero: "No more comments" + few: "顯示å¦å¤– %{count} 個æ„見" + many: "顯示å¦å¤– %{count} 個æ„見" + one: "顯示å¦å¤–一個æ„見" + other: "顯示å¦å¤– %{count} 個æ„見" + two: "顯示å¦å¤–兩個æ„見" + zero: "沒有其它æ„見" streams: aspects: title: "ä½ çš„é¢å‘" @@ -822,7 +823,7 @@ zh-TW: recently: "最近:" tags: contacts_title: "這個標籤的粉絲" - tag_prefill_text: "The thing about %{tag_name} is... " + tag_prefill_text: "有關於 %{tag_name} 的事情是... " title: "有以下標籤的貼文: %{tags}" tag_followings: create: diff --git a/config/locales/javascript/javascript.bg.yml b/config/locales/javascript/javascript.bg.yml index c919ccd5e393e513256a016794e062a1ed8033da..c811efcd12d85b1acf139c0a1ef328e0b912d293 100644 --- a/config/locales/javascript/javascript.bg.yml +++ b/config/locales/javascript/javascript.bg.yml @@ -35,7 +35,7 @@ bg: no_tags: "Ðе Ñледите нито една марка! Желаете ли да продължите въпреки това?" preparing_your_stream: "ВашиÑÑ‚ перÑонализиран поток Ñе подготвÑ..." infinite_scroll: - no_more: "ÐÑма повече публикации." + no_more: "ÐÑма други публикации." photo_uploader: looking_good: "Леле, изглеждате Ñтрахотно!" publisher: diff --git a/config/locales/javascript/javascript.da.yml b/config/locales/javascript/javascript.da.yml index 04c73c77e7797050ee58ccbe7e1e8ff3a41a2702..c65b78b6c82aab3c341aa3a4a573de7a7a3b487a 100644 --- a/config/locales/javascript/javascript.da.yml +++ b/config/locales/javascript/javascript.da.yml @@ -8,7 +8,7 @@ da: aspect_dropdown: add_to_aspect: "Tilføj kontakt" all_aspects: "Alle aspekter" - error: "Couldn't start sharing with {{name}}. Are you ignoring them?" + error: "Kunne ikke begynde at dele med {{name}}. Ignorer du vedkommende?" select_aspects: "Vælg aspekter" started_sharing_with: "Du er begyndt at dele med {{name}}!" stopped_sharing_with: "Du deler ikke længere med {{name}}." @@ -47,7 +47,7 @@ da: search_for: "Søg efter {{name}}" show_more: "Vis mere" tags: - wasnt_that_interesting: "OK, jeg formoder #{{tagName}} var ikke sÃ¥ spændende ..." + wasnt_that_interesting: "OK, jeg formoder #{{tagName}} ikke var sÃ¥ spændende igen..." timeago: day: "en dag" days: "%d dage" diff --git a/config/locales/javascript/javascript.fi.yml b/config/locales/javascript/javascript.fi.yml index f5a1f647a8b407ef383fd2ec5b41ba28634e4192..908f3864d993afba028de124e6be91ef6b90e20d 100644 --- a/config/locales/javascript/javascript.fi.yml +++ b/config/locales/javascript/javascript.fi.yml @@ -33,7 +33,7 @@ fi: alright_ill_wait: "Okei, minä odotan." hey: "Hei {{name}}!" no_tags: "Hei, et seuraa yhtäkään tagia! Jatketaanko silti?" - preparing_your_stream: "Preparing your personialized stream..." + preparing_your_stream: "Yksilöllistä virtaasi valmistellaan..." infinite_scroll: no_more: "Ei enempää viestejä." photo_uploader: diff --git a/config/locales/javascript/javascript.fr.yml b/config/locales/javascript/javascript.fr.yml index 5774b48a217e10b5753b95ac900de3405e72c0e0..3b9df1b9080a15ec53175b8b3c1ee1bf42a0b727 100644 --- a/config/locales/javascript/javascript.fr.yml +++ b/config/locales/javascript/javascript.fr.yml @@ -8,7 +8,7 @@ fr: aspect_dropdown: add_to_aspect: "Ajouter le contact" all_aspects: "Tous les aspects" - error: "Couldn't start sharing with {{name}}. Are you ignoring them?" + error: "Impossible de partager avec {{name}}. Ignorez-vous cette personne ?" select_aspects: "Choisir les aspects" started_sharing_with: "Vous avez commencé à partager avec {{name}} !" stopped_sharing_with: "Vous avez arrêté de partager avec {{name}}." diff --git a/config/locales/javascript/javascript.ko.yml b/config/locales/javascript/javascript.ko.yml index 4cc1c3c539798e975cdffd52257949538ed90d67..039a374352644a79f7f61d312c5ea4f7668b13ff 100644 --- a/config/locales/javascript/javascript.ko.yml +++ b/config/locales/javascript/javascript.ko.yml @@ -8,7 +8,7 @@ ko: aspect_dropdown: add_to_aspect: "ì• ìŠ¤íŽ™ì— ë„£ê¸°" all_aspects: "ëª¨ë“ ì—스팩" - error: "Couldn't start sharing with {{name}}. Are you ignoring them?" + error: "{{name}}님과 ê³µìœ ë¥¼ ì‹œìž‘í• ìˆ˜ 없습니다. 혹시 ë¬´ì‹œí•˜ê³ ìžˆìŠµë‹ˆê¹Œ?" select_aspects: "ì—스팩 ì„ íƒ" started_sharing_with: "{{name}}ë‹˜ê³¼ì˜ ê³µìœ ë¥¼ 시작합니다!" stopped_sharing_with: "{{name}}ë‹˜ê³¼ì˜ ê³µìœ ë¥¼ 멈췄습니다." diff --git a/config/locales/javascript/javascript.sk.yml b/config/locales/javascript/javascript.sk.yml index 47373607950ea51311fc6cdbd21293df8c236650..7f5891f2a2b192bf53376f4540cee520bb5f7ab3 100644 --- a/config/locales/javascript/javascript.sk.yml +++ b/config/locales/javascript/javascript.sk.yml @@ -8,10 +8,10 @@ sk: aspect_dropdown: add_to_aspect: "PridaÅ¥ kontakt" all_aspects: "VÅ¡etky kategórie" - error: "Couldn't start sharing with {{name}}. Are you ignoring them?" + error: "Nemôžete sa zaÄaÅ¥ deliÅ¥ s použ. {{name}}. Neignorujete ho (ju)?" select_aspects: "Vyberte si kategórie" - started_sharing_with: "You have started sharing with {{name}}!" - stopped_sharing_with: "You have stopped sharing with {{name}}." + started_sharing_with: "ZaÄali ste sa deliÅ¥ s použ. {{name}}!" + stopped_sharing_with: "Prestali ste sa deliÅ¥ s použ. {{name}}." toggle: few: "V(o) {{count}} kategóriách" many: "V(o) {{count}} kategóriách" @@ -30,24 +30,24 @@ sk: failed_to_like: "Nepodarilo sa oznaÄiÅ¥, že sa vám to páÄi!" failed_to_post_message: "Správu sa nepodarilo poslaÅ¥!" getting_started: - alright_ill_wait: "Alright, I'll wait." - hey: "Hey, {{name}}!" - no_tags: "Hey, you haven't followed any tags! Continue anyway?" - preparing_your_stream: "Preparing your personialized stream..." + alright_ill_wait: "V poriadku, poÄkám." + hey: "Hej, {{name}}!" + no_tags: "Hej, nesledujete žiadne znaÄky! Chcete aj tak pokraÄovaÅ¥?" + preparing_your_stream: "Pripravuje sa vaÅ¡a upravená nástenka..." infinite_scroll: no_more: "Žiadne ÄalÅ¡ie prÃspevky." photo_uploader: - looking_good: "OMG, you look awesome!" + looking_good: "No teda, vyzeráš super!" publisher: at_least_one_aspect: "MusÃte publikovaÅ¥ aspoň jednu kategóriu" limited: "Obmedzené - váš prÃspevok uvidia len ľudia, s ktorými sa oň podelÃte" public: "Verejný - váš prÃspevok pomocou vyhľadávaÄov uvidà a nájde každý" reshares: - duplicate: "O tento prÃspevok ste sa už raz znova podelili!" + duplicate: "To je dobré, Äo? Tento prÃspevok ste už raz znova zdieľali!" search_for: "HľadaÅ¥ {{name}}" show_more: "ZobraziÅ¥ viac" tags: - wasnt_that_interesting: "OK, I suppose #{{tagName}} wasn't all that interesting..." + wasnt_that_interesting: "Dobre, znaÄka #{{tagName}} asi nebola veľmi zaujÃmavá..." timeago: day: "vÄera" days: "%d dňami" diff --git a/features/posts_from_main_page.feature b/features/posts_from_main_page.feature index 714c664735cf90e155cec893b94a77c91c2e913f..41bcddf1241f0c688a6aa4b3eb5ae908a5458d5a 100644 --- a/features/posts_from_main_page.feature +++ b/features/posts_from_main_page.feature @@ -53,7 +53,7 @@ Feature: posting from the main page Then I should see a "img" within ".stream_element div.photo_attachments" And I should see "Look at this dog" within ".stream_element" - Scenario: post a photo without text + Scenario: post a photo without text Given I expand the publisher When I attach the file "spec/fixtures/button.png" to hidden element "file" within "#file-upload" And I wait for the ajax to finish @@ -192,3 +192,17 @@ Feature: posting from the main page And I select only "NotPostingThingsHere" aspect Then I should not see "I am eating a yogurt" Then I should not see "And cornflakes also" + + Scenario: reject deletion one of my posts + When I expand the publisher + And I fill in "status_message_fake_text" with "I am eating a yogurt" + And I press "Share" + And I wait for the ajax to finish + + When I click the aspects title + And I hover over the ".stream_element" + And I preemptively reject the alert + And I click to delete the first post + Then I should see "I am eating a yogurt" + And I should see first post deletion link + And I should not see ajax loader on deletion link place diff --git a/features/step_definitions/custom_web_steps.rb b/features/step_definitions/custom_web_steps.rb index 1a8cc7bd8f0eed9ff4e43216886dc88189c28026..77e5f7e23a0c5a037c5c45f78c4778eab21d368c 100644 --- a/features/step_definitions/custom_web_steps.rb +++ b/features/step_definitions/custom_web_steps.rb @@ -11,6 +11,10 @@ And /^I expand the publisher$/ do ') end +When 'I click the aspects title' do + find('.home_selector').click +end + When /^I press the aspect dropdown$/ do find('.dropdown .button').click end @@ -194,7 +198,7 @@ When /^I resize my window to 800x600$/ do JS end -Then /^I follow Edit Profile in the same window$/ do +Then /^I follow Edit Profile in the same window$/ do page.execute_script("$('a[href=\"#{edit_profile_path}\"]').removeAttr('target')") And %(I follow "Edit Profile") @@ -213,9 +217,16 @@ And "I wait for the popovers to appear" do end And /^I click close on all the popovers$/ do - page.execute_script("var time = 400; $('.popover .close').each( + page.execute_script("var time = 400; $('.popover .close').each( function(index, element){ setTimeout(function(){ $(element).click()},time); time += 800; });") end +Then /^I should see first post deletion link$/ do + page.evaluate_script("$('.stream_element .delete').first().css('display')").should == "inline" +end + +Then /^I should not see ajax loader on deletion link place$/ do + page.evaluate_script("$('.hide_loader').first().css('display')").should == "none" +end diff --git a/public/javascripts/publisher.js b/public/javascripts/publisher.js index 92e17fd7af89b202de560e67a5da4cb178e41767..499fd722ec808a8bfc8061cab212a78da4f4c33e 100644 --- a/public/javascripts/publisher.js +++ b/public/javascripts/publisher.js @@ -508,6 +508,7 @@ var Publisher = { Publisher.input().autoResize(); Publisher.input().keydown(Publisher.autocompletion.keyDownHandler); Publisher.input().keyup(Publisher.autocompletion.keyUpHandler); + Publisher.input().mouseup(Publisher.autocompletion.keyUpHandler); Publisher.bindAjax(); Publisher.form().find("textarea").bind("focus", function(evt) { Publisher.open(); diff --git a/public/javascripts/widgets/stream-element.js b/public/javascripts/widgets/stream-element.js index a042da3a727932a18b388cfffac586e6700dc253..5f1f0ecd3cdb0cb81e37c08a644b6da2f232ae09 100644 --- a/public/javascripts/widgets/stream-element.js +++ b/public/javascripts/widgets/stream-element.js @@ -44,10 +44,10 @@ self.deletePostLink.click(function(evt) { evt.preventDefault(); - $([ - self.deletePostLink, - self.hidePostLoader - ]).toggleClass("hidden"); + self.hidePostLoader.ajaxStart( function() { + self.deletePostLink.addClass("hidden"); + $(this).removeClass('hidden'); + } ); }); self.focusCommentLink.click(function(evt) { diff --git a/spec/controllers/photos_controller_spec.rb b/spec/controllers/photos_controller_spec.rb index 167f0d184a665bc6205b4f7d92237a3ece0a89e3..c0a5502b2c678afd52448dc4d7568c15f5163634 100644 --- a/spec/controllers/photos_controller_spec.rb +++ b/spec/controllers/photos_controller_spec.rb @@ -137,6 +137,12 @@ describe PhotosController do get :show, :id => @photo.to_param response.should redirect_to(aspects_path) end + + it 'redirects to the sign in page if not logged in' do + controller.stub(:user_signed_in?).and_return(false) #sign_out :user doesn't work + get :show, :id => @photo.to_param + response.should redirect_to new_user_session_path + end end context "public photo" do diff --git a/spec/javascripts/widgets/stream-element-spec.js b/spec/javascripts/widgets/stream-element-spec.js index bcd85999105a1763501515bf6615658f2b8907b8..98d7ea94010fe42fa38fc1dc196eb19764540069 100644 --- a/spec/javascripts/widgets/stream-element-spec.js +++ b/spec/javascripts/widgets/stream-element-spec.js @@ -18,6 +18,7 @@ describe("Diaspora.Widgets.StreamElement", function() { expect(streamElement.hidePostLoader).toHaveClass("hidden"); spyOn($, "ajax"); streamElement.deletePostLink.click(); + streamElement.hidePostLoader.triggerHandler('ajaxStart'); jasmine.Clock.tick(200); expect($.ajax).toHaveBeenCalled(); expect(streamElement.deletePostLink).toHaveClass("hidden");