add: Turkish language support added for Word highlighter extension (#257)

* add: Turkish language support added for 6 extensions

* Revert unrelated changes

* Minimize unrelated markdown changes

* add: Turkish language support added for Word highlighter extension

---------

Co-authored-by: Alexandre Alapetite <alexandre.alapetite@alexandra.dk>
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
This commit is contained in:
Ramazan Sancar 2024-11-01 12:42:54 +03:00 committed by GitHub
parent 7ff9f49f60
commit 2f4bc6e715
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 18 additions and 2 deletions

View file

@ -24,7 +24,8 @@ Light theme:
## Changelog
- 0.0.3 Turkish language support added.
- 0.0.2 use `json` for storing configuration, add more configuration options
(enable_in_article, enable_logs, case_sensitive, separate_word_search)
and refactored & simplified code
and refactored & simplified code.
- 0.0.1 initial version (as a proper FreshRSS extension)

View file

@ -0,0 +1,15 @@
<?php
return array(
'word_highlighter' => array(
'write_words' => 'Vurgulanacak kelimeler',
'write_words_more' => '(yeni satırla ayrılmış)',
'enable_in_article' => 'Makalede vurgulamayı da etkinleştir',
'enable_in_article_more' => '(⚠️ çok fazla kelimeyle daha yavaş olabilir)',
'enable_logs' => 'Günlükleri etkinleştir',
'case_sensitive' => 'Harfe duyarlı',
'separate_word_search' => 'Ayrı kelime araması',
'test_highlighting_word' => 'vurgulamak',
'permission_problem' => 'Yapılandırma dosyanız yazılabilir değil, lütfen %s için dosya izinlerini değiştirin',
),
);

View file

@ -2,7 +2,7 @@
"name": "Word highlighter",
"author": "Lukas Melega",
"description": "Highlight specific words",
"version": "0.0.2",
"version": "0.0.3",
"entrypoint": "WordHighlighter",
"type": "user"
}