mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-09-21 03:40:43 +02:00
Update Ghostgram features
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
load("@build_bazel_rules_apple//apple:resources.bzl", "apple_bundle_import")
|
||||
|
||||
apple_bundle_import(
|
||||
name = "SGSettingsBundle",
|
||||
bundle_imports = glob([
|
||||
"Settings.bundle/*",
|
||||
"Settings.bundle/**/*",
|
||||
]),
|
||||
visibility = ["//visibility:public"]
|
||||
)
|
||||
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>StringsTable</key>
|
||||
<string>Root</string>
|
||||
<key>PreferenceSpecifiers</key>
|
||||
<array>
|
||||
<dict>
|
||||
<key>Type</key>
|
||||
<string>PSGroupSpecifier</string>
|
||||
<key>FooterText</key>
|
||||
<string>Reset.Notice</string>
|
||||
<key>Title</key>
|
||||
<string>Reset.Title</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Type</key>
|
||||
<string>PSToggleSwitchSpecifier</string>
|
||||
<key>Title</key>
|
||||
<string>Reset.Toggle</string>
|
||||
<key>Key</key>
|
||||
<string>sg_db_reset</string>
|
||||
<key>DefaultValue</key>
|
||||
<false/>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Type</key>
|
||||
<string>PSGroupSpecifier</string>
|
||||
<key>FooterText</key>
|
||||
<string>HardReset.Notice</string>
|
||||
<key>Title</key>
|
||||
<string>HardReset.Title</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>Type</key>
|
||||
<string>PSToggleSwitchSpecifier</string>
|
||||
<key>Title</key>
|
||||
<string>HardReset.Toggle</string>
|
||||
<key>Key</key>
|
||||
<string>sg_db_hard_reset</string>
|
||||
<key>DefaultValue</key>
|
||||
<false/>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,8 @@
|
||||
/* A single strings file, whose title is specified in your preferences schema. The strings files provide the localized content to display to the user for each of your preferences. */
|
||||
|
||||
"Reset.Title" = "TROUBLESHOOTING";
|
||||
"Reset.Toggle" = "Reset Metadata";
|
||||
"Reset.Notice" = "Use in case you're stuck and can't open the app. This WILL NOT log out your accounts, but all secret chats will be lost.";
|
||||
"HardReset.Title" = "";
|
||||
"HardReset.Toggle" = "Reset All";
|
||||
"HardReset.Notice" = "Clears metadata, cached messages and media for all accounts. This should not log out your accounts, but proceed at YOUR OWN RISK. All secret chats will be lost.";
|
||||
@@ -0,0 +1,6 @@
|
||||
"Reset.Title" = "РЕШЕНИЕ ПРОБЛЕМ";
|
||||
"Reset.Toggle" = "Сбросить Метаданные";
|
||||
"Reset.Notice" = "Используйте, если приложение вылетает или не загружается. Эта опция НЕ СБРАСЫВАЕТ ваши аккаунты, но удалит все секретные чаты.";
|
||||
"HardReset.Title" = "";
|
||||
"HardReset.Toggle" = "Сбросить Всё";
|
||||
"HardReset.Notice" = "Сбрасывает метаданные, кэшированные сообщения и медиа для всех аккаунтов. Эта опция не должна разлогинить ваши аккаунты, но используйте её на СВОЙ СТРАХ И РИСК. Все секретные чаты удалятся.";
|
||||
Reference in New Issue
Block a user