8000 Update Turkish by mikropsoft · Pull Request #69 · cygnusx-1-org/continuum · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update Turkish #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed

Conversation

mikropsoft
Copy link

Synced with english

@edgan
Copy link
Member
edgan commented May 20, 2025

I greatly appreciate the effort you put into this, but as is it is unreviewable.

  1. You removed all quotes around all the text. This changes every line, and then means I would have to review every line.
  2. The order is completely different. I think you took the default file, app/src/main/res/values/strings.xml, and rewrote it for Turkish instead of basing it on the original app/src/main/res/values-tr-rTR/strings.xml.
  3. You added things that are unneeded. If a string is in the default file, app/src/main/res/values/strings.xml, and it is unchanged it is unnecessary to add it to the translation file.

Examples:

    <string name="proxy_http">"HTTP"</string> 
    <string name="proxy_socks">"SOCKS"</string>
  1. I would suggest breaking this into smaller PRs. Even if 1-3 weren't true this is a lot of work to review at once. Smaller chunks would be much more manageable.

@mikropsoft
Copy link
Author

@edgan Alright then, I'll try to remove fixed words and those marked as "translatable=false".

I also didn't understand which part you need me to review - I tried to follow the proper XML format throughout, so it shouldn't cause any build errors.

Secondly, I know this is a fork, and I couldn't figure out why the strings in the main application are so different. When I checked your application, I found some Turkish sections, but I couldn't match them with the strings in your current Turkish file or the strings in the repository you forked.

@mikropsoft
Copy link
Author

And also yes, I just noticed that the quotation marks were in the previous language file. This is strange and something I've never seen before. I couldn't see this because I translated from the English file. If this is required, I can edit it again by adding the quotation marks.

@edgan
Copy link
Member
edgan commented May 20, 2025

I haven't touched any of the translation files from Infinity for Reddit. I have only touched app/src/main/res/values/strings.xml. Though Continuum is different app, I learned that most users don't care about translations from Slide.

@edgan
Copy link
Member
edgan commented May 20, 2025

And also yes, I just noticed that the quotation marks were in the previous language file. This is strange and something I've never seen before. I couldn't see this because I translated from the English file. If this is required, I can edit it again by adding the quotation marks.

It works with or without the quotes. With quotes is just the current state of the app/src/main/res/values-tr-rTR/strings.xml. It is more about removing them makes the diff much worse.

Better diff:

diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml
index ba8586cb..7ab0b014 100644
--- a/app/src/main/res/values-tr-rTR/strings.xml
+++ b/app/src/main/res/values-tr-rTR/strings.xml
@@ -1,12 +1,14 @@
-<?xml version="1.0" encoding="utf-8"?>
-<resources>
-    <string name="login_activity_label">"Giriş"</string>
+"<?xml version="1.0" encoding="utf-8"?>
+"<resources>
+    <string name="application_name" translatable="false">"Continuum"</string>
+    <string name="login_activity_label">"Giriş Yap"</string>
+    <string name="search_activity_label" translatable="false">" "</string>
     <string name="comment_activity_label">"Yorum Gönder"</string>
-    <string name="comment_activity_label_is_replying">"Cevapla"</string>
+    <string name="comment_activity_label_is_replying">"Yanıtla"</string>
     <string name="post_text_activity_label">"Metin Gönderisi"</string>
-    <string name="subreddit_selection_activity_label">"Subreddit Seç"</string>
+    <string name="subreddit_selection_activity_label">"Bir Subreddit Seç"</string>
     <string name="post_link_activity_label">"Bağlantı Gönderisi"</string>
-    <string name="post_image_activity_label">"Fotoğraf Gönderisi"</string>
+    <string name="post_image_activity_label">"Resim Gönderisi"</string>
     <string name="post_video_activity_label">"Video Gönderisi"</string>
     <string name="rules_activity_label">"Kurallar"</string>
     <string name="search_subreddits_activity_label">"Subredditler"</string>

Bad diff:

diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml
index ba8586cb..e697e160 100644
--- a/app/src/main/res/values-tr-rTR/strings.xml
+++ b/app/src/main/res/values-tr-rTR/strings.xml
@@ -1,1284 +1,1564 @@
-<?xml version="1.0" encoding="utf-8"?>
 <resources>
-    <string name="login_activity_label">"Giriş"</string>
-    <string name="comment_activity_label">"Yorum Gönder"</string>
-    <string name="comment_activity_label_is_replying">"Cevapla"</string>
-    <string name="post_text_activity_label">"Metin Gönderisi"</string>
-    <string name="subreddit_selection_activity_label">"Subreddit Seç"</string>
-    <string name="post_link_activity_label">"Bağlantı Gönderisi"</string>
-    <string name="post_image_activity_label">"Fotoğraf Gönderisi"</string>
-    <string name="post_video_activity_label">"Video Gönderisi"</string>
+    <string name="application_name" translatable="false">Continuum</string>
+    <string name="login_activity_label">Giriş Yap</string>
+    <string name="search_activity_label" translatable="false"> </string>
+    <string name="comment_activity_label">Yorum Gönder</string>
+    <string name="comment_activity_label_is_replying">Yanıtla</string>
+    <string name="post_text_activity_label">Metin Gönderisi</string>

@edgan
Copy link
Member
edgan commented May 20, 2025

Just start over with app/src/main/res/values-tr-rTR/strings.xml as it is in the repository before your work. Change a little as possible. More change equals more work for me or any reviewer. Don't do the whole file at once. Do it in chunks and make more than one pull request.

If I took this existing pull request, as is, I have two choices. Take it completely on faith that you did a good job or put in a ton of work reviewing every single line. This is also made much worse, because I don't speak Turkish. So I am going to have to lean on translation services, and then just make a judgement call. It also doesn't help that I don't know you at all, or your reputation. I am not trying to imply anything, just admitting my own ignorance when it comes to you, and how that informs my decision.

@mikropsoft
Copy link
Author

Just start over with app/src/main/res/values-tr-rTR/strings.xml as it is in the repository before your work. Change a little as possible. More change equals more work for me or any reviewer. Don't do the whole file at once. Do it in chunks and make more than one pull request.

If I took this existing pull request, as is, I have two choices. Take it completely on faith that you did a good job or put in a ton of work reviewing every single line. This is also made much worse, because I don't speak Turkish. So I am going to have to lean on translation services, and then just make a judgement call. It also doesn't help that I don't know you at all, or your reputation. I am not trying to imply anything, just admitting my own ignorance when it comes to you, and how that informs my decision.

Thank you for your feedback and for pointing out the issues with the PR size and translations. I’ve been translating for various projects as a hobby for several years and have experience as a proofreader on Crowdin, so I’m confident in the quality of these Turkish translations. Given that the app’s translations often come from random contributors, this PR aims to fill in the missing strings, and I don’t see major issues with the current ones. I’d prefer to keep this as a single PR since splitting it might complicate consistency, and aligning the Turkish file closely with the English one makes future updates easier for me or others. That said, I’m open to reviewing specific sections together to address any concerns and build trust in the translations—please let me know how you’d like to proceed.

@mikropsoft
Copy link
Author

Besides that, if you want send me a test apk file created with this translation file, so I can examine it and let you know if there are any issues.

@edgan
Copy link
Member
edgan commented May 20, 2025

Thank you for your feedback and for pointing out the issues with the PR size and translations. I’ve been translating for various projects as a hobby for several years and have experience as a proofreader on Crowdin, so I’m confident in the quality of these Turkish translations. Given that the app’s translations often come from random contributors, this PR aims to fill in the missing strings, and I don’t see major issues with the current ones. I’d prefer to keep this as a single PR since splitting it might complicate consistency, and aligning the Turkish file closely with the English one makes future updates easier for me or others. That said, I’m open to reviewing specific sections together to address any concerns and build trust in the translations—please let me know how you’d like to proceed.

I get your perspective too.

One of the first bad signs was when I clicked on the Files changed tab, and it didn't show me the diff. It just says Large diffs are not rendered by default..

Can you link me to other translation work you have done?

Again I am not saying anything about the quality of your translations, but see this Reddit post. He talks about getting huge pull requests in a professional setting, and how it is a bad thing. You will also see further discussion on the topic, and the solutions in the comments.

@mikropsoft Instead of going back and forth like this via GitHub, please join the Discord server via this link. Find me in #dev. Then we can talk there more in real-time instead of only back and forth.

@mikropsoft
Copy link
Author

I get your perspective too.

One of the first bad signs was when I clicked on the Files changed tab, and it didn't show me the diff. It just says Large diffs are not rendered by default..

Can you link me to other 8000 translation work you have done?

Again I am not saying anything about the quality of your translations, but see this Reddit post. He talks about getting huge pull requests in a professional setting, and how it is a bad thing. You will also see further discussion on the topic, and the solutions in the comments.

@mikropsoft Instead of going back and forth like this via GitHub, please join the Discord server via this link. Find me in #dev. Then we can talk there more in real-time instead of only back and forth.

I have placed my translation project records at the bottom of my GitHub page. Among these are projects I've translated through Crowdin as well.

https://crowdin.com/profile/mikropsoft is my Crowdin address. Speaking of which, if you're going to focus on translations, I recommend creating a Crowdin project. As you mentioned, this will at least eliminate the commit issue and make things simpler for you.

If you examine my translation projects, you'll see there are projects with over 1,500 lines (most of these are available on Crowdin). And yes, you cannot view the changes through the mobile application.

Besides that, the reason I did the translation was because the application strings didn't match with Infinity x Reddit, resulting in the application being completely devoid of Turkish. And as I mentioned before, if you can create a test APK for me, I can test it for you and fix any errors (also, submitting the file to any AI model for checking would be simpler than you checking it yourself).

Additionally, I'd like to note that I don't have and don't use a Discord account. Instead, you can provide your Telegram address if you have one.

@mikropsoft
Copy link
Author

I haven't touched any of the translation files from Infinity for Reddit. I have only touched app/src/main/res/values/strings.xml. Though Continuum is different app, I learned that most users don't care about translations from Slide.

I was able to review this application just now. If you'd like, I can also make edits for the translation of this.

@edgan
Copy link
Member
edgan commented May 21, 2025

I misspoke before. I have changed the file. Either to remove strings that are no longer needed, or to change things that aren't translation related. These were done with search replace.

All changes to app/src/main/res/values-tr-rTR/strings.xml between Infinity for Reddit's master and Continuum's master:

diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml
index 41eb189ec6..ccd7d48cb4 100644
--- a/app/src/main/res/values-tr-rTR/strings.xml
+++ b/app/src/main/res/values-tr-rTR/strings.xml
@@ -1189,7 +1189,6 @@ Tekrar denemek için tıklayın."</string>
     <!-- Fuzzy -->
     <string name="settings_show_fewer_toolbar_options_threshold_summary">"Seviye %1$d"</string>
     <string name="settings_show_author_avatar_title">"Yazar Avatarını Göster"</string>
-    <string name="settings_reddit_user_agreement_title">"Reddit Kullanıcı Sözleşmesi"</string>
     <string name="settings_always_show_child_comment_count_title">"Her Zaman Alt Yorum Sayısını Göster"</string>
     <string name="settings_hide_upvote_ratio_title">"Olumlu Oy Oranını Gizle"</string>
     <string name="settings_miscellaneous_dangerous_group_title">"Tehlikeli"</string>
@@ -1202,7 +1201,6 @@ Tekrar denemek için tıklayın."</string>
     <string name="unable_to_copy_font_file">"Yazı tipiniz kopyalanamadı"</string>
     <string name="reddit_gallery_item_caption_hint">"Altyazı (en fazla 180 karakter)"</string>
     <string name="reddit_gallery_item_url_hint">"Bağlantı Adresi"</string>
-    <string name="user_agreement_dialog_title">"Kullanıcı Sözleşmesi"</string>
     <string name="agree">"Kabul et"</string>
     <string name="do_not_agree">"Kabul etme"</string>
     <string name="option_1_hint">"Seçenek 1 (Zorunlu)"</string>
@@ -1286,4 +1284,4 @@ Endişelenmeyin, Infinity for Reddit'in keyfini çıkarmaya devam edebilirsiniz.
     <string name="continue_to_app">"Uygulamaya devam et"</string>
     <string name="restore_subscription_purchase_details">"Abonelik için ödeme yaptınız mı?"</string>
     <string name="restore_subscription_purchase">"Satın alınan aboneliği geri yükle"</string>
-</resources>
\ No newline at end of file
+</resources>
diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml
index ccd7d48cb4..0a4cca8d02 100644
--- a/app/src/main/res/values-tr-rTR/strings.xml
+++ b/app/src/main/res/values-tr-rTR/strings.xml
@@ -138,7 +138,7 @@ This translation does it work well in this kinda format. People use "since" in s
     <string name="follow_failed">"Takip edilemedi"</string>
     <string name="unfollowed">"Takip bırakıldı"</string>
     <string name="unfollow_failed">"Takip bırakılamadı"</string>
-    <string name="app_label">"Infinity"</string>
+    <string name="app_label">"Continuum"</string>
     <string name="search_hint">"Bir şey arayın"</string>
     <string name="no_posts_no_lazy_mode">"Hiç gönderi yok"</string>
     <string name="lazy_mode_start">"Uyuşuk Modu %1$.1fs'da başlıyor"</string>
@@ -384,10 +384,10 @@ Tekrar denemek için tıklayın."</string>
     <string name="settings_reddit_account_title">"Reddit Hesabı"</string>
     <string name="settings_reddit_account_summary">"u/Hostilenemy"</string>
     <string name="settings_subreddit_title">"Subreddit"</string>
-    <string name="settings_subreddit_summary">"r/Infinity_For_Reddit"</string>
+    <string name="settings_subreddit_summary">"r/continuumreddit"</string>
     <string name="settings_share_title">"Paylaş"</string>
     <string name="settings_share_summary">"Bu uygulamayı beğendiyseniz başkalarıyla paylaşın"</string>
-    <string name="settings_version_title">"Infinity For Reddit"</string>
+    <string name="settings_version_title">"continuum"</string>
     <string name="settings_version_summary">"%s Sürümü"</string>
     <string name="settings_category_customization_title">"Özelleştirme"</string>
     <string name="settings_customize_light_theme_title">"Açık Tema"</string>
@@ -461,8 +461,8 @@ Tekrar denemek için tıklayın."</string>
     <string name="error_getting_multi_reddit_data">"Multireddit verileri alınırken hata oluştu"</string>
     <string name="error_loading_multi_reddit_list">"Multireddit senkronize edilemiyor"</string>
     <string name="error_loading_subscriptions">"Abonelikler senkronize edilemiyor"</string>
-    <string name="share_this_app">"Harika bir Reddit uygulaması olan Infinity For Reddit'e bir göz atın!
-https://play.google.com/store/apps/details?id=ml.docilealligator.infinityforreddit"</string>
+    <string name="share_this_app">"Harika bir Reddit uygulaması olan Continuum'e bir göz atın!
+https://play.google.com/store/"</string>
     <string name="error_getting_subreddit_name">"Subreddit adı alınırken hata oluştu"</string>
     <string name="share_post_link">"Gönderi Bağlantısını Paylaş"</string>
     <string name="share_image_link">"Görüntü Bağlantısını Paylaş"</string>
@@ -704,7 +704,7 @@ Amoled Tema Şablonu Oluştur"</string>
     <string name="delete_all_front_page_scrolled_positions_success">"Ön sayfadaki tüm kaydırılmış pozisyonlar başarıyla silindi"</string>
     <string name="reset_all_settings_success">"Tüm ayarlar başarıyla sıfırlandı"</string>
     <string name="username_preview">"u/Hostilenemy"</string>
-    <string name="subreddit_preview">"r/Infinity_For_Reddit"</string>
+    <string name="subreddit_preview">"r/continuumreddit"</string>
     <string name="primary_text_preview">"Birincil Metin"</string>
     <string name="secondary_text_preview">"İkincil Metin"</string>
     <string name="post_title_preview">"Bu bir gönderidir"</string>
@@ -1052,9 +1052,9 @@ Otomatik video oynatma kapatılır."</string>
 \"Material You Amoled\".
 Yoksa, Material You'yu etkinleştirmeden önce bunları yeniden adlandırın."</string>
     <string name="settings_enable_material_you_title">"Material You'yu Etkinleştir"</string>
-    <string name="settings_enable_material_you_summary">"Infinity'yi Duvar Kağıdına Göre Kişiselleştir"</string>
+    <string name="settings_enable_material_you_summary">"Continuum'yi Duvar Kağıdına Göre Kişiselleştir"</string>
     <string name="settings_apply_material_you_title">"Material You'yu Uygula"</string>
-    <string name="settings_apply_material_you_summary">"Infinity'nin temayı değiştirmemesi durumunda"</string>
+    <string name="settings_apply_material_you_summary">"Continuum'nin temayı değiştirmemesi durumunda"</string>
     <string name="settings_more_tabs_show_favorite_multireddits_title">"Favori Multiredditleri Göster"</string>
     <string name="settings_more_tabs_show_multireddits_title">"Multiredditleri Göster"</string>
     <string name="settings_collapse_reddit_section_title">"Reddit Bölümünü Daralt"</string>
@@ -1248,12 +1248,12 @@ Tekrar denemek için dokun."</string>
     <string name="subscription_activity_label">"Abonelik"</string>
     <string name="edited">"Düzenlendi"</string>
     <string name="edited_time">"%s tarihinde düzenlendi"</string>
-    <string name="welcome_to_infinity">"Reddit portalı Infinity for Reddit'e hoş geldiniz!"</string>
+    <string name="welcome_to_continuum">"Reddit portalı Continuum'e hoş geldiniz!"</string>
 
     <!-- Fuzzy -->
     <string name="subscription_prompt">"Size mümkün olan en iyi hizmeti sağlayabilmek için önemli bir değişikliğe gidiyoruz.
 
-Reddit 1 Temmuz 2023'ten itibaren API erişimi için ücret almaya başlayacak, bu yüzden Infinity for Reddit'in Reddit API'sine erişebilmesi için aylık abonelik sistemine geçiyoruz."</string>
+Reddit 1 Temmuz 2023'ten itibaren API erişimi için ücret almaya başlayacak, bu yüzden Continuum'in Reddit API'sine erişebilmesi için aylık abonelik sistemine geçiyoruz."</string>
     <string name="monthly">"Aylık"</string>
     <string name="yearly">"Yıllık"</string>
     <string name="weekly">"Haftalık"</string>
@@ -1272,7 +1272,7 @@ Reddit 1 Temmuz 2023'ten itibaren API erişimi için ücret almaya başlayacak,
     <string name="subscription_plan_description_monthly_499">"Altın - Harika Seçim!"</string>
     <string name="subscription_plan_description_monthly_699">"Platinyum"</string>
     <string name="subscription_plan_description_monthly_899">"Elmas"</string>
-    <string name="subscription_plan_description_monthly_999">"Infinity"</string>
+    <string name="subscription_plan_description_monthly_999">"Continuum"</string>
     <string name="acknowledge_purchase_failed">"Satın alma işlemi onaylanamıyor"</string>
     <string name="connect_to_billing_system_failed">"Billing sistemine bağlanılamadı"</string>
     <string name="connecting_to_billing_system">"Billing sistemine bağlanılıyor. Lütfen bekleyin."</string>
@@ -1280,7 +1280,7 @@ Reddit 1 Temmuz 2023'ten itibaren API erişimi için ücret almaya başlayacak,
     <string name="load_subscription_options">"Abonelik seçeneklerini yükle"</string>
     <string name="acknowledging_subscription">"Aboneliğiniz onaylanıyor. Lütfen bekleyin."</string>
     <string name="acknowledgement_purchase_failed_description">"Hay aksi! Satın alma işleminiz onaylanırken bir hata oluştu. Bu sorun üç gün boyunca devam ederse otomatik olarak paranız iade edilecek.
-Endişelenmeyin, Infinity for Reddit'in keyfini çıkarmaya devam edebilirsiniz."</string>
+Endişelenmeyin, Continuum'in keyfini çıkarmaya devam edebilirsiniz."</string>
     <string name="continue_to_app">"Uygulamaya devam et"</string>
     <string name="restore_subscription_purchase_details">"Abonelik için ödeme yaptınız mı?"</string>
     <string name="restore_subscription_purchase">"Satın alınan aboneliği geri yükle"</string>
diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml
index 0a4cca8d02..394bc2b3ea 100644
--- a/app/src/main/res/values-tr-rTR/strings.xml
+++ b/app/src/main/res/values-tr-rTR/strings.xml
@@ -380,9 +380,9 @@ Tekrar denemek için tıklayın."</string>
     <string name="settings_rate_title">"Google Play'de Değerlendirin"</string>
     <string name="settings_rate_summary">"Bize 5 yıldız verirseniz gerçekten mutlu oluruz."</string>
     <string name="settings_email_title">"E-posta"</string>
-    <string name="settings_email_summary">"docilealligator.app@gmail.com"</string>
+    <string name="settings_email_summary">"continuum@cygnusx-1.org"</string>
     <string name="settings_reddit_account_title">"Reddit Hesabı"</string>
-    <string name="settings_reddit_account_summary">"u/Hostilenemy"</string>
+    <string name="settings_reddit_account_summary">"u/edgan"</string>
     <string name="settings_subreddit_title">"Subreddit"</string>
     <string name="settings_subreddit_summary">"r/continuumreddit"</string>
     <string name="settings_share_title">"Paylaş"</string>
@@ -703,7 +703,7 @@ Amoled Tema Şablonu Oluştur"</string>
     <string name="delete_all_themes_success">"Tüm temalar başarıyla silindi"</string>
     <string name="delete_all_front_page_scrolled_positions_success">"Ön sayfadaki tüm kaydırılmış pozisyonlar başarıyla silindi"</string>
     <string name="reset_all_settings_success">"Tüm ayarlar başarıyla sıfırlandı"</string>
-    <string name="username_preview">"u/Hostilenemy"</string>
+    <string name="username_preview">"u/edgan"</string>
     <string name="subreddit_preview">"r/continuumreddit"</string>
     <string name="primary_text_preview">"Birincil Metin"</string>
     <string name="secondary_text_preview">"İkincil Metin"</string>
diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml
index 394bc2b3ea..7671bcd81a 100644
--- a/app/src/main/res/values-tr-rTR/strings.xml
+++ b/app/src/main/res/values-tr-rTR/strings.xml
@@ -377,8 +377,6 @@ Tekrar denemek için tıklayın."</string>
     <string name="settings_credits_material_icons_title">"Materyal Simgeleri"</string>
     <string name="settings_open_source_title">"Açık Kaynak"</string>
     <string name="settings_open_source_summary">"Bu uygulamayı beğendiyseniz Github'da yıldız verin"</string>
-    <string name="settings_rate_title">"Google Play'de Değerlendirin"</string>
-    <string name="settings_rate_summary">"Bize 5 yıldız verirseniz gerçekten mutlu oluruz."</string>
     <string name="settings_email_title">"E-posta"</string>
     <string name="settings_email_summary">"continuum@cygnusx-1.org"</string>
     <string name="settings_reddit_account_title">"Reddit Hesabı"</string>
diff --git a/app/src/main/res/values-tr-rTR/strings.xml b/app/src/main/res/values-tr-rTR/strings.xml
index 7671bcd81a..ba8586cb52 100644
--- a/app/src/main/res/values-tr-rTR/strings.xml
+++ b/app/src/main/res/values-tr-rTR/strings.xml
@@ -1187,7 +1187,6 @@ Tekrar denemek için tıklayın."</string>
     <!-- Fuzzy -->
     <string name="settings_show_fewer_toolbar_options_threshold_summary">"Seviye %1$d"</string>
     <string name="settings_show_author_avatar_title">"Yazar Avatarını Göster"</string>
-    <string name="settings_always_show_child_comment_count_title">"Her Zaman Alt Yorum Sayısını Göster"</string>
     <string name="settings_hide_upvote_ratio_title">"Olumlu Oy Oranını Gizle"</string>
     <string name="settings_miscellaneous_dangerous_group_title">"Tehlikeli"</string>
     <string name="settings_post_feed_max_resolution_warning_title">"Önizlemeleri daha yüksek çözünürlükte göstermek için değeri artırın, ancak uygulama beklenmedik bir şekilde çökebilir."</string>

@mikropsoft mikropsoft closed this May 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
4892 None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants
0