-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
106 lines (86 loc) · 5.65 KB
/
Copy pathsupport.html
File metadata and controls
106 lines (86 loc) · 5.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Destek — WeeklyBlocks</title>
<meta name="description" content="WeeklyBlocks iOS uygulaması için destek, sık sorulan sorular ve iletişim bilgileri.">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="wordmark">WeeklyBlocks</div>
<div class="tabs" role="tablist" aria-label="Dil / Language">
<button id="tab-tr" role="tab" aria-selected="true" aria-controls="panel-tr" class="tab active">Türkçe</button>
<button id="tab-en" role="tab" aria-selected="false" aria-controls="panel-en" class="tab">English</button>
</div>
</header>
<main>
<div id="panel-tr" role="tabpanel" aria-labelledby="tab-tr">
<h1>Destek</h1>
<p>WeeklyBlocks, alışkanlıklarınızı haftalık bloklara bölerek takip etmenizi sağlayan bir iOS uygulamasıdır. İnternetsiz çalışır; cihazınız iCloud'a girişliyse verileriniz kendi iCloud'unuzda otomatik yedeklenir.</p>
<h2>Yardım almak istiyorsanız</h2>
<p>Soru, hata bildirimi, öneri veya geri bildirim için doğrudan yazabilirsiniz:</p>
<p><span class="email-pill"><a href="mailto:muhammetsivgin@outlook.com">muhammetsivgin@outlook.com</a></span></p>
<p>Mümkün olduğunca hızlı cevap vermeye çalışırım. Hata bildirirken cihaz modelinizi ve iOS sürümünüzü belirtmeniz çok yardımcı olur.</p>
<h2>Sık sorulanlar</h2>
<h3>Verilerim bir yere gönderiliyor mu?</h3>
<p>Bize hiçbir veri gönderilmez — bize ait sunucu yoktur. Cihazınız iCloud'a girişliyse verileriniz yalnızca sizin erişebildiğiniz kendi iCloud alanınıza yedeklenir; biz göremeyiz. Detay için Gizlilik Politikasına bakabilirsiniz.</p>
<h3>Uygulamayı silersem verilerim ne olur?</h3>
<p>iCloud'a girişliyseniz verileriniz kendi iCloud'unuzda yedeklidir — uygulamayı tekrar yüklediğinizde veya yeni bir iPhone'a geçtiğinizde bloklarınız otomatik geri gelir. iCloud kullanmıyorsanız verileriniz yalnızca cihazdadır ve uygulamayla birlikte silinir.</p>
<h3>Dil değiştirebilir miyim?</h3>
<p>Evet. Ayarlar > Dil bölümünden Türkçe ve İngilizce arasında geçiş yapabilirsiniz. Dil değişikliği uygulamayı yeniden başlatır.</p>
<h3>Bildirimler çalışmıyor.</h3>
<p>Bildirim izinlerini iOS Ayarlar > Bildirimler > WeeklyBlocks altından kontrol edebilirsiniz. Haftalık hatırlatma her Pazar gönderilir ve uygulama içi Ayarlar sayfasından açılıp kapanabilir.</p>
<h3>Yeni bir özellik istiyorum.</h3>
<p>Öneriler için yukarıdaki email adresine yazın. Tüm geri bildirimler okunur, ileri sürümlerde değerlendirilir.</p>
</div>
<div id="panel-en" role="tabpanel" aria-labelledby="tab-en" hidden aria-hidden="true">
<h1>Support</h1>
<p>WeeklyBlocks is an iOS app that helps you track habits by breaking them into weekly blocks. It works offline; if your device is signed in to iCloud, your data is backed up automatically to your own iCloud.</p>
<h2>Getting help</h2>
<p>For questions, bug reports, suggestions, or feedback, write directly:</p>
<p><span class="email-pill"><a href="mailto:muhammetsivgin@outlook.com">muhammetsivgin@outlook.com</a></span></p>
<p>I try to reply as quickly as possible. When reporting a bug, including your device model and iOS version is very helpful.</p>
<h2>Frequently asked</h2>
<h3>Is my data sent anywhere?</h3>
<p>Nothing is ever sent to us — we operate no servers. If your device is signed in to iCloud, your data is backed up to your own iCloud space that only you can access; we cannot see it. See the Privacy Policy for details.</p>
<h3>What happens to my data if I delete the app?</h3>
<p>If you're signed in to iCloud, your data is backed up in your own iCloud — reinstall the app or switch to a new iPhone and your blocks come back automatically. If you don't use iCloud, your data lives only on the device and is deleted with the app.</p>
<h3>Can I change the language?</h3>
<p>Yes. Settings > Language lets you switch between Turkish and English. Changing the language restarts the app.</p>
<h3>Notifications aren't working.</h3>
<p>Check notification permissions under iOS Settings > Notifications > WeeklyBlocks. The weekly reminder is sent every Sunday and can be toggled from the in-app Settings page.</p>
<h3>I'd like to request a feature.</h3>
<p>Send suggestions to the email above. All feedback is read and considered for future releases.</p>
</div>
</main>
<footer>
<p><a href="privacy.html">Gizlilik Politikası / Privacy Policy</a></p>
</footer>
<script>
(function () {
var tabs = document.querySelectorAll('[role="tab"]');
tabs.forEach(function (tab) {
tab.addEventListener('click', function () {
var targetId = tab.getAttribute('aria-controls');
tabs.forEach(function (t) {
var isActive = t === tab;
t.setAttribute('aria-selected', isActive ? 'true' : 'false');
t.classList.toggle('active', isActive);
var panel = document.getElementById(t.getAttribute('aria-controls'));
if (isActive) {
panel.removeAttribute('hidden');
panel.setAttribute('aria-hidden', 'false');
} else {
panel.setAttribute('hidden', '');
panel.setAttribute('aria-hidden', 'true');
}
});
document.documentElement.lang = (targetId === 'panel-tr') ? 'tr' : 'en';
});
});
})();
</script>
</body>
</html>