From 536f88b038ee55b202500113892058346afd54a4 Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" <13498015+amyspark@users.noreply.github.com> Date: Fri, 30 Nov 2018 19:32:35 +0000 Subject: [PATCH] Enable searching toots by link --- src/config/locales/de/translation.json | 3 +- src/config/locales/en/translation.json | 3 +- src/config/locales/fr/translation.json | 3 +- src/config/locales/ja/translation.json | 3 +- src/config/locales/ko/translation.json | 3 +- src/config/locales/pl/translation.json | 3 +- .../TimelineSpace/Contents/Search.vue | 17 +++++++++- .../TimelineSpace/Contents/Search/Toots.vue | 28 ++++++++++++++++ .../store/TimelineSpace/Contents/Search.js | 3 +- .../TimelineSpace/Contents/Search/Toots.js | 32 +++++++++++++++++++ 10 files changed, 90 insertions(+), 8 deletions(-) create mode 100644 src/renderer/components/TimelineSpace/Contents/Search/Toots.vue create mode 100644 src/renderer/store/TimelineSpace/Contents/Search/Toots.js diff --git a/src/config/locales/de/translation.json b/src/config/locales/de/translation.json index 6e267681..0cdbc286 100644 --- a/src/config/locales/de/translation.json +++ b/src/config/locales/de/translation.json @@ -274,7 +274,8 @@ "search": { "search": "Suche", "account": "Konto", - "keyword": "stichwort" + "keyword": "stichwort", + "toot": "Toot" }, "lists": { "index": { diff --git a/src/config/locales/en/translation.json b/src/config/locales/en/translation.json index 198be689..20b897ed 100644 --- a/src/config/locales/en/translation.json +++ b/src/config/locales/en/translation.json @@ -295,7 +295,8 @@ "search": "Search", "account": "Account", "tag": "Hashtag", - "keyword": "keyword" + "keyword": "keyword", + "toot": "Toot" }, "lists": { "index": { diff --git a/src/config/locales/fr/translation.json b/src/config/locales/fr/translation.json index 20be1d6e..1aed7496 100644 --- a/src/config/locales/fr/translation.json +++ b/src/config/locales/fr/translation.json @@ -274,7 +274,8 @@ "search": { "search": "Rechercher", "account": "Compte", - "keyword": "mot clé" + "keyword": "mot clé", + "toot": "Pouets" }, "lists": { "index": { diff --git a/src/config/locales/ja/translation.json b/src/config/locales/ja/translation.json index e926f999..c0a286bc 100644 --- a/src/config/locales/ja/translation.json +++ b/src/config/locales/ja/translation.json @@ -288,7 +288,8 @@ "search": "検索", "account": "アカウント", "tag": "ハッシュタグ", - "keyword": "キーワード" + "keyword": "キーワード", + "toot": "トゥート時" }, "lists": { "index": { diff --git a/src/config/locales/ko/translation.json b/src/config/locales/ko/translation.json index 75ef353a..8566b87a 100644 --- a/src/config/locales/ko/translation.json +++ b/src/config/locales/ko/translation.json @@ -274,7 +274,8 @@ "search": { "search": "검색", "account": "계정", - "keyword": "키워드" + "keyword": "키워드", + "toot": "툿" }, "lists": { "index": { diff --git a/src/config/locales/pl/translation.json b/src/config/locales/pl/translation.json index 11dade85..b70bacb2 100644 --- a/src/config/locales/pl/translation.json +++ b/src/config/locales/pl/translation.json @@ -274,7 +274,8 @@ "search": { "search": "Szukaj", "account": "Konta", - "keyword": "Słowo kluczowe" + "keyword": "Słowo kluczowe", + "toot": "Wpisy" }, "lists": { "index": { diff --git a/src/renderer/components/TimelineSpace/Contents/Search.vue b/src/renderer/components/TimelineSpace/Contents/Search.vue index 0e2e4321..3524b970 100644 --- a/src/renderer/components/TimelineSpace/Contents/Search.vue +++ b/src/renderer/components/TimelineSpace/Contents/Search.vue @@ -17,6 +17,7 @@