From: David Yip Date: Tue, 28 Nov 2017 17:45:13 +0000 (-0600) Subject: Merge remote-tracking branch 'origin/master' into gs-master X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=95c270f5b1ffd328345a7b1223f65876f3d88423;p=mastodon.git Merge remote-tracking branch 'origin/master' into gs-master --- 95c270f5b1ffd328345a7b1223f65876f3d88423 diff --cc config/locales/pl.yml index f10a84bfc,1f284cd9f..2b170685d --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@@ -425,14 -427,27 +427,35 @@@ pl muting: Lista wyciszonych upload: Załaduj in_memoriam_html: Ku pamięci. + keyword_mutes: + add_keyword: Dodaj słowo kluczowe + edit: Edytuj + edit_keyword: Edytuj słowo kluczowe + keyword: Słowo kluczowe + match_whole_word: Uwzględniaj całe słowo + remove: Usuń + remove_all: Usuń wszystkie + invites: + delete: Usuń + expires_in: + '1800': 30 minutach + '21600': 6 godzinach + '3600': godzinie + '43200': 12 godzinach + '86400': dobie + expires_in_prompt: Nigdy + generate: Wygeneruj + max_uses: + few: "%{count} użycia" + many: "%{count} użyć" + one: jedno użycie + other: "%{count} użyć" + max_uses_prompt: Bez ograniczenia + prompt: Wygeneruj odnośniki i udostępnij je innym, aby pozwolić na rejestrację na instancji + table: + expires_at: Wygaśnie po + uses: Użycia + title: Zaproś użytkowników landing_strip_html: "%{name} ma konto na %{link_to_root_path}. Możesz je śledzić i wejść z nim w interakcję jeśli masz konto gdziekolwiek w Fediwersum." landing_strip_signup_html: Jeśli jeszcze go nie masz, możesz stworzyć konto. media_attachments: diff --cc spec/models/concerns/account_interactions_spec.rb index 0b3a1a63e,d08bdc8b9..95bf9561d --- a/spec/models/concerns/account_interactions_spec.rb +++ b/spec/models/concerns/account_interactions_spec.rb @@@ -12,8 -12,8 +12,8 @@@ describe AccountInteractions d subject { Account.following_map(target_account_ids, account_id) } context 'account with Follow' do - it 'returns { target_account_id => true }' do + it 'returns { target_account_id => { reblogs: true } }' do - Fabricate(:follow, account: account, target_account: target_account, show_reblogs: true) + Fabricate(:follow, account: account, target_account: target_account) is_expected.to eq(target_account_id => { reblogs: true }) end end