Files
FreshRSS/app/i18n/tr/index.php
Marien Fressinaud 8487fa6248 Reformat i18n correctly (#2976)
* Ignore i18n gen.dir key

* Add a makefile target to update an i18n key

* Mark some i18n keys to ignore

* Reformat i18n files correctly

* Make i18n keys sort case-sensitive

Calling `make i18n-format` was always inverting 4 lines:

- gen.date.dec with gen.date.Dec
- and gen.date.nov with gen.date.Nov

I don't know why these particular lines and not the others, but it
appeared the sort function was case insensitive due to the
`SORT_FLAG_CASE` flag passed to the `ksort` function. Removing this flag
makes the calls to the formatter idempotent and more reliable.

Unfortunately it moves a lot of lines since the `_` character is
considered differently.

* Check i18n files are correctly formatted on Travis
2020-05-15 17:31:21 +02:00

67 lines
3.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
return array(
'about' => array(
'_' => 'Hakkında',
'agpl3' => '<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL 3</a>', // TODO - Translation
'bugs_reports' => 'Hata raporu',
'credits' => 'Tanıtım',
'credits_content' => 'Bu frameworkü kullanmamasına rağmen FreshRSS bazı tasarım ögelerini <a href="http://twitter.github.io/bootstrap/">Bootstrap</a> dan almıştır. <a href="https://git.gnome.org/browse/gnome-icon-theme-symbolic">İkonlar</a> <a href="https://www.gnome.org/">GNOME projesinden</a> alınmıştır. <em>Open Sans</em> yazı tipi <a href="https://fonts.google.com/specimen/Open+Sans">Steve Matteson</a> tarafından oluşturulmuştur. FreshRSS bir PHP framework olan <a href="https://github.com/marienfressinaud/MINZ">Minz</a> i temel alır.',
'freshrss_description' => 'FreshRSS <a href="http://tontof.net/kriss/feed/">Kriss Feed</a> veya <a href="https://github.com/LeedRSS/Leed">Leed</a> gibi kendi hostunuzda çalışan bir RSS akış toplayıcısıdır. Güçlü ve yapılandırılabilir araçlarıyla basit ve kullanımı kolay bir uygulamadır.',
'github' => '<a href="https://github.com/FreshRSS/FreshRSS/issues">Github sayfası</a>',
'license' => 'Lisans',
'project_website' => 'Proje sayfası',
'title' => 'Hakkında',
'version' => 'Versiyon',
'website' => 'Website', // TODO - Translation
),
'feed' => array(
'add' => 'Akış ekleyebilirsin.',
'empty' => 'Gösterilecek makale yok.',
'rss_of' => 'RSS feed of %s', // TODO - Translation
'title' => 'RSS akışlarınız',
'title_fav' => 'Favorilerin',
'title_global' => 'Global görünüm',
),
'log' => array(
'_' => 'Log Kayıtları',
'clear' => 'Log kayıt dosyasını temizle',
'empty' => 'Log kayır dosyası boş',
'title' => 'Log Kayıtları',
),
'menu' => array(
'about' => 'FreshRSS hakkında',
'add_query' => 'Sorgu ekle',
'before_one_day' => 'Bir gün önce',
'before_one_week' => 'Bir hafta önce',
'favorites' => 'Favoriler (%s)',
'global_view' => 'Global görünüm',
'main_stream' => 'Ana akış',
'mark_all_read' => 'Hepsini okundu olarak işaretle',
'mark_cat_read' => 'Kategoriyi okundu olarak işaretle',
'mark_feed_read' => 'Akışı okundu olarak işaretle',
'mark_selection_unread' => 'Mark selection as unread', // TODO - Translation
'newer_first' => 'Önce yeniler',
'non-starred' => 'Favori dışındakileri göster',
'normal_view' => 'Normal görünüm',
'older_first' => 'Önce eskiler',
'queries' => 'Kullanıcı sorguları',
'read' => 'Okunmuşları göster',
'reader_view' => 'Okuma görünümü',
'rss_view' => 'RSS akışı',
'search_short' => 'Ara',
'starred' => 'Favorileri göster',
'stats' => 'İstatistikler',
'subscription' => 'Abonelik yönetimi',
'tags' => 'My labels', // TODO - Translation
'unread' => 'Okunmamışları göster',
),
'share' => 'Share', // TODO - Translation
'tag' => array(
'related' => 'İlgili etiketler',
),
'tos' => array(
'title' => 'Terms of Service', // TODO - Translation
),
);