Browse Source

Delete leftovers from keyword_mutes

closed-social-glitch-2
Thibaut Girka 5 years ago
committed by ThibG
parent
commit
71b318dedc
8 changed files with 0 additions and 61 deletions
  1. +0
    -14
      app/views/settings/keyword_mutes/_fields.html.haml
  2. +0
    -13
      app/views/settings/keyword_mutes/_keyword_mute.html.haml
  3. +0
    -6
      app/views/settings/keyword_mutes/edit.html.haml
  4. +0
    -19
      app/views/settings/keyword_mutes/index.html.haml
  5. +0
    -6
      app/views/settings/keyword_mutes/new.html.haml
  6. +0
    -1
      config/locales/en.yml
  7. +0
    -1
      config/locales/ja.yml
  8. +0
    -1
      config/locales/pl.yml

+ 0
- 14
app/views/settings/keyword_mutes/_fields.html.haml View File

@ -1,14 +0,0 @@
.fields-group
= f.input :keyword
= f.check_box :whole_word
= f.label :whole_word, t('keyword_mutes.match_whole_word')
%br
= f.check_box :apply_to_mentions
= f.label :apply_to_mentions, t('keyword_mutes.apply_to_mentions')
.actions
- if f.object.persisted?
= f.button :button, t('generic.save_changes'), type: :submit
= link_to t('keyword_mutes.remove'), settings_keyword_mute_path(f.object), class: 'negative button', method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }
- else
= f.button :button, t('keyword_mutes.add_keyword'), type: :submit

+ 0
- 13
app/views/settings/keyword_mutes/_keyword_mute.html.haml View File

@ -1,13 +0,0 @@
%tr
%td
= keyword_mute.keyword
%td
- if keyword_mute.whole_word
%i.fa.fa-check
%td
- if keyword_mute.apply_to_mentions
%i.fa.fa-check
%td
= table_link_to 'edit', t('keyword_mutes.edit'), edit_settings_keyword_mute_path(keyword_mute)
%td
= table_link_to 'times', t('keyword_mutes.remove'), settings_keyword_mute_path(keyword_mute), method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }

+ 0
- 6
app/views/settings/keyword_mutes/edit.html.haml View File

@ -1,6 +0,0 @@
- content_for :page_title do
= t('keyword_mutes.edit_keyword')
= simple_form_for @keyword_mute, url: settings_keyword_mute_path(@keyword_mute), as: :keyword_mute do |f|
= render 'shared/error_messages', object: @keyword_mute
= render 'fields', f: f

+ 0
- 19
app/views/settings/keyword_mutes/index.html.haml View File

@ -1,19 +0,0 @@
- content_for :page_title do
= t('settings.keyword_mutes')
.table-wrapper
%table.table
%thead
%tr
%th= t('keyword_mutes.keyword')
%th= t('keyword_mutes.match_whole_word')
%th= t('keyword_mutes.apply_to_mentions')
%th
%th
%tbody
= render partial: 'keyword_mute', collection: @keyword_mutes, as: :keyword_mute
= paginate @keyword_mutes
.simple_form
= link_to t('keyword_mutes.add_keyword'), new_settings_keyword_mute_path, class: 'button'
= link_to t('keyword_mutes.remove_all'), destroy_all_settings_keyword_mutes_path, class: 'button negative', method: :delete, data: { confirm: t('admin.accounts.are_you_sure') }

+ 0
- 6
app/views/settings/keyword_mutes/new.html.haml View File

@ -1,6 +0,0 @@
- content_for :page_title do
= t('keyword_mutes.add_keyword')
= simple_form_for @keyword_mute, url: settings_keyword_mutes_path, as: :keyword_mute do |f|
= render 'shared/error_messages', object: @keyword_mute
= render 'fields', f: f

+ 0
- 1
config/locales/en.yml View File

@ -711,7 +711,6 @@ en:
flavours: Flavours
followers: Authorized followers
import: Import
keyword_mutes: Muted keywords
migrate: Account migration
notifications: Notifications
preferences: Preferences

+ 0
- 1
config/locales/ja.yml View File

@ -702,7 +702,6 @@ ja:
flavours: フレーバー
followers: 信頼済みのインスタンス
import: データのインポート
keyword_mutes: ミュートされたキーワード
migrate: アカウントの引っ越し
notifications: 通知
preferences: ユーザー設定

+ 0
- 1
config/locales/pl.yml View File

@ -711,7 +711,6 @@ pl:
flavours: Odmiany
followers: Autoryzowani śledzący
import: Importowanie danych
keyword_mutes: Wyciszone słowa
migrate: Migracja konta
notifications: Powiadomienia
preferences: Preferencje

Loading…
Cancel
Save