diff options
| author | 2021-02-16 12:00:49 -0500 | |
|---|---|---|
| committer | 2021-02-16 18:00:49 +0100 | |
| commit | fe1fba9828ad4d68a3cc93ed5f8e361f34e5a873 (patch) | |
| tree | ca9168f79844b0320f7731a1f2969d3d112c4eac /app/i18n/kr/sub.php | |
| parent | 5daee165dc73fcf74673f2ede1891dbd5821c9f4 (diff) | |
Add a content action parameter to work with CSS selector (#3453)
Before, when retrieving article contents with CSS selector, the content
of the RSS feed was replaced by the content of the CSS selector. It works
well in most of the cases but if there is a different content in the feed
and in the selector, the former is lost.
Now, there is a parameter to decide which action is performed after retrieving
the content. By default, the previous behavior is kept. But now, it is
possible to append or prepend the CSS selector content to the feed content.
See #3451
Diffstat (limited to 'app/i18n/kr/sub.php')
| -rw-r--r-- | app/i18n/kr/sub.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/i18n/kr/sub.php b/app/i18n/kr/sub.php index 4a6023630..a953808d7 100644 --- a/app/i18n/kr/sub.php +++ b/app/i18n/kr/sub.php @@ -33,6 +33,12 @@ return array( 'username' => 'HTTP 사용자 이름', ), 'clear_cache' => '항상 캐시 지우기', + 'content_action' => array( + '_' => 'Content action when fetching the article content', // TODO - Translation + 'append' => 'Add after existing content', // TODO - Translation + 'prepend' => 'Add before existing content', // TODO - Translation + 'replace' => 'Replace existing content', // TODO - Translation + ), 'css_cookie' => 'Use Cookies when fetching the article content', // TODO - Translation 'css_cookie_help' => 'Example: <kbd>foo=bar; gdpr_consent=true; cookie=value</kbd>', // TODO - Translation 'css_help' => '글의 일부가 포함된 RSS 피드를 가져옵니다 (주의, 시간이 좀 더 걸립니다!)', |
