From 127b7f0a3aad7012055c058e8aba0d27192a8cbc Mon Sep 17 00:00:00 2001 From: Alexis Degrugillier Date: Sat, 8 Jan 2022 08:00:26 -0500 Subject: Change i18n process (#4131) Before, the ignore info were stored in a different file which was a bit cumbersome for new comers. Now, this info is stored directly in the translation file as a comment. Before, there was no way of telling translators that a previously translated string was in need of a new translation. Now, the dirty information is there to convey that info. --- app/i18n/tr/admin.php | 10 ++++++ app/i18n/tr/conf.php | 46 ++++++++++++++---------- app/i18n/tr/feedback.php | 10 ++++++ app/i18n/tr/gen.php | 94 ++++++++++++++++++++++++++---------------------- app/i18n/tr/index.php | 16 +++++++-- app/i18n/tr/install.php | 12 ++++++- app/i18n/tr/sub.php | 18 +++++++--- app/i18n/tr/user.php | 10 ++++++ 8 files changed, 148 insertions(+), 68 deletions(-) (limited to 'app/i18n/tr') diff --git a/app/i18n/tr/admin.php b/app/i18n/tr/admin.php index 2dd4123f8..5c50d87ac 100644 --- a/app/i18n/tr/admin.php +++ b/app/i18n/tr/admin.php @@ -1,5 +1,15 @@ array( 'allow_anonymous' => 'Öntanımlı kullanıcının makalelerinin anonim okunmasına izin ver (%s)', diff --git a/app/i18n/tr/conf.php b/app/i18n/tr/conf.php index 1b0192dc1..5ab08fd62 100644 --- a/app/i18n/tr/conf.php +++ b/app/i18n/tr/conf.php @@ -1,5 +1,15 @@ array( '_' => 'Arşiv', @@ -29,7 +39,7 @@ return array( 'publication_date' => 'Yayınlama Tarihi', 'related_tags' => 'İlgili etiketler', 'sharing' => 'Paylaşım', - 'summary' => 'Summary', // TODO - Translation + 'summary' => 'Summary', // TODO 'top_line' => 'Üst çizgi', ), 'language' => 'Dil', @@ -39,13 +49,13 @@ return array( ), 'show_nav_buttons' => 'Gezinti düğmelerini göster', 'theme' => 'Tema', - 'theme_not_available' => 'The “%s” theme is not available anymore. Please choose another theme.', // TODO - Translation + 'theme_not_available' => 'The “%s” theme is not available anymore. Please choose another theme.', // TODO 'thumbnail' => array( - 'label' => 'Thumbnail', // TODO - Translation - 'landscape' => 'Landscape', // TODO - Translation - 'none' => 'None', // TODO - Translation - 'portrait' => 'Portrait', // TODO - Translation - 'square' => 'Square', // TODO - Translation + 'label' => 'Thumbnail', // TODO + 'landscape' => 'Landscape', // TODO + 'none' => 'None', // TODO + 'portrait' => 'Portrait', // TODO + 'square' => 'Square', // TODO ), 'title' => 'Görünüm', 'width' => array( @@ -128,11 +138,11 @@ return array( 'read' => array( 'article_open_on_website' => 'orijinal makale sitesi açıldığında', 'article_viewed' => 'makale görüntülendiğinde', - 'keep_max_n_unread' => 'Max number of articles to keep unread', // TODO - Translation + 'keep_max_n_unread' => 'Max number of articles to keep unread', // TODO 'scroll' => 'kaydırma yapılırken', 'upon_reception' => 'makale üzerinde gelince', 'when' => 'Makaleyi okundu olarak işaretle…', - 'when_same_title' => 'if an identical title already exists in the top n newest articles', // TODO - Translation + 'when_same_title' => 'if an identical title already exists in the top n newest articles', // TODO ), 'show' => array( '_' => 'Gösterilecek makaleler', @@ -163,20 +173,20 @@ return array( 'sharing' => array( '_' => 'Paylaşım', 'add' => 'Bir paylaşım türü ekle', - 'blogotext' => 'Blogotext', - 'diaspora' => 'Diaspora*', - 'email' => 'Email', - 'facebook' => 'Facebook', + 'blogotext' => 'Blogotext', // IGNORE + 'diaspora' => 'Diaspora*', // IGNORE + 'email' => 'Email', // IGNORE + 'facebook' => 'Facebook', // IGNORE 'more_information' => 'Daha fazla bilgi', 'print' => 'Yazdır', - 'raindrop' => 'Raindrop.io', + 'raindrop' => 'Raindrop.io', // IGNORE 'remove' => 'Paylaşım türünü sil', - 'shaarli' => 'Shaarli', + 'shaarli' => 'Shaarli', // IGNORE 'share_name' => 'Paylaşım ismi', 'share_url' => 'Paylaşım URL si', 'title' => 'Paylaşım', - 'twitter' => 'Twitter', - 'wallabag' => 'wallabag', + 'twitter' => 'Twitter', // IGNORE + 'wallabag' => 'wallabag', // IGNORE ), 'shortcut' => array( '_' => 'Kısayollar', @@ -198,7 +208,7 @@ return array( 'navigation_help' => '⇧ Shift tuşu ile kısayollar akışlar için geçerli olur.
Alt ⎇ tuşu ile kısayollar kategoriler için geçerli olur.', 'navigation_no_mod_help' => 'Aşağıdaki kısayollar değiştiricileri desteklenmemektedir.', 'next_article' => 'Sonraki makaleye geç', - 'next_unread_article' => 'Open the next unread article', // TODO - Translation + 'next_unread_article' => 'Open the next unread article', // TODO 'non_standard' => 'Bazı tuşlar (%s) kullanılamayabilir.', 'normal_view' => 'Normal görünüme geç', 'other_action' => 'Diğer eylemler', diff --git a/app/i18n/tr/feedback.php b/app/i18n/tr/feedback.php index 8256a94b2..2a63545a8 100644 --- a/app/i18n/tr/feedback.php +++ b/app/i18n/tr/feedback.php @@ -1,5 +1,15 @@ array( 'denied' => 'Bu sayfaya erişim yetkiniz yok', diff --git a/app/i18n/tr/gen.php b/app/i18n/tr/gen.php index 448078d57..abf66f076 100644 --- a/app/i18n/tr/gen.php +++ b/app/i18n/tr/gen.php @@ -1,5 +1,15 @@ array( 'actualize' => 'Yenile akışlarınız', @@ -69,8 +79,8 @@ return array( 'december' => 'Ara', 'feb' => 'şub', 'february' => 'Şub', - 'format_date' => 'j %s Y', - 'format_date_hour' => 'j %s Y \\a\\t H\\:i', + 'format_date' => 'j %s Y', // IGNORE + 'format_date_hour' => 'j %s Y \\a\\t H\\:i', // IGNORE 'fri' => 'Cum', 'jan' => 'oca', 'january' => 'Oca', @@ -89,7 +99,7 @@ return array( 'mar' => 'mar', 'march' => 'Mar', 'may' => 'Mayıs', - 'may_' => 'May', + 'may_' => 'May', // IGNORE 'mon' => 'Pzt', 'month' => 'ay', 'nov' => 'kas', @@ -106,9 +116,9 @@ return array( 'wed' => 'Çar', 'yesterday' => 'Dün', ), - 'dir' => 'ltr', + 'dir' => 'ltr', // IGNORE 'freshrss' => array( - '_' => 'FreshRSS', + '_' => 'FreshRSS', // IGNORE 'about' => 'FreshRSS hakkında', ), 'js' => array( @@ -124,28 +134,28 @@ return array( 'should_be_activated' => 'JavaScript aktif olmalıdır.', ), 'lang' => array( - 'cz' => 'Čeština', - 'de' => 'Deutsch', - 'en' => 'English', - 'en-us' => 'English (United States)', - 'es' => 'Español', - 'fr' => 'Français', - 'he' => 'עברית', - 'it' => 'Italiano', - 'ja' => '日本語', - 'ko' => '한국어', - 'nl' => 'Nederlands', - 'oc' => 'Occitan', - 'pl' => 'Polski', - 'pt-br' => 'Português (Brasil)', - 'ru' => 'Русский', - 'sk' => 'Slovenčina', - 'tr' => 'Türkçe', - 'zh-cn' => '简体中文', + 'cz' => 'Čeština', // IGNORE + 'de' => 'Deutsch', // IGNORE + 'en' => 'English', // IGNORE + 'en-us' => 'English (United States)', // IGNORE + 'es' => 'Español', // IGNORE + 'fr' => 'Français', // IGNORE + 'he' => 'עברית', // IGNORE + 'it' => 'Italiano', // IGNORE + 'ja' => '日本語', // IGNORE + 'ko' => '한국어', // IGNORE + 'nl' => 'Nederlands', // IGNORE + 'oc' => 'Occitan', // IGNORE + 'pl' => 'Polski', // IGNORE + 'pt-br' => 'Português (Brasil)', // IGNORE + 'ru' => 'Русский', // IGNORE + 'sk' => 'Slovenčina', // IGNORE + 'tr' => 'Türkçe', // IGNORE + 'zh-cn' => '简体中文', // IGNORE ), 'menu' => array( 'about' => 'Hakkında', - 'account' => 'Account', // TODO - Translation + 'account' => 'Account', // TODO 'admin' => 'Yönetim', 'archiving' => 'Arşiv', 'authentication' => 'Kimlik doğrulama', @@ -183,25 +193,25 @@ return array( ), 'share' => array( 'Known' => 'Bilinen siteler', - 'blogotext' => 'Blogotext', + 'blogotext' => 'Blogotext', // IGNORE 'clipboard' => 'Kopyala', - 'diaspora' => 'Diaspora*', - 'email' => 'Email', - 'facebook' => 'Facebook', - 'gnusocial' => 'GNU social', - 'jdh' => 'Journal du hacker', - 'lemmy' => 'Lemmy', - 'linkedin' => 'LinkedIn', - 'mastodon' => 'Mastodon', - 'movim' => 'Movim', - 'pinboard' => 'Pinboard', - 'pocket' => 'Pocket', - 'print' => 'Print', - 'raindrop' => 'Raindrop.io', - 'shaarli' => 'Shaarli', - 'twitter' => 'Twitter', - 'wallabag' => 'wallabag v1', - 'wallabagv2' => 'wallabag v2', + 'diaspora' => 'Diaspora*', // IGNORE + 'email' => 'Email', // IGNORE + 'facebook' => 'Facebook', // IGNORE + 'gnusocial' => 'GNU social', // IGNORE + 'jdh' => 'Journal du hacker', // IGNORE + 'lemmy' => 'Lemmy', // IGNORE + 'linkedin' => 'LinkedIn', // IGNORE + 'mastodon' => 'Mastodon', // IGNORE + 'movim' => 'Movim', // IGNORE + 'pinboard' => 'Pinboard', // IGNORE + 'pocket' => 'Pocket', // IGNORE + 'print' => 'Print', // IGNORE + 'raindrop' => 'Raindrop.io', // IGNORE + 'shaarli' => 'Shaarli', // IGNORE + 'twitter' => 'Twitter', // IGNORE + 'wallabag' => 'wallabag v1', // IGNORE + 'wallabagv2' => 'wallabag v2', // IGNORE ), 'short' => array( 'attention' => 'Tehlike!', diff --git a/app/i18n/tr/index.php b/app/i18n/tr/index.php index eb7052ba2..4cf4b6d05 100644 --- a/app/i18n/tr/index.php +++ b/app/i18n/tr/index.php @@ -1,9 +1,19 @@ array( '_' => 'Hakkında', - 'agpl3' => 'AGPL 3', + 'agpl3' => 'AGPL 3', // IGNORE 'bugs_reports' => 'Hata raporu', 'credits' => 'Tanıtım', 'credits_content' => 'Bu frameworkü kullanmamasına rağmen FreshRSS bazı tasarım ögelerini Bootstrap dan almıştır. İkonlar GNOME projesinden alınmıştır. Open Sans yazı tipi Steve Matteson tarafından oluşturulmuştur. FreshRSS bir PHP framework olan Minz i temel alır.', @@ -17,7 +27,7 @@ return array( 'feed' => array( 'add' => 'Akış ekleyebilirsin.', 'empty' => 'Gösterilecek makale yok.', - 'rss_of' => 'RSS feed of %s', // TODO - Translation + 'rss_of' => 'RSS feed of %s', // TODO 'title' => 'Ana akış', 'title_fav' => 'Favoriler', 'title_global' => 'Evrensel görünüm', @@ -32,7 +42,7 @@ return array( 'about' => 'FreshRSS hakkında', 'before_one_day' => 'Bir gün önce', 'before_one_week' => 'Bir hafta önce', - 'bookmark_query' => 'Bookmark current query', // TODO - Translation + 'bookmark_query' => 'Bookmark current query', // TODO 'favorites' => 'Favoriler (%s)', 'global_view' => 'Evrensel görünüm', 'main_stream' => 'Ana akış', diff --git a/app/i18n/tr/install.php b/app/i18n/tr/install.php index 218f027b9..ff2a5ac90 100644 --- a/app/i18n/tr/install.php +++ b/app/i18n/tr/install.php @@ -1,5 +1,15 @@ array( 'finish' => 'Kurulumu tamamla', @@ -80,7 +90,7 @@ return array( 'nok' => 'PHP sürümünüz %s fakat FreshRSS için gerekli olan en düşük sürüm %s.', 'ok' => 'PHP Sürümünüz %s, FreshRSS ile tam uyumlu.', ), - 'reload' => 'Check again', // TODO - Translation + 'reload' => 'Check again', // TODO 'tmp' => array( 'nok' => '%s klasör yetkisini kontrol edin. HTTP yazma yetkisi olmalı.', 'ok' => 'Geçici klasör izinleri sorunsuz.', diff --git a/app/i18n/tr/sub.php b/app/i18n/tr/sub.php index 644e01a46..f21255c05 100644 --- a/app/i18n/tr/sub.php +++ b/app/i18n/tr/sub.php @@ -1,14 +1,24 @@ array( 'documentation' => 'URL\'yi harici bir araçla kullanmak için kopyala.', - 'title' => 'API', + 'title' => 'API', // IGNORE ), 'bookmarklet' => array( 'documentation' => 'Bu butonu yer imleri araç çubuğunuza sürükleyerek veya sağ tıklayıp "Bağlantıyı yer imlerine ekle" seçeneğini seçerek yer imlerine ekleyin. Eklemek istediğiniz sitedeyken oluşturulan bu "Abone Ol" butonu ile akış ekleyebilirsiniz.', 'label' => 'Abone ol', - 'title' => 'Bookmarklet', + 'title' => 'Bookmarklet', // IGNORE ), 'category' => array( '_' => 'Kategori', @@ -33,7 +43,7 @@ return array( ), 'clear_cache' => 'Önbelleği her zaman temizle', 'content_action' => array( - '_' => 'Content action when fetching the article content', // TODO - Translation + '_' => 'Content action when fetching the article content', // TODO 'append' => 'Mevcut içeriğin sonrasına ekle', 'prepend' => 'Mevcut içeriğin öncesine ekle', 'replace' => 'Mevcut içerikle değiştir', @@ -55,7 +65,7 @@ return array( 'clear_cache' => 'Önbelleği temizle', 'clear_cache_help' => 'Bu akışın önbelleğini temizler.', 'reload_articles' => 'Makaleleri yeniden yükle', - 'reload_articles_help' => 'Reload articles and fetch complete content if a selector is defined.', // TODO - Translation + 'reload_articles_help' => 'Reload articles and fetch complete content if a selector is defined.', // TODO 'title' => 'Bakım', ), 'moved_category_deleted' => 'Bir kategoriyi silerseniz, içerisindeki akışlar %s içerisine yerleşir.', diff --git a/app/i18n/tr/user.php b/app/i18n/tr/user.php index 737a491c1..db7081783 100644 --- a/app/i18n/tr/user.php +++ b/app/i18n/tr/user.php @@ -1,5 +1,15 @@ array( 'feedback' => array( -- cgit v1.2.3